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

:root {
  --black:       #000000;
  --off-black:   #050505;
  --white:       #FFFFFF;
  --soft-white:  rgba(255,255,255,0.92);
  --muted-white: rgba(255,255,255,0.52);
  --red:         #CE3A27;
  --red-deep:    #A02800;
  --line:        rgba(255,255,255,0.12);
  --display:     'Lost in South', cursive;
  --serif:       'EB Garamond', Georgia, serif;
  --sans:        'Bungee', monospace;
}

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--serif);
  font-weight: 400;
  font-size: 22px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

.grain-defs { position: absolute; width: 0; height: 0; }

/* ── NOISE TEXTURE OVERLAY ── */
.noise-layer {
  pointer-events: none;
  position: absolute;
  inset: 0;
  opacity: 0.032;
  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='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  background-size: 300px 300px;
  mix-blend-mode: overlay;
  z-index: 2;
}

/* ── BACKGROUND MOTIFS (herbs + tattoos) ──
   White pen-and-ink art on flat #000 PNGs. NOT alpha cutouts —
   composite via screen blend so the black ground drops out.
   Parent surface MUST be black or near-black (≤ ~#0E0E0E).
   One motif per section. Type/UI sits at z-index ≥ 1, above the motif. */
.motif {
  position: absolute;
  width: clamp(280px, 38vw, 620px);
  aspect-ratio: 1 / 1;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  mix-blend-mode: screen;
  pointer-events: none;
  opacity: 0.18;
  z-index: 0;
}
.motif--lg { width: clamp(420px, 56vw, 880px); opacity: 0.14; }
.motif--sm { width: clamp(160px, 18vw, 280px); opacity: 0.22; }

/* Per-section anchoring */
#hero .motif {
  /* Sits above the gradient (z:1) but below hero-content (z:3). */
  z-index: 2;
  bottom: -4vh;
  right: -4vw;
}
#stats .motif--shiso {
  top: 60px;
  left: -40px;
}
.metric--quote { position: relative; }
.metric--quote .motif--thyme {
  bottom: -32px;
  right: -16px;
}
#enquire .motif--tattoo {
  /* Doubled width + 2:1 aspect so the SUNNY SIDE glyph reads as a panoramic word piece,
     not a giant centered square. The image's natural type is wide-and-short. */
  width: clamp(560px, 76vw, 1240px);
  aspect-ratio: 2 / 1;
  bottom: 40px;
  right: -64px;
  opacity: 0.20;
}
#enquire .motif--script {
  width: clamp(200px, 24vw, 360px);
  top: 60px;
  left: 0;
  opacity: 0.18;
}
footer .motif--herb-quiet {
  top: -16px;
  left: 24px;
}

/* Ensure type/UI is above motifs in sections that need it */
#stats > .stats-left,
#stats > .stats-right { position: relative; z-index: 1; }
#enquire { position: relative; }
#enquire > .enquire-inner { position: relative; z-index: 1; }
footer { position: relative; }
footer > .footer-brand,
footer > .footer-links,
footer > .footer-copy { position: relative; z-index: 1; }

/* On narrow screens motifs dominate — pull them in or hide entirely. */
@media (max-width: 768px) {
  #hero .motif { bottom: -2vh; right: -8vw; opacity: 0.12; }
  #stats .motif--shiso { top: 40px; left: -24px; opacity: 0.14; }
  .metric--quote .motif--thyme { display: none; }
  #enquire .motif--tattoo { width: clamp(320px, 100vw, 720px); right: -10vw; bottom: 24px; opacity: 0.16; }
  #enquire .motif--script { width: clamp(140px, 32vw, 240px); top: 16px; left: -6vw; opacity: 0.14; }
  footer .motif--herb-quiet { display: none; }
}

