/* styles.css — Geestglanz Spa & Soul */

:root {
  --green: #4b523d;
  --green-deep: #3a3f2f;
  --gold: #d3af37;
  --brown: #816143;
  --cream: #f5e6c5;
  --paper: #fbf8f0;
  --paper-2: #f4eedf;
  --ink: #2c3025;
  --muted: #6b6f5e;
  --radius: 16px;
  --maxw: 1240px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Jost", system-ui, sans-serif;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  font-size: 17px;
  line-height: 1.6;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

/* ── Typography ── */
.serif { font-family: "Noto Serif Display", Georgia, serif; }
.eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--brown);
  font-weight: 500;
  margin: 0 0 1.1rem;
}
.eyebrow-light { color: var(--gold); }
.section-title {
  font-family: "Noto Serif Display", Georgia, serif;
  font-weight: 600;
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: var(--green);
  margin: 0 0 1.1rem;
}
.section-title-light { color: var(--cream); }
.section-title em { font-style: italic; font-weight: 700; color: var(--brown); }

/* ── Wordmark ── */
.wordmark { display: flex; flex-direction: column; line-height: 1; }
.wordmark-main {
  font-family: "Jost", sans-serif;
  font-weight: 400;
  font-size: 1.32rem;
  letter-spacing: 0.34em;
}
.wordmark-sub {
  font-size: 0.52rem;
  letter-spacing: 0.42em;
  margin-top: 0.42rem;
  opacity: 0.75;
  text-transform: uppercase;
}

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: 0.5em;
  font-family: "Jost", sans-serif;
  font-size: 0.92rem; font-weight: 500;
  letter-spacing: 0.04em;
  padding: 0.95em 1.6em;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.3s var(--ease), background 0.3s var(--ease), color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.btn svg { font-size: 1.05em; transition: transform 0.3s var(--ease); }
.btn:hover svg { transform: translateX(3px); }
.btn-sm { padding: 0.66em 1.15em; font-size: 0.85rem; }
.btn-gold { background: var(--gold); color: #3b3216; box-shadow: 0 8px 22px rgba(211,175,55,0.28); }
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(211,175,55,0.4); }
.btn-green { background: var(--green); color: var(--cream); }
.btn-green:hover { transform: translateY(-2px); background: var(--green-deep); }
.btn-ghost { border-color: var(--green); color: var(--green); background: transparent; }
.btn-ghost:hover { background: var(--green); color: var(--cream); }
.btn-ghost-light { border-color: rgba(245,230,197,0.6); color: var(--cream); background: rgba(255,255,255,0.06); backdrop-filter: blur(4px); }
.btn-ghost-light:hover { background: rgba(245,230,197,0.14); border-color: var(--cream); }

/* ── Placeholder ── */
.ph { position: relative; display: grid; place-items: center; overflow: hidden; }
.ph-slot { display: block; width: 100%; height: auto; }
.ph-label {
  font-family: "Courier New", monospace;
  font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 0.4em 0.85em; border: 1px dashed; border-radius: 4px;
  background: rgba(0,0,0,0.12); backdrop-filter: blur(2px);
}

/* ── Nav ── */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 50; transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease), padding 0.4s var(--ease); padding: 0.5rem 0; }
.nav-inner { max-width: var(--maxw); margin: 0 auto; padding: 0.6rem 2rem; display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; }
.nav-solid { background: rgba(251,248,240,0.92); backdrop-filter: blur(12px); box-shadow: 0 1px 0 rgba(75,82,61,0.1); }
.nav-links { display: flex; gap: 2rem; font-size: 0.92rem; letter-spacing: 0.02em; }
.nav-links a { position: relative; padding: 0.3em 0; color: var(--ink); transition: color 0.25s; white-space: nowrap; }
.nav-links a::after { content: ""; position: absolute; left: 0; bottom: 0; width: 0; height: 1px; background: var(--gold); transition: width 0.3s var(--ease); }
.nav-links a:hover { color: var(--brown); }
.nav-links a:hover::after { width: 100%; }
.nav-right { display: flex; align-items: center; gap: 1rem; }
.nav-wa { font-size: 1.35rem; color: var(--green); display: grid; place-items: center; transition: color 0.25s, transform 0.25s; }
.nav-wa:hover { color: #25b34c; transform: scale(1.1); }
.nav-light .nav-links a, .nav-light .nav-wa { color: var(--cream); }
.nav-light .nav-links a:hover { color: #fff; }

.lang { display: flex; align-items: center; gap: 0.35rem; font-size: 0.82rem; letter-spacing: 0.08em; }
.lang button { background: none; border: none; cursor: pointer; color: var(--muted); font-family: inherit; font-size: inherit; padding: 0.2em; transition: color 0.2s; }
.lang button.on { color: var(--green); font-weight: 600; }
.lang span { opacity: 0.4; }
.lang-light button { color: rgba(245,230,197,0.7); }
.lang-light button.on { color: var(--cream); }

.burger { display: none; flex-direction: column; gap: 4px; background: none; border: none; cursor: pointer; padding: 6px; }
.burger span { width: 22px; height: 2px; background: var(--green); transition: 0.3s var(--ease); }
.nav-light .burger span { background: var(--cream); }
.burger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
.nav-mobile { display: none; flex-direction: column; background: var(--paper); padding: 1rem 2rem 1.5rem; gap: 0.4rem; box-shadow: 0 12px 24px rgba(0,0,0,0.08); }
.nav-mobile a { padding: 0.7rem 0; border-bottom: 1px solid rgba(75,82,61,0.08); font-size: 1.05rem; }

/* ── Section shell ── */
.section { max-width: var(--maxw); margin: 0 auto; padding: clamp(4.5rem, 9vw, 8rem) 2rem; }
.section-head { max-width: 640px; margin: 0 auto clamp(2.5rem, 5vw, 4rem); text-align: center; }
.section-sub { font-size: 1.08rem; color: var(--muted); margin: 0; }

/* ── HERO shared ── */
.hero-title {
  font-family: "Noto Serif Display", Georgia, serif;
  font-weight: 600;
  font-size: clamp(2.6rem, 6vw, 4.6rem);
  line-height: 1.04; letter-spacing: -0.015em;
  margin: 0 0 1.4rem; color: var(--green);
}
.hero-title em { font-style: italic; font-weight: 700; color: var(--brown); }
.hero-title-center { text-align: center; }
.hero-sub { font-size: 1.18rem; color: var(--muted); max-width: 38ch; margin: 0 0 2.2rem; }
.hero-sub-center { margin-left: auto; margin-right: auto; text-align: center; }
.hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; }

/* HERO A — leaves: logo image as a clean poster, claim in a band below */
.hero-leaves { position: relative; display: block; }
.hero-leaves-stage { position: relative; height: 100vh; overflow: hidden; }
.hero-leaves-bg { position: absolute; inset: 0; background-size: cover; background-position: center 12%; transform: scale(1.05); animation: heroZoom 16s ease-out forwards; }
@keyframes heroZoom { to { transform: scale(1); } }
.hero-leaves-veil { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(34,38,28,0.30) 0%, rgba(34,38,28,0.0) 24%, rgba(34,38,28,0.0) 62%, rgba(30,34,24,0.45) 82%, rgba(26,30,20,0.92) 100%); }

