/* Al Basit Boys Hostel — Academic / Corporate */

:root {
  /* Default theme: Navy / Cream */
  --bg: #f6f2e8;
  --bg-2: #ede5d2;
  --surface: #fffdf7;
  --ink: #14213d;
  --ink-2: #2c3a5a;
  --muted: #6b7088;
  --line: #d9d1bd;
  --accent: #14213d;
  --accent-ink: #f6f2e8;
  --gold: #b08a3e;
  --serif: "Source Serif 4", "Source Serif Pro", Georgia, serif;
  --sans: "Inter", ui-sans-serif, system-ui, -apple-system, sans-serif;
  --r: 4px;
  --maxw: 1240px;
  --pad: clamp(20px, 4vw, 56px);
}

[data-theme="forest"] {
  --bg: #f3efe6;
  --bg-2: #e7e0cf;
  --surface: #fbf8f1;
  --ink: #1f3a2b;
  --ink-2: #2d4a3a;
  --muted: #6e7a6f;
  --line: #d2cdb9;
  --accent: #1f3a2b;
  --accent-ink: #f3efe6;
  --gold: #a87d2e;
}

[data-theme="burgundy"] {
  --bg: #f3eee8;
  --bg-2: #e6ddd1;
  --surface: #fbf6ef;
  --ink: #5a1626;
  --ink-2: #6e2434;
  --muted: #7a6a66;
  --line: #d6c9bc;
  --accent: #5a1626;
  --accent-ink: #f3eee8;
  --gold: #a87d2e;
}

* { box-sizing: border-box; }
a, button, [role="tab"] { touch-action: manipulation; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a { color: inherit; }
img { display: block; max-width: 100%; }

.shell { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--pad); }

/* ---------- Type ---------- */
h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -0.01em;
  margin: 0;
  color: var(--ink);
  text-wrap: balance;
}
h1 { font-size: clamp(40px, 5.6vw, 76px); line-height: 1.02; letter-spacing: -0.02em; }
h2 { font-size: clamp(28px, 3.4vw, 44px); line-height: 1.1; }
h3 { font-size: clamp(20px, 1.8vw, 26px); line-height: 1.25; }
.eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 1px;
  background: currentColor;
}
.lede { font-size: clamp(16px, 1.2vw, 18px); color: var(--ink-2); max-width: 60ch; }
.muted { color: var(--muted); }

/* ---------- Top bar ---------- */
.topbar {
  position: sticky; top: 0; z-index: 50;
  background: color-mix(in oklab, var(--bg) 88%, transparent);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.topbar-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 0;
}
.brand {
  display: flex; align-items: center; gap: 12px;
  text-decoration: none;
  font-family: var(--serif); font-size: 19px; font-weight: 600;
  letter-spacing: -0.005em; color: var(--ink);
}
.brand-name { line-height: 1.1; }
.brand-mark {
  width: 56px; height: 56px; border-radius: 999px;
  background: var(--accent); color: var(--accent-ink);
  display: grid; place-items: center;
  font-family: var(--serif); font-size: 16px; font-weight: 600;
  letter-spacing: -0.02em; flex-shrink: 0;
}
.brand small {
  display: block; font-family: var(--sans); font-size: 10px;
  font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--gold); margin-top: 2px;
}

/* Desktop nav */
.nav { display: flex; gap: 26px; align-items: center; }
.nav a {
  text-decoration: none; font-size: 13.5px; color: var(--ink-2);
  font-weight: 500; cursor: pointer;
  transition: color 0.18s ease;
  position: relative;
}
.nav a::after {
  content: ""; position: absolute; left: 0; bottom: -2px;
  width: 0; height: 1px; background: var(--gold);
  transition: width 0.18s ease;
}
.nav a:hover { color: var(--ink); }
.nav a:hover::after { width: 100%; }
.nav a:focus-visible { outline: 2px solid var(--gold); outline-offset: 4px; border-radius: 2px; }
.nav .cta {
  padding: 9px 18px; border: 1px solid var(--ink); border-radius: var(--r);
  cursor: pointer; transition: background 0.18s ease, color 0.18s ease;
}
.nav .cta::after { display: none; }
.nav .cta:hover { background: var(--ink); color: var(--accent-ink); }

