/* ========================================
   ILONA BULIŅA — FITNESS A-Z
   Editorial fitness · grounded + athletic
   ======================================== */

:root {
  /* Palette — warm-grounded-strong */
  --bg:       #F5F0EB;
  --bg-2:    #ECE4DA;
  --ink:     #1E1A17;
  --ink-2:   #3A322C;
  --muted:   #8E8073;
  --line:    #D8CDBF;
  --accent:  #C45C2E;   /* terracotta — matches her studio neon */
  --accent-d:#A24921;
  --accent-2:#E8A57D;   /* soft amber */
  --rose:    #E9C9B8;   /* hero mesh */
  --paper:   #FFFCF8;

  --radius:   18px;
  --radius-s: 10px;

  --serif: "DM Serif Display", "Times New Roman", serif;
  --sans:  "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --mono:  "DM Mono", ui-monospace, "SFMono-Regular", monospace;

  --easing: cubic-bezier(0.16, 1, 0.3, 1);
  --easing-strong: cubic-bezier(0.7, 0, 0.2, 1);

  --maxw: 1320px;
  --pad: clamp(20px, 4vw, 56px);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: clip; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  /* paper texture layered under the grain overlay */
  background-image:
    radial-gradient(rgba(58, 50, 44, 0.025) 1px, transparent 1px),
    radial-gradient(rgba(196, 92, 46, 0.018) 1px, transparent 1.5px);
  background-size: 3px 3px, 7px 7px;
  background-position: 0 0, 1px 2px;
}

/* screen-reader only */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

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

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

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

button { font-family: inherit; cursor: pointer; }

/* ========================================
   GRAIN OVERLAY
   ======================================== */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240' viewBox='0 0 240 240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.92' numOctaves='3' stitchTiles='stitch' seed='4'/><feColorMatrix values='0 0 0 0 0.12 0 0 0 0 0.10 0 0 0 0 0.09 0 0 0 0.65 0'/></filter><rect width='240' height='240' filter='url(%23n)' opacity='0.85'/></svg>");
  opacity: 0.11;
  mix-blend-mode: multiply;
}

/* ========================================
   COOKIE BANNER
   ======================================== */
.cookie {
  position: fixed; left: 16px; right: 16px; bottom: 16px;
  z-index: 1000;
  background: var(--ink); color: var(--paper);
  border-radius: var(--radius);
  box-shadow: 0 24px 60px -20px rgba(30,26,23,.45);
  animation: rise .55s var(--easing) both;
}
.cookie__inner {
  display: flex; gap: 18px; align-items: center; justify-content: space-between;
  padding: 14px 18px; max-width: var(--maxw); margin: 0 auto;
  font-size: 14px; flex-wrap: wrap;
}
.cookie__inner p { margin: 0; max-width: 70ch; opacity: .92; }
.cookie__inner a { color: var(--accent-2); border-bottom: 1px solid currentColor; }
.cookie__btn {
  background: var(--accent); color: var(--paper);
  border: 0; padding: 14px 26px; border-radius: 999px;
  font-weight: 600; font-size: 13px; letter-spacing: .02em;
  min-height: 48px; min-width: 48px;
  cursor: pointer;
  transition: transform .25s var(--easing), background .25s var(--easing);
}
.cookie__btn:hover { background: var(--accent-d); transform: translateY(-1px); }
.cookie__btn:active { transform: translateY(0); }

@keyframes rise { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

@media (max-width: 540px) {
  .cookie { left: 12px; right: 12px; bottom: 12px; }
  .cookie__inner { padding: 14px 16px; gap: 12px; flex-direction: column; align-items: stretch; }
  .cookie__inner p { font-size: 13px; line-height: 1.5; }
  .cookie__btn { width: 100%; }
}

/* ========================================
   NAV
   ======================================== */
.nav {
  position: sticky; top: 0; z-index: 100;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center; gap: 28px;
  padding: 14px var(--pad);
  background: rgba(245, 240, 235, 0.78);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .35s var(--easing), background .35s var(--easing), padding .35s var(--easing);
}
.nav.is-scrolled {
  border-bottom-color: var(--line);
  padding: 10px var(--pad);
}
.nav__brand { display: flex; align-items: center; gap: 12px; font-weight: 600; min-height: 44px; }
.nav__mark {
  width: 36px; height: 36px;
  display: grid; place-items: center;
  background: var(--ink); color: var(--paper);
  border-radius: 8px;
  font-family: var(--serif); font-size: 15px; letter-spacing: .04em;
}
.nav__name { font-size: 14px; letter-spacing: .01em; }
.nav__links {
  display: flex; gap: 28px; justify-self: center;
  font-size: 14px; color: var(--ink-2);
}
.nav__links a {
  position: relative; padding: 8px 0;
  transition: color .25s var(--easing);
}
.nav__links a::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: 2px;
  height: 1px; background: var(--accent);
  transform: scaleX(0); transform-origin: left;
  transition: transform .35s var(--easing);
}
.nav__links a:hover { color: var(--ink); }
.nav__links a:hover::after { transform: scaleX(1); }
.nav__cta {
  background: var(--ink); color: var(--paper);
  padding: 12px 22px; border-radius: 999px;
  font-size: 13px; font-weight: 500; letter-spacing: .02em;
  min-height: 44px;
  display: inline-flex; align-items: center;
  transition: transform .3s var(--easing), background .3s var(--easing);
}
.nav__cta:hover { background: var(--accent); transform: translateY(-1px); }
.nav__cta:active { transform: translateY(0); }

@media (max-width: 880px) {
  .nav__links { display: none; }
  .nav { grid-template-columns: 1fr auto; gap: 12px; }
  .nav__name { display: none; }
}

/* ========================================
   BUTTONS
   ======================================== */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 26px;
  border-radius: 999px;
  font-size: 14px; font-weight: 500; letter-spacing: .015em;
  border: 1px solid transparent;
  min-height: 48px;
  transition: transform .3s var(--easing), background .3s var(--easing), color .3s var(--easing), border-color .3s var(--easing), box-shadow .3s var(--easing);
  white-space: nowrap;
}
.btn svg { width: 16px; height: 16px; transition: transform .35s var(--easing); }
.btn:hover svg { transform: translateX(4px); }
.btn:active { transform: translateY(1px); }

.btn--solid { background: var(--ink); color: var(--paper); }
.btn--solid:hover { background: var(--accent); box-shadow: 0 18px 38px -18px rgba(196, 92, 46, 0.55); }

.btn--ghost {
  background: transparent; color: var(--ink);
  border-color: var(--ink);
}
.btn--ghost:hover { background: var(--ink); color: var(--paper); }

.btn--block { width: 100%; justify-content: center; padding: 18px 26px; }

/* ========================================
   SECTION HEADS
   ======================================== */
.section-head {
  max-width: var(--maxw); margin: 0 auto;
  padding: 0 var(--pad);
  margin-bottom: 56px;
}
.section-head--split {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px;
  align-items: end;
}
.eyebrow {
  display: inline-block;
  font-size: 12px; letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 18px;
  font-family: var(--mono);
}
.eyebrow--light { color: rgba(255, 252, 248, 0.85); }
.section-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(38px, 5.5vw, 76px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin: 0;
  color: var(--ink);
}
.section-title em {
  font-style: italic; color: var(--accent);
}
.section-title--tight { font-size: clamp(34px, 4.6vw, 64px); }

@media (max-width: 720px) {
  .section-head--split { gap: 24px; }
}
@media (max-width: 540px) {
  .section-head--split { grid-template-columns: 1fr; gap: 14px; }
}

/* ========================================
   HERO
   ======================================== */
.hero {
  position: relative;
  max-width: var(--maxw); margin: 0 auto;
  padding: clamp(36px, 6vw, 72px) var(--pad) clamp(48px, 6vw, 80px);
  isolation: isolate;
  overflow-x: clip;
}

