/* ==========================================================
   NAAN & CO — V4 "HOT, FRESH & SECOND TO NAAN"
   Per Brand Guidelines Edition 01: Tandoor Red on Fresh Cream,
   an Emerald Green accent on vegetarian tags. Type is a strict
   two-role pair — Instrument Serif for display/editorial only
   (headlines, dish names, pull-quotes), Poppins for everything
   else (body copy, labels, specs, tracked-out caps). Pair,
   don't mix, within a single layout.
   Opens on the Naancy film, then the logo draws itself on.
   Mobile-first: base styles target ~380px
   ========================================================== */

:root {
  --red: #c10712;
  --cream: #fdfdf3;
  --green: #1a5c43;
  --ink: #0a0a0a;
  --white: #ffffff;
  --font-display: "Instrument Serif", Georgia, serif;
  --font-body: "Poppins", "Helvetica Neue", Arial, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --gutter: clamp(20px, 5vw, 64px);
  --max-w: 1360px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--cream);
  color: var(--red);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.35;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.intro-lock {
  overflow: hidden;
}

::selection {
  background: var(--red);
  color: var(--cream);
}

img,
video {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
}

:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 3px;
}

.site-footer :focus-visible,
.intro :focus-visible {
  outline-color: var(--cream);
}

.wrap {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

/* ---------- tiny caps + pills ---------- */

.micro {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 2px 16px 0;
  border: 1px solid var(--red);
  border-radius: 999px;
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: background-color 180ms var(--ease), color 180ms var(--ease);
}

.pill:hover {
  background: var(--red);
  color: var(--cream);
}

/* ==========================================================
   INTRO — film first, then the logo draws itself
   ========================================================== */

.intro {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: var(--cream);
  display: grid;
  place-items: center;
  transition: opacity 600ms var(--ease);
}

.intro video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 280ms var(--ease), transform 500ms var(--ease);
}

/* dissolve between the film and the drawing: cream washes in
   while the last frame drifts forward and melts away */
.intro.fading {
  background: var(--cream);
}

.intro.fading video {
  opacity: 0;
  transform: scale(1.07);
  pointer-events: none;
}

.intro.fading .intro-skip {
  border-color: var(--red);
  color: var(--red);
  background: transparent;
}

.intro-logo {
  position: relative;
  width: min(80vw, 640px);
  color: var(--red);
  fill: currentColor; /* SVG defaults to black without this */
  opacity: 0;
  fill-opacity: 0;
  stroke: var(--red);
  stroke-width: 2.5;
  stroke-dasharray: 2600;
  stroke-dashoffset: 2600;
  transition: opacity 200ms var(--ease);
}

.intro-skip {
  position: absolute;
  bottom: max(24px, env(safe-area-inset-bottom));
  left: 50%;
  transform: translateX(-50%);
  border-color: var(--cream);
  color: var(--cream);
  background: rgba(0, 0, 0, 0.25);
}

.intro-skip:hover {
  background: var(--cream);
  color: var(--red);
}

.intro.fading .intro-skip,
.intro.drawing .intro-skip {
  border-color: var(--red);
  color: var(--red);
  background: transparent;
}

/* phase B: cream room, pen comes out */
.intro.drawing {
  background: var(--cream);
}

.intro.drawing video {
  opacity: 0;
  pointer-events: none;
}

.intro.drawing .intro-skip {
  border-color: var(--red);
  color: var(--red);
  background: transparent;
}

.intro.drawing .intro-logo {
  opacity: 1;
  animation:
    logoDraw 900ms var(--ease) forwards,
    logoInk 400ms 650ms var(--ease) forwards;
}

@keyframes logoDraw {
  to { stroke-dashoffset: 0; }
}

@keyframes logoInk {
  to { fill-opacity: 1; }
}

/* phase C: lights up on the site */
.intro.leaving {
  opacity: 0;
  pointer-events: none;
}

/* ==========================================================
   HEADER
   ========================================================== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: var(--cream);
  border-bottom: 1px solid var(--red);
}

.site-header .wrap {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-areas: "logo" "left" "right";
  row-gap: 10px;
  padding-block: 10px;
}

.header-left {
  grid-area: left;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px;
}

.brand-mark {
  grid-area: logo;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: var(--red);
  justify-self: center;
}

.brand-mark svg {
  height: 34px;
  width: auto;
}

.header-right {
  grid-area: right;
  display: flex;
  justify-content: center;
}

/* ==========================================================
   HERO
   ========================================================== */

.hero {
  text-align: center;
  padding-block: clamp(48px, 9vw, 120px) clamp(40px, 7vw, 96px);
}