/* ── SCROLL FADE-UP ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s cubic-bezier(0.22,1,0.36,1), transform 0.8s cubic-bezier(0.22,1,0.36,1);
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-d2 { transition-delay: 0.12s; }
.reveal-d3 { transition-delay: 0.22s; }
.reveal-d4 { transition-delay: 0.32s; }
.reveal-d5 { transition-delay: 0.44s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .scroll-line { animation: none; }
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 52px;
  backdrop-filter: blur(28px) saturate(1.25);
  -webkit-backdrop-filter: blur(28px) saturate(1.25);
  background: rgba(10,12,16,0.30);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08), 0 1px 0 rgba(0,0,0,0.35);
}
.nav-links {
  display: flex;
  gap: 40px;
  list-style: none;
  flex-shrink: 0;
  min-width: 220px;
}
.nav-links a {
  color: var(--muted-white);
  text-decoration: none;
  font-size: 25px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 400;
  font-family: var(--display);
  transition: color 0.2s;
}
.nav-links a:hover,
.nav-links a:focus-visible { color: var(--white); }

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  text-decoration: none;
}
.nav-logo {
  height: 36px;
  width: 36px;
  object-fit: contain;
  opacity: 0.92;
}
.nav-wordmark {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
}

.nav-cta {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--red);
  border: none;
  padding: 10px 20px;
  border-radius: 100px;
  cursor: pointer;
  font-family: var(--display);
  font-weight: 400;
  transition: background 0.2s;
}
.nav-cta:hover { background: var(--red-deep); }

/* ── HERO ── */
#hero {
  position: relative;
  height: 200vh;
  background: var(--black);
}

.hero-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  min-height: 680px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  z-index: 0;
  will-change: transform;
}

.hero-gradient {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(to top,    rgba(0,0,0,0.98) 0%,  rgba(0,0,0,0.82) 20%, rgba(0,0,0,0.40) 46%, transparent 68%),
    linear-gradient(to bottom, rgba(0,0,0,0.88) 0%,  rgba(0,0,0,0.40) 16%, transparent 38%),
    linear-gradient(to right,  rgba(0,0,0,0.95) 0%,  rgba(0,0,0,0.70) 28%, rgba(0,0,0,0.22) 55%, transparent 75%),
    linear-gradient(to left,   rgba(0,0,0,0.78) 0%,  rgba(0,0,0,0.35) 26%, transparent 55%);
}

.hero-content {
  position: relative;
  z-index: 3;
  width: 100%;
  padding: 0 52px 80px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
}

.hero-left { max-width: 620px; }

.hero-eyebrow {
  font-size: 18px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted-white);
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--serif);
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--red);
}

.hero-heading {
  font-family: var(--display);
  font-size: clamp(56px, 8vw, 118px);
  font-weight: 500;
  line-height: 0.92;
  letter-spacing: 0.01em;
  color: var(--white);
  margin-bottom: 28px;
  text-transform: uppercase;
}
.hero-heading em {
  font-family: var(--display);
  font-style: normal;
  font-weight: 500;
  color: var(--white);
}

.hero-sub {
  font-size: 25px;
  color: var(--muted-white);
  letter-spacing: 0.01em;
  font-weight: 400;
  font-family: var(--serif);
  font-style: italic;
}

.hero-right {
  max-width: 280px;
  flex-shrink: 0;
  border-left: 1px solid var(--line);
  padding-left: 32px;
}
.hero-right-label {
  font-size: clamp(20px, 1.7vw, 26px);
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 18px;
  font-weight: 400;
  font-family: var(--display);
  line-height: 1;
}
.hero-right p {
  font-size: 20px;
  line-height: 1.75;
  color: var(--muted-white);
  margin-bottom: 22px;
  font-family: var(--serif);
}

.pill {
  display: inline-block;
  border: 1px solid var(--line);
  color: var(--soft-white);
  font-size: 16px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 11px 24px;
  border-radius: 100px;
  cursor: pointer;
  font-family: var(--serif);
  font-weight: 400;
  background: transparent;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
  text-decoration: none;
}
.pill:hover,
.pill:focus-visible {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.3);
}
.pill-red {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}
.pill-red:hover,
.pill-red:focus-visible { background: var(--red-deep); border-color: var(--red-deep); }

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.hero-scroll span {
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.scroll-line {
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, var(--white), transparent);
  animation: scrollPulse 2.2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.1); }
}