/* Hamburger button */
.hamburger {
  display: none; flex-direction: column; justify-content: center;
  gap: 5px; width: 40px; height: 40px; padding: 8px;
  background: none; border: none; cursor: pointer;
  border-radius: var(--r);
}
.hamburger span {
  display: block; width: 100%; height: 1.5px;
  background: var(--ink); border-radius: 2px;
  transition: transform 0.22s ease, opacity 0.22s ease;
  transform-origin: center;
}
.hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile nav drawer */
.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--surface);
  border-top: 1px solid var(--line);
  padding: 12px 0 20px;
}
.mobile-nav.open {
  display: flex;
  animation: navSlideDown 0.2s ease;
}
@keyframes navSlideDown {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}
.mobile-nav a {
  text-decoration: none; font-size: 15px; color: var(--ink-2);
  font-weight: 500; padding: 12px var(--pad);
  border-bottom: 1px solid var(--line);
  cursor: pointer; transition: color 0.15s ease, background 0.15s ease;
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:hover { color: var(--ink); background: var(--bg-2); }
.mobile-nav .cta {
  margin: 12px var(--pad) 0;
  padding: 12px 18px; border: 1px solid var(--ink);
  border-radius: var(--r); text-align: center;
  font-weight: 600; font-size: 14px;
  transition: background 0.18s ease, color 0.18s ease;
}
.mobile-nav .cta:hover { background: var(--ink); color: var(--accent-ink); }

/* Active nav link highlight */
.nav a.active { color: var(--ink); }
.nav a.active::after { width: 100%; }

@media (max-width: 760px) {
  .nav { display: none; }
  .hamburger { display: flex; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 13px 22px;
  font: inherit; font-weight: 600; font-size: 14px;
  border: 1px solid var(--ink); border-radius: var(--r);
  background: var(--ink); color: var(--accent-ink);
  cursor: pointer; text-decoration: none;
  transition: transform .12s ease, background .12s ease;
}
.btn:hover { background: var(--ink-2); }
.btn:active { transform: translateY(1px); }
.btn-ghost { background: transparent; color: var(--ink); }
.btn-ghost:hover { background: var(--bg-2); }
.btn-arrow::after {
  content: "→"; transition: transform .15s ease;
}
.btn-arrow:hover::after { transform: translateX(3px); }

/* ---------- Hero ---------- */
.hero { padding: clamp(40px, 6vw, 72px) 0 clamp(48px, 7vw, 96px); }

/* Full-bleed image hero */
.hero-bleed-full {
  position: relative;
  min-height: clamp(560px, 82vh, 780px);
  display: flex; align-items: flex-end;
  padding: 0 0 clamp(48px, 6vw, 80px);
  overflow: hidden;
}
.hero-bg-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 65%;
  display: block;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(20,33,61,0.45) 0%,
    rgba(20,33,61,0.55) 40%,
    rgba(20,33,61,0.88) 100%
  );
}
.hero-bleed-shell {
  width: 100%;
  position: relative; z-index: 2;
}
.hero-bleed-content {
  max-width: 620px;
  text-align: left;
}
.hero-bleed-full h1 {
  font-size: clamp(28px, 3.6vw, 52px);
  line-height: 1.08;
}
.hero-bleed-full .lede {
  max-width: 52ch;
  font-size: clamp(15px, 1.1vw, 17px);
}
.hero-bleed-stats {
  display: flex; gap: 32px; flex-wrap: wrap;
  margin-top: 36px; padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,0.18);
}
.hero-bleed-stats div { display: flex; flex-direction: column; gap: 3px; }
.hero-bleed-stats b {
  font-family: var(--serif); font-size: 26px;
  font-weight: 500; color: #fff; line-height: 1;
}
.hero-bleed-stats span { font-size: 12px; color: rgba(255,255,255,0.65); letter-spacing: 0.04em; }
@media (max-width: 640px) {
  .hero-bleed-stats { gap: 20px; }
  .hero-bleed-stats b { font-size: 22px; }
}

/* Layout A: split */
.hero-split {
  display: grid; grid-template-columns: 1.05fr 1fr;
  gap: clamp(28px, 5vw, 64px); align-items: center;
}
.hero-split .copy h1 { margin-top: 18px; }
.hero-split .copy .lede { margin-top: 18px; }
.hero-actions { display: flex; gap: 12px; margin-top: 28px; flex-wrap: wrap; }
.hero-meta {
  margin-top: 36px; display: flex; gap: 28px; flex-wrap: wrap;
  padding-top: 22px; border-top: 1px solid var(--line);
}
.hero-meta div { font-size: 13px; color: var(--muted); }
.hero-meta b { display: block; font-family: var(--serif); font-size: 22px;
  color: var(--ink); font-weight: 500; }

