/* ===========================================================
   Kot Campus Spoor Noord — clean & modern, 3 themes
   Theme is set with data-theme="a|b|c" on <html>
   a = Fris (wit + fris groen)
   b = Warm (cr\u00e8me + terracotta, serif display)
   c = Statement (hoog contrast, elektrisch, strak)
   =========================================================== */

/* ---- base tokens (theme A / Fris) ---- */
:root,
[data-theme="a"] {
  --bg: #ffffff;
  --surface: #f4f7f5;
  --surface-2: #eef3f0;
  --ink: #13201a;
  --ink-soft: #38463f;
  --muted: #5f6e66;
  --accent: #129155;
  --accent-deep: #0c6e40;
  --accent-soft: #e3f3ea;
  --accent-ink: #ffffff;
  --line: #e4eae7;
  --radius: 16px;
  --radius-sm: 11px;
  --radius-lg: 26px;
  --font-head: "Schibsted Grotesk", system-ui, sans-serif;
  --font-body: "Hanken Grotesk", system-ui, sans-serif;
  --head-weight: 600;
  --head-spacing: -0.02em;
  --label-transform: none;
  --label-spacing: 0.01em;
  --shadow: 0 1px 2px rgba(18,40,30,.04), 0 18px 44px -28px rgba(18,40,30,.28);
  --shadow-soft: 0 1px 2px rgba(18,40,30,.04), 0 10px 30px -22px rgba(18,40,30,.22);
}

/* ---- theme B / Warm ---- */
[data-theme="b"] {
  --bg: #faf6ef;
  --surface: #f3ece0;
  --surface-2: #efe6d6;
  --ink: #2a241d;
  --ink-soft: #4d4438;
  --muted: #756a5b;
  --accent: #c0633a;
  --accent-deep: #a14e2b;
  --accent-soft: #f2e2d6;
  --accent-ink: #ffffff;
  --line: #e6dccb;
  --radius: 24px;
  --radius-sm: 16px;
  --radius-lg: 34px;
  --font-head: "Instrument Serif", Georgia, serif;
  --font-body: "Hanken Grotesk", system-ui, sans-serif;
  --head-weight: 400;
  --head-spacing: -0.01em;
  --label-transform: none;
  --label-spacing: 0.02em;
  --shadow: 0 1px 2px rgba(60,40,20,.05), 0 20px 50px -30px rgba(80,50,25,.35);
  --shadow-soft: 0 1px 2px rgba(60,40,20,.05), 0 12px 32px -24px rgba(80,50,25,.28);
}

/* ---- theme C / Statement ---- */
[data-theme="c"] {
  --bg: #ffffff;
  --surface: #f3f4f8;
  --surface-2: #eaecf3;
  --ink: #0d0e12;
  --ink-soft: #2c2e36;
  --muted: #61636f;
  --accent: #2f37ff;
  --accent-deep: #1d24d6;
  --accent-soft: #e7e8ff;
  --accent-ink: #ffffff;
  --line: #e4e5ec;
  --radius: 6px;
  --radius-sm: 4px;
  --radius-lg: 8px;
  --font-head: "Space Grotesk", system-ui, sans-serif;
  --font-body: "Space Grotesk", system-ui, sans-serif;
  --head-weight: 700;
  --head-spacing: -0.03em;
  --label-transform: uppercase;
  --label-spacing: 0.14em;
  --shadow: 0 2px 0 rgba(13,14,18,.04), 0 24px 50px -34px rgba(13,14,18,.4);
  --shadow-soft: 0 2px 0 rgba(13,14,18,.03), 0 14px 34px -26px rgba(13,14,18,.3);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: var(--head-weight);
  letter-spacing: var(--head-spacing);
  line-height: 1.05;
  margin: 0;
  text-wrap: balance;
}

p { margin: 0; text-wrap: pretty; }

.wrap { width: min(1180px, 92vw); margin: 0 auto; }

