/* Marigold — base styles. Tailwind via CDN handles utility classes; this file holds
   brand tokens, typography, motion, and the bits that don't belong in utilities. */

:root {
  /* 6 text/surface tokens */
  --canvas:     #F9EAD0;    /* warmer cream — default background (v2) */
  --cream-dark: #EFDFBA;    /* slightly darker cream — alt section rhythm */
  --off-white:  #F5EEE4;    /* warmer alt surface */
  --ink:        #3A2F25;    /* dark grey brown — DEFAULT body text */
  --display:    #C1492F;    /* terracotta — display titles, CTAs, hairlines */
  --turquoise:  #0F4F3D;    /* muted dark turquoise — secondary subheadings */
  --green:      #4D7333;    /* green — labels, meta, accents */

  /* Compatibility aliases — map every legacy token to one of the 5 above */
  --ink-soft: #3A2F25;
  --ink-mute: #3A2F25;
  --heading-green: #0F4F3D;
  --heading-green-deep: #0F4F3D;
  --title-terra: #C1492F;
  --accent-green: #4D7333;
  --accent-green-deep: #1F2F1B; /* footer bg only */
  --footer-bg: #1A3315;         /* deep green forest — per CLAUDE.md */
  --terra: #C1492F;
  --terra-light: #C1492F;
  --rose: #C1492F;
  --marigold: #C1492F;

  --serif-display: 'Cormorant Garamond', 'Times New Roman', serif;
  --display-font:  'Cormorant Garamond', 'Times New Roman', serif;
  --serif-font:    'Cormorant Garamond', 'Times New Roman', serif;
  --serif:         'Cormorant Garamond', 'Times New Roman', serif;
  --sans-font:     'DM Sans', system-ui, sans-serif;
  --sans:          'DM Sans', system-ui, sans-serif;

  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);

  --shadow-card: 0 10px 30px -10px rgba(184, 55, 24, 0.12), 0 4px 12px -6px rgba(42, 29, 24, 0.08);
  --shadow-floating: 0 24px 60px -20px rgba(42, 29, 24, 0.22), 0 8px 24px -12px rgba(184, 55, 24, 0.18);
  --shadow-sticky: 0 6px 24px -12px rgba(42, 29, 24, 0.18);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  font-feature-settings: "ss01", "ss02";
  font-size: 16px;
}

body {
  margin: 0;
  background: var(--canvas);
  color: var(--ink);
  font-family: var(--sans-font);
  font-size: 1rem;
  line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* v2 heading scale — base elements + utility classes */
h1, .h1 {
  font-family: var(--display-font); font-weight: 400;
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.1; letter-spacing: -0.01em;
  margin: 0;
}
h1 em, .h1 em { font-style: italic; color: var(--display); font-weight: 400; }
h2, .h2 {
  font-family: var(--display-font); font-weight: 400;
  font-size: clamp(1.35rem, 2.8vw, 2.2rem);
  line-height: 1.15; letter-spacing: -0.01em;
  color: var(--display);
  margin: 0;
}
h2 em, .h2 em { font-style: italic; color: var(--display); font-weight: 400; }
h3, .h3 {
  font-family: var(--display-font); font-weight: 500;
  font-size: clamp(1.375rem, 2.2vw, 1.75rem);
  line-height: 1.3;
  margin: 0;
}
h3 em, .h3 em { font-style: italic; color: var(--display); font-weight: 500; }

img, picture { max-width: 100%; display: block; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
a { color: inherit; text-decoration: none; }

::selection { background: rgba(184, 55, 24, 0.22); color: var(--ink); }

/* Typography */
.serif { font-family: var(--serif); font-weight: 400; letter-spacing: -0.01em; }
.display { font-family: var(--serif); font-weight: 350; letter-spacing: -0.03em; line-height: 1.02; }
.overline {
  font-family: var(--sans);
  font-style: normal;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--turquoise);
}
.eyebrow {
  font-family: var(--sans-font);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--turquoise);
}

/* v2 prose styles */
.lede {
  font-family: var(--serif-font); font-style: italic; font-weight: 400;
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 60ch;
}
.body-prose {
  font-family: var(--sans-font); font-weight: 400;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--ink);
}

/* Container */
.wrap { width: 100%; max-width: 1280px; margin: 0 auto; padding: 0 24px; }
.wrap-narrow { width: 100%; max-width: 880px; margin: 0 auto; padding: 0 24px; }
.wrap-reading { width: 100%; max-width: 720px; margin: 0 auto; padding: 0 24px; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 12px 22px; border-radius: 999px;
  font-family: var(--sans); font-weight: 500; font-size: 13.5px;
  letter-spacing: 0.08em; text-transform: uppercase;
  transition: transform 280ms var(--ease-spring), background-color 240ms var(--ease-out), color 240ms var(--ease-out), box-shadow 280ms var(--ease-out);
  will-change: transform;
}
.btn-primary {
  background: var(--display); color: var(--off-white);
  box-shadow: 0 10px 22px -10px rgba(184, 55, 24, 0.45);
}
.btn-primary:hover { background: var(--display); transform: translateY(-1px); }
/* Header Enquire CTA — green pill per v2 */
.header-cta .btn-primary {
  background: var(--green); color: var(--off-white);
  box-shadow: 0 2px 8px rgba(77, 115, 51, 0.30), 0 6px 20px rgba(77, 115, 51, 0.18);
}
.header-cta .btn-primary:hover { background: #3D5D29; transform: translateY(-1px); }
.btn-primary:active { transform: translateY(0); }
.btn-primary:focus-visible { outline: 2px solid rgba(35, 87, 20, 0.4); outline-offset: 3px; }

.btn-ghost {
  background: transparent; color: var(--ink);
  border: 1px solid rgba(35, 87, 20, 0.3);
}
.btn-ghost:hover { background: rgba(35, 87, 20, 0.06); border-color: var(--ink); }

/* Header — v2 grid layout: logo left, nav centered, CTA right */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 60;
  display: grid; grid-template-columns: 1fr auto 1fr;
  grid-template-rows: 156px;
  align-items: center;
  padding: 0 3rem;
  transition: grid-template-rows 320ms var(--ease-out), background-color 320ms var(--ease-out), backdrop-filter 320ms var(--ease-out), box-shadow 320ms var(--ease-out);
}
.site-header.scrolled { grid-template-rows: 116px; }
.site-header .logo { justify-self: start; }
.site-header .nav { justify-self: center; }
.site-header .header-cta { justify-self: end; display: inline-flex; align-items: center; gap: 12px; }
@media (max-width: 900px) {
  .site-header { grid-template-columns: auto 1fr auto; padding: 0 1.25rem; grid-template-rows: 84px; }
  .site-header.scrolled { grid-template-rows: 84px; }
}
.site-header.transparent { background: transparent; }
.site-header.scrolled {
  background: rgba(249, 234, 208, 0.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 1px 8px rgba(28, 26, 20, 0.05);
}
/* Logo — single source (MARIGOLD LOGO FILE-03), recolored to white over dark via filter */
.site-header .logo {
  display: inline-flex;
  align-items: center;
  height: 150px;
  transition: height 280ms var(--ease-out);
}
.site-header .logo img.logo-img {
  height: 150px;
  width: auto;
  display: block;
  transition: height 280ms var(--ease-out), filter 280ms var(--ease-out);
}
.site-header.scrolled .logo,
.site-header.scrolled .logo img.logo-img { height: 110px; }
@media (max-width: 768px) {
  .site-header .logo,
  .site-header .logo img.logo-img { height: 96px; }
  .site-header.scrolled .logo,
  .site-header.scrolled .logo img.logo-img { height: 80px; }
}

/* Default (light bg, scrolled cream bg) — render colored as-is */
.site-header .logo img.logo-img { filter: none; }

/* Theme-dark (header over hero photo or footer) — recolor to white + soft halo for contrast */
.site-header.theme-dark:not(.scrolled) .logo img.logo-img {
  filter: brightness(0) invert(1) drop-shadow(0 2px 8px rgba(0,0,0,0.45));
}

/* When scrolled the header sits on cream — always show colored */
.site-header.scrolled .logo img.logo-img { filter: none; }

/* Theme-aware nav colors when transparent */
.site-header.theme-dark.transparent  .nav a { color: var(--off-white); opacity: 0.85; }
.site-header.theme-light.transparent .nav a { color: var(--ink);       opacity: 0.85; }
.site-header.theme-dark.transparent  .nav a:hover,
.site-header.theme-light.transparent .nav a:hover { color: var(--display); opacity: 1; }

.nav {
  display: flex; align-items: center; gap: 28px;
  white-space: nowrap;
}
.nav a {
  font-size: 12.5px; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 400;
  transition: color 220ms var(--ease-out), opacity 220ms var(--ease-out);
  position: relative;
}
@media (max-width: 1100px) { .nav { gap: 20px; } .nav a { font-size: 12px; letter-spacing: 0.12em; } }
.nav a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -6px; height: 1px;
  background: var(--display); transform: scaleX(0); transform-origin: left;
  transition: transform 320ms var(--ease-spring);
}
.nav a:hover::after, .nav a.active::after { transform: scaleX(1); }

.site-header.transparent .nav a { color: var(--off-white); opacity: 0.85; }
.site-header.transparent .nav a:hover { color: var(--display); opacity: 1; }
.site-header.transparent .nav a.active { color: var(--display); opacity: 1; }
.site-header.scrolled .nav a { color: var(--ink); opacity: 1; }
.site-header.scrolled .nav a:hover { color: var(--display); }
.site-header.scrolled .nav a.active { color: var(--display); }

.header-cta { position: relative; }

.menu-toggle { display: none; }
.mobile-menu { display: none; }

@media (max-width: 900px) {
  .site-header { padding: 14px 18px; }
  .nav { display: none; }
  .menu-toggle { display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px; }
  .menu-toggle span { display: block; width: 22px; height: 1px; background: var(--off-white); position: relative; }
  .menu-toggle span::before, .menu-toggle span::after { content: ""; position: absolute; left: 0; right: 0; height: 1px; background: inherit; transition: transform 240ms var(--ease-spring); }
  .menu-toggle span::before { top: -7px; }
  .menu-toggle span::after { top: 7px; }
  .site-header.scrolled .menu-toggle span,
  .site-header.scrolled .menu-toggle span::before,
  .site-header.scrolled .menu-toggle span::after { background: var(--ink); }
  body.menu-open .menu-toggle span { background: transparent; }
  body.menu-open .menu-toggle span::before { transform: translateY(7px) rotate(45deg); background: var(--ink); }
  body.menu-open .menu-toggle span::after { transform: translateY(-7px) rotate(-45deg); background: var(--ink); }

  .mobile-menu {
    position: fixed; inset: 0; z-index: 55;
    background: var(--off-white);
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    gap: 28px; padding: 60px 24px;
    opacity: 0; pointer-events: none; transform: translateY(-8px);
    transition: opacity 260ms var(--ease-out), transform 260ms var(--ease-out);
  }
  body.menu-open .mobile-menu { display: flex; opacity: 1; pointer-events: auto; transform: translateY(0); }
  .mobile-menu a {
    font-family: var(--serif); font-size: 32px; color: var(--turquoise); letter-spacing: -0.02em;
  }
  .mobile-menu .btn { font-size: 13px; }
  .header-cta .btn { padding: 10px 16px; font-size: 11.5px; }
}

