/* ==========================================================================
   Crave My Baking — Kosher Kitchen
   Design system + site styles
   ========================================================================== */

/* ---------- Tokens ---------- */
:root{
  /* Brand palette, drawn from the logo */
  --espresso:      #2E211C;
  --espresso-soft: #4A382F;
  --burgundy:      #5C1730;
  --burgundy-deep: #3F0E20;
  --clay:          #C0714B;   /* decorative only — rules, hairlines, icons */
  --clay-ink:      #9C4F2C;   /* the same hue darkened for small text on cream */
  --clay-light:    #D9A183;   /* for dark grounds */
  --cream:         #FDF7F0;
  --parchment:     #F5EBE0;
  --parchment-2:   #EADCCB;
  --line:          #E7D8C7;
  --line-soft:     #F0E4D6;
  --header-bg:     #FDF7F0;

  --bg:      var(--cream);
  --fg:      var(--espresso);
  --muted:   #77655B;

  /* Type */
  --display: "Cormorant Garamond", "Iowan Old Style", Georgia, serif;
  --body:    "Jost", "Avenir Next", "Segoe UI", system-ui, sans-serif;

  /* Rhythm */
  --gutter: clamp(1.25rem, 4.5vw, 4rem);
  --section: clamp(3.25rem, 6vw, 5.75rem);
  --section-lg: clamp(4rem, 7.5vw, 7rem);
  /* Header height is derived from the logo so hero padding always clears it */
  --logo-h: clamp(76px, 7vw, 104px);
  --header-h: calc(var(--logo-h) + 1.7rem);
  --maxw: 1280px;
  --narrow: 720px;

  --ease: cubic-bezier(.22,.61,.36,1);
  --shadow-soft: 0 22px 60px -30px rgba(46,33,28,.45);
  --shadow-lift: 0 32px 70px -40px rgba(46,33,28,.5);
}

/* ---------- Reset ---------- */
*,*::before,*::after{ box-sizing:border-box; }
html{ -webkit-text-size-adjust:100%; scroll-behavior:smooth; }
body,h1,h2,h3,h4,p,figure,blockquote,dl,dd,ul,ol{ margin:0; padding:0; }
ul,ol{ list-style:none; }
img,video{ display:block; max-width:100%; height:auto; }
a{ color:inherit; text-decoration:none; }
button{ font:inherit; color:inherit; background:none; border:0; cursor:pointer; }
input,textarea,select{ font:inherit; color:inherit; }

body{
  background:var(--bg);
  color:var(--fg);
  font-family:var(--body);
  font-weight:300;
  font-size:clamp(1rem, .96rem + .2vw, 1.075rem);
  line-height:1.75;
  letter-spacing:.005em;
  overflow-x:hidden;
  -webkit-font-smoothing:antialiased;
}

/* Warm paper grain over the whole page */
body::after{
  content:"";
  position:fixed; inset:0;
  pointer-events:none; z-index:9999;
  opacity:.35; mix-blend-mode:multiply;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)' opacity='.25'/%3E%3C/svg%3E");
}

/* ---------- Typography ---------- */
h1,h2,h3,h4,.display{
  font-family:var(--display);
  font-weight:400;
  line-height:1.06;
  letter-spacing:-.015em;
  color:var(--espresso);
  text-wrap:balance;
}
/* Keep display headings to a readable measure so they break sensibly */
.h-xl{ max-width:15ch; }
.h-lg{ max-width:17ch; }
.h-md{ max-width:22ch; }
.center .h-xl,.center .h-lg,.center .h-md{ margin-inline:auto; }
.h-xl{ font-size:clamp(2.7rem, 1.5rem + 4.6vw, 5.4rem); }
.h-lg{ font-size:clamp(2.1rem, 1.35rem + 3vw, 3.85rem); }
.h-md{ font-size:clamp(1.7rem, 1.25rem + 1.8vw, 2.6rem); }
.h-sm{ font-size:clamp(1.25rem, 1.08rem + .72vw, 1.6rem); }

em,.italic{ font-style:italic; }
.script{ font-family:var(--display); font-style:italic; font-weight:400; color:var(--burgundy); }

.eyebrow{
  font-family:var(--body);
  font-size:.72rem;
  font-weight:400;
  letter-spacing:.32em;
  text-transform:uppercase;
  color:var(--clay-ink);
  display:flex; align-items:center; gap:.85em;
}
.eyebrow::before{
  content:""; width:2.4rem; height:1px; background:var(--clay); opacity:.6; flex:none;
}
.eyebrow.centered{ justify-content:center; }
.eyebrow.centered::after{
  content:""; width:2.4rem; height:1px; background:var(--clay); opacity:.6; flex:none;
}

.lede{
  font-size:clamp(1.05rem, 1rem + .45vw, 1.3rem);
  line-height:1.72;
  color:var(--espresso-soft);
}
.muted{ color:var(--muted); }
p + p{ margin-top:1.15em; }

/* Heart divider — echoes the logo motif */
.divider{
  display:flex; align-items:center; justify-content:center; gap:1rem;
  color:var(--clay); margin:1.6rem 0;
}
.divider::before,.divider::after{
  content:""; height:1px; width:min(6rem,18vw); background:currentColor; opacity:.45;
}
.divider svg{ width:14px; height:14px; fill:currentColor; opacity:.85; }