/* ── MINDSET / STATS ── */
#stats {
  position: relative;
  background: var(--black);
  /* Zero top/bottom so the chef-photo column stretches floor-to-ceiling.
     Vertical padding is moved onto .stats-left so the text column keeps its breathing room. */
  padding: 0 0 0 52px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: stretch;
  border-top: 1px solid var(--line);
  min-height: 80vh;
}
.stats-left { padding: 120px 0; }

.section-label {
  font-size: 15px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted-white);
  margin-bottom: 40px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--display);
}
.section-label::before {
  content: '';
  display: block;
  width: 20px;
  height: 1px;
  background: var(--line);
}
.section-label--red {
  color: var(--red);
  font-size: 35px;
  gap: 0;
}
.section-label--red::before { display: none; }
.section-label--enquire {
  font-family: var(--serif);
  font-size: 14px;
}

.stats-heading {
  font-family: var(--display);
  font-size: clamp(38px, 5vw, 74px);
  font-weight: 500;
  line-height: 0.95;
  letter-spacing: 0.01em;
  margin-bottom: 36px;
  text-transform: uppercase;
}
.stats-heading em {
  font-family: var(--display);
  font-style: normal;
  font-weight: 500;
}

.stats-body {
  font-size: 21px;
  line-height: 1.8;
  color: var(--muted-white);
  max-width: 440px;
  margin-bottom: 64px;
  font-family: var(--serif);
}

.metrics-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid var(--line);
}
.metric {
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}
.metric--quote {
  grid-column: 1 / -1;
  border-right: none;
  padding-right: 0;
  padding-left: 0;
}
.metric--quote blockquote {
  font-size: 22px;
  line-height: 1.75;
  color: var(--white);
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
}
.metric:not(.metric--quote):nth-of-type(2) {
  border-right: 1px solid var(--line);
  padding-right: 32px;
}
.metric:not(.metric--quote):nth-of-type(3) {
  padding-left: 32px;
}
.metric-value {
  font-family: var(--display);
  font-size: clamp(22px, 2.8vw, 36px);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1;
  color: var(--white);
  margin-bottom: 8px;
}
.metric-label {
  font-family: var(--serif);
  font-size: 19px;
  letter-spacing: 0.12em;
  color: var(--muted-white);
  text-transform: uppercase;
  font-weight: 400;
  line-height: 1.5;
}

/* Chef photo column */
.stats-right {
  display: flex;
  align-items: stretch;
  justify-content: center;
  position: relative;
  padding: 0;
}
.chef-photo {
  position: relative;
  width: 100%;
  min-height: 600px;
  overflow: hidden;
}
.chef-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.chef-photo-gradient {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    /* Top edge — long deep letterbox, anchored full black, reaching 75% in */
    linear-gradient(to bottom,
      rgba(0,0,0,1)    0%,
      rgba(0,0,0,0.95) 10%,
      rgba(0,0,0,0.65) 25%,
      rgba(0,0,0,0.30) 42%,
      rgba(0,0,0,0.08) 58%,
      transparent      75%),
    /* Bottom edge — mirrors the top */
    linear-gradient(to top,
      rgba(0,0,0,1)    0%,
      rgba(0,0,0,0.95) 10%,
      rgba(0,0,0,0.65) 25%,
      rgba(0,0,0,0.30) 42%,
      rgba(0,0,0,0.08) 58%,
      transparent      75%),
    /* Left edge — fades heavy into the section text area */
    linear-gradient(to right,  rgba(0,0,0,1) 0%, rgba(0,0,0,0.85) 8%, rgba(0,0,0,0.45) 24%, transparent 52%),
    /* Right edge — softer vignette to match the hero's framed feel */
    linear-gradient(to left,   rgba(0,0,0,1) 0%, rgba(0,0,0,0.55) 6%, rgba(0,0,0,0.18) 20%, transparent 38%);
}