/* Hero — base + .full variant for offering pages */
.hero {
  position: relative; width: 100%;
  height: 100vh; min-height: 640px;
  display: flex; align-items: flex-end;
  color: var(--off-white);
  overflow: hidden;
}
.hero.full { min-height: 100vh; }
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background-size: cover; background-repeat: no-repeat; background-position: center;
  transform: scale(1.06);
  will-change: transform;
}
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to bottom, rgba(28, 26, 20, .38) 0%, rgba(28, 26, 20, .18) 50%, rgba(28, 26, 20, .65) 100%);
}
.hero-photo { position: absolute; inset: 0; }
.hero-photo img { width: 100%; height: 100%; object-fit: cover; }
.hero-photo::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.55) 18%, rgba(0,0,0,0.18) 38%, rgba(0,0,0,0) 65%),
    linear-gradient(to bottom, rgba(0,0,0,0.22) 0%, rgba(0,0,0,0) 28%);
}
.hero-photo .tint {
  position: absolute; inset: 0;
  background: var(--display); mix-blend-mode: multiply; opacity: 0.10;
}
.hero-inner {
  position: relative; z-index: 2;
  width: 100%; padding: 0 32px 60px;
  max-width: 1280px; margin: 0 auto;
}
/* Centered variant — rotating word sits at center bottom of hero */
.hero-centered { align-items: flex-end; }
.hero-centered .hero-inner { text-align: center; padding-bottom: 56px; }
.hero-centered .hero-line { display: block; }
@media (max-width: 720px) {
  .hero-centered .hero-inner { padding-bottom: 44px; }
}

/* Three-stage hero — 3 stacked bg layers cross-fade with single rotating word */
.hero-stage { align-items: flex-end; }
.hero-stage .hero-bg {
  position: absolute; inset: 0; z-index: 0;
  opacity: 0;
  transition: opacity 1100ms var(--ease-out);
  transform: none;
  background-image: none;
  will-change: opacity;
}
.hero-stage .hero-bg.active { opacity: 1; }
.hero-stage .hero-bg picture,
.hero-stage .hero-bg img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.hero-stage .hero-bg .hero-tint {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom,
    rgba(28, 26, 20, 0.30) 0%,
    rgba(28, 26, 20, 0.15) 50%,
    rgba(28, 26, 20, 0.55) 100%);
}

.hero-words {
  position: absolute;
  bottom: 8vh; left: 0; right: 0;
  padding: 0 6vw;
  margin: 0;
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 2rem;
  z-index: 4;
  pointer-events: none;
}
.hero-word {
  font-family: var(--display-font);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.65rem, 3.75vw, 3.375rem);
  line-height: 0.95;
  letter-spacing: -0.01em;
  color: #F5EEE4;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.5), 0 1px 3px rgba(0, 0, 0, 0.35);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 900ms var(--ease-out), transform 900ms var(--ease-out);
  will-change: opacity, transform;
  white-space: nowrap;
  pointer-events: none;
}
.hero-word.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.hero-word-1 { text-align: left; }
.hero-word-2 { text-align: center; }
.hero-word-3 { text-align: right; }

@media (max-width: 768px) {
  .hero-words {
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    padding: 0 24px;
    bottom: 10vh;
  }
  .hero-word {
    font-size: clamp(1.35rem, 6vw, 2.175rem);
    text-align: center !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-word { transition: none !important; }
}
.hero-overline {
  color: rgba(250, 247, 242, 0.78);
  margin-bottom: 22px;
  display: inline-block;
}
.hero-line {
  font-family: var(--serif);
  font-weight: 350;
  letter-spacing: -0.03em;
  line-height: 1.0;
  font-size: clamp(40px, 6.4vw, 100px);
  margin: 0;
  display: block;
  color: var(--off-white);
  white-space: nowrap;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.45), 0 1px 3px rgba(0, 0, 0, 0.3);
}
@media (max-width: 720px) {
  .hero-line { font-size: clamp(36px, 9vw, 56px); white-space: normal; }
}
.hero-line .rotator {
  position: relative;
  display: inline-block;
  vertical-align: baseline;
  min-height: 1em;
}
.hero-line .rotator-item {
  display: inline-block;
  color: var(--off-white);
  transition: transform 600ms var(--ease-spring), opacity 600ms var(--ease-out);
  will-change: transform, opacity;
}
.hero-line .rotator-item.out { opacity: 0; transform: translateY(6px); }
.hero-line .rotator-item.in { opacity: 1; transform: translateY(0); }

.hero-small {
  height: 70vh; min-height: 520px;
}

@media (max-width: 720px) {
  .hero { height: 85vh; min-height: 560px; }
  .hero-inner { padding: 0 22px 60px; }
  .hero-small { height: 64vh; min-height: 460px; }
}

/* Sections */
section { position: relative; }
.section { padding: 120px 0; overflow: hidden; }
.section-tight { padding: 80px 0; overflow: hidden; }
@media (max-width: 720px) {
  .section { padding: 80px 0; }
  .section-tight { padding: 56px 0; }
}

.section-overline {
  display: inline-flex; align-items: center; gap: 0;
  color: var(--turquoise);
}
.section-overline.plain { color: var(--turquoise); }

.section-heading {
  font-family: var(--display-font); font-weight: 400;
  font-size: clamp(1.35rem, 2.8vw, 2.2rem);
  line-height: 1.15; letter-spacing: -0.01em;
  color: var(--display);
  margin: 0;
}
/* Inline color accents */
.accent-terra { color: var(--display); }
.accent-rose  { color: var(--display); }
.accent-green { color: var(--green); }
.accent-green-deep { color: var(--heading-green-deep); }
.accent-marigold { color: var(--display); }
.accent-italic { font-style: italic; }

/* About head — eyebrow only, no rule (legacy support) */
.about-head {
  display: flex; flex-direction: column; align-items: center;
  margin: 0 auto 32px;
}
.about-label {
  font-family: var(--sans-font); font-weight: 500;
  font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--turquoise);
  text-align: center;
  margin: 0 0 28px;
}

/* Section eyebrow — v2 .eyebrow scale */
.section-eyebrow {
  font-family: var(--sans-font); font-weight: 500;
  font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--turquoise);
  margin: 0;
}
.section-eyebrow.center { text-align: center; }

/* Founder bio paragraph — italic Cormorant to match About paragraph treatment */
.chef-bio {
  font-family: var(--serif-display); font-style: italic; font-weight: 400;
  font-size: clamp(18px, 1.8vw, 22px);
  line-height: 1.7; letter-spacing: -0.005em;
  color: var(--ink);
  max-width: 54ch;
  margin: 18px 0 0;
}

/* About block — v2-style premium treatment */
.about-block {
  max-width: 780px; margin: 0 auto;
  text-align: center;
}
/* Rev-34 · widen About measure so each paragraph sits in ~2 lines (overrides the 52ch rule) */
.about-block .about-lead { max-width: 780px; }
.about-lead {
  font-family: var(--serif-display); font-style: italic; font-weight: 400;
  font-size: clamp(18px, 1.6vw, 23px);
  line-height: 1.45; letter-spacing: -0.01em;
  color: var(--ink);
  max-width: 720px; margin: 0 auto;
  text-align: center;
}
.about-lead .accent-terra { color: var(--display); font-style: italic; }
.about-lead + .about-lead { margin-top: 22px; }
.about-rule {
  display: block;
  width: 60px; height: 1px;
  background: var(--display); opacity: 0.85;
  margin: 28px auto 0;
}

.chef-prefix { color: var(--display); }
.chef-name { color: var(--display); }

.lead-wrap {
  position: relative;
  max-width: 1180px; margin: 0 auto;
  display: flex; align-items: center; justify-content: center;
  padding: 0 200px;
}
.lead-flower {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 96px; height: auto;
  opacity: 0.9; filter: saturate(1.15);
}
.lead-flower-l { left: 80px; }
.lead-flower-r { right: 80px; }
.lead {
  font-family: var(--serif-display); font-weight: 400; font-style: italic;
  font-size: clamp(18px, 1.8vw, 22px);
  line-height: 1.7;
  color: var(--ink);
  max-width: 720px; margin: 0;
  text-align: center;
}
@media (max-width: 900px) {
  .lead-wrap { padding: 0 120px; }
  .lead-flower-l { left: 24px; }
  .lead-flower-r { right: 24px; }
  .lead-flower { width: 76px; }
}
@media (max-width: 600px) {
  .lead-wrap { padding: 88px 16px 0; }
  .lead-flower { width: 56px; top: 0; transform: translateY(0); }
  .lead-flower-l { left: calc(50% - 80px); }
  .lead-flower-r { right: calc(50% - 80px); left: auto; }
}

/* Section eyebrow + heading pattern */
.head-with-eyebrow { text-align: center; margin-left: auto; margin-right: auto; }
.head-with-eyebrow > .section-heading { margin: 18px 0 0; }

.rule { height: 1px; background: rgba(191, 138, 143, 0.5); border: 0; margin: 0; }

/* Cards */
.card-elev {
  background: var(--off-white);
  border-radius: 6px;
  box-shadow: var(--shadow-card);
}

/* Photo treatments */
.photo {
  position: relative; overflow: hidden; border-radius: 4px;
}
.photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 800ms var(--ease-out); }
.photo .overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0) 50%);
}
.photo .tint {
  position: absolute; inset: 0;
  background: var(--display); mix-blend-mode: multiply; opacity: 0.06;
}
.photo:hover img { transform: scale(1.04); }

.photo-framed { position: relative; }

/* Loader — spinning mandala icon that fades out */
body.loading { overflow: hidden; }
body.loading main, body.loading .site-footer, body.loading .mobile-menu { opacity: 0.4; transition: opacity .6s var(--ease-out); }
#loader {
  position: fixed; inset: 0; z-index: 9999;
  display: flex; align-items: center; justify-content: center;
  background: var(--canvas);
  pointer-events: none;
  transition: opacity 600ms var(--ease-out);
}
#loader .loader-logo {
  width: 120px; height: auto; display: block;
  opacity: 0.92;
  transform-origin: center;
  animation: loader-spin 9s linear infinite;
  transition: opacity 600ms var(--ease-out);
  will-change: transform;
}
@keyframes loader-spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

#loader.hidden { opacity: 0; }

@media (max-width: 768px) {
  #loader .loader-logo { width: 88px; }
}

@media (prefers-reduced-motion: reduce) {
  #loader .loader-logo { animation: none; transition: opacity 400ms ease-out; }
}

/* Hide the actual header logo until loader has settled, then fade it in */
body.loading .site-header .logo { opacity: 0; }
body.logo-settled .site-header .logo { opacity: 1; transition: opacity 360ms var(--ease-out) 200ms; }