/* ---- Ambient gradient mesh: cream → rose → amber drift ---- */
.hero__mesh {
  position: absolute;
  inset: -8% -4% -4%;
  pointer-events: none;
  z-index: -1;
  filter: blur(60px) saturate(110%);
  opacity: 0.78;
}
.hero__mesh .mesh {
  position: absolute;
  display: block;
  border-radius: 50%;
  will-change: transform;
}
.mesh--a {
  width: 56%; height: 60%;
  left: -8%; top: -4%;
  background: radial-gradient(circle, var(--rose) 0%, rgba(233, 201, 184, 0) 65%);
  animation: drift-a 22s ease-in-out infinite alternate;
}
.mesh--b {
  width: 50%; height: 55%;
  right: -6%; top: 10%;
  background: radial-gradient(circle, var(--accent-2) 0%, rgba(232, 165, 125, 0) 65%);
  animation: drift-b 28s ease-in-out infinite alternate;
}
.mesh--c {
  width: 44%; height: 48%;
  left: 30%; bottom: -10%;
  background: radial-gradient(circle, rgba(196, 92, 46, 0.42) 0%, rgba(196, 92, 46, 0) 65%);
  animation: drift-c 26s ease-in-out infinite alternate;
}
@keyframes drift-a {
  0%   { transform: translate(0, 0)        scale(1);    }
  100% { transform: translate(8%, 6%)      scale(1.12); }
}
@keyframes drift-b {
  0%   { transform: translate(0, 0)        scale(1.05); }
  100% { transform: translate(-6%, 8%)     scale(0.95); }
}
@keyframes drift-c {
  0%   { transform: translate(0, 0)        scale(1);    }
  100% { transform: translate(-10%, -8%)   scale(1.15); }
}

.hero__meta {
  display: flex; align-items: center; gap: 14px;
  font-size: 13px; letter-spacing: .04em;
  color: var(--ink-2);
  font-family: var(--mono);
  margin-bottom: clamp(28px, 4vw, 48px);
  opacity: 0;
  animation: fadeUp .9s var(--easing) .3s forwards;
  flex-wrap: wrap;
}
.hero__divider {
  width: 24px; height: 1px; background: var(--ink-2);
}
.hero__pulse {
  display: inline-flex; align-items: center; justify-content: center;
  width: 14px; height: 14px;
  position: relative;
}
.hero__pulse span {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent);
  position: relative;
  z-index: 2;
  box-shadow: 0 0 0 0 rgba(196, 92, 46, 0.6);
  animation: pulseDot 2s ease-out infinite;
}
@keyframes pulseDot {
  0%   { box-shadow: 0 0 0 0 rgba(196, 92, 46, 0.55); }
  70%  { box-shadow: 0 0 0 14px rgba(196, 92, 46, 0); }
  100% { box-shadow: 0 0 0 0 rgba(196, 92, 46, 0); }
}

/* ---- MAGAZINE MASTHEAD STRIP (edge-to-edge mono caps) ---- */
.hero__masthead {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(8px, 1.5vw, 18px);
  width: 100%;
  padding: 14px 0 12px;
  margin: 0 0 clamp(20px, 3vw, 36px);
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  font-family: var(--mono);
  font-size: clamp(9px, 0.9vw, 11px);
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--ink);
  white-space: nowrap;
  overflow: hidden;
  opacity: 0;
  animation: fadeUp 0.9s var(--easing) 0.15s forwards;
}
.hero__masthead-orn {
  color: var(--accent);
  font-family: var(--serif);
  font-size: 1.3em;
  line-height: 1;
  letter-spacing: 0;
  flex: 0 0 auto;
}
.hero__masthead > span:not(.hero__masthead-orn) {
  flex: 0 1 auto;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (max-width: 880px) {
  .hero__masthead {
    font-size: 9px;
    letter-spacing: .14em;
    gap: 8px;
  }
  /* Hide middle ornaments and "Izdevums Nr. 01" + "MMXXVI" pieces to fit */
  .hero__masthead > span:nth-child(5),
  .hero__masthead > span:nth-child(6),
  .hero__masthead > span:nth-child(7),
  .hero__masthead > span:nth-child(8) { display: none; }
}
@media (max-width: 480px) {
  .hero__masthead {
    font-size: 8.5px;
    letter-spacing: .1em;
    gap: 6px;
    padding: 10px 0 8px;
  }
}

/* ---- EDITORIAL COVER COMPOSITION ---- */
.hero__cover {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
  gap: clamp(20px, 3vw, 48px);
  align-items: end;
  z-index: 1;
  margin: clamp(8px, 1.5vw, 24px) 0 clamp(28px, 4vw, 56px);
  isolation: isolate;
}

/* Solid terracotta block — sits behind portrait's lower-left, bleeds toward headline */
.hero__block {
  position: absolute;
  z-index: 0;
  background: var(--accent);
  left: 44%;
  right: 12%;
  bottom: clamp(40px, 6vw, 90px);
  height: clamp(110px, 13vw, 190px);
  transform-origin: left center;
  opacity: 0;
  animation: blockIn 1s var(--easing-strong) 0.7s forwards;
}
@keyframes blockIn {
  from { opacity: 0; transform: translateY(14px) scaleX(0.86); }
  to   { opacity: 1; transform: translateY(0)  scaleX(1);    }
}

/* MASSIVE display headline */
.hero__display {
  position: relative;
  z-index: 2;
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(80px, 14vw, 220px);
  line-height: 0.86;
  letter-spacing: -0.035em;
  color: var(--ink);
  display: flex;
  flex-direction: column;
  gap: clamp(2px, 0.4vw, 8px);
  opacity: 0;
  animation: fadeUp 1.1s var(--easing) 0.45s forwards;
  word-break: keep-all;
  overflow-wrap: normal;
  hyphens: none;
}
.hero__display-row {
  display: block;
  white-space: nowrap;
}
.hero__display-row--italic {
  font-style: italic;
  color: var(--accent);
  /* slight horizontal nudge to feel hand-set */
  margin-left: clamp(20px, 3vw, 56px);
}
.hero__display-dash {
  font-style: italic;
  display: inline-block;
  margin: 0 0.04em;
}

/* Mobile: shrink display, drop italic indent */
@media (max-width: 880px) {
  .hero__cover {
    grid-template-columns: 1fr;
    gap: clamp(16px, 3vw, 28px);
    align-items: stretch;
  }
  .hero__display {
    font-size: clamp(64px, 14vw, 130px);
    line-height: 0.9;
  }
  .hero__display-row--italic { margin-left: clamp(12px, 2vw, 28px); }
  .hero__block {
    left: auto;
    right: clamp(8px, 4vw, 24px);
    top: clamp(46px, 9vw, 90px);
    bottom: auto;
    width: clamp(120px, 28vw, 220px);
    height: clamp(80px, 14vw, 130px);
    transform-origin: right center;
  }
}
@media (max-width: 640px) {
  .hero__display {
    font-size: clamp(54px, 14vw, 110px);
    line-height: 0.92;
  }
  .hero__display-row--italic { margin-left: 8px; }
  .hero__block {
    right: clamp(6px, 3vw, 18px);
    top: clamp(34px, 8vw, 60px);
    width: clamp(96px, 30vw, 160px);
    height: clamp(60px, 11vw, 100px);
  }
}

/* ---- DECORATIVE ORNAMENT AT PHOTO BOTTOM-LEFT ---- */
.hero__ornament {
  position: absolute;
  left: clamp(-22px, -2vw, -14px);
  bottom: clamp(-22px, -2vw, -14px);
  width: clamp(48px, 6vw, 72px);
  height: clamp(48px, 6vw, 72px);
  display: grid;
  place-items: center;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--accent);
  z-index: 5;
  box-shadow: 0 12px 28px -16px rgba(58,50,44,0.35);
  opacity: 0;
  transform: scale(0.8);
  animation: ornIn 0.9s var(--easing-strong) 1.2s forwards, ornSway 6s ease-in-out 2s infinite;
  transform-origin: center;
}
.hero__ornament svg {
  width: 70%;
  height: 70%;
}
@keyframes ornIn {
  from { opacity: 0; transform: scale(0.8) rotate(-12deg); }
  to   { opacity: 1; transform: scale(1)    rotate(0);     }
}
@keyframes ornSway {
  0%, 100% { transform: scale(1) rotate(-3deg); }
  50%      { transform: scale(1) rotate(3deg);  }
}
@media (max-width: 640px) {
  .hero__ornament { display: none; }
}

.hero__sub {
  font-size: clamp(15px, 1.15vw, 17px);
  color: var(--ink-2);
  max-width: 36ch;
  line-height: 1.55;
  margin: 0;
  opacity: 0;
  animation: fadeUp .9s var(--easing) 1.05s forwards;
}
.hero__sub em {
  font-style: italic;
  background: linear-gradient(transparent 60%, rgba(196, 92, 46, 0.18) 60%);
  padding: 0 2px;
}

