/* =====================================================
   Bloom Fort Villa — Coastal Editorial Luxury
   ===================================================== */

/* ---------- Tokens ---------- */
:root {
  /* Surfaces */
  --ink: #0a2a22;          /* deep forest */
  --ink-2: #06180f;
  --paper: #f8f3eb;        /* warm ivory */
  --paper-2: #efe5d2;      /* deeper cream */
  --paper-3: #e6dac0;
  --surface: #ffffff;

  /* Text */
  --text: #122a23;
  --text-soft: #4f6058;
  --muted: #8a9a93;
  --border: #e3dac4;
  --line: rgba(10, 42, 34, .12);

  /* Brand */
  --primary: #0e4d3f;       /* forest */
  --primary-2: #093327;     /* deeper forest */
  --primary-3: #156656;     /* lighter forest */
  --accent: #c47457;        /* terracotta / copper */
  --accent-2: #e8b665;      /* warm gold */
  --gold: #b8924d;

  /* Effects */
  --shadow-xs: 0 1px 2px rgba(10, 42, 34, .06);
  --shadow-sm: 0 2px 6px rgba(10, 42, 34, .06), 0 1px 2px rgba(10, 42, 34, .04);
  --shadow-md: 0 10px 30px rgba(10, 42, 34, .08), 0 4px 8px rgba(10, 42, 34, .04);
  --shadow-lg: 0 24px 60px rgba(10, 42, 34, .14), 0 10px 24px rgba(10, 42, 34, .08);
  --shadow-glow: 0 0 0 1px rgba(232, 182, 101, .35), 0 16px 40px rgba(10, 42, 34, .18);

  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 22px;
  --radius-xl: 28px;

  --ease: cubic-bezier(.22, 1, .36, 1);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }

html, body { overflow-x: clip; }
@supports not (overflow-x: clip) {
  html, body { overflow-x: hidden; }
}

/* ---------- Scrollbar ---------- */
html {
  scrollbar-width: thin;
  scrollbar-color: var(--primary) var(--paper-2);
}
::-webkit-scrollbar { width: 12px; height: 12px; }
::-webkit-scrollbar-track { background: var(--paper-2); }
::-webkit-scrollbar-thumb {
  background: var(--primary);
  border: 3px solid var(--paper-2);
  border-radius: 999px;
}
::-webkit-scrollbar-thumb:hover { background: var(--primary-3); }

body {
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color: var(--text);
  background: var(--paper);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  font-family: 'Fraunces', 'Times New Roman', serif;
  margin: 0 0 .6rem;
  line-height: 1.1;
  letter-spacing: -.015em;
  font-weight: 600;
  color: var(--ink);
}
.display {
  font-family: 'Fraunces', 'Times New Roman', serif;
  font-weight: 600;
  letter-spacing: -.025em;
  line-height: 1.02;
}
.display em {
  font-style: italic;
  color: var(--accent);
  font-weight: 500;
}
h1.display { font-size: clamp(2rem, 4.4vw, 3.6rem); }
h2.display { font-size: clamp(2.1rem, 4.4vw, 3.4rem); }
h3 { font-size: 1.25rem; font-weight: 600; }

p { color: var(--text-soft); font-size: 1rem; }

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ---------- Eyebrow ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  font-family: 'Inter', sans-serif;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}
.eyebrow::before {
  content: "";
  width: 28px; height: 1px;
  background: currentColor;
  display: inline-block;
}

