/* ============================================================
   Gelateria Ponte Pietra — design system
   Ink · Panna · Oro antico  /  Cormorant Garamond + Jost
   ============================================================ */

:root {
  /* color */
  --ink:        oklch(0.22 0.012 60);     /* warm near-black */
  --ink-2:      oklch(0.28 0.014 55);
  --ink-soft:   oklch(0.40 0.012 60);
  --cream:      oklch(0.957 0.013 86);    /* panna page bg */
  --cream-2:    oklch(0.975 0.010 86);
  --card:       oklch(0.992 0.006 86);
  --gold:       oklch(0.685 0.085 78);    /* antique gold */
  --gold-deep:  oklch(0.585 0.082 72);
  --gold-soft:  oklch(0.80 0.065 82);
  --line:       color-mix(in oklch, var(--gold) 32%, transparent);
  --line-ink:   color-mix(in oklch, var(--ink) 12%, transparent);
  --muted:      oklch(0.50 0.012 62);
  --muted-on-ink: oklch(0.74 0.012 80);

  /* type */
  --serif: "Cormorant Garamond", "Times New Roman", serif;
  --sans:  "Jost", "Helvetica Neue", Arial, sans-serif;

  /* metrics */
  --maxw: 1240px;
  --gutter: clamp(20px, 5vw, 72px);
  --radius: 4px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 84px; }

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { display: block; max-width: 100%; }

/* layout images fill their frame (replaces the prototype's <image-slot fit="cover">) */
.hero__media img,
.story__media img,
.maker__portrait img,
.maker__band img,
.gallery__grid img,
.cakes .cake img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- type ---------- */
h1, h2, h3 { font-family: var(--serif); font-weight: 500; margin: 0; line-height: 1.04; letter-spacing: 0.005em; }

.eyebrow {
  font-family: var(--sans);
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-deep);
  display: inline-flex;
  align-items: center;
  gap: 0.9em;
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 1px;
  background: var(--gold);
  display: inline-block;
}
.eyebrow.centered { justify-content: center; }
.eyebrow.centered::after {
  content: "";
  width: 26px;
  height: 1px;
  background: var(--gold);
  display: inline-block;
}

.lead { font-size: clamp(18px, 2.2vw, 22px); line-height: 1.6; color: var(--ink-soft); }

/* elegant italic accent */
.accent { font-family: var(--serif); font-style: italic; font-weight: 500; font-size: 1.07em; letter-spacing: 0.005em; color: var(--gold-deep); }
.menu .accent { color: var(--gold-soft); }

/* ---------- layout ---------- */
.wrap { max-width: var(--maxw); margin: 0 auto; padding-inline: var(--gutter); }
section { position: relative; }
.section-pad { padding-block: clamp(72px, 11vw, 150px); }

.center { text-align: center; }

/* ---------- buttons ---------- */
.btn {
  --bg: var(--ink);
  --fg: var(--cream);
  display: inline-flex;
  align-items: center;
  gap: 0.65em;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--fg);
  background: var(--bg);
  padding: 16px 30px;
  border: 1px solid var(--bg);
  border-radius: 0;
  cursor: pointer;
  white-space: nowrap;
  transition: background .35s ease, color .35s ease, border-color .35s ease, transform .35s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn--gold { --bg: var(--gold-deep); --fg: var(--cream-2); border-color: var(--gold-deep); }
.btn--gold:hover { --bg: var(--gold); }
.btn--ghost {
  --bg: transparent; --fg: var(--ink);
  border-color: var(--line-ink);
}
.btn--ghost:hover { border-color: var(--ink); }
.btn--on-dark { --bg: transparent; --fg: var(--cream); border-color: color-mix(in oklch, var(--cream) 40%, transparent); }
.btn--on-dark:hover { --bg: var(--cream); --fg: var(--ink); border-color: var(--cream); }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px var(--gutter);
  transition: background .4s ease, box-shadow .4s ease, padding .4s ease;
}
.nav__brand { display: flex; align-items: center; text-decoration: none; color: inherit; }
.nav__name { display: flex; flex-direction: column; align-items: center; line-height: 1; gap: 3px; }
.nav__name b { font-family: var(--serif); font-weight: 600; font-size: 21px; letter-spacing: 0.06em; }
.nav__over { font-family: var(--sans); font-size: 8px; letter-spacing: 0.36em; text-transform: uppercase; color: var(--gold-deep); }
.nav__under { font-family: var(--serif); font-style: italic; font-size: 11px; letter-spacing: 0.04em; color: var(--muted); }