.hero__actions {
  display: flex; gap: 14px; flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp .9s var(--easing) 1.2s forwards;
}

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

/* HERO BOTTOM — lede + CTAs sit beneath the cover composition */
.hero__bottom {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: clamp(20px, 4vw, 56px);
  align-items: end;
  margin-bottom: clamp(28px, 4vw, 48px);
}
@media (max-width: 880px) {
  .hero__bottom { grid-template-columns: 1fr; gap: clamp(18px, 3vw, 28px); }
}

/* HERO PHOTO */
.hero__photo {
  margin: 0;
  position: relative;
  z-index: 2;
  isolation: isolate;
}
/* halo behind the photo */
.hero__halo {
  position: absolute;
  inset: -10% -8% -2% -8%;
  z-index: -1;
  background:
    radial-gradient(closest-side, rgba(196, 92, 46, 0.32), rgba(196, 92, 46, 0) 70%),
    radial-gradient(closest-side, rgba(232, 165, 125, 0.22), rgba(232, 165, 125, 0) 75%);
  filter: blur(20px);
  opacity: 0;
  animation: haloIn 1.6s var(--easing) 0.6s forwards, haloPulse 9s ease-in-out 2s infinite alternate;
  pointer-events: none;
}
@keyframes haloIn {
  to { opacity: 1; }
}
@keyframes haloPulse {
  from { transform: scale(1); }
  to   { transform: scale(1.06); }
}

.hero__photo-mask {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--bg-2);
  box-shadow: 0 32px 80px -28px rgba(58, 50, 44, 0.35), 0 0 0 1px rgba(30,26,23,0.06);
  will-change: transform;
}
.hero__photo-mask::after {
  content: "";
  position: absolute; inset: 0;
  background: var(--bg);
  transform: translateY(0);
  animation: maskSweep 1.4s var(--easing-strong) 0.5s forwards;
  z-index: 2;
}
.hero__photo-mask img {
  width: 100%; height: 100%; object-fit: cover; object-position: center 22%;
  image-rendering: -webkit-optimize-contrast;
  transform: scale(1.1);
  animation: photoSettle 2s var(--easing-strong) 0.5s forwards;
  filter: contrast(1.02) saturate(1.05);
}
@keyframes maskSweep {
  0%   { transform: translateY(0); }
  100% { transform: translateY(-101%); }
}
@keyframes photoSettle {
  0%   { transform: scale(1.15); }
  100% { transform: scale(1); }
}

.hero__photo-cap {
  display: flex; justify-content: space-between;
  margin-top: 14px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
}

/* HERO STATS */
.hero__stats {
  list-style: none; padding: 0; margin: clamp(28px, 4vw, 56px) 0 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  border-top: 1px solid var(--line);
  padding-top: 32px;
  position: relative;
}
.hero__stats li {
  display: flex; flex-direction: column; gap: 6px;
  position: relative;
}
.hero__stats li:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -12px; top: 8px; bottom: 8px;
  width: 1px;
  background: var(--line);
}
.hero__stats strong {
  font-family: var(--serif);
  font-size: clamp(30px, 3.4vw, 48px);
  font-weight: 400;
  line-height: 1;
  color: var(--ink);
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
}
.hero__stats span {
  font-size: 12px;
  color: var(--muted);
  letter-spacing: .03em;
  font-family: var(--mono);
  text-transform: uppercase;
}
@media (max-width: 720px) {
  .hero__stats {
    gap: 14px;
    padding-top: 22px;
    margin-top: clamp(28px, 5vw, 48px);
  }
  .hero__stats li:not(:last-child)::after { right: -7px; top: 4px; bottom: 4px; }
  .hero__stats strong { font-size: clamp(22px, 5vw, 32px); }
  .hero__stats span { font-size: 10px; letter-spacing: .02em; }
}
@media (max-width: 360px) {
  .hero__stats { grid-template-columns: repeat(2, 1fr); gap: 20px 14px; }
  .hero__stats li:nth-child(2)::after { display: none; }
}

/* ========================================
   TICKER
   ======================================== */
.ticker {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
  overflow: hidden;
  background: var(--bg-2);
}
.ticker__track {
  display: flex; align-items: center; gap: 40px;
  white-space: nowrap;
  animation: tickerScroll 40s linear infinite;
  will-change: transform;
}
.ticker__item {
  font-family: var(--serif);
  font-size: clamp(20px, 2vw, 28px);
  color: var(--ink);
  letter-spacing: -0.01em;
}
.ticker__item:nth-child(4n+3) { font-style: italic; color: var(--accent); }
.ticker__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}
@keyframes tickerScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ========================================
   PROJECT (Fitness A-Z deep dive)
   ======================================== */
.project {
  padding: clamp(80px, 10vw, 140px) 0 clamp(60px, 8vw, 100px);
}
.project__grid {
  max-width: var(--maxw); margin: 0 auto;
  padding: 0 var(--pad);
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: start;
}
@media (max-width: 880px) {
  .project__grid { grid-template-columns: 1.25fr 1fr; gap: clamp(20px, 3.5vw, 40px); }
  .project__pull { padding: clamp(22px, 3vw, 36px); }
  .project__pull blockquote { font-size: clamp(16px, 2.4vw, 22px); padding-top: clamp(22px, 4vw, 36px); }
  .project__pull blockquote .pull-emph { font-size: clamp(20px, 3vw, 30px); margin-top: 14px; }
  .quote-mark { font-size: 96px; top: -4px; left: 14px; opacity: 0.17; }
}
@media (max-width: 540px) {
  .project__grid { grid-template-columns: 1fr; gap: clamp(28px, 6vw, 44px); }
  .project__pull blockquote { padding-top: clamp(28px, 6vw, 44px); }
  .quote-mark { font-size: 130px; }
}

.project__copy .lead {
  font-family: var(--serif);
  font-size: clamp(22px, 2vw, 30px);
  line-height: 1.3;
  color: var(--ink);
  margin: 0 0 24px;
  letter-spacing: -0.01em;
}
.project__copy p {
  color: var(--ink-2);
  font-size: 16px;
  line-height: 1.65;
  max-width: 60ch;
}
.project__copy strong { color: var(--ink); font-weight: 600; }

.outcomes {
  list-style: none; padding: 0; margin: 40px 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--line);
}
.outcomes li {
  display: flex; gap: 18px; align-items: baseline;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}
.outcomes li:nth-child(odd) { padding-right: 24px; }
.outcomes li:nth-child(even) {
  padding-left: 24px;
  border-left: 1px solid var(--line);
}
.outcomes__num {
  font-family: var(--mono);
  font-size: 12px; letter-spacing: .1em;
  color: var(--accent);
  flex-shrink: 0;
}
.outcomes li > div { display: flex; flex-direction: column; gap: 2px; }
.outcomes li strong { font-weight: 600; font-size: 15px; color: var(--ink); }
.outcomes li span { font-size: 13px; color: var(--muted); }
@media (max-width: 640px) {
  .outcomes li { padding: 16px 0; gap: 12px; }
  .outcomes li:nth-child(odd) { padding-right: 12px; }
  .outcomes li:nth-child(even) { padding-left: 12px; }
  .outcomes li strong { font-size: 13px; }
  .outcomes li span { font-size: 11px; }
}
@media (max-width: 360px) {
  .outcomes { grid-template-columns: 1fr; }
  .outcomes li:nth-child(odd) { padding-right: 0; }
  .outcomes li:nth-child(even) { padding-left: 0; border-left: 0; }
}

.project__meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding: 24px 0;
  border-top: 1px solid var(--line);
}
.project__meta div { display: flex; flex-direction: column; gap: 4px; }
.project__meta span {
  font-family: var(--mono); font-size: 11px; letter-spacing: .12em;
  text-transform: uppercase; color: var(--muted);
}
.project__meta strong { font-weight: 500; font-size: 14px; color: var(--ink); }
@media (max-width: 640px) { .project__meta { gap: 14px; padding: 18px 0; } .project__meta strong { font-size: 12px; } .project__meta span { font-size: 9px; letter-spacing: .08em; } }
@media (max-width: 360px) { .project__meta { grid-template-columns: 1fr; gap: 12px; } }

