/* ==========================================================================
   Alex Dental Clinic
   Dark cinematic hero → warm editorial body
   ========================================================================== */

:root {
  --night: #0a1a18;
  --night-2: #0f2422;
  --night-3: #14312d;

  --teal: #14807a;
  --teal-d: #0f6e68;
  --teal-l: #5cb8b0;
  --teal-wash: #eaf4f1;

  --gold: #d2a44f;
  --gold-l: #e6c67f;
  --sand: #c08552;

  --cream: #f7f3ec;
  --cream-2: #efe8dd;
  --paper: #fffdfa;

  --ink: #12201d;
  --ink-2: #3a4a45;
  --dim: #6f7f79;
  --dim-2: #9aa8a2;
  --line: #e2dace;
  --line-2: #ece5d9;

  --serif: 'Fraunces', Georgia, serif;
  --sans: 'Outfit', system-ui, -apple-system, sans-serif;

  --e: cubic-bezier(.4, 0, .2, 1);
  --eo: cubic-bezier(.22, 1, .36, 1);
  --sp: cubic-bezier(.34, 1.4, .64, 1);

  --wr: 1180px;
  --hd: 76px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--hd);
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--sans);
  font-size: 16.5px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--ink-2);
  background: var(--cream);
  overflow-x: hidden;      /* fallback */
  overflow-x: clip;        /* keeps position:sticky working */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, svg, iframe { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; }

:focus-visible { outline: 2.5px solid var(--teal); outline-offset: 3px; border-radius: 3px; }
::selection { background: var(--gold); color: var(--night); }

.wr { width: min(100% - 2.5rem, var(--wr)); margin-inline: auto; }

.skip {
  position: absolute; left: -9999px; top: 0; z-index: 999;
  background: var(--night); color: #fff; padding: .8rem 1.2rem; font-size: .9rem;
}
.skip:focus { left: 0; }

.prog {
  position: fixed; top: 0; left: 0; z-index: 300;
  height: 2px; width: 0;
  background: linear-gradient(90deg, var(--teal-l), var(--gold));
  transition: width .1s linear;
}

/* ---------- type ---------- */
h1, h2, h3, h4 { font-family: var(--serif); color: var(--ink); font-weight: 400; line-height: 1.1; letter-spacing: -.02em; }
h3, h4 { font-family: var(--sans); font-weight: 500; letter-spacing: -.005em; line-height: 1.3; }

em { font-style: italic; }

p { color: var(--dim); }

.eb {
  display: inline-block;
  font-family: var(--sans);
  font-size: .7rem; font-weight: 500;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--sand);
  margin-bottom: 1.1rem;
}
.eb--gold { color: var(--gold); }