/* ── FEATURE / RED SECTION ── */
#feature {
  position: relative;
  background: var(--off-black);
  padding: 110px 52px 90px;
  overflow: hidden;
}
.feature-bg {
  position: absolute;
  inset: 0;
  background: var(--off-black);
  z-index: 0;
}
.feature-grain {
  pointer-events: none;
  position: absolute;
  inset: 0;
  opacity: 0.055;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='400'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.72' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='400' height='400' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  background-size: 400px 400px;
  mix-blend-mode: screen;
  z-index: 1;
}

.feature-content { position: relative; z-index: 2; }

.feature-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 90px;
  gap: 40px;
}
.feature-heading {
  font-family: var(--display);
  font-size: clamp(40px, 5.5vw, 84px);
  font-weight: 500;
  line-height: 0.94;
  letter-spacing: 0.01em;
  max-width: 640px;
  text-transform: uppercase;
}
.feature-heading em {
  font-family: var(--display);
  font-style: normal;
  font-weight: 500;
}
.feature-heading-sub {
  font-size: 18px;
  color: var(--muted-white);
  letter-spacing: 0.01em;
  margin-top: 18px;
  font-family: var(--serif);
  font-style: italic;
}
.feature-top-right {
  flex-shrink: 0;
  padding-top: 8px;
}

.feature-cards {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0;
  border-top: 1px solid var(--line);
}
.feature-card {
  padding: 40px 48px 40px 0;
  border-right: 1px solid var(--line);
}
.feature-card:nth-child(2) { padding-left: 48px; }
.feature-card:last-child {
  border-right: none;
  padding-right: 0;
  padding-left: 48px;
}

.card-top-rule {
  width: 28px;
  height: 2px;
  background: var(--red);
  margin-bottom: 28px;
}
.card-icon {
  width: 192px;
  height: 192px;
  margin-bottom: 28px;
  opacity: 0.7;
}
.card-title {
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 14px;
  font-family: var(--display);
}
.card-desc {
  font-size: 20px;
  line-height: 1.85;
  color: var(--muted-white);
  font-family: var(--serif);
}

/* ── MANIFESTO / NORTH-STAR (subtle) ──
   A quiet block. No CTAs, no images. Just one statement of purpose, framed
   by a thin red rule. Sits between The Night and Values to give the brand
   a breath before the values grid. */
#manifesto {
  position: relative;
  background: var(--black);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: clamp(90px, 12vw, 160px) 52px;
  overflow: hidden;
  text-align: center;
}
.manifesto-inner {
  position: relative;
  z-index: 1;
  max-width: 880px;
  margin: 0 auto;
}
.manifesto-rule {
  width: 48px;
  height: 1px;
  background: var(--red);
  margin: 0 auto 36px;
}
.manifesto-eyebrow {
  font-family: var(--display);
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted-white);
  margin-bottom: 36px;
}
.manifesto-line {
  font-family: var(--serif);
  font-size: clamp(22px, 2.6vw, 34px);
  line-height: 1.55;
  color: var(--soft-white);
  letter-spacing: 0.005em;
  margin-bottom: 44px;
}
.manifesto-line em {
  font-style: italic;
  color: var(--white);
}
.manifesto-link {
  font-family: var(--display);
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted-white);
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.18);
  padding-bottom: 4px;
  transition: color 0.2s, border-color 0.2s;
}
.manifesto-link:hover,
.manifesto-link:focus-visible {
  color: var(--white);
  border-color: var(--red);
}

