/* ——————————————————————————————————————————————————————
   Apna Pind — dark editorial brochure
   Palette: ink-black (dominant) · warm paper (two breathers) · deep red
   Type:    Samarakan (wordmark) · Fraunces (display) · Instrument Sans (body)
   —————————————————————————————————————————————————————— */

@font-face {
  font-family: "Samarakan";
  src: url("Assets/Samarakan.TTF") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  /* Inks — warm, not true black */
  --ink:         #0c0b0a;
  --ink-2:       #151311;
  --ink-3:       #1f1b18;
  --ink-line:    rgba(244,239,230,.14);
  --ink-line-2:  rgba(244,239,230,.28);

  /* Paper — for light breather sections */
  --paper:       #f4efe6;
  --paper-2:     #ece4d3;
  --paper-3:     #e3d9c3;
  --paper-line:  rgba(11,11,11,.14);
  --paper-line-2:rgba(11,11,11,.28);

  /* Red */
  --red:         #c0261f;
  --red-deep:    #8a1915;
  --red-soft:    #e04a42;

  /* Text */
  --text-on-dark:  #ece4d3;
  --text-on-dark-muted: rgba(236,228,211,.62);
  --text-on-paper: #0c0b0a;
  --text-on-paper-muted: #746b5c;

  --ff-word:    "Samarakan", "Fraunces", serif;
  --ff-display: "Fraunces", "Times New Roman", serif;
  --ff-body:    "Instrument Sans", system-ui, sans-serif;

  --maxw: 1440px;
  --gutter: clamp(1.25rem, 3vw, 3rem);
}

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

html { scroll-behavior: smooth; background: var(--ink); }

body {
  font-family: var(--ff-body);
  background: var(--ink);
  color: var(--text-on-dark);
  font-size: 17px;
  line-height: 1.55;
  font-feature-settings: "ss01", "ss02";
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

/* subtle film grain on dark body */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 100;
  opacity: .04;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 .6 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}

img { max-width: 100%; display: block; }
a  { color: inherit; text-decoration: none; }

/* ————— Global type ————— */

.label {
  font-family: var(--ff-body);
  font-size: .72rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--text-on-dark-muted);
}
.is-paper .label { color: var(--text-on-paper-muted); }

.display-h2 {
  font-family: var(--ff-display);
  font-weight: 350;
  font-size: clamp(2.4rem, 5.4vw, 4.75rem);
  line-height: 1.02;
  letter-spacing: -0.02em;
  font-variation-settings: "opsz" 144;
  color: var(--text-on-dark);
}
.display-h2 em {
  font-style: italic;
  color: var(--red-soft);
  font-weight: 300;
}
.is-paper .display-h2 { color: var(--text-on-paper); }
.is-paper .display-h2 em { color: var(--red); }

.chapter__num {
  display: inline-block;
  font-family: var(--ff-display);
  font-style: italic;
  font-weight: 300;
  font-size: 1.25rem;
  color: var(--red-soft);
  margin-right: .75rem;
  font-variation-settings: "opsz" 12;
}
.is-paper .chapter__num { color: var(--red); }

.chapter__kicker {
  display: inline-block;
  font-size: .72rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--text-on-dark-muted);
  border-top: 1px solid var(--ink-line-2);
  padding-top: .65rem;
  min-width: 7rem;
}
.is-paper .chapter__kicker {
  color: var(--text-on-paper-muted);
  border-top-color: var(--paper-line-2);
}

/* ————— Reveal ————— */

.reveal { opacity: 0; transform: translateY(14px); transition: opacity .9s ease, transform .9s cubic-bezier(.2,.65,.2,1); transition-delay: var(--d, 0s); }
.reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .strip__track { animation: none; }
  .cta-call__pulse { animation: none; }
  .hero__scrollline::after { animation: none; }
}

/* ——————————————————————————————————————————————————————
   TOP BAR
   —————————————————————————————————————————————————————— */

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(12,11,10,.78);
  backdrop-filter: saturate(1.3) blur(14px);
  -webkit-backdrop-filter: saturate(1.3) blur(14px);
  border-bottom: 1px solid var(--ink-line);
}
.topbar__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: .6rem var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.wordmark {
  display: inline-flex;
  align-items: center;
  transition: transform .4s ease;
}
.wordmark:hover { transform: scale(1.04); }
.wordmark__logo {
  width: 58px; height: 58px;
  object-fit: contain;
  display: block;
}

.nav {
  display: flex;
  gap: 2rem;
  font-size: .76rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--text-on-dark);
}
.nav a {
  position: relative;
  padding-bottom: 2px;
  transition: color .3s ease;
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%;
  bottom: -4px;
  height: 1px;
  background: var(--red-soft);
  transition: right .35s ease;
}
.nav a:hover { color: var(--red-soft); }
.nav a:hover::after { right: 0; }