/* ---------- Layout ---------- */
.wrap{ width:100%; max-width:var(--maxw); margin-inline:auto; padding-inline:var(--gutter); }
.narrow{ max-width:var(--narrow); margin-inline:auto; }
.section{ padding-block:var(--section); position:relative; }
.section--lg{ padding-block:var(--section-lg); }
.section--tight{ padding-block:clamp(2.25rem,4vw,3.5rem); }
.center{ text-align:center; }
.stack > * + *{ margin-top:1.05rem; }
.stack-sm > * + *{ margin-top:.7rem; }

.tone-parchment{ background:var(--parchment); }
.tone-deep{
  background:var(--burgundy-deep); color:var(--parchment);
  /* Re-point the ink tokens for a dark ground. Anything using --muted or
     --burgundy would otherwise render dark-on-dark and disappear. */
  --muted:    rgba(244,233,220,.66);
  --clay-ink: var(--clay-light);
  --line:   rgba(244,233,220,.2);
}
.tone-deep h1,.tone-deep h2,.tone-deep h3,.tone-deep h4{ color:var(--parchment); }
.tone-deep .lede{ color:rgba(244,233,220,.85); }
.tone-deep .eyebrow{ color:var(--clay-light); }
.tone-deep .eyebrow::before,.tone-deep .eyebrow::after{ background:var(--clay-light); }

/* ---------- Buttons ---------- */
.btn{
  --btn-bg:var(--burgundy);
  --btn-fg:var(--cream);
  display:inline-flex; align-items:center; gap:.7em;
  padding:.95em 1.9em;
  background:var(--btn-bg); color:var(--btn-fg);
  border:1px solid var(--btn-bg);
  border-radius:100px;
  font-size:.78rem; font-weight:400;
  letter-spacing:.2em; text-transform:uppercase;
  transition:transform .45s var(--ease), background .45s var(--ease),
             color .45s var(--ease), border-color .45s var(--ease), box-shadow .45s var(--ease);
}
.btn:hover{ transform:translateY(-3px); box-shadow:0 16px 34px -18px rgba(92,23,48,.75); }
.btn svg{ width:1em; height:1em; fill:none; stroke:currentColor; stroke-width:1.6; transition:transform .45s var(--ease); }
.btn:hover svg{ transform:translateX(4px); }