.section { padding: clamp(64px, 9vw, 128px) 0; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: var(--label-spacing);
  text-transform: var(--label-transform);
  color: var(--accent-deep);
}
.eyebrow::before {
  content: "";
  width: 22px; height: 1.5px;
  background: var(--accent);
  display: inline-block;
}

.section-head { max-width: 720px; margin-bottom: clamp(36px, 5vw, 60px); }
.section-head h2 {
  font-size: clamp(30px, 4.4vw, 52px);
  margin: 16px 0 0;
}
.section-head p {
  margin-top: 18px;
  color: var(--muted);
  font-size: clamp(17px, 1.4vw, 20px);
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15.5px;
  padding: 14px 24px;
  border-radius: 999px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform .18s ease, background .18s ease, box-shadow .18s ease, color .18s ease;
  letter-spacing: var(--label-spacing);
  text-transform: var(--label-transform);
}
.btn-primary {
  background: var(--accent);
  color: var(--accent-ink);
  box-shadow: var(--shadow-soft);
}
.btn-primary:hover { background: var(--accent-deep); transform: translateY(-2px); }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}
.btn-ghost:hover { border-color: var(--ink); transform: translateY(-2px); }
[data-theme="c"] .btn { border-radius: 4px; }

/* ---------- header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: color-mix(in srgb, var(--bg) 86%, transparent);
  backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 74px;
  flex-wrap: wrap;
  padding: 8px 0;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand-mark {
  width: 38px; height: 38px;
  border-radius: 11px;
  background: var(--accent);
  color: var(--accent-ink);
  display: grid; place-items: center;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 19px;
  flex: none;
}
[data-theme="c"] .brand-mark { border-radius: 4px; }
.brand-name { font-family: var(--font-head); font-weight: var(--head-weight); font-size: 17px; line-height: 1.1; letter-spacing: -0.01em; }
.brand-name small { display: block; font-family: var(--font-body); font-weight: 500; font-size: 11.5px; color: var(--muted); letter-spacing: .02em; }
.nav-links {
  display: flex; align-items: center; flex-wrap: wrap; gap: 0;
}
.nav-links a {
  font-size: 15px; font-weight: 500; color: var(--ink-soft);
  padding: 4px 16px;
  border-right: 1.5px solid var(--line);
  line-height: 1;
}
.nav-links a:last-child { border-right: none; }
.nav-links a:hover { color: var(--accent-deep); }
.nav-cta { display: flex; align-items: center; gap: 14px; }

/* responsive nav — wraps to own centred row on small screens */
@media (max-width: 820px) {
  .nav { row-gap: 8px; }
  .nav-links { order: 3; width: 100%; justify-content: center; border-top: 1px solid var(--line); padding-top: 10px; margin-top: 2px; }
  .nav-links a { font-size: 13.5px; padding: 6px 12px; }
  .nav-cta .btn { font-size: 13.5px; padding: 11px 16px; }
}

/* hamburger — removed; nav wraps automatically */
.nav-burger { display: none; }
.mobile-menu { display: none; }

/* ---------- hero ---------- */
.hero { padding: clamp(48px, 7vw, 96px) 0 clamp(48px, 6vw, 80px); }
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
.badge {
  display: inline-flex; align-items: center; gap: 9px;
  background: var(--accent-soft);
  color: var(--accent-deep);
  font-weight: 600; font-size: 13.5px;
  padding: 7px 14px 7px 11px;
  border-radius: 999px;
  letter-spacing: var(--label-spacing);
  text-transform: var(--label-transform);
}
.badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent) 22%, transparent); }
.hero h1 {
  font-size: clamp(40px, 6.4vw, 74px);
  margin: 24px 0 0;
  line-height: 1.02;
}
.hero h1 .hl { color: var(--accent); }
[data-theme="b"] .hero h1 .hl { font-style: italic; }
.hero-lead {
  margin-top: 22px;
  font-size: clamp(17px, 1.5vw, 21px);
  color: var(--muted);
  max-width: 30ch;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }
.hero-meta { display: flex; gap: 28px; margin-top: 40px; flex-wrap: wrap; }
.hero-meta .m-num { font-family: var(--font-head); font-weight: var(--head-weight); font-size: clamp(26px, 3vw, 34px); color: var(--ink); }
.hero-meta .m-lab { font-size: 13.5px; color: var(--muted); margin-top: 2px; }
.hero-media { position: relative; }
.hero-media .photo {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
.hero-price {
  position: absolute;
  left: -18px; bottom: -18px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 16px 20px;
}
.hero-price .p-big { font-family: var(--font-head); font-weight: var(--head-weight); font-size: 30px; letter-spacing: -0.02em; }
.hero-price .p-big span { color: var(--accent); }
.hero-price .p-sub { font-size: 13px; color: var(--muted); font-weight: 600; letter-spacing: var(--label-spacing); text-transform: var(--label-transform); }
@media (max-width: 860px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-media { order: -1; }
  .hero-media .photo { aspect-ratio: 16/11; }
  .hero-price { left: auto; right: 14px; }
}

/* ---------- USP strip ---------- */
.usp {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.usp .cell { background: var(--bg); padding: 26px 24px; }
.usp .ic { color: var(--accent); width: 26px; height: 26px; }
.usp .t { font-family: var(--font-head); font-weight: var(--head-weight); font-size: 18px; margin-top: 14px; }
.usp .d { color: var(--muted); font-size: 14.5px; margin-top: 5px; }
@media (max-width: 640px) { .usp { grid-template-columns: 1fr; } }

/* ---------- split feature (kamers) ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 4vw, 64px);
  align-items: center;
}
.split.rev .split-media { order: 2; }
.split-media img { width: 100%; aspect-ratio: 5/4; object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.feat-list { display: grid; gap: 14px; margin-top: 24px; }
.feat-list li { list-style: none; display: flex; gap: 13px; align-items: flex-start; }
.feat-list .tick {
  flex: none; width: 24px; height: 24px; border-radius: 50%;
  background: var(--accent-soft); color: var(--accent-deep);
  display: grid; place-items: center; margin-top: 1px;
}
[data-theme="c"] .feat-list .tick { border-radius: 3px; }
.feat-list b { font-weight: 700; }
.feat-list span { color: var(--ink-soft); }
@media (max-width: 800px) {
  .split { grid-template-columns: 1fr; }
  .split.rev .split-media { order: -1; }
}

/* room type cards */
.rooms { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin-top: 40px; }
.room-card {
  background: var(--bg);
  min-width: 0; min-height: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  display: flex; flex-direction: column;
}
.room-card img { width: 100%; height: 300px; object-fit: cover; display: block; }
.room-card .rc-body { padding: 24px; }
.room-card .rc-tag { font-size: 12.5px; font-weight: 700; color: var(--accent-deep); letter-spacing: var(--label-spacing); text-transform: uppercase; }
.room-card h3 { font-size: 23px; margin: 8px 0 8px; }
.room-card p { color: var(--muted); font-size: 15px; }
@media (max-width: 760px) { .rooms { grid-template-columns: 1fr; } }

/* plattegronden */
.plans { margin-top: clamp(40px, 6vw, 68px); }
.plans-head { margin-bottom: 24px; }
.plans-head h3 { font-size: clamp(22px, 2.6vw, 30px); margin-top: 12px; }
.plans-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.plan {
  display: flex; align-items: center; gap: 14px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px 18px;
  box-shadow: var(--shadow-soft);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.plan:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: var(--accent); }
.plan-ic {
  flex: none; width: 44px; height: 44px; border-radius: 12px;
  background: var(--accent-soft); color: var(--accent-deep);
  display: grid; place-items: center;
}
[data-theme="c"] .plan-ic { border-radius: 4px; }
.plan-txt { display: flex; flex-direction: column; line-height: 1.3; min-width: 0; }
.plan-txt b { font-family: var(--font-head); font-weight: var(--head-weight); font-size: 15.5px; letter-spacing: -0.01em; }
.plan-txt span { font-size: 12.5px; color: var(--muted); margin-top: 2px; letter-spacing: var(--label-spacing); text-transform: var(--label-transform); }
.plan-dl { margin-left: auto; flex: none; color: var(--muted); transition: color .18s ease, transform .18s ease; }
.plan:hover .plan-dl { color: var(--accent); transform: translateY(2px); }
@media (max-width: 920px) { .plans-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 460px) { .plans-grid { grid-template-columns: 1fr; } }

/* plan link inside room card */
.plan-inline {
  display: flex; align-items: center; gap: 14px;
  margin-top: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  background: var(--surface);
  transition: border-color .18s ease, background .18s ease;
}
.plan-inline:hover { border-color: var(--accent); background: var(--accent-soft); }

/* ---------- pillars (kwaliteit/eco/allergie/comfort) ---------- */
.pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.pillar {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow-soft);
  transition: transform .2s ease, box-shadow .2s ease;
}
.pillar:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.pillar .pic {
  width: 46px; height: 46px; border-radius: 13px;
  background: var(--accent-soft); color: var(--accent-deep);
  display: grid; place-items: center; margin-bottom: 18px;
}
[data-theme="c"] .pillar .pic { border-radius: 4px; }
.pillar h3 { font-size: 20px; }
.pillar ul { margin: 14px 0 0; padding: 0; display: grid; gap: 9px; }
.pillar li { list-style: none; font-size: 14.5px; color: var(--ink-soft); padding-left: 18px; position: relative; }
.pillar li::before { content: ""; position: absolute; left: 0; top: 9px; width: 6px; height: 6px; border-radius: 50%; background: var(--accent); }
@media (max-width: 860px) { .pillars { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .pillars { grid-template-columns: 1fr; } }

/* ---------- prijs ---------- */
.price-band { background: var(--surface); }
.price-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(28px, 4vw, 56px); align-items: stretch; }
.price-card {
  background: var(--accent);
  color: var(--accent-ink);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 4vw, 44px);
  box-shadow: var(--shadow);
  display: flex; flex-direction: column;
}
.price-card .pc-amt { font-family: var(--font-head); font-weight: var(--head-weight); font-size: clamp(48px, 7vw, 76px); line-height: 1; letter-spacing: -0.03em; }
.price-card .pc-amt small { font-size: 22px; font-weight: 600; opacity: .9; }
.price-card .pc-allin {
  display: inline-flex; align-self: flex-start; margin-top: 16px;
  background: color-mix(in srgb, #fff 22%, transparent);
  padding: 6px 14px; border-radius: 999px; font-weight: 700; font-size: 13px;
  letter-spacing: .14em; text-transform: uppercase;
}
.price-card .pc-note { margin-top: auto; padding-top: 26px; font-size: 15px; opacity: .92; }
.price-card .pc-term { margin-top: 8px; font-size: 14px; opacity: .8; }
.incl { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; margin-top: 28px; }
.incl h4 { font-size: 13px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--accent-deep); margin-bottom: 14px; }
.incl ul { margin: 0; padding: 0; display: grid; gap: 11px; }
.incl li { list-style: none; display: flex; gap: 11px; font-size: 15px; color: var(--ink-soft); align-items: flex-start; }
.incl li svg { flex: none; color: var(--accent); margin-top: 2px; }
@media (max-width: 820px) { .price-grid { grid-template-columns: 1fr; } }
@media (max-width: 520px) { .incl { grid-template-columns: 1fr; } }