.lead { max-width: 46rem; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.lead__h { font-size: clamp(2rem, 4.4vw, 3.4rem); }
.lead__h em { color: var(--teal-d); font-weight: 300; }
.lead__p { margin-top: 1.1rem; font-size: 1.03rem; max-width: 34rem; }

.lead--mid { max-width: 42rem; margin-inline: auto; text-align: center; }
.lead--mid .lead__p { margin-inline: auto; }

.lead--split {
  display: flex; align-items: flex-end; justify-content: space-between; gap: 2rem;
  max-width: none; flex-wrap: wrap;
}
.lead--split .lead__p { margin: 0; padding-bottom: .4rem; }

.sec { padding: clamp(4rem, 8.5vw, 7.5rem) 0; }

/* ---------- buttons ---------- */
.bt {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  padding: .92rem 1.7rem;
  font-family: var(--sans); font-size: .93rem; font-weight: 400;
  border: 1px solid transparent; border-radius: 999px;
  cursor: pointer; white-space: nowrap;
  transition: transform .4s var(--sp), background-color .3s var(--e), color .3s var(--e), border-color .3s var(--e), box-shadow .3s var(--e);
}
.bt svg { flex: none; }

.bt--gold { background: var(--gold); color: var(--night); box-shadow: 0 10px 26px rgba(210, 164, 79, .3); }
.bt--gold:hover { background: #dcb262; transform: translateY(-2px); box-shadow: 0 16px 34px rgba(210, 164, 79, .38); }

.bt--glass { background: rgba(255, 255, 255, .1); color: #fff; border-color: rgba(255, 255, 255, .3); backdrop-filter: blur(8px); }
.bt--glass:hover { background: rgba(255, 255, 255, .18); border-color: rgba(255, 255, 255, .55); transform: translateY(-2px); }

.bt--ink { background: var(--night); color: var(--cream); }
.bt--ink:hover { background: var(--night-3); transform: translateY(-2px); box-shadow: 0 12px 26px rgba(10, 26, 24, .22); }

/* ==========================================================================
   header — transparent over hero, solid after
   ========================================================================== */
.hd {
  position: fixed; inset: 0 0 auto 0; z-index: 200;
  transition: background-color .45s var(--e), box-shadow .45s var(--e), border-color .45s var(--e);
  border-bottom: 1px solid transparent;
}
.hd__in {
  width: min(100% - 2.5rem, var(--wr));
  margin-inline: auto;
  min-height: var(--hd);
  display: flex; align-items: center; gap: 2rem;
}

.wm { display: inline-flex; align-items: center; gap: .6rem; color: #fff; transition: color .45s var(--e); }
.wm__ico { color: var(--gold); flex: none; }
.wm__tx { font-family: var(--serif); font-size: 1.18rem; font-weight: 400; letter-spacing: -.02em; }
.wm__tx em { font-style: italic; opacity: .82; }

.mn { display: flex; align-items: center; gap: 1.9rem; margin-left: auto; }
.mn a {
  position: relative;
  font-size: .89rem; font-weight: 300; letter-spacing: .01em;
  color: rgba(255, 255, 255, .8);
  padding-block: .35rem;
  transition: color .3s var(--e);
}
.mn a::after {
  content: ''; position: absolute; left: 0; bottom: 0;
  width: 0; height: 1px; background: var(--gold);
  transition: width .35s var(--eo);
}
.mn a:hover, .mn a.on { color: #fff; }
.mn a:hover::after, .mn a.on::after { width: 100%; }

.hd__call {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .58rem 1.2rem;
  font-size: .86rem;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 999px;
  transition: all .35s var(--e);
}
.hd__call:hover { background: var(--gold); border-color: var(--gold); color: var(--night); }

.bg {
  display: none; width: 42px; height: 42px; margin-left: auto;
  background: none; border: 1px solid rgba(255, 255, 255, .28); border-radius: 11px;
  cursor: pointer; place-items: center; gap: 4.5px;
}
.bg span { display: block; width: 17px; height: 1.4px; background: #fff; border-radius: 2px; transition: transform .35s var(--eo), opacity .25s var(--e); }
.bg[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.bg[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.bg[aria-expanded="true"] span:nth-child(3) { transform: translateY(-5.8px) rotate(-45deg); }

/* solid state */
.hd.solid {
  background: rgba(247, 243, 236, .92);
  backdrop-filter: blur(18px) saturate(180%);
  -webkit-backdrop-filter: blur(18px) saturate(180%);
  border-bottom-color: var(--line);
  box-shadow: 0 4px 26px rgba(18, 32, 29, .05);
}
.hd.solid .wm { color: var(--ink); }
.hd.solid .wm__ico { color: var(--teal-d); }
.hd.solid .mn a { color: var(--ink-2); }
.hd.solid .mn a:hover, .hd.solid .mn a.on { color: var(--teal-d); }
.hd.solid .mn a::after { background: var(--teal-d); }
.hd.solid .hd__call { color: var(--ink); border-color: var(--line); }
.hd.solid .hd__call:hover { background: var(--night); border-color: var(--night); color: var(--cream); }
.hd.solid .bg { border-color: var(--line); }
.hd.solid .bg span { background: var(--ink); }

/* ==========================================================================
   cinematic hero
   ========================================================================== */
.cine {
  position: relative;
  min-height: min(100svh, 900px);
  display: flex; align-items: flex-end;
  padding: calc(var(--hd) + 3rem) 0 clamp(3rem, 6vw, 5rem);
  background: var(--night);
  overflow: hidden;
  isolation: isolate;
}
.cine__bg { position: absolute; inset: 0; z-index: -2; }
.cine__bg img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 30%;
  transform: scale(1.06);
  animation: slowzoom 22s var(--e) forwards;
}
@keyframes slowzoom { to { transform: scale(1); } }

.cine__veil {
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(180deg, rgba(10, 26, 24, .82) 0%, rgba(10, 26, 24, .55) 32%, rgba(10, 26, 24, .88) 78%, var(--night) 100%),
    radial-gradient(70% 60% at 78% 22%, rgba(92, 184, 176, .16), transparent 70%);
}

.cine__in { width: min(100% - 2.5rem, var(--wr)); margin-inline: auto; position: relative; }

.kick {
  display: inline-block;
  font-size: .72rem; font-weight: 400;
  letter-spacing: .26em; text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.6rem;
  opacity: 0; animation: rise .9s var(--eo) .15s forwards;
}

.cine__h {
  font-size: clamp(2.7rem, 8.2vw, 6.4rem);
  font-weight: 300;
  line-height: 1.02;
  letter-spacing: -.035em;
  color: #fff;
  max-width: 20ch;
  margin-bottom: 1.9rem;
}
.cine__h em { font-style: italic; color: var(--gold); font-weight: 300; }
.ln { display: block; overflow: hidden; }
.ln > span { display: block; transform: translateY(105%); animation: lineup 1.05s var(--eo) forwards; }
.ln:nth-child(1) > span { animation-delay: .2s; }
.ln:nth-child(2) > span { animation-delay: .33s; }
.ln:nth-child(3) > span { animation-delay: .46s; }
@keyframes lineup { to { transform: translateY(0); } }
@keyframes rise { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }

.cine__p {
  max-width: 34rem;
  font-size: clamp(1rem, 1.35vw, 1.12rem);
  line-height: 1.72;
  color: rgba(255, 255, 255, .74);
  opacity: 0; animation: rise .9s var(--eo) .72s forwards;
}

.cine__act {
  display: flex; flex-wrap: wrap; gap: .8rem;
  margin: 2.3rem 0 2.8rem;
  opacity: 0; animation: rise .9s var(--eo) .84s forwards;
}

.cine__meta {
  list-style: none;
  display: flex; flex-wrap: wrap; gap: clamp(1.5rem, 4vw, 3.5rem);
  padding-top: 1.9rem;
  border-top: 1px solid rgba(255, 255, 255, .14);
  opacity: 0; animation: rise .9s var(--eo) .96s forwards;
}
.cine__meta li { display: flex; flex-direction: column; }
.cine__meta b {
  font-family: var(--serif); font-size: clamp(1.5rem, 2.3vw, 1.95rem);
  font-weight: 400; color: #fff; line-height: 1; letter-spacing: -.02em;
}
.cine__meta i { font-style: normal; color: var(--gold); font-size: .68em; margin-left: 2px; }
.cine__meta span { font-size: .8rem; color: rgba(255, 255, 255, .5); margin-top: .45rem; letter-spacing: .04em; }

.cue {
  position: absolute; left: 50%; bottom: 1.4rem;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: .55rem;
  color: rgba(255, 255, 255, .45);
  font-size: .68rem; letter-spacing: .2em; text-transform: uppercase;
  transition: color .3s var(--e);
}
.cue:hover { color: #fff; }
.cue__ln { width: 1px; height: 46px; background: linear-gradient(180deg, transparent, rgba(255, 255, 255, .5)); position: relative; overflow: hidden; }
.cue__ln::after {
  content: ''; position: absolute; inset: 0 auto auto 0;
  width: 1px; height: 40%; background: var(--gold);
  animation: slide 2.1s var(--e) infinite;
}
@keyframes slide { 0% { transform: translateY(-100%); } 100% { transform: translateY(340%); } }

/* ==========================================================================
   marquee
   ========================================================================== */
.marq {
  background: var(--night);
  border-top: 1px solid rgba(255, 255, 255, .07);
  padding: 1.1rem 0;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marq__track { display: flex; width: max-content; animation: scrollx 38s linear infinite; }
.marq:hover .marq__track { animation-play-state: paused; }
.marq__set { display: flex; align-items: center; gap: 2.2rem; padding-right: 2.2rem; }
.marq__set span {
  font-size: .87rem; font-weight: 300; letter-spacing: .02em;
  color: rgba(255, 255, 255, .62); white-space: nowrap;
}
.marq__set i { color: var(--gold); font-size: .62rem; font-style: normal; }
@keyframes scrollx { to { transform: translateX(-50%); } }

/* ==========================================================================
   clinic — bento
   ========================================================================== */
.bento {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: minmax(0, auto);
  gap: 1rem;
}
.bt-cell {
  border-radius: 22px;
  padding: 1.9rem;
  border: 1px solid var(--line-2);
  background: var(--paper);
  transition: transform .5s var(--eo), box-shadow .5s var(--e);
}
.bt-cell:hover { transform: translateY(-4px); box-shadow: 0 18px 44px rgba(18, 32, 29, .09); }

.bt-cell--img {
  grid-column: span 2; grid-row: span 2;
  padding: 0; overflow: hidden; border: 0;
}
.bt-cell--img picture { display: block; width: 100%; height: 100%; }
.bt-cell--img img {
  width: 100%; height: 100%;
  min-height: 300px;
  object-fit: cover;
  object-position: center;   /* nudge this if the crop cuts something important */
  transition: transform 1.1s var(--eo);
}
.bt-cell--img:hover img { transform: scale(1.05); }

.bt-cell--num {
  grid-column: span 1;
  background: var(--night); border-color: transparent; color: var(--cream);
  display: flex; flex-direction: column; justify-content: center;
}
.bt-cell--num b {
  font-family: var(--serif); font-size: clamp(3rem, 5vw, 4.2rem);
  font-weight: 300; line-height: .9; color: var(--gold); letter-spacing: -.04em;
}
.bt-cell--num span { font-size: .84rem; color: rgba(255, 255, 255, .6); margin-top: .8rem; line-height: 1.5; }

.bt-cell--say {
  grid-column: span 1;
  background: var(--teal-wash); border-color: transparent;
  display: flex; flex-direction: column; justify-content: center;
}
.bt-cell--say p {
  font-family: var(--serif); font-size: 1.12rem; font-weight: 400;
  line-height: 1.42; color: var(--ink); letter-spacing: -.01em;
}
.bt-cell--say p em { color: var(--teal-d); }
.bt-cell--say cite {
  font-style: normal; font-size: .76rem; color: var(--dim);
  margin-top: .9rem; letter-spacing: .05em;
}

.bt-cell--list { grid-column: span 2; }
.bt-cell--list h3 { font-size: .95rem; margin-bottom: 1.1rem; }

.bt-cell--cta {
  grid-column: span 2;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem; flex-wrap: wrap;
  background: var(--cream-2); border-color: transparent;
}
.bt-cell--cta p { font-family: var(--serif); font-size: 1.22rem; color: var(--ink); }

.tk { list-style: none; display: grid; gap: .6rem; }
.tk li { position: relative; padding-left: 1.85rem; font-size: .92rem; color: var(--ink-2); }
.tk li::before {
  content: ''; position: absolute; left: 0; top: .34em;
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--teal-wash) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230f6e68' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E") center / 10px no-repeat;
}

/* ==========================================================================
   care — expanding editorial rows
   ========================================================================== */
.care { background: var(--cream-2); border-block: 1px solid var(--line); }

/* --- procedure video tiles --- */
.pvs {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(255px, 1fr));
  gap: 1.15rem;
}

.pv {
  display: flex; flex-direction: column;
  background: var(--paper);
  border: 1px solid var(--line-2);
  border-radius: 20px;
  overflow: hidden;
  transition: transform .5s var(--eo), box-shadow .5s var(--e), border-color .4s var(--e);
}
.pv:hover { transform: translateY(-5px); box-shadow: 0 18px 44px rgba(18, 32, 29, .1); border-color: transparent; }

/* media button */
.pv__media {
  position: relative;
  display: block; width: 100%;
  aspect-ratio: 16 / 10;
  padding: 0; margin: 0;
  border: 0; background: var(--night-2);
  cursor: pointer;
  overflow: hidden;
}
.pv__v {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 1s var(--eo);
}
.pv:hover .pv__v { transform: scale(1.04); }

/* a whisper of a vignette for depth against the card, nothing more */
.pv__scrim {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(10, 26, 24, .16) 100%);
  transition: opacity .5s var(--e);
  pointer-events: none;
}
.pv:hover .pv__scrim { opacity: 0; }

/* body */
.pv__b { padding: 1.25rem 1.3rem 1.4rem; display: flex; flex-direction: column; flex: 1; }
.pv__n {
  font-family: var(--serif); font-size: .78rem; font-weight: 400;
  color: var(--sand); letter-spacing: .1em;
  margin-bottom: .5rem;
}
.pv__b h3 {
  font-family: var(--serif); font-size: 1.16rem; font-weight: 400;
  letter-spacing: -.015em; margin-bottom: .4rem;
}
.pv__b p { font-size: .875rem; line-height: 1.6; margin: 0; }

.pv.no-clip .pv__media { cursor: default; }

/* ==========================================================================
   visit — timeline with filling spine
   ========================================================================== */
.tl { position: relative; padding-left: 0; }

.tl__spine {
  position: absolute;
  left: 50%; top: .5rem; bottom: .5rem;
  width: 1.5px;
  background: var(--line);
  transform: translateX(-50%);
}
.tl__fill {
  position: absolute; inset: 0 0 auto 0;
  width: 100%; height: 0;
  background: linear-gradient(180deg, var(--teal), var(--gold));
  transition: height .15s linear;
}

.tl__list { list-style: none; display: grid; gap: clamp(1.5rem, 3vw, 2.5rem); }

.tlx { position: relative; display: grid; grid-template-columns: 1fr 1fr; align-items: center; }
.tlx:nth-child(odd) .tlx__card { grid-column: 1; margin-right: 3.2rem; text-align: right; }
.tlx:nth-child(even) .tlx__card { grid-column: 2; margin-left: 3.2rem; }

.tlx__dot {
  position: absolute; left: 50%; top: 50%;
  width: 13px; height: 13px; border-radius: 50%;
  background: var(--cream); border: 1.5px solid var(--line);
  transform: translate(-50%, -50%);
  z-index: 2;
  transition: background-color .4s var(--e), border-color .4s var(--e), box-shadow .4s var(--e);
}
.tlx.on .tlx__dot { background: var(--gold); border-color: var(--gold); box-shadow: 0 0 0 6px rgba(210, 164, 79, .16); }

.tlx__card {
  padding: 1.7rem 1.6rem;
  background: var(--paper);
  border: 1px solid var(--line-2);
  border-radius: 20px;
  transition: transform .5s var(--eo), box-shadow .5s var(--e);
}
.tlx__card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(18, 32, 29, .08); }
.tlx__n {
  display: block; font-size: .7rem; font-weight: 500;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--sand); margin-bottom: .6rem;
}
.tlx__card h3 { font-family: var(--serif); font-size: 1.28rem; font-weight: 400; margin-bottom: .45rem; }
.tlx__card p { font-size: .91rem; line-height: 1.65; }

/* ==========================================================================
   doctor — dark editorial
   ========================================================================== */
.dr {
  background: var(--night);
  padding: clamp(4rem, 8.5vw, 7.5rem) 0;
  position: relative;
  overflow: hidden;
}
.dr::before {
  content: ''; position: absolute;
  width: 40rem; height: 40rem; top: -20rem; left: -12rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(92, 184, 176, .14), transparent 65%);
  pointer-events: none;
}
.dr__in {
  position: relative;
  display: grid; grid-template-columns: .8fr 1.2fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
}

.dr__l { display: flex; flex-direction: column; align-items: center; gap: 1.4rem; }
.dr__ph {
  width: clamp(170px, 22vw, 250px); aspect-ratio: 1;
  border-radius: 50%; overflow: hidden;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, .12), 0 0 0 12px rgba(255, 255, 255, .04), 0 24px 60px rgba(0, 0, 0, .4);
  transition: transform .6s var(--eo);
}
.dr__ph:hover { transform: translateY(-5px) scale(1.02); }
.dr__ph img { width: 100%; height: 100%; object-fit: cover; }
.dr__sig { text-align: center; display: flex; flex-direction: column; gap: .25rem; }
.dr__sig strong { font-family: var(--serif); font-size: 1.1rem; font-weight: 400; color: #fff; letter-spacing: -.01em; }
.dr__sig span { font-size: .76rem; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); }

.dr__q {
  font-family: var(--serif);
  font-size: clamp(1.45rem, 3.1vw, 2.35rem);
  font-weight: 300; font-style: italic;
  line-height: 1.28; letter-spacing: -.02em;
  color: #fff;
  margin-bottom: 1.6rem;
}
.dr__p { color: rgba(255, 255, 255, .66); font-size: 1rem; max-width: 36rem; }

.dr__cr {
  list-style: none;
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem; margin-top: 2.2rem;
  padding-top: 1.9rem; border-top: 1px solid rgba(255, 255, 255, .12);
}
.dr__cr li { display: flex; flex-direction: column; }
.dr__cr b { font-family: var(--serif); font-size: 1.5rem; font-weight: 400; color: var(--gold); line-height: 1; }
.dr__cr span { font-size: .78rem; color: rgba(255, 255, 255, .5); margin-top: .45rem; }

/* ==========================================================================
   voices — drag carousel
   ========================================================================== */
.voices { padding-bottom: clamp(4rem, 8.5vw, 7.5rem); }

.vc__nav { display: flex; gap: .5rem; }
.vc__b {
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--paper); border: 1px solid var(--line);
  cursor: pointer; font-size: 1rem; color: var(--ink);
  transition: all .35s var(--e);
}
.vc__b:hover { background: var(--night); border-color: var(--night); color: var(--cream); transform: translateY(-2px); }
.vc__b:disabled { opacity: .35; cursor: not-allowed; transform: none; background: var(--paper); color: var(--ink); border-color: var(--line); }

.vc {
  display: flex; gap: 1.2rem;
  overflow-x: auto;
  /* no scroll-snap and no CSS smooth scrolling here on purpose: both fight the
     per-frame drift in script.js. Arrow presses pass behavior:'smooth' instead. */
  padding: .5rem max(1.25rem, calc((100vw - var(--wr)) / 2)) 1.5rem;
  scrollbar-width: none;
  cursor: grab;
}
.vc::-webkit-scrollbar { display: none; }
.vc.drag { cursor: grabbing; }

.vx {
  flex: 0 0 min(88vw, 27rem);
  display: flex; flex-direction: column;
  padding: 2.1rem 1.9rem 1.7rem;
  background: var(--paper);
  border: 1px solid var(--line-2);
  border-radius: 22px;
  transition: transform .5s var(--eo), box-shadow .5s var(--e);
}
.vx:hover { transform: translateY(-5px); box-shadow: 0 18px 44px rgba(18, 32, 29, .09); }
.vx__st { color: var(--gold); letter-spacing: 3px; font-size: .92rem; margin-bottom: 1rem; }
.vx blockquote {
  font-family: var(--serif); font-size: 1.09rem; font-weight: 400;
  line-height: 1.55; letter-spacing: -.01em; color: var(--ink);
  margin-bottom: 1.6rem; flex: 1;
}
.vx figcaption { display: flex; align-items: center; gap: .75rem; padding-top: 1.1rem; border-top: 1px solid var(--line-2); }
.vx figcaption > span:last-child { display: flex; flex-direction: column; line-height: 1.3; }
.vx figcaption b { font-size: .89rem; color: var(--ink); font-weight: 500; }
.vx figcaption small { font-size: .77rem; color: var(--dim-2); }
.vx__av {
  display: grid; place-items: center; flex: none;
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--night); color: var(--gold);
  font-family: var(--serif); font-size: 1.02rem;
}

