/* ═══════════════════════════════════════════
   THE WENLOCK WITCH — Main Stylesheet
   Version: Phase 3
═══════════════════════════════════════════ */

/* ── TOKENS ── */
:root {
  --teal:   #00545A;
  --td:     #003A3F;
  --tm:     #004A50;
  --cr:     #F4EFE8;
  --cd:     #EAE3D8;
  --go:     #D8B46A;
  --gl:     #E8CB8A;
  --am:     #8A6E9F;
  --ch:     #2C2C2C;
  --cl:     #4A4A4A;
  --H:      'Cormorant Garamond', Georgia, serif;
  --B:      'Manrope', sans-serif;
  --ex:     cubic-bezier(0.16, 1, 0.3, 1);
  --sk:     cubic-bezier(0.25, 0.1, 0.25, 1);
  --sm:     cubic-bezier(0.4, 0, 0.2, 1);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--B);
  background: var(--cr);
  color: var(--ch);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button:focus-visible, a:focus-visible { outline: 2px solid var(--go); outline-offset: 3px; }

/* ── PAGE ROUTING ── */
.page { display: none; }
.page.active { display: block; }

/* ── SCROLL REVEALS ── */
.rv  { opacity: 0; transform: translateY(26px);  transition: opacity .95s var(--ex), transform .95s var(--ex); }
.rvl { opacity: 0; transform: translateX(-26px); transition: opacity .95s var(--ex), transform .95s var(--ex); }
.rvr { opacity: 0; transform: translateX(26px);  transition: opacity .95s var(--ex), transform .95s var(--ex); }
.rv.vis, .rvl.vis, .rvr.vis { opacity: 1; transform: none; }
.d1 { transition-delay: .1s;  } .d2 { transition-delay: .22s; }
.d3 { transition-delay: .34s; } .d4 { transition-delay: .46s; }
.d5 { transition-delay: .58s; } .d6 { transition-delay: .7s;  }

/* ── HEADER ── */
.hdr {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  padding: 0 5vw; height: 76px;
  display: flex; align-items: center; justify-content: space-between;
  background: transparent;
  transition: background .6s var(--sk), height .4s var(--sk), box-shadow .6s var(--sk);
}
.hdr.sc {
  background: rgba(0,30,35,.96);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(216,180,106,.12), 0 4px 40px rgba(0,0,0,.25);
  height: 64px;
}
.hdr-logo {
  width: 52px; height: 52px; border-radius: 50%; overflow: hidden;
  flex-shrink: 0; cursor: pointer;
  transition: width .4s var(--sk), height .4s var(--sk), transform .3s;
}
.hdr-logo:hover { transform: scale(1.05); }
.hdr.sc .hdr-logo { width: 42px; height: 42px; }
.hdr-nav { display: flex; align-items: center; gap: 1.6rem; }
.hdr-nav a {
  font-family: var(--B); font-size: .74rem; font-weight: 500;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--cr); opacity: .8; cursor: pointer;
  transition: opacity .25s, color .25s;
  background: none; border: none; padding: 0; position: relative;
}
.hdr-nav a::after {
  content: ''; position: absolute; bottom: -3px; left: 0; right: 0;
  height: 1px; background: var(--go);
  transform: scaleX(0); transform-origin: left; transition: transform .35s var(--ex);
}
.hdr-nav a:hover { opacity: 1; }
.hdr-nav a:hover::after, .hdr-nav a.act::after { transform: scaleX(1); }
.hdr-nav a.act { opacity: 1; color: var(--go); }
.hcta {
  padding: .46rem 1.25rem !important;
  border: 1.5px solid rgba(216,180,106,.6) !important;
  color: var(--go) !important; opacity: 1 !important;
  transition: background .3s, border-color .3s, color .3s !important;
}
.hcta:hover { background: var(--go) !important; border-color: var(--go) !important; color: var(--td) !important; }
.hcta::after { display: none !important; }
.mtog {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; background: none; border: none; padding: 4px;
}
.mtog span { width: 24px; height: 1.5px; background: var(--cr); transition: all .35s var(--ex); display: block; }
.mtog.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.mtog.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.mtog.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ── MOBILE NAV ── */
.mnav {
  display: none; position: fixed; inset: 0;
  background: rgba(0,25,30,.97);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  z-index: 198;
  flex-direction: column; align-items: center; justify-content: center; gap: 2rem;
}
.mnav.open { display: flex; }
.mnav a {
  font-family: var(--H); font-size: 2.2rem; font-style: italic;
  color: var(--cr); font-weight: 300; cursor: pointer;
  transition: color .25s, transform .25s;
  background: none; border: none; letter-spacing: .02em;
}
.mnav a:hover { color: var(--go); transform: translateX(6px); }
.mclose {
  position: absolute; top: 1.5rem; right: 5vw;
  background: none; border: none; color: rgba(244,239,232,.55);
  font-size: 1.5rem; cursor: pointer; transition: color .2s, transform .3s;
}
.mclose:hover { color: var(--cr); transform: rotate(90deg); }

/* ── SHARED TYPOGRAPHY ── */
.ey { font-family: var(--B); font-size: .67rem; font-weight: 600; letter-spacing: .32em; text-transform: uppercase; color: var(--go); margin-bottom: .9rem; }
.sh { font-family: var(--H); font-size: clamp(1.85rem,4.5vw,3.2rem); font-weight: 300; color: var(--teal); line-height: 1.12; margin-bottom: 1rem; letter-spacing: .01em; }
.shl { color: var(--cr); }
.sb { font-size: .95rem; line-height: 1.85; font-weight: 300; color: var(--cl); }
.gr { width: 56px; height: 1px; background: var(--go); opacity: .38; margin: 1.2rem 0; }
.grc { margin-left: auto; margin-right: auto; }
section { padding: 5.5rem 5vw; }
.si { max-width: 1200px; margin: 0 auto; }

/* ── MOON DIVIDER ── */
.moon-div { display: flex; align-items: center; gap: 1.2rem; margin: 1.4rem auto; max-width: 220px; }
.moon-div__line { flex: 1; height: 1px; background: currentColor; opacity: .22; }
.moon-div__icon { opacity: .5; flex-shrink: 0; }

/* ── BUTTONS ── */
.btnp {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .88rem 2.1rem; background: var(--go); color: var(--td);
  font-family: var(--B); font-size: .78rem; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase;
  border: none; cursor: pointer; position: relative; overflow: hidden;
  transition: background .35s, transform .25s, box-shadow .35s;
}
.btnp::after { content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%; background: linear-gradient(90deg,transparent,rgba(255,255,255,.15),transparent); transition: left .55s var(--sk); }
.btnp:hover { background: var(--gl); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(216,180,106,.3); }
.btnp:hover::after { left: 100%; }
.btng { display: inline-flex; align-items: center; padding: .88rem 2.1rem; background: transparent; color: var(--cr); font-family: var(--B); font-size: .78rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; border: 1.5px solid rgba(244,239,232,.35); cursor: pointer; transition: border-color .3s, background .3s, transform .25s; }
.btng:hover { border-color: rgba(244,239,232,.75); background: rgba(244,239,232,.06); transform: translateY(-2px); }
.btnt { display: inline-flex; align-items: center; gap: .5rem; padding: .88rem 2.1rem; background: var(--teal); color: var(--cr); font-family: var(--B); font-size: .78rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; border: none; cursor: pointer; transition: background .35s, transform .25s, box-shadow .35s; }
.btnt:hover { background: var(--tm); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,84,90,.25); }
.btnoc { display: inline-flex; align-items: center; width: fit-content; padding: .78rem 1.8rem; border: 1.5px solid rgba(244,239,232,.3); color: var(--cr); font-family: var(--B); font-size: .76rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; cursor: pointer; background: transparent; transition: border-color .3s, background .3s, transform .25s; }
.btnoc:hover { border-color: rgba(216,180,106,.7); background: rgba(216,180,106,.06); transform: translateY(-2px); }
.btnoc-dark { border-color: rgba(0,84,90,.3); color: var(--teal); }
.btnoc-dark:hover { border-color: var(--go); color: var(--teal); }

/* ── PAGE HERO ── */
.phero { position: relative; height: 62vh; min-height: 400px; overflow: hidden; display: flex; align-items: center; justify-content: center; text-align: center; }
.pbg { position: absolute; inset: -5%; background-size: cover; background-position: center; }
.pov { position: absolute; inset: 0; background: linear-gradient(160deg,rgba(0,52,58,.62),rgba(0,20,25,.78)); }
.pc { position: relative; z-index: 2; max-width: 720px; padding: 0 2rem; }
.pey { font-family: var(--B); font-size: .66rem; font-weight: 600; letter-spacing: .32em; text-transform: uppercase; color: var(--go); margin-bottom: 1.2rem; opacity: 0; animation: fsu .9s .2s var(--ex) forwards; }
.ph1 { font-family: var(--H); font-size: clamp(2.2rem,5.5vw,3.9rem); font-weight: 300; color: var(--cr); line-height: 1.1; margin-bottom: 1rem; opacity: 0; animation: fsu .9s .38s var(--ex) forwards; }
.ps  { font-size: .98rem; color: rgba(244,239,232,.78); font-weight: 300; max-width: 520px; margin: 0 auto; opacity: 0; animation: fsu .9s .55s var(--ex) forwards; }
@keyframes fsu { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }
@keyframes kb   { 0% { transform: scale(1); } 100% { transform: scale(1.08) translate(-1%, .5%); } }

