/* =========================================================
   Apron Kitchen — one page site
   Design language taken from "AK - COMPANY PROFILE.pdf"
   ========================================================= */

:root {
  --ink: #333333;
  --ink-soft: #666667;
  --ink-mute: #8a8a90;
  --bg: #f1f1f6;
  --bg-2: #f7f7fa;
  --white: #ffffff;
  --orange: #e89626;
  --orange-deep: #dd840e;
  --peach: rgba(240, 143, 92, 0.42);
  --peach-soft: rgba(243, 168, 128, 0.28);
  --line: rgba(51, 51, 51, 0.14);
  --shadow-sm: 0 6px 18px rgba(51, 51, 51, 0.06);
  --shadow-md: 0 18px 44px rgba(51, 51, 51, 0.1);
  --nav-h: 78px;
  --pad-x: clamp(22px, 6vw, 110px);
  --maxw: 1320px;
  --r: 14px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-h);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: "Jost", "Futura", "Century Gothic", "Trebuchet MS", sans-serif;
  font-weight: 400;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
  overflow-x: hidden;
}

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

/* the deck's pages carry a fine grain over the flat backdrop */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 70;
  pointer-events: none;
  opacity: 0.28;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)' opacity='0.55'/%3E%3C/svg%3E");
}

a { color: inherit; text-decoration: none; }

h1, h2, h3, p, ul, ol, figure { margin: 0; }

ul, ol { padding: 0; list-style: none; }

.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--pad-x);
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--ink);
  color: #fff;
  padding: 10px 16px;
  z-index: 999;
}
.skip-link:focus { left: 12px; top: 12px; }

/* ---------- typography ---------- */
.h-display {
  font-weight: 800;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  font-size: clamp(2rem, 4.2vw, 3.6rem);
  line-height: 1.03;
  color: var(--ink);
}

.split__text .h-display { font-size: clamp(1.9rem, 3.4vw, 3.25rem); }
.split__text .h-display--sm { font-size: clamp(1.7rem, 2.9vw, 2.75rem); }

.h-section {
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  font-size: clamp(1.5rem, 2.4vw, 2.1rem);
  line-height: 1.1;
  margin-bottom: 0.7em;
}
.h-section--mt { margin-top: 2.2rem; }

.lead {
  font-size: clamp(1rem, 1.15vw, 1.16rem);
  line-height: 1.95;
  color: var(--ink);
  max-width: 62ch;
  margin-top: 1.6rem;
}

.body {
  font-size: clamp(0.98rem, 1.1vw, 1.1rem);
  line-height: 1.95;
  max-width: 60ch;
}

.center { text-align: center; margin-inline: auto; }

.sub {
  color: var(--ink-soft);
  font-size: 1.03rem;
  margin-top: 1rem;
  max-width: 62ch;
}

/* ---------- soft peach glow backdrop ---------- */
.section,
.split,
.contact { position: relative; }

.section::before,
.split::before,
.contact::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(60% 55% at 0% 100%, var(--peach) 0%, rgba(240, 143, 92, 0) 62%),
    radial-gradient(46% 42% at 100% 0%, var(--peach-soft) 0%, rgba(243, 168, 128, 0) 60%);
  opacity: 0.9;
  z-index: 0;
}

.section > *,
.split > *,
.contact > * { position: relative; z-index: 1; }

.section { padding-block: clamp(70px, 9vw, 130px); }

/* =========================================================
   NAV
   ========================================================= */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 90;
  height: var(--nav-h);
  transition: background 0.35s ease, box-shadow 0.35s ease, height 0.35s ease;
}

.nav__inner {
  height: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--pad-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav__logo { display: block; flex: none; }
.nav__logo-img { height: 34px; width: auto; transition: opacity 0.3s ease; }
.nav__logo-img--dark { display: none; }

.nav__links {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.2vw, 34px);
  font-size: 0.94rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fff;
  transition: color 0.35s ease;
}

.nav__links a { position: relative; padding-block: 4px; }

.nav__links a:not(.nav__cta)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0;
  background: var(--orange);
  transition: width 0.28s ease;
}
.nav__links a:not(.nav__cta):hover::after,
.nav__links a.is-active::after { width: 100%; }