/* Scroll reveal classes (bidirectional, set by IntersectionObserver) */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 900ms var(--ease-out), transform 900ms var(--ease-spring);
  will-change: opacity, transform;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left {
  opacity: 0;
  transform: translateX(-56px);
  transition: opacity 1000ms var(--ease-out), transform 1000ms var(--ease-spring);
  will-change: opacity, transform;
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right {
  opacity: 0;
  transform: translateX(56px);
  transition: opacity 1000ms var(--ease-out), transform 1000ms var(--ease-spring);
  will-change: opacity, transform;
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }
.reveal-scale {
  opacity: 0;
  transform: scale(0.90);
  transition: opacity 1000ms var(--ease-out), transform 1000ms var(--ease-spring);
  will-change: opacity, transform;
}
.reveal-scale.visible { opacity: 1; transform: scale(1); }

@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-left, .reveal-right, .reveal-scale {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* Stagger — progressive transition-delay on direct children when parent .stagger has .visible */
.stagger > * {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 900ms var(--ease-out), transform 900ms var(--ease-spring);
  will-change: opacity, transform;
}
.stagger.visible > * { opacity: 1; transform: translateY(0); }
.stagger.visible > :nth-child(1) { transition-delay: 0ms; }
.stagger.visible > :nth-child(2) { transition-delay: 100ms; }
.stagger.visible > :nth-child(3) { transition-delay: 200ms; }
.stagger.visible > :nth-child(4) { transition-delay: 300ms; }
.stagger.visible > :nth-child(5) { transition-delay: 400ms; }
.stagger.visible > :nth-child(6) { transition-delay: 500ms; }
.stagger.visible > :nth-child(7) { transition-delay: 600ms; }
.stagger.visible > :nth-child(8) { transition-delay: 700ms; }
@media (prefers-reduced-motion: reduce) {
  .stagger > * {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

@keyframes fadeUp { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }

/* Grain texture overlay (for dark green inquiry CTA + halwai sections) */
.grain { position: relative; }
.grain::after {
  content: ''; position: absolute; inset: 0; pointer-events: none; z-index: 1;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  opacity: .028;
}

/* Offering tiles */
.offering-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px;
}
.offering-grid.three { grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 900px) { .offering-grid.three { grid-template-columns: 1fr; gap: 20px; } }
@media (max-width: 720px) { .offering-grid { grid-template-columns: 1fr; gap: 20px; } }

.offering-tile {
  position: relative; display: block; overflow: hidden;
  aspect-ratio: 4 / 5; border-radius: 4px; isolation: isolate;
  background: var(--accent-green-deep);
}
.offering-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform 900ms var(--ease-out); }
.offering-tile:hover img { transform: scale(1.045); }
.offering-tile::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(to top, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.15) 50%, rgba(0,0,0,0) 75%);
}
.offering-body {
  position: absolute; inset: auto 0 0 0; z-index: 2;
  padding: 26px 28px 28px; color: var(--off-white);
}
.offering-overline {
  font-family: var(--sans-font); font-weight: 500;
  font-size: 0.6875rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(250, 247, 242, 0.78);
  transition: color 280ms var(--ease-out);
}
.offering-tile:hover .offering-overline { color: var(--display); }
.offering-name {
  font-family: var(--display-font); font-weight: 500;
  font-size: 1.375rem; line-height: 1.3;
  margin: 0 0 10px; letter-spacing: -0.005em;
  color: var(--off-white);
}
.offering-line {
  font-family: var(--sans-font);
  font-size: 0.875rem; line-height: 1.68;
  opacity: 0.85; max-width: 38ch;
}
.offering-cta { display: inline-flex; align-items: center; gap: 8px; margin-top: 14px; color: var(--display); font-family: var(--sans-font); font-weight: 500; font-size: 0.6875rem; letter-spacing: 0.14em; text-transform: uppercase; }
.offering-cta::after {
  content: "→"; transition: transform 320ms var(--ease-spring);
}
.offering-tile:hover .offering-cta::after { transform: translateX(4px); }

/* About + Founder section padding tightened */
#about-founder.section { padding: 48px 0 60px; }

/* Founder + recognition — tightened to fit 1440x900 single-screen */
.founder-grid {
  display: grid; grid-template-columns: 420px 1fr; gap: 64px;
  align-items: stretch;
}
@media (max-width: 1100px) { .founder-grid { grid-template-columns: 360px 1fr; gap: 48px; } }
@media (max-width: 900px) { .founder-grid { grid-template-columns: 1fr; gap: 40px; margin-top: 100px !important; } }

.founder-portrait-col {
  display: flex; flex-direction: column;
  gap: 16px;
  min-height: 0;
}
.founder-portrait-col .portrait-cycler {
  flex: 0 0 auto;
  aspect-ratio: 4 / 5;
  width: 100%;
  max-width: 520px;
  max-height: none;
  min-height: 0;
  overflow: hidden;
}
.founder-text-col {
  display: flex; flex-direction: column;
  min-height: 0;
}
.founder-text-col .other-ventures-wrap { padding-top: 20px; }
.ventures-heading {
  font-family: var(--serif-display); font-weight: 400;
  font-size: 22px; letter-spacing: -0.01em;
  color: var(--display);
  margin: 0 0 4px;
}
@media (max-width: 900px) {
  .founder-portrait-col .portrait-cycler { flex: none; aspect-ratio: 4/5; }
}

.portrait-cycler {
  position: relative; width: 100%;
  border-radius: 4px; overflow: hidden;
  background: var(--canvas);
}
@media (min-width: 901px) {
  .portrait-cycler { min-height: 360px; }
}
.portrait-cycler .pc-img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center 20%;
  opacity: 0;
  transition: opacity 900ms var(--ease-out);
}
.portrait-cycler .pc-img.active { opacity: 1; }
.portrait-cycler .tint { position: absolute; inset: 0; background: var(--display); mix-blend-mode: multiply; opacity: 0.06; pointer-events: none; }

/* Quote — no box, no glyphs */
.founder-quote {
  position: relative;
  display: flex; flex-direction: column; align-items: center;
  margin: 0;
  padding: 0;
  text-align: center;
  background: transparent;
  border: 0;
}
.founder-quote .q-text {
  font-family: var(--serif-display); font-style: italic; font-weight: 400;
  font-size: 17px; line-height: 1.6;
  color: var(--ink); opacity: 0.78;
  display: block;
  max-width: 100%;
}
.founder-quote .q-attrib {
  display: block;
  margin-top: 16px;
  font-family: var(--sans); font-weight: 500;
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--turquoise);
}

/* Recognition timeline — horizontal dividers only, no vertical thread */
.recognition-list {
  list-style: none; padding: 0; margin: 28px 0 0;
  position: relative;
  display: flex; flex-direction: column;
}
.recognition-list li {
  display: grid; grid-template-columns: 150px 16px 1fr;
  align-items: center; gap: 22px;
  padding: 14px 0;
  border: 0;
}
.recognition-list li:first-child { padding-top: 0; }
.recognition-list li:last-child { padding-bottom: 0; }
.recognition-list .year {
  font-family: var(--serif-display); font-weight: 500;
  font-size: 18px; letter-spacing: -0.01em;
  color: #E89A7F;
  text-shadow: 0 1px 3px rgba(0,0,0,0.7), 0 0 12px rgba(0,0,0,0.4);
  text-align: right;
  white-space: nowrap;
}
.recognition-list .dot {
  position: relative;
  width: 16px; height: 16px;
  display: inline-flex; align-items: center; justify-content: center;
}
.recognition-list .dot::after {
  content: "";
  width: 7px; height: 7px;
  border-radius: 999px;
  border: 1.5px solid var(--display);
  background: transparent;
  box-sizing: content-box;
  /* halo masks the thread directly behind the dot so the dot reads cleanly */
  box-shadow: 0 0 0 4px var(--canvas);
}
.recognition-list .climax .dot::after {
  width: 11px; height: 11px;
  border: 0;
  background: var(--display);
}
.recognition-list .claim {
  font-family: var(--sans); font-weight: 400;
  font-size: 16px; line-height: 1.6;
  color: var(--ink);
}

/* Climax row — heavier, italic year, denser claim */
.recognition-list .climax .year {
  font-family: var(--serif-display); font-style: italic; font-weight: 500;
  font-size: 20px;
}
.recognition-list .climax .claim {
  font-family: var(--sans); font-weight: 500;
  font-size: 17px;
}

@media (max-width: 720px) {
  .recognition-list li { grid-template-columns: 90px 14px 1fr; gap: 14px; }
  .recognition-list .year { font-size: 16px; }
  .recognition-list .claim { font-size: 15px; }
  .recognition-list .climax .year { font-size: 18px; }
  .recognition-list .climax .claim { font-size: 16px; }
}

/* Other Ventures — plain stacked list, no boxes */
.ventures-list {
  list-style: none; padding: 0; margin: 18px 0 0;
  display: flex; flex-direction: column;
}
.ventures-list .v {
  padding: 14px 0;
  border-top: 1px solid rgba(193, 73, 47, 0.15);
  background: transparent;
}
.ventures-list .v:first-child { border-top: 0; padding-top: 6px; }
.ventures-list .v:last-child { padding-bottom: 0; }
.v-name {
  display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
  font-family: var(--display-font); font-weight: 500;
  font-size: 1.375rem; color: var(--display); letter-spacing: -0.005em; line-height: 1.3;
}
.v-meta { font-family: var(--sans-font); font-size: 0.875rem; color: var(--ink); margin-top: 6px; line-height: 1.6; }
.v-meta .v-cuisine { font-family: var(--serif-font); font-style: italic; font-weight: 400; font-size: 1rem; color: var(--ink); }
.v-meta .v-loc { font-family: var(--sans-font); font-weight: 400; color: var(--ink); opacity: 0.75; }
.ventures-label {
  font-family: var(--sans-font); font-weight: 500;
  font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--turquoise);
  margin: 0 0 16px;
}

/* Gaa Michelin stars — pulsing glow with 0.6s phase offset */
.gaa-stars { display: inline-flex; align-items: center; gap: 5px; }
.gaa-star {
  position: relative; display: inline-flex; width: 18px; height: 18px;
  border-radius: 999px;
  animation: gaa-pulse 2400ms var(--ease-out) infinite;
}
.gaa-star:nth-of-type(2) { animation-delay: 600ms; }
.gaa-star img { width: 100%; height: 100%; object-fit: contain; position: relative; z-index: 1; }
@keyframes gaa-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(255, 130, 4, 0.6); }
  60%  { box-shadow: 0 0 14px 4px rgba(255, 130, 4, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 130, 4, 0); }
}
@media (prefers-reduced-motion: reduce) {
  .gaa-star { animation: none; box-shadow: 0 0 8px 1px rgba(255, 130, 4, 0.25); }
}

/* Recent work */
.anchor-card {
  display: block;
  position: relative; overflow: hidden; border-radius: 4px;
  width: 100%; height: 483px; isolation: isolate;
  margin: 0 auto 48px;
}
.anchor-card > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 90%; }
@media (max-width: 720px) { .anchor-card { height: 322px; } }
.anchor-card img { width: 100%; height: 100%; object-fit: cover; }
.anchor-card::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.2) 45%, rgba(0,0,0,0) 75%);
  z-index: 1;
}
.anchor-body { position: absolute; left: 0; right: 0; bottom: 0; padding: 24px; color: var(--off-white); z-index: 2; }
.anchor-title { font-family: var(--display-font); font-weight: 400; font-size: clamp(1.4rem, 2.08vw, 1.8rem); letter-spacing: -0.01em; line-height: 1.15; color: var(--off-white); }
.anchor-meta { font-family: var(--sans-font); font-weight: 500; font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; opacity: 0.85; margin-top: 10px; }
.anchor-line { font-family: var(--sans-font); font-size: 0.875rem; line-height: 1.68; margin-top: 8px; max-width: 480px; opacity: 0.92; }
@media (max-width: 720px) {
  .anchor-body { padding: 16px; }
  .anchor-title { font-size: 19px; }
}
@media (max-width: 720px) {
  .anchor-card { aspect-ratio: 4/5; }
  .anchor-body { padding: 24px; }
}