/* ── HOME HERO ── */
.hero { position: relative; height: 100vh; min-height: 600px; overflow: hidden; display: flex; align-items: center; justify-content: center; padding: 0 !important; }
.hbg { position: absolute; inset: -10%; background-size: cover; background-position: center 20%; will-change: transform; animation: kb 24s ease-in-out infinite alternate; }
.hov { position: absolute; inset: 0; background: linear-gradient(160deg,rgba(0,52,58,.55) 0%,rgba(0,30,35,.68) 55%,rgba(0,18,22,.85) 100%); }
.hmoon { position: absolute; inset: 0; background: radial-gradient(ellipse at 70% 30%,rgba(216,180,106,.06) 0%,transparent 60%); pointer-events: none; }
.hc { position: relative; z-index: 2; text-align: center; max-width: 760px; padding: 0 2rem; }
.hey  { display: inline-block; font-family: var(--B); font-size: .67rem; font-weight: 500; letter-spacing: .34em; text-transform: uppercase; color: var(--go); margin-bottom: 1.5rem; opacity: 0; animation: fsu 1.1s .3s var(--ex) forwards; }
.hh1  { font-family: var(--H); font-size: clamp(2.5rem,6.5vw,4.6rem); font-weight: 300; color: var(--cr); line-height: 1.08; margin-bottom: 1.5rem; letter-spacing: .01em; opacity: 0; animation: fsu 1.1s .55s var(--ex) forwards; }
.hh1 em { font-style: italic; color: var(--gl); }
.hsub { font-size: 1.05rem; color: rgba(244,239,232,.78); font-weight: 300; max-width: 520px; margin: 0 auto 3rem; line-height: 1.8; opacity: 0; animation: fsu 1.1s .78s var(--ex) forwards; }
.hbtns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; opacity: 0; animation: fsu 1.1s 1s var(--ex) forwards; }
.hscr { position: absolute; bottom: 2.2rem; left: 50%; transform: translateX(-50%); z-index: 2; display: flex; flex-direction: column; align-items: center; gap: .45rem; opacity: 0; animation: fsu 1s 1.4s var(--ex) forwards; cursor: pointer; }
.hscr span { font-size: .58rem; letter-spacing: .28em; text-transform: uppercase; color: rgba(244,239,232,.38); }
.scl { width: 1px; height: 46px; background: linear-gradient(to bottom,rgba(216,180,106,.65),transparent); animation: sp 2.4s ease-in-out infinite; margin-top: .2rem; }
@keyframes sp { 0%,100% { opacity: .25; } 50% { opacity: 1; } }

/* HERO BOTANICALS */
.hbot { position: absolute; color: var(--cr); pointer-events: none; z-index: 1; }
.hbot-l { left: 3vw;  bottom: 8%;  width: 100px; opacity: .1;  animation: drift 16s ease-in-out infinite; }
.hbot-r { right: 4vw; top: 18%;   width: 85px;  opacity: .09; animation: driftR 20s ease-in-out infinite; animation-delay: -6s; }
.hbot-s { right: 12vw; bottom: 18%; width: 60px; opacity: .07; animation: drift 13s ease-in-out infinite; animation-delay: -10s; }
@keyframes drift  { 0%,100% { transform: translateY(0) rotate(-2deg); }  40% { transform: translateY(-18px) rotate(2.5deg); }  70% { transform: translateY(-8px) rotate(-1.5deg); } }
@keyframes driftR { 0%,100% { transform: scaleX(-1) translateY(0) rotate(2deg); } 40% { transform: scaleX(-1) translateY(-14px) rotate(-2deg); } 70% { transform: scaleX(-1) translateY(-6px) rotate(1.5deg); } }

/* ── HIDDEN GEM ── */
.hgem { background: var(--td); overflow: hidden; padding: 0 !important; }
.hgem-in { display: grid; grid-template-columns: 1fr 1fr; }
.hgem-img { position: relative; min-height: 520px; overflow: hidden; }
.hgem-img img { transition: transform 9s var(--sk); }
.hgem-img:hover img { transform: scale(1.04); }
.hgem-ct { display: flex; flex-direction: column; justify-content: center; padding: 5rem 5vw 5rem 4rem; }
.hgem-pull { font-family: var(--H); font-size: clamp(1.55rem,3vw,2.45rem); font-style: italic; font-weight: 300; color: var(--cr); line-height: 1.35; margin-bottom: 1.8rem; }
.hgem-pull em { color: var(--gl); font-style: normal; }
.hgem-body { font-size: .93rem; color: rgba(244,239,232,.68); line-height: 1.9; margin-bottom: 2rem; }
.hgem-tags { display: flex; flex-wrap: wrap; gap: .6rem; margin-bottom: 2.5rem; }
.hgem-tag { padding: .32rem .88rem; border: 1px solid rgba(216,180,106,.2); font-size: .7rem; font-weight: 500; letter-spacing: .12em; text-transform: uppercase; color: var(--go); opacity: .78; transition: border-color .25s, opacity .25s; }
.hgem-tag:hover { opacity: 1; border-color: rgba(216,180,106,.5); }

/* ── WHY VISIT ── */
.wv { background: var(--teal); padding: 5.5rem 5vw; text-align: center; }
.wv-in { max-width: 1200px; margin: 0 auto; }
.wv-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.8rem; margin-top: 3.5rem; }
.wv-card { padding: 2.5rem 1.8rem; border: 1px solid rgba(216,180,106,.12); background: rgba(255,255,255,.03); transition: background .4s var(--sm), transform .4s var(--ex), border-color .4s; }
.wv-card:hover { background: rgba(216,180,106,.07); transform: translateY(-8px); border-color: rgba(216,180,106,.28); }
.wv-icon { color: var(--go); margin-bottom: 1.2rem; opacity: .72; display: flex; justify-content: center; }
.wv-title { font-family: var(--H); font-size: 1.5rem; color: var(--cr); margin-bottom: .7rem; }
.wv-text  { font-size: .87rem; color: rgba(244,239,232,.58); line-height: 1.72; }

/* ── ATMOSPHERE ── */
.atm { background: var(--cr); text-align: center; }
.atm-in { max-width: 560px; margin: 0 auto 3.5rem; }
.atm-g { display: grid; grid-template-columns: repeat(12,1fr); gap: 10px; max-width: 1300px; margin: 0 auto; }
.ai { overflow: hidden; border-radius: 2px; cursor: pointer; }
.ai img { transition: transform .9s var(--sk), filter .6s; }
.ai:hover img { transform: scale(1.06); filter: brightness(.92); }
.a1 { grid-column: 1/6;  aspect-ratio: 4/3; } .a2 { grid-column: 6/9;  aspect-ratio: 3/4; }
.a3 { grid-column: 9/13; aspect-ratio: 3/4; } .a4 { grid-column: 1/5;  aspect-ratio: 3/4; }
.a5 { grid-column: 5/9;  aspect-ratio: 3/4; } .a6 { grid-column: 9/13; aspect-ratio: 4/3; }