/* ==========================================================================
   asked
   ========================================================================== */
.asked { background: var(--cream-2); border-block: 1px solid var(--line); }
.asked__in { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(2.5rem, 5vw, 4.5rem); align-items: start; }
.asked__l { position: sticky; top: calc(var(--hd) + 2rem); }
.asked__l .lead__p { margin-bottom: 1.7rem; }

.qs { display: grid; gap: .6rem; }
.q {
  background: var(--paper);
  border: 1px solid var(--line-2);
  border-radius: 16px;
  overflow: hidden;
  transition: border-color .35s var(--e), box-shadow .35s var(--e);
}
.q[open] { border-color: var(--teal-l); box-shadow: 0 10px 30px rgba(18, 32, 29, .06); }

.q summary {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.15rem 1.35rem;
  font-size: .99rem; font-weight: 400; color: var(--ink);
  cursor: pointer; list-style: none;
  transition: color .3s var(--e);
}
.q summary::-webkit-details-marker { display: none; }
.q summary:hover { color: var(--teal-d); }

.q__i { position: relative; flex: none; width: 20px; height: 20px; }
.q__i::before, .q__i::after {
  content: ''; position: absolute; top: 50%; left: 50%;
  background: var(--teal-d); border-radius: 2px;
  transform: translate(-50%, -50%);
  transition: opacity .3s var(--e), transform .4s var(--eo);
}
.q__i::before { width: 12px; height: 1.6px; }
.q__i::after { width: 1.6px; height: 12px; }
.q[open] .q__i::after { opacity: 0; transform: translate(-50%, -50%) rotate(90deg); }