.hl {
  background: linear-gradient(180deg, transparent 60%, rgba(232, 182, 101, .55) 60%);
  color: var(--ink);
  padding: 0 .15em;
  font-style: normal;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  font-weight: 500;
  border-radius: 999px;
  padding: .95rem 1.6rem;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease),
              background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
  font-size: .96rem;
  font-family: inherit;
  letter-spacing: .01em;
}
.btn--primary {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
  box-shadow: var(--shadow-sm);
}
.btn--primary:hover {
  background: var(--primary);
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn--accent {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
  box-shadow: var(--shadow-sm);
}
.btn--accent:hover {
  background: #b3654a;
  border-color: #b3654a;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn--gold {
  background: var(--accent-2);
  color: var(--ink);
  border-color: var(--accent-2);
}
.btn--gold:hover { background: #d6a14e; transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: rgba(10, 42, 34, .2);
}
.btn--ghost:hover { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.btn--ghost-dark {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn--ghost-dark:hover { background: var(--ink); color: var(--paper); }
.btn--text {
  background: transparent;
  border: none;
  color: var(--ink);
  padding: .85rem .25rem;
  font-weight: 500;
  position: relative;
  border-radius: 0;
}
.btn--text::after {
  content: "";
  position: absolute;
  left: .25rem; right: .25rem; bottom: .55rem;
  height: 1px;
  background: currentColor;
  transform-origin: left;
  transition: transform .35s var(--ease);
}
.btn--text:hover { color: var(--accent); }
.btn--block { width: 100%; }
.btn--sm { padding: .6rem 1.1rem; font-size: .85rem; }
.btn--lg { padding: 1.1rem 2rem; font-size: 1.04rem; }

/* ---------- Nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(248, 243, 235, .82);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  gap: 1rem;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  color: var(--ink);
  font-weight: 600;
  font-family: 'Fraunces', serif;
  font-size: 1.2rem;
  letter-spacing: .01em;
}
.logo__img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: contain;
  flex-shrink: 0;
}
.logo__text em {
  color: var(--accent);
  font-style: italic;
  font-weight: 500;
}

.nav__links { display: flex; gap: 1.6rem; }
.nav__links a {
  color: var(--text);
  font-weight: 500;
  font-size: .92rem;
  position: relative;
  padding: .35rem 0;
  transition: color .25s var(--ease);
}
.nav__links a::after {
  content: "";
  position: absolute;
  left: 50%; bottom: 0;
  height: 1px; width: 0;
  background: var(--accent);
  transform: translateX(-50%);
  transition: width .25s var(--ease);
}
.nav__links a:hover { color: var(--accent); }
.nav__links a:hover::after { width: 100%; }

/* ---------- Hero (full-bleed editorial) ---------- */
.hero {
  position: relative;
  min-height: clamp(560px, 88vh, 880px);
  color: #fff;
  overflow: hidden;
  isolation: isolate;
  display: flex;
  align-items: flex-end;
  padding: 8rem 0 4rem;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.hero__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  animation: heroZoom 18s var(--ease) forwards;
}
@keyframes heroZoom {
  to { transform: scale(1); }
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(6, 24, 15, .35) 0%, rgba(6, 24, 15, .25) 35%, rgba(6, 24, 15, .9) 100%),
    linear-gradient(90deg, rgba(6, 24, 15, .55) 0%, rgba(6, 24, 15, .15) 60%);
}
.hero__topline {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  font-size: .76rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(255,255,255,.92);
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 999px;
  padding: .5rem 1.1rem;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(8px);
  background: rgba(255,255,255,.06);
}
.dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--accent-2);
  box-shadow: 0 0 0 4px rgba(232, 182, 101, .25);
  animation: pulse 2.4s infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(232, 182, 101, .25); }
  50%      { box-shadow: 0 0 0 10px rgba(232, 182, 101, .05); }
}

.hero__copy { max-width: 820px; }
.hero__copy h1 {
  color: #fff;
  margin-bottom: 1.5rem;
}
.hero__copy h1 em { color: var(--accent-2); font-style: italic; }
.hero__copy .lead {
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  color: rgba(255,255,255,.86);
  max-width: 620px;
  margin: 0 0 2.25rem;
  line-height: 1.6;
}
.hero__cta {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}
.hero__cta .btn--primary {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}
.hero__cta .btn--primary:hover {
  background: #b3654a;
  border-color: #b3654a;
}
.hero__cta .btn--ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.5);
}
.hero__cta .btn--ghost:hover {
  background: #fff;
  color: var(--ink);
  border-color: #fff;
}

.hero__metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,.2);
  max-width: 640px;
}
.hero__metrics strong {
  display: block;
  font-family: 'Fraunces', serif;
  font-size: clamp(2rem, 3.5vw, 2.6rem);
  font-weight: 600;
  color: #fff;
  line-height: 1;
  margin-bottom: .4rem;
}
.hero__metrics em {
  color: var(--accent-2);
  font-style: italic;
  font-weight: 500;
}
.hero__metrics span {
  font-size: .82rem;
  color: rgba(255,255,255,.72);
  letter-spacing: .04em;
}

.hero__scroll {
  position: absolute;
  right: 1.5rem;
  bottom: 1.5rem;
  font-size: .7rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: rgba(255,255,255,.7);
  writing-mode: vertical-rl;
  display: flex;
  align-items: center;
  gap: .75rem;
}
.hero__scroll::before {
  content: "";
  width: 1px;
  height: 36px;
  background: linear-gradient(180deg, transparent, rgba(255,255,255,.7));
}

/* ---------- Ticker ---------- */
.ticker {
  background: var(--ink);
  color: var(--paper);
  border-top: 1px solid var(--ink-2);
  border-bottom: 1px solid var(--ink-2);
  overflow: hidden;
  padding: 1.1rem 0;
}
.ticker__track {
  display: flex;
  gap: 3.5rem;
  white-space: nowrap;
  animation: marquee 28s linear infinite;
  font-family: 'Fraunces', serif;
  font-size: 1.25rem;
  font-weight: 500;
  font-style: italic;
}
.ticker__track span { color: rgba(248, 243, 235, .85); }
.ticker__track span:nth-child(odd) { color: var(--accent-2); }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ---------- Section base ---------- */
.section { padding: 7rem 0; }
.section--alt { background: var(--paper-2); }
.section--ink { background: var(--ink); color: var(--paper); }
.section--ink h2,
.section--ink h3,
.section--ink h4 { color: var(--paper); }
.section--ink p { color: rgba(248, 243, 235, .75); }
.section--ink .eyebrow { color: var(--accent-2); }