/* ── COMMUNITY ── */
.comm { background: var(--cd); position: relative; overflow: hidden; }
.comm::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(to right,transparent,rgba(216,180,106,.4),transparent); }
.comm-in { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.comm-stk { position: relative; height: 490px; }
.comm-main { position: absolute; top: 0; left: 0; width: 72%; height: 78%; overflow: hidden; border-radius: 2px; box-shadow: 0 20px 60px rgba(0,0,0,.14); }
.comm-main img, .comm-ins img { transition: transform 9s var(--sk); }
.comm-main:hover img, .comm-ins:hover img { transform: scale(1.04); }
.comm-ins { position: absolute; bottom: 0; right: 0; width: 55%; height: 52%; overflow: hidden; border-radius: 2px; border: 4px solid var(--cd); box-shadow: 0 14px 40px rgba(0,0,0,.1); }
.comm-feats { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; margin: 2rem 0; }
.comm-feat { padding: 1.2rem; background: var(--cr); border-left: 2px solid rgba(216,180,106,.35); transition: border-color .3s; }
.comm-feat:hover { border-left-color: rgba(216,180,106,.7); }
.comm-ft { font-family: var(--H); font-size: 1.1rem; color: var(--teal); margin-bottom: .3rem; }
.comm-fd { font-size: .82rem; color: var(--cl); line-height: 1.65; }

/* ── FEATURED WORKSHOP ── */
.fw { background: var(--td); padding: 0 !important; overflow: hidden; }
.fw-in { display: grid; grid-template-columns: 1fr 1fr; }
.fw-img { position: relative; min-height: 480px; overflow: hidden; }
.fw-img img { transition: transform 9s var(--sk); }
.fw-img:hover img { transform: scale(1.05); }
.fw-img-ov { position: absolute; inset: 0; background: linear-gradient(to right,transparent 50%,rgba(0,30,35,.9) 100%); }
.fw-ct { display: flex; flex-direction: column; justify-content: center; padding: 5rem 5vw 5rem 4rem; }
.fw-label { font-family: var(--B); font-size: .66rem; font-weight: 600; letter-spacing: .28em; text-transform: uppercase; color: var(--go); margin-bottom: 1.2rem; display: flex; align-items: center; gap: .7rem; }
.fw-label::before { content: ''; width: 28px; height: 1px; background: var(--go); opacity: .55; display: block; }
.fw-ttl { font-family: var(--H); font-size: clamp(2rem,4vw,3rem); font-weight: 300; color: var(--cr); line-height: 1.1; margin-bottom: 1.2rem; }
.fw-desc { font-size: .95rem; color: rgba(244,239,232,.68); line-height: 1.88; margin-bottom: 2.5rem; max-width: 44ch; }
.fw-detail { display: flex; align-items: center; gap: .6rem; font-size: .78rem; color: rgba(244,239,232,.45); letter-spacing: .06em; margin-bottom: 2rem; }

/* ── KERRY PREVIEW ── */
.kprev { background: var(--teal); display: grid; grid-template-columns: 1fr 1fr; overflow: hidden; padding: 0 !important; }
.kprev-img { position: relative; min-height: 560px; overflow: hidden; }
.kprev-img img { object-position: center 15%; transition: transform 9s var(--sk); }
.kprev-img:hover img { transform: scale(1.04); }
.kprev-ov { position: absolute; inset: 0; background: linear-gradient(to right,transparent 55%,var(--teal) 100%); }
.kprev-ct { display: flex; flex-direction: column; justify-content: center; padding: 5rem 5vw 5rem 3rem; }
.kprev-q { font-family: var(--H); font-size: 1.3rem; font-style: italic; color: var(--gl); line-height: 1.6; margin-bottom: 2rem; padding-left: 1.5rem; border-left: 2px solid rgba(216,180,106,.38); }
.kprev-body { color: rgba(244,239,232,.74); margin-bottom: 2.5rem; font-size: .94rem; line-height: 1.82; }

/* ── A PLACE TO EXPLORE ── */
.place { background: var(--td); padding: 7rem 5vw !important; position: relative; overflow: hidden; text-align: center; }
.place-bg { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: .06; pointer-events: none; }
.place-in { position: relative; z-index: 2; max-width: 860px; margin: 0 auto; }
.place-h { font-family: var(--H); font-size: clamp(2.4rem,6vw,4.6rem); font-weight: 300; color: var(--cr); line-height: 1.08; margin-bottom: 1.8rem; }
.place-h em { font-style: italic; color: var(--gl); }
.place-lead { font-size: 1.08rem; color: rgba(244,239,232,.7); line-height: 1.9; max-width: 52ch; margin: 0 auto 3rem; }
.place-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin-bottom: 3.5rem; text-align: left; }
.place-col { padding: 1.8rem; border: 1px solid rgba(216,180,106,.1); background: rgba(255,255,255,.03); }
.place-col p { font-family: var(--H); font-size: 1.08rem; font-style: italic; color: rgba(244,239,232,.62); line-height: 1.72; }
.place-col-label { font-size: .64rem; font-weight: 600; letter-spacing: .26em; text-transform: uppercase; color: var(--go); opacity: .7; margin-bottom: .7rem; }

/* ── EXPLORE CARDS ── */
.exsec { background: var(--cr); text-align: center; }
.ex-int { max-width: 560px; margin: 0 auto 3.5rem; }
.ex-g { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; max-width: 1200px; margin: 0 auto; }
.ec { background: var(--cd); border-radius: 3px; overflow: hidden; box-shadow: 0 4px 24px rgba(0,0,0,.06); transition: transform .45s var(--ex), box-shadow .45s; cursor: pointer; }
.ec:hover { transform: translateY(-10px); box-shadow: 0 20px 56px rgba(0,84,90,.14); }
.ec-img { height: 220px; overflow: hidden; position: relative; }
.ec-img img { transition: transform .8s var(--sk); }
.ec:hover .ec-img img { transform: scale(1.08); }
.ec-ov { position: absolute; inset: 0; background: linear-gradient(to top,rgba(0,52,58,.32),transparent 55%); }
.ec-body { padding: 1.4rem 1.4rem 1.8rem; }
.ec-cat  { font-size: .63rem; font-weight: 600; letter-spacing: .26em; text-transform: uppercase; color: var(--go); margin-bottom: .4rem; }
.ec-ttl  { font-family: var(--H); font-size: 1.5rem; color: var(--teal); margin-bottom: .5rem; }
.ec-desc { font-size: .87rem; color: var(--cl); line-height: 1.72; }

/* ── STATS BAR ── */
.stats { background: var(--teal); padding: 4.5rem 5vw !important; }
.stats-in { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(4,1fr); gap: 2rem; }
.stat-item { text-align: center; padding: 1.5rem 1rem; border-bottom: 1px solid rgba(216,180,106,.18); transition: border-color .3s; }
.stat-item:hover { border-bottom-color: rgba(216,180,106,.45); }
.stat-val { font-family: var(--H); font-size: 2rem; color: var(--go); font-style: italic; margin-bottom: .5rem; }
.stat-lbl { font-size: .74rem; font-weight: 500; letter-spacing: .16em; text-transform: uppercase; color: rgba(244,239,232,.5); line-height: 1.5; }

/* ── REVIEWS ── */
.revsec { background: var(--td); text-align: center; position: relative; overflow: hidden; padding: 5.5rem 5vw !important; }
.revsec::before { content: ''; position: absolute; top: -100px; left: 50%; transform: translateX(-50%); width: 700px; height: 700px; background: radial-gradient(circle,rgba(216,180,106,.04),transparent 70%); pointer-events: none; }
.rev-in { max-width: 960px; margin: 0 auto; }
.rev-badge { display: inline-flex; align-items: center; gap: .5rem; padding: .38rem 1.2rem; border: 1px solid rgba(216,180,106,.25); font-size: .7rem; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: var(--go); margin-bottom: 2.5rem; }
.rev-feat { background: rgba(216,180,106,.05); border: 1px solid rgba(216,180,106,.15); padding: 3rem; margin-bottom: 2rem; position: relative; }
.rev-feat::before { content: '\201C'; font-family: var(--H); font-size: 8rem; line-height: .5; color: var(--go); opacity: .1; position: absolute; top: 1.5rem; left: 2rem; pointer-events: none; }
.rev-ft { font-family: var(--H); font-size: clamp(1.25rem,3vw,1.8rem); font-style: italic; color: var(--cr); line-height: 1.55; margin-bottom: 1.2rem; position: relative; z-index: 1; }
.rev-g { display: grid; grid-template-columns: repeat(2,1fr); gap: 1.6rem; }
.rvc { background: rgba(255,255,255,.03); border: 1px solid rgba(216,180,106,.09); padding: 2rem; text-align: left; position: relative; transition: background .35s, border-color .35s; }
.rvc:hover { background: rgba(216,180,106,.04); border-color: rgba(216,180,106,.18); }
.rvc::before { content: '\201C'; font-family: var(--H); font-size: 5rem; line-height: .55; color: var(--go); opacity: .12; position: absolute; top: .8rem; left: 1.2rem; pointer-events: none; }
.rvc-t  { font-family: var(--H); font-size: 1.1rem; font-style: italic; color: var(--cr); line-height: 1.62; margin-bottom: 1rem; position: relative; z-index: 1; }
.rvc-st { color: var(--go); font-size: .78rem; letter-spacing: .2em; margin-bottom: .45rem; }
.rvc-au { font-size: .73rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: var(--go); opacity: .6; }