.nav__links { display: flex; align-items: center; gap: 34px; }
.nav__links a {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
  position: relative;
  padding: 4px 0;
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 100%; height: 1px; background: var(--gold);
  transform: scaleX(0); transform-origin: left; transition: transform .35s ease;
}
.nav__links a:hover::after { transform: scaleX(1); }

.nav__right { display: flex; align-items: center; gap: 20px; }

.lang {
  display: inline-flex;
  border: 1px solid var(--line-ink);
  border-radius: 100px;
  overflow: hidden;
  font-family: var(--sans);
}
.lang button {
  appearance: none; border: 0; background: transparent;
  font: inherit; cursor: pointer;
  font-size: 11px; font-weight: 500; letter-spacing: 0.1em;
  padding: 6px 11px; color: var(--muted);
  transition: background .3s, color .3s;
}
.lang button.active { background: var(--ink); color: var(--cream); }

/* nav on transparent hero (top) */
.nav--top { background: transparent; }
.nav--top .nav__links a,
.nav--top .nav__name b,
.nav--top .lang button { color: var(--cream); }
.nav--top .nav__over { color: var(--gold-soft); }
.nav--top .nav__under { color: color-mix(in oklch, var(--cream) 60%, transparent); }
.nav--top .nav__links a::after { background: var(--gold-soft); }
.nav--top .lang { border-color: color-mix(in oklch, var(--cream) 38%, transparent); }
.nav--top .lang button.active { background: var(--cream); color: var(--ink); }
.nav--top .nav__burger span { background: var(--cream); }

/* nav scrolled */
.nav--solid {
  background: color-mix(in oklch, var(--cream) 88%, transparent);
  backdrop-filter: saturate(1.4) blur(14px);
  box-shadow: 0 1px 0 var(--line), 0 10px 30px -22px rgba(0,0,0,.4);
  padding-block: 12px;
}

.nav__burger { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 6px; }
.nav__burger span { width: 24px; height: 1.5px; background: var(--ink); transition: .3s; }

/* mobile menu */
.mobile-menu {
  position: fixed; inset: 0; z-index: 49;
  background: var(--ink);
  display: flex; flex-direction: column; justify-content: center; align-items: center;
  gap: 26px;
  opacity: 0; pointer-events: none; transform: translateY(-12px);
  transition: opacity .4s ease, transform .4s ease;
}
.mobile-menu.open { opacity: 1; pointer-events: auto; transform: none; }
.mobile-menu a {
  font-family: var(--serif); font-size: 30px; color: var(--cream); text-decoration: none;
}
.mobile-menu a:hover { color: var(--gold-soft); }

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; min-height: 100svh; display: grid; align-items: center; justify-items: center; text-align: center; overflow: hidden; }
.hero__media { position: absolute; inset: 0; z-index: 0; }
.hero__media img { width: 100%; height: 100%; }
.hero__scrim {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    radial-gradient(120% 90% at 50% 42%, rgba(20,17,14,.30) 0%, rgba(20,17,14,.62) 78%, rgba(20,17,14,.78) 100%),
    linear-gradient(to bottom, rgba(20,17,14,.42) 0%, rgba(20,17,14,.12) 30%, rgba(20,17,14,.55) 100%);
}
.hero__inner { position: relative; z-index: 2; padding: 96px 0 64px; pointer-events: none; display: flex; flex-direction: column; align-items: center; }
.hero__inner .btn { pointer-events: auto; }
.hero__est { color: var(--gold-soft); font-family: var(--sans); font-size: 12.5px; font-weight: 500; letter-spacing: 0.34em; text-transform: uppercase; }
.hero__logo { width: clamp(280px, 46vw, 560px); height: auto; margin: 26px 0 4px; filter: drop-shadow(0 6px 30px rgba(0,0,0,.45)); }
.hero__rule { display: flex; align-items: center; gap: 16px; color: var(--gold-soft); font-size: 13px; margin: 10px 0 4px; }
.hero__rule span { display: block; width: clamp(40px, 9vw, 96px); height: 1px; background: linear-gradient(90deg, transparent, var(--gold-soft)); }
.hero__rule span:last-child { background: linear-gradient(90deg, var(--gold-soft), transparent); }
.hero__sub { color: color-mix(in oklch, var(--cream) 90%, transparent); max-width: 52ch; margin-top: 14px; font-size: clamp(16px,1.7vw,19px); line-height: 1.65; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; justify-content: center; }
.hero__scroll {
  position: absolute; z-index: 2; bottom: 26px; left: 50%; transform: translateX(-50%);
  color: var(--cream); font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase;
  display: flex; flex-direction: column; align-items: center; gap: 10px; opacity: .85; pointer-events: none;
}
.hero__scroll i { width: 1px; height: 38px; background: linear-gradient(var(--gold-soft), transparent); display: block; }

