:root {
  --navy: #1F3142;
  --navy-deep: #142531;
  --terracotta: #B65A3C;
  --olive: #6F7D4E;
  --amber: #C9962D;
  --amber-soft: #E8C77D;
  --ivory: #F8F4ED;
  --paper: #F0E9DE;
  --charcoal: #2B2B2B;
  --white: #FFFDFC;
  --wine: #5A2635;
  --line: rgba(31, 49, 66, 0.17);
  --serif: "Iowan Old Style", "Palatino Linotype", Palatino, Baskerville, Georgia, serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  --script: "Segoe Print", "Bradley Hand", "Snell Roundhand", cursive;
  --shadow-sm: 0 12px 35px rgba(31, 49, 66, 0.09);
  --shadow-lg: 0 28px 80px rgba(20, 37, 49, 0.18);
  --radius-sm: 16px;
  --radius-md: 26px;
  --radius-lg: 40px;
  --max: 1420px;
  --header-height: 88px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--charcoal);
  background: var(--ivory);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.menu-open { overflow: hidden; }
img, svg { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { border: 0; }
::selection { color: var(--ivory); background: var(--terracotta); }

.skip-link {
  position: fixed;
  left: 18px;
  top: 12px;
  z-index: 999;
  padding: 10px 14px;
  color: var(--ivory);
  background: var(--navy);
  border-radius: 999px;
  transform: translateY(-160%);
  transition: transform .2s ease;
}
.skip-link:focus { transform: translateY(0); }

.shell {
  width: min(var(--max), calc(100% - 8vw));
  margin-inline: auto;
}
.section { padding: clamp(78px, 9vw, 144px) 0; }
.section--tight { padding: clamp(56px, 7vw, 96px) 0; }
.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, .62fr);
  gap: clamp(30px, 6vw, 90px);
  align-items: end;
  margin-bottom: clamp(36px, 5vw, 64px);
}
.section-head h2,
.display-heading {
  margin: 0;
  color: var(--navy);
  font: 500 clamp(3rem, 6.4vw, 6.8rem)/.92 var(--serif);
  letter-spacing: -.055em;
}
.section-head > p {
  margin: 0;
  color: rgba(43, 43, 43, .68);
  font-size: clamp(1rem, 1.5vw, 1.18rem);
}
.eyebrow {
  margin: 0 0 15px;
  color: var(--terracotta);
  font-size: .73rem;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .19em;
  text-transform: uppercase;
}
.kicker::before { content: ""; width: 35px; height: 1px; background: currentColor; }
.muted { color: rgba(43, 43, 43, .66); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  min-height: var(--header-height);
  padding: 12px 4vw;
  color: var(--navy);
  background: rgba(248, 244, 237, .95);
  border-bottom: 1px solid rgba(31, 49, 66, .10);
  backdrop-filter: blur(18px);
  transition: min-height .2s ease, box-shadow .2s ease, background .2s ease;
}
.site-header.is-scrolled {
  min-height: 74px;
  background: rgba(248, 244, 237, .985);
  box-shadow: 0 12px 30px rgba(31, 49, 66, .08);
}
.brand-lockup { display: inline-flex; align-items: center; gap: 12px; min-width: 0; }
.brand-mark { width: 48px; height: 48px; flex: 0 0 48px; }
.brand-words { display: flex; align-items: baseline; gap: 8px; min-width: 0; white-space: nowrap; }
.brand-title { font: 600 1.2rem/1 var(--serif); letter-spacing: -.02em; }
.brand-by { color: rgba(31, 49, 66, .56); font-size: .68rem; font-weight: 700; letter-spacing: .05em; }
.desktop-nav { justify-self: center; display: flex; align-items: center; gap: 5px; }
.desktop-nav a {
  padding: 10px 14px;
  border-radius: 999px;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .015em;
  transition: color .2s ease, background .2s ease;
}
.desktop-nav a:hover,
.desktop-nav a[aria-current="page"] { color: var(--terracotta); background: rgba(182, 90, 60, .08); }
.header-actions { display: flex; align-items: center; gap: 8px; }
.header-social {
  display: grid;
  place-items: center;
  width: 39px;
  height: 39px;
  border: 1px solid var(--line);
  border-radius: 50%;
  transition: transform .2s ease, color .2s ease, border-color .2s ease, background .2s ease;
}
.header-social svg { width: 18px; height: 18px; }
.header-social:hover { color: var(--terracotta); border-color: rgba(182,90,60,.38); background: rgba(182,90,60,.06); transform: translateY(-2px); }
.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  color: var(--ivory);
  background: var(--navy);
  border-radius: 999px;
  font-size: .76rem;
  font-weight: 900;
}
.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  color: var(--navy);
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 50%;
  cursor: pointer;
}
.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
  content: "";
  display: block;
  width: 19px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
  border-radius: 999px;
  transition: transform .2s ease, opacity .2s ease;
}
.menu-toggle[aria-expanded="true"] span { opacity: 0; }
.menu-toggle[aria-expanded="true"]::before { transform: translateY(6px) rotate(45deg); }
.menu-toggle[aria-expanded="true"]::after { transform: translateY(-6px) rotate(-45deg); }
.mobile-menu {
  position: fixed;
  inset: var(--header-height) 0 0;
  z-index: 99;
  padding: 28px 5vw 50px;
  color: var(--ivory);
  background: var(--navy-deep);
  overflow-y: auto;
}
.mobile-menu[hidden] { display: none; }
.mobile-menu a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid rgba(248,244,237,.16);
  font: 500 1.8rem/1.1 var(--serif);
}
.mobile-menu a::after { content: "↗"; color: var(--amber); font-family: var(--sans); font-size: 1rem; }
.mobile-menu-socials { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 28px; }
.mobile-menu-socials a { display: inline-flex; padding: 10px 14px; border: 1px solid rgba(248,244,237,.22); border-radius: 999px; font: 800 .76rem/1 var(--sans); }
.mobile-menu-socials a::after { display: none; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: .82rem;
  font-weight: 900;
  letter-spacing: .015em;
  transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button svg { width: 17px; height: 17px; }
.button--amber { color: var(--navy); background: var(--amber); }
.button--amber:hover { background: #d5a43a; }
.button--navy { color: var(--ivory); background: var(--navy); }
.button--navy:hover { background: var(--navy-deep); }
.button--outline-light { color: var(--ivory); border-color: rgba(248,244,237,.42); background: transparent; }
.button--outline-light:hover { border-color: var(--ivory); background: rgba(248,244,237,.08); }
.button--outline-dark { color: var(--navy); border-color: rgba(31,49,66,.28); background: transparent; }
.button--outline-dark:hover { border-color: var(--navy); background: rgba(31,49,66,.05); }
.button--ivory { color: var(--navy); background: var(--ivory); }

.home-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  color: var(--ivory);
  background:
    radial-gradient(circle at 12% 72%, rgba(182,90,60,.32), transparent 34%),
    radial-gradient(circle at 91% 16%, rgba(201,150,45,.18), transparent 24%),
    linear-gradient(135deg, #182B39 0%, var(--navy) 55%, #243D4E 100%);
}
.home-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: .12;
  background-image:
    linear-gradient(rgba(248,244,237,.14) 1px, transparent 1px),
    linear-gradient(90deg, rgba(248,244,237,.14) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to right, #000, transparent 68%);
}
.home-hero::after {
  content: "NYC · 40.7128° N";
  position: absolute;
  left: 4vw;
  bottom: 22px;
  color: rgba(248,244,237,.28);
  font-size: .63rem;
  font-weight: 900;
  letter-spacing: .2em;
  text-transform: uppercase;
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(400px, .72fr);
  gap: clamp(44px, 7vw, 110px);
  align-items: center;
  min-height: calc(100svh - var(--header-height));
  padding: clamp(68px, 9vw, 130px) 0 clamp(90px, 10vw, 150px);
}
.hero-copy { max-width: 880px; }
.hero-copy .kicker { color: var(--amber-soft); }
.hero-copy h1 {
  margin: 0;
  font: 500 clamp(5rem, 10.5vw, 11.6rem)/.78 var(--serif);
  letter-spacing: -.075em;
}
.hero-copy .trademark { font: 600 .2em/1 var(--sans); vertical-align: top; margin-left: .08em; letter-spacing: 0; }
.hero-signature { margin: 18px 0 0; color: #F2CD7C; font: 600 clamp(1.7rem, 3vw, 3rem)/1 var(--script); transform: rotate(-2deg); transform-origin: left; }
.hero-lead {
  max-width: 830px;
  margin: 35px 0 0;
  color: rgba(248,244,237,.9);
  font: 500 clamp(1.45rem, 2.5vw, 2.35rem)/1.28 var(--serif);
  letter-spacing: -.018em;
}
.hero-lead em { color: #F3D28C; font-style: italic; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.hero-chips { display: flex; flex-wrap: wrap; gap: 8px; margin: 32px 0 0; padding: 0; list-style: none; }
.hero-chips li { padding: 8px 12px; border: 1px solid rgba(248,244,237,.22); border-radius: 999px; color: rgba(248,244,237,.72); font-size: .67rem; font-weight: 800; letter-spacing: .04em; }
.hero-media { position: relative; min-width: 0; }
.hero-photo-wrap {
  position: relative;
  width: min(100%, 560px);
  margin-left: auto;
  overflow: hidden;
  border: 1px solid rgba(248,244,237,.22);
  border-radius: 48% 48% 28px 28px;
  box-shadow: 0 40px 100px rgba(0,0,0,.32);
}
.hero-photo-wrap::after { content: ""; position: absolute; inset: 0; box-shadow: inset 0 0 0 1px rgba(255,255,255,.06); pointer-events: none; }
.hero-photo { width: 100%; aspect-ratio: 3 / 4.85; object-fit: cover; object-position: 50% 26%; }
.hero-photo-label {
  position: absolute;
  right: -15px;
  top: 32px;
  display: grid;
  place-items: center;
  width: 118px;
  height: 118px;
  padding: 16px;
  color: var(--navy);
  background: var(--amber);
  border-radius: 50%;
  text-align: center;
  font-size: .65rem;
  font-weight: 950;
  line-height: 1.25;
  letter-spacing: .08em;
  text-transform: uppercase;
  transform: rotate(7deg);
  box-shadow: var(--shadow-lg);
}
.hero-quote {
  position: absolute;
  left: -36px;
  bottom: 45px;
  width: min(290px, 68%);
  padding: 24px 26px;
  color: var(--navy);
  background: var(--ivory);
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  transform: rotate(-2deg);
}
.hero-quote strong { display: block; font: 500 1.45rem/1.08 var(--serif); }
.hero-quote small { display: block; margin-top: 10px; color: rgba(31,49,66,.62); font-size: .66rem; font-weight: 900; letter-spacing: .09em; text-transform: uppercase; }

.social-directory { background: var(--ivory); }
.social-intro {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: end;
  margin-bottom: 30px;
}
.social-intro h2 { margin: 0; color: var(--navy); font: 500 clamp(2.7rem, 5.6vw, 5.9rem)/.92 var(--serif); letter-spacing: -.05em; }
.social-intro p { max-width: 520px; margin: 0; color: rgba(43,43,43,.64); }
.social-cards { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 12px; }
.social-card {
  position: relative;
  min-height: 214px;
  padding: 22px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--white);
  box-shadow: 0 12px 34px rgba(31,49,66,.06);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.social-card:hover { transform: translateY(-5px); border-color: rgba(182,90,60,.32); box-shadow: var(--shadow-sm); }
.social-card::after { content: ""; position: absolute; right: -45px; bottom: -55px; width: 130px; height: 130px; border-radius: 50%; background: var(--accent, var(--amber)); opacity: .09; }
.social-card-icon { display: grid; place-items: center; width: 44px; height: 44px; color: var(--navy); background: rgba(201,150,45,.18); border-radius: 50%; }
.social-card-icon svg { width: 21px; height: 21px; }
.social-card-platform { margin: 25px 0 2px; color: rgba(43,43,43,.48); font-size: .66rem; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.social-card h3 { margin: 0; color: var(--navy); font: 600 1.23rem/1.1 var(--serif); overflow-wrap: anywhere; }
.social-card p { margin: 10px 0 0; color: rgba(43,43,43,.62); font-size: .78rem; line-height: 1.45; }
.social-card-arrow { position: absolute; right: 20px; top: 20px; width: 18px; height: 18px; color: var(--terracotta); }

.latest { background: var(--paper); }
.reels-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.reel-card {
  min-width: 0;
  overflow: hidden;
  color: var(--ivory);
  background: var(--navy);
  border: 1px solid rgba(31,49,66,.18);
  border-radius: 26px;
  box-shadow: 0 18px 48px rgba(31,49,66,.12);
  transition: transform .22s ease, box-shadow .22s ease;
}
.reel-card:hover { transform: translateY(-5px); box-shadow: 0 24px 60px rgba(31,49,66,.17); }
.reel-frame { position: relative; aspect-ratio: 9 / 16; overflow: hidden; background: #fff; }
.reel-frame iframe { width: 100%; height: 100%; border: 0; background: #fff; }
.reel-index {
  position: absolute;
  z-index: 2;
  left: 14px;
  top: 14px;
  display: grid;
  place-items: center;
  width: 39px;
  height: 39px;
  color: var(--navy);
  background: rgba(248,244,237,.92);
  border-radius: 50%;
  font-size: .66rem;
  font-weight: 950;
  box-shadow: 0 8px 20px rgba(0,0,0,.15);
  pointer-events: none;
}
.reel-copy { padding: 24px 24px 26px; }
.reel-handle { margin: 0 0 9px !important; color: #E9C56E !important; font-size: .65rem !important; font-weight: 900; letter-spacing: .09em; text-transform: uppercase; }
.reel-copy h3 { margin: 0; color: var(--ivory); font: 500 clamp(1.45rem, 2.2vw, 2rem)/1.08 var(--serif); }
.reel-copy > p { margin: 12px 0 20px; color: rgba(248,244,237,.68); font-size: .82rem; }
.text-link { display: inline-flex; align-items: center; gap: 8px; color: #F2D58F; font-size: .69rem; font-weight: 950; letter-spacing: .08em; text-transform: uppercase; }
.text-link svg { width: 15px; height: 15px; transition: transform .2s ease; }
.text-link:hover svg { transform: translate(3px, -3px); }
.embed-note { margin: 24px auto 0; max-width: 820px; color: rgba(43,43,43,.55); text-align: center; font-size: .75rem; }
.noscript-reels { display: grid; gap: 12px; }
.noscript-reels a { padding: 18px; color: var(--navy); background: var(--white); border: 1px solid var(--line); border-radius: 16px; font-weight: 800; }

.manifesto { overflow: hidden; color: var(--ivory); background: var(--terracotta); }
.manifesto-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: clamp(42px, 8vw, 120px); align-items: center; }
.manifesto-media { position: relative; }
.manifesto-image { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; border-radius: 28px; box-shadow: 0 30px 75px rgba(72,28,18,.25); }
.manifesto-sticker {
  position: absolute;
  right: -25px;
  bottom: 35px;
  display: grid;
  place-items: center;
  width: 126px;
  height: 126px;
  padding: 18px;
  color: var(--navy);
  background: var(--amber-soft);
  border-radius: 50%;
  text-align: center;
  font-size: .67rem;
  font-weight: 950;
  line-height: 1.2;
  letter-spacing: .08em;
  text-transform: uppercase;
  transform: rotate(-8deg);
}
.manifesto-copy .eyebrow { color: #F4DAA4; }
.manifesto-copy h2 { margin: 0; font: 500 clamp(3.6rem, 7vw, 7.3rem)/.87 var(--serif); letter-spacing: -.06em; }
.manifesto-copy > p { max-width: 690px; margin: 25px 0 0; color: rgba(248,244,237,.8); font-size: 1.05rem; }
.rule-list { margin-top: 38px; border-top: 1px solid rgba(248,244,237,.3); }
.rule { display: grid; grid-template-columns: 42px 1fr; gap: 18px; padding: 21px 0; border-bottom: 1px solid rgba(248,244,237,.3); }
.rule span { color: #F5D792; font-size: .72rem; font-weight: 950; }
.rule strong { font: 500 clamp(1.3rem, 2.2vw, 1.85rem)/1.2 var(--serif); }

.food-feature { background: var(--ivory); }
.feature-grid { display: grid; grid-template-columns: .92fr 1.08fr; gap: clamp(34px, 7vw, 105px); align-items: center; }
.feature-photo-wrap { position: relative; }
.feature-photo { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; object-position: center; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.feature-caption {
  position: absolute;
  left: 24px;
  bottom: 24px;
  max-width: 290px;
  padding: 17px 19px;
  color: var(--navy);
  background: rgba(248,244,237,.94);
  border-radius: 15px;
  font-size: .76rem;
  font-weight: 800;
  backdrop-filter: blur(8px);
}
.feature-copy .eyebrow { color: var(--olive); }
.feature-copy h2 { margin: 0; color: var(--wine); font: 500 clamp(4rem, 7.8vw, 8rem)/.86 var(--serif); letter-spacing: -.065em; }
.feature-copy .definition { margin: 25px 0 0; padding-left: 18px; border-left: 3px solid var(--amber); color: rgba(43,43,43,.68); font-size: 1.05rem; }
.feature-copy .definition strong { color: var(--wine); }
.feature-copy .lead { margin: 27px 0 0; color: var(--charcoal); font: 500 clamp(1.24rem, 2.2vw, 1.8rem)/1.42 var(--serif); }
.feature-tags { display: flex; flex-wrap: wrap; gap: 8px; margin: 28px 0 0; }
.feature-tags span { padding: 8px 12px; color: var(--wine); background: rgba(90,38,53,.07); border: 1px solid rgba(90,38,53,.14); border-radius: 999px; font-size: .68rem; font-weight: 850; }
.feature-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 31px; }

.collab-banner { color: var(--ivory); background: var(--olive); }
.collab-card {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 34px;
  align-items: center;
  padding: clamp(38px, 6vw, 78px);
  border: 1px solid rgba(248,244,237,.25);
  border-radius: 32px;
}
.collab-card::after { content: "N"; position: absolute; right: 5%; top: -58%; color: rgba(248,244,237,.055); font: 500 31rem/1 var(--serif); pointer-events: none; }
.collab-card > * { position: relative; z-index: 1; }
.collab-card h2 { margin: 0; font: 500 clamp(3rem, 6vw, 6.2rem)/.9 var(--serif); letter-spacing: -.05em; }
.collab-card p { max-width: 760px; margin: 17px 0 0; color: rgba(248,244,237,.8); }
.collab-actions { display: flex; flex-wrap: wrap; gap: 10px; justify-content: flex-end; }

.page-hero {
  position: relative;
  overflow: hidden;
  color: var(--ivory);
  background:
    radial-gradient(circle at 85% 18%, rgba(201,150,45,.2), transparent 24%),
    radial-gradient(circle at 10% 88%, rgba(182,90,60,.25), transparent 30%),
    var(--navy);
}
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .08;
  background-image: linear-gradient(rgba(248,244,237,.14) 1px, transparent 1px), linear-gradient(90deg, rgba(248,244,237,.14) 1px, transparent 1px);
  background-size: 82px 82px;
  pointer-events: none;
}
.page-hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.05fr .72fr; gap: clamp(44px, 7vw, 110px); align-items: center; padding: clamp(76px, 10vw, 150px) 0; }
.page-hero h1 { margin: 0; font: 500 clamp(4.8rem, 9.5vw, 9.5rem)/.82 var(--serif); letter-spacing: -.07em; }
.page-hero h1 .accent { color: #F1CF82; font-style: italic; }
.page-hero-lead { max-width: 790px; margin: 28px 0 0; color: rgba(248,244,237,.86); font: 500 clamp(1.25rem, 2.2vw, 1.86rem)/1.4 var(--serif); }
.page-hero-note { margin: 23px 0 0; color: #F1CF82; font: 600 1.45rem/1 var(--script); transform: rotate(-1deg); transform-origin: left; }
.page-hero-actions { display: flex; flex-wrap: wrap; gap: 11px; margin-top: 32px; }

.about-reel-wrap { width: min(100%, 455px); justify-self: end; }
.about-reel-wrap .reel-card { border-color: rgba(248,244,237,.22); box-shadow: 0 35px 90px rgba(0,0,0,.28); }
.about-reel-wrap .reel-copy { background: var(--navy-deep); }
.about-reel-wrap .reel-copy h3 { font-size: 1.6rem; }
.about-reel-wrap .reel-frame { max-height: 610px; }

.about-story { background: var(--ivory); }
.story-grid { display: grid; grid-template-columns: .58fr 1.42fr; gap: clamp(42px, 9vw, 140px); align-items: start; }
.story-aside { position: sticky; top: 112px; }
.story-aside h2 { margin: 0; color: var(--terracotta); font: 500 clamp(2.6rem, 4.7vw, 4.8rem)/1.03 var(--serif); letter-spacing: -.04em; }
.story-aside p { margin: 23px 0 0; color: rgba(43,43,43,.58); }
.story-copy { font: 500 clamp(1.18rem, 2vw, 1.65rem)/1.62 var(--serif); }
.story-copy p { margin: 0 0 1.35em; }
.story-copy p:first-child::first-letter { float: left; margin: .04em .12em 0 0; color: var(--terracotta); font-size: 5.3rem; line-height: .78; }
.story-punchline { color: var(--terracotta); font-style: italic; }
.geography-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; margin-top: 55px; background: var(--line); border: 1px solid var(--line); border-radius: 24px; overflow: hidden; }
.geo-item { min-height: 175px; padding: 25px; background: var(--white); }
.geo-item span { color: var(--amber); font-size: .69rem; font-weight: 950; letter-spacing: .14em; text-transform: uppercase; }
.geo-item h3 { margin: 32px 0 7px; color: var(--navy); font: 500 1.4rem/1.1 var(--serif); }
.geo-item p { margin: 0; color: rgba(43,43,43,.62); font-size: .79rem; }

.values { background: var(--paper); }
.values-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 12px; }
.value-card { min-height: 255px; padding: 28px; background: var(--white); border: 1px solid var(--line); border-radius: 22px; }
.value-number { color: var(--amber); font-size: .72rem; font-weight: 950; letter-spacing: .12em; }
.value-card h3 { margin: 58px 0 10px; color: var(--navy); font: 500 1.58rem/1.12 var(--serif); }
.value-card p { margin: 0; color: rgba(43,43,43,.64); font-size: .84rem; }

.photo-story { color: var(--ivory); background: var(--navy); }
.photo-grid { display: grid; grid-template-columns: 1.05fr .8fr .8fr; gap: 14px; align-items: stretch; }
.photo-card { position: relative; min-height: 480px; overflow: hidden; border-radius: 25px; }
.photo-card:nth-child(2), .photo-card:nth-child(3) { min-height: 390px; align-self: center; }
.photo-card img { width: 100%; height: 100%; object-fit: cover; }
.photo-card:nth-child(1) img { object-position: 50% 35%; }
.photo-card:nth-child(2) img { object-position: 50% 35%; }
.photo-card:nth-child(3) img { object-position: center; }
.photo-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(20,37,49,.78), transparent 52%); }
.photo-caption { position: absolute; z-index: 1; left: 22px; right: 22px; bottom: 20px; }
.photo-caption strong { display: block; font: 500 1.45rem/1.1 var(--serif); }
.photo-caption small { color: rgba(248,244,237,.67); }

.food-page-hero {
  background:
    radial-gradient(circle at 16% 80%, rgba(111,125,78,.28), transparent 28%),
    radial-gradient(circle at 85% 15%, rgba(201,150,45,.25), transparent 25%),
    linear-gradient(135deg, #291923 0%, var(--wine) 56%, #2A1821 100%);
}
.food-page-hero .page-hero-grid { grid-template-columns: 1fr .78fr; }
.food-hero-photo { position: relative; width: min(100%, 550px); justify-self: end; }
.food-hero-photo img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; border-radius: 38px; box-shadow: 0 35px 90px rgba(0,0,0,.32); }
.food-hero-sticker { position: absolute; left: -26px; bottom: 35px; display: grid; place-items: center; width: 126px; height: 126px; padding: 17px; color: var(--navy); background: var(--amber); border-radius: 50%; text-align: center; font-size: .68rem; font-weight: 950; line-height: 1.2; letter-spacing: .07em; text-transform: uppercase; transform: rotate(-8deg); }
.kvell-definition { max-width: 720px; margin: 28px 0 0; padding-left: 18px; border-left: 3px solid var(--amber); color: rgba(248,244,237,.8); }
.kvell-definition strong { color: #F3D18A; }
.food-reels { background: var(--paper); }
.food-reels .reels-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.food-rules { color: var(--ivory); background: var(--wine); }
.food-rule-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1px; background: rgba(248,244,237,.17); border: 1px solid rgba(248,244,237,.17); border-radius: 24px; overflow: hidden; }
.food-rule { min-height: 260px; padding: clamp(28px, 4vw, 55px); background: var(--wine); }
.food-rule span { color: var(--amber-soft); font-size: .68rem; font-weight: 950; letter-spacing: .15em; text-transform: uppercase; }
.food-rule h3 { margin: 46px 0 0; font: 500 clamp(1.8rem, 3vw, 3.1rem)/1.1 var(--serif); }

.work-hero {
  background:
    radial-gradient(circle at 84% 16%, rgba(201,150,45,.27), transparent 24%),
    radial-gradient(circle at 8% 84%, rgba(111,125,78,.27), transparent 26%),
    var(--navy);
}
.work-photo-stack { position: relative; width: min(100%, 560px); min-height: 610px; justify-self: end; }
.work-photo-main { position: absolute; inset: 0 16% 7% 0; width: 84%; height: 93%; object-fit: cover; border-radius: 42% 42% 25px 25px; box-shadow: 0 35px 90px rgba(0,0,0,.3); }
.work-photo-detail { position: absolute; right: 0; bottom: 0; width: 45%; aspect-ratio: 1 / 1.2; object-fit: cover; border: 8px solid var(--navy); border-radius: 24px; box-shadow: var(--shadow-lg); }
.partner-types { background: var(--ivory); }
.partner-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 12px; }
.partner-card { min-height: 275px; padding: 28px; color: var(--navy); background: var(--white); border: 1px solid var(--line); border-radius: 23px; }
.partner-card-icon { display: grid; place-items: center; width: 44px; height: 44px; color: var(--navy); background: rgba(201,150,45,.2); border-radius: 50%; font-weight: 950; }
.partner-card h3 { margin: 48px 0 10px; font: 500 1.55rem/1.13 var(--serif); }
.partner-card p { margin: 0; color: rgba(43,43,43,.65); font-size: .84rem; }
.fit-section { color: var(--ivory); background: var(--navy); }
.fit-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(44px,8vw,120px); align-items: start; }
.fit-grid h2 { margin: 0; font: 500 clamp(3.3rem,6vw,6.5rem)/.9 var(--serif); letter-spacing: -.05em; }
.fit-grid h2 em { color: var(--amber-soft); }
.fit-list { border-top: 1px solid rgba(248,244,237,.25); }
.fit-item { display: grid; grid-template-columns: 35px 1fr; gap: 16px; padding: 21px 0; border-bottom: 1px solid rgba(248,244,237,.25); }
.fit-item span { color: var(--amber-soft); font-weight: 950; }
.fit-item strong { font: 500 1.3rem/1.25 var(--serif); }
.contact-panel { color: var(--navy); background: var(--amber); }
.contact-panel-grid { display: grid; grid-template-columns: 1fr auto; gap: 34px; align-items: center; }
.contact-panel h2 { margin: 0; font: 500 clamp(3.4rem,7vw,7rem)/.88 var(--serif); letter-spacing: -.055em; }
.contact-panel p { max-width: 760px; margin: 18px 0 0; color: rgba(31,49,66,.72); }
.contact-email { display: inline-flex; align-items: center; gap: 11px; padding: 18px 22px; color: var(--ivory); background: var(--navy); border-radius: 999px; font-weight: 950; white-space: nowrap; }
.contact-email svg { width: 20px; height: 20px; }

.site-footer { color: var(--ivory); background: var(--navy-deep); }
.footer-main { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(40px, 8vw, 120px); padding: 64px 0 46px; }
.footer-brand .brand-lockup { color: var(--ivory); }
.footer-brand .brand-title { font-size: 1.38rem; }
.footer-brand .brand-by { color: rgba(248,244,237,.52); }
.footer-brand .brand-mark { filter: brightness(0) invert(1); opacity: .95; }
.footer-tagline { max-width: 560px; margin: 25px 0 0; color: rgba(248,244,237,.67); font: 500 clamp(1.35rem,2.2vw,1.85rem)/1.35 var(--serif); }
.footer-email { display: inline-flex; align-items: center; gap: 9px; margin-top: 25px; color: #F0CE82; font-weight: 900; }
.footer-email svg { width: 18px; height: 18px; }
.footer-links-grid { display: grid; grid-template-columns: .7fr 1.3fr; gap: 35px; }
.footer-col h3 { margin: 0 0 18px; color: rgba(248,244,237,.48); font-size: .66rem; font-weight: 950; letter-spacing: .15em; text-transform: uppercase; }
.footer-col a { display: block; width: fit-content; margin: 10px 0; color: rgba(248,244,237,.78); font-size: .83rem; }
.footer-col a:hover { color: #F0CE82; }
.footer-social-link { display: flex !important; align-items: center; gap: 10px; }
.footer-social-link svg { width: 17px; height: 17px; color: var(--amber-soft); }
.footer-bottom { display: flex; justify-content: space-between; gap: 24px; padding: 22px 0 30px; border-top: 1px solid rgba(248,244,237,.12); color: rgba(248,244,237,.42); font-size: .68rem; }
.footer-bottom a:hover { color: var(--ivory); }

.error-page { min-height: calc(100svh - var(--header-height)); display: grid; place-items: center; color: var(--ivory); background: var(--navy); text-align: center; }
.error-page h1 { margin: 0; font: 500 clamp(7rem,22vw,18rem)/.75 var(--serif); color: var(--amber); }
.error-page h2 { margin: 28px 0 0; font: 500 clamp(2.2rem,5vw,4.6rem)/1 var(--serif); }
.error-page p { max-width: 620px; margin: 18px auto 28px; color: rgba(248,244,237,.68); }

:focus-visible { outline: 3px solid var(--amber); outline-offset: 4px; }
[data-reveal] { opacity: 1; transform: none; }
.js-ready [data-reveal] { opacity: 0; transform: translateY(20px); transition: opacity .65s ease, transform .65s ease; }
.js-ready [data-reveal].is-visible { opacity: 1; transform: none; }

@media (max-width: 1220px) {
  .social-cards { grid-template-columns: repeat(3, minmax(0,1fr)); }
  .partner-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .values-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .geography-strip { grid-template-columns: repeat(2, minmax(0,1fr)); }
}

@media (max-width: 1080px) {
  .hero-grid { grid-template-columns: 1fr .7fr; }
  .hero-quote { left: -14px; }
  .desktop-nav a { padding-inline: 10px; }
  .header-social:nth-of-type(3) { display: none; }
  .photo-grid { grid-template-columns: 1fr 1fr; }
  .photo-card:first-child { grid-row: span 2; }
  .photo-card:nth-child(2), .photo-card:nth-child(3) { min-height: 270px; }
}

@media (max-width: 980px) {
  :root { --header-height: 76px; }
  .site-header { grid-template-columns: 1fr auto; min-height: var(--header-height); }
  .desktop-nav, .header-actions { display: none; }
  .menu-toggle { display: block; }
  .brand-mark { width: 43px; height: 43px; flex-basis: 43px; }
  .hero-grid, .page-hero-grid, .food-page-hero .page-hero-grid { grid-template-columns: 1fr; min-height: 0; }
  .hero-grid { padding-top: 84px; }
  .hero-media { width: min(100%, 620px); margin: 0 auto; }
  .hero-photo-wrap { margin: 0 auto; }
  .page-hero-grid { padding: 90px 0; }
  .about-reel-wrap, .food-hero-photo, .work-photo-stack { justify-self: center; }
  .section-head { grid-template-columns: 1fr; align-items: start; }
  .manifesto-grid, .feature-grid, .story-grid, .fit-grid { grid-template-columns: 1fr; }
  .story-aside { position: static; }
  .collab-card, .contact-panel-grid { grid-template-columns: 1fr; }
  .collab-actions { justify-content: flex-start; }
  .footer-main { grid-template-columns: 1fr; }
  .work-photo-stack { min-height: 580px; width: min(100%, 560px); }
}

@media (max-width: 760px) {
  .shell { width: min(var(--max), calc(100% - 38px)); }
  .section { padding: 74px 0; }
  .section--tight { padding: 58px 0; }
  .brand-by { display: none; }
  .home-hero::before { background-size: 54px 54px; }
  .hero-copy h1 { font-size: clamp(4.3rem, 21vw, 7rem); }
  .hero-lead { font-size: 1.35rem; }
  .hero-photo-label { right: 7px; top: 18px; width: 96px; height: 96px; font-size: .55rem; }
  .hero-quote { left: 11px; bottom: 18px; width: 63%; padding: 18px; }
  .hero-quote strong { font-size: 1.12rem; }
  .social-intro { display: block; }
  .social-intro p { margin-top: 16px; }
  .social-cards { grid-template-columns: 1fr 1fr; }
  .social-card { min-height: 196px; padding: 19px; }
  .social-card h3 { font-size: 1.05rem; }
  .reels-grid, .food-reels .reels-grid { grid-template-columns: 1fr; }
  .reel-card { max-width: 520px; margin-inline: auto; }
  .manifesto-grid { gap: 50px; }
  .manifesto-media { max-width: 520px; margin-inline: auto; }
  .manifesto-sticker { right: -2px; width: 106px; height: 106px; }
  .feature-grid { gap: 48px; }
  .feature-copy h2 { font-size: clamp(3.7rem, 18vw, 6rem); }
  .geography-strip, .values-grid, .partner-grid, .food-rule-grid { grid-template-columns: 1fr; }
  .photo-grid { grid-template-columns: 1fr; }
  .photo-card, .photo-card:nth-child(2), .photo-card:nth-child(3) { min-height: 390px; }
  .photo-card:first-child { grid-row: auto; }
  .food-hero-sticker { left: 7px; bottom: 12px; width: 104px; height: 104px; }
  .work-photo-stack { min-height: 500px; }
  .footer-links-grid { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; }
  .contact-email { white-space: normal; overflow-wrap: anywhere; }
}

@media (max-width: 520px) {
  .brand-title { font-size: 1.03rem; }
  .brand-lockup { gap: 8px; }
  .hero-actions .button, .page-hero-actions .button { width: 100%; }
  .hero-chips { gap: 6px; }
  .hero-photo-wrap { border-radius: 42% 42% 22px 22px; }
  .hero-photo-label { width: 86px; height: 86px; }
  .social-cards { grid-template-columns: 1fr; }
  .social-card { min-height: 165px; }
  .collab-card { padding: 32px 25px; }
  .collab-actions .button { width: 100%; }
  .footer-links-grid { grid-template-columns: 1fr; }
  .work-photo-stack { min-height: 430px; }
}

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

/* 2026 refined pass: sharing, social discovery, embeds, and interaction polish */
:where(h1, h2, h3, section, [id]) { scroll-margin-top: calc(var(--header-height) + 24px); }
:where(a, button):focus-visible {
  outline: 3px solid var(--amber);
  outline-offset: 4px;
  border-radius: 8px;
}
a, button { -webkit-tap-highlight-color: rgba(201, 150, 45, .2); }
.section--compact { padding: clamp(50px, 6vw, 82px) 0; }

/* A slightly cleaner social hub on the homepage. */
.social-intro { margin-bottom: clamp(28px, 4vw, 46px); }
.social-cards { gap: 14px; }
.social-card {
  min-height: 215px;
  padding: 22px;
  background: rgba(255, 253, 252, .92);
}
.social-card-platform { margin-top: 20px; }
.social-card p { max-width: 25ch; }

/* Compact social directory for inner pages. */
.social-strip-section { background: var(--ivory); border-top: 1px solid var(--line); }
.social-strip-head {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, .6fr);
  gap: clamp(28px, 6vw, 82px);
  align-items: end;
  margin-bottom: 30px;
}
.social-strip-head h2 {
  margin: 0;
  color: var(--navy);
  font: 500 clamp(2.6rem, 5vw, 5.2rem)/.94 var(--serif);
  letter-spacing: -.05em;
}
.social-strip-head > p { margin: 0; color: rgba(43, 43, 43, .65); }
.social-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}
.social-strip-link {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  min-height: 86px;
  padding: 15px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.social-strip-link:hover { transform: translateY(-3px); border-color: rgba(182,90,60,.35); box-shadow: var(--shadow-sm); }
.social-strip-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  color: var(--navy);
  background: rgba(201,150,45,.17);
  border-radius: 50%;
}
.social-strip-icon svg { width: 20px; height: 20px; }
.social-strip-link span:last-child { min-width: 0; }
.social-strip-link small {
  display: block;
  margin-bottom: 3px;
  color: rgba(43,43,43,.48);
  font-size: .61rem;
  font-weight: 900;
  letter-spacing: .11em;
  text-transform: uppercase;
}
.social-strip-link strong {
  display: block;
  overflow-wrap: anywhere;
  color: var(--navy);
  font: 600 1rem/1.1 var(--serif);
}

/* The quieter origins strip keeps identity present without turning it into the headline. */
.geography-strip--three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.geography-strip--three .geo-item { min-height: 165px; }

/* Instagram embeds: visible loading state, lazy hydration, and graceful fallback. */
.reel-frame { isolation: isolate; background: #EEEAE4; }
.reel-frame iframe {
  position: relative;
  z-index: 2;
  opacity: 0;
  transition: opacity .3s ease;
}
.reel-frame.is-loaded iframe { opacity: 1; }
.reel-loading {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: grid;
  place-items: center;
  padding: 24px;
  color: rgba(31,49,66,.72);
  background:
    linear-gradient(115deg, transparent 38%, rgba(255,255,255,.48) 50%, transparent 62%) 0 0 / 220% 100%,
    linear-gradient(145deg, #F5F1EB, #E6E0D8);
  text-align: center;
  animation: reel-shimmer 1.8s linear infinite;
}
.reel-loading span {
  padding: 10px 13px;
  background: rgba(248,244,237,.86);
  border: 1px solid rgba(31,49,66,.12);
  border-radius: 999px;
  font-size: .65rem;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.reel-frame.is-loaded .reel-loading { opacity: 0; pointer-events: none; transition: opacity .25s ease; }
@keyframes reel-shimmer { to { background-position: -220% 0, 0 0; } }
.embed-note { max-width: 760px; margin-inline: auto; text-align: center; }

/* More exact mobile menu feedback. */
.mobile-menu > a[aria-current="page"] { color: var(--amber-soft); }
.mobile-menu > a[aria-current="page"]::after { content: "•"; }

/* Share-card-friendly, compact headings and stronger wrapping. */
.hero-copy h1, .page-hero h1 { text-wrap: balance; }
.hero-lead, .page-hero-lead, .section-head h2, .social-intro h2, .social-strip-head h2 { text-wrap: balance; }

@media (max-width: 1220px) {
  .social-strip { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .geography-strip--three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 760px) {
  .social-strip-head { grid-template-columns: 1fr; align-items: start; }
  .social-strip-head > p { max-width: 44ch; }
  .social-strip { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .social-strip-link:last-child { grid-column: 1 / -1; }
  .social-cards { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .social-card { min-height: 152px; padding: 17px; }
  .social-card-icon { width: 39px; height: 39px; }
  .social-card-platform { margin-top: 14px; }
  .social-card p { display: none; }
  .social-card:last-child { grid-column: 1 / -1; }
  .geography-strip--three { grid-template-columns: 1fr; }
  .reel-loading { animation: none; }
}

@media (max-width: 520px) {
  .social-cards { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .social-card { min-height: 142px; }
  .social-strip-link { min-height: 78px; padding: 12px; }
  .social-strip-icon { width: 38px; height: 38px; flex-basis: 38px; }
  .social-strip-link strong { font-size: .9rem; }
}

@media (max-width: 360px) {
  .social-cards, .social-strip { grid-template-columns: 1fr; }
  .social-card:last-child, .social-strip-link:last-child { grid-column: auto; }
}