.hero-leaves-band { background: linear-gradient(to bottom, var(--green-deep), #2f3427); padding: clamp(3rem, 7vh, 5.5rem) 2rem clamp(3.5rem, 8vh, 6rem); }
.hero-leaves-band-inner { max-width: 760px; margin: 0 auto; text-align: center; }
.hero-leaves-sub { color: rgba(245,230,197,0.9); font-size: clamp(1rem, 1.6vw, 1.15rem); line-height: 1.55; max-width: 46ch; margin: 0 auto 2rem; }
.hero-leaves-tagline { font-family: "Noto Serif Display", Georgia, serif; font-weight: 600; font-size: clamp(2.1rem, 4.8vw, 3.6rem); line-height: 1.08; letter-spacing: -0.01em; color: var(--cream); margin: 0 0 1.5rem; }
.hero-leaves-tagline em { font-style: italic; font-weight: 700; color: var(--gold); }
.hero-leaves .eyebrow { color: var(--gold); }
.hero-leaves-band-inner > * { opacity: 1; }
@media (prefers-reduced-motion: no-preference) {
  .hero-leaves-band-inner > * { animation: heroUp 0.9s var(--ease) forwards; }
  .hero-leaves-band-inner > *:nth-child(1) { opacity: 0; animation-delay: 0.1s; }
  .hero-leaves-band-inner > *:nth-child(2) { opacity: 0; animation-delay: 0.22s; }
  .hero-leaves-band-inner > *:nth-child(3) { opacity: 0; animation-delay: 0.34s; }
  .hero-leaves-band-inner > *:nth-child(4) { opacity: 0; animation-delay: 0.46s; }
}
@keyframes heroUp { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: none; } }
.hero-scroll { display: flex; flex-direction: column; align-items: center; position: absolute; bottom: 1.6rem; left: 50%; transform: translateX(-50%); color: rgba(245,230,197,0.8); font-size: 0.72rem; letter-spacing: 0.3em; text-transform: uppercase; z-index: 2; animation: scrollFade 2.4s ease-in-out infinite; }
@keyframes scrollFade { 0%, 100% { opacity: 0.5; } 50% { opacity: 1; } }
.hero-scroll::after { content: ""; display: block; width: 1px; height: 34px; margin: 0.7rem auto 0; background: linear-gradient(rgba(245,230,197,0.8), transparent); }

/* HERO B — split */
.hero-split { max-width: var(--maxw); margin: 0 auto; min-height: 100vh; display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; padding: 8rem 2rem 4rem; }
.hero-split-text { }
@media (prefers-reduced-motion: no-preference) { .hero-split-text { animation: heroUp 0.9s var(--ease) both; } }
.hero-split-media { position: relative; }
.hero-split-img { aspect-ratio: 4/5; border-radius: var(--radius); background-size: cover; background-position: center; box-shadow: 0 30px 60px rgba(58,63,47,0.25); }
.hero-split-badge { position: absolute; left: -1.5rem; bottom: 2rem; background: var(--cream); color: var(--green); padding: 0.9rem 1.3rem; border-radius: 999px; display: flex; align-items: center; gap: 0.55rem; font-size: 0.9rem; letter-spacing: 0.04em; box-shadow: 0 14px 30px rgba(58,63,47,0.18); }
.hero-split-badge svg { color: var(--gold); font-size: 1.2rem; }

/* HERO C — minimal editorial */
.hero-minimal { max-width: var(--maxw); margin: 0 auto; padding: 9rem 2rem 4rem; }
.hero-min-top { display: flex; justify-content: space-between; border-bottom: 1px solid rgba(75,82,61,0.18); padding-bottom: 1.4rem; }
.hero-title-xl { font-size: clamp(3rem, 9vw, 7rem); margin: 2.5rem 0; max-width: 14ch; }
.hero-min-row { display: grid; grid-template-columns: 1.4fr 1fr; gap: 3rem; align-items: end; }
.hero-min-ph { aspect-ratio: 16/10; border-radius: var(--radius); }
.hero-min-aside { padding-bottom: 1rem; }

/* ── SERVICES tiles ── */
.tiles-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.tiles-grid-overlay { grid-template-columns: repeat(3, 1fr); }
.tile { position: relative; }

/* Tile 1 — card */
.tile-card { background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: 0 2px 4px rgba(58,63,47,0.04); border: 1px solid rgba(75,82,61,0.08); display: flex; flex-direction: column; transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease); }
.tile-card:hover { transform: translateY(-6px); box-shadow: 0 22px 40px rgba(58,63,47,0.16); }
.tile-card-img { aspect-ratio: 4/3; }
.tile-card-body { padding: 1.4rem 1.4rem 1.5rem; display: flex; flex-direction: column; flex: 1; }
.tile-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 0.6rem; margin-bottom: 0.6rem; }
.tile-name { font-family: "Noto Serif Display", serif; font-weight: 600; font-size: 1.34rem; color: var(--green); margin: 0; min-width: 0; flex: 1 1 auto; overflow-wrap: anywhere; hyphens: auto; line-height: 1.15; }
.tile-tag { font-size: 0.66rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--brown); background: var(--paper-2); padding: 0.3em 0.7em; border-radius: 999px; white-space: nowrap; flex: 0 0 auto; }
.tile-desc { font-size: 0.95rem; color: var(--muted); margin: 0 0 1.3rem; flex: 1; }
.tile-foot { display: flex; align-items: center; justify-content: space-between; gap: 0.6rem; padding-top: 1rem; border-top: 1px solid rgba(75,82,61,0.1); }
.tile-meta { font-size: 0.82rem; color: var(--green); display: inline-flex; align-items: center; gap: 0.35em; }
.tile-meta svg { color: var(--brown); }
.price-from { color: var(--muted); font-size: 0.82em; }
.price { font-weight: 600; }
.tile-book { display: inline-flex; align-items: center; gap: 0.35em; font-size: 0.85rem; font-weight: 600; color: var(--brown); white-space: nowrap; transition: gap 0.25s var(--ease); }
.tile-book:hover { gap: 0.6em; color: var(--green); }