.cta-call {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-size: .78rem;
  letter-spacing: .14em;
  color: var(--text-on-dark);
  padding: .55rem .9rem;
  min-height: 44px;
  border: 1px solid var(--ink-line-2);
  border-radius: 999px;
  transition: background .25s ease, color .25s ease, border-color .25s ease;
}
.cta-call:hover { background: var(--red); border-color: var(--red); color: var(--paper); }
.cta-call__pulse {
  width: 7px; height: 7px; border-radius: 50%; background: var(--red-soft);
  box-shadow: 0 0 0 0 var(--red-soft);
  animation: pulse 2.4s ease-out infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(224,74,66,.55); }
  70%  { box-shadow: 0 0 0 10px rgba(224,74,66,0); }
  100% { box-shadow: 0 0 0 0 rgba(224,74,66,0); }
}

@media (max-width: 900px) {
  .nav { display: none; }
}

/* ——————————————————————————————————————————————————————
   HERO — editorial poster (asymmetric split)
   —————————————————————————————————————————————————————— */

.hero {
  position: relative;
  min-height: calc(100vh - 72px);
  min-height: calc(100dvh - 72px);
  width: 100%;
  overflow: hidden;
  color: var(--text-on-dark);
  background: var(--ink);
  isolation: isolate;
}

/* Hairline cross-grid to reinforce the broadsheet feel */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(to right, var(--ink-line) 1px, transparent 1px),
    linear-gradient(to bottom, var(--ink-line) 1px, transparent 1px);
  background-size: 12.5% 100%, 100% 12.5%;
  opacity: .35;
  pointer-events: none;
  mask-image: radial-gradient(ellipse at center, #000 55%, transparent 95%);
}

.hero__glow {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(900px 600px at 85% 15%, rgba(192,38,31,.28), transparent 60%),
    radial-gradient(700px 500px at 10% 100%, rgba(192,38,31,.1), transparent 60%);
  pointer-events: none;
}

.hero__grid {
  position: relative;
  z-index: 2;
  min-height: calc(100vh - 72px);
  min-height: calc(100dvh - 72px);
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(2.5rem, 5vw, 4rem) var(--gutter) clamp(1rem, 2vw, 1.5rem);
  display: grid;
  grid-template-columns: 40px 1.25fr .85fr;
  grid-template-rows: 1fr auto;
  gap: clamp(1.5rem, 3vw, 3rem);
  align-items: stretch;
}

/* — Left vertical rail (brand mark + rotated text) — */
.hero__rail {
  grid-column: 1; grid-row: 1 / span 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
  padding-top: .25rem;
  border-right: 1px solid var(--ink-line);
}
.hero__rail-mark {
  font-family: var(--ff-display);
  font-style: italic;
  font-weight: 350;
  font-size: 1.15rem;
  color: var(--red-soft);
  letter-spacing: .05em;
}
.hero__rail-line {
  flex: 0 0 auto;
  width: 1px;
  height: clamp(60px, 8vw, 110px);
  background: var(--ink-line-2);
}
.hero__rail-text {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-size: .7rem;
  letter-spacing: .36em;
  text-transform: uppercase;
  color: var(--text-on-dark-muted);
}

/* — Left content block — */
.hero__lede {
  grid-column: 2; grid-row: 1;
  align-self: center;
  display: grid;
  gap: clamp(1.25rem, 2.5vw, 2rem);
  padding-right: clamp(0rem, 2vw, 2rem);
}
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .9rem;
  font-family: var(--ff-body);
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .36em;
  text-transform: uppercase;
  color: var(--red-soft);
}
.hero__eyebrow-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 4px rgba(192,38,31,.18);
}

.hero__title {
  font-family: var(--ff-word);
  font-weight: 300;
  font-synthesis: none;
  line-height: .92;
  letter-spacing: -0.01em;
  color: var(--text-on-dark);
  display: flex;
  align-items: flex-end;
  gap: clamp(1rem, 2.5vw, 2rem);
  flex-wrap: wrap;
}
.hero__title-word {
  font-size: clamp(3.6rem, 9vw, 9rem);
  white-space: nowrap;
  line-height: .9;
}
.hero__title--italic { color: var(--red-soft); }

/* — Est. 2006 stamp (sits inline with "pind.") — */
.hero__stamp {
  display: inline-grid;
  grid-template-rows: auto auto auto;
  justify-items: center;
  gap: .1rem;
  padding: .85rem 1.1rem .7rem;
  border: 1px solid var(--red-soft);
  border-radius: 4px;
  color: var(--text-on-dark);
  background: rgba(192,38,31,.06);
  position: relative;
  transform: translateY(-.35em) rotate(-2deg);
  font-family: var(--ff-body);
  flex: 0 0 auto;
}
.hero__stamp::before,
.hero__stamp::after {
  content: "";
  position: absolute;
  left: .6rem; right: .6rem;
  height: 1px;
  background: var(--red-soft);
  opacity: .55;
}
.hero__stamp::before { top: 4px; }
.hero__stamp::after  { bottom: 4px; }
.hero__stamp-top,
.hero__stamp-bot {
  font-size: .62rem;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--text-on-dark-muted);
}
.hero__stamp-year {
  font-family: var(--ff-display);
  font-style: italic;
  font-weight: 350;
  font-size: 1.9rem;
  line-height: 1;
  color: var(--red-soft);
  font-variation-settings: "opsz" 72;
  padding: .1rem 0;
}