/* ── CORE VALUES ── */
#values {
  position: relative;
  background: var(--off-black);
  border-top: 1px solid var(--line);
  padding: 110px 52px 90px;
  overflow: hidden;
}
#values .motif--values {
  top: 8%;
  right: -6vw;
  width: clamp(280px, 36vw, 520px);
  opacity: 0.12;
}
.values-header {
  position: relative;
  z-index: 1;
  margin-bottom: 64px;
  max-width: 720px;
}
.values-sub {
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  color: var(--muted-white);
  margin-top: 14px;
}
.values-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line); /* the gaps read as hairlines */
  border: 1px solid var(--line);
}
.value-card {
  position: relative;
  padding: 36px 28px 32px;
  background: var(--off-black);
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 220px;
  transition: background 0.3s ease;
}
.value-card:hover {
  background: #0A0A0A;
}
.value-no {
  font-family: var(--display);
  font-size: 16px;
  letter-spacing: 0.18em;
  color: var(--red);
}
.value-title {
  font-family: var(--display);
  font-size: clamp(22px, 2vw, 30px);
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1;
}
.value-desc {
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1.7;
  color: var(--muted-white);
}
/* Seventh card on its own row at 4-col — let it span 4 with centred type. */
.value-card:nth-child(7) {
  grid-column: 1 / -1;
  text-align: center;
  align-items: center;
  min-height: 180px;
}
.value-card:nth-child(7) .value-desc { max-width: 540px; }

/* ── SERVICES (cards) ── */
#services {
  position: relative;
  background: var(--black);
  border-top: 1px solid var(--line);
  padding: 110px 52px 90px;
  overflow: hidden;
}

.services-header {
  position: relative;
  z-index: 1;
  margin-bottom: 64px;
  max-width: 720px;
}

.services-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.services-grid--three {
  grid-template-columns: repeat(3, 1fr);
}

/* Coming-soon card — same chassis, quieter ground, red ticker badge */
.service-card--coming {
  background: rgba(255,255,255,0.018);
  border-style: dashed;
  border-color: rgba(255,255,255,0.16);
}
.service-card--coming:hover {
  background: rgba(255,255,255,0.028);
  border-color: rgba(255,255,255,0.24);
}
.coming-badge {
  align-self: flex-start;
  font-family: var(--display);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--red);
  border: 1px solid var(--red);
  padding: 5px 11px 4px;
  border-radius: 100px;
  margin-bottom: 6px;
}

.service-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.012);
  padding: clamp(40px, 4vw, 56px);
  min-height: clamp(380px, 50vh, 500px);
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: background 0.3s ease, border-color 0.3s ease;
}
.service-card:hover {
  background: rgba(255,255,255,0.024);
  border-color: rgba(255,255,255,0.2);
}

/* Type sits above the herb motif inside the card */
.service-card > *:not(.motif) {
  position: relative;
  z-index: 1;
}
.service-card .card-top-rule {
  width: 28px;
  height: 2px;
  background: var(--red);
  margin-bottom: 4px;
}
.service-title {
  font-family: var(--display);
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 500;
  line-height: 0.92;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--white);
}
.service-sub {
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  color: var(--muted-white);
  margin-top: -10px;
}
.service-desc {
  font-family: var(--serif);
  font-size: 17px;
  line-height: 1.7;
  color: var(--soft-white);
  max-width: 380px;
}
.service-detail {
  font-family: var(--display);
  font-size: 18px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  margin-top: auto; /* push detail + CTA to the bottom of the card */
  padding-top: 24px;
}
.service-card .pill {
  align-self: flex-start;
}

/* Motif sits inside the card, anchored bottom-right, bleeding off via overflow:hidden.
   Smaller than section-level motifs because the card itself is the bounding box. */
.service-card .motif {
  width: clamp(220px, 78%, 360px);
  height: auto;
  bottom: -10%;
  right: -10%;
  opacity: 0.16;
  z-index: 0;
}

/* ──────────────────────────────────────────────
   ABOUT PAGE (about.html)
   Self-contained layout block. Shares tokens, hero rhythm, and motif
   plumbing with the home page but has no scrub-video or sticky hero.
   ────────────────────────────────────────────── */
.page-about #about-hero {
  position: relative;
  background: var(--black);
  padding: 180px 52px 110px;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.page-about #about-hero .motif {
  z-index: 0;
  bottom: -10%;
  right: -8vw;
  opacity: 0.10;
}
.about-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 980px;
}
.about-h1 {
  font-family: var(--display);
  font-size: clamp(54px, 8.5vw, 130px);
  font-weight: 500;
  line-height: 0.92;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--white);
  margin: 22px 0 36px;
}
.about-h1 em {
  font-family: var(--display);
  font-style: normal;
  font-weight: 500;
}
.about-lead {
  font-family: var(--serif);
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.7;
  color: var(--soft-white);
  max-width: 720px;
}