.section__head {
  max-width: 760px;
  margin: 0 auto 4rem;
  text-align: center;
}
.section__head--left { text-align: left; margin: 0 0 4rem; max-width: 720px; }
.section__head p { font-size: 1.06rem; line-height: 1.65; }

/* ---------- Top Banner (light, vector decor) ---------- */
.top-banner {
  position: relative;
  min-height: clamp(280px, 36vw, 440px);
  overflow: hidden;
  display: grid;
  align-items: center;
  background:
    radial-gradient(ellipse at 78% 50%, rgba(232, 182, 101, .14), transparent 55%),
    radial-gradient(ellipse at 12% 100%, rgba(14, 77, 63, .08), transparent 50%),
    linear-gradient(135deg, var(--paper) 0%, var(--paper-2) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.top-banner__decor {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  color: var(--accent);
  overflow: hidden;
}
.top-banner__decor .frond {
  position: absolute;
  width: auto;
  height: auto;
}
.top-banner__decor .frond--right {
  right: -2.5rem;
  top: 50%;
  width: 360px;
  height: 520px;
  transform: translateY(-50%) rotate(-12deg);
  opacity: .35;
  color: var(--gold);
}
.top-banner__decor .frond--left {
  left: -3rem;
  bottom: -3rem;
  width: 220px;
  height: 320px;
  transform: rotate(160deg);
  opacity: .22;
  color: var(--primary);
}
.top-banner__dot {
  position: absolute;
  border-radius: 50%;
  background: var(--accent-2);
  opacity: .5;
}
.top-banner__dot--1 { width: 8px; height: 8px; right: 28%; top: 22%; }
.top-banner__dot--2 { width: 5px; height: 5px; right: 18%; bottom: 24%; opacity: .4; background: var(--accent); }
.top-banner__dot--3 { width: 6px; height: 6px; left: 38%; top: 18%; opacity: .35; background: var(--primary); }

.top-banner__inner {
  position: relative;
  z-index: 2;
  color: var(--ink);
  max-width: 640px;
  padding: 4rem 0;
}
.top-banner__tag {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid rgba(196, 116, 87, .35);
  padding: .45rem 1rem;
  border-radius: 999px;
  margin-bottom: 1.25rem;
  background: rgba(196, 116, 87, .06);
}
.top-banner__inner h2 {
  color: var(--ink);
  font-size: clamp(1.9rem, 4vw, 3rem);
  margin-bottom: .75rem;
}
.top-banner__inner h2 em {
  color: var(--accent);
  font-style: italic;
}
.top-banner__inner p {
  color: var(--text-soft);
  font-size: 1.04rem;
  margin: 0;
  max-width: 540px;
  line-height: 1.65;
}
@media (max-width: 760px) {
  .top-banner__decor .frond--right { width: 240px; height: 360px; right: -3rem; opacity: .25; }
  .top-banner__decor .frond--left { width: 140px; height: 200px; bottom: -2rem; opacity: .15; }
  .top-banner__dot { display: none; }
}

/* ---------- Amenities chips ---------- */
.chips {
  display: flex;
  flex-wrap: wrap;
  gap: .7rem;
}
.chip {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--ink);
  font-weight: 500;
  font-size: .94rem;
  padding: .8rem 1.3rem;
  border-radius: 999px;
  transition: transform .25s var(--ease), border-color .25s var(--ease),
              color .25s var(--ease), background .25s var(--ease);
  cursor: default;
}
.chip::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}
.chip:hover {
  transform: translateY(-2px);
  border-color: var(--ink);
  color: var(--accent);
}

/* ---------- Booking (consult) ---------- */
.consult {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.consult__copy h2 { margin-bottom: 1rem; }
.ticks {
  list-style: none;
  padding: 0;
  margin: 1.75rem 0 2rem;
  display: grid;
  gap: .7rem;
}
.ticks li {
  position: relative;
  padding-left: 2rem;
  color: var(--text);
  font-weight: 500;
  font-size: 1rem;
}
.ticks li::before {
  content: "";
  position: absolute;
  left: 0; top: .55rem;
  width: 18px; height: 8px;
  border-left: 1.5px solid var(--accent);
  border-bottom: 1.5px solid var(--accent);
  transform: rotate(-45deg);
  border-radius: 1px;
}

.urgency {
  display: flex; gap: 1rem; align-items: center;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--ink);
  padding: 1.1rem 1.35rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  max-width: 380px;
}
.urgency .flame {
  font-size: 1.5rem;
  width: 42px; height: 42px;
  border-radius: 50%;
  background: rgba(232, 182, 101, .15);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.urgency strong { display: block; font-family: 'Fraunces', serif; font-size: 1.05rem; }
.countdown { font-size: .85rem; color: var(--text-soft); margin-top: .15rem; }
.countdown span { font-weight: 600; color: var(--accent); font-variant-numeric: tabular-nums; }

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  box-shadow: var(--shadow-md);
}
.card h3 {
  font-family: 'Fraunces', serif;
  font-size: 1.55rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  letter-spacing: -.01em;
}
.form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field { margin-bottom: 1rem; display: block; }
.field label {
  display: block;
  font-size: .78rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: .45rem;
}
.field input, .field select {
  width: 100%;
  padding: .9rem 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--paper);
  font-size: .96rem;
  font-family: inherit;
  color: var(--text);
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease);
}
.field input::placeholder { color: var(--muted); }
.field input:focus, .field select:focus {
  outline: none;
  border-color: var(--primary);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(14, 77, 63, .1);
}
.form button[type="submit"] { margin-top: .5rem; padding: 1.1rem 1.5rem; }
.form__note {
  font-size: .78rem;
  color: var(--muted);
  text-align: center;
  margin: 1rem 0 0;
}