.hero-photo {
  position: relative; aspect-ratio: 4/5;
  border-radius: var(--r);
  overflow: hidden;
  background: var(--bg-2);
  border: 1px solid var(--line);
}
.hero-photo .ribbon {
  position: absolute; left: 16px; bottom: 16px;
  background: var(--surface); color: var(--ink);
  padding: 10px 14px; border: 1px solid var(--line);
  font-size: 12px; font-weight: 600; letter-spacing: 0.04em;
  display: flex; align-items: center; gap: 10px;
}
.hero-photo .ribbon .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #22a06b; box-shadow: 0 0 0 3px color-mix(in oklab, #22a06b 22%, transparent);
}
@media (max-width: 860px) {
  .hero-split { grid-template-columns: 1fr; }
  .hero-photo { aspect-ratio: 4/3; }
}

/* Layout B: centered */
.hero-centered { text-align: center; padding-top: 30px; }
.hero-centered .eyebrow { justify-content: center; }
.hero-centered h1 { margin: 20px auto 0; max-width: 16ch; }
.hero-centered .lede { margin: 22px auto 0; }
.hero-centered .hero-actions { justify-content: center; }
.hero-centered .stats {
  margin-top: 56px;
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.hero-centered .stats > div {
  padding: 26px 18px;
  border-left: 1px solid var(--line);
  text-align: left;
}
.hero-centered .stats > div:first-child { border-left: 0; }
.hero-centered .stats b {
  display: block; font-family: var(--serif); font-size: clamp(28px, 3vw, 40px);
  font-weight: 500; color: var(--ink);
}
.hero-centered .stats span {
  display: block; margin-top: 6px; font-size: 12.5px; color: var(--muted);
  letter-spacing: 0.04em;
}
@media (max-width: 760px) {
  .hero-centered .stats { grid-template-columns: repeat(2, 1fr); }
  .hero-centered .stats > div:nth-child(3) { border-left: 0; border-top: 1px solid var(--line); }
  .hero-centered .stats > div:nth-child(4) { border-top: 1px solid var(--line); }
}

/* Layout C: full-bleed overlay */
.hero-bleed {
  position: relative; height: clamp(520px, 78vh, 720px);
  border-radius: var(--r); overflow: hidden;
  border: 1px solid var(--line);
  color: var(--bg);
  isolation: isolate;
}
.hero-bleed .bleed-img { position: absolute; inset: 0; }
.hero-bleed::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg,
    color-mix(in oklab, var(--ink) 20%, transparent) 0%,
    color-mix(in oklab, var(--ink) 75%, transparent) 100%);
}
.hero-bleed .bleed-content {
  position: relative; z-index: 2;
  height: 100%;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: clamp(28px, 5vw, 56px);
  max-width: 720px;
}
.hero-bleed h1, .hero-bleed .lede { color: var(--bg); }
.hero-bleed .eyebrow { color: color-mix(in oklab, var(--bg) 85%, var(--gold) 30%); }
.hero-bleed .btn { background: var(--bg); color: var(--ink); border-color: var(--bg); }
.hero-bleed .btn:hover { background: var(--surface); }
.hero-bleed .btn-ghost { background: transparent; color: var(--bg); border-color: var(--bg); }
.hero-bleed .btn-ghost:hover { background: color-mix(in oklab, var(--bg) 15%, transparent); }

/* ---------- Photo placeholder ---------- */
.placeholder {
  position: relative;
  background:
    repeating-linear-gradient(135deg,
      color-mix(in oklab, var(--ink) 6%, var(--bg-2)) 0 12px,
      var(--bg-2) 12px 24px);
  color: var(--ink-2);
  display: grid; place-items: center;
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase;
}
.placeholder span {
  background: var(--surface); padding: 6px 10px;
  border: 1px solid var(--line);
}

/* ---------- Section common ---------- */
.section { padding: clamp(56px, 8vw, 110px) 0; border-top: 1px solid var(--line); }
.section-head {
  display: grid; grid-template-columns: 1fr 1.4fr;
  gap: clamp(24px, 5vw, 64px);
  align-items: end;
  margin-bottom: clamp(28px, 4vw, 48px);
}
.section-head .lede { margin-top: 12px; }
@media (max-width: 760px) {
  .section-head { grid-template-columns: 1fr; align-items: start; }
}