/* ── VISIT PREVIEW ── */
.vp { background: var(--cd); }
.vp-in { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.vp-img { aspect-ratio: 4/3; overflow: hidden; border-radius: 2px; box-shadow: 0 20px 60px rgba(0,0,0,.1); }
.vp-img img { transition: transform 9s var(--sk); }
.vp-img:hover img { transform: scale(1.04); }
.vd { margin-bottom: 2rem; padding-bottom: 2rem; border-bottom: 1px solid rgba(0,84,90,.1); }
.vd:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.vd-lbl { font-size: .66rem; font-weight: 600; letter-spacing: .28em; text-transform: uppercase; color: var(--go); margin-bottom: .55rem; }
.vd-val { font-family: var(--H); font-size: 1.1rem; color: var(--teal); line-height: 1.72; }
.vd-val a { color: var(--teal); transition: color .2s; } .vd-val a:hover { color: var(--go); }
.hr-row { display: flex; justify-content: space-between; font-size: .86rem; color: var(--cl); padding: .36rem 0; border-bottom: 1px solid rgba(0,84,90,.07); }
.hr-row:last-child { border-bottom: none; }
.hr-row strong { color: var(--teal); font-weight: 500; }

/* ── KERRY PAGE ── */
.ki { background: var(--cr); display: grid; grid-template-columns: 1.1fr 1fr; gap: 6rem; align-items: center; padding: 6rem 5vw !important; }
.ki-iw { position: relative; }
.ki-main { aspect-ratio: 3/4; overflow: hidden; border-radius: 2px; box-shadow: 0 24px 64px rgba(0,0,0,.12); }
.ki-main img { transition: transform 9s var(--sk); } .ki-main:hover img { transform: scale(1.04); }
.ki-ins { position: absolute; bottom: -2rem; right: -2rem; width: 55%; aspect-ratio: 1; overflow: hidden; border-radius: 2px; border: 5px solid var(--cr); box-shadow: 0 16px 40px rgba(0,0,0,.1); }
.ki-body { font-size: 1.02rem; line-height: 1.9; color: var(--cl); margin-bottom: 1.6rem; }
.ksec { background: var(--td); padding: 6rem 5vw !important; }
.ks-g { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; margin-top: 3.5rem; }
.ks-t p { font-size: .94rem; line-height: 1.9; color: rgba(244,239,232,.72); margin-bottom: 1.4rem; }
.ks-img { aspect-ratio: 4/3; overflow: hidden; border-radius: 2px; }
.ks-img img { transition: transform 9s var(--sk); } .ks-img:hover img { transform: scale(1.04); }
.ksafe { background: var(--cr); padding: 6rem 5vw !important; text-align: center; }
.ksafe-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; margin-top: 3rem; }
.ksc { padding: 2.5rem 2rem; border: 1px solid rgba(0,84,90,.1); border-top: 3px solid var(--go); background: var(--cd); transition: transform .4s var(--ex), box-shadow .4s; }
.ksc:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(0,84,90,.1); }
.ksc-ic { font-size: 2rem; margin-bottom: 1rem; }
.ksc-t  { font-family: var(--H); font-size: 1.4rem; color: var(--teal); margin-bottom: .8rem; }
.ksc-d  { font-size: .88rem; color: var(--cl); line-height: 1.75; }
.kcomm { background: var(--teal); padding: 6rem 5vw !important; display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; overflow: hidden; }
.kcomm-body { color: rgba(244,239,232,.73); font-size: .94rem; line-height: 1.85; margin-bottom: 1.5rem; }
.kcomm-img { aspect-ratio: 1; overflow: hidden; border-radius: 2px; }
.kcomm-img img { transition: transform 9s var(--sk); } .kcomm-img:hover img { transform: scale(1.04); }
.kcta { background: var(--cd); padding: 6rem 5vw !important; text-align: center; }

/* ── WORKSHOPS PAGE ── */
.wsi { background: var(--cr); text-align: center; }
.ev-g { display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; margin-top: 3.5rem; }
.evc { background: var(--cr); overflow: hidden; border-radius: 3px; box-shadow: 0 4px 20px rgba(0,0,0,.07); transition: transform .45s var(--ex), box-shadow .45s; }
.evc:hover { transform: translateY(-8px); box-shadow: 0 22px 52px rgba(0,84,90,.13); }
.evc-img { height: 240px; overflow: hidden; position: relative; }
.evc-img img { transition: transform .8s var(--sk); }
.evc:hover .evc-img img { transform: scale(1.06); }
.evc-bdg { position: absolute; top: 1rem; left: 1rem; padding: .28rem .88rem; background: rgba(0,30,35,.88); font-size: .63rem; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: var(--go); border-radius: 1px; }
.evc-body { padding: 1.8rem; }
.evc-type { font-size: .63rem; font-weight: 600; letter-spacing: .22em; text-transform: uppercase; color: var(--go); margin-bottom: .4rem; }
.evc-t    { font-family: var(--H); font-size: 1.4rem; color: var(--teal); margin-bottom: .7rem; line-height: 1.2; }
.evc-d    { font-size: .86rem; color: var(--cl); line-height: 1.72; margin-bottom: 1.4rem; }
.evc-meta { font-size: .76rem; color: var(--am); font-weight: 500; margin-bottom: 1.2rem; }
.evc-btn  { display: inline-flex; align-items: center; gap: .4rem; font-size: .73rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--teal); border-bottom: 1px solid rgba(0,84,90,.25); padding-bottom: .12rem; cursor: pointer; background: none; border-top: none; border-left: none; border-right: none; transition: color .25s, border-color .25s; }
.evc-btn:hover { color: var(--go); border-bottom-color: var(--go); }
.seas-sec { background: var(--td); padding: 5.5rem 5vw !important; }
.seas-g { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; margin-top: 3.5rem; }
.si-item { padding: 2.2rem 1.6rem; border: 1px solid rgba(216,180,106,.1); background: rgba(255,255,255,.03); transition: background .35s, border-color .35s, transform .4s var(--ex); }
.si-item:hover { background: rgba(216,180,106,.06); border-color: rgba(216,180,106,.22); transform: translateY(-4px); }
.si-s { font-size: .66rem; font-weight: 600; letter-spacing: .24em; text-transform: uppercase; color: var(--go); margin-bottom: .8rem; }
.si-t { font-family: var(--H); font-size: 1.4rem; color: var(--cr); margin-bottom: .7rem; }
.si-d { font-size: .84rem; color: rgba(244,239,232,.53); line-height: 1.72; }

