/* ═══════════ TOKENS ═══════════ */
:root{
  /* Light theme — warm ivory canvas, espresso ink, gold accents */
  --bg:#F7F3EA;               /* page canvas */
  --espresso-2:#EFE7D6;       /* lifted panels (pricing, form) */
  --espresso-3:#E7DDC9;       /* placeholder tint */
  --card:#FDFBF6;             /* cards / inputs */
  --espresso:#1A140D;         /* dark ink used ON gold (buttons, chips, tags) */
  --ivory:#241D14;            /* primary text */
  --ivory-70:rgba(36,29,20,.72); --ivory-45:rgba(36,29,20,.46);
  --gold:#946E22; --gold-pale:#B08A3C; --blush:#B0655A;
  --line:rgba(36,29,20,.14); --line-gold:rgba(148,110,34,.34);
  --serif:'Cormorant Garamond',Georgia,serif;
  --sans:'Space Grotesk',system-ui,-apple-system,sans-serif;
  --pad:1.35rem;            /* page gutter (mobile) */
  --sy:6rem;               /* section spacing (mobile) — generous by design */
  --maxw:1200px;
  --ease:cubic-bezier(.2,.7,.2,1);
}

/* ═══════════ RESET / BASE ═══════════ */
*,*::before,*::after{ box-sizing:border-box; margin:0; padding:0; }
html{ -webkit-text-size-adjust:100%; scroll-behavior:smooth; }
body{
  font-family:var(--sans); font-weight:300; background:var(--bg); color:var(--ivory);
  font-size:1rem; line-height:1.7; -webkit-font-smoothing:antialiased; overflow-x:hidden;
}
img,video,svg{ display:block; max-width:100%; }
a{ color:inherit; text-decoration:none; }
button{ font:inherit; color:inherit; background:none; border:none; cursor:pointer; }
ul{ list-style:none; }
h1,h2,h3{ font-family:var(--serif); font-weight:500; line-height:1.02; letter-spacing:-.01em; }
::selection{ background:var(--gold); color:var(--espresso); }
:focus-visible{ outline:2px solid var(--gold); outline-offset:3px; border-radius:2px; }
.skip{ position:absolute; left:-999px; top:0; background:var(--gold); color:var(--espresso); padding:.6rem 1rem; z-index:200; }
.skip:focus{ left:.75rem; top:.75rem; }

/* ═══════════ ATOMS ═══════════ */
.wrap{ width:100%; max-width:var(--maxw); margin-inline:auto; padding-inline:var(--pad); }
.eyebrow{
  font-family:var(--sans); font-size:.68rem; font-weight:500; letter-spacing:.22em;
  text-transform:uppercase; color:var(--gold); display:inline-flex; align-items:center; gap:.7em;
}
.eyebrow::before{ content:""; width:2em; height:1px; background:var(--gold); opacity:.7; }
.eyebrow--center{ justify-content:center; }
.eyebrow--center::before{ display:none; }
.gold{ color:var(--gold-pale); font-style:italic; }

.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:.6em;
  font-family:var(--sans); font-size:.8rem; font-weight:500; letter-spacing:.08em; text-transform:uppercase;
  padding:1rem 1.6rem; border-radius:100px; transition:background .35s var(--ease), color .35s, border-color .35s, transform .2s;
  min-height:48px;
}
.btn:active{ transform:scale(.98); }
.btn--gold{ background:var(--gold); color:var(--espresso); }
.btn--gold:hover{ background:var(--gold-pale); }
.btn--ghost{ border:1px solid var(--line-gold); color:var(--ivory); }
.btn--ghost:hover{ border-color:var(--gold); color:var(--gold-pale); }
.btn--block{ width:100%; }