/* ---------- Rooms (tracks) ---------- */
.tracks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.75rem;
  margin-bottom: 4rem;
}
.tracks--3 { grid-template-columns: repeat(3, 1fr); }
.track {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.track:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.track__media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}
.track__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease);
}
.track:hover .track__media img { transform: scale(1.06); }
.track__tag {
  position: absolute;
  top: 1.1rem; left: 1.1rem;
  background: rgba(248, 243, 235, .94);
  color: var(--ink);
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  padding: .45rem .9rem;
  border-radius: 999px;
  backdrop-filter: blur(6px);
}
.track__body {
  padding: 2rem 1.9rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.track__body h3 {
  font-family: 'Fraunces', serif;
  font-size: 1.85rem;
  font-weight: 600;
  margin-bottom: .5rem;
  letter-spacing: -.015em;
}
.track__body > p { margin-bottom: 1.5rem; font-size: .98rem; }

/* Price block inside a room card */
.track__price {
  display: flex;
  align-items: baseline;
  gap: .55rem;
  margin: -.25rem 0 1.1rem;
  padding-bottom: 1rem;
  border-bottom: 1px dashed var(--line);
}
.track__price-amount {
  font-family: 'Fraunces', serif;
  font-size: 1.95rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1;
  letter-spacing: -.02em;
}
.track__price-amount em {
  font-style: normal;
  font-size: 1rem;
  color: var(--accent);
  font-weight: 500;
  margin-right: 1px;
  vertical-align: top;
  position: relative;
  top: .15rem;
}
.track__price-unit {
  font-size: .82rem;
  font-weight: 500;
  color: var(--text-soft);
  letter-spacing: .04em;
  text-transform: uppercase;
}
.track--popular .track__price-amount { color: var(--paper); }
.track--popular .track__price-amount em { color: var(--accent-2); }
.track--popular .track__price-unit { color: rgba(248, 243, 235, .6); }
.track--popular .track__price { border-bottom-color: rgba(248, 243, 235, .15); }
.track ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1.75rem;
  flex: 1;
}
.track ul li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: .75rem 0;
  border-bottom: 1px solid var(--line);
  font-size: .94rem;
}
.track ul li:last-child { border-bottom: none; }
.track ul li b {
  font-weight: 500;
  color: var(--text-soft);
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .12em;
}
.track ul li span { color: var(--ink); font-weight: 500; }

