/* ==========================================================================
   Bombalicious Bakes — light blue / white / black
   Type: Playfair Display (display serif) + Archivo (UI/body) + Archivo Black
   ========================================================================== */

:root {
  /* Brand */
  --sky:        #7cc4ee;   /* light blue — badge fill, accents */
  --sky-soft:   #b7e0f6;
  --sky-tint:   #e7f4fc;
  --sky-panel:  #d3ebf9;
  --blue:       #0f6fb2;   /* deep interactive blue — links, primary CTA */
  --blue-dark:  #0b598f;

  /* Ink — the "bit of black" */
  --ink:        #10161d;
  --ink-2:      #46586a;   /* secondary text on white (blue-grey, ~5.2:1) */
  --ink-3:      #6f8494;

  /* Surfaces */
  --white:      #ffffff;
  --paper:      #f5fafd;   /* off-white with a breath of blue */
  --line:       #d5e6f1;
  --line-soft:  #e6f1f8;

  /* Effects */
  --shadow-sm: 0 2px 10px -4px rgba(16, 60, 92, .22);
  --shadow-md: 0 18px 40px -22px rgba(16, 60, 92, .40);
  --shadow-lg: 0 40px 80px -40px rgba(11, 60, 95, .55);
  --shadow-hard: 0 6px 0 var(--ink);

  --r-sm: 12px;
  --r-md: 20px;
  --r-lg: 32px;
  --r-xl: 44px;

  --wrap: 1180px;
  --pad: clamp(20px, 5vw, 64px);

  --ff-display: "Playfair Display", Georgia, serif;
  --ff-ui: "Archivo", system-ui, -apple-system, sans-serif;
  --ff-black: "Archivo Black", "Archivo", sans-serif;
}

/* -------- reset -------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: var(--ff-ui);
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; }
h1, h2, h3, h4 { font-family: var(--ff-display); font-weight: 800; line-height: 1.05; letter-spacing: -0.02em; }
:focus-visible { outline: 3px solid var(--blue); outline-offset: 3px; border-radius: 4px; }

/* -------- layout helpers -------- */
.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--pad); }
.section { padding-block: clamp(56px, 8vw, 104px); }
.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--ff-ui); font-weight: 700; font-size: 12px;
  letter-spacing: .18em; text-transform: uppercase; color: var(--blue);
}
.eyebrow::before { content: ""; width: 22px; height: 2px; background: var(--sky); border-radius: 2px; }
.lead { font-size: clamp(1.05rem, 1.4vw, 1.22rem); color: var(--ink-2); max-width: 60ch; }