/* ============================================================
   GENERIC SECTION HEADER
   ============================================================ */
.s-head { max-width: 720px; }
.s-head.center { margin-inline: auto; }
.s-head h2 { font-size: clamp(34px, 5.2vw, 62px); margin-top: 18px; }
.s-head p { margin-top: 18px; }

/* ============================================================
   INTRO / STORY
   ============================================================ */
.story { background: var(--cream); }
.story__grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(36px, 6vw, 92px); align-items: center; }
.story__media { position: relative; }
.story__media img { width: 100%; aspect-ratio: 4/5; }
.story__media .tag {
  position: absolute; bottom: -22px; left: -22px;
  background: var(--ink); color: var(--cream);
  padding: 20px 26px; max-width: 220px;
}
.story__media .tag b { font-family: var(--serif); font-size: 40px; display: block; color: var(--gold-soft); line-height: 1; }
.story__media .tag span { font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted-on-ink); }
.story h2 { font-size: clamp(34px, 5vw, 60px); }
.story p + p { margin-top: 18px; }

.pillars { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); border-block: 1px solid var(--line); margin-top: clamp(48px,7vw,90px); }
.pillar { background: var(--cream); padding: 34px 28px; }
.pillar b { font-family: var(--serif); font-size: 26px; display: block; }
.pillar span { display: block; font-size: 13px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold-deep); margin-bottom: 12px; font-weight: 500; }
.pillar p { font-size: 15px; color: var(--muted); margin: 0; line-height: 1.6; }

/* ============================================================
   LA GELATAIA / LILIA
   ============================================================ */
.maker { background: var(--cream-2); }
.maker__grid { display: grid; grid-template-columns: 0.92fr 1.08fr; gap: clamp(36px,6vw,86px); align-items: center; }
.maker__portrait { position: relative; }
.maker__portrait img { width: 100%; aspect-ratio: 1/1; }
.maker__portrait::after { content: ""; position: absolute; inset: 0; border: 1px solid var(--line); transform: translate(16px, 16px); z-index: -1; }
.maker__text h2 { font-size: clamp(32px,4.6vw,56px); margin-top: 18px; }
.maker__text .lead { margin-top: 18px; }
.maker__text p + p { margin-top: 16px; }
.maker__sign { font-family: var(--serif); font-style: italic; font-size: clamp(26px,3vw,34px); color: var(--gold-deep); margin-top: 26px !important; }
.maker__band { position: relative; margin: clamp(46px,6vw,80px) 0 0; overflow: hidden; }
.maker__band img { width: 100%; height: clamp(320px, 52vw, 560px); filter: grayscale(0.1); }
.maker__band figcaption { position: absolute; inset: auto 0 0 0; padding: clamp(30px,5vw,64px) clamp(24px,5vw,72px) clamp(26px,4vw,46px); background: linear-gradient(to top, rgba(20,17,14,.86), rgba(20,17,14,.30) 70%, transparent); display: flex; flex-direction: column; gap: 12px; }
.maker__quote { font-family: var(--serif); font-style: italic; font-weight: 500; font-size: clamp(24px,3.4vw,42px); line-height: 1.2; color: var(--cream); max-width: 22ch; }
.maker__cap { font-family: var(--sans); font-size: 11.5px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold-soft); }

/* ============================================================
   GUSTI / MENU
   ============================================================ */
.menu { background: var(--ink); color: var(--cream); }
.menu .eyebrow { color: var(--gold-soft); }
.menu .s-head h2 { color: var(--cream); }
.menu .s-head p { color: var(--muted-on-ink); }