.page-about section {
  position: relative;
  background: var(--black);
  padding: 110px 52px;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.page-about #about-philosophy { background: var(--off-black); }
.page-about #about-creates { background: var(--off-black); }
.page-about #about-vision {
  background: var(--black);
  text-align: center;
  padding: clamp(120px, 14vw, 200px) 52px;
}

.about-block {
  position: relative;
  z-index: 1;
  max-width: 980px;
  margin: 0 auto;
}
.about-block--two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.about-block--centred {
  max-width: 820px;
  text-align: center;
}

.about-h2 {
  font-family: var(--display);
  font-size: clamp(40px, 5.4vw, 84px);
  font-weight: 500;
  line-height: 0.95;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  margin: 22px 0 28px;
  color: var(--white);
}
.about-h2 em {
  font-family: var(--display);
  font-style: normal;
  font-weight: 500;
}
.about-h2--big {
  font-size: clamp(48px, 7.5vw, 120px);
  line-height: 0.94;
  margin: 28px 0 36px;
}

.about-body {
  font-family: var(--serif);
  font-size: 23px;
  line-height: 1.75;
  color: var(--soft-white);
  max-width: 640px;
  margin-bottom: 22px;
}
.about-body--big {
  font-size: clamp(20px, 1.8vw, 26px);
  line-height: 1.6;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.about-list {
  list-style: none;
  margin: 36px 0 0;
  padding: 0;
  max-width: 640px;
}
.about-list li {
  position: relative;
  padding: 16px 0 16px 28px;
  border-top: 1px solid var(--line);
  font-family: var(--serif);
  font-size: 21px;
  line-height: 1.65;
  color: var(--soft-white);
}
.about-list li:last-child { border-bottom: 1px solid var(--line); }
.about-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 26px;
  width: 14px;
  height: 1px;
  background: var(--red);
}

/* WHAT WE CREATE — bullet grid */
.formats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  margin-top: 44px;
}
.format-cell {
  position: relative;
  padding: 22px 24px 22px 44px;
  background: var(--off-black);
  font-family: var(--serif);
  font-size: 20px;
  line-height: 1.55;
  color: var(--soft-white);
}
.format-bullet {
  position: absolute;
  left: 22px;
  top: 30px;
  width: 8px;
  height: 8px;
  background: var(--red);
  border-radius: 100px;
}

.about-cta-row {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 12px;
}

/* About page responsive */
@media (max-width: 1024px) {
  .page-about #about-hero { padding: 140px 32px 90px; }
  .page-about section { padding: 90px 32px; }
  .about-block--two-col { gap: 40px; }
  .formats-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .page-about #about-hero { padding: 110px 20px 64px; }
  .page-about section { padding: 64px 20px; }
  .about-h1 { font-size: clamp(40px, 12vw, 64px) !important; }
  .about-h2 { font-size: clamp(32px, 9vw, 52px) !important; }
  .about-h2--big { font-size: clamp(40px, 12vw, 64px) !important; }
  .about-lead { font-size: 17px; }
  .about-body { font-size: 17px; }
  .about-body--big { font-size: 19px; }
  .about-block--two-col { grid-template-columns: 1fr; }
  .formats-grid { grid-template-columns: 1fr; }
  .about-cta-row { flex-direction: column; align-items: stretch; }
  .about-cta-row .pill { text-align: center; }
}