/* -------- buttons -------- */
.btn {
  --bg: var(--blue); --fg: #fff; --bd: var(--blue);
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 52px; padding: 0 30px; border-radius: 999px;
  background: var(--bg); color: var(--fg); border: 2px solid var(--bd);
  font-family: var(--ff-ui); font-weight: 700; font-size: .95rem;
  letter-spacing: .02em; white-space: nowrap;
  transition: transform .16s ease, box-shadow .16s ease, background .16s ease, color .16s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn:active { transform: translateY(0); }
.btn--ink { --bg: var(--ink); --fg: #fff; --bd: var(--ink); box-shadow: 0 5px 0 rgba(16,22,29,.28); }
.btn--ink:hover { box-shadow: 0 8px 22px -8px rgba(16,22,29,.6); }
.btn--ghost { --bg: transparent; --fg: var(--ink); --bd: var(--ink); }
.btn--ghost:hover { --bg: var(--ink); --fg: #fff; }
.btn--sky { --bg: var(--sky); --fg: var(--ink); --bd: var(--ink); box-shadow: var(--shadow-hard); }
.btn--sky:hover { transform: translate(-1px,-1px); box-shadow: 8px 8px 0 var(--ink); }
.btn--on-dark { --bg: transparent; --fg: #fff; --bd: rgba(255,255,255,.4); }
.btn--on-dark:hover { --bg: #fff; --fg: var(--ink); --bd: #fff; }
.btn svg { width: 18px; height: 18px; flex: none; }

/* -------- header / nav -------- */
.site-head {
  position: sticky; top: 0; z-index: 60;
  background: rgba(255,255,255,.82);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line-soft);
}
.nav { display: flex; align-items: center; justify-content: space-between; gap: 20px; height: 74px; }
.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand__mark {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--sky); border: 3px solid var(--ink);
  display: grid; place-items: center; flex: none;
}
.brand__mark svg { width: 20px; height: 20px; }
.brand__name { font-family: var(--ff-black); font-size: 1.15rem; letter-spacing: -.02em; color: var(--ink); }
.nav__links { display: flex; align-items: center; gap: 4px; }
.nav__links a {
  padding: 9px 16px; border-radius: 999px; font-weight: 600; font-size: .95rem; color: var(--ink-2);
  transition: background .15s, color .15s;
}
.nav__links a:hover { background: var(--sky-tint); color: var(--ink); }
.nav__links a.is-active { color: var(--ink); background: var(--sky-tint); }
.nav__cta { display: inline-flex; align-items: center; gap: 18px; }
.nav__toggle { display: none; width: 46px; height: 46px; border: 1px solid var(--line); border-radius: 12px; background: #fff; align-items: center; justify-content: center; }
.nav__toggle svg { width: 22px; height: 22px; }

/* -------- hero -------- */
.hero { padding: clamp(16px, 3vw, 30px) var(--pad) clamp(30px, 5vw, 56px); }
.hero__panel {
  position: relative; overflow: hidden;
  max-width: var(--wrap); margin-inline: auto;
  border-radius: var(--r-xl);
  background:
    radial-gradient(120% 90% at 50% -10%, #ffffff 0%, var(--sky-tint) 42%, var(--sky-panel) 100%);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
  padding: clamp(30px, 6vw, 64px) clamp(20px, 5vw, 56px) clamp(40px, 6vw, 70px);
  display: flex; flex-direction: column; align-items: center; text-align: center;
  gap: clamp(30px, 4vw, 46px);
}
.hero__watermark {
  position: absolute; left: 50%; bottom: -6%; transform: translateX(-50%);
  font-family: var(--ff-black); font-size: clamp(6rem, 22vw, 20rem);
  color: #fff; opacity: .55; letter-spacing: -.04em; line-height: 1; pointer-events: none; z-index: 0;
  white-space: nowrap;
}
.hero__inner { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; gap: clamp(28px, 4vw, 44px); }
.hero__copy { display: flex; flex-direction: column; align-items: center; gap: 22px; max-width: 640px; }
.hero__tagline {
  font-family: var(--ff-display); font-style: italic; font-weight: 500;
  font-size: clamp(1.25rem, 3vw, 1.7rem); line-height: 1.4; color: var(--ink);
  text-wrap: balance;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

/* -------- badge (recolored provided logo) -------- */
.badge-stage {
  position: relative; width: clamp(260px, 42vw, 420px); aspect-ratio: 1;
  display: grid; place-items: center;
}
.badge-ring { position: absolute; inset: 0; border-radius: 50%; }
.badge-ring--1 { border: 22px solid var(--sky); }
.badge-ring--2 { border: 12px solid #fff; opacity: .7; }
.badge {
  position: relative; width: 100%; height: 100%; border-radius: 50%;
  background: var(--sky);
  border: 8px solid var(--ink);
  box-shadow: 0 46px 90px -34px rgba(11,60,95,.6), inset 0 -28px 60px -30px rgba(11,60,95,.28);
  overflow: hidden; display: grid; place-items: center;
}
.badge__dash { position: absolute; inset: 15px; border-radius: 50%; border: 2px dashed rgba(16,22,29,.55); }
.badge__hair { position: absolute; inset: 25px; border-radius: 50%; border: 1px solid rgba(16,22,29,.28); }
.badge__content {
  position: relative; display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 2.4%; width: 100%; height: 100%; padding: 11% 12%; color: var(--ink); text-align: center;
}
.badge__hat { position: relative; width: 32%; aspect-ratio: 1.36 / 1; margin-bottom: 2%; }
.badge__hat span { position: absolute; background: var(--sky); border: 6px solid var(--ink); box-sizing: border-box; }
.badge__hat .p1 { left: 0; bottom: 26%; width: 42%; aspect-ratio: 1; border-radius: 50%; }
.badge__hat .p2 { right: 0; bottom: 26%; width: 42%; aspect-ratio: 1; border-radius: 50%; }
.badge__hat .p3 { left: 50%; top: 0; transform: translateX(-50%); width: 48%; aspect-ratio: 1; border-radius: 50%; }
.badge__hat .p4 { left: 50%; bottom: 0; transform: translateX(-50%); width: 56%; height: 34%; border-radius: 4px 4px 8px 8px; }
.badge__hat .band { left: 50%; bottom: 34%; transform: translateX(-50%); width: 46%; height: 8px; border: 0 !important; }
.badge__word {
  font-family: var(--ff-black); font-size: clamp(1.4rem, 6vw, 2.9rem); line-height: .92;
  letter-spacing: -.028em;
}
.badge__sub { font-family: var(--ff-ui); font-weight: 700; font-size: clamp(.7rem, 1.9vw, 1.05rem); letter-spacing: .5em; text-indent: .5em; }
.badge__rule { display: flex; align-items: center; gap: 8px; width: 74%; margin: 2% 0; }
.badge__rule i { flex: 1; height: 2px; background: var(--ink); }
.badge__rule b { width: 6px; height: 6px; background: var(--ink); transform: rotate(45deg); }
.badge__motto { font-family: var(--ff-display); font-weight: 600; font-size: clamp(.85rem, 2.4vw, 1.3rem); letter-spacing: .04em; white-space: nowrap; }
.badge__est { font-family: var(--ff-ui); font-weight: 600; font-size: clamp(.55rem, 1.4vw, .72rem); letter-spacing: .2em; opacity: .72; margin-top: 2%; }

/* badge entrance — one authored moment */
@media (prefers-reduced-motion: no-preference) {
  .badge-stage .badge { animation: badge-in .9s cubic-bezier(.2,1.1,.28,1) both; }
  .badge-float { animation: badge-float 7s ease-in-out 1s infinite; }
  .badge-ring--1 { animation: blast 1s cubic-bezier(.15,.85,.25,1) .15s both; }
  .badge-ring--2 { animation: blast 1.2s cubic-bezier(.15,.85,.25,1) .25s both; }
}
@keyframes badge-in { from { opacity: 0; transform: scale(.6); } to { opacity: 1; transform: scale(1); } }
@keyframes badge-float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@keyframes blast { from { opacity: 0; transform: scale(.35); } 60% { opacity: 1; } to { opacity: var(--o, .7); transform: scale(1); } }
.badge-ring--1 { --o: 1; }

/* -------- split hero (three-panel: nav / media / intro) -------- */
.split-hero {
  display: grid;
  grid-template-columns: minmax(268px, 330px) 1.1fr 1fr;
  min-height: 100vh;
}

/* left: logo + vertical nav */
.split-aside {
  display: flex; flex-direction: column; align-items: center;
  padding: clamp(32px, 5vh, 60px) 26px clamp(28px, 4vh, 48px);
  background: var(--paper);
  border-right: 1px solid var(--line);
}
.split-aside__logo { width: min(230px, 78%); }
.split-aside__logo .badge-stage { width: 100%; }
/* constrain the badge to the rail slot and scale its type to the badge, not the viewport */
.split-aside__logo .badge-float,
.split-aside__logo .badge { width: 100%; height: 100%; }
.split-aside__logo .badge { container-type: inline-size; }
.split-aside__logo .badge__word  { font-size: 10.5cqw; }
.split-aside__logo .badge__sub   { font-size: 4cqw; }
.split-aside__logo .badge__motto { font-size: 5cqw; }
.split-aside__logo .badge__est   { font-size: 2.5cqw; }
.split-nav { display: flex; flex-direction: column; align-items: stretch; width: 100%; margin: auto 0; }
.split-nav a {
  display: block; text-align: center;
  font-family: var(--ff-ui); font-weight: 700; font-size: .82rem;
  letter-spacing: .2em; text-transform: uppercase; color: var(--ink-3);
  padding: 15px 8px; transition: color .16s, letter-spacing .16s;
}
.split-nav a:hover, .split-nav a.is-active { color: var(--ink); letter-spacing: .24em; }
.split-aside__cta { width: 100%; }
.split-aside__cta .btn { width: 100%; }

/* center: media with play button */
.split-media { position: relative; background: #000; overflow: hidden; min-height: 56vh; }
.split-media video, .split-media__poster { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.split-media video { z-index: 1; }
.play-btn {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%);
  z-index: 3; width: clamp(76px, 8vw, 100px); aspect-ratio: 1; border-radius: 50%;
  border: 3px solid rgba(255,255,255,.92); background: rgba(16,22,29,.18);
  backdrop-filter: blur(2px); display: grid; place-items: center; color: #fff;
  transition: transform .2s ease, background .2s ease, opacity .3s ease;
}
.play-btn:hover { transform: translate(-50%,-50%) scale(1.07); background: var(--sky); color: var(--ink); border-color: var(--ink); }
.play-btn svg { width: 34%; height: 34%; margin-left: 8%; }
.play-btn.hide { opacity: 0; pointer-events: none; }

/* right: heading + intro copy */
.split-intro {
  display: flex; flex-direction: column; justify-content: center; align-items: flex-start;
  gap: 18px; padding: clamp(44px, 6vw, 92px) clamp(28px, 4.5vw, 84px);
}
.split-intro__kicker {
  font-family: var(--ff-ui); font-weight: 700; font-size: clamp(1.2rem, 2.4vw, 1.75rem);
  letter-spacing: .05em; text-transform: uppercase; color: var(--blue); line-height: 1.1;
  margin-bottom: 8px;
}
.split-intro p { font-size: clamp(1rem, 1.2vw, 1.1rem); color: var(--ink-2); max-width: 46ch; }
.split-intro p.strong { color: var(--ink); font-weight: 700; font-family: var(--ff-display); font-size: clamp(1.15rem, 1.6vw, 1.4rem); font-style: italic; margin-top: 4px; }
.split-intro__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 18px; }

/* homepage: header hidden over hero, revealed on scroll */
body.split-home .site-head { position: fixed; left: 0; right: 0; top: 0; transform: translateY(-100%); transition: transform .3s ease; }
body.split-home .site-head.show { transform: translateY(0); }

/* -------- trust strip -------- */
.strip { background: var(--ink); color: #fff; }
.strip__row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.strip__cell { padding: 30px clamp(14px, 2vw, 26px); border-left: 1px solid rgba(255,255,255,.12); }
.strip__cell:first-child { border-left: 0; }
.strip__k { font-family: var(--ff-display); font-size: 1.25rem; font-weight: 800; margin-bottom: 4px; }
.strip__k span { color: var(--sky); }
.strip__v { font-size: .9rem; color: #b9c9d6; }

/* -------- generic section heading -------- */
.head { display: flex; flex-direction: column; gap: 16px; margin-bottom: clamp(30px, 4vw, 52px); }
.head h2 { font-size: clamp(2rem, 5vw, 3.4rem); }
.head--center { align-items: center; text-align: center; }
.head--center .lead { text-align: center; }
.head--split { flex-direction: row; align-items: flex-end; justify-content: space-between; gap: 24px; flex-wrap: wrap; }

/* -------- feature split (occasion / cakes) -------- */
.split { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(28px, 5vw, 68px); align-items: center; }
.split--rev .split__media { order: 2; }
.split__media { position: relative; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-md); border: 1px solid var(--line); }
.split__media img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/3.4; }
.split__badge {
  position: absolute; left: 20px; bottom: 20px; background: var(--sky); color: var(--ink);
  border: 2px solid var(--ink); border-radius: 999px; padding: 8px 18px; font-weight: 700; font-size: .85rem;
  box-shadow: var(--shadow-hard);
}
.split__body { display: flex; flex-direction: column; gap: 22px; align-items: flex-start; }
.split__body h2 { font-size: clamp(1.9rem, 4vw, 3rem); }

/* -------- pick cards -------- */
.picks { background: var(--paper); }
.pick-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(16px, 2vw, 24px); }
.pick {
  position: relative; border-radius: var(--r-md); overflow: hidden; background: #fff;
  border: 1px solid var(--line); box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease;
}
.pick:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.pick__img { aspect-ratio: 1; overflow: hidden; }
.pick__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.pick:hover .pick__img img { transform: scale(1.06); }
.pick__cap { padding: 16px 18px 20px; display: flex; flex-direction: column; gap: 3px; }
.pick__tag { font-size: .72rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--blue); }
.pick__name { font-family: var(--ff-display); font-size: 1.2rem; font-weight: 800; }

/* -------- video -------- */
.video-band { background: linear-gradient(180deg, var(--sky-tint), #fff); }
.video-wrap {
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 64px); align-items: center;
}
.video-frame {
  position: relative; border-radius: var(--r-lg); overflow: hidden; border: 8px solid var(--ink);
  box-shadow: var(--shadow-lg); background: #000; max-width: 360px; margin-inline: auto; width: 100%;
}
.video-frame video { width: 100%; aspect-ratio: 9/16; object-fit: cover; display: block; }
.video-copy { display: flex; flex-direction: column; gap: 20px; align-items: flex-start; }

/* -------- quote band -------- */
.quote {
  border-radius: var(--r-lg);
  background: radial-gradient(120% 140% at 15% 0%, var(--sky) 0%, var(--sky-soft) 55%, var(--sky-tint) 100%);
  border: 1px solid var(--line);
  padding: clamp(40px, 7vw, 88px) clamp(24px, 5vw, 72px); text-align: center;
}
.quote p { font-family: var(--ff-display); font-weight: 800; font-size: clamp(1.7rem, 4.5vw, 3.2rem); line-height: 1.1; color: var(--ink); text-wrap: balance; }
.quote span { display: block; margin-top: 18px; font-family: var(--ff-ui); font-weight: 600; font-size: .95rem; letter-spacing: .04em; color: var(--blue-dark); }

/* -------- info + map -------- */
.info-grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: clamp(28px, 5vw, 56px); align-items: stretch; }
.info-card { display: flex; flex-direction: column; gap: 26px; }
.info-list { display: flex; flex-direction: column; gap: 4px; }
.info-row { display: flex; gap: 16px; align-items: flex-start; padding: 16px 0; border-bottom: 1px solid var(--line-soft); }
.info-row:last-child { border-bottom: 0; }
.info-ic {
  flex: none; width: 44px; height: 44px; border-radius: 12px; background: var(--sky-tint);
  color: var(--blue); display: grid; place-items: center; border: 1px solid var(--line);
}
.info-ic svg { width: 22px; height: 22px; }
.info-row h4 { font-family: var(--ff-ui); font-weight: 700; font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-3); margin-bottom: 3px; }
.info-row a, .info-row p { font-size: 1.05rem; font-weight: 600; color: var(--ink); }
.info-row a:hover { color: var(--blue); }
.socials { display: flex; gap: 12px; flex-wrap: wrap; }
.social {
  display: inline-flex; align-items: center; gap: 9px; padding: 10px 16px; border-radius: 999px;
  border: 1px solid var(--line); background: #fff; font-weight: 600; font-size: .9rem; color: var(--ink);
  transition: background .15s, transform .15s;
}
.social:hover { background: var(--sky-tint); transform: translateY(-2px); }
.social svg { width: 18px; height: 18px; }
.map-frame { position: relative; border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow-md); min-height: 380px; }
.map-frame iframe { width: 100%; height: 100%; min-height: 380px; border: 0; display: block; }

/* -------- footer -------- */
.foot { background: var(--ink); color: #fff; padding-top: clamp(56px, 8vw, 96px); overflow: hidden; }
.foot__top { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,.12); }
.foot__blurb { color: #b9c9d6; max-width: 34ch; margin-top: 16px; }
.foot__col h5 { font-family: var(--ff-ui); font-weight: 700; font-size: .78rem; letter-spacing: .14em; text-transform: uppercase; color: var(--sky); margin-bottom: 16px; }
.foot__col a, .foot__col p { display: block; color: #cdd9e2; padding: 6px 0; font-size: .96rem; }
.foot__col a:hover { color: #fff; }
.foot__word { padding: 40px 0 10px; }
.foot__word svg { display: block; width: 100%; height: auto; }
.foot__word text { font-family: var(--ff-black); fill: #fff; font-size: 150px; letter-spacing: -.02em; }
.foot__bar { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; padding-bottom: 34px; color: #8ba0af; font-size: .85rem; }
.foot__social { display: flex; gap: 10px; }
.foot__social a { width: 40px; height: 40px; border-radius: 50%; border: 1px solid rgba(255,255,255,.2); display: grid; place-items: center; color: #fff; transition: background .15s, color .15s; }
.foot__social a:hover { background: var(--sky); color: var(--ink); border-color: var(--sky); }
.foot__social svg { width: 18px; height: 18px; }

/* -------- page hero (inner pages) -------- */
.page-hero { background: radial-gradient(120% 120% at 50% -20%, #fff, var(--sky-tint) 60%, var(--sky-panel)); border-bottom: 1px solid var(--line); }
.page-hero__in { padding-block: clamp(48px, 8vw, 96px); text-align: center; display: flex; flex-direction: column; align-items: center; gap: 18px; }
.page-hero h1 { font-size: clamp(2.4rem, 7vw, 4.6rem); }
.page-hero .lead { text-align: center; }

/* -------- about -------- */
.about-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(28px, 5vw, 64px); align-items: center; }
.about-img { border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow-md); }
.about-img img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/4.4; }
.prose { display: flex; flex-direction: column; gap: 20px; }
.prose p { font-size: 1.08rem; color: var(--ink-2); max-width: 62ch; }
.prose p.first::first-letter { font-family: var(--ff-display); font-weight: 800; font-size: 3.4em; float: left; line-height: .78; padding: 6px 12px 0 0; color: var(--blue); }
.value-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 10px; }
.value { padding: 26px; border-radius: var(--r-md); background: var(--paper); border: 1px solid var(--line); }
.value h3 { font-size: 1.25rem; margin-bottom: 8px; }
.value p { font-size: .96rem; color: var(--ink-2); }

/* -------- menu -------- */
.menu-hero-note { display: inline-flex; align-items: center; gap: 10px; background: var(--sky-tint); border: 1px solid var(--line); border-radius: 999px; padding: 10px 20px; font-weight: 600; color: var(--blue-dark); }
.menu-cols { column-count: 2; column-gap: clamp(28px, 5vw, 60px); }
@media (max-width: 780px) { .menu-cols { column-count: 1; } }
.menu-cat { break-inside: avoid; margin-bottom: clamp(30px, 4vw, 48px); }
.menu-cat__head { display: flex; align-items: baseline; gap: 12px; padding-bottom: 14px; margin-bottom: 6px; border-bottom: 2px solid var(--ink); }
.menu-cat__head h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
.menu-cat__head span { font-family: var(--ff-ui); font-size: .78rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--blue); }
.menu-item { display: flex; align-items: baseline; gap: 10px; padding: 11px 0; }
.menu-item__name { font-weight: 600; color: var(--ink); }
.menu-item__note { font-size: .82rem; color: var(--ink-3); font-weight: 500; }
.menu-item__dots { flex: 1; border-bottom: 2px dotted var(--line); transform: translateY(-4px); min-width: 16px; }
.menu-item__price { font-family: var(--ff-display); font-weight: 800; font-size: 1.1rem; color: var(--ink); white-space: nowrap; }
.menu-cta { margin-top: 10px; border-radius: var(--r-lg); background: var(--ink); color: #fff; padding: clamp(30px, 5vw, 54px); display: flex; align-items: center; justify-content: space-between; gap: 28px; flex-wrap: wrap; }
.menu-cta h3 { color: #fff; font-size: clamp(1.5rem, 3.5vw, 2.4rem); }
.menu-cta p { color: #b9c9d6; margin-top: 8px; max-width: 44ch; }

/* -------- contact -------- */
.contact-grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: clamp(28px, 5vw, 56px); align-items: start; }
.contact-actions { display: flex; flex-direction: column; gap: 14px; margin: 6px 0 4px; }
.contact-actions .btn { width: 100%; }
.hours-block__title { font-family: var(--ff-ui); font-weight: 700; font-size: .78rem; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-3); margin-bottom: 4px; }
.hours-card { max-width: 640px; margin-inline: auto; background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-lg); padding: clamp(18px, 3vw, 32px) clamp(20px, 4vw, 44px); }
.hours { display: flex; flex-direction: column; }
.hours-row { display: flex; justify-content: space-between; gap: 18px; padding: 13px 10px; border-bottom: 1px solid var(--line-soft); font-weight: 600; border-radius: 10px; }
.hours-row:last-child { border-bottom: 0; }
.hours-row span:last-child { color: var(--ink-2); text-align: right; }
.hours-row.is-today { background: var(--sky-tint); border-bottom-color: transparent; }
.hours-row.is-today span:last-child { color: var(--blue-dark); }
.hours-row.is-today span:first-child::after { content: " · Today"; color: var(--blue); font-weight: 700; }

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

/* -------- responsive -------- */
/* split hero: below desktop, drop the left rail (the sticky header carries nav) */
@media (max-width: 1040px) {
  .split-hero { grid-template-columns: 1fr 1fr; min-height: auto; }
  .split-aside { display: none; }
  .split-media { min-height: 62vh; }
  body.split-home .site-head { position: sticky; transform: none; }
}
@media (max-width: 760px) {
  .split-hero { grid-template-columns: 1fr; }
  .split-media { min-height: 52vh; }
  .split-intro { padding: clamp(36px, 8vw, 56px) var(--pad); }
}

@media (max-width: 940px) {
  .split, .video-wrap, .info-grid, .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .split--rev .split__media { order: 0; }
  .pick-grid { grid-template-columns: repeat(2, 1fr); }
  .foot__top { grid-template-columns: 1fr 1fr; }
  .foot__brand-col { grid-column: 1 / -1; }
  .strip__row { grid-template-columns: repeat(2, 1fr); }
  .strip__cell:nth-child(odd) { border-left: 0; }
  .value-row { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .nav__links, .nav__cta .btn { display: none; }
  .nav__toggle { display: inline-flex; }
  .site-head.open .nav__links {
    display: flex; position: absolute; top: 74px; left: 0; right: 0; flex-direction: column;
    background: #fff; border-bottom: 1px solid var(--line); padding: 12px var(--pad) 20px; gap: 4px;
    box-shadow: var(--shadow-md);
  }
  .site-head.open .nav__links a { padding: 14px 16px; }
  .foot__top { grid-template-columns: 1fr; }
}
@media (max-width: 460px) {
  .pick-grid { grid-template-columns: 1fr 1fr; }
  .menu-cta, .foot__bar { flex-direction: column; align-items: flex-start; }
}