.q__a { padding: 0 1.35rem 1.3rem; }
.q__a p { font-size: .93rem; line-height: 1.7; }
.q[open] .q__a { animation: fadein .42s var(--eo); }
@keyframes fadein { from { opacity: 0; transform: translateY(-7px); } to { opacity: 1; transform: none; } }

/* ==========================================================================
   find us — full-bleed split
   ========================================================================== */
.find { display: grid; grid-template-columns: 1fr 1fr; align-items: stretch; }
.find__l { background: var(--cream); display: flex; align-items: center; padding: clamp(3rem, 7vw, 6rem) 0; }
.find__pad {
  width: 100%;
  max-width: calc(var(--wr) / 2);
  margin-left: auto;
  padding-inline: clamp(1.25rem, 4vw, 3.5rem) clamp(1.25rem, 3vw, 3rem);
}

.fl { list-style: none; display: grid; gap: 1.5rem; margin: 2.1rem 0; }
.fl li { display: flex; flex-direction: column; gap: .35rem; padding-bottom: 1.4rem; border-bottom: 1px solid var(--line); }
.fl li:last-child { border-bottom: 0; padding-bottom: 0; }
.fl__k { font-size: .69rem; font-weight: 500; letter-spacing: .2em; text-transform: uppercase; color: var(--dim-2); }
.fl__v { font-size: .95rem; color: var(--ink-2); line-height: 1.62; }
.fl__v b { font-weight: 500; color: var(--ink); }
.fl__a { font-size: .93rem; color: var(--teal-d); transition: transform .3s var(--eo); display: inline-block; width: fit-content; }
.fl__a:hover { transform: translateX(4px); }
.fl__big {
  font-family: var(--serif); font-size: clamp(1.5rem, 3vw, 2.05rem);
  font-weight: 400; color: var(--ink); letter-spacing: -.02em;
  transition: color .3s var(--e);
}
.fl__big:hover { color: var(--teal-d); }
.cl { color: var(--sand) !important; }