.nav__cta {
  border: 1.5px solid currentColor;
  border-radius: 999px;
  padding: 9px 20px !important;
  transition: background 0.28s ease, color 0.28s ease, border-color 0.28s ease;
}
.nav__cta:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
}

/* scrolled state */
.nav.is-solid {
  background: rgba(241, 241, 246, 0.92);
  backdrop-filter: saturate(180%) blur(12px);
  box-shadow: 0 1px 0 rgba(51, 51, 51, 0.08), 0 10px 30px rgba(51, 51, 51, 0.05);
}
.nav.is-solid .nav__links { color: var(--ink); }
.nav.is-solid .nav__logo-img--light { display: none; }
.nav.is-solid .nav__logo-img--dark { display: block; }

.nav__toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: 10px 8px;
  flex-direction: column;
  justify-content: space-between;
}
.nav__toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: #fff;
  transition: transform 0.3s ease, opacity 0.3s ease, background 0.3s ease;
}
.nav.is-solid .nav__toggle span { background: var(--ink); }

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: center;
  overflow: hidden;
  isolation: isolate;
}

.hero__media { position: absolute; inset: 0; z-index: -2; }
.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 55%;
  transform: scale(1.06);
  animation: heroZoom 14s ease-out forwards;
}

@keyframes heroZoom {
  to { transform: scale(1); }
}

.hero__scrim {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(35, 30, 26, 0.42) 0%, rgba(35, 30, 26, 0.14) 34%, rgba(35, 30, 26, 0.38) 100%);
}

.hero__content {
  text-align: center;
  padding-inline: 22px;
  animation: fadeUp 1.1s cubic-bezier(0.22, 0.61, 0.36, 1) both 0.25s;
}

.hero__logo {
  width: clamp(230px, 30vw, 430px);
  margin-inline: auto;
  filter: drop-shadow(0 6px 26px rgba(0, 0, 0, 0.35));
}

.hero__tag {
  margin-top: 26px;
  color: rgba(255, 255, 255, 0.94);
  font-size: clamp(0.95rem, 1.35vw, 1.2rem);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 400;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.4);
}

.hero__cue {
  position: absolute;
  left: 50%;
  bottom: 34px;
  translate: -50% 0;
  width: 26px;
  height: 42px;
  border: 2px solid rgba(255, 255, 255, 0.75);
  border-radius: 999px;
  display: grid;
  place-items: start center;
  padding-top: 8px;
}
.hero__cue span {
  width: 3px;
  height: 8px;
  border-radius: 2px;
  background: #fff;
  animation: cue 1.8s ease-in-out infinite;
}

@keyframes cue {
  0%, 100% { transform: translateY(0); opacity: 1; }
  55% { transform: translateY(13px); opacity: 0.25; }
}

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

/* =========================================================
   SPLIT SECTIONS (text | media)
   ========================================================= */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  min-height: min(92vh, 900px);
  overflow: hidden;
}

.split__text {
  padding: clamp(56px, 7vw, 110px) clamp(26px, 5vw, 90px);
  padding-left: max(var(--pad-x), calc((100vw - var(--maxw)) / 2 + var(--pad-x)));
}

.split--reverse .split__text {
  padding-left: clamp(26px, 5vw, 90px);
  padding-right: max(var(--pad-x), calc((100vw - var(--maxw)) / 2 + var(--pad-x)));
}

.split__media { align-self: stretch; }

.split__media--bleed { height: 100%; min-height: 60vh; }
.split__media--bleed img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.split--about .split__media--bleed img { object-position: 80% center; }

.split__media--frame {
  padding: clamp(40px, 6vw, 90px);
  padding-left: max(var(--pad-x), calc((100vw - var(--maxw)) / 2 + var(--pad-x)));
}
.split__media--frame img {
  width: 100%;
  border-radius: 4px;
  box-shadow: var(--shadow-md);
}

/* chips under About */
.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 2.2rem;
}
.chip {
  font-size: 0.82rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--ink-soft);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.6);
  border-radius: 999px;
  padding: 8px 16px;
}