.ribbon-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 28px;
}
.ribbon-grid.four { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) {
  .ribbon-grid { grid-template-columns: repeat(2, 1fr); }
  .ribbon-grid.four { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .ribbon-grid, .ribbon-grid.four { grid-template-columns: 1fr; }
}

.ribbon-card {
  position: relative; aspect-ratio: 4/3; overflow: hidden; border-radius: 4px; isolation: isolate;
}
.ribbon-card img { width: 100%; height: 100%; object-fit: cover; }

/* Gallery cards — stack of cross-fading images, advances on hover */
.gallery-card .gallery-stack { position: absolute; inset: 0; }
.gallery-card .gallery-img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  opacity: 0;
  transition: opacity 520ms var(--ease-out), transform 1200ms var(--ease-out);
}
.gallery-card .gallery-img.active { opacity: 1; }
.gallery-card:hover .gallery-img.active { transform: scale(1.04); }
.ribbon-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0) 60%); z-index: 1; }
.ribbon-body { position: absolute; left: 0; right: 0; bottom: 0; z-index: 2; padding: 18px 22px; color: var(--off-white); }
.ribbon-name { font-family: var(--display-font); font-weight: 500; font-size: 1.375rem; line-height: 1.3; letter-spacing: -0.01em; color: var(--off-white); }
.ribbon-meta { font-family: var(--sans-font); font-weight: 500; font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; opacity: 0.85; margin-top: 6px; }
.ribbon-line {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  line-height: 1.6;
  margin: 8px 0 0;
  color: rgba(245, 238, 228, 0.86);
  max-width: 360px;
}

/* Trusted by — subheading + single-logo carousel */
#trusted-by { padding: 80px 0; }
.trusted-head {
  display: flex; flex-direction: column; align-items: center;
  margin: 0 auto 48px;
}
.trusted-eyebrow {
  font-family: var(--sans); font-weight: 500;
  font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--turquoise);
}
.trusted-carousel { display: flex; justify-content: center; }
.trusted-carousel .tc-stage {
  position: relative; width: 100%; max-width: 320px; height: 140px;
  display: flex; align-items: center; justify-content: center;
}
.trusted-carousel .tc-logo {
  position: absolute; left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  max-height: 120px; max-width: 280px; width: auto; height: auto; object-fit: contain;
  opacity: 0;
  transition: opacity 600ms var(--ease-out);
  pointer-events: none;
}
.trusted-carousel .tc-logo.active { opacity: 1; pointer-events: auto; }

/* Reel-style Instagram tiles — six equal, single row */
.reel-row {
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px;
}
@media (max-width: 900px) {
  .reel-row {
    display: flex; overflow-x: auto; scroll-snap-type: x mandatory;
    gap: 12px; padding-bottom: 8px;
    -webkit-overflow-scrolling: touch;
  }
  .reel-row .reel-tile { flex: 0 0 44%; scroll-snap-align: start; }
}
@media (max-width: 540px) {
  .reel-row .reel-tile { flex: 0 0 64%; }
}
.ig-footer {
  text-align: center;
  margin: 80px auto 60px;
  font-family: var(--serif-display); font-style: italic; font-weight: 400;
  font-size: 26px; letter-spacing: 0;
}
.ig-footer a {
  color: var(--display);
  border-bottom: 0;
  padding-bottom: 0;
}
.ig-footer a span { transition: transform 320ms var(--ease-out); display: inline-block; }
.ig-footer a span.word-marigold { color: var(--green); transition: none; transform: none; display: inline; }
.ig-footer a:hover span:not(.word-marigold) { transform: scale(1.06) translateX(2px); }
@media (max-width: 720px) { .ig-footer { margin: 56px auto 40px; font-size: 22px; } }

.reel-tile {
  position: relative; display: block; aspect-ratio: 9/16;
  overflow: hidden; border-radius: 6px; background: var(--canvas);
  isolation: isolate;
  transition: transform 400ms var(--ease-out);
}
.reel-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform 700ms var(--ease-out); }
.reel-tile::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.4), rgba(0,0,0,0) 50%);
  z-index: 1;
}
.reel-tile:hover { transform: scale(1.03); }
.reel-tile:hover img { transform: scale(1.04); }
.reel-play {
  position: absolute; right: 12px; bottom: 12px;
  width: 28px; height: 28px; border-radius: 999px;
  background: rgba(0,0,0,0.32); z-index: 2;
  display: inline-flex; align-items: center; justify-content: center;
  transition: background-color 280ms var(--ease-out);
}
.reel-play::before {
  content: ""; display: block;
  width: 0; height: 0;
  border-left: 8px solid var(--off-white);
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  margin-left: 2px;
  transition: border-left-color 280ms var(--ease-out);
}
.reel-tile:hover .reel-play { background: rgba(184,55,24,0.85); }
.reel-tile:hover .reel-play::before { border-left-color: var(--off-white); }

.reel-cta {
  background: var(--canvas); border: 1px solid var(--display);
  display: flex; flex-direction: column; align-items: center; justify-content: space-between;
  padding: 22px 16px; color: var(--ink);
  text-align: center;
}
.reel-cta::after { display: none; }
.reel-cta-handle { font-family: var(--serif); font-style: italic; font-size: 17px; color: var(--ink); letter-spacing: -0.005em; line-height: 1.2; }
.reel-cta-glyph { color: var(--display); display: inline-flex; align-items: center; justify-content: center; flex: 1; }
.reel-cta-text { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--display); }
.reel-cta:hover { background: rgba(184, 55, 24, 0.05); }

/* "Good to know" title — sized like a section heading */
.faq-title {
  font-family: var(--display-font); font-weight: 400;
  font-size: clamp(1.35rem, 2.8vw, 2.2rem);
  line-height: 1.15; letter-spacing: -0.01em;
  color: var(--display);
  margin: 0;
}
.faq-title em { font-style: italic; color: var(--display); font-weight: 400; }

/* FAQ */
.faq { border-top: 0; }
.faq-item { border-bottom: 1px solid rgba(191, 138, 143, 0.45); }
.faq-item:last-child { border-bottom: 0; }
.faq-trigger {
  width: 100%; text-align: left;
  display: flex; align-items: flex-start; justify-content: space-between; gap: 28px;
  padding: 26px 0;
  font-family: var(--display-font); font-weight: 500;
  font-size: 1.25rem; line-height: 1.3;
  color: var(--ink); letter-spacing: -0.005em;
}
.faq-trigger .ic {
  flex: 0 0 28px; width: 28px; height: 28px; border-radius: 999px;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid rgba(35, 87, 20, 0.4);
  transition: transform 320ms var(--ease-spring), background-color 240ms var(--ease-out), color 240ms var(--ease-out);
  font-family: var(--sans-font); font-size: 16px; line-height: 1; margin-top: 6px;
}
.faq-item.open .faq-trigger .ic { transform: rotate(45deg); background: var(--display); color: var(--off-white); border-color: var(--display); }
.faq-body { max-height: 0; overflow: hidden; transition: max-height 420ms var(--ease-out), opacity 320ms var(--ease-out); opacity: 0; }
.faq-item.open .faq-body { max-height: 600px; opacity: 1; }
.faq-body p {
  padding: 0 0 26px; max-width: 65ch;
  font-family: var(--sans-font);
  font-size: 0.9375rem; line-height: 1.75;
  color: var(--ink); opacity: 0.92;
}

/* Footer — dark forest green, 4-column editorial */
.site-footer {
  position: relative; padding: 32px 0 16px;
  color: rgba(245, 238, 228, 0.92);
  overflow: hidden;
  background:
    linear-gradient(rgba(20, 35, 18, 0.92), rgba(20, 35, 18, 0.92)),
    url("/Photos-cowork/shared/footer-background.jpg") center / cover no-repeat,
    #1F2F1B;
}
.footer-grid {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.2fr 0.8fr 1.1fr 1fr; gap: 56px;
  align-items: start;
}
@media (max-width: 1100px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 48px; } }
@media (max-width: 720px) { .footer-grid { grid-template-columns: 1fr; gap: 40px; } }
.footer-col { min-width: 0; }

/* Footer column headers — italic Cormorant 500, terracotta */
.footer-heading {
  font-family: var(--display-font); font-style: italic; font-weight: 500;
  font-size: 1.05rem; letter-spacing: 0.06em;
  color: var(--display);
  margin: 0 0 22px;
  line-height: 1.2;
  text-transform: none;
}

/* Brand column */
.footer-brand-col { display: flex; flex-direction: column; }
.footer-brand-mark {
  font-family: var(--display-font); font-weight: 400;
  font-size: 1.65rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--display);
  margin: 0 0 6px;
}
.footer-tagline {
  font-family: var(--sans-font); font-weight: 500; font-style: normal;
  font-size: 0.75rem; letter-spacing: 0.26em; text-transform: uppercase;
  color: rgba(245, 238, 228, 0.55);
  margin: 0 0 22px;
}
.footer-bio {
  font-family: var(--serif-font); font-style: italic; font-weight: 400;
  font-size: 1rem; line-height: 1.65;
  color: rgba(245, 238, 228, 0.70);
  margin: 0 0 24px;
  max-width: 32ch;
}
.footer-social { display: inline-flex; gap: 16px; }
.footer-social a {
  width: 36px; height: 36px;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid rgba(193, 73, 47, 0.4);
  color: var(--display);
  border-radius: 3px;
  transition: background-color 220ms var(--ease-out), color 220ms var(--ease-out);
}
.footer-social a svg { width: 20px; height: 20px; }
.footer-social a:hover { background: rgba(193, 73, 47, 0.08); }
.footer-social a.footer-social-line:hover { color: var(--green); background: rgba(77, 115, 51, 0.10); }

