:root {
  --bg: #faf7f2;
  --bg-dark: #2c1810;
  --card: #ffffff;
  --card2: #f5efe6;
  --text: #2c1810;
  --text-light: #ffffff;
  --muted: #6b5b4f;
  --border: rgba(44, 24, 16, 0.12);
  --brand: #c45c26;
  --brand2: #8b4513;
  --accent: #d4a574;
  --good: #5a8a4a;
  --shadow: 0 8px 32px rgba(44, 24, 16, 0.12);
  --shadow-lg: 0 18px 60px rgba(44, 24, 16, 0.18);
  --radius: 16px;
  --radius-sm: 10px;
  --wrap: 1140px;
  --font-display: "Georgia", "Times New Roman", serif;
  --font-body: "Segoe UI", system-ui, -apple-system, sans-serif;
}

* {
  box-sizing: border-box;
}
html,
body {
  margin: 0;
  padding: 0;
}
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}
img {
  display: block;
  max-width: 100%;
}
.wrap {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 16px;
}

.skip {
  position: absolute;
  left: -999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.skip:focus {
  left: 16px;
  top: 16px;
  width: auto;
  height: auto;
  padding: 10px 12px;
  background: #111827;
  border-radius: 12px;
  z-index: 9999;
}

.topbar {
  background: var(--bg-dark);
  color: var(--text-light);
  overflow: hidden;
}
.topbar .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 16px;
  gap: 12px;
  flex-wrap: wrap;
}
.topbar-left {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
  font-size: 14px;
  animation: marqueeRight 12s linear infinite;
}
.topbar-right {
  display: flex;
  gap: 10px;
}
.toplink {
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--brand);
  color: #fff;
  font-weight: 600;
  font-size: 13px;
  transition:
    background 0.2s ease,
    transform 0.2s ease;
  animation: bounce 1s ease-in-out infinite;
}
.toplink:nth-child(2) {
  animation-delay: 0.15s;
}
.toplink:hover {
  background: var(--brand2);
  transform: translateY(-1px);
  animation-play-state: paused;
}

@keyframes marqueeRight {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}

@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-4px);
  }
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #6fcf6f;
  box-shadow: 0 0 0 4px rgba(111, 207, 111, 0.3);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.6;
  }
}

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 247, 242, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 20px rgba(44, 24, 16, 0.06);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  gap: 16px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.brand img {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  object-fit: cover;
}
.brand-name {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--bg-dark);
  letter-spacing: -0.3px;
}
.brand-tag {
  color: var(--muted);
  font-size: 12px;
  font-weight: 500;
  margin-top: 2px;
}

.navlinks {
  display: flex;
  align-items: center;
  gap: 6px;
}
.navlinks a {
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  color: var(--muted);
  font-weight: 600;
  font-size: 15px;
  transition: all 0.2s ease;
}
.navlinks a:hover {
  background: var(--card2);
  color: var(--text);
}
.navlinks a.active {
  background: var(--brand);
  color: #fff;
}

.cta {
  background: var(--brand) !important;
  color: #fff !important;
  border: none !important;
  font-weight: 600 !important;
  box-shadow: 0 4px 14px rgba(196, 92, 38, 0.3);
}
.cta:hover {
  background: var(--brand2) !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(196, 92, 38, 0.4);
}

.menuBtn {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border-radius: var(--radius-sm);
  background: var(--card2);
  border: 1px solid var(--border);
  cursor: pointer;
  gap: 5px;
  transition: background 0.2s ease;
}
.menuBtn:hover {
  background: var(--accent);
}
.menuBtn .bar {
  width: 22px;
  height: 2.5px;
  background: var(--bg-dark);
  border-radius: 2px;
  transition: all 0.3s ease;
}
.menuBtn.active {
  background: var(--brand);
  border-color: var(--brand);
}
.menuBtn.active .bar {
  background: #fff;
}
.menuBtn.active .bar:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.menuBtn.active .bar:nth-child(2) {
  opacity: 0;
}
.menuBtn.active .bar:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}
.menuBtn-text {
  display: none;
}