.find__act { display: flex; gap: .7rem; flex-wrap: wrap; }

/* --- opening hours schedule --- */
.sched {
  display: grid;
  gap: .1rem;
  margin-top: .1rem;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--paper);
  overflow: hidden;
}
.sched__row {
  display: flex; align-items: flex-start; justify-content: space-between;
  gap: 1rem;
  padding: .8rem 1rem;
}
.sched__row + .sched__row { border-top: 1px solid var(--line-2); }
.sched__row--off { background: rgba(192, 133, 82, .05); }

.sched__d {
  font-size: .82rem; font-weight: 400;
  letter-spacing: .04em;
  color: var(--dim);
  white-space: nowrap;
  padding-top: .1rem;
}
.sched__t { display: flex; flex-direction: column; align-items: flex-end; gap: .18rem; text-align: right; }
.sched__t b {
  font-family: var(--sans);
  font-size: .89rem; font-weight: 500;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}
.sched__row--off .sched__t b { color: var(--sand); font-weight: 400; }

/* live open / closed pill */
.stat {
  display: inline-flex; align-items: center; gap: .34rem;
  margin-left: .5rem;
  padding: .12rem .55rem .12rem .45rem;
  font-size: .66rem; font-weight: 500;
  letter-spacing: .06em; text-transform: uppercase;
  border-radius: 999px;
  vertical-align: middle;
}
.stat::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: currentColor;
  flex: none;
}
.stat--open { color: #0d7a4f; background: rgba(13, 122, 79, .1); }
.stat--open::before { box-shadow: 0 0 0 0 rgba(13, 122, 79, .5); animation: livedot 2.2s var(--eo) infinite; }
.stat--shut { color: var(--sand); background: rgba(192, 133, 82, .12); }
@keyframes livedot {
  0% { box-shadow: 0 0 0 0 rgba(13, 122, 79, .5); }
  70% { box-shadow: 0 0 0 6px rgba(13, 122, 79, 0); }
  100% { box-shadow: 0 0 0 0 rgba(13, 122, 79, 0); }
}

/* --- map panel --- */
.find__r {
  position: relative;
  display: flex; align-items: center;
  background: linear-gradient(160deg, var(--cream-2), var(--teal-wash));
  padding: clamp(1.25rem, 3vw, 2.5rem);
}
.mapwrap { position: relative; width: 100%; }

.mapframe {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  background: var(--cream-2);
  border: 1px solid rgba(255, 255, 255, .7);
  box-shadow: 0 1px 2px rgba(18, 32, 29, .05), 0 18px 44px rgba(18, 32, 29, .12);
  aspect-ratio: 4 / 3.4;
}
.mapframe iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  border: 0;
  filter: saturate(.72) contrast(1.04);
  transition: filter .6s var(--e);
}
.mapframe:hover iframe { filter: saturate(1) contrast(1); }