.project__pull {
  position: relative;
  background: var(--ink);
  color: var(--paper);
  padding: clamp(32px, 3.5vw, 52px);
  border-radius: var(--radius);
  overflow: hidden;
}
.project__pull::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(700px circle at 100% 0%, rgba(196, 92, 46, 0.32), transparent 55%),
    radial-gradient(500px circle at 0% 100%, rgba(232, 165, 125, 0.14), transparent 60%);
  pointer-events: none;
}
.project__pull > * { position: relative; }
@media (min-width: 541px) { .project__pull { position: sticky; top: 100px; } }
.project__pull blockquote {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(22px, 2vw, 30px);
  line-height: 1.32;
  letter-spacing: -0.01em;
}
.project__pull blockquote .pull-emph {
  color: var(--accent-2);
  font-weight: 400; font-style: italic;
  display: block; margin-top: 22px;
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1.12;
  letter-spacing: -0.025em;
}
.project__pull cite {
  display: block;
  margin-top: 24px;
  font-style: normal;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .1em;
  color: rgba(255, 252, 248, 0.55);
}
.quote-mark {
  position: absolute;
  top: -6px;
  left: 22px;
  font-family: var(--serif);
  font-size: clamp(120px, 11vw, 180px);
  color: var(--accent);
  line-height: 1;
  opacity: 0.18;
  z-index: 0;
  pointer-events: none;
}
/* Ensure blockquote text sits above and clear of the glyph */
.project__pull blockquote {
  position: relative;
  z-index: 1;
  padding-top: clamp(28px, 4vw, 56px);
}

/* ========================================
   ABOUT — burnout recovery centerpiece
   ======================================== */
.about {
  background: var(--bg-2);
  padding: clamp(80px, 10vw, 140px) 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.about__head { margin-bottom: clamp(48px, 6vw, 72px); }

.about__grid {
  max-width: var(--maxw); margin: 0 auto;
  padding: 0 var(--pad);
  display: grid;
  grid-template-columns: 1fr 1.15fr 0.78fr;
  gap: clamp(24px, 3vw, 48px);
  align-items: start;
}
@media (max-width: 980px) {
  .about__grid { grid-template-columns: 0.9fr 1fr 0.7fr; gap: clamp(16px, 2.5vw, 32px); }
}
@media (max-width: 640px) {
  .about__grid { grid-template-columns: 1fr; }
}

.about__photo {
  margin: 0;
}
.about__photo--main { grid-column: 1; align-self: stretch; }
.about__photo--side {
  grid-column: 3;
  margin-top: clamp(40px, 6vw, 100px);
}
@media (max-width: 980px) {
  .about__photo--side { margin-top: clamp(20px, 4vw, 60px); }
}
@media (max-width: 640px) {
  .about__photo--side { grid-column: auto; max-width: 100%; margin-top: 0; }
}
@media (max-width: 540px) {
  .about__creds { gap: 14px 18px; }
}
@media (max-width: 360px) {
  .about__creds { grid-template-columns: 1fr; gap: 14px; }
}

.about__photo .reveal-mask {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--ink);
}
.about__photo--main .reveal-mask { aspect-ratio: 3 / 4; }
.about__photo .reveal-mask img {
  width: 100%; height: 100%; object-fit: cover; object-position: center center;
  image-rendering: -webkit-optimize-contrast;
  filter: contrast(1.02) saturate(1.05);
  transform: scale(1.05);
  transition: transform 1.2s var(--easing-strong);
}
.about__photo:hover .reveal-mask img { transform: scale(1.02); }

/* ink-wipe — three stacked panels sweep diagonally off */
.about__photo .reveal-mask::before,
.about__photo .reveal-mask::after {
  content: "";
  position: absolute; inset: 0;
  background: var(--bg-2);
  z-index: 2;
  transform: translateX(0);
  transition: transform 1.1s var(--easing-strong);
}
.about__photo .reveal-mask::before {
  transition-delay: 0s;
}
.about__photo .reveal-mask::after {
  background: var(--ink);
  transition-delay: 0.12s;
}
.about__photo.is-revealed .reveal-mask::before { transform: translateX(101%); }
.about__photo.is-revealed .reveal-mask::after { transform: translateX(101%); }

.about__photo figcaption {
  margin-top: 12px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
}

.about__copy { padding-top: 12px; }
.about__copy .lead {
  font-family: var(--serif);
  font-size: clamp(22px, 2vw, 30px);
  line-height: 1.3;
  margin: 0 0 22px;
  color: var(--ink);
  letter-spacing: -0.015em;
}
.about__copy p {
  color: var(--ink-2);
  font-size: 16px;
  line-height: 1.7;
  max-width: 56ch;
}
.about__copy p strong { color: var(--ink); font-weight: 600; }

.about__creds {
  margin: 36px 0 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px 24px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.about__creds div { display: flex; flex-direction: column; gap: 4px; }
.about__creds dt {
  font-family: var(--mono); font-size: 11px;
  letter-spacing: .12em; text-transform: uppercase; color: var(--muted);
}
.about__creds dd { margin: 0; font-size: 14px; color: var(--ink); font-weight: 500; }

/* ========================================
   SERVICES — staggered with massive numerals
   ======================================== */
.services {
  padding: clamp(80px, 10vw, 140px) 0;
  position: relative;
}
.services__grid {
  max-width: var(--maxw); margin: 0 auto;
  padding: 0 var(--pad);
  display: grid;
  grid-template-columns: 1fr 1.1fr 1fr;
  gap: 24px;
  align-items: start;
}
@media (max-width: 880px) {
  .services__grid { gap: 14px; }
  .svc { padding: clamp(18px, 2.4vw, 28px); min-height: 0; gap: 10px; }
  .svc h3 { font-size: clamp(15px, 2.4vw, 22px); }
  .svc p { font-size: 12px; line-height: 1.5; }
  .svc ul li { font-size: 11px; padding-left: 14px; }
  .svc ul { gap: 6px; padding-top: 12px; }
  .svc__num { font-size: 18px; }
  .svc__numerals { font-size: 140px; bottom: -18px; right: -6px; }
  .svc__link { font-size: 11px; min-height: 32px; padding: 4px 0; }
  .svc__badge { top: 12px; right: 12px; font-size: 9px; padding: 3px 7px; }
}
@media (max-width: 540px) {
  .services__grid { gap: 10px; }
  .svc { padding: 14px 12px; }
  .svc h3 { font-size: clamp(14px, 3.6vw, 18px); }
  .svc p { font-size: 11px; }
  .svc ul li { font-size: 10px; }
  .svc__numerals { font-size: 100px; bottom: -12px; right: -4px; }
}
@media (max-width: 360px) {
  .services__grid { grid-template-columns: 1fr; gap: 14px; }
  .svc { padding: 22px; }
  .svc h3 { font-size: clamp(20px, 6vw, 26px); }
  .svc p { font-size: 14px; }
  .svc ul li { font-size: 13px; padding-left: 18px; }
  .svc__numerals { font-size: 200px; }
}

.svc {
  position: relative;
  padding: clamp(28px, 3vw, 44px);
  background: var(--paper);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 14px;
  transition: transform .5s var(--easing), box-shadow .5s var(--easing), border-color .3s var(--easing);
  overflow: hidden;
  min-height: 460px;
}
.svc--a { transform: translateY(28px); }
.svc--c { transform: translateY(56px); }
@media (max-width: 880px) {
  .svc--a { transform: translateY(14px); }
  .svc--c { transform: translateY(28px); }
}
@media (max-width: 360px) {
  .svc--a, .svc--c { transform: none; }
}

/* massive numerals behind */
.svc__numerals {
  position: absolute;
  bottom: -40px; right: -10px;
  font-family: var(--serif);
  font-size: 280px;
  font-style: italic;
  color: rgba(196, 92, 46, 0.06);
  line-height: 0.8;
  pointer-events: none;
  user-select: none;
  z-index: 0;
  font-weight: 400;
}
.svc--featured .svc__numerals {
  color: rgba(232, 165, 125, 0.10);
}
.svc > *:not(.svc__numerals) { position: relative; z-index: 1; }

.svc::before {
  content: "";
  position: absolute; inset: 0;
  border-radius: var(--radius);
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 0%), rgba(196, 92, 46, 0.10), transparent 60%);
  opacity: 0;
  transition: opacity .4s var(--easing);
  pointer-events: none;
  z-index: 0;
}
.svc:hover {
  transform: translateY(-6px);
  box-shadow: 0 36px 70px -32px rgba(30, 26, 23, 0.28);
  border-color: var(--ink);
}
.svc--a:hover { transform: translateY(22px); box-shadow: 0 36px 70px -32px rgba(30, 26, 23, 0.28); }
.svc--c:hover { transform: translateY(50px); box-shadow: 0 36px 70px -32px rgba(30, 26, 23, 0.28); }
.svc:hover::before { opacity: 1; }