.btn--ghost{ --btn-bg:transparent; --btn-fg:var(--espresso); border-color:var(--line); }
.btn--ghost:hover{ --btn-bg:var(--espresso); --btn-fg:var(--cream); border-color:var(--espresso); }
.btn--light{ --btn-bg:transparent; --btn-fg:var(--parchment); border-color:rgba(244,233,220,.4); }
.btn--light:hover{ --btn-bg:var(--parchment); --btn-fg:var(--burgundy-deep); border-color:var(--parchment); }
.btn--wa{ --btn-bg:#1f7a4c; border-color:#1f7a4c; }

.link-underline{
  display:inline-flex; align-items:center; gap:.55em;
  font-size:.78rem; letter-spacing:.2em; text-transform:uppercase;
  color:var(--burgundy); padding-bottom:.35em;
  border-bottom:1px solid rgba(92,23,48,.28);
  transition:border-color .4s var(--ease), gap .4s var(--ease);
}
.link-underline:hover{ border-color:var(--burgundy); gap:.95em; }

/* ---------- Header ---------- */
.site-header{
  position:fixed; inset:0 0 auto 0; z-index:100;
  padding-block:.85rem;
  background:var(--header-bg);
  border-bottom:1px solid transparent;
  transition:padding .45s var(--ease), box-shadow .45s var(--ease), border-color .45s var(--ease);
}
.site-header.is-stuck{
  padding-block:.5rem;
  border-bottom-color:var(--line-soft);
  box-shadow:0 14px 34px -30px rgba(46,33,28,.55);
}

.header-inner{ display:flex; align-items:center; justify-content:space-between; gap:1.5rem; }
.brand{ display:flex; align-items:center; }
/* Logo artwork is transparent, so it sits on any ground without a blend hack.
   Slight contrast lift keeps the fine line work from washing out on cream. */
.brand img{
  width:var(--logo-h); height:auto;
  filter:saturate(1.08) contrast(1.06);
  transition:width .45s var(--ease), opacity .35s var(--ease);
}
.brand img.brand__menu-logo{ display:none; }
.brand:hover img{ opacity:.85; }
.site-header.is-stuck .brand img{ width:calc(var(--logo-h) * .78); }

/* Nav */
.nav{ display:flex; align-items:center; gap:clamp(1.1rem,2.3vw,2.3rem); }
.nav a{
  font-size:.72rem; letter-spacing:.22em; text-transform:uppercase;
  color:var(--espresso-soft); position:relative; padding-block:.4em;
  transition:color .35s var(--ease);
}
.nav a:hover{ color:var(--burgundy); }
.nav a::after{
  content:""; position:absolute; left:0; bottom:.1em;
  width:100%; height:1px; background:var(--clay);
  transform:scaleX(0); transform-origin:right; transition:transform .45s var(--ease);
}
.nav a:hover::after,.nav a[aria-current="page"]::after{ transform:scaleX(1); transform-origin:left; }
.nav a[aria-current="page"]{ color:var(--burgundy); }
/* The button is a link too — its own colour must win over the nav link rule */
.nav a.btn{ color:var(--btn-fg); padding:.72em 1.45em; }
.nav a.btn::after{ display:none; }

.nav-toggle{ display:none; width:44px; height:44px; align-items:center; justify-content:center; color:var(--espresso); }
.nav-toggle span{ display:block; width:24px; height:1.5px; background:currentColor; position:relative; transition:background .3s; }
.nav-toggle span::before,.nav-toggle span::after{
  content:""; position:absolute; left:0; width:24px; height:1.5px; background:currentColor;
  transition:transform .45s var(--ease), top .3s var(--ease);
}
.nav-toggle span::before{ top:-7px; }
.nav-toggle span::after{ top:7px; }

@media (max-width:900px){
  .nav-toggle{ display:flex; }
  .nav{
    position:fixed; inset:0; z-index:-1;
    flex-direction:column; justify-content:center; gap:2rem;
    background:var(--burgundy-deep);
    clip-path:circle(0% at calc(100% - 44px) 44px);
    transition:clip-path .75s var(--ease);
  }
  .nav a{ color:var(--parchment); font-size:1rem; letter-spacing:.26em; }
  .nav a:hover,.nav a[aria-current="page"]{ color:var(--clay-light); }
  .nav a::after{ background:var(--clay-light); }
  .nav a.btn{ color:var(--btn-fg); font-size:.78rem; margin-top:.5rem; }
  body.nav-open .nav{ clip-path:circle(150% at calc(100% - 44px) 44px); }
  body.nav-open{ overflow:hidden; }
  body.nav-open .nav-toggle{ color:var(--parchment); z-index:2; }
  body.nav-open .nav-toggle span{ background:transparent; }
  body.nav-open .nav-toggle span::before{ top:0; transform:rotate(45deg); }
  body.nav-open .nav-toggle span::after{ top:0; transform:rotate(-45deg); }
  body.nav-open .brand{ position:relative; z-index:2; }
  body.nav-open .site-header .brand img.brand__default{ display:none; }
  body.nav-open .site-header .brand img.brand__menu-logo{
    display:block;
    width:calc(var(--logo-h) * .9);
    border-radius:18px;
    box-shadow:0 14px 34px -22px rgba(0,0,0,.7);
  }
}

/* ---------- Hero — editorial, on cream, continuous with the header ---------- */
.hero{
  position:relative;
  background:var(--header-bg);
  padding-top:calc(var(--header-h) + clamp(1.5rem,4vw,3.25rem));
  padding-bottom:clamp(2.75rem,5.5vw,4.5rem);
  overflow:hidden;
}
/* Warm wash bleeding in from the right, behind the imagery */
.hero::before{
  content:""; position:absolute; z-index:0;
  top:0; right:0; width:min(52%,720px); height:100%;
  background:linear-gradient(200deg, var(--parchment) 0%, rgba(245,235,224,0) 72%);
  pointer-events:none;
}
.hero__inner{
  position:relative; z-index:1;
  display:grid; gap:clamp(2.25rem,5vw,4rem);
  grid-template-columns:1fr; align-items:center;
}
@media (min-width:940px){
  .hero__inner{ grid-template-columns:1.02fr .98fr; gap:clamp(3rem,5vw,5rem); }
}
.hero h1{ max-width:13ch; }
.hero h1 .script{ display:block; }
.hero .lede{ max-width:44ch; margin-top:1.35rem; }
.hero .eyebrow{ margin-bottom:1.1rem; }
.hero__actions{ display:flex; flex-wrap:wrap; gap:.75rem; margin-top:1.9rem; }

/* Small proof row under the buttons */
.hero__proof{
  display:flex; flex-wrap:wrap; gap:.6rem 1.6rem;
  margin-top:2rem; padding-top:1.5rem; border-top:1px solid var(--line-soft);
}
.hero__proof li{
  display:flex; align-items:center; gap:.55em;
  font-size:.72rem; letter-spacing:.16em; text-transform:uppercase; color:var(--muted);
}
.hero__proof svg{ width:13px; height:13px; fill:none; stroke:var(--clay); stroke-width:1.7; flex:none; }

/* Hero imagery */
.hero__media{ position:relative; }
.hero__media .arch{ box-shadow:var(--shadow-lift); }
.hero__media .arch img{ aspect-ratio:4/5; }
.hero__media .media-pair__front{ width:46%; border-width:7px; }

.hero .stamp{ right:-.5rem; top:clamp(1rem,4vw,2.5rem); }
@media (max-width:939px){
  .hero__media{ max-width:520px; margin-inline:auto; width:100%; }
  .hero .stamp{ right:0; top:1rem; }
}

/* Keep the home hero conversion-focused and comfortably within the first
   couple of mobile viewports without sacrificing its food imagery. */
@media (max-width:600px){
  .hero{
    padding-top:calc(var(--header-h) + .75rem);
    padding-bottom:2.5rem;
  }
  .hero__inner{ gap:1.6rem; }
  .hero .eyebrow{
    margin-bottom:.7rem;
    gap:.65em;
    font-size:.62rem;
    letter-spacing:.24em;
    line-height:1.65;
  }
  .hero .eyebrow::before{ width:1.8rem; }
  .hero .h-xl{
    max-width:11ch;
    font-size:clamp(2.8rem,12.5vw,3.35rem);
    line-height:1;
  }
  .hero .lede{
    max-width:none;
    margin-top:1rem;
    font-size:1rem;
    line-height:1.58;
  }
  .hero__actions{
    display:grid;
    grid-template-columns:1.12fr 1fr;
    gap:.6rem;
    margin-top:1.3rem;
  }
  .hero__actions .btn{
    width:100%;
    justify-content:center;
    padding:.9em 1em;
    font-size:.67rem;
    letter-spacing:.14em;
  }
  .hero__proof{
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:.7rem 1rem;
    margin-top:1.35rem;
    padding-top:1.15rem;
  }
  .hero__proof li{
    font-size:.62rem;
    letter-spacing:.11em;
  }
  .hero__proof li:last-child{ grid-column:1 / -1; }
  .hero__media{ max-width:340px; }
  .hero .stamp{
    width:82px;
    padding:.7rem;
    font-size:.48rem;
  }
  .hero .stamp b{ font-size:1.2rem; }
}
@media (max-width:360px){
  .hero__actions{ grid-template-columns:1fr; }
}

/* Page hero (inner pages) */
.page-hero{
  position:relative;
  padding-top:calc(var(--header-h) + clamp(2rem,4.5vw,3.5rem));
  padding-bottom:clamp(2.5rem,5vw,4rem);
  background:var(--burgundy-deep); color:var(--parchment); overflow:hidden;
}
.page-hero::before{
  content:""; position:absolute; inset:0;
  background-image:var(--hero-img); background-size:cover; background-position:center;
  opacity:.24; filter:saturate(.85);
}
.page-hero::after{
  content:""; position:absolute; inset:0;
  background:linear-gradient(to top, var(--burgundy-deep) 4%, rgba(63,14,32,.55) 70%, rgba(63,14,32,.7));
}
.page-hero .wrap{ position:relative; z-index:1; }
.page-hero h1{ color:var(--cream); }
.page-hero .lede{ color:rgba(244,233,220,.82); max-width:50ch; margin-top:1.1rem; }
.page-hero .eyebrow{ color:var(--clay-light); margin-bottom:1rem; }
.page-hero .eyebrow::before{ background:var(--clay-light); }

/* Services hero: use the generous desktop width for an actual order photo
   instead of leaving the right half as an empty burgundy field. */
.page-hero--with-media::before{ opacity:.07; }
.page-hero--with-media .wrap{
  display:grid;
  grid-template-columns:minmax(0,1.05fr) minmax(340px,.95fr);
  align-items:center;
  gap:clamp(2.5rem,6vw,6rem);
}
.page-hero__copy{ min-width:0; }
.page-hero__media{
  justify-self:end;
  width:min(100%,560px);
  overflow:hidden;
  border:7px solid rgba(253,247,240,.12);
  border-radius:50vw 50vw 10px 10px;
  box-shadow:0 28px 70px -38px rgba(0,0,0,.85);
  background:var(--burgundy);
}
.page-hero__media img{
  width:100%;
  aspect-ratio:4/3;
  object-fit:cover;
  object-position:center;
}
@media (max-width:899px){
  .page-hero--with-media .wrap{
    grid-template-columns:1fr;
    gap:2rem;
  }
  .page-hero__media{
    justify-self:start;
    width:min(100%,560px);
  }
  .page-hero__media img{ aspect-ratio:16/10; }
}
@media (max-width:600px){
  .page-hero--with-media .wrap{ gap:1.5rem; }
  .page-hero__media{ border-width:5px; }
}

/* ---------- Marquee ribbon ---------- */
.ribbon{
  background:var(--burgundy); color:var(--parchment);
  padding-block:.85rem; overflow:hidden; white-space:nowrap;
}
.ribbon__track{ display:inline-flex; gap:3.5rem; animation:slide 32s linear infinite; padding-right:3.5rem; }
.ribbon span{
  font-size:.72rem; letter-spacing:.3em; text-transform:uppercase;
  display:inline-flex; align-items:center; gap:3.5rem;
}
.ribbon span::after{ content:"◆"; font-size:.5rem; color:var(--clay-light); letter-spacing:0; }
@keyframes slide{ to{ transform:translateX(-50%); } }
@media (prefers-reduced-motion:reduce){ .ribbon__track{ animation:none; } }

/* ---------- Editorial split ---------- */
.split{
  display:grid; gap:clamp(2rem,4.5vw,4rem);
  grid-template-columns:1fr; align-items:center;
}
.split--top{ align-items:start; }
@media (min-width:900px){
  .split{ grid-template-columns:1fr 1fr; }
  .split--wide-left{ grid-template-columns:1.15fr .85fr; }
  .split--wide-right{ grid-template-columns:.85fr 1.15fr; }
  .split--flip .split__media{ order:2; }
}

/* Arch frame — echoes an oven mouth */
.arch{
  position:relative; overflow:hidden; isolation:isolate;
  border-radius:50vw 50vw 6px 6px;
  box-shadow:var(--shadow-soft);
  background:var(--parchment-2);
}
.arch img{ width:100%; aspect-ratio:3/4; object-fit:cover; transition:transform 1.1s var(--ease); }
.arch:hover img{ transform:scale(1.05); }
.arch--soft{ border-radius:26vw 26vw 6px 6px; }
.frame{ position:relative; overflow:hidden; border-radius:4px; box-shadow:var(--shadow-soft); }
.frame img{ width:100%; object-fit:cover; transition:transform 1.1s var(--ease); }
.frame:hover img{ transform:scale(1.04); }
.frame--tall img{ aspect-ratio:4/5; }
.frame--wide img{ aspect-ratio:16/10; }

/* Layered media pair */
.media-pair{ position:relative; padding-bottom:clamp(2.25rem,6vw,4rem); padding-right:clamp(1.5rem,4.5vw,3rem); }
.media-pair__back{ width:88%; }
.media-pair__front{
  position:absolute; right:0; bottom:0; width:52%;
  border:8px solid var(--cream); box-shadow:var(--shadow-lift);
}
.media-pair__front img{ aspect-ratio:1/1; }

/* Badge stamp */
.stamp{
  position:absolute; z-index:2;
  display:grid; place-items:center; text-align:center;
  width:clamp(96px,13vw,140px); aspect-ratio:1; border-radius:50%;
  background:var(--burgundy); color:var(--parchment);
  font-size:.58rem; letter-spacing:.2em; text-transform:uppercase; line-height:1.7;
  box-shadow:var(--shadow-lift); padding:1rem;
}
.stamp b{ display:block; font-family:var(--display); font-size:1.5rem; letter-spacing:0; text-transform:none; font-weight:400; }

/* ---------- Feature cards ---------- */
.grid{ display:grid; gap:clamp(1.1rem,2.2vw,1.75rem); }
.grid--3{ grid-template-columns:repeat(auto-fit,minmax(min(100%,270px),1fr)); }
.grid--2{ grid-template-columns:repeat(auto-fit,minmax(min(100%,340px),1fr)); }
.grid--4{ grid-template-columns:repeat(auto-fit,minmax(min(100%,215px),1fr)); }

.card{
  position:relative; overflow:hidden;
  background:var(--cream); border:1px solid var(--line); border-radius:4px;
  transition:transform .6s var(--ease), box-shadow .6s var(--ease), border-color .6s var(--ease);
}
.card:hover{ transform:translateY(-6px); box-shadow:var(--shadow-soft); border-color:var(--clay-light); }
.card__media{ overflow:hidden; }
.card__media img{ width:100%; aspect-ratio:4/3; object-fit:cover; transition:transform 1.1s var(--ease); }
.card:hover .card__media img{ transform:scale(1.06); }
.card__body{ padding:clamp(1.15rem,2vw,1.5rem); }
.card__body h3{ margin-bottom:.55rem; }
.card__body p{ font-size:.95rem; color:var(--muted); line-height:1.7; }
.card__index{
  font-family:var(--display); font-size:.9rem; color:var(--clay-ink);
  letter-spacing:.1em; display:block; margin-bottom:.6rem;
}

/* Numbered value list */
.values{ counter-reset:v; display:grid; gap:0; }
.values li{
  counter-increment:v;
  display:grid; grid-template-columns:auto 1fr; gap:clamp(1.25rem,3vw,2.5rem);
  padding-block:clamp(1.15rem,2.2vw,1.6rem);
  border-top:1px solid var(--line);
}
.values li:last-child{ border-bottom:1px solid var(--line); }
.values li::before{
  content:counter(v,decimal-leading-zero);
  font-family:var(--display); font-size:1.1rem; color:var(--clay-ink); padding-top:.25rem;
}
.values h3{ margin-bottom:.3rem; }
.values p{ color:var(--muted); font-size:.98rem; }

/* ---------- Menu / price lists ---------- */
.menu-block{ break-inside:avoid; }
.menu-block__head{
  display:flex; align-items:baseline; justify-content:space-between; gap:1rem;
  padding-bottom:.7rem; margin-bottom:.85rem; border-bottom:1px solid var(--line);
}
.menu-block__head h3{ font-size:clamp(1.4rem,1.1rem + .9vw,1.9rem); }
.menu-block__head span{ font-size:.66rem; letter-spacing:.24em; text-transform:uppercase; color:var(--clay-ink); white-space:nowrap; }

.price-list li{
  display:grid; grid-template-columns:1fr auto; align-items:baseline; gap:.75rem;
  padding-block:.5rem;
}
.price-list li + li{ border-top:1px dotted rgba(192,113,75,.3); }
.price-list .item{ display:flex; flex-wrap:wrap; align-items:baseline; gap:.5rem; }
.price-list .item small{ font-size:.78rem; color:var(--muted); letter-spacing:.02em; }
.price-list .price{
  font-family:var(--display); font-size:1.15rem; color:var(--burgundy); white-space:nowrap;
}
.price-list .price sup{ font-family:var(--body); font-size:.62rem; letter-spacing:.1em; opacity:.65; margin-right:.15em; top:-.5em; }

.menu-note{
  font-size:.85rem; color:var(--muted); font-style:italic;
  padding-top:.75rem; margin-top:.35rem;
}

/* Occasion pills */
.pills{ display:flex; flex-wrap:wrap; gap:.6rem; }
.pills li{
  padding:.5em 1.1em; border:1px solid var(--line); border-radius:100px;
  font-size:.74rem; letter-spacing:.14em; text-transform:uppercase; color:var(--espresso-soft);
  transition:border-color .4s var(--ease), color .4s var(--ease), background .4s var(--ease);
}
.pills li:hover{ border-color:var(--clay); color:var(--burgundy); background:rgba(192,113,75,.07); }
.tone-deep .pills li{ border-color:rgba(244,233,220,.3); color:rgba(244,233,220,.86); }
.tone-deep .pills li:hover{ border-color:var(--clay-light); background:rgba(217,161,131,.14); color:var(--cream); }

/* ---------- Gallery ---------- */
.gallery{ display:grid; grid-template-columns:repeat(2,1fr); gap:clamp(.6rem,1.4vw,1.1rem); }
@media (min-width:760px){ .gallery{ grid-template-columns:repeat(4,1fr); } }
.gallery figure{ position:relative; overflow:hidden; border-radius:3px; background:var(--parchment-2); }
.gallery img{ width:100%; height:100%; aspect-ratio:1; object-fit:cover; transition:transform 1.2s var(--ease), filter .6s var(--ease); }
.gallery figure:hover img{ transform:scale(1.07); }
.gallery figure::after{
  content:attr(data-label);
  position:absolute; inset:auto 0 0 0; padding:1.4rem 1rem .95rem;
  background:linear-gradient(to top, rgba(24,14,10,.86), transparent);
  color:var(--cream); font-size:.66rem; letter-spacing:.22em; text-transform:uppercase;
  opacity:0; transform:translateY(8px); transition:opacity .5s var(--ease), transform .5s var(--ease);
}
.gallery figure:hover::after{ opacity:1; transform:none; }

/* ---------- Video showcase ---------- */
.showreel{ position:relative; border-radius:4px; overflow:hidden; box-shadow:var(--shadow-lift); background:var(--espresso); }
.showreel video{ width:100%; aspect-ratio:16/9; object-fit:cover; display:block; }
.showreel--portrait{ max-width:min(100%,430px); margin-inline:auto; }
.showreel--portrait video{ aspect-ratio:9/16; }
.showreel__play{
  position:absolute; inset:0; display:grid; place-items:center;
  background:linear-gradient(to top, rgba(24,14,10,.6), rgba(24,14,10,.15));
  transition:opacity .5s var(--ease), backdrop-filter .5s var(--ease);
}
.showreel.is-playing .showreel__play{ opacity:0; pointer-events:none; }
.showreel__play i{
  display:grid; place-items:center;
  width:clamp(64px,8vw,90px); aspect-ratio:1; border-radius:50%;
  border:1px solid rgba(251,246,239,.55); color:var(--cream);
  transition:transform .5s var(--ease), background .5s var(--ease), border-color .5s var(--ease);
}
.showreel__play:hover i{ transform:scale(1.08); background:rgba(251,246,239,.14); border-color:var(--cream); }
.showreel__play svg{ width:22px; height:22px; fill:currentColor; margin-left:3px; }
.showreel__caption{
  position:absolute; left:clamp(1rem,3vw,2rem); bottom:clamp(1rem,3vw,2rem);
  color:var(--cream); font-size:.68rem; letter-spacing:.24em; text-transform:uppercase;
  text-shadow:0 2px 12px rgba(0,0,0,.5); pointer-events:none;
  transition:opacity .5s var(--ease);
}
.showreel.is-playing .showreel__caption{ opacity:0; }

/* ---------- Quote ---------- */
.quote{ position:relative; }
.quote blockquote{
  font-family:var(--display); font-style:italic;
  font-size:clamp(1.45rem,1.05rem + 1.6vw,2.35rem); line-height:1.34;
}
.quote cite{
  display:block; margin-top:1.3rem; font-style:normal;
  font-size:.7rem; letter-spacing:.28em; text-transform:uppercase; color:var(--clay-ink);
}
.quote__mark{
  font-family:var(--display); font-size:clamp(4rem,9vw,7.5rem); line-height:.6;
  color:var(--clay); opacity:.16; display:block; margin-bottom:-.2em;
}

/* ---------- Contact ---------- */
.contact-card{
  border:1px solid var(--line); border-radius:4px; background:var(--cream);
  padding:clamp(1.4rem,2.6vw,2rem);
  transition:transform .6s var(--ease), box-shadow .6s var(--ease), border-color .6s var(--ease);
}
.contact-card:hover{ transform:translateY(-5px); box-shadow:var(--shadow-soft); border-color:var(--clay-light); }
.contact-card h3{ margin-bottom:.25rem; }
.contact-card .role{ font-size:.68rem; letter-spacing:.26em; text-transform:uppercase; color:var(--clay-ink); margin-bottom:1.3rem; }
.contact-lines{ display:grid; gap:.75rem; margin-bottom:1.6rem; }
.contact-lines a{
  display:flex; align-items:center; gap:.75rem; font-size:.97rem; color:var(--espresso-soft);
  transition:color .35s var(--ease);
}
.contact-lines a:hover{ color:var(--burgundy); }
.contact-lines svg{ width:16px; height:16px; flex:none; stroke:var(--clay-ink); fill:none; stroke-width:1.5; }

.form{ display:grid; gap:1.05rem; }
.field{ display:grid; gap:.5rem; }
.field label{ font-size:.68rem; letter-spacing:.24em; text-transform:uppercase; color:var(--muted); }
.field input,.field textarea,.field select{
  width:100%; padding:.9em 1.05em;
  background:var(--cream); border:1px solid var(--line); border-radius:3px;
  font-size:.98rem; font-weight:300; transition:border-color .35s var(--ease), box-shadow .35s var(--ease);
}
.field textarea{ min-height:150px; resize:vertical; }
.field input:focus,.field textarea:focus,.field select:focus{
  outline:none; border-color:var(--clay); box-shadow:0 0 0 3px rgba(192,113,75,.14);
}
.field-row{ display:grid; gap:1.05rem; grid-template-columns:1fr; }
@media (min-width:640px){ .field-row{ grid-template-columns:1fr 1fr; } }
.form-note{ font-size:.82rem; color:var(--muted); }

/* ---------- FAQ ---------- */
.faq details{ border-top:1px solid var(--line); }
.faq details:last-of-type{ border-bottom:1px solid var(--line); }
.faq summary{
  list-style:none; cursor:pointer; padding-block:1.05rem;
  display:flex; align-items:center; justify-content:space-between; gap:1.5rem;
  font-family:var(--display); font-size:clamp(1.1rem,1rem + .5vw,1.35rem);
  transition:color .35s var(--ease);
}
.faq summary::-webkit-details-marker{ display:none; }
.faq summary:hover{ color:var(--burgundy); }
.faq summary i{
  flex:none; width:22px; height:22px; position:relative;
}
.faq summary i::before,.faq summary i::after{
  content:""; position:absolute; top:50%; left:0; width:100%; height:1px;
  background:var(--clay); transition:transform .45s var(--ease);
}
.faq summary i::after{ transform:rotate(90deg); }
.faq details[open] summary i::after{ transform:rotate(0); }
.faq details p{ padding-bottom:1.2rem; color:var(--muted); max-width:66ch; font-size:.97rem; }

/* ---------- Footer ---------- */
.site-footer{ background:var(--espresso); color:rgba(244,233,220,.72); padding-top:clamp(2.75rem,5vw,4.25rem); }
.site-footer h2,.site-footer h3{ color:var(--cream); }
.footer-grid{
  display:grid; gap:clamp(2rem,4vw,3rem);
  grid-template-columns:1fr; padding-bottom:clamp(2.25rem,4vw,3.25rem);
}
@media (min-width:820px){ .footer-grid{ grid-template-columns:1.4fr 1fr 1fr; } }
/* Full-colour logo on its own cream tile — rounded, padded, so the artwork
   never touches the corners and reads cleanly against the dark footer. */
.site-footer img.mark{
  display:block; width:132px; height:auto; margin-bottom:1.35rem;
  background:var(--cream);
  border-radius:16px;
  padding:.9rem;
  box-shadow:0 16px 34px -20px rgba(0,0,0,.65);
}
.footer-title{ font-size:.66rem; letter-spacing:.26em; text-transform:uppercase; color:var(--clay-light); margin-bottom:1rem; }
.site-footer li + li{ margin-top:.5rem; }
.site-footer a{ transition:color .35s var(--ease); font-size:.95rem; }
.site-footer a:hover{ color:var(--cream); }
.footer-bottom{
  border-top:1px solid rgba(244,233,220,.14); padding-block:1.2rem;
  display:flex; flex-wrap:wrap; gap:1rem; justify-content:space-between;
  font-size:.76rem; letter-spacing:.04em; color:rgba(244,233,220,.64);
}
.footer-bottom a{
  font-size:inherit;
  color:var(--clay-light);
  border-bottom:1px solid rgba(217,161,131,.4);
}
.footer-bottom a:hover{ color:var(--cream); border-bottom-color:var(--cream); }

/* Floating WhatsApp */
.wa-float{
  position:fixed; right:clamp(1rem,3vw,2rem); bottom:clamp(1rem,3vw,2rem); z-index:90;
  width:56px; height:56px; border-radius:50%;
  display:grid; place-items:center;
  background:#1f7a4c; color:#fff;
  box-shadow:0 18px 34px -14px rgba(31,122,76,.75);
  transform:translateY(120%); transition:transform .6s var(--ease), box-shadow .4s var(--ease);
}
.wa-float.is-visible{ transform:none; }
.wa-float:hover{ box-shadow:0 22px 44px -14px rgba(31,122,76,.9); }
.wa-float svg{ width:26px; height:26px; fill:currentColor; }

/* ---------- Reveal on scroll ---------- */
.js .reveal{ opacity:0; transform:translateY(26px); transition:opacity 1s var(--ease), transform 1s var(--ease); }
.js .reveal.is-in{ opacity:1; transform:none; }
.js .reveal[data-delay="1"]{ transition-delay:.1s; }
.js .reveal[data-delay="2"]{ transition-delay:.2s; }
.js .reveal[data-delay="3"]{ transition-delay:.3s; }
.js .reveal[data-delay="4"]{ transition-delay:.4s; }

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

/* ---------- Hover & interaction polish ---------- */

/* Gallery tiles lift very slightly and warm up */
.gallery figure{ transition:transform .55s var(--ease), box-shadow .55s var(--ease); }
.gallery figure:hover{ transform:translateY(-3px); box-shadow:var(--shadow-soft); z-index:1; }

/* Price rows highlight the whole line, not just the text */
.price-list li{
  margin-inline:-.6rem; padding-inline:.6rem; border-radius:3px;
  transition:background .3s var(--ease);
}
.price-list li:hover{ background:rgba(192,113,75,.06); }
.price-list li:hover .price{ color:var(--clay); }
.price-list .price{ transition:color .3s var(--ease); }

/* Contact rows nudge across on hover */
.contact-lines a{ transition:color .3s var(--ease), transform .3s var(--ease); }
.contact-lines a:hover{ transform:translateX(3px); }
.contact-lines svg{ transition:stroke .3s var(--ease); }
.contact-lines a:hover svg{ stroke:var(--burgundy); }

/* Footer links get a quiet underline rather than only a colour change */
.site-footer li a{
  background-image:linear-gradient(var(--clay-light),var(--clay-light));
  background-repeat:no-repeat; background-position:0 100%; background-size:0 1px;
  transition:background-size .4s var(--ease), color .3s var(--ease);
  padding-bottom:1px;
}
.site-footer li a:hover{ background-size:100% 1px; }

/* Card media warms slightly on hover */
.card__media{ background:var(--parchment-2); }
.card:hover .card__index{ color:var(--burgundy); }
.card__index{ transition:color .4s var(--ease); }

/* Value rows tint on hover */
.values li{ transition:background .35s var(--ease); }
.values li:hover{ background:rgba(192,113,75,.045); }
.values li:hover::before{ color:var(--burgundy); }
.values li::before{ transition:color .35s var(--ease); }
.tone-deep .values li:hover{ background:rgba(217,161,131,.07); }

/* Arch and frame images warm up under the cursor */
.arch::after,.frame::after{
  content:""; position:absolute; inset:0; pointer-events:none;
  background:linear-gradient(to top, rgba(92,23,48,.16), transparent 55%);
  opacity:0; transition:opacity .55s var(--ease);
}
.arch:hover::after,.frame:hover::after{ opacity:1; }

/* Buttons: press feedback */
.btn:active{ transform:translateY(-1px); }
.wa-float:active{ transform:scale(.95); }

/* Consistent focus ring on every interactive element */
a:focus-visible,button:focus-visible,input:focus-visible,
textarea:focus-visible,select:focus-visible,summary:focus-visible{
  outline:2px solid var(--clay); outline-offset:3px; border-radius:2px;
}

/* ---------- Dark sections: legibility overrides ---------- */
/* Prices, rules and small print are all tuned for cream backgrounds by default.
   On the burgundy sections they need light equivalents. */
.tone-deep .price{ color:var(--clay-light); }
.tone-deep .price sup{ opacity:.8; }
.tone-deep .price-list li + li{ border-top-color:rgba(217,161,131,.3); }
.tone-deep .price-list li:hover{ background:rgba(217,161,131,.09); }
.tone-deep .price-list li:hover .price{ color:var(--cream); }
.tone-deep .price-list .item{ color:var(--parchment); }
.tone-deep .price-list .item small{ color:rgba(244,233,220,.66); }
.tone-deep .menu-block__head{ border-bottom-color:rgba(244,233,220,.24); }
.tone-deep .menu-block__head span{ color:var(--clay-light); }
.tone-deep .menu-note{ color:rgba(244,233,220,.62); }
.tone-deep .divider{ color:var(--clay-light); }
.tone-deep .values li{ border-color:rgba(244,233,220,.18); }
.tone-deep .values li::before{ color:var(--clay-light); }
.tone-deep .values li:hover::before{ color:var(--cream); }
.tone-deep .card{ background:rgba(251,246,239,.05); border-color:rgba(244,233,220,.18); }
.tone-deep .card__index{ color:var(--clay-light); }
.tone-deep .link-underline{ color:var(--clay-light); border-bottom-color:rgba(217,161,131,.4); }
.tone-deep .link-underline:hover{ color:var(--cream); border-bottom-color:var(--cream); }
.tone-deep .quote cite{ color:var(--clay-light); }
.tone-deep .quote__mark{ color:var(--clay-light); opacity:.22; }
.tone-deep .faq details,.tone-deep .faq details:last-of-type{ border-color:rgba(244,233,220,.18); }
.tone-deep .faq summary:hover{ color:var(--clay-light); }
.tone-deep .faq summary i::before,.tone-deep .faq summary i::after{ background:var(--clay-light); }

/* Skip link */
.skip{
  position:absolute; left:-9999px; top:0; z-index:200;
  background:var(--burgundy); color:var(--cream); padding:.8em 1.4em; font-size:.8rem;
}
.skip:focus{ left:1rem; top:1rem; }
:focus-visible{ outline:2px solid var(--clay); outline-offset:3px; }