.form-field { margin-bottom: 14px; }
.form-field-phone { position: relative; margin-bottom: 14px; }
.form-field-phone .iti { width: 100%; }
.form-field-phone input[type="tel"].form-input { padding-left: 90px; }
.form-field-phone-error {
  display: block;
  font-family: var(--sans-font);
  font-size: 0.78rem;
  margin-top: 4px;
  min-height: 1em;
  color: var(--display);
}
/* intl-tel-input dropdown overrides — match brand */
.iti__country-list {
  background: var(--off-white);
  color: var(--ink);
  border: 1px solid var(--display);
  border-radius: 4px;
  max-height: 240px;
  font-family: var(--sans-font);
  font-size: 0.9rem;
}
.iti__country.iti__highlight { background: rgba(193, 73, 47, 0.12); }
/* Dial-code chip on the dark footer form input — keep cream so it reads against the dark bg */
.form-field-phone .iti__selected-dial-code { color: var(--off-white); font-weight: 500; }
.form-field-phone .iti__country-name { color: var(--ink); }
.form-field-phone .iti__country-container { border-right: 1px solid rgba(250, 247, 242, 0.16); }
.form-input, .form-textarea {
  width: 100%; padding: 14px 16px;
  background: rgba(250, 247, 242, 0.06);
  border: 1px solid rgba(250, 247, 242, 0.16);
  color: var(--off-white);
  font-family: var(--sans); font-size: 15px;
  border-radius: 3px;
  transition: border-color 220ms var(--ease-out), background-color 220ms var(--ease-out);
}
.form-input::placeholder, .form-textarea::placeholder { color: rgba(250, 247, 242, 0.45); }
.form-input:focus, .form-textarea:focus { outline: none; border-color: var(--display); background: rgba(250, 247, 242, 0.1); }
.form-textarea { min-height: 110px; resize: vertical; }
.honeypot { position: absolute; left: -9999px; opacity: 0; }
.form-status { font-size: 13.5px; margin-top: 12px; line-height: 1.6; }
.form-success {
  margin-top: 16px; padding: 18px 20px; border-radius: 4px;
  background: rgba(250, 247, 242, 0.1); color: var(--off-white);
  font-family: var(--serif); font-size: 18px; letter-spacing: -0.01em;
}
.enquire-modal .form-success,
.enquire-modal-card .form-success {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 22px;
  font-weight: 500;
  color: var(--display);
  text-align: center;
  padding: 28px 24px;
  margin: 24px 0 8px;
  background: rgba(193, 73, 47, 0.08);
  border: 1px solid rgba(193, 73, 47, 0.18);
  border-radius: 12px;
}
.enquire-modal-card.success-state .enquire-modal-eyebrow,
.enquire-modal-card.success-state .enquire-modal-title,
.enquire-modal-card.success-state .enquire-modal-lede {
  display: none;
}


/* Quick Message form */
.footer-msg .form-input, .footer-msg .form-textarea {
  background: transparent;
  border: 1px solid rgba(193, 73, 47, 0.2);
  color: rgba(245, 238, 228, 0.95);
  font-family: var(--sans); font-size: 14.5px;
  padding: 14px; border-radius: 3px;
  width: 100%;
}
.footer-msg .form-input::placeholder, .footer-msg .form-textarea::placeholder { color: rgba(245, 238, 228, 0.55); }
.footer-msg .form-textarea { min-height: 96px; resize: vertical; }
.footer-msg .btn-primary { background: var(--display); color: var(--off-white); }
.footer-msg .btn-primary:hover { background: var(--display); filter: brightness(1.08); }
.btn-block { display: block; width: 100%; }

.footer-bottom {
  position: relative; z-index: 1;
  margin-top: 32px; padding-top: 22px;
  border-top: 1px solid rgba(193, 73, 47, 0.18);
  display: flex; justify-content: space-between; gap: 18px;
  font-family: var(--sans-font); font-weight: 400;
  font-size: 0.75rem; letter-spacing: 0.04em; text-transform: none;
  color: rgba(245, 238, 228, 0.40);
}
.footer-bottom > span:last-child {
  letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(245, 238, 228, 0.55);
}
@media (max-width: 720px) { .footer-bottom { flex-direction: column; gap: 10px; } }

/* Cookie banner */
.cookie {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 80;
  background: var(--off-white); color: var(--ink);
  box-shadow: var(--shadow-floating);
  padding: 18px 26px;
  display: none;
  border-top: 3px solid var(--display);
}
.cookie.show { display: flex; align-items: center; justify-content: space-between; gap: 18px; flex-wrap: wrap; }
.cookie .copy { max-width: 70ch; font-size: 14px; line-height: 1.55; }
.cookie .actions { display: flex; gap: 10px; flex-wrap: wrap; }
.cookie .btn { padding: 10px 16px; font-size: 12px; }
.cookie .btn-text {
  background: transparent; border: 1px solid rgba(35, 87, 20, 0.25); color: var(--ink);
}
.cookie .btn-text:hover { border-color: var(--ink); }

/* Menu cards (Weddings specimen menus) */
.menu-tabs { display: flex; gap: 0; flex-wrap: wrap; border-bottom: 1px solid rgba(191, 138, 143, 0.55); }
.menu-tab {
  padding: 16px 20px; font-family: var(--serif); font-size: 16px; color: rgba(35, 87, 20, 0.55);
  letter-spacing: -0.005em;
  border-bottom: 2px solid transparent;
  transition: color 220ms var(--ease-out), border-color 220ms var(--ease-out);
  margin-bottom: -1px;
}
.menu-tab.active { color: var(--ink); border-bottom-color: var(--display); }
.menu-tab:hover { color: var(--ink); }

.menu-panel { display: none; padding-top: 36px; }
.menu-panel.active { display: block; }
.dish {
  display: grid; grid-template-columns: 280px 1fr; gap: 32px;
  padding: 22px 0; border-bottom: 1px dashed rgba(191, 138, 143, 0.5);
}
@media (max-width: 720px) { .dish { grid-template-columns: 1fr; gap: 6px; } }
.dish .name { font-family: var(--serif); font-size: 22px; letter-spacing: -0.015em; color: var(--ink); }
.dish .desc { font-size: 15px; line-height: 1.6; color: var(--ink); opacity: 0.92; }

/* Mithai Momento (Weddings) */
.mithai-momento {
  position: relative;
  background: linear-gradient(135deg, rgba(184, 55, 24, 0.04), rgba(255, 130, 4, 0.03)), var(--canvas);
  padding: 140px 0;
  overflow: hidden;
}
.mithai-momento::before {
  content: ""; position: absolute; left: 0; bottom: -50px;
  width: 320px; height: 480px;
  background-image: url("/Resources/Graphics/Animals and birds/peacock-05.png");
  background-size: contain; background-repeat: no-repeat; background-position: bottom left;
  opacity: 0.07; pointer-events: none;
}
.mithai-foliage {
  position: absolute; top: -20px; left: -40px;
  width: 200px; height: auto;
  opacity: 0.05; mix-blend-mode: multiply;
  pointer-events: none; z-index: 0;
}
.mithai-momento .wrap { position: relative; z-index: 1; }
.mithai-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
}
@media (max-width: 900px) { .mithai-grid { grid-template-columns: 1fr; gap: 36px; } }
.mithai-text { max-width: 60ch; }
.mithai-text p {
  margin: 0 0 22px;
  font-family: var(--serif-font); font-style: italic; font-weight: 400;
  font-size: 1.05rem; line-height: 1.7;
  color: var(--ink);
}
.mithai-text p:last-child { color: var(--display); }
.mithai-photo { aspect-ratio: 4/5; }

/* Traveling statement (Weddings — between intro and Specimen Menus) */
.traveling-statement {
  background: var(--footer-bg);
  padding: 3.5rem 0;
  position: relative;
  overflow: hidden;
}
.traveling-statement::before {
  content: ""; position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.04;
  pointer-events: none;
}
.traveling-statement-text {
  font-family: var(--display-font);
  font-weight: 400;
  font-size: clamp(1.2rem, 2.6vw, 2.1rem);
  line-height: 1.3;
  letter-spacing: -0.005em;
  color: #F5EEE4;
  text-align: center;
  max-width: 920px;
  margin: 0 auto;
}
.traveling-statement-text em {
  font-style: italic;
  color: var(--display);
}
@media (max-width: 768px) {
  .traveling-statement { padding: 2.5rem 0; }
  .traveling-statement-text {
    font-size: clamp(1rem, 4vw, 1.4rem);
    padding: 0 1.5rem;
  }
}

/* Mithai Momento heading — two sentences, two styles */
.mithai-momento-heading .mithai-sentence-1 {
  display: block;
  color: var(--ink);
  font-style: normal;
}
.mithai-momento-heading .mithai-sentence-2 {
  display: block;
  color: var(--display);
  font-style: normal;
  margin-top: 4px;
}

/* Process */
.process-grid {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 28px; margin-top: 56px;
  position: relative;
}
.process-grid::before {
  content: ""; position: absolute; left: 6%; right: 6%; top: 24px; height: 1px;
  background: linear-gradient(to right, rgba(184, 55, 24, 0), rgba(184, 55, 24, 0.4), rgba(184, 55, 24, 0));
}
@media (max-width: 900px) { .process-grid { grid-template-columns: 1fr; gap: 18px; } .process-grid::before { display: none; } }
.process-step {
  position: relative; padding-top: 0;
}
.process-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 48px; height: 48px; border-radius: 999px;
  background: var(--canvas); border: 1px solid var(--display); color: var(--display);
  font-family: var(--serif); font-style: italic; font-size: 18px;
  position: relative; z-index: 2;
}
.process-title { font-family: var(--sans); font-weight: 500; font-size: 18px; margin: 18px 0 6px; color: var(--turquoise); letter-spacing: -0.005em; }
.process-desc { font-size: 14.5px; line-height: 1.55; color: var(--ink); opacity: 0.85; max-width: 32ch; }

/* Three-card row */
.three-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
}
@media (max-width: 900px) { .three-grid { grid-template-columns: 1fr; gap: 24px; } }

.execution-card { overflow: hidden; }
.execution-card .photo { aspect-ratio: 4/5; margin-bottom: 22px; }
.execution-card h3 { font-family: var(--display-font); font-weight: 500; font-size: 1.375rem; line-height: 1.3; margin: 0 0 6px; color: var(--ink); letter-spacing: -0.005em; }
.execution-card .meta { font-family: var(--sans-font); font-weight: 500; font-size: 0.6875rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--turquoise); margin-bottom: 14px; }
.execution-card .desc { font-family: var(--sans-font); font-size: 0.875rem; line-height: 1.68; color: var(--ink); opacity: 0.78; }

/* Recent intimate list */
.intimate-list { list-style: none; padding: 0; margin: 36px 0 0; }
.intimate-list li {
  padding: 22px 0; border-bottom: 1px solid rgba(191, 138, 143, 0.45);
  font-family: var(--display-font); font-weight: 500; font-size: 1.375rem; line-height: 1.3;
  color: var(--ink); letter-spacing: -0.005em;
  display: flex; align-items: baseline; justify-content: space-between; gap: 18px; flex-wrap: wrap;
}
.intimate-list .small {
  font-family: var(--sans-font); font-weight: 500;
  font-size: 0.6875rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--turquoise); opacity: 1;
}

/* Artisanal */
.mithai-range {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px;
}
@media (max-width: 900px) { .mithai-range { grid-template-columns: repeat(2, 1fr); } }
.mithai-range .photo { aspect-ratio: 1/1; }
.mithai-range figcaption { font-family: var(--serif-font); font-style: italic; font-size: 0.8125rem; line-height: 1.45; color: var(--ink); margin-top: 10px; text-align: center; opacity: 0.7; }

.hampers-split {
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 64px; align-items: center;
}
@media (max-width: 900px) { .hampers-split { grid-template-columns: 1fr; gap: 32px; } }
.hampers-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }

/* Generic scroll-margin so anchored navigation respects header */
[id] { scroll-margin-top: 100px; }