/* — Sub — */
.hero__sub {
  max-width: 48ch;
  font-family: var(--ff-display);
  font-weight: 300;
  font-size: clamp(1.05rem, 1.4vw, 1.3rem);
  line-height: 1.45;
  color: rgba(244,239,230,.78);
  font-variation-settings: "opsz" 36;
}
.hero__sub em {
  font-style: italic;
  color: var(--text-on-dark);
}

.hero__actions {
  display: inline-flex;
  flex-wrap: wrap;
  gap: .7rem 1rem;
  align-items: center;
  margin-top: .25rem;
}
.hero__cta {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  padding: .9rem 1.25rem;
  background: var(--red);
  color: var(--paper);
  border: 1px solid var(--red);
  border-radius: 999px;
  font-size: .78rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  transition: background .3s ease, border-color .3s ease, transform .3s ease;
}
.hero__cta:hover { background: var(--red-deep); border-color: var(--red-deep); transform: translateY(-1px); }
.hero__cta-arrow { transition: transform .3s ease; }
.hero__cta:hover .hero__cta-arrow { transform: translateX(4px); }
.hero__cta--ghost {
  background: transparent;
  color: var(--text-on-dark);
  border-color: var(--ink-line-2);
}
.hero__cta--ghost:hover { background: transparent; border-color: var(--red-soft); color: var(--red-soft); transform: none; }
.hero__cta-pulse {
  width: 7px; height: 7px; border-radius: 50%; background: var(--red-soft);
  box-shadow: 0 0 0 0 var(--red-soft);
  animation: pulse 2.4s ease-out infinite;
}

/* — Right: tall shopfront plate — */
.hero__plate {
  grid-column: 3; grid-row: 1;
  position: relative;
  align-self: stretch;
  min-height: clamp(360px, 56vh, 620px);
  overflow: hidden;
  border: 1px solid var(--ink-line);
}
.hero__plate img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.06) saturate(1.08) brightness(.92);
  transition: transform 1.4s cubic-bezier(.2,.65,.2,1);
}
.hero__plate:hover img { transform: scale(1.03); }
.hero__plate::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(12,11,10,.85) 0%, rgba(12,11,10,0) 42%),
    linear-gradient(to bottom, rgba(12,11,10,.5) 0%, rgba(12,11,10,0) 30%);
  pointer-events: none;
}
.hero__plate figcaption {
  position: absolute;
  left: 1.1rem; right: 1.1rem; bottom: 1rem;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: .8rem;
  font-family: var(--ff-display);
  font-style: italic;
  font-weight: 300;
  color: var(--text-on-dark);
  font-size: .95rem;
  font-variation-settings: "opsz" 24;
}
.hero__plate figcaption .label {
  font-style: normal;
  font-family: var(--ff-body);
  color: var(--red-soft);
}
.hero__plate-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 2;
  display: grid;
  padding: .55rem .75rem;
  background: rgba(12,11,10,.72);
  backdrop-filter: blur(6px);
  border: 1px solid var(--ink-line-2);
  font-family: var(--ff-body);
  font-size: .62rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--text-on-dark);
  line-height: 1.5;
}
.hero__plate-tag span:nth-child(1) { color: var(--red-soft); }

/* — Bottom info rail — */
.hero__rail-bottom {
  grid-column: 2 / span 2;
  grid-row: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr) auto;
  gap: 1.5rem 2rem;
  align-items: end;
  padding-top: 1.25rem;
  border-top: 1px solid var(--ink-line-2);
}
.hero__rail-item .label {
  display: block;
  margin-bottom: .4rem;
  color: rgba(244,239,230,.55);
}
.hero__rail-item p {
  font-family: var(--ff-display);
  font-style: italic;
  font-weight: 300;
  font-size: 1.05rem;
  color: var(--text-on-dark);
  font-variation-settings: "opsz" 24;
}

.hero__scroll {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  justify-self: end;
  padding-bottom: .15rem;
}
.hero__scroll .label { color: rgba(244,239,230,.7); }
.hero__scrollline {
  width: 42px;
  height: 1px;
  background: rgba(244,239,230,.45);
  position: relative;
  overflow: hidden;
}
.hero__scrollline::after {
  content:"";
  position: absolute;
  inset: 0;
  background: var(--red-soft);
  transform: translateX(-100%);
  animation: scroll-line 2.4s ease-in-out infinite;
}
@keyframes scroll-line {
  0%   { transform: translateX(-100%); }
  45%  { transform: translateX(0); }
  55%  { transform: translateX(0); }
  100% { transform: translateX(100%); }
}