.hero-shout {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(40px, 9.6vw, 118px);
  line-height: 0.98;
  letter-spacing: 0.005em;
  text-transform: uppercase;
  max-width: 13ch;
  margin-inline: auto;
}

.hero-shout em {
  font-style: italic;
  text-transform: none;
  letter-spacing: 0;
}

.hero-cols {
  display: grid;
  gap: var(--gutter);
  max-width: 780px;
  margin: clamp(28px, 5vw, 48px) auto 0;
  text-align: center;
}

.hero-cols p + p {
  margin-top: 12px;
}

.hero-cols p {
  font-size: 13px;
  line-height: 1.55;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  max-width: 34ch;
  margin-inline: auto;
}

.hero-lockup {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  gap: clamp(16px, 3vw, 28px);
  margin: clamp(36px, 6vw, 64px) auto 0;
}

.hero-stamp {
  height: clamp(90px, 16vw, 150px);
  width: auto;
  color: var(--red);
}

.hero-divider {
  width: 1px;
  height: clamp(48px, 9vw, 76px);
  background: var(--red);
  opacity: 0.3;
}

.hero-partner {
  display: inline-flex;
}

.hero-partner img {
  height: clamp(90px, 16vw, 150px);
  width: auto;
}

/* ---------- centered film block ---------- */

.filmstrip {
  padding-block: clamp(24px, 5vw, 72px) clamp(56px, 10vw, 140px);
  display: grid;
  place-items: center;
}

.filmstrip video {
  width: min(72vw, 380px);
}