/* mission ticks */
.ticks { display: grid; gap: 1.1rem; margin-top: 0.4rem; }
.ticks li {
  position: relative;
  padding-left: 40px;
  font-size: clamp(0.98rem, 1.05vw, 1.08rem);
  line-height: 1.75;
  max-width: 58ch;
}
.ticks li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.35em;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 5px rgba(232, 150, 38, 0.16);
}
.ticks li::after {
  content: "";
  position: absolute;
  left: 7px;
  top: 0.62em;
  width: 8px;
  height: 4.5px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg);
}

/* why-partner square bullets (matches the deck) */
.squares { display: grid; gap: 1.15rem; margin-top: 2rem; }
.squares li {
  position: relative;
  padding-left: 30px;
  font-size: clamp(0.98rem, 1.05vw, 1.08rem);
  line-height: 1.8;
  max-width: 56ch;
  color: var(--ink);
}
.squares li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.66em;
  width: 10px;
  height: 10px;
  background: var(--ink);
}
.squares strong { font-weight: 600; }

.badges {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 2.4rem;
}
.badge {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange-deep);
  border: 1.5px solid rgba(221, 132, 14, 0.4);
  border-radius: 999px;
  padding: 8px 18px;
  background: rgba(255, 255, 255, 0.55);
}

/* =========================================================
   PARALLAX BAND
   ========================================================= */
.band {
  height: clamp(220px, 30vw, 380px);
  overflow: hidden;
  position: relative;
}
.band--tall { height: clamp(280px, 42vw, 520px); }

.band__img {
  position: absolute;
  inset: -22% 0;
  background-size: cover;
  background-position: center;
  will-change: transform;
}

/* =========================================================
   ACHIEVEMENTS
   ========================================================= */
.stats {
  margin-top: clamp(46px, 6vw, 84px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.stat {
  text-align: center;
  padding: 12px clamp(12px, 2.5vw, 34px);
  position: relative;
}
.stat + .stat::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8%;
  bottom: 8%;
  width: 1px;
  background: var(--line);
}

.stat__label {
  font-size: clamp(0.9rem, 1.1vw, 1.08rem);
  color: var(--ink);
  letter-spacing: 0.02em;
}

.stat__num {
  font-weight: 800;
  font-size: clamp(2.4rem, 5.4vw, 4.6rem);
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin-top: 0.35rem;
  font-variant-numeric: tabular-nums;
}

.stat__sub {
  font-size: clamp(0.86rem, 1vw, 1rem);
  color: var(--ink-soft);
  margin-top: 0.35rem;
  line-height: 1.4;
}

.partners__title {
  margin-top: clamp(48px, 6vw, 82px);
  text-align: center;
  font-size: 0.8rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

.partners {
  margin-top: 26px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 3.4vw, 54px);
}
.partners img {
  max-height: clamp(26px, 3vw, 44px);
  max-width: clamp(90px, 11vw, 152px);
  width: auto;
  object-fit: contain;
  filter: grayscale(1) opacity(0.6);
  transition: filter 0.35s ease, transform 0.35s ease;
}
.partners img:hover {
  filter: none;
  transform: translateY(-3px);
}

/* =========================================================
   B2B PILLS
   ========================================================= */
.pills {
  margin-top: 2.6rem;
  display: grid;
  gap: clamp(22px, 2.6vw, 34px);
  counter-reset: pill;
}
.pills li { max-width: 56ch; }

.pill {
  display: inline-block;
  background: var(--ink);
  color: #fff;
  border-radius: 999px;
  padding: 10px 26px;
  font-size: clamp(0.88rem, 1vw, 1rem);
  letter-spacing: 0.02em;
  font-weight: 500;
}

.pills li:nth-child(2) .pill { margin-left: clamp(0px, 2.2vw, 26px); }
.pills li:nth-child(3) .pill { margin-left: clamp(0px, 4.4vw, 52px); }
.pills li:nth-child(4) .pill { margin-left: clamp(0px, 6.6vw, 78px); }

.pills li p {
  margin-top: 0.85rem;
  font-size: clamp(0.96rem, 1.05vw, 1.06rem);
  line-height: 1.75;
  color: var(--ink);
}

/* =========================================================
   RETAIL CARDS
   ========================================================= */
.cards { margin-top: 2.6rem; display: grid; gap: 14px; }
.card {
  background: #fff;
  border-radius: 999px;
  padding: clamp(16px, 1.8vw, 22px) clamp(22px, 3vw, 40px);
  text-align: center;
  font-weight: 600;
  color: var(--ink-soft);
  font-size: clamp(0.92rem, 1.05vw, 1.06rem);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease, color 0.3s ease;
}
.card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  color: var(--ink);
}