/* ── EXPLORE PAGE ── */
.shi { background: var(--cr); text-align: center; }
.shi-in { max-width: 680px; margin: 0 auto; }
.shcat { padding: 5.5rem 5vw !important; overflow: hidden; }
.shcat:nth-child(odd)  { background: var(--cr); }
.shcat:nth-child(even) { background: var(--cd); }
.shcat-in { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.shcat-in.rv2 { direction: rtl; } .shcat-in.rv2 > * { direction: ltr; }
.shcat-img { aspect-ratio: 4/3; overflow: hidden; border-radius: 2px; }
.shcat-img img { transition: transform 9s var(--sk); }
.shcat-img:hover img { transform: scale(1.05); }
.sh-num  { font-family: var(--H); font-size: 5rem; font-weight: 300; color: var(--teal); opacity: .07; line-height: 1; margin-bottom: -1.5rem; display: block; }
.sh-body { font-size: .95rem; color: var(--cl); line-height: 1.85; margin-bottom: 1.4rem; }
.sh-tags { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: 1.5rem; }
.shtag   { padding: .28rem .84rem; background: rgba(0,84,90,.08); font-size: .74rem; font-weight: 500; letter-spacing: .08em; color: var(--teal); transition: background .25s; }
.shtag:hover { background: rgba(0,84,90,.14); }
.shdisc { background: var(--td); text-align: center; padding: 5.5rem 5vw !important; }
.shd-in { max-width: 700px; margin: 0 auto; }
.shd-body { color: rgba(244,239,232,.68); margin-bottom: 2.5rem; font-size: .97rem; line-height: 1.88; }

/* ── GALLERY ── */
.gali { background: var(--cr); text-align: center; }
.gali-in { max-width: 680px; margin: 0 auto; }
.galsec { background: var(--cr); padding: 4rem 5vw !important; }
.galsec-in { max-width: 1300px; margin: 0 auto; }
.mason { column-count: 3; column-gap: 12px; }
.git { break-inside: avoid; margin-bottom: 12px; overflow: hidden; cursor: pointer; position: relative; border-radius: 2px; }
.git img { display: block; width: 100%; transition: transform .7s var(--sk), filter .5s; }
.git:hover img { transform: scale(1.05); filter: brightness(.85); }
.git-ov { position: absolute; inset: 0; background: rgba(0,30,35,0); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: .5rem; transition: background .45s; }
.git:hover .git-ov { background: rgba(0,30,35,.25); }
.git-ic { color: var(--cr); font-size: 1.3rem; opacity: 0; transform: scale(.7); transition: opacity .45s, transform .45s; }
.git:hover .git-ic { opacity: 1; transform: scale(1); }

/* ── LIGHTBOX ── */
.lb { display: none; position: fixed; inset: 0; z-index: 999; background: rgba(0,8,10,.95); align-items: center; justify-content: center; }
.lb.open { display: flex; }
.lb-wrap { max-width: min(90vw,1100px); max-height: 90vh; position: relative; display: flex; flex-direction: column; align-items: center; gap: .8rem; }
.lb-img  { max-height: 80vh; width: auto; max-width: 100%; border-radius: 2px; object-fit: contain; transition: opacity .35s var(--sm); }
.lb-img.fade { opacity: 0; }
.lb-cap  { font-family: var(--H); font-size: 1rem; font-style: italic; color: rgba(244,239,232,.45); letter-spacing: .03em; text-align: center; }
.lb-x    { position: absolute; top: -2.8rem; right: 0; background: none; border: none; color: rgba(244,239,232,.55); font-size: 1.3rem; cursor: pointer; transition: color .2s, transform .3s; padding: .3rem; }
.lb-x:hover { color: var(--cr); transform: rotate(90deg); }
.lb-p, .lb-n { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(0,84,90,.4); border: 1px solid rgba(216,180,106,.15); color: var(--cr); width: 46px; height: 46px; border-radius: 50%; font-size: 1.1rem; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background .25s, border-color .25s; backdrop-filter: blur(4px); }
.lb-p:hover, .lb-n:hover { background: var(--teal); border-color: rgba(216,180,106,.4); }
.lb-p   { left: -3.8rem; } .lb-n { right: -3.8rem; }
.lb-count { position: absolute; bottom: -2.2rem; left: 50%; transform: translateX(-50%); font-size: .72rem; color: rgba(244,239,232,.3); letter-spacing: .2em; }

/* ── VISIT PAGE ── */
.visec { background: var(--cr); padding: 5.5rem 5vw !important; }
.vi-in { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
.vi-blk { margin-bottom: 2.2rem; padding-bottom: 2.2rem; border-bottom: 1px solid rgba(0,84,90,.1); }
.vi-blk:last-child { border-bottom: none; padding-bottom: 0; }
.vi-lbl { font-size: .66rem; font-weight: 600; letter-spacing: .28em; text-transform: uppercase; color: var(--go); margin-bottom: .55rem; }
.vi-val { font-family: var(--H); font-size: 1.1rem; color: var(--teal); line-height: 1.75; }
.vi-val a { color: var(--teal); transition: color .2s; } .vi-val a:hover { color: var(--go); }
.vi-map { aspect-ratio: 4/3; overflow: hidden; border-radius: 2px; box-shadow: 0 16px 48px rgba(0,0,0,.1); }
.vi-map iframe { width: 100%; height: 100%; border: 0; display: block; }
.viexp { background: var(--td); padding: 5.5rem 5vw !important; }
.viexp-in { max-width: 1200px; margin: 0 auto; }
.viexp-g { display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; margin-top: 3.5rem; }
.xcard { padding: 2.5rem 2rem; border: 1px solid rgba(216,180,106,.1); background: rgba(255,255,255,.03); transition: background .35s, transform .4s var(--ex); }
.xcard:hover { background: rgba(216,180,106,.05); transform: translateY(-4px); }
.xcard-n { font-family: var(--H); font-size: 3.5rem; color: var(--go); opacity: .2; line-height: 1; margin-bottom: .5rem; }
.xcard-t { font-family: var(--H); font-size: 1.4rem; color: var(--cr); margin-bottom: .8rem; }
.xcard-d { font-size: .87rem; color: rgba(244,239,232,.57); line-height: 1.75; }
.faq { background: var(--cr); padding: 5.5rem 5vw !important; }
.faq-in { max-width: 800px; margin: 0 auto; }
.faq-list { margin-top: 2.5rem; }
.faq-item { border-bottom: 1px solid rgba(0,84,90,.1); }
.faq-q { width: 100%; text-align: left; padding: 1.45rem 0; background: none; border: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; font-family: var(--H); font-size: 1.22rem; color: var(--teal); font-weight: 400; letter-spacing: .01em; transition: color .2s; }
.faq-q:hover { color: var(--td); }
.faq-icon { color: var(--go); font-size: 1.3rem; transition: transform .4s var(--ex); flex-shrink: 0; margin-left: 1rem; font-style: normal; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .5s var(--ex); }
.faq-item.open .faq-a { max-height: 320px; }
.faq-a p { font-size: .94rem; color: var(--cl); line-height: 1.82; padding-bottom: 1.5rem; }
.planning { background: var(--cd); padding: 5.5rem 5vw !important; }
.planning-in { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.planning-body { font-size: .95rem; color: var(--cl); line-height: 1.88; margin-bottom: 1.4rem; }

/* ── FOOTER ── */
.ftr { background: var(--td); padding: 5rem 5vw 0; position: relative; overflow: hidden; }
.ftr::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(to right,transparent,rgba(216,180,106,.35),transparent); }
.ftr-main { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1.8fr 1fr 1fr 1fr; gap: 3rem; padding-bottom: 3.5rem; border-bottom: 1px solid rgba(244,239,232,.07); }
.ftr-logo { width: 64px; height: 64px; border-radius: 50%; overflow: hidden; margin-bottom: 1.4rem; cursor: pointer; transition: transform .3s; }
.ftr-logo:hover { transform: scale(1.05); }
.ftr-stmt { font-size: .95rem; color: rgba(244,239,232,.5); line-height: 1.75; margin-bottom: .8rem; max-width: 30ch; }
.ftr-pil  { font-size: .65rem; font-weight: 600; letter-spacing: .24em; text-transform: uppercase; color: var(--go); margin-bottom: 1.4rem; margin-top: 1rem; }
.ftr-soc  { display: flex; flex-direction: column; gap: .8rem; }
.ftr-soc a { display: inline-flex; align-items: center; gap: .6rem; font-size: .78rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--go); transition: color .2s, gap .2s; }
.ftr-soc a:hover { color: var(--gl); gap: .9rem; }
.ftr-ch { font-family: var(--B); font-size: .66rem; font-weight: 600; letter-spacing: .28em; text-transform: uppercase; color: var(--go); margin-bottom: 1.4rem; opacity: .85; }
.ftr-lks { display: flex; flex-direction: column; gap: .7rem; }
.ftr-lks a { font-size: .87rem; color: rgba(244,239,232,.52); cursor: pointer; transition: color .2s, transform .2s; background: none; border: none; text-align: left; display: block; }
.ftr-lks a:hover { color: var(--cr); transform: translateX(4px); }
.ftr-cl { font-size: .86rem; color: rgba(244,239,232,.52); line-height: 1.75; margin-bottom: .25rem; }
.ftr-cl a { color: rgba(244,239,232,.52); transition: color .2s; } .ftr-cl a:hover { color: var(--cr); }
.ftr-wenlock { background: rgba(216,180,106,.05); border: 1px solid rgba(216,180,106,.12); padding: 1.4rem 1.6rem; margin-top: 1.4rem; text-align: center; }
.ftr-wenlock p { font-family: var(--H); font-size: 1rem; font-style: italic; color: rgba(244,239,232,.45); margin-bottom: .7rem; }
.ftr-wenlock a { font-size: .72rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: var(--go); transition: color .2s; }
.ftr-wenlock a:hover { color: var(--gl); }
.ftr-bot { max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: .5rem; padding: 1.8rem 0 2rem; }
.ftr-cp  { font-size: .73rem; color: rgba(244,239,232,.22); }
.ftr-credit { font-size: .72rem; color: rgba(244,239,232,.56); }
.ftr-credit a { color: var(--go); transition: color .2s; }
.ftr-credit a:hover { color: var(--gl); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .ex-g, .ev-g, .seas-g, .wv-grid, .stats-in { grid-template-columns: repeat(2,1fr); }
  .ftr-main { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 820px) {
  .hdr-nav { display: none; } .mtog { display: flex; }
  .hgem-in { grid-template-columns: 1fr; } .hgem-img { min-height: 300px; }
  .kprev { grid-template-columns: 1fr; } .kprev-img { min-height: 340px; }
  .kprev-ov { background: linear-gradient(to top,var(--teal) 15%,transparent 55%); }
  .kprev-ct { padding: 3rem 5vw; }
  .fw-in { grid-template-columns: 1fr; } .fw-img { min-height: 320px; }
  .fw-img-ov { background: linear-gradient(to top,rgba(0,30,35,.9) 20%,transparent 70%); }
  .fw-ct { padding: 3rem 5vw; }
  .comm-in { grid-template-columns: 1fr; } .comm-stk { height: 300px; }
  .vp-in { grid-template-columns: 1fr; }
  .ki { grid-template-columns: 1fr; padding: 4rem 5vw !important; } .ki-ins { display: none; }
  .ks-g { grid-template-columns: 1fr; } .ksafe-cards { grid-template-columns: 1fr; }
  .kcomm { grid-template-columns: 1fr; padding: 4rem 5vw !important; }
  .shcat-in { grid-template-columns: 1fr; gap: 2.5rem; } .shcat-in.rv2 { direction: ltr; }
  .vi-in { grid-template-columns: 1fr; } .viexp-g { grid-template-columns: 1fr; }
  .planning-in { grid-template-columns: 1fr; }
  .place-cols { grid-template-columns: 1fr; }
  .mason { column-count: 2; }
  .rev-g { grid-template-columns: 1fr; }
  .atm-g { grid-template-columns: 1fr 1fr; }
  .a1,.a2,.a3,.a4,.a5,.a6 { grid-column: auto; aspect-ratio: 4/3; }
  .ftr-main { grid-template-columns: 1fr; gap: 2rem; }
  .hbot { display: none; }
}
@media (max-width: 560px) {
  .ex-g, .ev-g, .seas-g, .wv-grid, .stats-in, .ksafe-cards { grid-template-columns: 1fr; }
  .hbtns { flex-direction: column; align-items: center; }
  .atm-g { grid-template-columns: 1fr; }
  .mason { column-count: 1; }
  section, .ki, .ksec, .ksafe, .kcomm, .kcta, .shcat, .shdisc, .visec, .viexp, .faq, .planning, .fw { padding: 4rem 5vw !important; }
  .lb-p { left: .4rem; } .lb-n { right: .4rem; }
  .lb-wrap { max-width: 95vw; }
}


/* Refined inline icons */
.meta-with-icon { display: inline-flex; align-items: center; gap: .42rem; }
.meta-icon { width: 14px; height: 14px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; flex: 0 0 auto; }
.feature-icon { width: 36px; height: 36px; fill: none; stroke: currentColor; stroke-width: 1.45; stroke-linecap: round; stroke-linejoin: round; }
.season-icon { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 1.45; stroke-linecap: round; stroke-linejoin: round; flex: 0 0 auto; }
.si-s { display: flex; align-items: center; gap: .5rem; }

/* ── MAGICAL ATMOSPHERE POLISH ── */
.hero {
  min-height: 100svh;
  background: var(--td);
  isolation: isolate;
}
.hero-media {
  inset: -7%;
  overflow: hidden;
  background-size: cover;
  background-position: center;
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.025);
  filter: saturate(1.06) contrast(1.02) brightness(.86);
}
.hov {
  background:
    linear-gradient(150deg, rgba(0,84,90,.54) 0%, rgba(0,58,63,.45) 42%, rgba(0,28,32,.72) 100%),
    radial-gradient(circle at 34% 46%, rgba(216,180,106,.18) 0%, rgba(216,180,106,.06) 30%, transparent 62%),
    radial-gradient(circle at 72% 26%, rgba(138,110,159,.16) 0%, transparent 44%);
  z-index: 1;
}
.hero-glow {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(circle at 22% 74%, rgba(232,203,138,.22) 0%, rgba(216,180,106,.08) 24%, transparent 52%),
    radial-gradient(circle at 82% 72%, rgba(244,239,232,.08) 0%, transparent 38%);
  mix-blend-mode: screen;
  animation: candleBreath 7s ease-in-out infinite;
}
.hero-vignette {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(ellipse at center, transparent 34%, rgba(0,18,22,.32) 72%, rgba(0,18,22,.74) 100%),
    linear-gradient(to bottom, rgba(0,18,22,.34), transparent 24%, transparent 68%, rgba(0,18,22,.54));
}
.hmoon {
  z-index: 1;
  background:
    radial-gradient(ellipse at 70% 28%, rgba(216,180,106,.1) 0%, transparent 56%),
    radial-gradient(circle at 50% 13%, rgba(244,239,232,.05) 0 1px, transparent 2px);
  animation: moonHaze 18s ease-in-out infinite alternate;
}
.hc {
  z-index: 2;
  max-width: 840px;
}
.hc::before {
  content: '';
  display: block;
  width: 88px;
  height: 1px;
  margin: 0 auto 1.25rem;
  background: linear-gradient(to right, transparent, rgba(232,203,138,.8), transparent);
  box-shadow: 0 0 22px rgba(216,180,106,.34);
  opacity: .74;
}
.hey {
  text-shadow: 0 0 24px rgba(216,180,106,.2);
}
.hh1 {
  text-shadow: 0 3px 34px rgba(0,18,22,.62);
  animation-duration: 1.35s;
}
.hsub {
  color: rgba(244,239,232,.86);
  text-shadow: 0 2px 20px rgba(0,18,22,.54);
  animation-duration: 1.35s;
}
.hbot {
  z-index: 2;
  color: rgba(244,239,232,.86);
  filter: drop-shadow(0 0 18px rgba(216,180,106,.12));
}
.hbot-l { animation-duration: 24s; }
.hbot-r { animation-duration: 28s; }
.hbot-s { animation-duration: 22s; }

.btnp,
.btng,
.btnt,
.btnoc,
.ftr-lks a,
.hdr-nav a,
.mn a {
  transition-duration: .95s;
  transition-timing-function: var(--ex);
}
.btnp:hover,
.btng:hover,
.btnt:hover,
.btnoc:hover {
  box-shadow:
    0 18px 42px rgba(0,18,22,.18),
    0 0 34px rgba(216,180,106,.2);
}
.hdr-nav a::after,
.mn a::after {
  transition-duration: .9s;
}

.wv-card,
.ec,
.evc,
.rvc,
.si-item,
.xcard,
.ksc,
.place-card,
.comm-feat,
.faq-item,
.stat {
  transition-duration: 1.05s;
  transition-timing-function: var(--ex);
}
.wv-card:hover,
.ec:hover,
.evc:hover,
.rvc:hover,
.si-item:hover,
.xcard:hover,
.ksc:hover,
.place-card:hover,
.comm-feat:hover {
  box-shadow:
    0 22px 50px rgba(0,30,35,.14),
    0 0 32px rgba(216,180,106,.09);
}
.git img,
.ai img,
.ec-img img,
.ev-img img,
.hgem-img img,
.kprev-img img,
.fw-img img {
  transition-duration: 1.3s;
  transition-timing-function: var(--ex);
}
.git:hover img,
.ai:hover img {
  transform: scale(1.045);
}

.rv,
.rvl,
.rvr {
  transition-duration: 1.25s;
  transition-timing-function: cubic-bezier(.18,.82,.22,1);
}
.rv:not(.vis),
.rvl:not(.vis),
.rvr:not(.vis) {
  transform: translateY(20px);
}
.rvl:not(.vis) { transform: translateX(-18px); }
.rvr:not(.vis) { transform: translateX(18px); }

.wv,
.exsec,
.atm,
.comm,
.revsec,
.viexp,
.planning {
  position: relative;
}
.wv::before,
.exsec::before,
.atm::before,
.comm::before,
.revsec::before,
.viexp::before,
.planning::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  width: min(340px, 46vw);
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(to right, transparent, rgba(216,180,106,.34), transparent);
  box-shadow: 0 0 26px rgba(216,180,106,.14);
  pointer-events: none;
}
.wv::after,
.atm::after,
.revsec::after {
  content: '';
  position: absolute;
  top: 1.15rem;
  left: 50%;
  width: 18px;
  height: 18px;
  border: 1px solid rgba(216,180,106,.32);
  border-radius: 50%;
  transform: translateX(-50%);
  box-shadow: inset 5px 0 0 rgba(216,180,106,.14), 0 0 22px rgba(216,180,106,.08);
  pointer-events: none;
}