.track--popular {
  background: var(--ink);
  color: var(--paper);
}
.track--popular .track__tag {
  background: var(--accent);
  color: #fff;
}
.track--popular h3,
.track--popular .track__body > p { color: var(--paper); }
.track--popular .track__body > p { color: rgba(248, 243, 235, .75); }
.track--popular ul li { border-bottom-color: rgba(248, 243, 235, .12); }
.track--popular ul li b { color: var(--accent-2); }
.track--popular ul li span { color: var(--paper); }
.track--popular .btn--ghost-dark {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
.track--popular .btn--ghost-dark:hover { background: #b3654a; border-color: #b3654a; }
.track--popular .btn--primary {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}
.track--popular .btn--primary:hover { background: #b3654a; border-color: #b3654a; }

/* Speciality / extra rooms */
.speciality {
  margin-top: 2rem;
  padding-top: 4rem;
  border-top: 1px solid var(--line);
}
.speciality__head {
  max-width: 680px;
  margin: 0 0 3rem;
}
.speciality__head h3.display {
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  margin-bottom: .85rem;
}
.speciality__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.speciality__grid--3 { grid-template-columns: repeat(3, 1fr); }
.speciality__card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.85rem 1.5rem;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
}
.speciality__card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--ink);
}
.speciality__icon {
  width: 52px; height: 52px;
  display: grid; place-items: center;
  border-radius: 14px;
  background: var(--paper-2);
  font-size: 1.4rem;
  margin-bottom: 1.1rem;
}
.speciality__card h4 {
  font-family: 'Fraunces', serif;
  font-size: 1.15rem;
  font-weight: 600;
  margin: 0 0 .4rem;
}
.speciality__card p { font-size: .92rem; margin: 0; line-height: 1.55; }
.speciality__card p + .speciality__price { margin-top: 1rem; }
.speciality__price {
  display: flex;
  align-items: baseline;
  gap: .5rem;
  padding-top: 1rem;
  border-top: 1px dashed var(--line);
  font-size: .85rem !important;
  color: var(--text-soft) !important;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.speciality__price strong {
  font-family: 'Fraunces', serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -.01em;
  text-transform: none;
  line-height: 1;
}

/* ---------- Events split banner ---------- */
.bs {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 0;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: var(--surface);
}
.bs__media {
  position: relative;
  min-height: 460px;
}
.bs__media img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.bs__chip {
  position: absolute;
  top: 1.25rem; left: 1.25rem;
  background: rgba(248, 243, 235, .94);
  color: var(--ink);
  font-weight: 600;
  font-size: .7rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  padding: .5rem 1rem;
  border-radius: 999px;
  backdrop-filter: blur(6px);
  z-index: 2;
}
.bs__panel {
  background: var(--ink);
  color: #fff;
  padding: 3.5rem clamp(2rem, 4vw, 3.5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.bs__panel .eyebrow { color: var(--accent-2); }
.bs__panel h2 { color: #fff; }
.bs__panel h2 em { color: var(--accent-2); }
.bs__panel p {
  color: rgba(248, 243, 235, .82);
  margin: 1rem 0 1.75rem;
  font-size: 1.04rem;
  line-height: 1.65;
}
.bs__list {
  list-style: none;
  padding: 0;
  margin: 0 0 2.25rem;
  display: grid;
  gap: .7rem;
}

/* Price callouts inside the events panel */
.bs__price {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin: 0 0 2rem;
  padding: 1.1rem 1.25rem;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(232, 182, 101, .22);
  border-radius: var(--radius);
}
.bs__price > div { display: flex; flex-direction: column; gap: .2rem; }
.bs__price-amount {
  font-family: 'Fraunces', serif;
  font-size: 1.45rem;
  font-weight: 600;
  color: #fff;
  line-height: 1.05;
  letter-spacing: -.02em;
}
.bs__price-amount em {
  font-style: normal;
  font-size: .85rem;
  color: var(--accent-2);
  font-weight: 500;
  vertical-align: top;
  margin-right: 1px;
}
.bs__price-unit {
  font-size: .76rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(248, 243, 235, .65);
}
@media (max-width: 560px) {
  .bs__price { grid-template-columns: 1fr; }
}
.bs__list li {
  position: relative;
  padding-left: 1.85rem;
  color: rgba(248, 243, 235, .94);
  font-weight: 400;
}
.bs__list li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--accent-2);
  font-weight: 500;
}
.bs__panel .btn--primary {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
  align-self: flex-start;
}
.bs__panel .btn--primary:hover { background: #b3654a; border-color: #b3654a; }

/* ---------- Stats strip ---------- */
.stats {
  background: var(--paper-2);
  padding: 4.5rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}
.stat__num {
  display: block;
  font-family: 'Fraunces', serif;
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  font-weight: 600;
  color: var(--ink);
  line-height: 1;
  margin-bottom: .5rem;
  letter-spacing: -.025em;
}
.stat__num em { color: var(--accent); font-style: italic; }
.stat__label {
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--text-soft);
}

/* ---------- Tourism (benefits) ---------- */
.benefits {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.benefit {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.85rem 1.65rem;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
}
.benefit:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--ink);
}
.benefit .num {
  display: inline-block;
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 1.1rem;
  color: var(--accent);
  margin-bottom: 1rem;
  font-weight: 500;
  position: relative;
  padding-right: 30px;
}
.benefit .num::after {
  content: "";
  position: absolute;
  right: 0; top: 50%;
  width: 22px; height: 1px;
  background: var(--border);
}
.benefit h3 {
  font-family: 'Fraunces', serif;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: .5rem;
  letter-spacing: -.01em;
}
.benefit p { font-size: .92rem; margin: 0; line-height: 1.6; }

/* ---------- Why-choose reasons grid ---------- */
.reasons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.reason {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.85rem;
  position: relative;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
}
.reason:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--ink);
}
.reason__num {
  display: inline-flex;
  align-items: center;
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 2.4rem;
  font-weight: 500;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 1.1rem;
  letter-spacing: -.02em;
}
.reason__num::after {
  content: "";
  display: inline-block;
  margin-left: .75rem;
  width: 30px; height: 1px;
  background: var(--border);
}
.reason h3 {
  font-family: 'Fraunces', serif;
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0 0 .55rem;
  letter-spacing: -.01em;
  line-height: 1.2;
}
.reason p {
  margin: 0;
  font-size: .95rem;
  line-height: 1.62;
}
.reason b {
  color: var(--ink);
  font-weight: 600;
}

/* The 7th card spans full width as a closing statement */
.reason--wide {
  grid-column: 1 / -1;
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
  padding: 2.4rem 2.4rem;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 2rem;
}
.reason--wide:hover {
  border-color: var(--ink);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}