.signature { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(20px,3vw,34px); margin-top: clamp(46px,6vw,72px); }
.sig-card {
  position: relative;
  border: 1px solid color-mix(in oklch, var(--cream) 14%, transparent);
  padding: 0;
  overflow: hidden;
  display: grid;
  grid-template-columns: 150px 1fr;
  align-items: stretch;
  transition: border-color .4s ease, transform .4s ease;
}
.sig-card:hover { border-color: var(--gold); transform: translateY(-3px); }
.sig-card img { width: 150px; height: 100%; min-height: 150px; object-fit: cover; }
.sig-card__ph {
  width: 150px; min-height: 150px; align-self: stretch;
  background:
    radial-gradient(120% 120% at 30% 20%, color-mix(in oklch, var(--gold) 22%, transparent), transparent 70%),
    color-mix(in oklch, var(--cream) 8%, transparent);
  border-right: 1px solid color-mix(in oklch, var(--cream) 12%, transparent);
  display: grid; place-items: center;
}
.sig-card__ph::after { content: "✦"; color: color-mix(in oklch, var(--gold-soft) 60%, transparent); font-size: 20px; }
.sig-card__body { padding: 26px 28px; }
.sig-card__no { font-family: var(--serif); font-size: 14px; color: var(--gold-soft); letter-spacing: 0.1em; }
.sig-card h3 { font-size: 30px; margin: 4px 0 8px; color: var(--cream); }
.sig-card h3 em { font-style: italic; color: var(--gold-soft); }
.sig-card p { font-size: 14.5px; color: var(--muted-on-ink); margin: 0; line-height: 1.6; }
.sig-card__tags { display: flex; gap: 8px; margin-top: 14px; flex-wrap: wrap; }
.sig-card__tags span { font-size: 10.5px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold-soft); border: 1px solid color-mix(in oklch, var(--gold) 40%, transparent); padding: 4px 9px; }

.menu__list { margin-top: clamp(48px,6vw,76px); display: grid; grid-template-columns: 1fr 1fr; gap: 8px clamp(40px,7vw,100px); }
.menu__col-title { grid-column: 1 / -1; font-family: var(--sans); font-size: 12px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold-soft); margin: 26px 0 12px; padding-bottom: 12px; border-bottom: 1px solid color-mix(in oklch,var(--cream) 14%, transparent); }
.menu__col-title:first-child { margin-top: 0; }
.menu__col-title .sub { font-family: var(--serif); font-style: italic; text-transform: none; letter-spacing: 0.01em; font-size: 15px; color: var(--muted-on-ink); margin-left: 12px; }
.flavor {
  display: flex; align-items: baseline; gap: 12px;
  padding: 11px 0;
  border-bottom: 1px solid color-mix(in oklch, var(--cream) 8%, transparent);
}
.flavor b { font-family: var(--serif); font-weight: 500; font-size: 21px; color: var(--cream); white-space: nowrap; }
.flavor i { flex: 1; border-bottom: 1px dotted color-mix(in oklch,var(--cream) 22%, transparent); transform: translateY(-4px); font-style: normal; }
.flavor span { font-size: 13px; color: var(--muted-on-ink); }
.flavor em { font-style: italic; color: var(--gold-soft); font-size: 13px; font-family: var(--serif); }
.flavor .mk { font-family: var(--sans); font-size: 9.5px; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; text-decoration: none; padding: 3px 8px; border-radius: 100px; white-space: nowrap; align-self: center; }
.flavor .mk--v { color: var(--gold-soft); border: 1px solid color-mix(in oklch, var(--gold) 42%, transparent); }
.flavor .mk--g { color: var(--muted-on-ink); border: 1px solid color-mix(in oklch, var(--cream) 22%, transparent); }

/* ============================================================
   GALLERY
   ============================================================ */
.gallery { background: var(--cream-2); }
.gallery__grid { display: grid; grid-template-columns: repeat(3, 1fr); grid-auto-rows: clamp(180px, 24vw, 250px); gap: 14px; margin-top: clamp(44px,5vw,64px); }
.gallery__grid img { width: 100%; height: 100%; }
.g-tall { grid-row: span 2; }
.g-wide { grid-column: span 2; }