.svc--featured {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
  box-shadow:
    0 30px 60px -28px rgba(30, 26, 23, 0.45),
    0 0 0 1px rgba(196, 92, 46, 0.18) inset,
    0 0 80px -20px rgba(196, 92, 46, 0.45);
  transform: translateY(-12px);
}
.svc--featured:hover {
  transform: translateY(-18px);
  box-shadow:
    0 50px 90px -36px rgba(30, 26, 23, 0.55),
    0 0 0 1px rgba(196, 92, 46, 0.28) inset,
    0 0 120px -20px rgba(196, 92, 46, 0.55);
}
@media (max-width: 880px) {
  .svc--featured { transform: translateY(-6px); }
  .svc--featured:hover { transform: translateY(-10px); }
}
@media (max-width: 360px) {
  .svc--featured { transform: none; }
  .svc--featured:hover { transform: translateY(-6px); }
}
.svc--featured::before {
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 0%), rgba(196, 92, 46, 0.42), transparent 60%);
}

.svc__num {
  font-family: var(--serif);
  font-size: 28px;
  color: var(--accent);
  line-height: 1;
  font-style: italic;
}
.svc h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(24px, 2vw, 30px);
  line-height: 1.1;
  margin: 0;
  letter-spacing: -0.01em;
}
.svc p {
  margin: 0;
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-2);
}
.svc--featured p { color: rgba(255, 252, 248, 0.78); }
.svc ul {
  list-style: none; padding: 0; margin: 8px 0 0;
  display: flex; flex-direction: column; gap: 10px;
  border-top: 1px solid var(--line);
  padding-top: 18px;
}
.svc--featured ul { border-color: rgba(255, 252, 248, 0.14); }
.svc ul li {
  position: relative;
  padding-left: 18px;
  font-size: 14px;
  color: var(--ink-2);
}
.svc--featured ul li { color: rgba(255, 252, 248, 0.78); }
.svc ul li::before {
  content: "";
  position: absolute; left: 0; top: 0.55em;
  width: 8px; height: 1px;
  background: var(--accent);
}
.svc__link {
  margin-top: auto;
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 14px; font-weight: 500;
  color: var(--accent);
  border-bottom: 1px solid transparent;
  align-self: flex-start;
  padding: 8px 0 4px;
  min-height: 44px;
  transition: gap .3s var(--easing), border-color .3s var(--easing);
}
.svc__link span { transition: transform .3s var(--easing); }
.svc__link:hover { border-bottom-color: var(--accent); gap: 12px; }
.svc--featured .svc__link { color: var(--paper); }
.svc--featured .svc__link:hover { border-bottom-color: var(--paper); }

.svc__badge {
  position: absolute; top: 24px; right: 24px;
  font-family: var(--mono); font-size: 11px;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--accent-2);
  padding: 5px 10px;
  border: 1px solid var(--accent);
  border-radius: 999px;
  z-index: 2;
}

/* ========================================
   GALLERY — proper bento (mix tall/wide/square)
   ======================================== */
.gallery {
  padding: clamp(60px, 8vw, 100px) 0 clamp(80px, 10vw, 140px);
}
.gallery__grid {
  max-width: var(--maxw); margin: 0 auto;
  padding: 0 var(--pad);
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: minmax(120px, auto);
  gap: 16px;
}
.gallery__item {
  margin: 0;
  position: relative;
  border-radius: var(--radius-s);
  overflow: hidden;
  background: var(--bg-2);
}
.gallery__item--hero    { grid-column: span 7; grid-row: span 2; aspect-ratio: 4 / 3; }
.gallery__item--tall    { grid-column: span 5; grid-row: span 2; aspect-ratio: 3 / 4; }
.gallery__item--wide    { grid-column: span 7; aspect-ratio: 16 / 9; }
.gallery__item--square  { grid-column: span 5; aspect-ratio: 1 / 1; }
.gallery__item--cadence { grid-column: span 12; aspect-ratio: 16 / 5; min-height: 260px; }

.gallery__item img {
  width: 100%; height: 100%; object-fit: cover; object-position: center center;
  image-rendering: -webkit-optimize-contrast;
  transform: scale(1.02);
  transition: transform .9s var(--easing-strong), filter .6s var(--easing);
  filter: contrast(1.02) saturate(1.05);
}
.gallery__item:hover img { transform: scale(1.06); filter: contrast(1.05) saturate(1.1); }

/* === gallery CSS-only plates (replace duplicated images) === */
.gallery__item--plate,
.gallery__item--mesh {
  background: var(--bg-2);
}
.plate {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; justify-content: center; align-items: flex-start;
  padding: clamp(24px, 4vw, 48px);
  gap: 14px;
  background:
    radial-gradient(circle at 15% 20%, rgba(196, 92, 46, 0.14), transparent 55%),
    radial-gradient(circle at 90% 90%, rgba(232, 165, 125, 0.10), transparent 50%),
    linear-gradient(135deg, var(--ink) 0%, #2A2521 100%);
  color: var(--paper);
  overflow: hidden;
}
.plate::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,252,248,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,252,248,0.04) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
  mask-image: radial-gradient(circle at 50% 50%, #000 30%, transparent 80%);
}
.plate__eyebrow {
  font-family: var(--mono);
  font-size: 11px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--accent-2);
  position: relative; z-index: 1;
}
.plate__big {
  font-family: var(--serif);
  font-size: clamp(72px, 12vw, 160px);
  line-height: 0.9;
  letter-spacing: -0.04em;
  font-weight: 400;
  color: var(--paper);
  position: relative; z-index: 1;
  display: inline-flex; align-items: flex-start; gap: 6px;
}
.plate__unit {
  font-size: 0.28em;
  font-family: var(--mono);
  letter-spacing: .1em;
  color: var(--accent-2);
  margin-top: 0.4em;
  text-transform: lowercase;
}
.plate__sub {
  font-family: var(--mono);
  font-size: 12px; letter-spacing: .1em;
  color: rgba(255, 252, 248, 0.7);
  position: relative; z-index: 1;
}
.plate__rule {
  width: 48px; height: 1px;
  background: var(--accent);
  position: relative; z-index: 1;
}
.plate__foot {
  font-family: var(--mono);
  font-size: 11px; letter-spacing: .14em; text-transform: uppercase;
  color: rgba(255, 252, 248, 0.55);
  position: relative; z-index: 1;
}

.mesh-tile {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; justify-content: center; align-items: center;
  padding: 24px;
  gap: 8px;
  text-align: center;
  overflow: hidden;
}
.mesh-tile--cycle {
  background:
    radial-gradient(circle at 30% 20%, rgba(196, 92, 46, 0.55), transparent 55%),
    radial-gradient(circle at 80% 90%, rgba(232, 165, 125, 0.45), transparent 60%),
    linear-gradient(135deg, #F4ECE2 0%, #EADFD0 100%);
}
.mesh-tile--years {
  background:
    radial-gradient(circle at 80% 25%, rgba(74, 92, 76, 0.32), transparent 55%),
    radial-gradient(circle at 20% 85%, rgba(196, 92, 46, 0.22), transparent 55%),
    linear-gradient(135deg, #F1E8DC 0%, #E5D8C4 100%);
}
.mesh-tile__label {
  font-family: var(--mono);
  font-size: 11px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--ink-2);
}
.mesh-tile__num {
  font-family: var(--serif);
  font-size: clamp(72px, 14vw, 132px);
  line-height: 0.85;
  letter-spacing: -0.04em;
  color: var(--ink);
  font-weight: 400;
  font-style: italic;
}
.mesh-tile__sub {
  font-family: var(--mono);
  font-size: 11px; letter-spacing: .1em; text-transform: uppercase;
  color: var(--muted);
}
.gallery__item figcaption {
  position: absolute; left: 14px; bottom: 14px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--paper);
  background: rgba(30, 26, 23, 0.72);
  padding: 6px 10px;
  border-radius: 4px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .4s var(--easing), transform .4s var(--easing);
  backdrop-filter: blur(6px);
}
.gallery__item:hover figcaption { opacity: 1; transform: translateY(0); }