/* Hero (local) */
.heroLocal {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  padding: 48px 0 32px;
  align-items: center;
}
.heroLeft h1 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 58px);
  letter-spacing: -1px;
  line-height: 1.1;
  margin: 16px 0 14px;
  color: var(--bg-dark);
}
.lead {
  color: var(--muted);
  font-size: 1.1rem;
  max-width: 52ch;
  line-height: 1.7;
}
.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 999px;
  background: var(--accent);
  color: var(--bg-dark);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.3px;
}

.actionRow {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 24px 0 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: var(--radius-sm);
  background: var(--card);
  border: 1px solid var(--border);
  color: var(--text);
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 2px 8px rgba(44, 24, 16, 0.08);
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(44, 24, 16, 0.12);
  background: var(--card2);
}
.btn:active {
  transform: translateY(0);
}
.btn.primary {
  background: var(--brand);
  color: #fff;
  border: none;
  box-shadow: 0 4px 14px rgba(196, 92, 38, 0.25);
}
.btn.primary:hover {
  background: var(--brand2);
  box-shadow: 0 6px 20px rgba(196, 92, 38, 0.35);
}
.btn.small {
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  font-size: 14px;
}

.infoGrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 20px;
}
.infoCard {
  padding: 16px;
  border-radius: var(--radius);
  background: var(--card);
  border: 1px solid var(--border);
  box-shadow: 0 2px 8px rgba(44, 24, 16, 0.06);
}
.label {
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.value {
  font-weight: 600;
  margin-top: 6px;
  color: var(--text);
}
.value a {
  color: var(--brand);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.value a:hover {
  color: var(--brand2);
}

.trustRow {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 16px;
}
.trustChip {
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(90, 138, 74, 0.12);
  border: 1px solid rgba(90, 138, 74, 0.25);
  color: var(--good);
  font-weight: 600;
  font-size: 13px;
}

/* Right column */
.heroRight {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.mediaCard {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--card);
  box-shadow: var(--shadow-lg);
  min-height: 280px;
}
.mediaCard img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.mediaOverlay {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px;
  border-radius: var(--radius-sm);
  background: rgba(250, 247, 242, 0.95);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border);
}

.mapCard {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--card);
  box-shadow: var(--shadow);
}
.mapHeader {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  border-bottom: 1px solid var(--border);
  background: var(--card2);
}
iframe {
  width: 100%;
  height: 200px;
  border: 0;
}

.section {
  padding: 48px 0;
}
h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  margin: 0 0 8px;
  letter-spacing: -0.3px;
  color: var(--bg-dark);
}
.sub {
  margin: 0 0 24px;
  color: var(--muted);
  max-width: 60ch;
  font-size: 1.05rem;
}
.h1 {
  font-family: var(--font-display);
  font-size: 2.5rem;
  letter-spacing: -0.5px;
  margin: 24px 0 12px;
  color: var(--bg-dark);
}

.grid3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.grid2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
@media (max-width: 920px) {
  .heroLocal {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 32px 0;
  }
  .grid3 {
    grid-template-columns: 1fr;
  }
  .grid2 {
    grid-template-columns: 1fr;
  }
  .infoGrid {
    grid-template-columns: 1fr;
  }
  .menuBtn {
    display: inline-flex !important;
    z-index: 200;
    position: relative;
  }
  .navlinks {
    position: fixed;
    right: 0;
    left: auto;
    top: 0;
    bottom: 0;
    width: 280px;
    height: 100vh;
    display: none;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 8px;
    padding: 100px 20px 40px;
    background: var(--bg-dark);
    z-index: 150;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.18);
  }
  .navlinks.open {
    display: flex !important;
  }
  .navlinks a {
    width: 100%;
    font-size: 1.1rem;
    padding: 14px 20px;
    text-align: left;
    color: var(--text-light);
    border-radius: var(--radius-sm);
    transition: all 0.2s ease;
    background: rgba(255, 255, 255, 0.05);
  }
  .navlinks a:hover {
    background: rgba(255, 255, 255, 0.15);
  }
  .navlinks a.active {
    background: var(--brand);
    color: #fff;
  }
  .navlinks a.cta {
    background: var(--brand);
    color: #fff;
    margin-top: 12px;
    box-shadow: 0 4px 14px rgba(196, 92, 38, 0.4);
  }
  .section {
    padding: 32px 0;
  }
}