/* Tile 2 — overlay */
.tiles-grid-overlay .tile-overlay { aspect-ratio: 3/4; border-radius: var(--radius); overflow: hidden; display: block; }
.tile-overlay-img { position: absolute; inset: 0; transform: scale(1.02); transition: transform 0.6s var(--ease); }
.tile-overlay:hover .tile-overlay-img { transform: scale(1.08); }
.tile-overlay-grad { position: absolute; inset: 0; background: linear-gradient(to top, rgba(34,38,28,0.9) 12%, rgba(34,38,28,0.25) 55%, rgba(34,38,28,0.45) 100%); }
.tile-overlay-content { position: absolute; inset: 0; padding: 1.5rem; display: flex; flex-direction: column; justify-content: flex-end; color: var(--cream); }
.tile-name-light { color: var(--cream); }
.tile-tag-light { color: var(--gold); background: rgba(245,230,197,0.12); align-self: flex-start; margin-bottom: 0.7rem; }
.tile-desc-light { color: rgba(245,230,197,0.85); max-height: 0; opacity: 0; overflow: hidden; transition: max-height 0.5s var(--ease), opacity 0.4s var(--ease), margin 0.4s var(--ease); margin: 0; }
.tile-overlay:hover .tile-desc-light { max-height: 8rem; opacity: 1; margin: 0.5rem 0 0.9rem; }
.tile-overlay-foot { display: flex; align-items: center; justify-content: space-between; gap: 0.5rem; padding-top: 0.9rem; border-top: 1px solid rgba(245,230,197,0.2); margin-top: 0.6rem; }
.tile-meta-light { color: var(--cream); }
.tile-book-light { color: var(--cream); display: inline-flex; align-items: center; gap: 0.35em; font-weight: 600; font-size: 0.85rem; }