.reason--wide .reason__num {
  color: var(--accent-2);
  font-size: 3rem;
  margin: 0;
}
.reason--wide .reason__num::after { background: rgba(248, 243, 235, .22); }
.reason--wide h3 {
  color: var(--paper);
  font-size: clamp(1.4rem, 2.2vw, 1.8rem);
  margin-bottom: .65rem;
}
.reason--wide p {
  color: rgba(248, 243, 235, .82);
  font-size: 1rem;
  margin: 0 0 1.25rem;
  max-width: 760px;
}
.reason--wide b { color: var(--accent-2); }
.reason--wide .reason__body { display: flex; flex-direction: column; align-items: flex-start; }
.reason--wide .btn--gold { align-self: flex-start; }

@media (max-width: 1024px) {
  .reasons { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .reasons { grid-template-columns: 1fr; }
  .reason { padding: 1.65rem 1.5rem; }
  .reason__num { font-size: 2rem; }
  .reason--wide {
    grid-template-columns: 1fr;
    padding: 1.85rem 1.65rem;
    gap: 1rem;
  }
  .reason--wide .reason__num { font-size: 2.2rem; }
}

/* ---------- Gallery strip ---------- */
.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: .85rem;
}
.gallery__item {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--paper-2);
}
.gallery__item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease);
}
.gallery__item:hover img { transform: scale(1.08); }
.gallery__item--tall { aspect-ratio: 4 / 6; }

/* Editorial 3×6 bento gallery — perfectly tessellated, no gaps */
.gallery--grid {
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 240px;
  grid-auto-flow: dense;
  gap: 14px;
}
.gallery--grid .gallery__item {
  aspect-ratio: auto;
  grid-column: span 1;
  grid-row: span 1;
  border: 1px solid var(--border);
  background: var(--paper);
  cursor: zoom-in;
  padding: 0;
  margin: 0;
  font: inherit;
  color: inherit;
  position: relative;
  display: block;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-xs);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.gallery--grid .gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease);
}
.gallery--grid .gallery__item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.gallery--grid .gallery__item:hover img { transform: scale(1.06); }
.gallery--grid .gallery__item:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
}

/* Two feature tiles (2 cols × 2 rows) anchor the visual rhythm */
.gallery--grid .gallery__item--big {
  grid-column: span 2;
  grid-row: span 2;
}

/* Hover affordances: dark gradient + zoom badge */
.gallery--grid .gallery__item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(6, 24, 15, .55));
  opacity: 0;
  transition: opacity .35s var(--ease);
  pointer-events: none;
}
.gallery--grid .gallery__item:hover::after { opacity: 1; }
.gallery--grid .gallery__item::before {
  content: "+";
  position: absolute;
  bottom: .9rem;
  right: .9rem;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(248, 243, 235, .94);
  color: var(--ink);
  font-size: 1.4rem;
  font-weight: 300;
  display: grid;
  place-items: center;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .35s var(--ease), transform .35s var(--ease);
  z-index: 2;
  box-shadow: var(--shadow-sm);
}
.gallery--grid .gallery__item:hover::before {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1100px) {
  .gallery--grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 220px;
  }
  .gallery--grid .gallery__item--big {
    grid-column: span 2;
    grid-row: span 2;
  }
}
@media (max-width: 560px) {
  .gallery--grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 220px;
    gap: 10px;
  }
  .gallery--grid .gallery__item,
  .gallery--grid .gallery__item--big {
    grid-column: span 1;
    grid-row: span 1;
  }
  .gallery--grid .gallery__item--big { grid-row: span 2; }
}

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(6, 24, 15, .94);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 4rem 1.5rem;
  opacity: 0;
  transition: opacity .25s var(--ease);
  backdrop-filter: blur(4px);
}
.lightbox.is-open { display: flex; opacity: 1; }
.lightbox__stage {
  position: relative;
  max-width: min(1200px, 95vw);
  max-height: 86vh;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1rem;
}
.lightbox__img {
  max-width: 100%;
  max-height: 80vh;
  width: auto;
  height: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  display: block;
  user-select: none;
  background: var(--ink);
}
.lightbox__caption {
  color: rgba(248, 243, 235, .75);
  font-family: 'Fraunces', serif;
  font-size: .95rem;
  font-style: italic;
  letter-spacing: .04em;
  text-align: center;
}
.lightbox__close,
.lightbox__nav {
  position: absolute;
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .25);
  background: rgba(255, 255, 255, .1);
  color: #fff;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background .2s var(--ease), transform .2s var(--ease), border-color .2s var(--ease);
  backdrop-filter: blur(8px);
  font-family: inherit;
}
.lightbox__close { top: 1.25rem; right: 1.25rem; font-size: 1.6rem; line-height: 1; }
.lightbox__nav { top: 50%; transform: translateY(-50%); font-size: 2rem; line-height: 1; }
.lightbox__nav--prev { left: 1.5rem; }
.lightbox__nav--next { right: 1.5rem; }
.lightbox__close:hover,
.lightbox__nav:hover {
  background: var(--accent);
  border-color: var(--accent);
}
.lightbox__close:hover { transform: scale(1.06); }
body.lightbox-open { overflow: hidden; }
@media (max-width: 560px) {
  .lightbox { padding: 3rem .75rem; }
  .lightbox__close { width: 40px; height: 40px; top: .85rem; right: .85rem; font-size: 1.4rem; }
  .lightbox__nav { width: 40px; height: 40px; font-size: 1.5rem; }
  .lightbox__nav--prev { left: .65rem; }
  .lightbox__nav--next { right: .65rem; }
}