/* ---------- Institutes served ---------- */
.institutes {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: var(--line);
  border: 1px solid var(--line);
}
.institute {
  background: var(--surface);
  padding: 28px 24px;
  display: flex; align-items: center; gap: 18px;
  min-height: 110px;
}
.institute-mark {
  flex: 0 0 56px; width: 56px; height: 56px;
  border-radius: 999px;
  background: color-mix(in oklab, var(--accent) 8%, var(--surface));
  border: 1px solid var(--line);
  display: grid; place-items: center;
  font-family: var(--serif); font-weight: 600; font-size: 16px;
  letter-spacing: 0.01em; color: var(--accent);
}
.institute h3 {
  font-family: var(--sans); font-size: 15px; font-weight: 600;
  line-height: 1.35; color: var(--ink); margin: 0;
  text-wrap: balance;
}
@media (max-width: 860px) { .institutes { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .institutes { grid-template-columns: 1fr; } }

/* ---------- Video ---------- */
.video-wrap {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: var(--r);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--ink);
}
.video-wrap iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  border: 0;
}

/* ---------- Amenities ---------- */
.amenities {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; background: var(--line);
  border: 1px solid var(--line);
}
.amenity {
  background: var(--surface); padding: 22px 20px;
  display: flex; flex-direction: column; gap: 10px;
  min-height: 130px;
}
.amenity .ico {
  width: 28px; height: 28px;
  display: grid; place-items: center;
  color: var(--accent);
}
.amenity .ico svg { width: 22px; height: 22px; }
.amenity h4 { font-family: var(--sans); font-size: 14px; font-weight: 600; margin: 0; }
.amenity p { margin: 0; font-size: 12.5px; color: var(--muted); line-height: 1.5; }
@media (max-width: 860px) { .amenities { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .amenities { grid-template-columns: 1fr; } }

/* ---------- Sections: hostel + guesthouse ---------- */
.split-section {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  border: 1px solid var(--line); border-radius: var(--r); overflow: hidden;
}
.split-section > div { padding: clamp(28px, 4vw, 48px); background: var(--surface); }
.split-section > div + div { border-left: 1px solid var(--line); }
.split-section h2 { margin-bottom: 12px; }
.split-section .pricing {
  margin-top: 24px; display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  border-top: 1px solid var(--line);
}
.split-section .pricing > div { padding: 18px 0; border-left: 1px solid var(--line); padding-left: 18px; }
.split-section .pricing > div:first-child { border-left: 0; padding-left: 0; }
.split-section .pricing b {
  display: block; font-family: var(--serif); font-size: 26px; font-weight: 500; color: var(--ink);
}
.split-section .pricing span { display: block; font-size: 12px; color: var(--muted); margin-top: 4px; letter-spacing: 0.04em; }
.split-section ul {
  margin: 18px 0 0; padding: 0; list-style: none;
  display: grid; grid-template-columns: 1fr 1fr; gap: 8px 18px;
}
.split-section li {
  font-size: 13.5px; color: var(--ink-2); padding-left: 18px; position: relative;
}
.split-section li::before {
  content: ""; position: absolute; left: 0; top: 8px;
  width: 8px; height: 8px; background: var(--gold);
  transform: rotate(45deg);
}
@media (max-width: 860px) {
  .split-section { grid-template-columns: 1fr; }
  .split-section > div + div { border-left: 0; border-top: 1px solid var(--line); }
}
.room-list {
  margin: 18px 0 0; padding: 0; list-style: none;
  display: grid; grid-template-columns: 1fr 1fr; gap: 8px 18px;
}
.room-list li {
  font-size: 13.5px; color: var(--ink-2); padding-left: 18px; position: relative;
}
.room-list li::before {
  content: ""; position: absolute; left: 0; top: 8px;
  width: 8px; height: 8px; background: var(--gold);
  transform: rotate(45deg);
}
@media (max-width: 480px) {
  .room-list { grid-template-columns: 1fr; }
}

/* ---------- Tabs / Forms ---------- */
.book {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r);
  overflow: hidden;
}
.tabs { display: flex; border-bottom: 1px solid var(--line); }
.tab {
  flex: 1; appearance: none; background: transparent; border: 0;
  font: inherit; padding: 22px 24px; cursor: pointer;
  color: var(--muted); font-weight: 600; font-size: 13.5px;
  letter-spacing: 0.04em; text-transform: uppercase;
  border-bottom: 2px solid transparent;
  text-align: left;
  display: flex; flex-direction: column; gap: 4px;
}
.tab:hover { color: var(--ink-2); }
.tab[aria-selected="true"] {
  color: var(--ink); border-bottom-color: var(--accent);
  background: color-mix(in oklab, var(--accent) 4%, var(--surface));
}
.tab small {
  font-size: 11px; font-weight: 500; text-transform: none;
  letter-spacing: 0; color: var(--muted);
}
.form { padding: clamp(24px, 3vw, 36px); }
.form-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 18px 20px;
}
.form-grid .full { grid-column: 1 / -1; }
@media (max-width: 640px) { .form-grid { grid-template-columns: 1fr; } }