/* ── ENQUIRE ── */
#enquire {
  background: var(--black);
  border-top: 1px solid var(--line);
  padding: 110px 52px;
}
.enquire-inner { max-width: 720px; }
.enquire-heading { margin-bottom: 52px; }

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 24px;
}
.field-wrap {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.field-wrap--desc { margin-bottom: 40px; }
.field-label {
  font-family: var(--display);
  font-size: 15px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.82);
}
.field-input {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 4px;
  color: var(--white);
  font-family: var(--serif);
  font-size: 18px;
  padding: 16px 18px;
  width: 100%;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
  resize: none;
  caret-color: var(--red);
}
.field-input::placeholder {
  color: rgba(255,255,255,0.55);
  font-style: italic;
}
.field-input:focus {
  border-color: rgba(255,255,255,0.6);
  background: rgba(255,255,255,0.09);
}
.field-input.error { border-color: var(--red); }

.field-input--desc {
  border-width: 0 0 3px;
  border-color: var(--red);
  border-radius: 0;
}
.field-input--desc:focus {
  border-color: var(--red);
  background: rgba(255,255,255,0.09);
}

.field-error {
  font-family: var(--display);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red);
  min-height: 14px;
}

.pill-submit {
  border: none;
  cursor: pointer;
  font-size: 13px;
  padding: 14px 36px;
  font-family: var(--serif);
}

.form-success {
  display: none;
  margin-top: 20px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 17px;
  color: var(--soft-white);
}
.form-success.visible { display: block; }

.form-error {
  display: none;
  margin-top: 16px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 16px;
  color: var(--red);
}
.form-error a {
  color: var(--red);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ── FOOTER ── */
footer {
  background: var(--black);
  border-top: 1px solid var(--line);
  padding: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.footer-logo {
  height: 32px;
  width: 32px;
  object-fit: contain;
  opacity: 0.85;
}
.footer-wordmark {
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 400;
  font-family: var(--sans);
  color: var(--white);
}
.footer-copy {
  font-size: 15px;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.08em;
}
.footer-links {
  display: flex;
  gap: 28px;
  list-style: none;
}
.footer-links a {
  font-size: 20px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-family: var(--display);
  transition: color 0.2s;
}
.footer-links a:hover,
.footer-links a:focus-visible { color: rgba(255,255,255,0.95); }

/* Touch devices can't hover — promote the bright "hover" state to the resting state.
   Keeps the muted-on-rest, bright-on-hover pattern intact for desktop only. */
@media (hover: none) {
  .footer-links a { color: rgba(255,255,255,0.92); }
  .footer-copy { color: rgba(255,255,255,0.78); }
}

/* ── HAMBURGER ── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 200;
  flex-shrink: 0;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--white);
  transition: transform 0.25s, opacity 0.25s;
  transform-origin: center;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ── MOBILE MENU DRAWER ── */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 150;
  background: rgba(0,0,0,0.97);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 36px;
  backdrop-filter: blur(8px);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: var(--display);
  font-size: clamp(28px, 8vw, 42px);
  color: var(--white);
  text-decoration: none;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color 0.2s;
}
.mobile-menu a:hover { color: var(--red); }
.mobile-menu .mob-cta {
  margin-top: 16px;
  font-family: var(--display);
  font-size: 14px;
  color: var(--white);
  background: var(--red);
  border: none;
  padding: 14px 32px;
  border-radius: 100px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: background 0.2s;
}
.mobile-menu .mob-cta:hover { background: var(--red-deep); }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  nav { padding: 16px 20px; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .nav-brand { position: static; transform: none; }
  .nav-logo { height: 28px; width: 28px; }
  .nav-wordmark { font-size: 16px; }

  .hero-content {
    flex-direction: column;
    align-items: flex-start;
    padding: 0 20px 60px;
    gap: 28px;
  }
  .hero-left { max-width: 100%; }
  .hero-heading { font-size: clamp(44px, 12vw, 72px) !important; }
  .hero-sub { font-size: 18px !important; }
  .hero-eyebrow { font-size: 13px !important; }
  .hero-right {
    max-width: 100%;
    border-left: none;
    border-top: 1px solid var(--line);
    padding-left: 0;
    padding-top: 24px;
  }
  .hero-right p { font-size: 15px; }

  #stats {
    grid-template-columns: 1fr;
    padding: 64px 20px;
    gap: 48px;
  }
  .stats-left { padding: 0; } /* reset desktop top/bottom — section padding handles it on mobile */
  .stats-heading { font-size: clamp(34px, 10vw, 56px) !important; }
  .section-label { font-size: 13px !important; }
  .section-label--red { font-size: 24px !important; }
  .stats-body { font-size: 16px; }
  .stats-right { padding: 0; }
  .chef-photo { min-height: 420px; }

  #feature { padding: 64px 20px 56px; }
  .feature-top {
    flex-direction: column;
    margin-bottom: 48px;
    gap: 24px;
  }
  .feature-heading { font-size: clamp(32px, 9vw, 56px) !important; }
  .feature-heading-sub { font-size: 16px; }
  .feature-cards {
    grid-template-columns: 1fr;
    border-top: none;
  }
  .feature-card {
    padding: 32px 0 !important;
    border-right: none !important;
    border-top: 1px solid var(--line);
  }
  .card-title { font-size: 16px !important; }

  #manifesto { padding: 64px 20px; }
  .manifesto-line { font-size: clamp(19px, 5vw, 26px); line-height: 1.5; }

  #values { padding: 64px 20px 56px; }
  .values-header { margin-bottom: 40px; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .value-card { min-height: 180px; padding: 28px 22px 26px; }
  .value-card:nth-child(7) { grid-column: 1 / -1; min-height: 160px; }

  #services {
    padding: 64px 20px 56px;
  }
  .services-header { margin-bottom: 40px; }
  .services-grid { grid-template-columns: 1fr; gap: 14px; }
  .services-grid--three { grid-template-columns: 1fr; }
  .service-card {
    padding: 36px 32px;
    min-height: auto;
    gap: 14px;
  }
  .service-title { font-size: clamp(32px, 8vw, 44px) !important; }
  .service-sub { font-size: 18px; }
  .service-desc { font-size: 16px; max-width: 100%; }
  .service-card .motif {
    width: 60%;
    bottom: -12%;
    right: -12%;
    opacity: 0.12;
  }

  #enquire { padding: 64px 20px; }
  .form-grid { grid-template-columns: 1fr; }

  footer {
    flex-direction: column;
    align-items: flex-start;
    padding: 40px 20px;
    gap: 24px;
  }
  .footer-links {
    flex-wrap: wrap;
    gap: 16px 24px;
  }
  .footer-copy { font-size: 10px; }
}