.filmstrip figcaption {
  font-family: var(--font-display);
  margin-top: 16px;
  font-size: clamp(20px, 2.8vw, 27px);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ==========================================================
   DISH MARQUEE with cutout overlap
   ========================================================== */

.dishline {
  position: relative;
  padding-block: clamp(48px, 9vw, 120px);
  overflow: hidden;
}

.dishline-track {
  display: flex;
  width: max-content;
  animation: marquee 30s linear infinite;
}

.dishline-set {
  display: flex;
}

.dishline-set span {
  font-family: var(--font-display);
  font-size: clamp(56px, 13vw, 160px);
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.dishline-set span::after {
  content: "\00a0/\00a0";
}

.dishline-cut {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(62vw, 420px);
  transform: translate(-50%, -50%) rotate(-4deg);
  pointer-events: none;
  filter: drop-shadow(0 24px 40px rgba(0, 0, 0, 0.25));
  transition: opacity 110ms var(--ease);
}

.dishline-cut.swapping {
  opacity: 0;
}


@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}

/* ==========================================================
   MENU — cutouts floating in air
   ========================================================== */

.menu {
  padding-block: clamp(40px, 8vw, 110px);
  text-align: center;
  scroll-margin-top: 64px;
}

.section-label {
  font-family: var(--font-display);
  font-size: clamp(22px, 3.4vw, 34px);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.menu .pill {
  margin-top: 16px;
}

.dish-field {
  margin-top: clamp(40px, 7vw, 88px);
  display: grid;
  gap: clamp(48px, 9vw, 96px);
}

.dish {
  display: grid;
  justify-items: center;
  gap: 4px;
}

.dish img {
  width: min(66vw, 340px);
  transition: transform 350ms var(--ease);
  filter: drop-shadow(0 18px 30px rgba(0, 0, 0, 0.18));
}

.dish:hover img {
  transform: rotate(2.5deg) scale(1.03);
}

.dish-name {
  font-family: var(--font-display);
  margin-top: 18px;
  font-weight: 400;
  font-style: italic;
  font-size: clamp(26px, 4.4vw, 38px);
  line-height: 1;
}

.dish-kind {
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.dish-v {
  color: var(--green);
}

.dish-desc {
  margin-top: 6px;
  font-size: 15px;
  max-width: 34ch;
  color: #c10712;
}

/* ==========================================================
   FOUNDERS — editorial split screen, legacy vs innovation
   ========================================================== */

.founders {
  padding-top: clamp(40px, 8vw, 110px);
  scroll-margin-top: 64px;
}

.founders .section-label {
  text-align: center;
  margin-bottom: clamp(28px, 5vw, 56px);
}

.founders-split {
  display: grid;
  border-top: 1px solid var(--red);
}

.f-panel {
  padding: clamp(24px, 5vw, 64px) var(--gutter) clamp(40px, 6vw, 72px);
}

.f-panel--cream {
  background: var(--cream);
  color: var(--red);
  border-top: 1px solid var(--red);
}

.f-panel--red {
  background: var(--red);
  color: var(--cream);
  border-top: 1px solid var(--cream);
}

.f-photo {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.f-tag {
  margin-top: 22px;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.f-name {
  font-family: var(--font-display);
  margin-top: 6px;
  font-weight: 400;
  font-style: italic;
  font-size: clamp(32px, 6vw, 54px);
  line-height: 1.02;
}

.f-pull {
  font-family: var(--font-display);
  margin-top: 14px;
  font-style: italic;
  font-size: clamp(20px, 3vw, 27px);
  line-height: 1.2;
  max-width: 24ch;
}

.f-copy {
  margin-top: 14px;
  font-size: 15.5px;
  line-height: 1.5;
  max-width: 46ch;
}

.f-list {
  margin-top: 22px;
  list-style: none;
  max-width: 46ch;
}

.f-list li {
  padding: 9px 0;
  border-top: 1px solid currentColor;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.f-list li:last-child {
  border-bottom: 1px solid currentColor;
}

.f-pill {
  display: inline-flex;
  margin-top: 22px;
}

.f-panel--red .pill {
  border-color: var(--cream);
}

.f-panel--red .pill:hover {
  background: var(--cream);
  color: var(--red);
}

.founders-cta {
  text-align: center;
  padding-block: clamp(32px, 6vw, 56px) clamp(16px, 3vw, 24px);
}

@media (min-width: 900px) {
  .founders-split {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .f-panel--red,
  .f-panel--cream {
    border-top: 0;
  }

  .f-photo {
    aspect-ratio: 3 / 4;
  }
}

/* ==========================================================
   SHOP
   ========================================================== */

.shop {
  padding-block: clamp(56px, 10vw, 140px);
  scroll-margin-top: 64px;
}

.shop-grid {
  display: grid;
  gap: var(--space-4, 40px);
  margin-top: clamp(28px, 5vw, 56px);
}

.shop-facts {
  display: grid;
  gap: 22px;
  align-content: start;
}

.shop-facts h3 {
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 400;
  margin-bottom: 4px;
}

.shop-facts p {
  font-size: 16px;
}

.shop-facts .pill {
  justify-self: start;
}

.shop-photos {
  display: flex;
  gap: 10px;
}

.shop-photos img {
  width: 100%;
  min-width: 0;
  object-fit: cover;
}

.shop-photo--wide {
  flex: 2 1 0;
  aspect-ratio: 3 / 2;
}

.shop-photo--portrait {
  flex: 1 1 0;
  aspect-ratio: 3 / 4;
}

/* ==========================================================
   FOOTER — the big red curve
   ========================================================== */

.site-footer {
  margin-top: clamp(24px, 5vw, 64px);
  background: var(--red);
  color: var(--cream);
  border-radius: clamp(24px, 5vw, 48px) clamp(24px, 5vw, 48px) 0 0;
  padding: clamp(48px, 9vw, 110px) 0 calc(34px + 44px); /* room for the info bar */
  text-align: center;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.footer-links .pill {
  border-color: var(--cream);
}

.footer-links .pill:hover {
  background: var(--cream);
  color: var(--red);
}

.footer-logo {
  display: block;
  width: min(88%, 980px);
  margin: clamp(40px, 8vw, 96px) auto 0;
  color: var(--cream);
}

.footer-legal {
  margin-top: clamp(28px, 5vw, 48px);
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0.9;
}

/* ---------- fixed info ribbon ---------- */

.ribbon {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 30;
  background: var(--cream);
  color: var(--red);
  border-top: 1px solid var(--red);
  overflow: hidden;
  padding: 8px 0;
}

.ribbon-track {
  display: flex;
  width: max-content;
  animation: marquee 40s linear infinite;
}

.ribbon-set {
  display: flex;
}

.ribbon-set span {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.ribbon-set span::after {
  content: "\00a0\00a0\00b7\00a0\00a0";
}

/* ---------- version switcher ---------- */

.vswitch {
  position: fixed;
  bottom: 44px;
  right: 12px;
  z-index: 1000;
  display: flex;
  gap: 3px;
  background: var(--cream);
  border: 1px solid var(--red);
  border-radius: 50px;
  padding: 3px;
}

.vswitch a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  text-decoration: none;
  font-size: 11px;
  color: var(--red);
}

.vswitch a[aria-current] {
  background: var(--red);
  color: var(--cream);
}

/* ==========================================================
   MOTION
   ========================================================== */

@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 600ms var(--ease), transform 600ms var(--ease);
  }

  .reveal.is-in {
    opacity: 1;
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .intro {
    display: none;
  }

  .dishline-track,
  .ribbon-track {
    animation: none;
    width: auto;
  }

  .dishline-set[aria-hidden],
  .ribbon-set[aria-hidden] {
    display: none;
  }

  .dishline-set {
    flex-wrap: wrap;
    justify-content: center;
  }

  .ribbon-set {
    flex-wrap: wrap;
  }

  .dish:hover img {
    transform: none;
  }
}

/* ==========================================================
   TABLET 768px
   ========================================================== */

@media (min-width: 768px) {
  .site-header .wrap {
    grid-template-columns: 1fr auto 1fr;
    grid-template-areas: "left logo right";
    align-items: center;
    gap: var(--space, 12px);
    padding-block: 0;
    height: 64px;
  }

  .header-left,
  .header-right {
    justify-content: flex-start;
    flex-wrap: nowrap;
  }

  .header-right {
    justify-content: flex-end;
  }

  .hero-cols {
    grid-template-columns: 1fr 1fr;
    text-align: center;
  }

  .dish-field {
    grid-template-columns: repeat(2, 1fr);
    align-items: start;
  }

  /* loose, staggered field — not a strict grid */
  .dish:nth-child(2) { margin-top: 72px; }
  .dish:nth-child(3) { margin-top: -24px; }
  .dish:nth-child(5) { margin-top: 56px; }

  .shop-grid {
    grid-template-columns: 0.8fr 1.2fr;
    gap: clamp(40px, 6vw, 96px);
  }
}

@media (min-width: 1100px) {
  .dish-field {
    grid-template-columns: repeat(3, 1fr);
  }

  .dish:nth-child(2) { margin-top: 96px; }
  .dish:nth-child(3) { margin-top: 40px; }
  .dish:nth-child(4) { margin-top: -20px; }
  .dish:nth-child(5) { margin-top: 72px; }
}

/* ==========================================================
   FAQ page
   ========================================================== */

.eyebrow {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.faq-hero {
  text-align: center;
  padding-block: clamp(56px, 10vw, 120px) clamp(32px, 6vw, 56px);
}

.faq-shout {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(34px, 6.4vw, 72px);
  line-height: 1;
  letter-spacing: 0.005em;
  text-transform: uppercase;
  margin-top: 14px;
}

.faq-shout em {
  font-style: italic;
  text-transform: none;
  letter-spacing: 0;
}

.faq {
  padding-block: 0 clamp(56px, 10vw, 120px);
}

.faq-group {
  max-width: 720px;
  margin: 0 auto;
  text-align: left;
}

.faq-group + .faq-group {
  margin-top: clamp(40px, 7vw, 72px);
}

.faq-group .section-label {
  font-size: clamp(20px, 2.8vw, 26px);
  margin-bottom: clamp(12px, 2vw, 20px);
}

.faq-list {
  border-top: 1px solid var(--red);
}

.faq-item {
  border-bottom: 1px solid var(--red);
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 44px;
  padding-block: 16px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 16px;
  line-height: 1.4;
  cursor: pointer;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: 20px;
  line-height: 1;
  transition: transform 200ms var(--ease);
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item p {
  padding-bottom: 20px;
  padding-right: 40px;
  font-family: var(--font-body);
  font-size: 15.5px;
  line-height: 1.55;
  color: rgba(227, 3, 19, 0.85);
}

.faq-item a {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.faq-signoff {
  font-family: var(--font-display);
  font-style: italic;
  text-align: center;
  font-size: clamp(28px, 5vw, 44px);
  margin-top: clamp(48px, 8vw, 88px);
}

/* ==========================================================
   ABOUT page
   ========================================================== */

.about-hero {
  text-align: center;
  padding-block: clamp(56px, 10vw, 120px) clamp(40px, 7vw, 72px);
}

.about-shout {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(36px, 7vw, 76px);
  line-height: 1.02;
  letter-spacing: 0.005em;
  margin-top: 14px;
}

.about-shout em {
  font-style: italic;
}

.about-hero p {
  max-width: 46ch;
  margin: 18px auto 0;
  font-size: 16px;
  line-height: 1.55;
}

.about-section {
  padding-block: clamp(40px, 8vw, 96px);
  scroll-margin-top: 64px;
}

.about-section + .about-section {
  border-top: 1px solid var(--red);
}

.about-section .section-label {
  margin-bottom: clamp(20px, 4vw, 36px);
}

/* ---------- The Concept ---------- */

.concept .section-label,
.chef .section-label {
  text-align: center;
}

.concept-lead {
  max-width: 62ch;
  margin-inline: auto;
  text-align: center;
  font-size: 16px;
  line-height: 1.6;
}

.concept-lead p + p {
  margin-top: 14px;
}

.concept-photo {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 18px;
  margin-top: clamp(28px, 5vw, 48px);
}

.concept-points {
  display: grid;
  gap: 28px;
  margin-top: clamp(32px, 6vw, 56px);
}

.concept-point h3 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.02em;
}

.concept-point p {
  margin-top: 6px;
  font-size: 16px;
  line-height: 1.55;
  max-width: 52ch;
}

.concept-close {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(20px, 5.2vw, 36px);
  line-height: 1.2;
  max-width: 44ch;
  margin: clamp(40px, 7vw, 64px) auto 0;
  text-align: center;
}

/* ---------- Chef Vineet ---------- */

.chef-grid {
  display: grid;
  gap: clamp(28px, 5vw, 40px);
}

.chef-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(8px, 2vw, 16px);
  align-items: start;
}

.chef-photo-column {
  display: grid;
  gap: clamp(8px, 2vw, 16px);
}

.chef-photo-column--offset {
  padding-top: clamp(28px, 7vw, 68px);
}

.chef-photo {
  width: 100%;
  object-fit: cover;
  border-radius: clamp(8px, 2vw, 16px);
}

.chef-photo--portrait {
  aspect-ratio: 4 / 5;
  object-position: 26% center;
}

.chef-photo--tall {
  aspect-ratio: 2 / 3;
}

.chef-photo--landscape {
  aspect-ratio: 1 / 1;
}

.chef-photo--wide {
  grid-column: 1 / -1;
  aspect-ratio: 16 / 9;
}

.chef-pull {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(24px, 4vw, 34px);
  line-height: 1.15;
}

.chef-copy {
  margin-top: 16px;
  font-size: 16px;
  line-height: 1.6;
  max-width: 56ch;
}

.chef-copy p + p {
  margin-top: 14px;
}

.chef-facts {
  margin-top: 24px;
  list-style: none;
  max-width: 56ch;
  border-top: 1px solid currentColor;
}

.chef-facts li {
  padding: 11px 0;
  border-bottom: 1px solid currentColor;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ---------- The Powerhouse Alliance (EKFC) ---------- */

.alliance {
  padding-block: 0;
  border-top: 1px solid var(--red);
}

.alliance-heading {
  padding-block: clamp(56px, 9vw, 108px);
  background: var(--red);
  color: var(--cream);
}

.alliance-heading-grid {
  display: grid;
  gap: clamp(36px, 8vw, 72px);
  justify-items: center;
  text-align: center;
}

.alliance-heading .section-label {
  color: var(--cream);
}

.alliance-heading p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(28px, 5vw, 52px);
  line-height: 1.08;
  max-width: 22ch;
}

.alliance-heading-logo {
  width: clamp(160px, 48vw, 220px);
  height: auto;
  filter: brightness(0) invert(1);
}

.alliance-body {
  padding-block: clamp(40px, 8vw, 96px);
}

.alliance-copy {
  font-size: 16px;
  line-height: 1.6;
  max-width: 62ch;
}

.alliance-copy p + p {
  margin-top: 14px;
}

.alliance-photo-column {
  display: grid;
  gap: clamp(10px, 2vw, 18px);
  margin-top: clamp(28px, 5vw, 44px);
}

.alliance-photo-column img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: clamp(8px, 2vw, 14px);
}

@media (max-width: 767px) {
  .alliance-heading-grid > div {
    width: 100%;
    text-align: center;
  }

  .alliance-heading .section-label,
  .alliance-heading p {
    width: 100%;
    margin-inline: auto;
    text-align: center;
  }

  .alliance-heading-logo {
    justify-self: center;
    margin-inline: auto;
  }
}

@media (min-width: 768px) {
  .chef-photo--landscape {
    aspect-ratio: 4 / 3;
  }

  .alliance-heading-grid {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    justify-items: stretch;
    text-align: left;
  }

  .alliance-heading-logo {
    width: clamp(240px, 24vw, 360px);
    justify-self: end;
  }

  .concept-points {
    grid-template-columns: repeat(3, 1fr);
  }

  .chef-grid {
    grid-template-columns: minmax(0, 1.06fr) minmax(0, 0.94fr);
    align-items: start;
  }

  .alliance-body .wrap {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: clamp(40px, 6vw, 72px);
    align-items: start;
  }

  .alliance-photo-column {
    margin-top: 0;
  }
}