/* Tile 3 — editorial list */
.tiles-list { display: flex; flex-direction: column; border-top: 1px solid rgba(75,82,61,0.16); }
.tile-editorial { display: grid; grid-template-columns: auto 1fr auto; gap: 2rem; align-items: center; padding: 1.8rem 1rem; border-bottom: 1px solid rgba(75,82,61,0.16); transition: background 0.3s var(--ease), padding 0.3s var(--ease); }
.tile-editorial:hover { background: #fff; padding-left: 1.6rem; padding-right: 1.6rem; }
.tile-ed-index { font-family: "Noto Serif Display", serif; font-style: italic; font-size: 1.5rem; color: var(--gold); width: 2.2rem; }
.tile-ed-head { display: flex; align-items: baseline; gap: 0.9rem; margin-bottom: 0.3rem; flex-wrap: wrap; }
.tile-ed-meta { display: flex; align-items: center; gap: 1.6rem; font-size: 0.92rem; color: var(--green); white-space: nowrap; }
.tile-ed-dur { color: var(--muted); }
.tile-ed-arrow { color: var(--brown); display: grid; place-items: center; font-size: 1.2rem; transition: transform 0.3s var(--ease); }
.tile-editorial:hover .tile-ed-arrow { transform: translateX(5px); }
.tile-editorial .tile-desc { margin: 0; max-width: 60ch; }

/* ── SERVICES — scattered single leaves with depth (plain beige stays) ── */
.services { position: relative; overflow: hidden; }
.services .section-head,
.services .tiles-grid,
.services .tiles-list { position: relative; z-index: 1; }

/* Featured highlight tile (Stradivari) */
.services .tile-featured { position: relative; z-index: 1; }
.tile-featured { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 0; margin-bottom: 1.8rem; background: var(--green-deep, #2e3626); color: var(--cream); border-radius: var(--radius); overflow: hidden; box-shadow: 0 10px 30px rgba(58,63,47,0.18); border: 1px solid rgba(211,175,55,0.35); transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease); }
.tile-featured:hover { transform: translateY(-5px); box-shadow: 0 26px 50px rgba(58,63,47,0.26); }
.tile-featured-media { position: relative; min-height: 320px; background: #e7e9e4; }
.tile-featured-img { position: absolute; inset: 0; }
.tile-featured-body { padding: clamp(2rem, 4vw, 3.4rem); display: flex; flex-direction: column; align-items: flex-start; justify-content: center; gap: 1rem; }
.tile-featured-name { color: var(--cream); font-size: clamp(1.9rem, 3vw, 2.6rem); }
.tile-featured-desc { color: rgba(245,230,197,0.85); max-width: 48ch; }
.tile-featured-foot { display: flex; align-items: center; gap: 1.4rem; flex-wrap: wrap; margin-top: 0.4rem; }
@media (max-width: 760px) { .tile-featured { grid-template-columns: 1fr; } .tile-featured-media { min-height: 240px; } }

/* Gold stamp / seal */
.seal { position: absolute; top: 1.3rem; right: 1.3rem; width: 116px; height: 116px; border-radius: 50%; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; gap: 0.12rem; color: #3b3216; background: radial-gradient(circle at 32% 28%, #f3e09a 0%, var(--gold) 46%, #b8932f 100%); border: 2px solid rgba(255,255,255,0.5); box-shadow: 0 8px 22px rgba(120,95,20,0.45), inset 0 0 0 4px rgba(255,255,255,0.22); transform: rotate(-12deg); font-family: "Jost", sans-serif; }
.seal-top { font-size: 0.66rem; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 600; }
.seal-mid { font-size: 0.84rem; line-height: 1.05; font-weight: 700; max-width: 88px; }
.seal-leaf { font-size: 1.05rem; margin-top: 0.15rem; color: #4b5b2c; display: inline-flex; }
@media (max-width: 560px) { .seal { width: 96px; height: 96px; top: 1rem; right: 1rem; } .seal-mid { font-size: 0.74rem; } }

.svc-leaves { position: absolute; inset: 0; pointer-events: none; }
.svc-leaves-back { z-index: 0; }
.svc-leaves-front { z-index: 3; }

.svc-leaf {
  position: absolute; display: block; height: auto; will-change: transform;
  filter: blur(var(--lf-blur, 0px)) drop-shadow(0 12px 18px rgba(48,58,32,0.16));
}
.svc-leaves-front .svc-leaf {
  filter: blur(var(--lf-blur, 0px)) drop-shadow(0 20px 26px rgba(34,44,22,0.32));
}

@media (prefers-reduced-motion: no-preference) {
  .svc-leaf { animation: leafDrift 10s var(--ease) infinite alternate; }
  .svc-leaves-front .svc-leaf { animation-duration: 7.5s; }
}
@keyframes leafDrift {
  from { translate: 0 0; }
  to   { translate: 0 -16px; }
}

@media (max-width: 760px) {
  .svc-leaves { display: none; }
}

/* ── ABOUT ── */
.about { background: var(--paper-2); max-width: none; }
.about-grid { max-width: var(--maxw); margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2.5rem, 6vw, 6rem); align-items: center; }
.about-media { position: relative; }
.about-img { aspect-ratio: 4/5; border-radius: var(--radius); object-fit: cover; width: 100%; }
.about-img-2 { position: absolute; right: -1.2rem; bottom: -1.5rem; width: 46%; aspect-ratio: 1; border-radius: var(--radius); border: 6px solid var(--paper-2); }
.about-body { font-size: 1.1rem; color: var(--ink); margin: 0 0 2rem; }
.about-points { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 1rem; }
.about-points li { display: flex; align-items: center; gap: 0.8rem; font-size: 1.02rem; }
.about-points svg { color: var(--gold); font-size: 1.3rem; flex-shrink: 0; }
.about-cta { margin-top: 2rem; }
.about-banner { max-width: var(--maxw); margin: clamp(3rem, 6vw, 5.5rem) auto 0; padding: 0; }
.about-banner img { display: block; width: 100%; aspect-ratio: 16/7; object-fit: cover; border-radius: var(--radius); }
@media (max-width: 760px) { .about-banner img { aspect-ratio: 4/3; } }

/* ── REVIEWS ── */
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; }
.review { background: #fff; border-radius: var(--radius); padding: 2.2rem 2rem; margin: 0; border: 1px solid rgba(75,82,61,0.08); display: flex; flex-direction: column; gap: 1.2rem; }
.review-quote { color: var(--gold); font-size: 2rem; }
.review-text { font-family: "Noto Serif Display", serif; font-style: italic; font-size: 1.18rem; line-height: 1.5; color: var(--green); margin: 0; flex: 1; }
.review-cap { display: flex; flex-direction: column; gap: 0.2rem; }
.review-name { font-weight: 600; color: var(--ink); }
.review-service { font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--brown); }

/* ── VOUCHERS ── */
.vouchers { max-width: var(--maxw); margin: 0 auto; padding-top: 0; }
.vouchers-card { background: var(--green); border-radius: calc(var(--radius) + 6px); padding: clamp(2.5rem, 5vw, 4.5rem); display: grid; grid-template-columns: 1.2fr 1fr; gap: 3rem; align-items: center; overflow: hidden; position: relative; }
.vouchers-body { color: rgba(245,230,197,0.85); font-size: 1.1rem; margin: 0 0 2rem; max-width: 42ch; }
.vouchers-visual { display: grid; place-items: center; }
.voucher-chip { background: linear-gradient(150deg, var(--green-deep), #565e47); border: 1px solid rgba(211,175,55,0.4); border-radius: 18px; padding: 2rem 1.8rem; width: 100%; max-width: 320px; aspect-ratio: 16/10; display: flex; flex-direction: column; box-shadow: 0 24px 50px rgba(0,0,0,0.3); transform: rotate(-3deg); transition: transform 0.5s var(--ease); }
.voucher-chip:hover { transform: rotate(0deg) scale(1.02); }
.voucher-chip-line { height: 1px; background: rgba(211,175,55,0.4); margin: 1rem 0; }
.voucher-chip-label { font-size: 0.7rem; letter-spacing: 0.24em; text-transform: uppercase; color: var(--gold); margin-top: auto; }
.voucher-chip-amt { font-family: "Noto Serif Display", serif; font-style: italic; font-size: 1.8rem; color: var(--cream); }

/* ── VISIT ── */
.visit { max-width: var(--maxw); margin: 0 auto; }
.visit-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(2.5rem, 5vw, 5rem); align-items: center; }
.visit-rows { display: flex; flex-direction: column; gap: 1.5rem; margin: 0 0 2.2rem; }
.visit-row { display: flex; gap: 1rem; }
.visit-ic { color: var(--gold); font-size: 1.4rem; flex-shrink: 0; margin-top: 0.1rem; }
.visit-label { display: block; font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--brown); margin-bottom: 0.3rem; }
.visit-row p { margin: 0; color: var(--ink); line-height: 1.5; }
.visit-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.visit-map { position: relative; }
.visit-map-frame { width: 100%; aspect-ratio: 4/3; border: 0; border-radius: var(--radius); display: block; }
.visit-map-pin { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -100%); color: var(--gold); font-size: 2.4rem; filter: drop-shadow(0 6px 10px rgba(0,0,0,0.3)); animation: pinBob 2.5s ease-in-out infinite; }
@keyframes pinBob { 0%, 100% { transform: translate(-50%, -100%); } 50% { transform: translate(-50%, -118%); } }

/* ── FAQ ── */
.faq { background: var(--paper-2); max-width: none; }
.faq-grid { max-width: var(--maxw); margin: 0 auto; display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(2.5rem, 6vw, 5.5rem); align-items: start; }
.faq-aside { position: sticky; top: 100px; }
.faq-img { margin: 0; border-radius: var(--radius); overflow: hidden; }
.faq-img img { display: block; width: 100%; aspect-ratio: 3/4; object-fit: cover; }
.faq-main .eyebrow { text-align: left; }
.faq-main .section-title { text-align: left; }
.faq-list { list-style: none; margin: 2rem 0 0; padding: 0; border-top: 1px solid rgba(75,82,61,0.16); }
.faq-item { border-bottom: 1px solid rgba(75,82,61,0.16); }
.faq-q { width: 100%; background: none; border: 0; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; text-align: left; padding: 1.4rem 0.2rem; font-family: "Noto Serif Display", serif; font-size: clamp(1.05rem, 1.6vw, 1.3rem); color: var(--ink); transition: color 0.2s var(--ease); }
.faq-q:hover { color: var(--green); }
.faq-sign { flex-shrink: 0; width: 34px; height: 34px; display: inline-flex; align-items: center; justify-content: center; border-radius: 50%; border: 1px solid rgba(75,82,61,0.28); color: var(--green); font-size: 1.1rem; transition: transform 0.35s var(--ease), background 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease); }
.faq-item.open .faq-sign { transform: rotate(45deg); background: var(--green); border-color: var(--green); color: var(--cream); }
.faq-a-wrap { display: grid; grid-template-rows: 0fr; transition: grid-template-rows 0.4s var(--ease); }
.faq-item.open .faq-a-wrap { grid-template-rows: 1fr; }
.faq-a { overflow: hidden; margin: 0; color: var(--muted); line-height: 1.65; max-width: 60ch; }
.faq-item.open .faq-a { padding-bottom: 1.4rem; }
@media (max-width: 860px) {
  .faq-grid { grid-template-columns: 1fr; }
  .faq-aside { position: static; }
  .faq-img img { aspect-ratio: 16/9; }
}

/* ── FOOTER ── */
.footer { background: var(--green-deep); color: var(--cream); padding: clamp(3.5rem, 6vw, 5rem) 2rem 2rem; }
.footer-grid { max-width: var(--maxw); margin: 0 auto; display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 2.5rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(245,230,197,0.16); }
.footer-tag { color: rgba(245,230,197,0.7); margin: 1.4rem 0 0; max-width: 30ch; font-size: 0.96rem; }
.footer-col { display: flex; flex-direction: column; gap: 0.7rem; font-size: 0.94rem; }
.footer-h { font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.5rem; }
.footer-col a { display: inline-flex; align-items: center; gap: 0.55rem; color: rgba(245,230,197,0.82); transition: color 0.2s; }
.footer-col a:hover { color: var(--cream); }
.footer-col p { margin: 0; color: rgba(245,230,197,0.82); }
.footer-qr { display: flex; justify-content: flex-end; align-items: flex-start; }
.footer-qr img { width: 100%; max-width: 230px; border-radius: 10px; }
.footer-bar { max-width: var(--maxw); margin: 0 auto; padding-top: 1.6rem; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 0.6rem; font-size: 0.82rem; color: rgba(245,230,197,0.6); }
.footer-bar-links { display: flex; gap: 1.4rem; }
.footer-bar-links a:hover { color: var(--cream); }

/* ── Booking sheet ── */
.sheet-overlay { position: fixed; inset: 0; z-index: 100; background: rgba(34,38,28,0.55); backdrop-filter: blur(4px); display: grid; place-items: center; padding: 1.5rem; animation: fadeIn 0.3s ease; }
@keyframes fadeIn { from { opacity: 0; } }
.sheet { background: var(--paper); border-radius: calc(var(--radius) + 6px); padding: clamp(2rem, 4vw, 3rem); max-width: 480px; width: 100%; position: relative; box-shadow: 0 30px 70px rgba(0,0,0,0.35); animation: sheetUp 0.4s var(--ease); }
@keyframes sheetUp { from { opacity: 0; transform: translateY(24px) scale(0.98); } }
.sheet-x { position: absolute; top: 1.1rem; right: 1.3rem; background: none; border: none; font-size: 1.8rem; line-height: 1; color: var(--muted); cursor: pointer; }
.sheet-title { font-family: "Noto Serif Display", serif; font-weight: 600; font-size: 1.8rem; color: var(--green); margin: 0 0 0.5rem; }
.sheet-sub { color: var(--muted); margin: 0 0 1.8rem; }
.sheet-options { display: flex; flex-direction: column; gap: 0.8rem; }
.sheet-opt { display: flex; align-items: center; gap: 1rem; padding: 1.1rem 1.2rem; border-radius: var(--radius); border: 1px solid rgba(75,82,61,0.14); background: #fff; transition: transform 0.25s var(--ease), border-color 0.25s, box-shadow 0.25s; }
.sheet-opt:hover { transform: translateX(3px); border-color: var(--gold); box-shadow: 0 8px 20px rgba(58,63,47,0.1); }
.sheet-opt-primary { background: var(--green); border-color: var(--green); color: var(--cream); }
.sheet-opt-primary .sheet-opt-ic { color: var(--gold); }
.sheet-opt-primary small { color: rgba(245,230,197,0.8); }
.sheet-opt-ic { font-size: 1.5rem; color: var(--brown); display: grid; place-items: center; }
.sheet-opt-main { display: flex; flex-direction: column; flex: 1; }
.sheet-opt-main b { font-size: 1.05rem; font-weight: 600; }
.sheet-opt-main small { font-size: 0.85rem; color: var(--muted); }
.sheet-opt > svg { color: inherit; opacity: 0.6; }

/* ── Floating WhatsApp ── */
.fab-wa { position: fixed; bottom: 1.6rem; right: 1.6rem; z-index: 60; background: #25b34c; color: #fff; display: flex; align-items: center; gap: 0; font-size: 1.7rem; padding: 0.85rem; border-radius: 999px; box-shadow: 0 12px 28px rgba(37,179,76,0.4); transition: padding 0.3s var(--ease), transform 0.3s var(--ease); overflow: hidden; }
.fab-wa-label { font-size: 0.92rem; font-weight: 600; letter-spacing: 0.02em; max-width: 0; opacity: 0; white-space: nowrap; transition: max-width 0.4s var(--ease), opacity 0.3s var(--ease), margin 0.3s var(--ease); }
.fab-wa:hover { transform: translateY(-3px); }
.fab-wa:hover .fab-wa-label { max-width: 160px; opacity: 1; margin-left: 0.5rem; padding-right: 0.3rem; }

/* ── Responsive ── */
@media (max-width: 1040px) {
  .tiles-grid, .tiles-grid-overlay { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-qr { grid-column: span 2; justify-content: flex-start; }
}
@media (max-width: 860px) {
  .nav-links { display: none; }
  .burger { display: flex; }
  .nav-mobile { display: flex; }
  .btn-sm { display: none; }
  .hero-split, .hero-min-row, .about-grid, .vouchers-card, .visit-grid, .reviews-grid { grid-template-columns: 1fr; }
  .reviews-grid { gap: 1.2rem; }
  .hero-split { min-height: auto; padding-top: 7rem; }
  .hero-split-media { order: -1; }
  .hero-split-img { aspect-ratio: 16/11; }
  .hero-min-row { gap: 2rem; }
  .about-img-2 { display: none; }
  .vouchers-visual { order: -1; }
  .tile-editorial { grid-template-columns: auto 1fr; }
  .tile-ed-meta { grid-column: 2; justify-content: flex-start; padding-left: 0; }
}
@media (max-width: 560px) {
  .tiles-grid, .tiles-grid-overlay { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-qr { grid-column: span 1; }
  .nav-inner { padding: 0.6rem 1.2rem; gap: 0.8rem; }
  .section { padding-left: 1.2rem; padding-right: 1.2rem; }
  .fab-wa-label { display: none; }
}
/* mobile nav menu CTA */
.nav-mobile-cta { width: 100%; justify-content: center; margin-top: 0.7rem; }
.nav-mobile .nav-active::after { display: none; }
/* small phones — portrait optimisation */
@media (max-width: 480px) {
  .nav-right { gap: 0.7rem; }
  .nav-wa { font-size: 1.2rem; }
  .hero-title { font-size: clamp(2.2rem, 9vw, 2.8rem); }
  .hero-title-xl { font-size: clamp(2.6rem, 13vw, 3.4rem); margin: 1.6rem 0; }
  .hero-leaves-tagline { font-size: clamp(1.7rem, 7.5vw, 2.2rem); }
  .hero-leaves-stage { height: 78svh; }
  .detail-title { font-size: clamp(2rem, 8.5vw, 2.6rem); }
  .detail-lead, .hero-sub, .hero-leaves-sub { font-size: 1.05rem; }
  .detail-hero { padding: 7rem 1.3rem 2.6rem; }
  .course-claim { font-size: clamp(1.5rem, 7vw, 1.9rem); }
  .detail-hero-cta { flex-direction: column; align-items: stretch; }
  .detail-hero-cta .btn { justify-content: center; }
  .hero-cta .btn { flex: 1 1 auto; justify-content: center; }
  .seal { width: 80px; height: 80px; }
  .seal-mid { font-size: 0.66rem; }
}

/* ════════ DETAIL PAGE ════════ */
.detail-hero { position: relative; padding: 8.5rem 2rem 3.5rem; overflow: hidden; background: var(--green-deep); }
.detail-hero-bg { position: absolute; inset: 0; background-image: url(assets/logo-leaves.jpg); background-size: cover; background-position: center 30%; opacity: 0.32; }
.detail-hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(34,38,28,0.5), rgba(26,30,20,0.85)); }
.detail-hero-inner { position: relative; z-index: 2; max-width: var(--maxw); margin: 0 auto; }
.detail-back { display: inline-block; color: rgba(245,230,197,0.8); font-size: 0.9rem; letter-spacing: 0.04em; margin-bottom: 1.6rem; transition: color 0.2s; }
.detail-back:hover { color: var(--cream); }
.detail-tag { display: inline-block; margin-bottom: 1rem; background: rgba(245,230,197,0.14); color: var(--gold); max-width: none; overflow: visible; }
.detail-claim { font-family: "Noto Serif Display", serif; font-style: italic; font-weight: 500; font-size: clamp(1.15rem, 2.6vw, 1.5rem); color: var(--gold); margin: -0.2rem 0 0.5rem; }
.detail-title { font-family: "Noto Serif Display", serif; font-weight: 600; font-size: clamp(2.4rem, 5.5vw, 4rem); line-height: 1.05; color: var(--cream); margin: 0 0 1rem; }
.detail-lead { color: rgba(245,230,197,0.9); font-size: 1.2rem; line-height: 1.55; max-width: 56ch; margin: 0 0 2rem; }
.detail-hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; }

.detail-main { padding-top: clamp(3rem, 6vw, 5rem); }
.detail-banner { width: 100%; aspect-ratio: 16/9; border-radius: calc(var(--radius) + 4px); margin-bottom: clamp(2rem, 4vw, 3rem); }
.detail-quote { margin: 0 0 clamp(2rem, 4vw, 3rem); padding: clamp(2.5rem, 5vw, 4rem) clamp(1.5rem, 4vw, 3rem); background: var(--green); border-radius: calc(var(--radius) + 4px); text-align: center; position: relative; overflow: hidden; }
.detail-quote-mark { font-family: "Noto Serif Display", serif; font-size: clamp(3rem, 6vw, 4.5rem); line-height: 1; color: var(--gold); display: block; margin-bottom: 0.8rem; }
.detail-quote-text { font-family: "Noto Serif Display", serif; font-style: italic; font-weight: 500; font-size: clamp(1.4rem, 2.6vw, 2rem); line-height: 1.4; color: var(--cream); max-width: 24ch; margin: 0 auto; text-wrap: balance; }
@media (max-width: 860px) { .detail-banner { aspect-ratio: 16/9; } }
.detail-grid { display: grid; grid-template-columns: 1.6fr 1fr; gap: clamp(2.5rem, 5vw, 4.5rem); align-items: start; }
.detail-gallery { display: grid; grid-template-columns: 2fr 1fr; grid-template-rows: 1fr 1fr; gap: 0.9rem; margin-bottom: 2.4rem; }
.dg-lg { grid-row: span 2; aspect-ratio: 4/5; border-radius: var(--radius); }
.dg-sm { aspect-ratio: 1; border-radius: var(--radius); }
.detail-gallery-single { grid-template-columns: 1fr; grid-template-rows: auto; }
.detail-gallery-single .dg-lg { grid-row: auto; aspect-ratio: 16/10; }
.detail-gallery-pair { grid-template-rows: 1fr; }
.detail-gallery-pair .dg-lg { grid-row: auto; }
.detail-gallery-pair .dg-sm { aspect-ratio: auto; }
.detail-gallery-quad { grid-template-columns: 1fr 1fr; grid-template-rows: auto auto; }
.detail-gallery-quad .dg-lg { grid-row: auto; aspect-ratio: 4/3; }
.detail-gallery-quad .dg-sm { aspect-ratio: 4/3; }
.detail-intro { font-size: 1.15rem; line-height: 1.7; color: var(--ink); margin: 0 0 2.5rem; }
.detail-callout { border-left: 3px solid var(--gold); background: var(--paper-2); padding: 1.4rem 1.6rem; border-radius: 0 var(--radius) var(--radius) 0; margin: 0 0 2.5rem; }
.detail-callout-h { font-family: "Noto Serif Display", serif; font-size: 1.35rem; font-weight: 600; color: var(--green); margin: 0 0 0.6rem; }
.detail-callout-body { font-size: 1.05rem; line-height: 1.65; color: var(--ink); margin: 0; }
.detail-note { font-size: 0.95rem; color: var(--brown); background: var(--paper-2); padding: 0.9rem 1.1rem; border-radius: var(--radius); margin: -1.5rem 0 2.5rem; }
.detail-h2 { font-family: "Noto Serif Display", serif; font-weight: 600; font-size: 1.6rem; color: var(--green); display: flex; align-items: center; gap: 0.6rem; margin: 0 0 1.2rem; }
.detail-h2 svg { color: var(--gold); font-size: 1.4rem; }
.gtk-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 0.8rem; }
.gtk-list li { position: relative; padding-left: 1.6rem; color: var(--muted); line-height: 1.55; }
.gtk-list li::before { content: ""; position: absolute; left: 0; top: 0.62em; width: 7px; height: 7px; border-radius: 50%; background: var(--gold); }

.detail-aside { position: sticky; top: 6rem; }
.price-card { background: #fff; border: 1px solid rgba(75,82,61,0.12); border-radius: calc(var(--radius) + 4px); padding: 1.8rem; box-shadow: 0 18px 44px rgba(58,63,47,0.1); }
.price-card-h { font-family: "Noto Serif Display", serif; font-weight: 600; font-size: 1.3rem; color: var(--green); margin: 0 0 1.2rem; }
.dv-list { list-style: none; padding: 0; margin: 0 0 1rem; display: flex; flex-direction: column; }
.dv { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 0.95rem 0; border-bottom: 1px solid rgba(75,82,61,0.1); }
.dv:last-child { border-bottom: none; }
.dv-addon { opacity: 0.85; }
.dv-addon .dv-name { font-size: 0.92rem; color: var(--brown); }
.dv-main { display: flex; flex-direction: column; gap: 0.25rem; }
.dv-name { font-weight: 500; color: var(--ink); line-height: 1.3; }
.dv-dur { font-size: 0.8rem; color: var(--muted); display: inline-flex; align-items: center; gap: 0.3em; }
.dv-dur svg { color: var(--brown); font-size: 0.95em; }
.dv-right { display: flex; flex-direction: column; align-items: flex-end; gap: 0.35rem; white-space: nowrap; }
.dv-price { font-weight: 600; color: var(--green); }
.dv-price-note { font-size: 0.82rem; font-weight: 500; color: var(--brown); }
.dv-book { font-size: 0.78rem; letter-spacing: 0.04em; color: var(--brown); border: 1px solid rgba(129,97,67,0.4); padding: 0.25em 0.7em; border-radius: 999px; transition: background 0.2s, color 0.2s; }
.dv-book:hover { background: var(--brown); color: var(--cream); }
.dv-note { font-size: 0.8rem; color: var(--muted); margin: 0.4rem 0 1.4rem; line-height: 1.4; }
.price-card-btn { width: 100%; justify-content: center; }
.price-card-alt { display: flex; flex-direction: column; gap: 0.6rem; margin-top: 1.2rem; padding-top: 1.2rem; border-top: 1px solid rgba(75,82,61,0.1); }
.price-card-alt a { display: inline-flex; align-items: center; gap: 0.5rem; color: var(--green); font-size: 0.92rem; transition: color 0.2s; }
.price-card-alt a:hover { color: var(--brown); }

.detail-related { background: var(--paper-2); max-width: none; }
.detail-related .section-head { margin-bottom: 2.5rem; }
.related-grid { max-width: var(--maxw); margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.related-card { background: #fff; border-radius: var(--radius); overflow: hidden; border: 1px solid rgba(75,82,61,0.08); transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease); }
.related-card:hover { transform: translateY(-5px); box-shadow: 0 18px 34px rgba(58,63,47,0.14); }
.related-img { aspect-ratio: 16/10; }
.related-body { padding: 1.2rem 1.3rem 1.4rem; display: flex; flex-direction: column; gap: 0.5rem; }
.related-meta { display: inline-flex; align-items: center; gap: 0.4rem; color: var(--brown); font-weight: 500; font-size: 0.92rem; }

@media (max-width: 860px) {
  .detail-grid { grid-template-columns: 1fr; }
  .detail-aside { position: static; }
  .related-grid { grid-template-columns: 1fr; }
  .detail-gallery { grid-template-columns: 1fr 1fr; }
  .dg-lg { grid-row: span 1; aspect-ratio: 16/11; grid-column: span 2; }
}

/* ════════ AKADEMIE PAGE ════════ */
.nav-active { color: var(--gold) !important; position: relative; }
.nav-active::after { content: ""; position: absolute; left: 0; right: 0; bottom: -4px; height: 2px; background: var(--gold); border-radius: 2px; }

.academy-courses .section-head { text-align: center; }
.course-list { display: flex; flex-direction: column; gap: clamp(3rem, 6vw, 5.5rem); }
.course-row { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.course-row-rev .course-media { order: 2; }
.course-media { position: relative; }
.course-img { width: 100%; aspect-ratio: 4/5; border-radius: var(--radius); overflow: hidden; }
.course-body { display: flex; flex-direction: column; align-items: flex-start; gap: 0.9rem; }
.course-claim { font-family: "Noto Serif Display", serif; font-weight: 600; font-size: clamp(1.7rem, 3.2vw, 2.4rem); line-height: 1.12; color: var(--green); margin: 0.2rem 0 0; }
.course-badge { display: inline-block; font-size: 0.72rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--brown); background: var(--paper-2); border: 1px solid rgba(75,82,61,0.18); padding: 0.32rem 0.8rem; border-radius: 999px; }
.course-text { font-size: 1.08rem; line-height: 1.7; color: var(--ink); margin: 0.3rem 0 0.6rem; max-width: 52ch; }
.course-foot { display: flex; align-items: center; gap: 1.6rem; flex-wrap: wrap; margin-top: 0.4rem; }
.course-price { font-family: "Noto Serif Display", serif; font-style: italic; font-size: 1.25rem; color: var(--gold); }

.academy-enquiry { max-width: var(--maxw); margin: 0 auto; padding-top: 0; }
.enquiry-card { background: var(--green); border-radius: calc(var(--radius) + 6px); padding: clamp(2.5rem, 5vw, 4.5rem); display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(2.5rem, 5vw, 4rem); align-items: start; }
.enquiry-intro .section-title { margin-bottom: 1rem; }
.enquiry-sub { color: rgba(245,230,197,0.85); font-size: 1.08rem; line-height: 1.6; margin: 0; max-width: 38ch; }
.academy-form { display: flex; flex-direction: column; gap: 1.1rem; }
.af-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.af-field { display: flex; flex-direction: column; gap: 0.45rem; }
.af-field > span { font-size: 0.78rem; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(245,230,197,0.75); }
.af-field input, .af-field select, .af-field textarea { font-family: inherit; font-size: 1rem; color: var(--cream); background: rgba(245,230,197,0.06); border: 1px solid rgba(245,230,197,0.22); border-radius: 10px; padding: 0.8rem 0.95rem; transition: border-color 0.2s, background 0.2s; }
.af-field input::placeholder, .af-field textarea::placeholder { color: rgba(245,230,197,0.45); }
.af-field input:focus, .af-field select:focus, .af-field textarea:focus { outline: none; border-color: var(--gold); background: rgba(245,230,197,0.1); }
.af-field select option { color: #2a2e22; }
.af-field textarea { resize: vertical; min-height: 96px; }
.af-foot { display: flex; align-items: center; gap: 1.4rem; flex-wrap: wrap; margin-top: 0.4rem; }
.af-or { font-size: 0.92rem; color: rgba(245,230,197,0.75); }
.af-or a { color: var(--gold); }
.af-or a:hover { text-decoration: underline; }

@media (max-width: 860px) {
  .course-row, .enquiry-card { grid-template-columns: 1fr; }
  .course-row-rev .course-media { order: -1; }
  .course-img { aspect-ratio: 16/10; }
  .af-grid { grid-template-columns: 1fr; }
}