@keyframes candleBreath {
  0%, 100% { opacity: .55; transform: scale(1); }
  48% { opacity: .78; transform: scale(1.025); }
}
@keyframes moonHaze {
  0% { opacity: .58; transform: translate3d(0,0,0); }
  100% { opacity: .86; transform: translate3d(-1.2%, .8%, 0); }
}

@media (max-width: 820px) {
  .hero {
    min-height: 690px;
  }
  .hero-media {
    inset: -4%;
  }
  .hero-video {
    object-position: center center;
  }
  .hc {
    padding: 0 1.35rem;
  }
}
@media (max-width: 560px) {
  .hero {
    min-height: 100svh;
  }
  .hh1 {
    font-size: clamp(2.35rem, 13vw, 3.65rem);
  }
  .hsub {
    font-size: 1rem;
    margin-bottom: 2.35rem;
  }
  .btnp,
  .btng {
    width: min(100%, 290px);
    justify-content: center;
  }
  .wv::after,
  .atm::after,
  .revsec::after {
    display: none;
  }
}
@media (prefers-reduced-motion: reduce) {
  .hero-video {
    display: none;
  }
  .hero-media {
    transform: none !important;
    animation: none !important;
  }
  .hero-glow,
  .hmoon,
  .hbot,
  .scl {
    animation: none !important;
  }
}



/* ═══════════════════════════════════════════
   DIRECTORIAL REFINEMENTS
   Art direction: phase 3 polish pass
═══════════════════════════════════════════ */