@media (max-width: 1000px) {
  .hero__grid {
    grid-template-columns: 28px 1fr;
    grid-template-rows: auto auto auto;
  }
  .hero__rail { grid-row: 1 / span 3; }
  .hero__lede { grid-column: 2; grid-row: 1; }
  .hero__plate {
    grid-column: 2; grid-row: 2;
    min-height: clamp(280px, 42vh, 420px);
  }
  .hero__rail-bottom { grid-column: 2; grid-row: 3; }
}
@media (max-width: 700px) {
  .hero__title-word { font-size: clamp(3rem, 16vw, 5.5rem); }
  .hero__stamp { transform: rotate(-2deg); padding: .6rem .8rem .5rem; }
  .hero__stamp-year { font-size: 1.4rem; }
  .hero__rail-bottom {
    grid-template-columns: repeat(2, 1fr);
  }
  /* Scroll indicator is below the fold on mobile — hide it;
     mobile users don't need a scroll prompt */
  .hero__scroll { display: none; }
  .hero__rail { display: none; }
  .hero__grid { grid-template-columns: 1fr; padding-left: var(--gutter); padding-right: var(--gutter); }
  .hero__lede, .hero__plate, .hero__rail-bottom { grid-column: 1; }
  /* Give the plate an explicit height so the image doesn't expand
     to its intrinsic portrait ratio (height: 100% needs a defined parent) */
  .hero__plate {
    height: clamp(260px, 56vw, 380px);
    min-height: auto;
  }
}

/* ——————————————————————————————————————————————————————
   STRIP — on red
   —————————————————————————————————————————————————————— */

.strip {
  background: var(--red);
  color: var(--paper);
  padding: 1rem 0;
  overflow: hidden;
  border-top: 1px solid rgba(0,0,0,.35);
  border-bottom: 1px solid rgba(0,0,0,.35);
}
.strip__track {
  display: flex;
  gap: 2.5rem;
  white-space: nowrap;
  animation: strip 48s linear infinite;
  font-family: var(--ff-display);
  font-style: italic;
  font-weight: 300;
  font-size: 1.3rem;
  font-variation-settings: "opsz" 144;
}
.strip__track i {
  color: rgba(244,239,230,.6);
  font-style: normal;
  font-size: .7rem;
  align-self: center;
}
@keyframes strip {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ——————————————————————————————————————————————————————
   HERITAGE — dark
   —————————————————————————————————————————————————————— */

.heritage {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(5rem, 10vw, 9rem) var(--gutter);
}
.heritage__grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr 1fr;
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: start;
}
.heritage__chapter {
  display: flex;
  flex-direction: column;
  gap: .6rem;
  position: sticky;
  top: 100px;
}
.heritage__chapter .chapter__num { font-size: 2.5rem; margin: 0; }

.heritage__copy { padding-top: .25rem; }

.heritage__cols {
  margin-top: 2.5rem;
  column-count: 2;
  column-gap: 2.2rem;
  font-size: 1rem;
  color: var(--text-on-dark);
}
.heritage__cols p { break-inside: avoid; margin-bottom: 1rem; }
.heritage__cols p:first-of-type { break-inside: auto; }

.dropcap {
  font-family: var(--ff-display);
  font-weight: 300;
  font-style: italic;
  color: var(--red-soft);
  float: left;
  font-size: 4.1rem;
  line-height: .85;
  padding: .35rem .55rem 0 0;
  font-variation-settings: "opsz" 144;
}

.heritage__meta {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  border-top: 1px solid var(--ink-line-2);
  padding-top: 1.5rem;
}
.meta-line {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 1.1rem;
  margin-top: .4rem;
  color: var(--text-on-dark);
  font-variation-settings: "opsz" 24;
}

.heritage__image {
  position: relative;
}
.heritage__image {
  position: relative;
}
.heritage__image img {
  width: 100%;
  height: auto;
  display: block;
  filter: contrast(1.05) saturate(1.08);
  box-shadow: 0 30px 60px -30px rgba(0,0,0,.7);
}
.heritage__image figcaption {
  margin-top: 1rem;
  font-size: .85rem;
  color: var(--text-on-dark-muted);
  display: flex;
  gap: .8rem;
  align-items: baseline;
  font-style: italic;
  font-family: var(--ff-display);
  font-weight: 300;
  font-variation-settings: "opsz" 14;
}