/* =========================================================
   PRODUCT CATEGORIES
   ========================================================= */
.grid-cat {
  margin-top: clamp(44px, 5.5vw, 76px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 3vw, 46px) clamp(20px, 3vw, 42px);
}

.cat__img {
  border-radius: var(--r);
  overflow: hidden;
  aspect-ratio: 3 / 2;
  background: #e6e6ec;
  box-shadow: var(--shadow-sm);
}
.cat__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.cat:hover .cat__img img { transform: scale(1.07); }

.cat figcaption {
  margin-top: 1rem;
  text-align: center;
  font-size: clamp(0.95rem, 1.1vw, 1.1rem);
  color: var(--ink);
}

/* =========================================================
   HERO PRODUCTS (honeycomb)
   ========================================================= */
.heroprod__inner {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) 1.15fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: center;
}

.dashes { margin-top: 2.4rem; display: grid; gap: 1.1rem; }
.dashes li {
  position: relative;
  padding-left: 34px;
  font-size: clamp(1rem, 1.2vw, 1.2rem);
}
.dashes li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 18px;
  height: 2px;
  background: var(--orange);
}

.hive {
  position: relative;
  width: 100%;
  max-width: 720px;
  margin-inline: auto;
  aspect-ratio: 1011 / 952;
}

.hex {
  position: absolute;
  clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
  overflow: hidden;
  background: #e6e6ec;
  transition: transform 0.45s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.hex img { width: 100%; height: 100%; object-fit: cover; }
.hex:hover { transform: scale(1.04); z-index: 2; }

/* geometry lifted straight from the deck's honeycomb */
.hex--a { left: 20.38%; top: 8.09%; width: 44.91%; height: 41.28%; }
.hex--b { left: 55.19%; top: 29.2%; width: 44.91%; height: 41.28%; }
.hex--c { left: 20.38%; top: 50.74%; width: 44.91%; height: 41.28%; }
.hex--d { left: 58.75%; top: 0%; width: 30.27%; height: 27.84%; }
.hex--e { left: 0%; top: 35.92%; width: 30.27%; height: 27.84%; }
.hex--f { left: 58.95%; top: 72.16%; width: 30.27%; height: 27.84%; }

/* =========================================================
   GALLERY
   ========================================================= */
.gallery {
  margin-top: clamp(44px, 5.5vw, 72px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2vw, 28px);
}
.gallery figure {
  border-radius: var(--r);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: var(--shadow-sm);
  background: #e6e6ec;
}
.gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.gallery figure:hover img { transform: scale(1.06); }

/* =========================================================
   CLOSING
   ========================================================= */
.quote {
  font-size: clamp(1.05rem, 1.5vw, 1.5rem);
  line-height: 1.85;
  max-width: 32ch;
  color: var(--ink);
}

/* =========================================================
   CONTACT / FOOTER
   ========================================================= */
.contact {
  padding-block: clamp(80px, 10vw, 150px);
  text-align: center;
  overflow: hidden;
}

.contact__logo {
  width: clamp(190px, 22vw, 290px);
  margin-inline: auto;
}

.contact__title {
  margin-top: clamp(34px, 4vw, 54px);
  font-weight: 800;
  font-size: clamp(1.7rem, 3.4vw, 2.9rem);
  line-height: 1.2;
}

.contact__copy {
  margin-top: 0.6rem;
  font-weight: 800;
  font-size: clamp(1.7rem, 3.4vw, 2.9rem);
  line-height: 1.2;
}

.contact__links {
  margin-top: clamp(38px, 4.5vw, 58px);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

.clink {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  border-radius: 999px;
  padding: 14px 28px;
  font-size: clamp(0.95rem, 1.1vw, 1.1rem);
  box-shadow: var(--shadow-sm);
  transition: transform 0.28s ease, box-shadow 0.28s ease, background 0.28s ease, color 0.28s ease;
}
.clink svg { width: 22px; height: 22px; fill: var(--orange-deep); transition: fill 0.28s ease; }
.clink:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  background: var(--ink);
  color: #fff;
}
.clink:hover svg { fill: var(--orange); }

.contact__note {
  margin-top: clamp(46px, 5vw, 70px);
  color: var(--ink-soft);
  font-size: 0.95rem;
  letter-spacing: 0.06em;
}
.contact__copyright {
  margin-top: 8px;
  color: var(--ink-mute);
  font-size: 0.85rem;
}

/* floating whatsapp */
.fab {
  position: fixed;
  right: clamp(16px, 2.4vw, 30px);
  bottom: clamp(16px, 2.4vw, 30px);
  z-index: 80;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #25d366;
  box-shadow: 0 10px 26px rgba(37, 211, 102, 0.4);
  transform: translateY(90px);
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.22, 0.61, 0.36, 1), opacity 0.4s ease, background 0.28s ease;
}
.fab.is-visible { transform: none; opacity: 1; }
.fab:hover { background: #1eb356; }
.fab svg { width: 30px; height: 30px; fill: #fff; }

/* =========================================================
   SCROLL REVEAL
   ========================================================= */
.reveal { opacity: 0; transform: translateY(34px); }
.reveal.is-in {
  opacity: 1;
  transform: none;
  transition: opacity 0.9s cubic-bezier(0.22, 0.61, 0.36, 1), transform 0.9s cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1024px) {
  .heroprod__inner { grid-template-columns: 1fr; }
  .hive { margin-top: 20px; }
  .grid-cat { grid-template-columns: repeat(2, 1fr); }
  .gallery { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 860px) {
  :root { --nav-h: 66px; }

  .nav__toggle { display: flex; }

  .nav__links {
    position: fixed;
    inset: var(--nav-h) 0 auto 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    background: rgba(241, 241, 246, 0.98);
    backdrop-filter: blur(14px);
    color: var(--ink);
    padding: 18px var(--pad-x) 28px;
    box-shadow: 0 20px 40px rgba(51, 51, 51, 0.12);
    clip-path: inset(0 0 100% 0);
    transition: clip-path 0.4s cubic-bezier(0.22, 0.61, 0.36, 1);
  }
  .nav__links a { padding-block: 12px; width: 100%; }
  .nav__links.is-open { clip-path: inset(0 0 0 0); }
  .nav__cta { margin-top: 12px; }

  .nav.is-menu-open .nav__toggle span { background: var(--ink); }
  .nav.is-menu-open .nav__toggle span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
  .nav.is-menu-open .nav__toggle span:nth-child(2) { opacity: 0; }
  .nav.is-menu-open .nav__toggle span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

  .split { grid-template-columns: 1fr; min-height: 0; }
  .split__media--bleed { min-height: 56vw; max-height: 78vh; order: -1; }
  .split--reverse .split__media--bleed { order: -1; }
  .split__text,
  .split--reverse .split__text {
    padding: clamp(46px, 9vw, 72px) var(--pad-x);
  }
  .split__media--frame {
    padding: clamp(40px, 8vw, 60px) var(--pad-x) 0;
    order: -1;
  }

  .stats { grid-template-columns: 1fr; gap: 34px; }
  .stat + .stat::before {
    left: 18%;
    right: 18%;
    top: -17px;
    bottom: auto;
    width: auto;
    height: 1px;
  }
  .stat__cap { margin-top: 0.8rem; }

  .pills li:nth-child(n) .pill { margin-left: 0; }
}

@media (max-width: 560px) {
  .grid-cat { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .hero__tag { letter-spacing: 0.14em; }
  .quote { max-width: none; }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
}