/* reveal (gentle, respects reduced motion) */
.reveal{ opacity:0; transform:translateY(18px); transition:opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in{ opacity:1; transform:none; }
.reveal[data-d="1"]{ transition-delay:.08s; }
.reveal[data-d="2"]{ transition-delay:.16s; }
.reveal[data-d="3"]{ transition-delay:.24s; }

/* placeholder media — calm, static */
.ph{
  position:relative; overflow:hidden; background:var(--espresso-3);
  background-image:linear-gradient(150deg,#EFE7D6,#E1D4BC 70%);
}
.ph::before{
  content:"OE"; position:absolute; inset:0; display:flex; align-items:center; justify-content:center;
  font-family:var(--serif); font-style:italic; font-size:clamp(3rem,14vw,7rem); color:rgba(148,110,34,.14);
}
.ph__tag{
  position:absolute; left:.9rem; bottom:.85rem; z-index:2; font-family:var(--sans);
  font-size:.62rem; letter-spacing:.14em; text-transform:uppercase; color:rgba(245,241,232,.85);
}
.ph__tag b{ color:var(--gold); font-weight:500; }

.sec-head{ margin-bottom:2.6rem; }
.sec-head h2{ font-size:clamp(2rem,9vw,2.9rem); margin-top:.6rem; }
.sec-head p{ color:var(--ivory-70); margin-top:.9rem; max-width:42ch; }

/* ═══════════ NAV ═══════════ */
.nav{
  position:fixed; top:0; left:0; width:100%; z-index:100; height:64px;
  display:flex; align-items:center; transition:background .4s, backdrop-filter .4s, border-color .4s;
  border-bottom:1px solid transparent;
}
.nav.scrolled,.nav--solid{ background:rgba(247,243,234,.82); backdrop-filter:blur(12px); border-bottom-color:var(--line); }
.nav__in{ display:flex; align-items:center; justify-content:space-between; width:100%; max-width:var(--maxw); margin-inline:auto; padding-inline:var(--pad); }
/* at top the nav floats over the dark hero photo → light text; once scrolled (or on a subpage) → dark ink */
.brand{ font-family:var(--serif); font-size:1.2rem; font-style:italic; font-weight:500; color:#F5F1E8; transition:color .4s; }
.brand span{ font-family:var(--sans); font-style:normal; font-size:.6rem; letter-spacing:.2em; text-transform:uppercase; color:rgba(245,241,232,.6); display:block; line-height:1; margin-top:1px; }
.nav.scrolled .brand,.nav--solid .brand{ color:var(--ivory); }
.nav.scrolled .brand span,.nav--solid .brand span{ color:var(--ivory-45); }
.nav__links{ display:none; }
.nav__cta{ padding:.7rem 1.15rem; min-height:40px; }
.nav__right{ display:flex; align-items:center; gap:.35rem; }

/* menu button (phone only) */
.menu-btn{ display:grid; place-items:center; width:44px; height:44px; color:#F5F1E8; transition:color .4s; }
.nav.scrolled .menu-btn,.nav--solid .menu-btn{ color:var(--ivory); }
.menu-btn span{ position:relative; display:block; width:20px; height:1.5px; background:currentColor; }
.menu-btn span::before,.menu-btn span::after{ content:""; position:absolute; left:0; width:20px; height:1.5px; background:currentColor; }
.menu-btn span::before{ top:-6px; }
.menu-btn span::after{ top:6px; }

/* full-screen phone menu */
.mnav{ position:fixed; inset:0; z-index:150; background:var(--bg); display:none; flex-direction:column; padding:1rem var(--pad) 2.2rem; }
.mnav.open{ display:flex; }
.mnav__top{ display:flex; align-items:center; justify-content:space-between; min-height:48px; }
.mnav__brand{ font-family:var(--serif); font-size:1.2rem; font-style:italic; font-weight:500; }
.mnav__close{ width:44px; height:44px; font-size:1.25rem; color:var(--ivory); display:grid; place-items:center; }
.mnav__links{ display:flex; flex-direction:column; margin-top:2.2rem; }
.mnav__links a{ font-family:var(--serif); font-size:clamp(1.9rem,8.5vw,2.5rem); padding:.55rem 0; border-bottom:1px solid var(--line); display:flex; justify-content:space-between; align-items:baseline; }
.mnav__links a small{ font-family:var(--sans); font-size:.6rem; letter-spacing:.16em; text-transform:uppercase; color:var(--gold); }
.mnav__links a[aria-current="page"]{ color:var(--gold); }
.mnav .btn{ margin-top:2.4rem; }
.mnav__meta{ margin-top:auto; padding-top:2rem; color:var(--ivory-45); font-size:.8rem; }

/* ═══════════ HERO ═══════════ */
.hero{ position:relative; min-height:100svh; display:flex; align-items:flex-end; overflow:hidden; }
.hero__media{ position:absolute; inset:0; z-index:0; }
.hero__media::after{ /* legibility overlay */
  content:""; position:absolute; inset:0;
  background:linear-gradient(180deg, rgba(14,13,11,.55) 0%, rgba(14,13,11,.35) 40%, rgba(14,13,11,.92) 100%);
}
.hero__media .ph{ width:100%; height:100%; }
.hero__media img{ width:100%; height:100%; object-fit:cover; }
.hero__media .ph::before{ font-size:clamp(6rem,40vw,20rem); }
.hero__in{ position:relative; z-index:2; width:100%; max-width:var(--maxw); margin-inline:auto; padding:0 var(--pad) clamp(2.5rem,10vh,5rem); }
.hero h1{ font-size:clamp(3.2rem,20vw,6rem); line-height:.92; margin:1rem 0; color:#F6F1E7; }
.hero h1 i{ font-weight:400; }
.hero h1 .r{ color:var(--gold-pale); }
.hero__sub{ color:rgba(245,241,232,.78); max-width:34ch; font-size:1.02rem; }
.hero__cta{ display:flex; flex-wrap:wrap; gap:.75rem; margin-top:1.8rem; }
.hero__cta .btn{ flex:1 1 auto; }
.hero .btn--ghost{ color:#F5F1E8; border-color:rgba(245,241,232,.4); }
.hero .btn--ghost:hover{ border-color:var(--gold-pale); color:var(--gold-pale); }

/* ═══════════ WORK (masonry gallery + lightbox) ═══════════ */
.work{ padding:var(--sy) 0; }
.work__hint{ font-family:var(--sans); font-size:.64rem; letter-spacing:.16em; text-transform:uppercase; color:var(--ivory-45); margin-top:.4rem; }
.work__more{ text-align:center; margin-top:2.4rem; }
.gallery{ columns:2; column-gap:.7rem; margin-top:1.6rem; }
.tile{ display:block; width:100%; padding:0; margin:0 0 .7rem; border-radius:5px; overflow:hidden; position:relative; break-inside:avoid; background:var(--espresso-3); cursor:zoom-in; line-height:0; }
.tile img{ width:100%; height:auto; transition:transform .6s var(--ease); }
.tile:hover img{ transform:scale(1.05); }
.tile__cap{
  position:absolute; left:0; right:0; bottom:0; z-index:2; padding:1.6rem .8rem .75rem; text-align:left;
  font-family:var(--serif); font-size:1.15rem; line-height:1.1; color:#F5F1E8;
  background:linear-gradient(180deg,transparent,rgba(18,13,8,.72)); opacity:0; transition:opacity .4s;
}
.tile:hover .tile__cap,.tile:focus-visible .tile__cap{ opacity:1; }
.tile__cap b{ display:block; font-family:var(--sans); font-size:.56rem; letter-spacing:.15em; text-transform:uppercase; color:var(--gold-pale); font-weight:500; margin-bottom:.25rem; }

/* lightbox */
.lb{ position:fixed; inset:0; z-index:200; display:none; background:rgba(16,12,8,.95); backdrop-filter:blur(4px); }
.lb.open{ display:block; }
.lb__img{ position:absolute; top:50%; left:50%; transform:translate(-50%,-50%); max-width:92vw; max-height:80vh; object-fit:contain; border-radius:3px; box-shadow:0 24px 70px rgba(0,0,0,.55); }
.lb__btn{ position:absolute; z-index:2; color:#F5F1E8; display:grid; place-items:center; border-radius:50%; background:rgba(245,241,232,.1); transition:background .25s; }
.lb__btn:hover{ background:rgba(245,241,232,.22); }
.lb__close{ top:1rem; right:1rem; width:46px; height:46px; font-size:1.3rem; }
.lb__nav{ top:50%; transform:translateY(-50%); width:52px; height:52px; font-size:2rem; line-height:1; padding-bottom:4px; }
.lb__prev{ left:.5rem; } .lb__next{ right:.5rem; }
.lb__bar{ position:absolute; left:0; right:0; bottom:1rem; display:flex; align-items:center; justify-content:center; gap:1rem; padding:0 1rem; color:rgba(245,241,232,.85); }
.lb__cap{ font-family:var(--serif); font-size:1.05rem; }
.lb__kick{ font-family:var(--sans); font-size:.6rem; letter-spacing:.14em; text-transform:uppercase; color:var(--gold-pale); margin-right:.6rem; }
.lb__count{ font-family:var(--sans); font-size:.7rem; letter-spacing:.14em; color:var(--gold-pale); }

/* ═══════════ SERVICES ═══════════ */
.services{ padding:var(--sy) 0; }
.svc{ border-top:1px solid var(--line); padding:1.7rem 0; }
.svc:last-child{ border-bottom:1px solid var(--line); }
.svc__img{ aspect-ratio:16/10; border-radius:6px; overflow:hidden; margin-bottom:1.1rem; background:var(--espresso-3); }
.svc__img img{ width:100%; height:100%; object-fit:cover; transition:transform .6s var(--ease); }
.svc:hover .svc__img img{ transform:scale(1.04); }
.svc__num{ font-family:var(--sans); font-size:.68rem; letter-spacing:.12em; color:var(--ivory-45); }
.svc h3{ font-size:clamp(1.9rem,8vw,2.4rem); margin:.35rem 0 .5rem; }
.svc p{ color:var(--ivory-70); max-width:44ch; }

/* ═══════════ MANIFESTO (statement on empty canvas) ═══════════ */
.manifesto{ padding:calc(var(--sy) * 1.25) 0; text-align:center; }
.manifesto h2{
  font-size:clamp(1.9rem,7.5vw,3.6rem); font-weight:500; line-height:1.18;
  max-width:22ch; margin-inline:auto;
}
.manifesto h2 i{ color:var(--gold); font-weight:400; }
.manifesto p{ color:var(--ivory-70); max-width:52ch; margin:2rem auto 0; }

/* ═══════════ QUOTES (testimonials) ═══════════ */
.quotes{ padding:var(--sy) 0; }
.quotes__list{ display:flex; flex-direction:column; gap:4.5rem; margin-top:3rem; }
.quote{ max-width:34ch; }
.quote:nth-child(2){ margin-left:auto; text-align:right; }
.quote blockquote{
  font-family:var(--serif); font-size:clamp(1.4rem,5.5vw,2rem); font-weight:400;
  line-height:1.35; letter-spacing:-.01em;
}
.quote blockquote::before{ content:"“"; color:var(--gold); }
.quote blockquote::after{ content:"”"; color:var(--gold); }
.quote cite{
  display:block; font-style:normal; margin-top:1.1rem; font-family:var(--sans);
  font-size:.64rem; letter-spacing:.18em; text-transform:uppercase; color:var(--gold);
}

/* ═══════════ INVITE (bespoke panel, replaces pricing) ═══════════ */
.invite{ padding:calc(var(--sy) * 1.15) 0; background:var(--espresso-2); text-align:center; }
.invite h2{ font-size:clamp(2.1rem,8.5vw,3.4rem); max-width:16ch; margin-inline:auto; }
.invite h2 i{ color:var(--gold); font-weight:400; }
.invite p{ color:var(--ivory-70); max-width:44ch; margin:1.6rem auto 2.4rem; }

/* ═══════════ STEPS (the experience — shared with shop) ═══════════ */
.steps{ padding:var(--sy) 0; }
.steps__grid{ display:grid; gap:2.6rem; margin-top:2.6rem; }
.step .n{ font-family:var(--sans); font-size:.66rem; letter-spacing:.16em; text-transform:uppercase; color:var(--gold); }
.step h3{ font-size:1.5rem; margin:.6rem 0 .4rem; }
.step p{ color:var(--ivory-70); font-size:.92rem; max-width:38ch; }
.steps--band{ background:var(--espresso-2); }

/* ═══════════ SHOP (shared product card) ═══════════ */
.shop{ padding:var(--sy) 0; }
.shop__grid{ display:grid; grid-template-columns:1fr 1fr; gap:1.1rem; margin-top:1.8rem; }
.product{ display:block; }
.product__img{
  aspect-ratio:1; border-radius:18px; overflow:hidden; background:var(--espresso-3);
  box-shadow:0 10px 28px rgba(36,29,20,.07);
  transition:box-shadow .45s var(--ease), transform .45s var(--ease);
}
.product__img img{ width:100%; height:100%; object-fit:cover; transition:transform .6s var(--ease); }
.product__img .ph{ width:100%; height:100%; transition:transform .6s var(--ease); }
.product:hover .product__img{ transform:translateY(-4px); box-shadow:0 20px 46px rgba(36,29,20,.15); }
.product:hover .product__img img,.product:hover .product__img .ph{ transform:scale(1.05); }
.product__name{ font-family:var(--serif); font-size:1.15rem; margin-top:.7rem; line-height:1.15; }
.product__desc{ color:var(--ivory-70); font-size:.88rem; margin-top:.35rem; }
.product__meta{ display:flex; align-items:center; justify-content:space-between; gap:.5rem; margin-top:.55rem; }
.product__price{ font-family:var(--serif); font-style:italic; font-size:1.1rem; color:var(--ivory-70); }
.product__buy{
  font-family:var(--sans); font-size:.6rem; letter-spacing:.1em; text-transform:uppercase;
  color:var(--gold); white-space:nowrap; display:inline-flex; align-items:center;
  border:1px solid var(--line-gold); border-radius:100px; padding:.55em 1.15em; min-height:34px;
  transition:background .3s var(--ease), color .3s, border-color .3s;
}
.product:hover .product__buy{ background:var(--gold); border-color:var(--gold); color:var(--espresso); }
.shop__note{ font-family:var(--sans); font-size:.82rem; color:var(--ivory-45); margin-top:1.8rem; }
.shop__note a{ color:var(--gold); }
@media (min-width:760px){ .shop__grid{ grid-template-columns:repeat(3,1fr); gap:1.6rem; } }

/* ═══════════ SUBPAGE HEADER (shop, gallery) ═══════════ */
.pagehead{ padding:calc(64px + var(--sy)) 0 var(--sy); text-align:center; }
.pagehead h1{ font-size:clamp(2.6rem,12vw,4.6rem); margin-top:.7rem; }
.pagehead p{ color:var(--ivory-70); max-width:50ch; margin:1.1rem auto 0; }
.pagehead--tight{ padding-bottom:calc(var(--sy) * .5); }
.shopcat{ padding-bottom:var(--sy); }
.shopcat__head{ display:flex; align-items:center; gap:1rem; margin-bottom:2.2rem; }
.shopcat__head h2{ font-size:clamp(1.7rem,7vw,2.4rem); }
.shopcat__head span{
  font-family:var(--sans); font-size:.58rem; letter-spacing:.16em; text-transform:uppercase;
  color:var(--gold); margin-left:auto; white-space:nowrap;
  border:1px solid var(--line-gold); border-radius:100px; padding:.55em 1.1em;
}
.shopgrid{ display:grid; grid-template-columns:1fr; gap:2.6rem 1.8rem; }
.shopgrid .product__img{ aspect-ratio:4/5; }
.shopgrid .product__name{ font-size:1.4rem; margin-top:1rem; }
.shopgrid .product__meta{ margin-top:.8rem; }
.shopgrid .product__price{ font-size:1.15rem; color:var(--ivory); }

/* full-custom CTA band */
.cta{ padding:var(--sy) 0; text-align:center; }
.cta h2{ font-size:clamp(2rem,8vw,3rem); }
.cta p{ color:var(--ivory-70); max-width:46ch; margin:1rem auto 1.8rem; }

/* ═══════════ BOOKING ═══════════ */
.booking{ padding:var(--sy) 0; }
.booking__lead p{ color:var(--ivory-70); max-width:46ch; margin-top:.8rem; }
.contact{ display:flex; flex-direction:column; gap:.9rem; margin:1.8rem 0; }
.contact a{ display:flex; flex-direction:column; }
.contact small{ font-family:var(--sans); font-size:.6rem; letter-spacing:.14em; text-transform:uppercase; color:var(--ivory-45); }
.contact b{ font-family:var(--serif); font-size:1.35rem; font-weight:500; }
.reply{ display:inline-flex; align-items:center; gap:.5rem; font-size:.85rem; color:var(--gold-pale); margin-bottom:2rem; }
.reply::before{ content:""; width:7px; height:7px; border-radius:50%; background:var(--gold); }

.form{ border:1px solid var(--line); border-radius:8px; background:var(--espresso-2); padding:1.5rem; }
.field{ margin-bottom:1.3rem; }
.field label{ display:block; font-family:var(--sans); font-size:.62rem; letter-spacing:.13em; text-transform:uppercase; color:var(--ivory-45); margin-bottom:.5rem; }
.field input,.field select,.field textarea{
  width:100%; background:var(--card); border:1px solid var(--line); border-radius:6px;
  color:var(--ivory); font-family:var(--sans); font-size:1rem; font-weight:300; padding:.85rem .9rem; min-height:48px;
  transition:border-color .3s;
}
.field input:focus,.field select:focus,.field textarea:focus{ border-color:var(--gold); outline:none; }
.field select{ appearance:none; cursor:pointer; background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23C9A24B' stroke-width='1.4' fill='none'/%3E%3C/svg%3E"); background-repeat:no-repeat; background-position:right .9rem center; padding-right:2.2rem; }
.field select option{ background:var(--espresso-2); }
.field textarea{ resize:vertical; min-height:90px; }
.row2 .field{ flex:1; } /* stacked on phones; becomes 2-col at ≥760px */
.chips{ display:flex; flex-wrap:wrap; gap:.5rem; }
.chip{ position:relative; }
.chip input{ position:absolute; inset:0; opacity:0; cursor:pointer; }
.chip span{ display:inline-flex; padding:.6em 1em; min-height:44px; align-items:center; border:1px solid var(--line); border-radius:100px; font-size:.85rem; color:var(--ivory-70); transition:.25s; }
.chip input:checked + span{ background:var(--gold); border-color:var(--gold); color:var(--espresso); }
.chip input:focus-visible + span{ outline:2px solid var(--gold); outline-offset:2px; }
.err{ color:var(--blush); font-size:.72rem; margin-top:.4rem; display:none; }
.field.invalid input,.field.invalid select,.field.invalid textarea{ border-color:var(--blush); }
.field.invalid .err{ display:block; }
.form__ok{ display:none; text-align:center; padding:1.5rem .5rem; }
.form__ok.show{ display:block; }
.form__ok .mark{ width:56px; height:56px; border-radius:50%; border:1px solid var(--gold); color:var(--gold); display:grid; place-items:center; margin:0 auto 1rem; font-size:1.4rem; }
.form__ok h3{ font-size:1.7rem; }
.form__ok p{ color:var(--ivory-70); margin-top:.5rem; }
.form.sent .form__body{ display:none; }

/* ═══════════ VENUES (find-your-venue stories) ═══════════ */
.vfade{ animation:vfade .55s var(--ease) both; }
@keyframes vfade{ from{ opacity:0; transform:translateY(14px); } to{ opacity:1; transform:none; } }

/* search */
.vsearch{ position:relative; max-width:540px; margin:2.2rem auto 0; }
.vsearch input{
  width:100%; min-height:56px; background:var(--card); border:1px solid var(--line-gold); border-radius:100px;
  color:var(--ivory); font-family:var(--sans); font-size:1rem; font-weight:300; padding:1rem 1.4rem 1rem 3.1rem;
  transition:border-color .3s, box-shadow .3s;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='17' height='17' viewBox='0 0 17 17'%3E%3Ccircle cx='7' cy='7' r='5.6' stroke='%23946E22' stroke-width='1.4' fill='none'/%3E%3Cpath d='M11.4 11.4L16 16' stroke='%23946E22' stroke-width='1.4'/%3E%3C/svg%3E");
  background-repeat:no-repeat; background-position:1.25rem center;
}
.vsearch input:focus{ border-color:var(--gold); outline:none; box-shadow:0 6px 24px rgba(148,110,34,.12); }
.vsearch input::placeholder{ color:var(--ivory-45); }
.vcount{
  text-align:center; font-family:var(--sans); font-size:.64rem; letter-spacing:.16em;
  text-transform:uppercase; color:var(--ivory-45); margin-top:1.1rem; min-height:1em;
}

/* venue cards */
.vgrid{ display:grid; grid-template-columns:1fr; gap:2.4rem 1.6rem; }
.vcard{ display:block; }
.vcard__img{ display:block; aspect-ratio:4/3; border-radius:6px; overflow:hidden; background:var(--espresso-3); }
.vcard__img img{ width:100%; height:100%; object-fit:cover; transition:transform .6s var(--ease); }
.vcard:hover .vcard__img img{ transform:scale(1.05); }
.vcard__img .ph{ width:100%; height:100%; }
.vcard__body{ display:block; padding-top:.9rem; }
.vcard__body b{
  display:block; font-family:var(--sans); font-size:.6rem; font-weight:500;
  letter-spacing:.16em; text-transform:uppercase; color:var(--gold);
}
.vcard__body h3{ font-size:1.55rem; margin-top:.35rem; line-height:1.1; }
.vcard__body p{ color:var(--ivory-70); font-size:.88rem; margin-top:.4rem; }
.vcard__more{
  display:inline-block; font-family:var(--sans); font-size:.66rem; letter-spacing:.1em;
  text-transform:uppercase; color:var(--gold); margin-top:.7rem; transition:color .3s;
}
.vcard:hover .vcard__more{ color:var(--gold-pale); }

/* demo-content note (remove once real venue stories are in) */
.vnote{
  font-family:var(--sans); font-size:.78rem; color:var(--ivory-45);
  border:1px dashed var(--line-gold); border-radius:6px; padding:.7rem 1rem;
  max-width:640px; margin:0 auto 2.2rem; text-align:center;
}

/* empty state */
.vempty{ text-align:center; padding:3rem 0 1rem; }
.vempty h2{ font-size:clamp(1.8rem,7vw,2.5rem); }
.vempty p{ color:var(--ivory-70); max-width:44ch; margin:1rem auto 1.8rem; }

/* story view */
.vstorysec{ padding:calc(64px + 3rem) 0 var(--sy); }
.vback{
  display:inline-block; font-family:var(--sans); font-size:.66rem; letter-spacing:.14em;
  text-transform:uppercase; color:var(--gold); margin-bottom:2.2rem; transition:color .3s;
}
.vback:hover{ color:var(--gold-pale); }
.vstorysec h1{ font-size:clamp(2.4rem,10vw,4rem); margin-top:.7rem; }
.vhosts{ font-family:var(--serif); font-style:italic; font-size:1.35rem; color:var(--ivory-70); margin-top:.5rem; }
.vmeta{
  display:grid; grid-template-columns:1fr 1fr; gap:1px; background:var(--line);
  border:1px solid var(--line); border-radius:8px; overflow:hidden; margin:2.2rem 0;
}
.vmeta > div{ background:var(--card); padding:1rem 1.1rem; }
.vmeta small{
  display:block; font-family:var(--sans); font-size:.58rem; letter-spacing:.14em;
  text-transform:uppercase; color:var(--ivory-45); margin-bottom:.3rem;
}
.vmeta b{ font-family:var(--serif); font-size:1.3rem; font-weight:500; line-height:1.1; }
.vstory p{ color:var(--ivory-70); font-size:1.04rem; max-width:62ch; }
.vgal__sec{ margin-top:3rem; }
.vgal__label{
  font-family:var(--sans); font-size:.68rem; font-weight:500; letter-spacing:.22em;
  text-transform:uppercase; color:var(--gold); display:flex; align-items:center; gap:.7em;
}
.vgal__label::after{ content:""; flex:1; height:1px; background:var(--line); }
.vgal{ display:grid; grid-template-columns:1fr 1fr; gap:.7rem; margin-top:1.1rem; }
.vgal .tile{ margin:0; }
.vgal .tile img{ aspect-ratio:4/3; object-fit:cover; }
.vquote{ margin:3.5rem 0 0; max-width:40ch; }
.vcta{ margin-top:3.8rem; border-top:1px solid var(--line); padding-top:2.6rem; text-align:center; }
.vcta h2{ font-size:clamp(1.8rem,7vw,2.6rem); }
.vcta p{ color:var(--ivory-70); max-width:44ch; margin:.8rem auto 1.8rem; }

@media (min-width:620px){
  .vgrid{ grid-template-columns:1fr 1fr; }
}
@media (min-width:760px){
  .vstorysec{ padding-top:calc(76px + 4rem); }
  .vmeta{ grid-template-columns:repeat(4,1fr); }
  .vgal{ grid-template-columns:repeat(3,1fr); gap:1rem; }
}
@media (min-width:960px){
  .vgrid{ grid-template-columns:repeat(3,1fr); gap:3rem 2rem; }
}

/* ═══════════ FOOTER ═══════════ */
.footer{ padding:3rem 0 6rem; border-top:1px solid var(--line); }
.footer__word{ font-family:var(--serif); font-size:clamp(2.6rem,15vw,4rem); font-weight:500; letter-spacing:-.01em; }
.footer__word i{ color:var(--gold); font-weight:400; }
.footer__links{ display:flex; flex-wrap:wrap; gap:.4rem 1.4rem; margin:1.6rem 0; }
.footer__links a{ color:var(--ivory-70); font-size:.9rem; transition:color .3s; }
.footer__links a:hover{ color:var(--gold); }
.footer__base{ display:flex; flex-wrap:wrap; gap:.6rem 1rem; justify-content:space-between; color:var(--ivory-45); font-size:.78rem; border-top:1px solid var(--line); padding-top:1.4rem; }

/* ═══════════ MOBILE STICKY BAR ═══════════ */
.bar{ position:fixed; bottom:0; left:0; width:100%; z-index:90; display:grid; grid-template-columns:1fr 1.3fr; background:rgba(247,243,234,.94); backdrop-filter:blur(10px); border-top:1px solid var(--line); box-shadow:0 -6px 24px rgba(36,29,20,.08); }
.bar a{ display:flex; align-items:center; justify-content:center; gap:.4rem; padding:1rem; font-family:var(--sans); font-size:.78rem; letter-spacing:.06em; text-transform:uppercase; min-height:54px; }
.bar a:first-child{ color:var(--ivory-70); border-right:1px solid var(--line); }
.bar a:last-child{ color:var(--espresso); background:var(--gold); font-weight:500; }

/* ═══════════ DESKTOP / TABLET ═══════════ */
@media (min-width:620px){
  .shopgrid{ grid-template-columns:1fr 1fr; }
}
@media (min-width:760px){
  :root{ --pad:2.5rem; --sy:11rem; }
  body{ font-size:1.0625rem; }
  .nav{ height:76px; }
  .nav__links{ display:flex; gap:2rem; }
  .nav__links a{ font-family:var(--sans); font-size:.82rem; letter-spacing:.04em; color:rgba(245,241,232,.82); transition:color .3s; }
  .nav__links a:hover{ color:#fff; }
  .nav.scrolled .nav__links a,.nav--solid .nav__links a{ color:var(--ivory-70); }
  .nav.scrolled .nav__links a:hover,.nav--solid .nav__links a:hover{ color:var(--ivory); }
  .nav--solid .nav__links a[aria-current="page"]{ color:var(--gold); }
  .bar{ display:none; }
  .footer{ padding-bottom:3rem; }
  .hero__cta .btn{ flex:0 0 auto; }
  .gallery{ columns:3; column-gap:1rem; }
  .tile{ margin-bottom:1rem; }
  .lb__nav{ width:60px; height:60px; }
  .booking__grid{ display:grid; grid-template-columns:.85fr 1.15fr; gap:3.5rem; align-items:start; }
  .row2{ display:flex; gap:.8rem; }
  .services__grid{ display:grid; grid-template-columns:1fr 1fr; gap:0 3rem; }
  .svc:nth-child(2){ border-top:1px solid var(--line); }
  .menu-btn{ display:none; }
  .mnav{ display:none !important; }
  .pagehead{ padding-top:calc(76px + var(--sy)); }
  .steps__grid{ grid-template-columns:repeat(3,1fr); gap:3rem; }
  .quotes__list{ gap:6rem; margin-top:4rem; }
}
@media (min-width:960px){
  .shopgrid{ grid-template-columns:1fr 1fr 1fr; gap:3rem 2.2rem; }
}
@media (min-width:1100px){
  .hero h1{ font-size:clamp(5rem,9vw,8rem); }
  .gallery{ columns:4; }
  .sec-head h2{ font-size:clamp(2.6rem,4vw,3.6rem); }
}

@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior:auto; }
  .reveal{ opacity:1 !important; transform:none !important; transition:none; }
  *{ transition-duration:.01ms !important; }
}