@media (max-width: 1000px) {
  .heritage__grid { grid-template-columns: 1fr; }
  .heritage__chapter { position: static; flex-direction: row; align-items: baseline; }
  .heritage__image { order: -1; margin-bottom: 2rem; }
  .heritage__cols { column-count: 1; }
}
@media (max-width: 640px) {
  .heritage__meta { grid-template-columns: 1fr; gap: 1rem; }
}

/* ——————————————————————————————————————————————————————
   QUOTE — PAPER BREATHER ①
   —————————————————————————————————————————————————————— */

.quote.is-paper {
  background: var(--paper);
  color: var(--text-on-paper);
  padding: clamp(5rem, 10vw, 8rem) var(--gutter);
  position: relative;
}
.quote.is-paper::before,
.quote.is-paper::after {
  content:"";
  position: absolute;
  left: 0; right: 0;
  height: 40px;
}
.quote.is-paper::before {
  top: 0;
  background: linear-gradient(to bottom, var(--ink), transparent);
  opacity: .35;
}
.quote blockquote {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  text-align: center;
}
.quote__mark {
  display: block;
  font-family: var(--ff-display);
  font-style: italic;
  font-weight: 300;
  color: var(--red);
  font-size: 7rem;
  line-height: .6;
  margin-bottom: 1.5rem;
  font-variation-settings: "opsz" 144;
}
.quote p {
  font-family: var(--ff-display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.6rem, 3.6vw, 3rem);
  line-height: 1.18;
  letter-spacing: -0.015em;
  color: var(--text-on-paper);
  font-variation-settings: "opsz" 144;
}
.quote footer {
  margin-top: 2rem;
  font-size: .78rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--text-on-paper-muted);
}

/* ——————————————————————————————————————————————————————
   SECTION HEAD
   —————————————————————————————————————————————————————— */

.section-head {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(5rem, 10vw, 9rem) var(--gutter) clamp(3rem, 5vw, 4.5rem);
  display: grid;
  grid-template-columns: 1fr 2.2fr;
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: end;
}
.section-head .chapter__num { grid-row: 1; grid-column: 1; font-size: 2.2rem; align-self: start; }
.section-head .chapter__kicker { grid-row: 1; grid-column: 1; align-self: end; }
.section-head .display-h2 { grid-row: 1; grid-column: 2; }
.section-head__lede {
  grid-column: 2;
  max-width: 52ch;
  color: var(--text-on-dark-muted);
  font-size: 1.05rem;
  margin-top: .5rem;
}
.is-paper .section-head__lede { color: var(--text-on-paper-muted); }

@media (max-width: 820px) {
  .section-head {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto auto;
    gap: 1rem;
    align-items: start;
    padding-top: clamp(3rem, 8vw, 5rem);
    padding-bottom: clamp(2rem, 4vw, 3rem);
  }
  .section-head .chapter__num {
    grid-row: 1; grid-column: 1;
    font-size: 1.25rem;
    align-self: auto;
  }
  .section-head .chapter__kicker {
    grid-row: 2; grid-column: 1;
    align-self: auto;
    border-top: none;
    padding-top: 0;
    min-width: 0;
  }
  .section-head .display-h2 { grid-row: 3; grid-column: 1; }
  .section-head__lede { grid-row: 4; grid-column: 1; max-width: 100%; }
}

/* ——————————————————————————————————————————————————————
   MENU — PAPER BREATHER ②
   —————————————————————————————————————————————————————— */

.menu.is-paper {
  background: var(--paper);
  color: var(--text-on-paper);
  padding-bottom: clamp(5rem, 10vw, 9rem);
  position: relative;
}
.menu__grid {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(2rem, 4vw, 4rem) clamp(2rem, 5vw, 5rem);
}
.menu-card {
  padding-top: 2rem;
  border-top: 1px solid var(--ink);
  position: relative;
}
.menu-card__head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 1.8rem;
}
.menu-card__head h3 {
  font-family: var(--ff-display);
  font-weight: 350;
  font-style: italic;
  font-size: clamp(1.8rem, 2.4vw, 2.3rem);
  letter-spacing: -0.015em;
  color: var(--text-on-paper);
  font-variation-settings: "opsz" 72;
}

.menu-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .95rem;
}
.menu-list li {
  display: flex;
  align-items: baseline;
  gap: .5rem;
  font-size: 1rem;
}
.menu-list li span {
  flex-shrink: 0;
  font-weight: 400;
  color: var(--text-on-paper);
}
.menu-list li i {
  flex: 1;
  border-bottom: 1px dotted var(--paper-line-2);
  transform: translateY(-3px);
}
.menu-list li b {
  font-family: var(--ff-display);
  font-weight: 400;
  font-style: italic;
  color: var(--red);
  font-size: 1.05rem;
  font-variation-settings: "opsz" 24;
}