/* floating address card over the map */
.mapcard {
  position: absolute;
  left: 1rem; right: 1rem; bottom: 1rem;
  display: flex; align-items: center; gap: .8rem;
  padding: .8rem .9rem;
  background: rgba(255, 253, 250, .93);
  backdrop-filter: blur(14px) saturate(180%);
  -webkit-backdrop-filter: blur(14px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, .85);
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(18, 32, 29, .16);
}
.mapcard__pin {
  display: grid; place-items: center; flex: none;
  width: 34px; height: 34px;
  border-radius: 11px;
  background: var(--night);
  color: var(--gold);
}
.mapcard__tx { display: flex; flex-direction: column; min-width: 0; line-height: 1.32; }
.mapcard__tx strong {
  font-family: var(--serif); font-size: .95rem; font-weight: 400;
  color: var(--ink); letter-spacing: -.01em;
}
.mapcard__tx small {
  font-size: .76rem; color: var(--dim);
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.mapcard__go {
  display: inline-flex; align-items: center; gap: .3rem;
  flex: none; margin-left: auto;
  padding: .5rem .85rem;
  font-size: .8rem; font-weight: 500;
  color: var(--cream); background: var(--night);
  border-radius: 999px;
  transition: background-color .3s var(--e), transform .35s var(--sp);
}
.mapcard__go:hover { background: var(--teal-d); color: #fff; transform: translateY(-2px); }

/* ==========================================================================
   footer
   ========================================================================== */
.ft { background: var(--night); color: rgba(255, 255, 255, .6); padding-top: clamp(3rem, 6vw, 4.5rem); overflow: hidden; }

.ft__top {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 2rem; flex-wrap: wrap;
  padding-bottom: clamp(2.5rem, 5vw, 3.5rem);
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}
.ft__say {
  font-family: var(--serif); font-size: clamp(1.6rem, 3.6vw, 2.6rem);
  font-weight: 300; line-height: 1.15; letter-spacing: -.025em; color: #fff;
  max-width: 22ch;
}
.ft__say em { color: var(--gold); }
.ft__num {
  font-family: var(--serif); font-size: clamp(1.3rem, 2.6vw, 1.85rem);
  font-weight: 400; color: var(--gold); letter-spacing: -.01em;
  white-space: nowrap;
  transition: opacity .3s var(--e);
}
.ft__num:hover { opacity: .75; }

.ft__grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
  padding: clamp(2.5rem, 5vw, 3.5rem) 0;
}
.ft__c h4 { color: #fff; font-size: .74rem; font-weight: 500; letter-spacing: .18em; text-transform: uppercase; margin-bottom: 1.2rem; }
.ft__c ul { list-style: none; display: grid; gap: .65rem; }
.ft__c li { font-size: .89rem; font-weight: 300; line-height: 1.6; color: rgba(255, 255, 255, .58); }
.ft__c a { transition: color .3s var(--e); }
.ft__c a:hover { color: var(--gold); }

.ft__wm {
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(3.5rem, 15vw, 12rem);
  line-height: .8; letter-spacing: -.05em;
  color: rgba(255, 255, 255, .045);
  text-align: center;
  user-select: none;
  margin-bottom: -.1em;
}

.ft__base {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; flex-wrap: wrap;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, .08);
}
.ft__base p { font-size: .8rem; color: rgba(255, 255, 255, .38); }

/* ==========================================================================
   floating actions
   ========================================================================== */
.fabs { position: fixed; right: 22px; bottom: 22px; z-index: 150; display: flex; flex-direction: column; gap: .65rem; }
.fb {
  position: relative;
  display: grid; place-items: center;
  width: 50px; height: 50px; border-radius: 50%;
  color: #fff;
  transition: transform .4s var(--sp);
}
.fb:hover { transform: translateY(-3px) scale(1.06); }
.fb--wa { background: #25d366; box-shadow: 0 8px 22px rgba(37, 211, 102, .36); }
.fb--cl { background: var(--gold); color: var(--night); box-shadow: 0 8px 22px rgba(210, 164, 79, .4); }
.fb--cl::after {
  content: ''; position: absolute; inset: 0; border-radius: 50%;
  border: 1.5px solid var(--gold);
  animation: ring 2.4s var(--eo) infinite;
  pointer-events: none;
}
@keyframes ring { 0% { transform: scale(1); opacity: .75; } 100% { transform: scale(1.7); opacity: 0; } }

.mb {
  display: none;
  position: fixed; inset: auto 0 0 0; z-index: 150;
  gap: .45rem;
  padding: .55rem .7rem calc(.55rem + env(safe-area-inset-bottom));
  background: rgba(247, 243, 236, .95);
  backdrop-filter: blur(16px);
  border-top: 1px solid var(--line);
}
.mb__b {
  flex: 1;
  display: inline-flex; align-items: center; justify-content: center; gap: .35rem;
  padding: .7rem .4rem;
  font-size: .84rem; color: var(--ink);
  background: var(--paper); border: 1px solid var(--line); border-radius: 999px;
}
.mb__b--go { background: var(--night); color: var(--cream); border-color: transparent; }

/* ==========================================================================
   reveal
   ========================================================================== */
.rv { opacity: 0; transform: translateY(26px); transition: opacity .9s var(--eo), transform .9s var(--eo); transition-delay: var(--d, 0ms); }
.rv.in { opacity: 1; transform: none; }

/* ==========================================================================
   responsive
   ========================================================================== */
@media (max-width: 1080px) {
  .bento { grid-template-columns: repeat(2, 1fr); }
  /* keep the photo in one column so its portrait shape survives uncropped */
  .bt-cell--img { grid-column: span 1; grid-row: span 2; }
  .bt-cell--img img { min-height: 260px; }
  .bt-cell--num, .bt-cell--say { grid-column: span 1; }
  .bt-cell--list, .bt-cell--cta { grid-column: span 2; }

  .asked__in { grid-template-columns: 1fr; }
  .asked__l { position: static; }

  .dr__in { grid-template-columns: 1fr; }
  .dr__l { flex-direction: row; justify-content: flex-start; gap: 1.5rem; }
  .dr__sig { text-align: left; }
}

@media (max-width: 900px) {
  .find { grid-template-columns: 1fr; }
  .find__pad { max-width: var(--wr); margin-inline: auto; padding-inline: 1.5rem; }
  .find__r { min-height: 340px; order: 2; }
}

@media (max-width: 860px) {
  .bg { display: grid; }
  .hd__call { display: none; }
  .mn {
    position: fixed; inset: calc(var(--hd) + .5rem) .75rem auto .75rem;
    flex-direction: column; align-items: stretch; gap: .1rem;
    margin: 0; padding: .7rem;
    background: rgba(12, 30, 27, .97);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 22px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, .35);
    opacity: 0; transform: translateY(-14px) scale(.98); pointer-events: none;
    transition: opacity .32s var(--e), transform .4s var(--eo);
  }
  .mn.open { opacity: 1; transform: none; pointer-events: auto; }
  .mn a { padding: .82rem 1rem; border-radius: 12px; font-size: .97rem; color: rgba(255, 255, 255, .82); }
  .mn a::after { display: none; }
  .mn a:hover, .mn a.on { background: rgba(255, 255, 255, .07); color: #fff; }
  .hd.solid .mn a { color: rgba(255, 255, 255, .82); }
  .hd.solid .mn a:hover, .hd.solid .mn a.on { color: #fff; }

  /* timeline collapses to a single left rail */
  .tl__spine { left: 7px; transform: none; }
  .tlx { grid-template-columns: 1fr; }
  .tlx:nth-child(odd) .tlx__card,
  .tlx:nth-child(even) .tlx__card { grid-column: 1; margin: 0 0 0 2.4rem; text-align: left; }
  .tlx__dot { left: 7px; top: 1.9rem; }

  .fabs { display: none; }
  .mb { display: flex; }
  body { padding-bottom: 4.4rem; }
}

@media (max-width: 620px) {
  body { font-size: 16px; }
  .wr { width: min(100% - 1.75rem, var(--wr)); }
  .hd__in { width: min(100% - 1.75rem, var(--wr)); }
  .cine__in { width: min(100% - 1.75rem, var(--wr)); }

  .cine { min-height: min(94svh, 760px); }
  .cine__h { max-width: none; }
  .cine__act { flex-direction: column; align-items: stretch; }
  .cine__meta { gap: 1.2rem 2rem; }
  .cue { display: none; }

  .bento { grid-template-columns: 1fr; }
  .bt-cell { grid-column: span 1 !important; padding: 1.6rem; }
  .bt-cell--img { max-height: 380px; }
  .bt-cell--img img { min-height: 220px; }
  .bt-cell--cta { flex-direction: column; align-items: flex-start; }

  .lead--split { align-items: flex-start; }
  .vc__nav { display: none; }

  .dr__l { flex-direction: column; align-items: flex-start; }
  .dr__sig { text-align: left; }
  .dr__cr { grid-template-columns: 1fr; gap: 1.1rem; }

  .ft__grid { grid-template-columns: 1fr 1fr; gap: 2rem 1.5rem; }
  .ft__base { justify-content: center; text-align: center; }
}

@media (max-width: 420px) {
  .ft__grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   preferences
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .rv { opacity: 1; transform: none; }
  .ln > span { transform: none; }
  .kick, .cine__p, .cine__act, .cine__meta { opacity: 1; }
  .marq__track { animation: none; }
  .pv:hover .pv__v { transform: none; }
}

@media print {
  .hd, .fabs, .mb, .prog, .marq, .find__r, .cue { display: none !important; }
  body { background: #fff; color: #000; padding: 0; }
  .cine { min-height: auto; background: #fff; }
  .cine__bg, .cine__veil { display: none; }
  .cine__h, .cine__meta b, .dr__q, .dr__p { color: #000 !important; }
}