@media (max-width: 880px) {
  .gallery__grid { grid-template-columns: repeat(6, 1fr); grid-auto-rows: minmax(80px, auto); gap: 10px; }
  .gallery__item--hero    { grid-column: span 4; grid-row: span 2; aspect-ratio: 4 / 3; }
  .gallery__item--tall    { grid-column: span 2; grid-row: span 2; aspect-ratio: 1 / 2; }
  .gallery__item--wide    { grid-column: span 4; aspect-ratio: 4 / 3; }
  .gallery__item--square  { grid-column: span 2; aspect-ratio: 1 / 1; }
  .gallery__item--cadence { grid-column: span 6; aspect-ratio: 16 / 7; min-height: 220px; }
}
@media (max-width: 540px) {
  .gallery__grid { gap: 8px; }
  .gallery__item--cadence { aspect-ratio: 16 / 9; min-height: 180px; }
}
@media (max-width: 360px) {
  .gallery__grid { grid-template-columns: 1fr; }
  .gallery__item--hero,
  .gallery__item--tall,
  .gallery__item--wide,
  .gallery__item--square,
  .gallery__item--cadence { grid-column: 1; grid-row: auto; aspect-ratio: 4 / 5; min-height: 0; }
  .gallery__item--cadence { aspect-ratio: 16 / 10; min-height: 220px; }
}

/* ========================================
   WEEKLY CADENCE TILE — editorial calendar
   ======================================== */
.cadence {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, var(--paper) 0%, var(--bg-2) 100%);
  padding: clamp(20px, 2.4vw, 32px) clamp(20px, 3vw, 40px);
  display: flex; flex-direction: column; gap: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-s);
}
.cadence__head {
  display: flex; justify-content: space-between; align-items: baseline;
  gap: 16px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 14px;
}
.cadence__eyebrow {
  font-family: var(--mono);
  font-size: 11px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--accent);
}
.cadence__week {
  font-family: var(--mono);
  font-size: 10px; letter-spacing: .12em; text-transform: uppercase;
  color: var(--muted);
}
.cadence__days {
  list-style: none; margin: 0; padding: 0;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 8px;
  flex: 1;
}
.cadence__day {
  display: flex; flex-direction: column;
  gap: 6px;
  padding: 12px 10px 14px;
  border-radius: 6px;
  background: rgba(255, 252, 248, 0.55);
  border: 1px solid var(--line);
  position: relative;
  transition: transform .35s var(--easing), border-color .35s var(--easing), background .35s var(--easing);
}
.cadence__day:hover {
  transform: translateY(-2px);
  border-color: var(--ink-2);
}
.cadence__day--strength {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--paper);
}
.cadence__day--strength:hover {
  border-color: var(--accent);
  background: #2A2521;
}
.cadence__day--accent {
  background: var(--accent);
  border-color: var(--accent);
  box-shadow: 0 12px 28px -16px rgba(196,92,46,0.55);
}
.cadence__dow {
  font-family: var(--mono);
  font-size: 10px; letter-spacing: .12em; text-transform: uppercase;
  color: var(--muted);
}
.cadence__day--strength .cadence__dow { color: rgba(255,252,248,0.55); }
.cadence__day--accent .cadence__dow { color: rgba(255,252,248,0.78); }

.cadence__icon {
  display: block;
  width: 28px; height: 14px;
  margin: 4px 0 2px;
  color: var(--ink-2);
}
.cadence__day--strength .cadence__icon { color: var(--accent-2); }
.cadence__day--accent .cadence__icon { color: var(--paper); }
.cadence__icon svg {
  width: 100%; height: 100%; display: block;
  fill: currentColor;
}
.cadence__icon svg circle[fill="none"],
.cadence__icon svg path[fill="none"] { stroke: currentColor; }

.cadence__label {
  font-family: var(--serif);
  font-size: 15px;
  line-height: 1.1;
  color: var(--ink);
  font-weight: 400;
  letter-spacing: -0.01em;
}
.cadence__day--strength .cadence__label,
.cadence__day--accent .cadence__label { color: var(--paper); }

.cadence__detail {
  font-family: var(--mono);
  font-size: 10px; letter-spacing: .08em; text-transform: uppercase;
  color: var(--muted);
}
.cadence__day--strength .cadence__detail { color: rgba(255,252,248,0.5); }
.cadence__day--accent .cadence__detail { color: rgba(255,252,248,0.85); }

.cadence__legend {
  display: flex; gap: 24px; flex-wrap: wrap;
  border-top: 1px solid var(--line);
  padding-top: 12px;
  font-family: var(--mono);
  font-size: 11px; letter-spacing: .06em;
  color: var(--ink-2);
}
.cadence__legend span { display: inline-flex; align-items: center; gap: 8px; }
.cadence__chip {
  display: inline-block;
  width: 10px; height: 10px;
  border-radius: 2px;
}
.cadence__chip--strength { background: var(--ink); }
.cadence__chip--rest { background: var(--paper); border: 1px solid var(--line); }

@media (max-width: 880px) {
  .cadence { position: relative; }
  .cadence__days { gap: 4px; }
  .cadence__day { padding: 8px 5px 10px; }
  .cadence__label { font-size: 11px; }
  .cadence__detail { display: none; }
  .cadence__icon { width: 20px; height: 10px; }
}
@media (max-width: 540px) {
  .cadence { padding: 16px 14px; gap: 12px; }
  .cadence__days { gap: 3px; }
  .cadence__day { padding: 6px 3px 8px; gap: 3px; border-radius: 4px; }
  .cadence__label { font-size: 9px; line-height: 1.05; }
  .cadence__dow { font-size: 8px; letter-spacing: .06em; }
  .cadence__head { flex-direction: column; align-items: flex-start; gap: 4px; }
  .cadence__week { font-size: 9px; }
  .cadence__icon { width: 14px; height: 7px; margin: 2px 0 1px; }
  .cadence__legend { gap: 12px; font-size: 9px; padding-top: 10px; }
}
@media (max-width: 420px) {
  .cadence__days { gap: 2px; }
  .cadence__day { padding: 5px 2px 6px; }
  .cadence__label { font-size: 8px; }
  .cadence__dow { font-size: 7px; letter-spacing: .04em; }
  .cadence__icon { width: 11px; height: 6px; }
}
@media (max-width: 360px) {
  .cadence__days { grid-template-columns: repeat(4, 1fr); gap: 5px; }
  .cadence__day { padding: 8px 4px 10px; }
  .cadence__label { font-size: 11px; }
  .cadence__dow { font-size: 9px; letter-spacing: .08em; }
  .cadence__icon { width: 18px; height: 9px; }
}

/* ========================================
   LOCATE — Lemon Gym Akropole map
   ======================================== */
.locate {
  padding: clamp(80px, 10vw, 140px) 0 clamp(40px, 6vw, 80px);
  position: relative;
}
.locate__inner {
  max-width: var(--maxw); margin: 0 auto;
  padding: 0 var(--pad);
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(32px, 4vw, 64px);
  align-items: center;
}
@media (max-width: 880px) {
  .locate__inner { grid-template-columns: 0.85fr 1.15fr; gap: clamp(20px, 3vw, 40px); }
  .locate__lead { font-size: clamp(13px, 2vw, 16px); margin: 14px 0 18px; }
}
@media (max-width: 540px) {
  .locate__inner { grid-template-columns: 1fr; gap: clamp(24px, 5vw, 36px); }
  .locate__lead { font-size: 16px; max-width: 38ch; }
}

.locate__copy { position: relative; z-index: 1; }
.locate__lead {
  font-family: var(--serif);
  font-size: clamp(18px, 1.5vw, 22px);
  line-height: 1.4;
  color: var(--ink-2);
  margin: 24px 0 28px;
  max-width: 38ch;
}
.locate__facts {
  margin: 0 0 28px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px 24px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.locate__facts > div { display: flex; flex-direction: column; gap: 4px; }
.locate__facts dt {
  font-family: var(--mono); font-size: 11px;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--muted);
}
.locate__facts dd { margin: 0; font-size: 14px; color: var(--ink); font-weight: 500; }
.locate__cta {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--mono);
  font-size: 12px; letter-spacing: .1em; text-transform: uppercase;
  color: var(--accent);
  border-bottom: 1px solid var(--accent);
  padding: 6px 0 4px;
  transition: gap .3s var(--easing), color .3s var(--easing);
}
.locate__cta:hover { gap: 14px; color: var(--accent-d); }