.menu-card__note {
  margin-top: 1.8rem;
  padding: 1rem 1.1rem;
  background: var(--paper-2);
  border-left: 2px solid var(--red);
  font-size: .92rem;
  color: var(--text-on-paper);
}
.menu-card__note .label {
  display: block;
  margin-bottom: .35rem;
  color: var(--red);
  letter-spacing: .25em;
}

.menu__cta {
  max-width: var(--maxw);
  margin: clamp(3rem, 5vw, 4.5rem) auto 0;
  padding: 0 var(--gutter);
  display: grid;
  justify-items: center;
  gap: 2rem;
}
.menu__cta .button {
  border-color: var(--ink);
  color: var(--paper);
  background: var(--ink);
  padding: 1.1rem 1.8rem;
  gap: .9rem;
  letter-spacing: .2em;
}
.menu__cta .button:hover {
  background: var(--red);
  border-color: var(--red);
}
.button__arrow {
  display: inline-block;
  transition: transform .35s ease;
}
.menu__cta .button:hover .button__arrow { transform: translateX(4px); }
.menu__foot {
  text-align: center;
  color: var(--text-on-paper-muted);
  letter-spacing: .18em;
  font-size: .72rem;
  max-width: 60ch;
}

@media (max-width: 820px) {
  .menu__grid { grid-template-columns: 1fr; }
}

/* ——————————————————————————————————————————————————————
   SWEETS — dark
   —————————————————————————————————————————————————————— */

.sweets {
  background: var(--ink);
  color: var(--text-on-dark);
  padding-bottom: clamp(5rem, 10vw, 9rem);
  position: relative;
}
.sweets::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(700px 400px at 90% 0%, rgba(192,38,31,.22), transparent 60%),
    radial-gradient(600px 400px at 0% 100%, rgba(192,38,31,.1), transparent 60%);
  pointer-events: none;
}

.sweets__grid {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: clamp(120px, 10vw, 160px);
  gap: clamp(1rem, 2vw, 1.6rem);
  position: relative;
  z-index: 1;
}
.sweet {
  position: relative;
  overflow: hidden;
  background: #111;
}
.sweet img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.1s cubic-bezier(.2,.65,.2,1), filter .6s ease;
  filter: saturate(1.05) contrast(1.04) brightness(.95);
}
.sweet:hover img { transform: scale(1.04); filter: saturate(1.15) brightness(1); }

.sweet figcaption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 1.25rem 1.25rem 1.1rem;
  background: linear-gradient(to top, rgba(0,0,0,.88), rgba(0,0,0,0));
  color: var(--text-on-dark);
  display: grid;
  gap: .25rem;
}
.sweet figcaption .label {
  color: var(--red-soft);
  font-size: .65rem;
}
.sweet figcaption h4 {
  font-family: var(--ff-display);
  font-weight: 350;
  font-style: italic;
  font-size: 1.5rem;
  letter-spacing: -0.01em;
  font-variation-settings: "opsz" 72;
}
.sweet figcaption p {
  font-size: .85rem;
  color: var(--text-on-dark-muted);
  max-width: 34ch;
}

.sweet--a { grid-column: span 7; grid-row: span 3; }
.sweet--b { grid-column: span 5; grid-row: span 3; }
.sweet--c { grid-column: span 4; grid-row: span 2; }
.sweet--d { grid-column: span 4; grid-row: span 2; }
.sweet--e { grid-column: span 4; grid-row: span 2; }
.sweet--f { grid-column: span 6; grid-row: span 2; }
.sweet--g { grid-column: span 6; grid-row: span 2; }

@media (max-width: 900px) {
  .sweets__grid { grid-template-columns: repeat(6, 1fr); grid-auto-rows: 180px; }
  .sweet--a { grid-column: span 6; grid-row: span 2; }
  .sweet--b, .sweet--c, .sweet--d, .sweet--e, .sweet--f, .sweet--g { grid-column: span 3; grid-row: span 2; }
}
@media (max-width: 520px) {
  .sweets__grid {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }
  .sweet--a, .sweet--b, .sweet--c, .sweet--d, .sweet--e, .sweet--f, .sweet--g { grid-column: span 1; grid-row: span 1; }
  .sweet { aspect-ratio: 4/3; }
}

.sweets__desserts {
  max-width: var(--maxw);
  margin: clamp(3rem, 5vw, 5rem) auto 0;
  padding: 2.2rem var(--gutter) 0;
  border-top: 1px solid var(--ink-line-2);
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1fr 4fr;
  gap: 2rem;
  align-items: start;
}
.sweets__desserts ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2.5rem;
  font-family: var(--ff-display);
  font-style: italic;
  font-weight: 300;
  font-size: 1.35rem;
  color: var(--text-on-dark);
  font-variation-settings: "opsz" 72;
}
.sweets__desserts li b {
  font-style: normal;
  font-weight: 400;
  color: var(--red-soft);
  margin-left: .4rem;
  font-size: 1.1rem;
}
@media (max-width: 700px) {
  .sweets__desserts { grid-template-columns: 1fr; }
}