/* ---------- ligging ---------- */
.loc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 4vw, 56px); align-items: start; }
.loc-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  height: 100%;
  min-height: 420px;
}
.loc-map iframe { width: 100%; height: 100%; border: 0; display: block; filter: saturate(1.02); }
.addr { display: flex; align-items: center; gap: 12px; font-size: 18px; font-weight: 600; }
.addr .pin { width: 40px; height: 40px; border-radius: 11px; background: var(--accent-soft); color: var(--accent-deep); display: grid; place-items: center; flex: none; }
[data-theme="c"] .addr .pin { border-radius: 4px; }
.transit { margin: 26px 0 0; padding: 0; display: grid; gap: 0; border-top: 1px solid var(--line); }
.transit li { list-style: none; display: flex; align-items: center; gap: 14px; padding: 13px 0; border-bottom: 1px solid var(--line); }
.transit .tnum { font-family: var(--font-head); font-weight: var(--head-weight); font-size: 17px; color: var(--accent-deep); width: 78px; flex: none; }
.transit .ttxt { color: var(--ink-soft); font-size: 15.5px; }
.near { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 28px; }
.near .ncard { background: var(--surface); border-radius: var(--radius); padding: 20px; }
.near h4 { font-size: 16px; margin-bottom: 6px; }
.near p { font-size: 14px; color: var(--muted); }
@media (max-width: 820px) { .loc-grid { grid-template-columns: 1fr; } .loc-map { min-height: 320px; } }
@media (max-width: 460px) { .near { grid-template-columns: 1fr; } }