/* MAP */
.locate__map {
  margin: 0;
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--bg-2);
  box-shadow: 0 28px 70px -32px rgba(30, 26, 23, 0.28);
}
.map {
  width: 100%; height: auto;
  display: block;
  aspect-ratio: 5 / 4;
}
.map__pulse {
  transform-origin: 314px 217px;
  animation: mapPulse 2.6s ease-out infinite;
}
@keyframes mapPulse {
  0%   { transform: scale(0.4); opacity: 0.85; }
  80%  { transform: scale(2.6); opacity: 0;    }
  100% { transform: scale(2.6); opacity: 0;    }
}
.map__pin {
  transform-origin: 314px 220px;
  animation: pinDrop 0.9s var(--easing-strong) 0.3s both;
}
@keyframes pinDrop {
  0%   { transform: translateY(-30px); opacity: 0; }
  60%  { transform: translateY(4px);   opacity: 1; }
  100% { transform: translateY(0);     opacity: 1; }
}
.map__callout {
  opacity: 0;
  animation: calloutIn 0.7s var(--easing) 1.0s forwards;
}
@keyframes calloutIn {
  to { opacity: 1; }
}
.locate__cap {
  position: absolute;
  left: 16px; right: 16px; bottom: 14px;
  display: flex; justify-content: space-between;
  font-family: var(--mono);
  font-size: 10px; letter-spacing: .12em; text-transform: uppercase;
  color: var(--ink-2);
  padding: 8px 12px;
  background: rgba(255, 252, 248, 0.85);
  backdrop-filter: blur(4px);
  border-radius: 4px;
  border: 1px solid var(--line);
}
@media (max-width: 540px) {
  .locate__facts { gap: 14px 16px; }
  .locate__facts dt { font-size: 9px; letter-spacing: .1em; }
  .locate__facts dd { font-size: 12px; }
  .locate__cap { font-size: 9px; flex-direction: column; gap: 2px; }
}
@media (max-width: 360px) {
  .locate__facts { grid-template-columns: 1fr; gap: 14px; }
}

/* ========================================
   PROMO STRIP — MyProtein
   ======================================== */
.promo {
  background: var(--ink);
  color: var(--paper);
  position: relative;
  overflow: hidden;
}
.promo::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(800px circle at 100% 50%, rgba(196, 92, 46, 0.28), transparent 60%),
    radial-gradient(600px circle at 0% 100%, rgba(232, 165, 125, 0.14), transparent 60%);
  pointer-events: none;
}
.promo__inner {
  position: relative;
  max-width: var(--maxw); margin: 0 auto;
  padding: clamp(50px, 6vw, 80px) var(--pad);
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(24px, 4vw, 60px);
  align-items: center;
}
@media (max-width: 880px) {
  .promo__inner { grid-template-columns: 1.3fr 1fr; gap: clamp(16px, 3vw, 32px); }
  .promo__code { position: relative; top: auto; padding: 18px 20px; }
  .promo__copy-row { gap: 12px; }
  .promo__copy-pill { min-height: 44px; padding: 10px 14px; font-size: 13px; }
}
@media (max-width: 540px) {
  .promo__inner { grid-template-columns: 1fr; gap: 22px; }
  .promo__code { width: 100%; padding: 24px 28px; }
}

.promo__left h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1.1;
  margin: 0 0 14px;
  letter-spacing: -0.02em;
}
.promo__left p {
  margin: 0;
  color: rgba(255, 252, 248, 0.72);
  max-width: 50ch;
  font-size: 15px;
  line-height: 1.6;
}

.promo__code {
  display: flex; flex-direction: column; gap: 10px;
  align-items: flex-start;
  background: rgba(255, 252, 248, 0.04);
  border: 1px solid rgba(255, 252, 248, 0.14);
  padding: 24px 28px;
  border-radius: var(--radius);
  width: fit-content;
  position: sticky;
  top: 100px;
  backdrop-filter: blur(6px);
}
.promo__label {
  font-family: var(--mono); font-size: 11px;
  letter-spacing: .14em; text-transform: uppercase;
  color: rgba(255, 252, 248, 0.55);
}
.promo__copy-row {
  background: transparent;
  border: 0;
  padding: 0;
  margin: 0;
  display: flex; align-items: center; gap: 18px;
  position: relative;
  cursor: pointer;
  overflow: hidden;
  border-radius: 12px;
  padding: 4px 6px;
  margin-left: -6px;
}
.promo__value {
  font-family: var(--serif);
  font-size: clamp(34px, 3.5vw, 56px);
  letter-spacing: 0.04em;
  color: var(--paper);
  line-height: 1;
  font-weight: 400;
}
.promo__copy-pill {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--accent); color: var(--paper);
  padding: 9px 14px;
  border-radius: 999px;
  font-size: 12px; font-weight: 500; letter-spacing: .04em;
  font-family: var(--mono);
  text-transform: uppercase;
  transition: background .3s var(--easing), transform .3s var(--easing);
  min-height: 36px;
}
.promo__copy-row:hover .promo__copy-pill {
  background: var(--accent-d);
  transform: translateY(-1px);
}
.promo__copy-row.is-copied .promo__copy-pill { background: #2C7D5C; }
.promo__hint {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255, 252, 248, 0.42);
}

/* ripple */
.promo__ripple {
  position: absolute;
  width: 0; height: 0;
  border-radius: 50%;
  background: rgba(232, 165, 125, 0.42);
  pointer-events: none;
  transform: translate(-50%, -50%);
}
.promo__copy-row.is-clicked .promo__ripple {
  animation: ripple 0.7s var(--easing) forwards;
}
@keyframes ripple {
  0%   { width: 0; height: 0; opacity: 0.7; }
  100% { width: 600px; height: 600px; opacity: 0; }
}

/* ========================================
   APPLY / FORM
   ======================================== */
.apply {
  padding: clamp(80px, 10vw, 140px) 0;
}
.apply__grid {
  max-width: var(--maxw); margin: 0 auto;
  padding: 0 var(--pad);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: start;
}
@media (max-width: 880px) { .apply__grid { gap: clamp(20px, 3.5vw, 40px); } }
@media (max-width: 540px) { .apply__grid { grid-template-columns: 1fr; gap: 32px; } }

.apply__left .lead {
  font-family: var(--serif);
  font-size: clamp(20px, 1.8vw, 26px);
  line-height: 1.35;
  color: var(--ink);
  margin: 24px 0 28px;
  max-width: 36ch;
}
.apply__list {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 14px;
  border-top: 1px solid var(--line);
  padding-top: 24px;
}
.apply__list li {
  position: relative;
  padding-left: 28px;
  font-size: 15px;
  color: var(--ink-2);
}
.apply__list li::before {
  content: "";
  position: absolute; left: 0; top: 0.65em;
  width: 16px; height: 1px;
  background: var(--accent);
}

.apply__form {
  background: var(--paper);
  padding: clamp(28px, 3vw, 40px);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 18px;
  box-shadow: 0 24px 60px -32px rgba(30, 26, 23, 0.18);
}
.field { display: flex; flex-direction: column; gap: 6px; }
.field label {
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: .01em;
}
.field input, .field textarea {
  font-family: inherit;
  font-size: 15px;
  padding: 14px 14px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-s);
  color: var(--ink);
  min-height: 48px;
  transition: border-color .25s var(--easing), background .25s var(--easing);
  resize: vertical;
}
.field textarea { min-height: 100px; }
.field input:focus, .field textarea:focus {
  outline: none;
  border-color: var(--ink);
  background: var(--paper);
}
.field--check label {
  display: flex; gap: 12px; align-items: flex-start;
  font-size: 13px;
  color: var(--ink-2);
  font-weight: 400;
  line-height: 1.5;
  cursor: pointer;
  min-height: 44px;
  padding: 4px 0;
}
.field--check input { margin-top: 3px; flex-shrink: 0; accent-color: var(--accent); width: 18px; height: 18px; }
.field--check a { color: var(--accent); border-bottom: 1px solid var(--accent); }
.field__err {
  font-size: 12px;
  color: var(--accent-d);
  display: none;
  font-family: var(--mono);
  letter-spacing: .04em;
}
.field.is-error input,
.field.is-error textarea {
  border-color: var(--accent-d);
  background: rgba(196, 92, 46, 0.04);
}
.field.is-error .field__err { display: block; }