/* ───────────── Split layout (image + content, offering page intros) ───────────── */
.split {
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center; gap: 5rem;
}
.split.reverse { direction: rtl; }
.split.reverse > * { direction: ltr; }
.split-image { position: relative; overflow: hidden; border-radius: 10px; aspect-ratio: 4 / 5; width: 100%; max-width: 540px; }
.split-image img { width: 100%; height: 100%; object-fit: cover; object-position: center; transition: transform 1.2s var(--ease-out); }
.split-image:hover img { transform: scale(1.04); }
.split-text { padding: 0; position: relative; }
.split-text .section-label {
  font-family: var(--sans-font); font-weight: 500;
  font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--turquoise); margin: 0 0 14px;
}
.split-text .h2 {
  font-family: var(--display-font); font-weight: 400;
  font-size: clamp(1.35rem, 2.8vw, 2.2rem);
  line-height: 1.15; letter-spacing: -0.01em;
  color: var(--display);
  margin: 0;
}
.split-text .h2 em { font-style: italic; color: var(--display); font-weight: 400; }
.split-text .divider { width: 3rem; height: 1px; background: var(--display); opacity: 0.8; margin: 22px 0; }
.split-text .lede {
  font-family: var(--serif-font); font-style: italic; font-weight: 400;
  font-size: 1.05rem; line-height: 1.7;
  color: var(--ink); max-width: 60ch; margin: 0 0 18px;
}
.split-text .lede:last-child { margin-bottom: 0; }
@media (max-width: 900px) {
  .split { grid-template-columns: 1fr; gap: 2.5rem; }
  .split.reverse { direction: ltr; }
}

/* ───────────── Gold pill button (data-enquire CTAs, e.g. Discuss your hamper) ───────────── */
.btn-gold {
  display: inline-block; cursor: pointer; border: 0;
  background: var(--display); color: var(--off-white);
  font-family: var(--sans); font-weight: 500;
  font-size: 13.5px; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 14px 32px; border-radius: 999px;
  transition: transform 240ms var(--ease-spring), background-color 240ms var(--ease-out), box-shadow 240ms var(--ease-out);
  box-shadow: 0 4px 16px rgba(193, 73, 47, 0.28);
}
.btn-gold:hover { transform: translateY(-2px); background: #D55A3D; box-shadow: 0 8px 24px rgba(193, 73, 47, 0.4); }

/* ───────────── Recognition dark section (Home) — v2 typography craft ───────────── */
.recognition-section {
  position: relative; overflow: hidden;
  padding: 0;
  color: #F5EEE4;
  background: #0E0E0C;
}
.recognition-section .rec-bg {
  position: absolute; inset: 0; z-index: 0;
  background-image: url('/Photos-cowork/01-home/recognition-bg.jpg');
  background-size: cover; background-position: center;
  transform: scale(1.04);
}
.recognition-section .rec-overlay {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(rgba(20, 15, 12, 0.78), rgba(20, 15, 12, 0.78)),
    linear-gradient(rgba(184, 55, 24, 0.04), rgba(184, 55, 24, 0.04));
}
.recognition-section .wrap { position: relative; z-index: 2; }
.recognition-inner {
  position: relative; z-index: 2;
  display: grid;
  grid-template-columns: 38% 62%;
  gap: 4rem;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
  padding: 96px 32px;
}
.recognition-photo-space { /* empty — bg photo shows through */ }
.recognition-content { text-align: left; }
.recognition-content .rec-label { text-align: left; margin: 0 0 32px; }
.recognition-content .pull-quote-block { max-width: none; align-items: flex-start; }
.recognition-content .pull-quote { max-width: none; text-align: left; }
.recognition-content .pull-quote-mark,
.recognition-content .pull-quote-cite { text-align: left; }
.recognition-content .rec-timeline-wrap { margin-top: 64px; }
.recognition-content .recognition-list { margin: 0; max-width: none; }
.recognition-content .recognition-list li { justify-content: flex-start; }
@media (max-width: 900px) {
  .recognition-inner {
    grid-template-columns: 1fr;
    padding: 64px 24px;
  }
  .recognition-photo-space { display: none; }
  .recognition-content { text-align: center; }
  .recognition-content .rec-label { text-align: center; }
  .recognition-content .pull-quote-block { align-items: center; }
  .recognition-content .pull-quote { text-align: center; }
  .recognition-content .pull-quote-mark,
  .recognition-content .pull-quote-cite { text-align: center; }
}

.rec-label {
  font-family: var(--sans-font); font-weight: 500;
  font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(245, 238, 228, 0.55);
  text-align: center;
  margin: 0 0 48px;
}

/* Pull-quote block — quote glyph + quote + citation */
.pull-quote-block {
  max-width: 880px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}
.pull-quote-mark {
  display: block;
  font-family: var(--display-font);
  font-style: italic; font-weight: 400;
  font-size: clamp(72px, 8vw, 120px);
  line-height: 0.6;
  color: var(--display);
  opacity: 0.92;
  margin: 0 0 8px;
}
.pull-quote {
  font-family: var(--display-font);
  font-style: italic; font-weight: 400;
  font-size: clamp(28px, 3.6vw, 44px);
  line-height: 1.4; letter-spacing: -0.005em;
  color: #F5EEE4;
  margin: 0;
  max-width: 820px;
}
.pull-quote-cite {
  font-family: var(--sans-font); font-weight: 500;
  font-size: 0.75rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: #E89A7F;
  text-shadow: 0 1px 3px rgba(0,0,0,0.7), 0 0 12px rgba(0,0,0,0.4);
  margin: 32px 0 0;
}
.recognition-section .rec-quote {
  font-family: var(--display-font); font-style: italic; font-weight: 400;
  font-size: clamp(28px, 3.8vw, 48px);
  line-height: 1.35; letter-spacing: -0.005em;
  color: #F5EEE4;
  max-width: 820px; margin: 0 auto;
  text-align: center;
}
.recognition-section .rec-attrib {
  display: block;
  margin-top: 32px;
  font-family: var(--sans-font); font-weight: 500; font-style: normal;
  font-size: 0.75rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--display);
  text-align: center;
}
.recognition-section .rec-quote-wrap.reveal { transition-delay: 0.4s; }
.recognition-section .rec-timeline-wrap { margin-top: 80px; }

.recognition-section .recognition-list {
  max-width: 720px; margin: 0 auto;
  padding: 0; list-style: none;
}
.recognition-section .recognition-list li {
  display: grid; grid-template-columns: 180px 1fr;
  align-items: center; gap: 28px;
  padding: 14px 0;
  border: 0;
  border-bottom: 1px solid rgba(245, 238, 228, 0.10);
}
.recognition-section .recognition-list li:last-child { border-bottom: 0; }
.recognition-section .recognition-list .award-marigold {
  width: 14px; height: 14px;
  display: inline-block; vertical-align: middle;
  margin-right: 10px;
  opacity: 1;
  object-fit: contain;
}
.recognition-section .recognition-list .climax .award-marigold {
  width: 18px; height: 18px;
}

/* Per-row cascade reveal — staggered transition-delay */
.award-list .award-item.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 700ms var(--ease-out), transform 700ms var(--ease-out);
}
.award-list .award-item.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.award-list .award-item:nth-child(1).reveal { transition-delay: 0ms; }
.award-list .award-item:nth-child(2).reveal { transition-delay: 180ms; }
.award-list .award-item:nth-child(3).reveal { transition-delay: 360ms; }
.award-list .award-item:nth-child(4).reveal { transition-delay: 540ms; }
.award-list .award-item:nth-child(5).reveal { transition-delay: 720ms; }
@media (prefers-reduced-motion: reduce) {
  .award-list .award-item.reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}
.recognition-section .recognition-list .year {
  font-family: var(--display-font); font-style: italic; font-weight: 400;
  font-size: 1.05rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: #E89A7F;
  text-shadow: 0 1px 3px rgba(0,0,0,0.7), 0 0 12px rgba(0,0,0,0.4);
  white-space: nowrap;
  text-align: right;
  display: inline-flex; align-items: center; justify-content: flex-end;
}
.recognition-section .recognition-list .climax .year {
  font-style: italic; font-weight: 500; font-size: 1.15rem;
  letter-spacing: 0.14em;
}
.recognition-section .recognition-list .claim {
  font-family: var(--sans-font); font-weight: 400;
  font-size: 0.95rem; line-height: 1.6;
  color: rgba(245, 238, 228, 0.95);
  max-width: 540px;
}
.recognition-section .recognition-list .climax .claim {
  font-family: var(--sans-font); font-weight: 500; font-size: 1rem;
  color: #F5EEE4;
}
@media (max-width: 720px) {
  .recognition-section .recognition-list li { grid-template-columns: 110px 1fr; gap: 18px; padding: 12px 0; }
  .recognition-section .recognition-list .year { font-size: 0.9rem; }
  .recognition-section .recognition-list .climax .year { font-size: 1rem; }
  .recognition-section .recognition-list .claim { font-size: 14px; }
  .recognition-section .recognition-list .climax .claim { font-size: 15px; }
  .rec-quote-glyph { font-size: clamp(48px, 9vw, 68px); margin-bottom: 40px; }
}

/* ───────────── Trusted By (Corporate Events page) ───────────── */
.trusted-by-section {
  background: var(--off-white);
  border-top: 0.5px solid rgba(193, 73, 47, 0.18);
  border-bottom: 0.5px solid rgba(193, 73, 47, 0.18);
  padding: 34px 24px; text-align: center;
}
.trusted-by-section .trusted-by-heading {
  font-family: var(--display-font); font-style: italic; font-weight: 500;
  font-size: 1.12rem; line-height: 1.3;
  color: var(--display);
  margin: 0 0 28px; letter-spacing: 0.02em;
}
/* Auto-scrolling marquee — sushi-tray slow loop */
.trusted-marquee {
  overflow: hidden;
  position: relative;
  padding: 19px 0;
  mask-image: linear-gradient(to right, transparent 0, #000 80px, #000 calc(100% - 80px), transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0, #000 80px, #000 calc(100% - 80px), transparent 100%);
}
.trusted-marquee-track {
  display: flex; align-items: center;
  gap: 5rem;
  width: max-content;
  animation: marquee-scroll linear infinite;
}
.trusted-marquee-track img {
  display: block;
  flex-shrink: 0;
  width: 160px; height: 64px;
  object-fit: contain;
  opacity: 0.92;
  transition: opacity 280ms var(--ease-out), transform 280ms var(--ease-out);
}
.trusted-marquee-track img:hover {
  opacity: 1;
  transform: scale(1.04);
}
.trusted-marquee:hover .trusted-marquee-track { animation-play-state: paused; }
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .trusted-marquee-track { animation: none; }
}
@media (max-width: 768px) {
  .trusted-marquee-track { gap: 2.5rem; }
  .trusted-marquee-track img { width: 110px; height: 48px; }
}