@media (max-width: 430px) {
  .hero-heading { font-size: clamp(38px, 11vw, 56px) !important; }
  .hero-content { padding: 0 16px 52px; }
  #stats { padding: 52px 16px; }
  #feature { padding: 52px 16px 48px; }
  #services { padding: 52px 16px 48px; }
  .service-card { padding: 32px 24px; }
  #enquire { padding: 52px 16px; }
  footer { padding: 36px 16px; }
  nav { padding: 14px 16px; }
  .metrics-grid { grid-template-columns: 1fr; }
  .metric:not(.metric--quote):nth-of-type(2) {
    border-right: none;
    padding-right: 0;
  }
  .metric:not(.metric--quote):nth-of-type(3) { padding-left: 0; }
}

@media (min-width: 769px) and (max-width: 1024px) {
  nav { padding: 20px 32px; }
  .nav-links { gap: 24px; min-width: auto; }
  .nav-links a { font-size: 16px; }
  .hero-content { padding: 0 32px 72px; }
  .hero-right { max-width: 220px; }
  #stats { padding: 80px 32px; }
  #feature { padding: 80px 32px 72px; }
  #manifesto { padding: 90px 32px; }
  #values { padding: 80px 32px 72px; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .value-card:nth-child(7) { grid-column: 1 / -1; }
  #services { padding: 80px 32px 72px; }
  .services-grid--three { grid-template-columns: 1fr; gap: 18px; }
  .service-card { padding: 40px; }
  #enquire { padding: 80px 32px; }
  footer { padding: 40px 32px; }
  .feature-card { padding-left: 32px; padding-right: 32px; }
  .feature-card:first-child { padding-left: 0; }
  .feature-card:last-child { padding-right: 0; }
}