.field { display: flex; flex-direction: column; gap: 6px; }
.field label {
  font-size: 12px; font-weight: 600; letter-spacing: 0.04em;
  text-transform: uppercase; color: var(--muted);
}
.field label .req { color: #b3261e; margin-left: 4px; }
.field input, .field select, .field textarea {
  font: inherit; font-size: 14px;
  padding: 12px 14px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--r);
  color: var(--ink);
  transition: border-color .12s ease, box-shadow .12s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--accent);
  box-shadow: 0 0 0 3px color-mix(in oklab, var(--accent) 18%, transparent);
}
.field textarea { resize: vertical; min-height: 92px; }
.field .err { font-size: 12px; color: #b3261e; }
.field.has-err input, .field.has-err select, .field.has-err textarea {
  border-color: #b3261e;
}
.field .hint { font-size: 11.5px; color: var(--muted); }

.radio-group { display: flex; gap: 10px; flex-wrap: wrap; }
.radio-group label {
  flex: 1; min-width: 140px;
  padding: 14px 16px; border: 1px solid var(--line); border-radius: var(--r);
  cursor: pointer; background: var(--bg);
  display: flex; flex-direction: column; gap: 4px;
  font-size: 13px; text-transform: none; letter-spacing: 0;
  color: var(--ink); font-weight: 500;
  transition: border-color .12s ease, background .12s ease;
}
.radio-group label small { color: var(--muted); font-weight: 400; }
.radio-group input { position: absolute; opacity: 0; pointer-events: none; }
.radio-group label.on {
  border-color: var(--accent); background: color-mix(in oklab, var(--accent) 6%, var(--surface));
  box-shadow: inset 0 0 0 1px var(--accent);
}

.form-foot {
  margin-top: 26px; padding-top: 22px; border-top: 1px solid var(--line);
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  flex-wrap: wrap;
}
.form-foot .muted { font-size: 12.5px; }

/* Success */
.success {
  padding: 40px clamp(24px, 3vw, 36px);
  text-align: center;
}
.success .check {
  width: 56px; height: 56px; border-radius: 50%;
  background: color-mix(in oklab, #22a06b 16%, var(--surface));
  color: #22a06b; display: grid; place-items: center;
  margin: 0 auto 18px;
  font-size: 26px;
}
.success h3 { font-size: 24px; margin-bottom: 8px; }
.success p { color: var(--muted); max-width: 46ch; margin: 0 auto 22px; }

/* ---------- Location ---------- */
.location {
  display: grid; grid-template-columns: 1.05fr 1fr; gap: 0;
  border: 1px solid var(--line); border-radius: var(--r); overflow: hidden;
}
.location .map { background: var(--bg-2); min-height: 380px; position: relative; overflow: hidden; }
.location .map iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.location .info { background: var(--surface); padding: clamp(28px, 4vw, 44px); }
.location .info ul { list-style: none; padding: 0; margin: 22px 0 0; display: flex; flex-direction: column; gap: 14px; }
.location .info li { display: flex; gap: 14px; align-items: flex-start; font-size: 14px; }
.location .info li .ico {
  flex: 0 0 32px; width: 32px; height: 32px;
  border: 1px solid var(--line); border-radius: var(--r);
  display: grid; place-items: center; color: var(--accent);
}
.location .info li b { display: block; font-weight: 600; color: var(--ink); font-size: 13px; }
.location .info li span { color: var(--muted); font-size: 13px; }
@media (max-width: 860px) { .location { grid-template-columns: 1fr; } }

/* Stylized map */
.map-art {
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 30% 40%, color-mix(in oklab, var(--accent) 7%, transparent), transparent 60%),
    linear-gradient(0deg, var(--bg-2) 0%, var(--bg) 100%);
}
.map-art svg { width: 100%; height: 100%; }
.map-pin {
  position: absolute; left: 52%; top: 48%;
  transform: translate(-50%, -100%);
  display: flex; flex-direction: column; align-items: center; gap: 6px;
}
.map-pin .pulse {
  width: 14px; height: 14px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 0 color-mix(in oklab, var(--accent) 60%, transparent);
  animation: pulse 1.8s ease-out infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 color-mix(in oklab, var(--accent) 50%, transparent); }
  70% { box-shadow: 0 0 0 22px color-mix(in oklab, var(--accent) 0%, transparent); }
  100% { box-shadow: 0 0 0 0 color-mix(in oklab, var(--accent) 0%, transparent); }
}
.map-pin .lbl {
  background: var(--surface); border: 1px solid var(--line);
  padding: 6px 10px; font-size: 12px; font-weight: 600;
  border-radius: var(--r); white-space: nowrap;
}