/* Offering page galleries — auto-scrolling marquee (mixed-size cards) */
.gallery-marquee {
  overflow-x: auto;
  overflow-y: hidden;
  position: relative;
  padding: 32px 0;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.gallery-marquee::-webkit-scrollbar { display: none; }
.gallery-marquee-track {
  display: flex;
  gap: 24px;
  width: max-content;
  align-items: stretch;
}
.gallery-marquee-track > * {
  scroll-snap-align: center;
  scroll-snap-stop: always;
  flex: 0 0 auto;
}
.gallery-mar-card {
  flex-shrink: 0;
  margin: 0;
}
.gallery-mar-card img {
  display: block;
  width: 400px; height: 300px;
  border-radius: 4px;
  object-fit: cover;
  object-position: center;
  transition: transform 500ms var(--ease-out);
}
.gallery-mar-card:hover img { transform: scale(1.03); }
.gallery-mar-card.size-wide     img { width: 480px; height: 320px; }
.gallery-mar-card.size-tall     img { width: 280px; height: 420px; }
.gallery-mar-card.size-square   img { width: 340px; height: 340px; }
.gallery-mar-card.size-portrait img { width: 260px; height: 360px; }
/* gallery marquee is now a manual scroll surface — no auto-scroll animation */
@media (max-width: 768px) {
  .gallery-mar-card.size-wide     img { width: 320px; height: 220px; }
  .gallery-mar-card.size-tall     img { width: 200px; height: 300px; }
  .gallery-mar-card.size-square   img { width: 240px; height: 240px; }
  .gallery-mar-card.size-portrait img { width: 180px; height: 250px; }
  .gallery-mar-card img { width: 280px; height: 200px; }
}

/* Halwai's Repertoire — auto-scrolling image+caption marquee on dark bg */
.halwai-marquee {
  overflow-x: auto;
  overflow-y: hidden;
  position: relative;
  padding: 24px 0;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.halwai-marquee::-webkit-scrollbar { display: none; }
.halwai-marquee-track {
  display: flex;
  gap: 24px;
  width: max-content;
}
.halwai-marquee-track > .halwai-card {
  scroll-snap-align: center;
  scroll-snap-stop: always;
  flex: 0 0 auto;
}
.halwai-card {
  flex-shrink: 0;
  width: 240px;
  margin: 0;
  text-align: center;
}
.halwai-card img {
  width: 100%; height: 280px;
  object-fit: cover;
  border-radius: 4px;
  display: block;
  transition: transform 600ms var(--ease-out);
}
.halwai-card:hover img { transform: scale(1.04); }
/* halwai marquee is now a manual scroll surface — no auto-scroll animation */
@media (max-width: 768px) {
  .halwai-card { width: 180px; }
  .halwai-card img { height: 220px; }
}

/* ── Manual gallery scroll surface — affordance mask + arrow-nav chevrons ── */
.gallery-marquee,
.halwai-marquee {
  -webkit-mask-image: linear-gradient(to right, black 92%, transparent 100%);
          mask-image: linear-gradient(to right, black 92%, transparent 100%);
}

.gallery-shell {
  position: relative;
}

.gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(249, 234, 208, 0.94);
  border: 1px solid rgba(58, 47, 37, 0.08);
  color: var(--ink);
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(58, 47, 37, 0.14),
              0 1px 3px rgba(58, 47, 37, 0.08);
  transition: transform 220ms cubic-bezier(0.22, 1, 0.36, 1),
              opacity 220ms ease,
              color 220ms ease;
  -webkit-appearance: none;
  appearance: none;
  padding: 0;
}

.gallery-nav svg {
  width: 20px;
  height: 20px;
  display: block;
}

.gallery-nav:hover {
  transform: translateY(-50%) scale(1.08);
  color: var(--display);
}

.gallery-nav:focus-visible {
  outline: 2px solid var(--display);
  outline-offset: 3px;
}

.gallery-nav-prev { left: 16px; }
.gallery-nav-next { right: 16px; }

.gallery-nav.is-disabled {
  opacity: 0;
  pointer-events: none;
}

@media (max-width: 768px), (hover: none) and (pointer: coarse) {
  .gallery-nav { display: none; }
}

/* ───────────── Hampers card (Artisanal) ───────────── */
.hamper-card {
  background: var(--off-white);
  overflow: hidden; position: relative;
  box-shadow: var(--shadow-card);
  transition: transform 320ms var(--ease-spring), box-shadow 320ms var(--ease-out);
}
.hamper-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-floating); }
.hamper-img { position: relative; overflow: hidden; aspect-ratio: 4/3; }
.hamper-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 700ms var(--ease-out); }
.hamper-card:hover .hamper-img img { transform: scale(1.05); }
.hamper-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(28, 26, 20, 0.45), transparent 55%);
}
.hamper-body { padding: 22px; }
.hamper-title {
  font-family: var(--display-font); font-weight: 500;
  font-size: 1.375rem; line-height: 1.3; letter-spacing: -0.01em;
  color: var(--display);
  position: relative;
  padding-bottom: 12px;
  margin: 0 0 16px;
}
.hamper-title::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 32px;
  height: 1.5px;
  background: var(--display);
  border-radius: 1px;
}
.hamper-desc {
  font-family: var(--sans-font); font-size: 0.875rem; line-height: 1.68;
  color: var(--ink); opacity: 0.92; margin: 0 0 16px;
}
.hamper-card .btn-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--sans-font); font-weight: 500;
  font-size: 0.6875rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--display);
  transition: gap 240ms var(--ease-spring), color 240ms var(--ease-out);
}
.hamper-card .btn-link:hover { gap: 10px; color: #D55A3D; }

/* Section background helpers used by Artisanal */
.bg-cream { background: var(--canvas); }
.bg-dark { background: var(--accent-green-deep); color: var(--off-white); }
.bg-dark .section-heading { color: var(--off-white); }
.bg-dark .section-heading em { color: var(--display); font-style: italic; }

.section-lede {
  font-family: var(--serif-font); font-style: italic; font-weight: 400;
  font-size: 1.05rem; line-height: 1.7;
  color: var(--ink);
  max-width: 60ch; margin: 16px auto 0;
  text-align: center;
}
.bg-dark .section-lede { color: rgba(245, 238, 228, 0.78); }
#repertoire .section-lede { max-width: 1000px; }

.section-heading em { font-style: italic; color: var(--display); font-weight: 400; }

/* ───────────── Specimen Menus (Weddings) — 3-column side-by-side ───────────── */
.specimen-menus-section { position: relative; overflow: hidden; }
.specimen-menus-section > .wrap { position: relative; z-index: 1; }
.specimen-foliage {
  position: absolute; bottom: -40px; right: -60px;
  width: 260px; height: auto;
  opacity: 0.06; mix-blend-mode: multiply;
  pointer-events: none; z-index: 0;
}
.specimen-subtitle {
  margin-top: 18px;
  font-family: var(--sans-font); font-weight: 400;
  font-size: 1rem; line-height: 1.7;
  color: var(--green); opacity: 1;
  max-width: 60ch;
}
.specimen-menus {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2.5rem;
  margin-top: 8px;
}
.specimen-col {
  background: rgba(255, 255, 255, 0.35);
  border: 1px solid rgba(193, 73, 47, 0.2);
  padding: 1.75rem 1.5rem 2rem;
  border-radius: 2px;
  transition: transform 320ms var(--ease-out), box-shadow 320ms var(--ease-out), border-color 320ms var(--ease-out);
}
.specimen-col:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 36px -22px rgba(58, 47, 37, 0.25);
  border-color: rgba(77, 115, 51, 0.45);
}
.specimen-col-name {
  font-family: var(--serif-display); font-style: italic; font-weight: 500;
  font-size: 1.55rem; line-height: 1.2;
  color: var(--display);
  letter-spacing: -0.005em;
}
.specimen-col-meta {
  font-family: var(--sans-font); font-weight: 500;
  font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--turquoise); opacity: 1;
  margin-top: 8px;
}
.specimen-dishes {
  margin-top: 1.5rem;
  display: flex; flex-direction: column;
}
.specimen-dish {
  padding: 14px 0;
  border-bottom: 1px dashed rgba(77, 115, 51, 0.22);
}
.specimen-dish:last-child { border-bottom: 0; padding-bottom: 0; }
.specimen-dish:first-child { padding-top: 0; }
.specimen-dish-name {
  font-family: var(--serif-display); font-weight: 500;
  font-size: 1rem; line-height: 1.3;
  color: var(--ink);
  letter-spacing: -0.005em;
}
.specimen-dish-desc {
  font-family: var(--serif-font); font-style: italic; font-weight: 400;
  font-size: 0.8125rem; line-height: 1.45;
  color: var(--ink); opacity: 0.7;
  margin-top: 4px;
}
@media (max-width: 900px) {
  .specimen-menus { grid-template-columns: 1fr; gap: 1.25rem; }
}

/* ───────────── Process strip (Weddings) — dark bg, Roman numerals ───────────── */
.bg-dark.section { background: #1C1A14; color: var(--off-white); }
.bg-dark.section .section-heading { color: var(--off-white); }
.bg-dark.section .section-heading em { color: var(--display); font-style: italic; }
.process-eyebrow {
  font-family: var(--sans-font); font-weight: 500;
  font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(245, 238, 228, 0.55);
  margin: 0;
}
.process-strip {
  display: grid; grid-template-columns: repeat(5, 1fr);
  border: 1px solid rgba(193, 73, 47, 0.18);
  background: rgba(245, 238, 228, 0.02);
}
.process-strip .process-step {
  position: relative; overflow: hidden;
  padding: 2rem 1.4rem;
  border-right: 1px solid rgba(193, 73, 47, 0.14);
  background-color: transparent;
  transition: transform 400ms var(--ease-out);
}
.process-strip .process-step:last-child { border-right: 0; }
.process-strip .process-step::before {
  content: ""; position: absolute; inset: 0;
  background-size: cover; background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 500ms var(--ease-out);
  z-index: 0; pointer-events: none;
}
.process-strip .process-step::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(rgba(20, 15, 12, 0.62), rgba(20, 15, 12, 0.62));
  opacity: 0;
  transition: opacity 500ms var(--ease-out);
  z-index: 1; pointer-events: none;
}
.process-strip .process-step:hover::before,
.process-strip .process-step:hover::after { opacity: 1; }
.process-strip .process-step > * { position: relative; z-index: 2; }

.process-strip .process-step[data-step="1"]::before { background-image: url('/Photos-cowork/02-weddings/process/listen.jpg'); }
.process-strip .process-step[data-step="2"]::before { background-image: url('/Photos-cowork/02-weddings/process/design.jpg'); }
.process-strip .process-step[data-step="3"]::before { background-image: url('/Photos-cowork/02-weddings/process/sign-off.jpg'); }
.process-strip .process-step[data-step="4"]::before { background-image: url('/Photos-cowork/02-weddings/process/taste.jpg'); }
.process-strip .process-step[data-step="5"]::before { background-image: url('/Photos-cowork/02-weddings/process/execute.jpg'); }

@media (prefers-reduced-motion: reduce) {
  .process-strip .process-step::before,
  .process-strip .process-step::after { transition: none; }
}
.process-numeral {
  font-family: var(--serif-display); font-style: italic; font-weight: 400;
  font-size: 2.85rem; line-height: 1;
  color: var(--display);
}
.process-name {
  font-family: var(--serif-display); font-weight: 500;
  font-size: 1.3rem; line-height: 1.2; letter-spacing: -0.005em;
  color: var(--off-white);
  margin: 16px 0 10px;
}
.process-strip .process-desc {
  font-family: var(--serif-font); font-style: italic; font-weight: 400;
  font-size: 0.95rem; line-height: 1.6;
  color: rgba(245, 238, 228, 0.78);
  opacity: 1;
  max-width: none;
}
@media (max-width: 900px) {
  .process-strip { grid-template-columns: 1fr; }
  .process-strip .process-step {
    border-right: 0;
    border-bottom: 1px solid rgba(193, 73, 47, 0.14);
  }
  .process-strip .process-step:last-child { border-bottom: 0; }
}