/* ---------- Testimonials ---------- */
.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.testimonial {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.85rem;
  display: flex;
  flex-direction: column;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.testimonial:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.testimonial blockquote {
  margin: 0 0 1.75rem;
  font-family: 'Fraunces', serif;
  font-size: 1.1rem;
  color: var(--ink);
  font-weight: 400;
  line-height: 1.5;
  flex: 1;
  position: relative;
  padding-top: 2rem;
  letter-spacing: -.005em;
}
.testimonial blockquote::before {
  content: "\201C";
  position: absolute;
  top: -.4rem; left: -.25rem;
  font-size: 4rem;
  color: var(--accent);
  font-family: 'Fraunces', serif;
  line-height: 1;
  opacity: .6;
}
.testimonial footer {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: .85rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
}
.avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--accent-2);
  display: grid; place-items: center;
  font-weight: 600;
  font-family: 'Fraunces', serif;
  font-size: 1.05rem;
}
.testimonial footer strong {
  display: block;
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 1rem;
}
.testimonial footer span { font-size: .82rem; color: var(--muted); }
.stars {
  color: var(--accent-2);
  letter-spacing: 2px;
  font-size: .85rem;
}

/* ---------- FAQ ---------- */
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
  align-items: start;
}
.faq details {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.2rem 1.5rem;
  margin-bottom: .75rem;
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.faq details[open] {
  border-color: var(--ink);
  box-shadow: var(--shadow-sm);
}
.faq summary {
  cursor: pointer;
  font-weight: 500;
  font-size: 1.02rem;
  color: var(--ink);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-family: 'Fraunces', serif;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--accent);
  transition: transform .25s var(--ease);
  flex-shrink: 0;
  width: 24px; height: 24px;
  display: grid; place-items: center;
}
.faq details[open] summary::after { content: "−"; transform: rotate(180deg); }
.faq details p { margin: .9rem 0 .25rem; font-size: .96rem; line-height: 1.65; }

/* ---------- CTA ---------- */
.cta {
  position: relative;
  padding: 7rem 0;
  text-align: center;
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}
.cta__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.cta__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.cta::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(6, 24, 15, .8), rgba(6, 24, 15, .92));
}
.cta__inner { position: relative; max-width: 760px; margin: 0 auto; }
.cta h2 { color: #fff; font-size: clamp(2.2rem, 4.5vw, 3.4rem); }
.cta h2 em { color: var(--accent-2); }
.cta p {
  color: rgba(248, 243, 235, .85);
  margin: 1rem auto 2rem;
  font-size: 1.08rem;
  max-width: 560px;
}

/* ---------- Footer ---------- */
.footer {
  background: var(--ink-2);
  color: rgba(248, 243, 235, .72);
  padding: 4rem 0 2rem;
  position: relative;
}
.footer__inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(248, 243, 235, .1);
}
.footer__brand .logo { color: var(--paper); margin-bottom: 1rem; }
.footer__brand .logo__text { color: var(--paper); }
.footer__brand .logo__text em { color: var(--accent-2); }
.footer__brand p {
  color: rgba(248, 243, 235, .6);
  font-size: .92rem;
  max-width: 320px;
  line-height: 1.65;
  margin: 0 0 1.25rem;
}
.footer__col h5 {
  color: var(--paper);
  font-family: 'Fraunces', serif;
  font-size: 1.05rem;
  font-weight: 500;
  margin: 0 0 1.25rem;
  letter-spacing: -.01em;
}
.footer__col a,
.footer__col p {
  display: block;
  color: rgba(248, 243, 235, .65);
  font-size: .92rem;
  line-height: 1.7;
  margin-bottom: .35rem;
  transition: color .25s var(--ease);
}
.footer__col a:hover { color: var(--accent-2); }
.footer__social {
  display: flex;
  gap: .65rem;
  margin-top: 1rem;
}
.footer__social a {
  width: 38px; height: 38px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: rgba(248, 243, 235, .08);
  color: var(--paper);
  transition: background .25s var(--ease), transform .25s var(--ease);
  font-size: .85rem;
  font-weight: 500;
  margin: 0;
}
.footer__social a:hover { background: var(--accent); transform: translateY(-2px); color: #fff; }

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.75rem;
  font-size: .85rem;
  color: rgba(248, 243, 235, .5);
}
.footer__bottom-links { display: flex; gap: 1.5rem; }
.footer__bottom-links a:hover { color: var(--accent-2); }