/* ——————————————————————————————————————————————————————
   CATERING — dark
   —————————————————————————————————————————————————————— */

.catering {
  background: var(--ink-2);
  padding: clamp(5rem, 10vw, 8rem) var(--gutter);
  border-top: 1px solid var(--ink-line);
  border-bottom: 1px solid var(--ink-line);
  position: relative;
  overflow: hidden;
}
.catering::before {
  content: "";
  position: absolute;
  right: -80px; top: -80px;
  width: 360px; height: 360px;
  border-radius: 50%;
  border: 1px solid var(--red);
  opacity: .3;
  pointer-events: none;
}
.catering::after {
  content: "";
  position: absolute;
  right: -40px; top: -40px;
  width: 260px; height: 260px;
  border-radius: 50%;
  border: 1px solid var(--red);
  opacity: .18;
  pointer-events: none;
}
.catering__inner {
  max-width: 980px;
  margin: 0 auto;
  position: relative;
}
.catering__inner .chapter__num { font-size: 2.2rem; }
.catering__inner > p {
  margin-top: 1.5rem;
  font-size: 1.1rem;
  max-width: 60ch;
  color: var(--text-on-dark);
}
.catering__actions {
  margin-top: 2.2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.button {
  display: inline-flex;
  align-items: center;
  padding: .95rem 1.4rem;
  font-size: .82rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  border-radius: 999px;
  border: 1px solid var(--text-on-dark);
  color: var(--text-on-dark);
  transition: all .3s ease;
}
.button--solid { background: var(--red); border-color: var(--red); color: var(--paper); }
.button--solid:hover { background: var(--red-deep); border-color: var(--red-deep); }
.button--ghost:hover { background: var(--text-on-dark); color: var(--ink); }

/* ——————————————————————————————————————————————————————
   VISIT — dark
   —————————————————————————————————————————————————————— */

.visit {
  background: var(--ink);
}
.visit__grid {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(2rem, 4vw, 4rem);
}
.visit__col {
  border-top: 1px solid var(--text-on-dark);
  padding-top: 1.25rem;
}
.visit__col .label { display: block; margin-bottom: 1rem; color: var(--text-on-dark-muted); }
.visit__big {
  font-family: var(--ff-display);
  font-weight: 350;
  font-style: italic;
  font-size: clamp(1.7rem, 2.6vw, 2.3rem);
  line-height: 1.15;
  color: var(--text-on-dark);
  font-variation-settings: "opsz" 72;
}
.visit__big a:hover { color: var(--red-soft); }
.visit__sub {
  margin-top: .8rem;
  color: var(--text-on-dark-muted);
  font-size: .95rem;
}
.visit__link {
  display: inline-block;
  margin-top: 1rem;
  font-size: .82rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--red-soft);
  border-bottom: 1px solid var(--red-soft);
  padding-bottom: 2px;
}
.visit__link:hover { color: var(--red); border-color: var(--red); }

.visit__map {
  max-width: var(--maxw);
  margin: clamp(3rem, 5vw, 5rem) auto 0;
  padding: 0 var(--gutter) clamp(5rem, 8vw, 7rem);
}
.visit__map iframe {
  width: 100%;
  height: clamp(320px, 50vh, 520px);
  border: 0;
  /* dark, moody map */
  filter: grayscale(.85) contrast(1.15) brightness(.78) invert(.92) hue-rotate(180deg);
  box-shadow: 0 30px 60px -40px rgba(0,0,0,.7);
}

@media (max-width: 640px) {
  .visit__grid { grid-template-columns: 1fr; }
}

/* ——————————————————————————————————————————————————————
   FOOTER — dark
   —————————————————————————————————————————————————————— */

.foot {
  background: var(--ink-2);
  color: var(--text-on-dark);
  padding: clamp(4rem, 8vw, 6rem) var(--gutter) 2rem;
  border-top: 1px solid var(--ink-line);
}
.foot__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  gap: clamp(3rem, 6vw, 5rem);
}
.foot__word {
  font-family: var(--ff-word);
  font-weight: 300;
  font-synthesis: none;
  font-size: clamp(2.25rem, 7vw, 5.5rem);
  line-height: 1;
  letter-spacing: 0;
  color: var(--text-on-dark);
  display: flex;
  align-items: baseline;
  gap: .25em;
  flex-wrap: wrap;
}
.foot__word em {
  font-style: normal;
  color: var(--red-soft);
}
.foot__cols {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  border-top: 1px solid var(--ink-line-2);
  padding-top: 2.2rem;
}
.foot__cols .label { display: block; margin-bottom: .8rem; }
.foot__cols p { font-size: .98rem; line-height: 1.5; color: var(--text-on-dark); }
.foot__cols a:hover { color: var(--red-soft); }