.apply__success {
  margin: 4px 0 0;
  padding: 14px 16px;
  background: rgba(44, 125, 92, 0.1);
  border: 1px solid rgba(44, 125, 92, 0.3);
  border-radius: var(--radius-s);
  color: #1F5A41;
  font-size: 14px;
}

/* ========================================
   FOOTER — warm cream gradient → ink
   ======================================== */
.foot {
  background:
    linear-gradient(180deg, var(--bg-2) 0%, var(--ink) 28%, var(--ink) 100%);
  color: var(--paper);
  padding: clamp(60px, 8vw, 100px) 0 28px;
  position: relative;
}
.foot::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(700px circle at 12% 80%, rgba(196, 92, 46, 0.16), transparent 55%),
    radial-gradient(500px circle at 88% 40%, rgba(232, 165, 125, 0.10), transparent 55%);
  pointer-events: none;
}
.foot__grid {
  position: relative;
  max-width: var(--maxw); margin: 0 auto;
  padding: 0 var(--pad);
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: start;
  margin-bottom: clamp(36px, 5vw, 60px);
  margin-top: clamp(40px, 6vw, 72px);
}
@media (max-width: 880px) {
  .foot__grid { grid-template-columns: 1.3fr 1fr 1fr 1fr; gap: clamp(16px, 3vw, 32px); }
  .foot__col h4 { font-size: 11px; }
  .foot__col li { font-size: 12px; }
}
@media (max-width: 520px) {
  .foot__grid { grid-template-columns: 1fr 1fr; }
  .foot__brand { grid-column: span 2; }
}
@media (max-width: 360px) {
  .foot__grid { grid-template-columns: 1fr; }
  .foot__brand { grid-column: span 1; }
}

.foot__mark {
  display: inline-block;
  font-family: var(--serif);
  font-size: clamp(36px, 4vw, 56px);
  letter-spacing: -0.02em;
  color: var(--paper);
  line-height: 1;
  margin-bottom: 16px;
}
.foot__brand p {
  color: rgba(255, 252, 248, 0.6);
  font-size: 14px;
  max-width: 38ch;
  line-height: 1.6;
  margin: 0;
}

.foot__col h4 {
  margin: 0 0 14px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent-2);
  font-weight: 500;
}
.foot__col ul {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 10px;
  font-size: 14px;
  color: rgba(255, 252, 248, 0.78);
}
.foot__col a {
  position: relative;
  transition: color .25s var(--easing);
  display: inline-block;
  padding: 4px 0;
  min-height: 28px;
}
.foot__col a:hover { color: var(--accent-2); }
.foot__imprint ul li { color: rgba(255, 252, 248, 0.5); font-size: 13px; }

.foot__base {
  position: relative;
  max-width: var(--maxw); margin: 0 auto;
  padding: 24px var(--pad) 0;
  border-top: 1px solid rgba(255, 252, 248, 0.12);
  display: flex; justify-content: space-between;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255, 252, 248, 0.45);
}
@media (max-width: 520px) {
  .foot__base { flex-direction: column; gap: 8px; }
}

/* ========================================
   SCROLL REVEAL UTILITY
   ======================================== */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .9s var(--easing), transform .9s var(--easing);
}
[data-reveal].is-revealed {
  opacity: 1;
  transform: translateY(0);
}
[data-reveal][data-delay="1"] { transition-delay: .08s; }
[data-reveal][data-delay="2"] { transition-delay: .16s; }
[data-reveal][data-delay="3"] { transition-delay: .24s; }
[data-reveal][data-delay="4"] { transition-delay: .32s; }

/* ========================================
   REDUCED MOTION
   ======================================== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .hero__display,
  .hero__masthead,
  .hero__block,
  .hero__ornament,
  .hero__sub,
  .hero__meta,
  .hero__actions,
  .hero__halo,
  .map__callout { opacity: 1; transform: none; filter: none; }
  .hero__photo-mask::after { display: none; }
  .hero__photo-mask img { transform: none; }
  .ticker__track { animation: none; }
  .hero__mesh { display: none; }
  .map__pulse { animation: none; opacity: 0.4; }
  .map__pin { transform: none; }
}

/* ========================================
   FOCUS STATES (a11y)
   ======================================== */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ========================================
   MOBILE HERO OVERHAUL — ≤640px
   Magazine cover composition stacks vertically:
   masthead → photo → display → lede → CTAs.
   Keep the editorial scale, don't shrink to "mobile boring".
   ======================================== */
@media (max-width: 640px) {
  .hero {
    padding: clamp(20px, 5vw, 36px) var(--pad) clamp(36px, 6vw, 56px);
  }

  /* Eyebrow strip above title */
  .hero__meta {
    margin-bottom: clamp(14px, 3vw, 22px);
    font-size: 11px;
    gap: 10px;
    letter-spacing: .03em;
  }
  .hero__divider { width: 16px; }

  /* Cover stacks: photo first, then headline */
  .hero__cover {
    grid-template-columns: 1fr;
    gap: clamp(14px, 3vw, 24px);
    margin: clamp(6px, 2vw, 14px) 0 clamp(20px, 4vw, 36px);
  }
  /* Photo first on mobile to anchor the page */
  .hero__photo {
    order: 1;
  }
  .hero__display {
    order: 2;
  }
  .hero__photo-mask {
    aspect-ratio: 4 / 5;
    max-height: 64vh;
    margin: 0 auto;
  }
  .hero__photo-mask img {
    object-position: center 18%;
  }
  .hero__photo-cap {
    font-size: 10px;
    margin-top: 10px;
  }

  /* Bottom strip stacks */
  .hero__bottom {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-bottom: clamp(20px, 4vw, 32px);
  }
  .hero__sub {
    font-size: 16px;
    line-height: 1.55;
    max-width: 40ch;
    margin: 0;
  }

  /* CTAs — full-width stacked, 48px min */
  .hero__actions {
    flex-direction: column;
    gap: 10px;
    align-items: stretch;
  }
  .hero__actions .btn {
    width: 100%;
    justify-content: center;
    min-height: 52px;
    padding: 16px 22px;
  }

  /* Tighten halo on mobile so it doesn't bleed */
  .hero__halo {
    inset: -4% -2% -2% -2%;
    filter: blur(28px);
    opacity: 0.7;
  }

  /* Mesh — pull in so it doesn't overflow */
  .hero__mesh {
    inset: 0;
    filter: blur(50px) saturate(105%);
    opacity: 0.55;
  }

  /* Section titles scale */
  .section-title { font-size: clamp(30px, 9vw, 44px); }
  .section-title--tight { font-size: clamp(26px, 8vw, 38px); }

  /* Promo card resilience */
  .promo__copy-row { gap: 10px; flex-wrap: wrap; }
  .promo__value { font-size: clamp(24px, 8vw, 36px); }
}

/* Stats — keep 4-col but allow 2-col fallback ≤420px so 4 don't crush */
@media (max-width: 420px) {
  .hero__stats { grid-template-columns: repeat(2, 1fr); gap: 22px 14px; }
  .hero__stats li:nth-child(2)::after { display: none; }
  .hero__stats strong { font-size: clamp(22px, 6.5vw, 30px); }
  .hero__stats span { font-size: 10px; letter-spacing: .02em; }
}

@media (max-width: 360px) {
  .quote-mark { font-size: 110px; top: -4px; left: 14px; opacity: 0.16; }
  .project__pull blockquote .pull-emph { font-size: clamp(24px, 7vw, 32px); }
}

/* ========================================
   GLOBAL OVERFLOW GUARDS — prevent any
   element from exceeding viewport at ≤640px
   ======================================== */
@media (max-width: 640px) {
  .ticker { overflow-x: clip; }
  .promo, .promo__inner { overflow-x: clip; }
  .about, .services, .gallery, .locate, .apply, .project, .foot { overflow-x: clip; }
  .hero__cover, .hero__bottom, .hero__photo { max-width: 100%; min-width: 0; }
  .ticker__item { font-size: clamp(16px, 5vw, 22px); }
  .plate__big { font-size: clamp(56px, 18vw, 96px); }
  .map { max-width: 100%; }
  .foot__mark { font-size: clamp(30px, 9vw, 44px); }
}