/* PAGE TRANSITION — pages fade in rather than snapping */
@keyframes pageIn {
  from { opacity: 0; transform: translateY(7px); }
  to   { opacity: 1; transform: none; }
}
.page.active {
  animation: pageIn .55s cubic-bezier(0.16,1,0.3,1) forwards;
}

/* SCROLL INDICATOR — descending wax-drip instead of global pulse */
.scl {
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(216,180,106,.88) 45%,
    transparent 100%
  ) !important;
  background-size: 100% 220% !important;
  animation: spDrip 2.9s ease-in-out infinite !important;
}
@keyframes spDrip {
  0%   { background-position: 0 -120%; opacity: .28; }
  55%  { background-position: 0  120%; opacity: 1;   }
  100% { background-position: 0  340%; opacity: .28; }
}

/* HERO SCROLL — graceful fade when page scrolled */
.hscr {
  transition: opacity .65s cubic-bezier(0.16,1,0.3,1),
              transform .65s cubic-bezier(0.16,1,0.3,1) !important;
}
.hscr.gone {
  opacity: 0 !important;
  pointer-events: none !important;
  transform: translateX(-50%) translateY(8px) !important;
}

/* GOLD RULE — draws left to right on scroll reveal */
.gr {
  transform-origin: left;
}
.gr.rv {
  transform: scaleX(0) !important;  /* override translateY from .rv */
  opacity: .38 !important;           /* stay visible — only scale animates */
}
.gr.rv.vis {
  transform: scaleX(1) !important;
  opacity: .38 !important;
  transition: transform 1s cubic-bezier(0.16,1,0.3,1) !important;
}

/* REVEAL HIERARCHY — hero/pullquote headings: more travel, slower */
.rv.rv-hero {
  transform: translateY(42px) !important;
  transition-duration: 1.3s !important;
}
.rv.rv-hero.vis {
  transform: none !important;
}

/* REVEAL HIERARCHY — images: pure opacity, no positional shift */
.rv.rv-img {
  transform: none !important;
  transition-duration: 1.5s !important;
  transition-timing-function: cubic-bezier(0.4,0,0.2,1) !important;
}
.rv.rv-img.vis {
  transform: none !important;
  opacity: 1;
}

/* ATMOSPHERE GRID — hover image captions */
.ai {
  position: relative;
}
.ai-cap {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: .72rem 1rem;
  background: linear-gradient(to top, rgba(0,22,28,.75) 0%, transparent 100%);
  font-family: var(--H); font-size: .88rem; font-style: italic;
  color: rgba(244,239,232,.85); letter-spacing: .04em;
  opacity: 0; transform: translateY(5px);
  transition: opacity .42s var(--ex), transform .42s var(--ex);
  pointer-events: none;
}
.ai:hover .ai-cap {
  opacity: 1;
  transform: translateY(0);
}

/* FAQ — hint rotation on question hover, confirm on open */
.faq-q:hover .faq-icon {
  transform: rotate(15deg);
  color: var(--go);
}
.faq-item.open .faq-q .faq-icon {
  transform: rotate(45deg);
  color: var(--go);
}

/* FOOTER LINKS — gold underline draws on hover */
.ftr-lks a {
  position: relative;
}
.ftr-lks a::after {
  content: '';
  position: absolute; bottom: -2px; left: 0;
  width: 0; height: 1px;
  background: var(--go);
  transition: width .45s var(--ex);
}
.ftr-lks a:hover::after { width: 100%; }

/* LOGO — warm golden halo on hover */
.hdr-logo:hover {
  box-shadow:
    0 0 0 2px rgba(216,180,106,.32),
    0 0 22px rgba(216,180,106,.14);
  border-radius: 50%;
}

/* HGEM-PULL — ghost opening quotation mark, deepens on hover */
.hgem-pull::before {
  content: 'C';
  font-family: var(--H); font-size: 4.5rem; font-style: italic;
  color: var(--go); opacity: .1;
  display: block; line-height: .5; margin-bottom: -.55rem;
  transition: opacity 1s var(--ex);
  pointer-events: none;
}
.hgem-ct:hover .hgem-pull::before {
  opacity: .26;
}

/* WV-ICON — icon lifts gently on card hover */
.wv-icon {
  transition: opacity .4s var(--ex), transform .5s var(--ex);
}
.wv-card:hover .wv-icon {
  opacity: 1;
  transform: translateY(-4px);
}

/* FEATURED REVIEW — candle-glow breathing shadow */
@keyframes candleGlow {
  0%, 100% { box-shadow: 0 4px 32px rgba(216,180,106,.06); }
  38%       { box-shadow: 0 8px 56px rgba(216,180,106,.18), 0 0 52px rgba(216,180,106,.06); }
  72%       { box-shadow: 0 3px 24px rgba(216,180,106,.04); }
}
.rev-feat {
  animation: candleGlow 8s ease-in-out infinite;
}

/* SCENT CAPTION — beneath shopfront image */
.img-scent {
  font-family: var(--H); font-style: italic; font-size: .87rem;
  color: rgba(44,44,44,.42); letter-spacing: .03em;
  text-align: center; margin-top: .7rem; line-height: 1.6;
}

/* LIVE DOT — breathing pulse beside opening hours */
.live-dot {
  display: inline-block;
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--go);
  margin-left: .35rem; vertical-align: middle;
  animation: livePulse 2.8s ease-in-out infinite;
}
@keyframes livePulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(216,180,106,.6); }
  55%       { box-shadow: 0 0 0 5px rgba(216,180,106,0); }
}

/* SEASONAL HERO LINE — tiny italic text between subtitle and CTAs */
.h-season {
  font-family: var(--H); font-style: italic;
  font-size: .84rem; letter-spacing: .04em;
  color: rgba(244,239,232,.38);
  margin-top: -1.6rem; margin-bottom: 2rem;
  opacity: 0;
  animation: fsu 1.1s .88s cubic-bezier(0.16,1,0.3,1) forwards;
}

/* KERRY SIGNATURE LINE */
.kerry-sig {
  font-family: var(--H); font-style: italic; font-size: 1.35rem;
  color: rgba(44,44,44,.32); letter-spacing: .08em;
  margin-bottom: 1.6rem; margin-top: -.2rem;
}

/* VD-LAEBL alignment with live dot */
.vd-lbl {
  display: flex; align-items: center; gap: 0;
}

/* COMM-FEAT — slightly longer border transition (existing border-left kept) */
.comm-feat {
  transition: border-color .7s var(--ex), background .3s !important;
}
.comm-feat:hover {
  border-left-color: rgba(216,180,106,.85) !important;
}

/* SUBPAGE HERO — will-change for parallax JS */
.pbg {
  will-change: transform;
}

/* RESPONSIVE — hide seasonal line on small screens if too tight */
@media (max-width: 480px) {
  .h-season { display: none; }
  .kerry-sig { font-size: 1.1rem; }
}

/* ── CONTENT UX UPDATES: REBEL SHOP, LEGEND, WHATSAPP, FORM ── */
.hwa {
  background: rgba(216,180,106,.1) !important;
  color: var(--gl) !important;
}
.hwa:hover {
  background: var(--go) !important;
  color: var(--td) !important;
}
.btnwa {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  width: fit-content;
  padding: .82rem 1.65rem;
  border: 1.5px solid rgba(0,84,90,.24);
  background: rgba(0,84,90,.06);
  color: var(--teal);
  font-family: var(--B);
  font-size: .73rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  transition: background 1s var(--ex), border-color 1s var(--ex), color 1s var(--ex), transform 1s var(--ex), box-shadow 1s var(--ex);
}
.btnwa:hover {
  background: var(--teal);
  border-color: var(--teal);
  color: var(--cr);
  transform: translateY(-2px);
  box-shadow: 0 18px 38px rgba(0,84,90,.18), 0 0 26px rgba(216,180,106,.14);
}
.btnwa-light {
  border-color: rgba(216,180,106,.34);
  background: rgba(216,180,106,.08);
  color: var(--gl);
}
.btnwa-light:hover {
  background: var(--go);
  color: var(--td);
}
.cta-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 1rem;
}
.hours-note {
  font-size: .78rem;
  color: rgba(44,44,44,.45);
  margin-top: .8rem;
  font-style: italic;
  line-height: 1.6;
}
.vp .hours-note,
.seas-sec .hours-note {
  color: rgba(244,239,232,.54);
}