/* ---------- Mobile sticky bar ---------- */
.mobile-bar {
  position: fixed;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  z-index: 60;
  display: none;
  gap: .65rem;
}
.mobile-bar__btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  background: var(--ink);
  color: var(--paper);
  border-radius: 999px;
  padding: .9rem 1rem;
  font-weight: 600;
  font-size: .85rem;
  letter-spacing: .04em;
  box-shadow: var(--shadow-md);
}
.mobile-bar__btn--call { background: var(--accent); color: #fff; }
.mobile-bar__btn--wa { background: #25d366; color: #fff; }
@media (max-width: 760px) {
  .mobile-bar {
    display: flex;
    transform: translateY(140%);
    opacity: 0;
    pointer-events: none;
    transition: transform .35s var(--ease), opacity .35s var(--ease);
    will-change: transform, opacity;
  }
  .mobile-bar.is-visible {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  body { padding-bottom: 5rem; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1100px) {
  .speciality__grid { grid-template-columns: repeat(2, 1fr); }
  .speciality__grid--3 { grid-template-columns: repeat(3, 1fr); }
  .tracks--3 { grid-template-columns: repeat(2, 1fr); }
  .benefits { grid-template-columns: repeat(2, 1fr); }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .stats__grid { grid-template-columns: repeat(2, 1fr); gap: 2.5rem 2rem; }
}
@media (max-width: 880px) {
  .nav__links { display: none; }
  .bs { grid-template-columns: 1fr; }
  .bs__media { min-height: 320px; }
  .bs__panel { padding: 2.5rem 1.75rem; }
  .consult { grid-template-columns: 1fr; gap: 2.5rem; }
  .tracks { grid-template-columns: 1fr; }
  .tracks--3 { grid-template-columns: 1fr; }
  .speciality__grid--3 { grid-template-columns: 1fr; }
  .testimonials { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
  .section { padding: 5rem 0; }
  .hero { min-height: 78vh; padding: 7rem 0 3rem; }
  .hero__metrics { gap: 1.5rem; }
  .hero__scroll { display: none; }
}

@media (max-width: 560px) {
  body { font-size: 1rem; }
  .form .row { grid-template-columns: 1fr; }
  .container { padding: 0 1.25rem; }

  .nav__inner { padding: .75rem 1rem; }
  .logo__img { width: 38px; height: 38px; }
  .logo__text { font-size: 1.05rem; }

  .hero { min-height: 70vh; padding: 6rem 0 2.5rem; align-items: center; text-align: left; }
  .hero__topline { font-size: .68rem; padding: .4rem .9rem; }
  .hero__cta { flex-direction: column; align-items: stretch; gap: .75rem; }
  .hero__cta .btn { width: 100%; }
  .hero__metrics { grid-template-columns: repeat(3, 1fr); gap: 1rem; }
  .hero__metrics strong { font-size: 1.7rem; }
  .hero__metrics span { font-size: .7rem; letter-spacing: .02em; }

  .section__head--left { text-align: left; }
  .section { padding: 4rem 0; }

  .speciality__grid { grid-template-columns: 1fr; }
  .benefits { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: repeat(2, 1fr); gap: .5rem; }
  .stats__grid { grid-template-columns: repeat(2, 1fr); gap: 2rem 1rem; }

  .top-banner__inner h2 { font-size: 1.85rem; }
  .top-banner__inner p { font-size: .98rem; }

  .track__body { padding: 1.6rem 1.4rem; }
  .track__body h3 { font-size: 1.55rem; }

  .footer__inner { grid-template-columns: 1fr; gap: 2rem; padding-bottom: 2rem; }
  .footer__bottom { flex-direction: column; gap: .75rem; text-align: center; }
  .footer__brand p { max-width: 100%; }

  .cta { padding: 5rem 0; }
  .cta h2 { font-size: 2rem; }

  .urgency { max-width: 100%; }
}

/* ---------- Thank You page ---------- */
.thanks {
  background: var(--paper);
  padding: clamp(4rem, 8vw, 7rem) 0;
  min-height: 70vh;
  display: flex;
  align-items: center;
}
.thanks__card {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  padding: clamp(2rem, 4vw, 3.5rem);
}
.thanks__icon {
  width: 84px;
  height: 84px;
  margin: 0 auto 1.75rem;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 2.4rem;
  font-weight: 600;
  box-shadow: var(--shadow-md);
}
.thanks .eyebrow {
  display: inline-flex;
  margin: 0 0 1rem;
}
.thanks h1.display {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1rem;
}
.thanks__lead {
  font-size: 1.06rem;
  max-width: 540px;
  margin: 0 auto 1.75rem;
  line-height: 1.65;
}
.thanks__lead strong { color: var(--accent); font-weight: 600; }
.thanks .ticks {
  text-align: left;
  max-width: 380px;
  margin: 0 auto 2rem;
}
.thanks__cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2.25rem;
}
.thanks__note {
  font-size: .9rem;
  color: var(--text-soft);
  margin: 0;
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
  line-height: 1.7;
}
.thanks__note a { color: var(--ink); text-decoration: underline; text-underline-offset: 3px; }
.thanks__note a:hover { color: var(--accent); }
@media (max-width: 560px) {
  .thanks__cta .btn { width: 100%; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}