/* ---------- galerij ---------- */
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 200px; gap: 14px; }
.gallery a { overflow: hidden; border-radius: var(--radius); min-width: 0; min-height: 0; }
.gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.gallery a:hover img { transform: scale(1.06); }
.gallery .wide { grid-column: span 2; }
.gallery .tall { grid-row: span 2; }
@media (max-width: 760px) { .gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 150px; } .gallery .wide { grid-column: span 2; } .gallery .tall { grid-row: span 1; } }

/* ---------- contact ---------- */
.contact-band { background: var(--surface); }
.contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(28px, 4vw, 56px); }
.contact-card { display: flex; flex-direction: column; }
.contact-card h2 { font-size: clamp(28px, 4vw, 46px); }
.contact-card p.sub { color: var(--muted); margin-top: 16px; font-size: 17px; }
.ctline { display: flex; align-items: center; gap: 14px; padding: 16px 0; border-bottom: 1px solid var(--line); }
.ctline:first-of-type { border-top: 1px solid var(--line); }
.ctline .ic { width: 42px; height: 42px; border-radius: 12px; background: var(--bg); border: 1px solid var(--line); display: grid; place-items: center; color: var(--accent-deep); flex: none; }
[data-theme="c"] .ctline .ic { border-radius: 4px; }
.ctline .lab { font-size: 12.5px; color: var(--muted); letter-spacing: var(--label-spacing); text-transform: uppercase; font-weight: 600; }
.ctline .val { font-family: var(--font-head); font-weight: var(--head-weight); font-size: 19px; }
.ctline:hover .val { color: var(--accent-deep); }
.who { margin-top: 26px; font-size: 15px; color: var(--ink-soft); }
.who b { font-weight: 700; }