.foot__base {
  border-top: 1px solid var(--ink-line);
  padding-top: 1.3rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: .72rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--text-on-dark-muted);
}

@media (max-width: 700px) {
  .foot__cols { grid-template-columns: repeat(2, 1fr); }
}

/* ——————————————————————————————————————————————————————
   SELECTION
   —————————————————————————————————————————————————————— */

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

/* ——————————————————————————————————————————————————————
   COOKIES BANNER
   —————————————————————————————————————————————————————— */

.cookies {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 120;
  padding: clamp(.8rem, 2vw, 1.25rem) var(--gutter);
  background: rgba(12,11,10,.94);
  backdrop-filter: saturate(1.3) blur(12px);
  -webkit-backdrop-filter: saturate(1.3) blur(12px);
  border-top: 1px solid var(--ink-line-2);
  color: var(--text-on-dark);
  transform: translateY(100%);
  opacity: 0;
  transition: transform .4s cubic-bezier(.2,.65,.2,1), opacity .4s ease;
}
.cookies.is-in { transform: none; opacity: 1; }
.cookies__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem 2rem;
  flex-wrap: wrap;
}
.cookies__text {
  font-size: .92rem;
  line-height: 1.5;
  max-width: 62ch;
  color: var(--text-on-dark);
}
.cookies__actions {
  display: inline-flex;
  gap: .6rem;
  flex-wrap: wrap;
}
.cookies__btn {
  font: inherit;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  padding: .65rem 1.1rem;
  min-height: 44px;
  font-size: .72rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  border-radius: 999px;
  border: 1px solid var(--ink-line-2);
  background: transparent;
  color: var(--text-on-dark);
  transition: background .25s ease, border-color .25s ease, color .25s ease;
}
.cookies__btn:hover { border-color: var(--red-soft); color: var(--red-soft); }
.cookies__btn--solid {
  background: var(--red);
  border-color: var(--red);
  color: var(--paper);
}
.cookies__btn--solid:hover {
  background: var(--red-deep);
  border-color: var(--red-deep);
  color: var(--paper);
}

@media (max-width: 600px) {
  .cookies__inner { flex-direction: column; align-items: stretch; }
  .cookies__actions { justify-content: flex-end; }
}

/* ——————————————————————————————————————————————————————
   MOBILE NAVIGATION — hamburger + full-screen overlay
   —————————————————————————————————————————————————————— */

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: transparent;
  border: 1px solid var(--ink-line-2);
  border-radius: 4px;
  cursor: pointer;
  flex-shrink: 0;
  transition: border-color .25s ease;
}
.nav-toggle:hover { border-color: var(--red-soft); }
.nav-toggle__bar {
  display: block;
  width: 20px;
  height: 1px;
  background: var(--text-on-dark);
}
@media (max-width: 900px) {
  .nav-toggle { display: flex; }
}

.nav-mobile {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: var(--ink);
  display: flex;
  flex-direction: column;
  padding: .6rem var(--gutter) clamp(2rem, 5vw, 3rem);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .35s ease, visibility .35s ease;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.nav-mobile.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

.nav-mobile__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--ink-line);
  flex-shrink: 0;
}

.nav-mobile__close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: transparent;
  border: 1px solid var(--ink-line-2);
  border-radius: 4px;
  cursor: pointer;
  color: var(--text-on-dark);
  font-size: 1.35rem;
  line-height: 1;
  transition: border-color .25s ease, color .25s ease;
}
.nav-mobile__close:hover { border-color: var(--red-soft); color: var(--red-soft); }

.nav-mobile__nav {
  display: flex;
  flex-direction: column;
  flex: 1;
  justify-content: center;
  padding: 2rem 0;
}
.nav-mobile__nav a {
  font-family: var(--ff-display);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(2.2rem, 7vw, 4rem);
  color: var(--text-on-dark);
  line-height: 1.1;
  border-bottom: 1px solid var(--ink-line);
  padding: .8rem 0;
  transition: color .25s ease, padding-left .3s ease;
  font-variation-settings: "opsz" 72;
}
.nav-mobile__nav a:last-child { border-bottom: none; }
.nav-mobile__nav a:hover { color: var(--red-soft); padding-left: .5rem; }

.nav-mobile__phone {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  font-family: var(--ff-body);
  font-size: .82rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--text-on-dark-muted);
  padding-top: 1.5rem;
  border-top: 1px solid var(--ink-line);
  flex-shrink: 0;
  transition: color .25s ease;
}
.nav-mobile__phone:hover { color: var(--red-soft); }

/* ——— Extra small screen fixes ——— */
@media (max-width: 400px) {
  .cta-call { display: none; }
}
@media (max-width: 380px) {
  .foot__cols { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .cookies__inner { flex-direction: column; align-items: stretch; }
  .cookies__actions { justify-content: flex-end; }
}