.legend {
  position: relative;
  overflow: hidden;
  background: var(--td);
  padding: 6rem 5vw !important;
}
.legend-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 22% 24%, rgba(216,180,106,.16), transparent 32%),
    radial-gradient(circle at 84% 70%, rgba(138,110,159,.12), transparent 38%),
    linear-gradient(140deg, rgba(0,58,63,.94), rgba(0,30,35,.98));
  pointer-events: none;
}
.legend-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(244,239,232,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(244,239,232,.025) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: radial-gradient(circle at center, #000, transparent 72%);
}
.legend-in {
  position: relative;
  z-index: 1;
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0,1.15fr) minmax(280px,.85fr);
  gap: 4rem;
  align-items: center;
}
.legend-body {
  color: rgba(244,239,232,.72);
  line-height: 1.9;
  margin-bottom: 1.15rem;
}
.legend-note {
  margin: 1.4rem 0 2rem;
  padding-left: 1rem;
  border-left: 1px solid rgba(216,180,106,.42);
  color: rgba(244,239,232,.52);
  font-family: var(--H);
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.7;
}
.legend-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.legend-card {
  position: relative;
  min-height: 440px;
  overflow: hidden;
  border: 1px solid rgba(216,180,106,.18);
  box-shadow: 0 28px 70px rgba(0,18,22,.3);
}
.legend-card img {
  width: 100%;
  height: 100%;
  min-height: 440px;
  object-fit: cover;
  filter: saturate(.95) contrast(1.04) brightness(.72);
  transition: transform 9s var(--sk);
}
.legend-card:hover img {
  transform: scale(1.045);
}
.legend-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,18,22,.88), transparent 58%);
}
.legend-card-text {
  position: absolute;
  z-index: 1;
  left: 1.6rem;
  right: 1.6rem;
  bottom: 1.6rem;
}
.legend-card-text span {
  display: inline-block;
  color: var(--go);
  font-family: var(--H);
  font-size: 2.5rem;
  font-style: italic;
  margin-bottom: .4rem;
}
.legend-card-text p {
  color: rgba(244,239,232,.72);
  line-height: 1.7;
}

.enquiry {
  background: var(--td);
  padding: 5.5rem 5vw !important;
  position: relative;
  overflow: hidden;
}
.enquiry::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 18% 25%, rgba(216,180,106,.12), transparent 34%),
              radial-gradient(circle at 86% 74%, rgba(244,239,232,.06), transparent 30%);
  pointer-events: none;
}
.enquiry-in {
  position: relative;
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 4rem;
  align-items: start;
}
.enquiry-body {
  color: rgba(244,239,232,.66);
  line-height: 1.88;
  margin-bottom: 2rem;
}
.enquiry-form {
  background: rgba(244,239,232,.96);
  border: 1px solid rgba(216,180,106,.28);
  padding: 2rem;
  box-shadow: 0 24px 70px rgba(0,18,22,.24);
}
.enquiry-form label {
  display: flex;
  flex-direction: column;
  gap: .45rem;
  color: var(--teal);
  font-size: .67rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.enquiry-form input,
.enquiry-form select,
.enquiry-form textarea {
  width: 100%;
  border: 1px solid rgba(0,84,90,.16);
  background: rgba(255,255,255,.72);
  color: var(--ch);
  font: 400 .94rem/1.5 var(--B);
  padding: .9rem .95rem;
  border-radius: 0;
  outline: none;
  transition: border-color .8s var(--ex), box-shadow .8s var(--ex), background .8s var(--ex);
}
.enquiry-form textarea {
  resize: vertical;
  min-height: 150px;
}
.enquiry-form input:focus,
.enquiry-form select:focus,
.enquiry-form textarea:focus {
  border-color: rgba(216,180,106,.9);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(216,180,106,.14);
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.hp-field {
  display: none;
}

@media (max-width: 1024px) {
  .hwa {
    display: none !important;
  }
}
@media (max-width: 820px) {
  .legend-in,
  .enquiry-in {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .legend-card,
  .legend-card img {
    min-height: 320px;
  }
}
@media (max-width: 560px) {
  .cta-row,
  .legend-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .cta-row .btnt,
  .cta-row .btnwa,
  .legend-actions .btnp,
  .legend-actions .btnoc,
  .enquiry .btnwa,
  .enquiry-form .btnp {
    width: 100%;
    justify-content: center;
  }
  .form-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .enquiry-form {
    padding: 1.35rem;
  }
}

/* ── FINAL MEDIA UPGRADE ── */
.comm,
.shdisc,
.wild-shelves {
  isolation: isolate;
}
.section-video,
.section-video-veil {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.section-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .18;
  filter: saturate(.8) contrast(1.05) brightness(.72);
  z-index: 0;
}
.section-video-veil {
  background: linear-gradient(135deg, rgba(0,58,63,.92), rgba(0,30,35,.84));
  z-index: 0;
}
.comm > .comm-in,
.shdisc > .shd-in {
  position: relative;
  z-index: 1;
}
.comm::after,
.shdisc::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 78% 18%, rgba(216,180,106,.08), transparent 34%);
  z-index: 0;
}
.shdisc {
  position: relative;
  overflow: hidden;
}
.shdisc .section-video-veil {
  background: linear-gradient(160deg, rgba(0,58,63,.88), rgba(0,18,22,.94));
}
.shdisc .shd-body,
.shdisc .sh,
.shdisc .ey {
  color: var(--cr);
}
.shdisc .shd-body {
  color: rgba(244,239,232,.72);
}

.wild-shelves {
  position: relative;
  overflow: hidden;
  background: var(--td);
  padding: 6.5rem 5vw !important;
}
.wild-video {
  opacity: .2;
  filter: saturate(.75) contrast(1.05) brightness(.58);
}
.wild-veil {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 22%, rgba(216,180,106,.16), transparent 32%),
    radial-gradient(circle at 82% 68%, rgba(138,110,159,.14), transparent 38%),
    linear-gradient(130deg, rgba(0,30,35,.96), rgba(0,18,22,.9));
  pointer-events: none;
}
.wild-in {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 4.5rem;
  align-items: center;
}
.wild-body {
  color: rgba(244,239,232,.72);
  line-height: 1.9;
  margin-bottom: 1.15rem;
}
.wild-copy .btnp {
  margin-top: 1rem;
}
.wild-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 1rem;
}
.wild-card {
  position: relative;
  min-height: 230px;
  overflow: hidden;
  border: 1px solid rgba(216,180,106,.18);
  box-shadow: 0 20px 54px rgba(0,18,22,.18);
}
.wild-card-lg {
  grid-row: span 2;
}
.wild-card img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  filter: saturate(.9) contrast(1.04) brightness(.74);
  transition: transform 1.35s var(--ex), filter 1.35s var(--ex);
}
.wild-card:hover img {
  transform: scale(1.055);
  filter: saturate(1) contrast(1.06) brightness(.82);
}
.wild-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,18,22,.78), transparent 55%);
}
.wild-card span {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  z-index: 1;
  color: var(--go);
  font-size: .66rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
}

@media (max-width: 820px) {
  .wild-in {
    grid-template-columns: 1fr;
    gap: 2.8rem;
  }
}
@media (max-width: 560px) {
  .wild-grid {
    grid-template-columns: 1fr;
  }
  .wild-card,
  .wild-card img {
    min-height: 260px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .section-video {
    display: none;
  }
}

/* ── COMMUNITY SECTION READABILITY PASS ── */
.comm {
  background: var(--td);
}
.comm .section-video {
  opacity: .1;
  filter: saturate(.65) contrast(1.08) brightness(.46);
}
.comm .section-video-veil {
  background:
    linear-gradient(90deg, rgba(0,30,35,.92) 0%, rgba(0,58,63,.88) 46%, rgba(0,30,35,.97) 100%),
    radial-gradient(circle at 68% 28%, rgba(216,180,106,.08), transparent 34%);
}

.comm .rvr {
  padding: clamp(1.6rem, 3vw, 2.4rem);
  border: 1px solid rgba(216,180,106,.18);
  background: linear-gradient(135deg, rgba(0,30,35,.62), rgba(0,58,63,.34));
  box-shadow: 0 28px 80px rgba(0,18,22,.24);
  backdrop-filter: blur(2px);
}
.comm .sb {
  color: rgba(244,239,232,.92) !important;
}
@media (max-width: 760px) {
  .comm .rvr {
    padding: 1.35rem;
  }
}
.comm .ey {
  color: var(--go);
  text-shadow: 0 2px 18px rgba(0,18,22,.58);
}
.comm .sh {
  color: var(--cr);
  text-shadow: 0 4px 32px rgba(0,18,22,.8);
}
.comm .gr {
  background: var(--go);
  opacity: .7;
}
.comm .sb {
  color: rgba(244,239,232,.92) !important;
  text-shadow: 0 2px 20px rgba(0,18,22,.7);
}
.comm-feat {
  background: rgba(244,239,232,.94);
  border-left-color: rgba(216,180,106,.58);
  box-shadow: 0 18px 46px rgba(0,18,22,.18);
}
.comm-ft {
  color: var(--teal);
}
.comm-fd {
  color: rgba(44,44,44,.78);
}