/* ============================================================
   TORTE  (showcase)
   ============================================================ */
.cakes { background: var(--cream); }
.cakes__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(16px, 2.2vw, 26px); margin-top: clamp(48px, 6vw, 78px); }
.cakes .cake { margin: 0; }
.cakes .cake img { width: 100%; aspect-ratio: 3/4; }
.cakes figcaption { font-family: var(--sans); font-size: 11.5px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold-deep); margin-top: 16px; text-align: center; }
.cakes__config { margin-top: clamp(48px,6vw,76px); padding-top: clamp(40px,5vw,60px); border-top: 1px solid var(--line); }
.config__head { max-width: 640px; }
.config__head h3 { font-size: clamp(28px,3.6vw,42px); margin-top: 16px; }
.config__head p { margin-top: 14px; color: var(--muted); font-size: 16px; }
.config__form { margin-top: clamp(30px,4vw,44px); background: var(--card); border: 1px solid var(--line); padding: clamp(26px,3.5vw,44px); }
.config__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px clamp(24px,3vw,40px); }
.field { display: flex; flex-direction: column; gap: 8px; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold-deep); font-weight: 500; }
.field input, .field select, .field textarea {
  font-family: var(--sans); font-size: 15.5px; color: var(--ink);
  background: var(--cream-2);
  border: 1px solid var(--line-ink);
  border-radius: 0;
  padding: 13px 14px;
  transition: border-color .3s, background .3s;
}
.field textarea { resize: vertical; min-height: 78px; line-height: 1.5; }
.field input::placeholder, .field textarea::placeholder { color: color-mix(in oklch, var(--muted) 75%, transparent); }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--gold); background: var(--card); }
.seg { display: flex; gap: 0; border: 1px solid var(--line-ink); }
.seg label { flex: 1; display: flex; align-items: center; justify-content: center; gap: 8px; padding: 12px 10px; cursor: pointer; font-size: 13.5px; color: var(--muted); transition: background .3s, color .3s; text-align: center; }
.seg label + label { border-left: 1px solid var(--line-ink); }
.seg input { position: absolute; opacity: 0; width: 0; height: 0; }
.seg label:has(input:checked) { background: var(--ink); color: var(--cream); }
.config__foot { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 20px; margin-top: 28px; padding-top: 24px; border-top: 1px solid var(--line); }
.config__total { display: flex; flex-direction: column; gap: 4px; }
.config__total span { font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold-deep); font-weight: 500; }
.config__total b { font-family: var(--serif); font-size: 38px; line-height: 1; color: var(--ink); font-weight: 500; }
.config__foot .btn { min-width: 230px; justify-content: center; }
.config__note { margin-top: 18px; font-size: 12.5px; color: var(--muted); }

/* ============================================================
   BUSINESS / COLLAB
   ============================================================ */
.biz { background: var(--ink); color: var(--cream); overflow: hidden; }
.biz__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px,6vw,90px); align-items: center; }
.biz .eyebrow { color: var(--gold-soft); }
.biz h2 { color: var(--cream); font-size: clamp(32px,4.6vw,56px); }
.biz p { color: var(--muted-on-ink); margin-top: 18px; }
.biz__cta { margin-top: 32px; display: flex; gap: 14px; flex-wrap: wrap; }
.biz__points { display: grid; gap: 1px; background: color-mix(in oklch,var(--cream) 12%, transparent); border: 1px solid color-mix(in oklch,var(--cream) 12%, transparent); }
.biz__points div { background: var(--ink); padding: 26px 28px; }
.biz__points b { font-family: var(--serif); font-size: 22px; color: var(--cream); display: block; }
.biz__points span { font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold-soft); }
.biz__points p { margin-top: 10px; font-size: 14.5px; }

/* ============================================================
   VISIT / MAP
   ============================================================ */