.card {
  border: 1px solid var(--border);
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 24px;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}
.card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}
.card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin: 0 0 12px;
  color: var(--bg-dark);
}
.card p {
  color: var(--muted);
  margin: 0;
  line-height: 1.6;
}

.reviewTop {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 14px;
}
.avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  color: var(--bg-dark);
  font-weight: 700;
  font-size: 14px;
}

.rows {
  margin-top: 16px;
  display: grid;
  gap: 8px;
}
.row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  background: var(--card2);
  border: 1px solid var(--border);
}
.row span:first-child {
  font-weight: 500;
}
.row .muted {
  color: var(--brand);
  font-weight: 600;
}

.note {
  margin-top: 20px;
  padding: 16px 20px;
  border-radius: var(--radius);
  border: 2px dashed var(--accent);
  background: rgba(212, 165, 116, 0.1);
  color: var(--muted);
  font-size: 14px;
}

.link {
  color: var(--brand);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s ease;
}
.link:hover {
  color: var(--brand2);
}
.muted {
  color: var(--muted);
}
.tiny {
  font-size: 12px;
}

/* FAQ */
.faq {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 920px) {
  .faq {
    grid-template-columns: 1fr;
  }
}
details {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
}
details summary {
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--bg-dark);
}
details summary:hover {
  color: var(--brand);
}
details p {
  color: var(--muted);
  margin-top: 12px;
  line-height: 1.6;
}

/* Footer */
.footer {
  padding: 48px 0 40px;
  border-top: 1px solid var(--border);
  margin-top: 32px;
  background: var(--card2);
}
.footGrid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 32px;
}
.footer strong {
  font-family: var(--font-display);
  color: var(--bg-dark);
  font-size: 1.1rem;
}
.footer .muted {
  margin-top: 8px;
}
@media (max-width: 920px) {
  .footGrid {
    grid-template-columns: 1fr;
  }
}

/* Chat */
.chatFab {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 9999;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  font-weight: 700;
  font-size: 24px;
  background: var(--brand);
  color: #fff;
  box-shadow: 0 4px 20px rgba(196, 92, 38, 0.35);
  transition: all 0.2s ease;
}
.chatFab:hover {
  background: var(--brand2);
  transform: scale(1.05);
  box-shadow: 0 6px 24px rgba(196, 92, 38, 0.45);
}
.chatPanel {
  position: fixed;
  right: 20px;
  bottom: 90px;
  z-index: 9999;
  width: min(400px, calc(100vw - 40px));
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  display: none;
}
.chatHead {
  padding: 16px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  border-bottom: 1px solid var(--border);
  background: var(--card2);
}
.toggle {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-top: 6px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
}
.toggle input {
  accent-color: var(--brand);
}
.chatBody {
  padding: 16px;
  height: 300px;
  overflow: auto;
  background: var(--bg);
}
.chatFoot {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  padding: 12px;
  border-top: 1px solid var(--border);
  background: var(--card);
}
.chatFoot input {
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--bg);
  color: var(--text);
  font-size: 14px;
}
.chatFoot input:focus {
  outline: none;
  border-color: var(--brand);
}
.msg {
  display: flex;
  margin: 12px 0;
}
.msg.user {
  justify-content: flex-end;
}
.bubble {
  max-width: 85%;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--card);
  white-space: pre-wrap;
  font-size: 14px;
  line-height: 1.5;
}
.msg.user .bubble {
  background: var(--brand);
  color: #fff;
  border: none;
}
.sources {
  margin-top: 10px;
  color: var(--muted);
  font-size: 12px;
}
.sourceChip {
  display: inline-block;
  margin: 6px 6px 0 0;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--card2);
  border: 1px solid var(--border);
  font-size: 11px;
}

/* Form Styling */
.form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.form input,
.form textarea {
  width: 100%;
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--bg);
  color: var(--text);
  font-size: 15px;
  font-family: inherit;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}
.form input:focus,
.form textarea:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(196, 92, 38, 0.15);
}
.form textarea {
  min-height: 120px;
  resize: vertical;
}
.row2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
@media (max-width: 920px) {
  .row2 {
    grid-template-columns: 1fr;
  }
}

/* Grid gap adjustment */
.grid3 {
  gap: 20px;
}
.grid2 {
  gap: 20px;
}