/* ───────────── Lean footer — single centered stack (Option A) ───────────── */
.site-footer-lean .footer-stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
  padding: 24px 0 12px;
}
.site-footer-lean .footer-brand-center { max-width: 480px; }
.site-footer-lean .footer-brand-mark {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400; letter-spacing: 0.12em;
  font-size: 22px; color: var(--display);
  margin-bottom: 10px;
}
.site-footer-lean .footer-brand-mark-img {
  height: 38px;
  width: 210px;
  object-fit: cover;
  object-position: center;
  display: block;
  margin: 0 auto 12px;
  opacity: 0.95;
}
.site-footer-lean .footer-tagline {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(245, 238, 228, 0.78);
  margin: 0 0 16px;
}
.site-footer-lean .footer-bio {
  font-family: 'Cormorant Garamond', serif; font-style: italic;
  font-size: 16px; line-height: 1.55;
  color: rgba(245, 238, 228, 0.86);
  margin: 0 auto;
}
.site-footer-lean .footer-contact-row {
  display: flex; flex-wrap: wrap;
  justify-content: center; align-items: center;
  gap: 28px 36px;
  margin-top: 8px;
}
.site-footer-lean .footer-contact-row a {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: rgba(245, 238, 228, 0.86);
  text-decoration: none;
  transition: color 200ms var(--ease-out);
}
.site-footer-lean .footer-contact-row a:hover { color: var(--display); }
.site-footer-lean .footer-contact-row .ci {
  width: 26px; height: 26px; border-radius: 50%;
  background: rgba(193, 73, 47, 0.18);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--display);
  flex-shrink: 0;
}
/* ───────────── Rev-31 additions ───────────── */
/* Item 11 · footer FAQ link */
.footer-faq-link {
  font-family: var(--font-body, "DM Sans"), sans-serif;
  font-size: 13px;
  letter-spacing: 0.04em;
  text-align: center;
  margin: 28px 0 22px;
  opacity: 0.78;
}
.footer-faq-link a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  padding-bottom: 1px;
  transition: color 220ms ease, opacity 220ms ease;
}
.footer-faq-link a:hover {
  color: var(--display);
  opacity: 1;
}

/* Item 1 · founder intro — exact rhythm + balanced bio (rev-33) */
.founder-text-col .ventures-label { margin: 0 0 8px 0; }
.founder-text-col .section-heading { margin: 0 0 16px 0; }
.founder-text-col .chef-bio { margin: 0 0 32px 0; text-wrap: balance; max-width: 48ch; }

/* Item 6 · line-break flow — short intros balance + tight measure, longer body pretty (rev-33) */
.section-lede,
.intro-lede,
.about-lede,
.split-text p,
.about-lead {
  text-wrap: balance;
  max-width: 52ch;
}
p,
.lede,
.chef-bio,
.hamper-desc,
.faq-body {
  text-wrap: pretty;
}
.section-heading,
.h2,
.split-text .h2,
.faq-title,
.hamper-title,
.anchor-title {
  text-wrap: balance;
}
.site-footer-lean .footer-bottom {
  padding-top: 14px;
  border-top: 1px solid rgba(245, 238, 228, 0.12);
  display: flex; justify-content: space-between; align-items: center;
  font-family: 'DM Sans', sans-serif;
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(245, 238, 228, 0.56);
}
@media (max-width: 700px) {
  .site-footer-lean .footer-contact-row { flex-direction: column; gap: 14px; }
  .site-footer-lean .footer-bottom { flex-direction: column; gap: 12px; text-align: center; padding-top: 16px; }
}

/* ───────────── Enquire modal ───────────── */
.enquire-modal {
  position: fixed; inset: 0; z-index: 200;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity 280ms var(--ease-out);
}
.enquire-modal.open { opacity: 1; pointer-events: auto; }
.enquire-modal-backdrop {
  position: absolute; inset: 0;
  background: rgba(20, 25, 18, 0.62);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  cursor: pointer;
}
.enquire-modal-card {
  position: relative; z-index: 1;
  width: min(560px, 92vw);
  max-height: 92vh; overflow-y: auto;
  background: var(--canvas);
  border-radius: 14px;
  padding: 48px 44px 40px;
  box-shadow: 0 28px 60px -16px rgba(28, 26, 20, 0.32), 0 12px 28px -10px rgba(28, 26, 20, 0.18);
  transform: translateY(14px) scale(0.98);
  opacity: 0;
  transition: transform 320ms var(--ease-spring), opacity 280ms var(--ease-out);
}
.enquire-modal.open .enquire-modal-card { transform: translateY(0) scale(1); opacity: 1; }
.enquire-modal-close {
  position: absolute; top: 14px; right: 14px;
  width: 38px; height: 38px; border-radius: 50%;
  background: transparent;
  border: 1px solid rgba(58, 47, 37, 0.18);
  color: var(--ink);
  display: inline-flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background-color 200ms var(--ease-out), border-color 200ms var(--ease-out);
}
.enquire-modal-close:hover { background: rgba(193, 73, 47, 0.08); border-color: var(--display); color: var(--display); }
.enquire-modal-eyebrow {
  font-family: 'DM Sans', sans-serif; font-size: 12px; font-weight: 500;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--turquoise);
  margin: 0 0 12px;
}
.enquire-modal-title {
  font-family: 'Cormorant Garamond', serif; font-weight: 400;
  font-size: clamp(28px, 4vw, 36px); letter-spacing: -0.01em;
  color: var(--display);
  margin: 0 0 8px; line-height: 1.15;
}
.enquire-modal-lede {
  font-family: 'Cormorant Garamond', serif; font-style: italic;
  font-size: 17px; color: rgba(58, 47, 37, 0.92);
  margin: 0 0 28px;
}
.enquire-modal .btn-block { width: 100%; margin-top: 8px; }
body.modal-open { overflow: hidden; }
@media (max-width: 540px) { .enquire-modal-card { padding: 40px 24px 28px; } .enquire-modal-title { font-size: 26px; } }

/* Modal-scoped form contrast — overrides the dark-footer form styles */
.enquire-modal .form-input,
.enquire-modal .form-textarea {
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(58, 47, 37, 0.18);
  color: var(--ink);
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  padding: 14px 16px;
  border-radius: 10px;
  width: 100%;
  transition: border-color 200ms var(--ease-out), background-color 200ms var(--ease-out);
}
.enquire-modal .form-input::placeholder,
.enquire-modal .form-textarea::placeholder {
  color: rgba(58, 47, 37, 0.45);   /* readable, not opaque */
}
.enquire-modal .form-input:focus,
.enquire-modal .form-textarea:focus {
  outline: none;
  border-color: var(--display);
  background: rgba(255, 255, 255, 0.85);
}
.enquire-modal .form-textarea { min-height: 110px; resize: vertical; }
.enquire-modal .form-select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--ink) 50%),
                    linear-gradient(135deg, var(--ink) 50%, transparent 50%);
  background-position: calc(100% - 20px) center, calc(100% - 14px) center;
  background-size: 6px 6px;
  background-repeat: no-repeat;
  padding-right: 36px;
  cursor: pointer;
}
.enquire-modal .form-input[type="date"] { color: var(--ink); cursor: pointer; }
.enquire-modal .form-field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 14px;
}
@media (max-width: 540px) {
  .enquire-modal .form-field-row { grid-template-columns: 1fr; }
}

/* intl-tel-input dropdown skin inside the cream modal */
.enquire-modal .iti--separate-dial-code .iti__selected-flag {
  background: rgba(255, 255, 255, 0.55);
  border-right: 1px solid rgba(58, 47, 37, 0.12);
  border-radius: 10px 0 0 10px;
}
.enquire-modal .iti__selected-dial-code { color: var(--ink); }
.enquire-modal .form-field-phone-error { color: var(--display); font-size: 12px; margin-top: 6px; display: block; }

/* ───────────── Trusted By — static row (corporate: selective, no marquee) ───────────── */
.trusted-static {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(72px, 11vw, 160px);
  padding: 28px clamp(20px, 5vw, 80px) 32px;
  flex-wrap: wrap;
}
.trusted-static img {
  height: 56px;
  width: auto;
  opacity: 1;
  filter: none;
  transition: transform 240ms var(--ease-out);
}
.trusted-static img:hover { transform: scale(1.04); }
.trusted-static .logo-slot {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 240px;
  height: 80px;
}
.trusted-static .logo-slot img {
  max-height: 72px;
  max-width: 220px;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
@media (max-width: 768px) {
  .trusted-static {
    gap: clamp(16px, 4vw, 32px);
    padding: 24px 16px 28px;
    flex-wrap: nowrap;
  }
  .trusted-static .logo-slot {
    width: auto;
    flex: 1 1 0;
    min-width: 0;
    height: 64px;
  }
  .trusted-static .logo-slot img {
    max-height: 48px;
    max-width: 100%;
    height: auto;
  }
}

/* ───────────── Moments ribbon-grid — two-card pair, matches anchor-card (.wrap) width ───────────── */
.ribbon-grid.two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: none;
  margin: 32px auto 0;
}
.ribbon-grid.two .ribbon-card { aspect-ratio: 16 / 9; }
/* taller text block (name + meta + description) needs the scrim to reach higher */
.ribbon-grid.two .ribbon-card::after {
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.48) 40%, rgba(0,0,0,0) 80%);
}
@media (max-width: 768px) {
  .ribbon-grid.two { grid-template-columns: 1fr; }
}

/* ───────────── Artisanal — Curated hampers grid (4-up) ───────────── */
.hampers-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  max-width: 1180px;
  margin: 0 auto;
}
@media (max-width: 1100px) {
  .hampers-grid-4 { grid-template-columns: repeat(2, 1fr); gap: 28px; }
}
@media (max-width: 600px) {
  .hampers-grid-4 { grid-template-columns: 1fr; }
}

/* ------------ Cookie banner ------------ */
.cookie {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  max-width: 720px;
  margin: 0 auto;
  background: var(--canvas);
  border: 1px solid rgba(58, 47, 37, 0.12);
  border-radius: 14px;
  padding: 20px 24px;
  box-shadow: 0 10px 40px rgba(58, 47, 37, 0.18), 0 2px 8px rgba(58, 47, 37, 0.08);
  z-index: 9999;
  display: none;
  font-family: 'DM Sans', sans-serif;
}
.cookie.visible { display: block; animation: cookieIn 360ms ease-out both; }
.cookie.hidden { display: none !important; }
@keyframes cookieIn {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}
.cookie .copy {
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink);
  margin: 0 0 14px;
}
.cookie .actions {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  flex-wrap: wrap;
}
.cookie .btn-text {
  background: transparent;
  border: none;
  color: var(--ink);
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 8px 14px;
  cursor: pointer;
  border-radius: 8px;
  transition: background 180ms ease;
}
.cookie .btn-text:hover { background: rgba(58, 47, 37, 0.06); }
.cookie .btn-primary {
  padding: 9px 18px;
  font-size: 13px;
  letter-spacing: 0.04em;
}
@media (max-width: 600px) {
  .cookie { left: 12px; right: 12px; bottom: 12px; padding: 16px 18px; }
  .cookie .copy { font-size: 13px; }
  .cookie .actions { justify-content: stretch; }
  .cookie .actions .btn-text,
  .cookie .actions .btn-primary { flex: 1; text-align: center; }
}