.visit { background: var(--cream-2); }
.visit__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px,5vw,72px); align-items: stretch; }
.visit__info h2 { font-size: clamp(32px,4.6vw,56px); }
.hours { margin-top: 30px; display: grid; gap: 0; }
.hours div { display: flex; justify-content: space-between; padding: 13px 0; border-bottom: 1px solid var(--line); font-size: 15px; }
.hours div:first-child { border-top: 1px solid var(--line); }
.hours span:first-child { color: var(--ink); }
.hours span:last-child { color: var(--muted); font-variant-numeric: tabular-nums; }
.hours div.today span:first-child { color: var(--gold-deep); font-weight: 500; }
.contact-row { display: flex; flex-wrap: wrap; gap: 28px; margin-top: 30px; }
.contact-row a { color: var(--ink); text-decoration: none; display: flex; flex-direction: column; gap: 3px; }
.contact-row a span { font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold-deep); }
.contact-row a b { font-family: var(--serif); font-size: 21px; font-weight: 500; transition: color .3s; }
.contact-row a:hover b { color: var(--gold-deep); }
.visit__map { min-height: 420px; border: 1px solid var(--line); position: relative; overflow: hidden; background: var(--cream); }
.visit__map iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; filter: grayscale(0.35) sepia(0.12) contrast(0.95); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--ink); color: var(--cream); padding-block: clamp(56px,7vw,90px) 30px; }
.footer__top { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; padding-bottom: 48px; border-bottom: 1px solid color-mix(in oklch,var(--cream) 12%, transparent); }
.footer__brand b { font-family: var(--serif); font-size: 30px; display: block; }
.footer__logo { width: 260px; max-width: 80%; height: auto; margin-bottom: 4px; }
.footer__brand span { font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold-soft); }
.footer__brand p { color: var(--muted-on-ink); margin-top: 18px; max-width: 34ch; font-size: 15px; }
.footer__col h4 { font-family: var(--sans); font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold-soft); font-weight: 500; margin: 0 0 18px; }
.footer__col a, .footer__col p { display: block; color: var(--muted-on-ink); text-decoration: none; font-size: 15px; margin-bottom: 11px; transition: color .3s; }
.footer__col a:hover { color: var(--cream); }
.socials { display: flex; gap: 12px; margin-top: 4px; }
.socials a { width: 40px; height: 40px; border: 1px solid color-mix(in oklch,var(--cream) 22%, transparent); border-radius: 50%; display: grid; place-items: center; color: var(--cream); transition: .3s; }
.socials a:hover { background: var(--gold-deep); border-color: var(--gold-deep); }
.socials svg { width: 17px; height: 17px; }
.footer__bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 26px; font-size: 12.5px; color: var(--muted-on-ink); flex-wrap: wrap; gap: 10px; }
.footer__bottom a { color: var(--muted-on-ink); text-decoration: none; }
.footer__bottom a:hover { color: var(--cream); }

/* ============================================================
   reveal animation
   ============================================================ */
@media (prefers-reduced-motion: no-preference) {
  .reveal { opacity: 0; transform: translateY(26px); transition: opacity .9s cubic-bezier(.2,.7,.2,1), transform .9s cubic-bezier(.2,.7,.2,1); }
  .reveal.in { opacity: 1; transform: none; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
  .nav__links { display: none; }
  .nav__burger { display: flex; }
  .story__grid, .biz__grid, .visit__grid, .maker__grid { grid-template-columns: 1fr; }
  .signature, .menu__list { grid-template-columns: 1fr; }
  .cakes__grid { grid-template-columns: repeat(2, 1fr); }
  .pillars { grid-template-columns: 1fr 1fr; }
  .biz__points { grid-template-columns: 1fr 1fr; }
  .gallery__grid { grid-template-columns: repeat(2, 1fr); }
  .gallery__grid .g-wide { grid-column: span 2; }
  .story__media { max-width: 460px; }
  .footer__top { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
}
@media (max-width: 560px) {
  body { font-size: 16px; }
  .cakes__grid { gap: 14px; }
  .config__grid { grid-template-columns: 1fr; }
  .config__foot { flex-direction: column; align-items: stretch; }
  .config__foot .btn { width: 100%; }
  .pillars, .biz__points { grid-template-columns: 1fr; }
  .gallery__grid { grid-template-columns: 1fr; grid-auto-rows: 220px; }
  .g-wide, .g-tall { grid-column: auto; grid-row: auto; }
  .sig-card { grid-template-columns: 1fr; }
  .sig-card img, .sig-card__ph { width: 100%; height: 170px; min-height: 0; border-right: 0; }
  .contact-row { gap: 20px; }
  .hero h1 { font-size: clamp(46px, 15vw, 80px); }
  .nav { padding-inline: 20px; }
}