.form {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(26px, 3vw, 40px);
  box-shadow: var(--shadow-soft);
}
.form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { margin-bottom: 16px; display: flex; flex-direction: column; gap: 7px; }
.field label { font-size: 13px; font-weight: 600; color: var(--ink-soft); }
.field label .req { color: var(--accent); }
.field input, .field textarea, .field select {
  font-family: var(--font-body); font-size: 15.5px; color: var(--ink);
  background: var(--surface);
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 13px 14px;
  width: 100%;
  transition: border-color .15s ease, box-shadow .15s ease, background .15s ease;
}
.field textarea { resize: vertical; min-height: 110px; }
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none; border-color: var(--accent);
  background: var(--bg);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent) 16%, transparent);
}
.form .btn-primary { width: 100%; justify-content: center; margin-top: 6px; }
.form-note { font-size: 12.5px; color: var(--muted); margin-top: 12px; text-align: center; }
.form-msg {
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 15px;
  margin-bottom: 18px;
}
.form-msg--ok   { background: var(--accent-soft); color: var(--accent-deep); border: 1.5px solid var(--accent); }
.form-msg--fout { background: #fdecea; color: #b91c1c; border: 1.5px solid #f87171; }
@media (max-width: 800px) { .contact-grid { grid-template-columns: 1fr; } }
@media (max-width: 480px) { .form .row { grid-template-columns: 1fr; } }

/* ---------- footer ---------- */
.site-footer { border-top: 1px solid var(--line); padding: 48px 0 40px; }
.foot-grid { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.foot-links { display: flex; gap: 24px; flex-wrap: wrap; }
.foot-links a { font-size: 14.5px; color: var(--muted); }
.foot-links a:hover { color: var(--accent-deep); }
.foot-copy { font-size: 13.5px; color: var(--muted); margin-top: 20px; }

/* ---------- theme switcher ---------- */
.theme-switch {
  position: fixed; right: 18px; bottom: 18px; z-index: 80;
  display: flex; align-items: center; gap: 6px;
  background: color-mix(in srgb, var(--bg) 90%, transparent);
  backdrop-filter: blur(12px);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 6px;
  box-shadow: var(--shadow);
}
.theme-switch button {
  font-family: var(--font-body); font-weight: 600; font-size: 12.5px;
  border: none; cursor: pointer; background: transparent; color: var(--muted);
  padding: 8px 14px; border-radius: 999px; transition: all .15s ease;
}
.theme-switch button.on { background: var(--accent); color: var(--accent-ink); }
.theme-switch .sw-label { font-size: 11px; color: var(--muted); padding-left: 8px; font-weight: 600; letter-spacing: .04em; }
@media (max-width: 600px) { .theme-switch .sw-label { display: none; } }

/* reveal: content is unconditionally visible. (Entrance animation removed to
   guarantee no blank-state can ever occur in throttled/background contexts.) */
.reveal { opacity: 1; transform: none; }

/* ===========================================================
   STATEMENT polish (theme C only) — architectural, high-contrast
   =========================================================== */

/* Numbered section eyebrows */
[data-theme="c"] body { counter-reset: sec; }
[data-theme="c"] .section-head .eyebrow::after,
[data-theme="c"] .split-copy .eyebrow::after,
[data-theme="c"] .contact-card .eyebrow::after { content: none; }

/* Heavier keylines + boxier feel */
[data-theme="c"] .usp { border-width: 1.5px; }
[data-theme="c"] .usp .cell { transition: background .18s ease, color .18s ease; }
[data-theme="c"] .usp .cell:hover { background: var(--ink); }
[data-theme="c"] .usp .cell:hover .t,
[data-theme="c"] .usp .cell:hover .d { color: #fff; }
[data-theme="c"] .usp .cell:hover .ic { color: var(--accent); }

/* Square the pills for a sharper identity */
[data-theme="c"] .badge { border-radius: 4px; }
[data-theme="c"] .hero-price { border-width: 1.5px; }
[data-theme="c"] .pc-allin,
[data-theme="c"] .price-card .pc-allin { border-radius: 4px; }
[data-theme="c"] .theme-switch,
[data-theme="c"] .theme-switch button { border-radius: 6px; }

/* Bold hero underline accent on the highlight */
[data-theme="c"] .hero h1 .hl {
  background: linear-gradient(transparent 78%, color-mix(in srgb, var(--accent) 26%, transparent) 0);
}

/* Pillars: hard left keyline that fills on hover */
[data-theme="c"] .pillar {
  border-left: 3px solid var(--accent);
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
[data-theme="c"] .pillar:hover { background: var(--accent-soft); }

/* Room cards + form: crisper borders */
[data-theme="c"] .room-card,
[data-theme="c"] .form,
[data-theme="c"] .loc-map { border-width: 1.5px; }

/* Section heads get a strong rule above the title */
[data-theme="c"] .section-head h2 { padding-top: 18px; position: relative; }
[data-theme="c"] .section-head h2::before {
  content: ""; position: absolute; top: 0; left: 0;
  width: 56px; height: 3px; background: var(--accent);
}

/* Buttons: tighter, more deliberate */
[data-theme="c"] .btn { font-size: 14.5px; padding: 14px 22px; }
[data-theme="c"] .btn-primary:hover { box-shadow: 4px 4px 0 var(--ink); transform: translateY(-2px); }

/* Transit numbers monospaced-feel via Space Grotesk tabular */
[data-theme="c"] .transit .tnum { font-variant-numeric: tabular-nums; }