/* ---------- Testimonial ---------- */
.testimonial {
  background: var(--accent); color: var(--accent-ink);
  padding: clamp(48px, 7vw, 84px) clamp(28px, 5vw, 64px);
  border-radius: var(--r);
  display: grid; grid-template-columns: auto 1fr; gap: clamp(24px, 4vw, 48px);
  align-items: center;
}
.testimonial .quote-mark {
  font-family: var(--serif); font-size: 120px; line-height: 0.6;
  color: color-mix(in oklab, var(--accent-ink) 30%, transparent);
}
.testimonial blockquote {
  font-family: var(--serif); font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 400; margin: 0; line-height: 1.35;
}
.testimonial cite {
  display: block; margin-top: 18px; font-style: normal;
  font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase;
  color: color-mix(in oklab, var(--accent-ink) 78%, transparent);
}
@media (max-width: 640px) {
  .testimonial { grid-template-columns: 1fr; }
}

/* ---------- FAQ ---------- */
.faq { border-top: 1px solid var(--line); }
.faq details {
  border-bottom: 1px solid var(--line); padding: 20px 0;
}
.faq summary {
  cursor: pointer; list-style: none; display: flex; justify-content: space-between;
  align-items: center; gap: 16px;
  font-family: var(--serif); font-size: 19px; font-weight: 500;
  color: var(--ink);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; font-family: var(--sans); font-weight: 300;
  font-size: 24px; color: var(--muted);
  transition: transform .15s ease;
}
.faq details[open] summary::after { content: "−"; }
.faq details p { margin: 14px 0 0; color: var(--ink-2); font-size: 14.5px; max-width: 70ch; }

/* ---------- WhatsApp FAB ---------- */
.whatsapp-fab {
  position: fixed; bottom: 24px; right: 24px; z-index: 100;
  display: flex; align-items: center; gap: 8px;
  background: #25D366; color: #fff;
  padding: 12px 18px 12px 14px;
  border-radius: 999px;
  text-decoration: none; font-weight: 600; font-size: 14px;
  box-shadow: 0 4px 16px rgba(37,211,102,0.4);
  transition: transform .15s ease, box-shadow .15s ease;
}
.whatsapp-fab:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(37,211,102,0.5); }
@media (max-width: 480px) {
  .whatsapp-fab span { display: none; }
  .whatsapp-fab { padding: 14px; bottom: 20px; right: 16px; }
}

/* ---------- Pricing row ---------- */
.pricing-row {
  display: flex; gap: 0;
  border: 1px solid var(--line); border-radius: var(--r);
  overflow: hidden; margin-bottom: 20px;
}
.pricing-row > div {
  flex: 1; padding: 14px 16px;
  background: color-mix(in oklab, var(--accent) 4%, var(--surface));
  display: flex; flex-direction: column; gap: 3px;
}
.pricing-row > div + div { border-left: 1px solid var(--line); }
.pricing-row b {
  font-family: var(--serif); font-size: 22px; font-weight: 500;
  color: var(--ink); line-height: 1;
}
.pricing-row span { font-size: 11px; color: var(--muted); letter-spacing: 0.04em; text-transform: uppercase; }

/* ---------- Footer ---------- */
footer {
  margin-top: 24px;
  border-top: 1px solid var(--line);
  padding: 48px 0 32px;
  font-size: 13px; color: var(--muted);
}
.foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 32px; }
.foot-grid h5 {
  font-family: var(--sans); font-size: 11px; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--ink); margin: 0 0 14px;
}
.foot-grid ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.foot-grid a { color: var(--muted); text-decoration: none; }
.foot-grid a:hover { color: var(--ink); }
.foot-grid p { margin: 0; line-height: 1.6; }
.foot-bottom {
  margin-top: 36px; padding-top: 18px; border-top: 1px solid var(--line);
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  font-size: 12px;
}
@media (max-width: 760px) {
  .foot-grid { grid-template-columns: 1fr 1fr; }
}
