/* ── FONTS ────────────────────────────────────────────────── */
@font-face {
  font-family: "Helotypo";
  src: url("../fonts/Helotypo.woff2") format("woff2"),
    url("../fonts/Helotypo.ttf") format("truetype"),
    url("../fonts/Helotypo.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Cotton";
  src: url("../fonts/Cotton.woff2") format("woff2"),
    url("../fonts/Cotton.woff") format("woff"),
    url("../fonts/Cotton.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Borcha";
  src: url("../fonts/Borcha.woff2") format("woff2"),
    url("../fonts/Borcha.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "ModularBlackSans";
  src: url("../fonts/ModularBlackSans-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "ModularBlackSans";
  src: url("../fonts/ModularBlackSans-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "ModularBlackSans";
  src: url("../fonts/ModularBlackSans-ExtraBold.ttf") format("truetype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Editorial Today";
  src: url("../fonts/EditorialToday-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Editorial Today";
  src: url("../fonts/EditorialToday-Italic.otf") format("opentype");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Editorial Today";
  src: url("../fonts/EditorialToday-SemiBold.otf") format("opentype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Futura";
  src: url("../fonts/Futura.ttc") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Seatren";
  src: url("../fonts/Seatren.woff2") format("woff2"),
    url("../fonts/Seatren.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Seatren";
  src: url("../fonts/Seatren Italic.woff2") format("woff2"),
    url("../fonts/Seatren Italic.woff") format("woff");
  font-weight: normal;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Sofia Pro";
  src: url("../fonts/Sofia Pro Semi Bold Az.otf") format("opentype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Sofia Pro";
  src: url("../fonts/Sofia Pro Semi Bold Italic Az.otf") format("opentype");
  font-weight: 600;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Satoshi";
  src: url("../fonts/Satoshi-Medium.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Satoshi";
  src: url("../fonts/Satoshi-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Satoshi";
  src: url("../fonts/Satoshi-Italic.otf") format("opentype");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Satoshi";
  src: url("../fonts/Satoshi-MediumItalic.otf") format("opentype");
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Satoshi";
  src: url("../fonts/Satoshi-Bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Satoshi";
  src: url("../fonts/Satoshi-BoldItalic.otf") format("opentype");
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}

/* ── RESET & TOKENS ───────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --color-primary: #1c1917;
  --color-secondary: #44403c;
  --color-accent: #a16207;
  --color-background: #fafaf9;
  --color-foreground: #0c0a09;
  --color-border: #d6d3d1;
  --font-heading: "Satoshi", sans-serif;
  --font-body: "Satoshi", sans-serif;

  /* ── Shared body-text tokens ── */
  --body-font: "Satoshi", sans-serif;
  --body-ink: #2c2a25;
  --body-muted: #5e5a50;
}

html {
  overflow-y: scroll;
  scrollbar-width: none;
  scroll-behavior: smooth;
}
html::-webkit-scrollbar {
  display: none;
}
html,
body {
  height: 100%;
  font-family: var(--body-font);
  font-size: 22px;
  line-height: 1.55;
  font-weight: 500;
  color: var(--body-ink);
  -webkit-font-smoothing: antialiased;
  background-attachment: fixed;
}

/* ── Body-text utility classes ───────────────────────────────── */
.body-text {
  font-size: 22px;
  line-height: 1.55;
  color: var(--body-ink);
}

.body-text-sm {
  font-size: 18px;
  line-height: 1.6;
  color: var(--body-muted);
  margin-top: 10px;
}

#nav-placeholder {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
}
.site-nav {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 20px 48px;
  background: transparent;
  transition: background 300ms ease, box-shadow 300ms ease;
}
.site-nav--scrolled {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: #ebe6dc;
}
.site-nav--scrolled .site-nav__logo,
.site-nav--scrolled .site-nav__links a {
  color: #1d1d1de0;
}
.site-nav--scrolled .site-nav__links a:hover {
  color: #2c2a257e;
}
.site-nav__logo {
  font-family: "Borcha", Georgia, serif;
  font-size: 22px;
  font-weight: 550;
  letter-spacing: 0.1em;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.9);
}

/* Links list */
.site-nav__links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.site-nav__links a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.8);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: color 0.2s;
}

.site-nav__links a:hover {
  color: #fff;
}

/* Active page indicator */
.site-nav__actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.site-nav__instagram {
  display: flex;
  align-items: center;
  opacity: 0.8;
  transition: opacity 200ms ease;
  text-decoration: none;
}
.site-nav__instagram:hover {
  opacity: 1;
}
.site-nav__instagram svg {
  display: block;
  flex-shrink: 0;
}

.site-nav--scrolled .site-nav__ig-handle {
  color: #5e5a50;
}
.site-nav__links a.is-active {
  color: #8b6f47;
  padding-bottom: 4px;
}

.hero {
  position: relative;
  width: 100%;
  height: 100dvh;
  min-height: 560px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
  z-index: 0;
}

.hero__title-wrap {
  position: absolute;
  top: 22%;
  left: 50.5%;
  transform: translate(-50%, -50%);
  z-index: 10;
  width: 100%;
  text-align: center;
}

.hero__links {
  position: relative;
  z-index: 10;
  display: flex;
  justify-content: center;
  gap: 2rem;
  padding: 32px 40px;
}

.hero__links a {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 200ms ease;
}

.hero__links a:hover {
  color: #fff;
}

.hero__title {
  font-family: "Borcha", Georgia, serif;
  font-weight: 550;
  font-size: clamp(140px, 16vw, 290px);
  letter-spacing: 0.08em;
  color: #f6f0f0;
  text-transform: uppercase;
  display: block;
  white-space: nowrap;
  text-shadow: 0 4px 64px rgba(0, 0, 0, 0.12), 0 1px 10px rgba(0, 0, 0, 0.06),
    0 0 12px rgba(255, 255, 255, 0.444);
}

/* ── ABOUT SECTION (D · Mixed) ────────────────────────────── */
.about {
  --ab-bg: #ebe6dc;
  --ab-card: #f4efe5;
  --ab-ink: #2c2a25;
  --ab-ink-soft: #5e5a50;
  --ab-sage: #7a8a6e;
  --ab-sage-dk: #56664c;
  --ab-clay: #6a1900;
  --ab-rule: #bfb6a0;
  --ab-serif: "Satoshi", sans-serif;
  --ab-sans: "Satoshi", sans-serif;

  background: var(--ab-bg);
  color: var(--ab-ink);
  font-family: var(--ab-sans);
  padding: 150px 0px 50px;
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 3.2s cubic-bezier(0.12, 0.8, 0.2, 1),
    transform 3.2s cubic-bezier(0.12, 0.8, 0.2, 1);
  will-change: opacity, transform;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal[data-delay="80"] {
  transition-delay: 300ms;
}
.reveal[data-delay="120"] {
  transition-delay: 500ms;
}
.reveal[data-delay="160"] {
  transition-delay: 700ms;
}
.reveal[data-delay="100"] {
  transition-delay: 400ms;
}
.reveal[data-delay="200"] {
  transition-delay: 900ms;
}
.reveal[data-delay="240"] {
  transition-delay: 1100ms;
}
.reveal[data-delay="320"] {
  transition-delay: 1400ms;
}

.about__intro {
  max-width: 1580px;
  margin: 0 auto 168px;
  padding: 56px;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: stretch;
}

.about__manifesto {
  display: flex;
  align-items: center;
  padding: 48px 56px;
}

.about__manifesto p {
  font-family: "Satoshi", sans-serif;
  font-size: clamp(28px, 2.8vw, 50px);
  line-height: 1.2;
  font-weight: 450;
  letter-spacing: -0.01em;
  color: var(--ab-ink);
}
.about__manifesto p em {
  color: var(--ab-clay);
}

/* 4-tile collage grid: col 1 spans 2 rows tall, col 2 is short/tall/short */
.about__collage {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-auto-rows: 160px;
  gap: 14px;
}
.about__collage-tall {
  grid-row: span 2;
}
.about__collage-tall--offset {
  grid-column: 2;
  grid-row: 2 / span 2;
}
.about__collage-short {
  grid-column: 2;
  grid-row: 1;
}
.about__collage-short--last {
  grid-column: 1;
  grid-row: 3;
}
.about__collage img,
.about__collage-tall img,
.about__collage-short img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 14px;
  display: block;
}

.about__rule {
  max-width: 1180px;
  margin: 0 auto 96px;
  padding: 0 56px;
  height: 1px;
  background: var(--ab-rule);
}

.about__hero {
  max-width: 860px;
  margin: 0 auto 72px;
  padding: 0 56px;
  text-align: center;
}
.about__eyebrow {
  font-size: 20px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ab-sage-dk);
  margin-bottom: 28px;
}
.about__headline {
  font-family: "Satoshi", sans-serif;
  font-size: clamp(44px, 6.5vw, 84px);
  font-weight: 500;
  line-height: 1.09;
  letter-spacing: -0.02em;
  color: var(--ab-ink);
}
.about__headline em {
  font-style: italic;
  color: var(--ab-clay);
}

.about__imagery {
  max-width: 900px;
  margin: 0 auto 100px;
  padding: 0 56px;
  display: flex;
  gap: 30px;
}
.about__img-luna,
.about__img-pack {
  flex: 1;
}
.about__img-luna img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 999px 999px 16px 16px;
  display: block;
}
.about__img-pack img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

/* ── How it happened (with photos) ── */
.hih {
  /* Slightly warmer/darker bg to set the scrapbook zone apart */
  background: #ece5d5;
  background-image: radial-gradient(
      circle at 15% 10%,
      rgba(255, 255, 255, 0.45),
      transparent 50%
    ),
    radial-gradient(
      circle at 85% 85%,
      rgba(122, 138, 110, 0.13),
      transparent 50%
    );
  margin: 0 0 0;
  padding: 80px 56px 88px;
}
.hih__head {
  text-align: center;
  margin-bottom: 64px;
}
.hih__title {
  font-family: var(--ab-serif);
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 500;
  letter-spacing: -0.01em;
  margin: 0;
  color: var(--ab-ink);
  padding-top: 100px;
}

/* Body: positions the SVG thread overlay */
.hih__body {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
}

/* SVG weaving thread — absolute overlay, stretches to fill all rows */
.hih__thread {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: visible;
}

.hih__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  position: relative;
  margin-bottom: 24px;
  min-height: 320px;
}

/* Step number badge — italic clay serif pill floating on the thread */
.hih__badge {
  position: absolute;
  left: 50%;
  top: 30px;
  transform: translateX(-50%);
  font-family: var(--ab-serif);
  font-style: italic;
  font-size: 20px;
  color: var(--ab-clay);
  background: #ece5d5;
  padding: 4px 12px;
  border-radius: 999px;
  border: 1px solid var(--ab-rule);
  z-index: 3;
  white-space: nowrap;
}

/* Column wrappers — flex containers that push content to the correct edge.
   reveal goes on the inner wrapper so translate and rotate never share an element. */
.hih__col {
  display: flex;
  align-items: center;
}
.hih__col--start {
  justify-content: flex-start;
}
.hih__col--end {
  justify-content: flex-end;
}

/* Note cards */
.hih__note {
  width: 360px;
  padding: 20px 22px;
  transform: rotate(var(--rot, 0deg));
  box-shadow: 0 8px 20px rgba(60, 55, 40, 0.12);
  border-radius: 12px;
}
.hih__note--paper {
  background: #faf5e9;
}
.hih__note--clay {
  background: #f9f5f6;
}
.hih__note--sage {
  background: #d3e0dc;
}
.hih__note h4 {
  font-family: var(--ab-serif);
  font-size: 24px;
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin: 0 0 10px;
}
.hih__note p {
  margin: 0;
}

/* Polaroids */
.hih__polaroid {
  position: relative;
  background: #faf5e9;
  padding: 12px 12px 44px;
  box-shadow: 0 14px 30px rgba(60, 55, 40, 0.15),
    0 2px 4px rgba(60, 55, 40, 0.08);
  transform: rotate(var(--rot, 0deg));
  width: 240px;
  flex-shrink: 0;
}
.hih__polaroid--taped::before {
  content: "";
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%) rotate(-3deg);
  width: 60px;
  height: 20px;
  background: rgba(214, 196, 142, 0.55);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}
/* Photo area inside the polaroid — wraps <img> + label badge */
.hih__photo {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 5;
}
/* Striped texture overlay (matches the design's repeating-linear-gradient) */
.hih__photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    45deg,
    rgba(255, 255, 255, 0.06) 0 2px,
    transparent 2px 9px
  );
  pointer-events: none;
}
.hih__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* Tinted gradient overlay per tone (visible when no photo loads) */
.hih__photo--sage {
  background: linear-gradient(160deg, #cbd0bd 0%, #aeb89a 60%, #7a8a6e 100%);
}
.hih__photo--clay {
  background: linear-gradient(160deg, #e3cdb6 0%, #cfae8e 60%, #b85c3c 100%);
}
.hih__photo--cream {
  background: linear-gradient(160deg, #ece4d2 0%, #dccfb4 60%, #a89674 100%);
}
.hih__photo--moss {
  background: linear-gradient(160deg, #a4b59a 0%, #7d9077 60%, #4d5e48 100%);
}

.hih__caption {
  font-family: "Satoshi", sans-serif;
  font-size: 20px;
  color: var(--ab-ink);
  text-align: center;
  margin-top: 10px;
  line-height: 1.1;
}

/* ── Team ── */
.about__team {
  max-width: 1100px;
  margin: 0 auto;
  padding: 60px 56px 0;
}
.about__team-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 40px;
  gap: 16px;
}
.about__team-title {
  font-family: var(--ab-serif);
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 500;
  letter-spacing: -0.01em;
}
.about__team-tag {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ab-sage-dk);
  white-space: nowrap;
}
.about__team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}
/* Portrait placeholders (until real photos are added) */
.about__member-img {
  aspect-ratio: 4 / 5;
  border-radius: 999px 999px 12px 12px;
  position: relative;
  overflow: hidden;
  margin-bottom: 0;
}
.about__member-img--cream {
  background: linear-gradient(160deg, #ece4d2 0%, #dccfb4 60%, #a89674 100%);
}
.about__member-img--clay {
  background: linear-gradient(160deg, #e3cdb6 0%, #cfae8e 60%, #b85c3c 100%);
}
.about__member-img--sage {
  background: linear-gradient(160deg, #cbd0bd 0%, #aeb89a 60%, #7a8a6e 100%);
}
.about__member-img::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    45deg,
    rgba(255, 255, 255, 0.06) 0 2px,
    transparent 2px 8px
  );
}
.about__member-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.about__member-img:has(img) {
  background: none;
}
.about__member-img:has(img)::before {
  display: none;
}
.about__ph-label {
  position: absolute;
  bottom: 14px;
  left: 16px;
  font-family: var(--ab-sans);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.92);
  background: rgba(0, 0, 0, 0.18);
  padding: 4px 10px;
  border-radius: 999px;
}
.about__member-name-row {
  margin-top: 16px;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
}
.about__member-name-row h4 {
  font-family: var(--ab-serif);
  font-size: 36px;
  font-weight: 500;
  letter-spacing: -0.01em;
}
.about__member-num {
  font-family: var(--ab-serif);
  font-style: italic;
  font-size: 28px;
  color: var(--ab-clay);
}
.about__member-role {
  font-size: 28px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ab-sage-dk);
  margin-top: 4px;
}

/* ── Services ── */
.services {
  padding: 88px 56px;
  max-width: 1180px;
  margin: 0 auto;
}
.services__head {
  text-align: center;
  margin-bottom: 56px;
}
.services__title {
  font-family: var(--ab-serif);
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 500;
  letter-spacing: -0.01em;
  margin: 0;
}
.services__title em {
  font-style: italic;
  color: var(--ab-clay);
}
.services__lede {
  font-size: 15px;
  color: var(--body-muted);
  margin: 14px auto 0;
  max-width: 520px;
  line-height: 1.6;
}
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 980px;
  margin: 0 auto;
}
.services__card {
  background: #f4efe5;
  border-radius: 20px;
  padding: 14px;
  box-shadow: 0 8px 22px rgba(60, 55, 40, 0.06);
}
.services__scene {
  border-radius: 14px;
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  overflow: hidden;
}
.services__scene--sage {
  background: #cfd6c4;
}
.services__scene--moss {
  background: #4d5e48;
}
.services__scene--clay {
  background: #e8c9b1;
}
.services__info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 8px 6px;
}
.services__name {
  font-family: var(--ab-serif);
  font-size: 24px;
  line-height: 1;
  letter-spacing: -0.01em;
}
.services__tag {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ab-sage-dark);
  margin-top: 4px;
}
.services__arrow-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #e3d7c2;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
a.services__card--link {
  text-decoration: none;
  color: inherit;
  display: block;
  cursor: pointer;
  transition: transform 200ms ease, box-shadow 200ms ease;
}
a.services__card--link:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(60, 55, 40, 0.12);
}

/* ── Responsive ── */
@media (max-width: 960px) {
  .about__intro {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about__team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .hih {
    padding: 64px 32px;
  }
  .hih__note {
    width: 280px;
  }
}
@media (max-width: 760px) {
  .services__grid {
    grid-template-columns: 1fr;
    max-width: 420px;
  }
  .services {
    padding: 64px 24px;
  }
}

@media (max-width: 640px) {
  .about__intro {
    padding: 0 24px;
    margin-bottom: 64px;
  }
  .about__rule {
    padding: 0 24px;
    margin-bottom: 64px;
  }
  .about__collage {
    grid-auto-rows: 120px;
  }
  .about__hero {
    padding: 0 24px;
  }
  .about__imagery {
    padding: 0 24px;
    height: auto;
    position: static;
    margin-bottom: 64px;
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  .about__img-luna,
  .about__img-pack {
    position: static;
    width: 100%;
  }
  .about__img-luna img {
    aspect-ratio: 4 / 3;
    border-radius: 16px;
  }
  .about__team {
    padding: 48px 24px 0;
  }
  .about__team-header {
    flex-direction: column;
    gap: 4px;
  }
  .about__team-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  /* Stack note + polaroid vertically on mobile */
  .hih {
    padding: 56px 24px;
  }
  .hih__thread {
    display: none;
  }
  .hih__row {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 40px;
    min-height: unset;
  }
  .hih__badge {
    position: static;
    transform: none;
    display: inline-block;
    margin-bottom: 4px;
  }
  .hih__col--end {
    justify-content: flex-start;
  }
  .hih__note {
    width: 100%;
    transform: none;
  }
  .hih__polaroid {
    width: 200px;
    transform: none;
  }
}

.hero__scroll {
  position: absolute;
  bottom: 36px;
  left: 95%;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.7);
  background-color: #9055031a;
  padding: 10px;
  border-radius: 12px;
}
.hero__scroll-label {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  text-orientation: mixed;
}
.hero__scroll-arrow {
  display: block;
  opacity: 0.8;
  width: 32px;
  height: 52px;
}
.hero__scroll-dot {
  animation: scroll-dot 1.8s ease-in-out infinite;
}
@keyframes scroll-dot {
  0% {
    transform: translateY(0);
    opacity: 1;
  }
  60% {
    transform: translateY(5px);
    opacity: 0.3;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

@media (max-width: 640px) {
  .hero__scroll {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    transition-duration: 0ms !important;
  }
}

/* ── Reviews · B · Side-by-side strip ──────────────────────── */
/* Values taken verbatim from reviews.jsx ReviewsMarquee defaults */
.reviews {
  background: #ebe6dc;
  padding: 88px 0;
  overflow: hidden;
}

/* Header: flex, alignItems baseline, justifyContent space-between */
.reviews__header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  max-width: 1300px;
  margin: 0 auto 40px;
  padding: 0 56px;
}

.reviews__eyebrow {
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #56664c; /* rv.sageDark */
  margin-bottom: 12px; /* marginBottom: 12 */
}

.reviews__title {
  font-family: var(--ab-serif);
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 500;
  letter-spacing: -0.01em;
  margin: 0;
  color: #2c2a25;
}

.reviews__title em {
  font-style: italic;
  color: #690000; /* rv.clay */
}

/* Right: textAlign right */
.reviews__header-right {
  text-align: right;
  flex-shrink: 0;
}

/* Stars row: display flex, gap 2px, justify-content flex-end */
.reviews__stars {
  display: flex;
  gap: 2px;
  justify-content: flex-end;
}

/* Rating: fontSize 12, color rv.sageDark, marginTop 6, letterSpacing 0.08em */
.reviews__rating {
  font-size: 12px;
  color: #56664c;
  margin-top: 6px;
  letter-spacing: 0.08em;
}

/* Strip: display flex, gap cardSpacing(20), padding 0 56px, overflowX auto */
.reviews__strip {
  display: flex;
  gap: 20px;
  padding: 0 56px;
  overflow-x: auto;
  scrollbar-width: none;
}
.reviews__strip::-webkit-scrollbar {
  display: none;
}

.reviews__card {
  min-width: 360px;
  max-width: 360px;
  flex-shrink: 0;
  background: #f4efe5;
  border-radius: 12px;
  padding: 26px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-sizing: border-box;
  box-shadow: 0 4px 14px rgba(60, 55, 40, 0.08);
}

/* card-top: flex, alignItems center, justifyContent space-between */
.reviews__card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Card stars: display flex, gap 2px */
.reviews__card-stars {
  display: flex;
  gap: 2px;
}

.reviews__quotemark {
  font-family: "Satoshi", sans-serif;
  font-style: italic;
  font-size: 28px;
  color: var(--ab-clay);
  line-height: 0.6;
  user-select: none;
}

.reviews__quote {
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
  color: var(--body-muted);
}

/* Meta: flex, gap 12, paddingTop 14, borderTop 1px solid rv.rule, marginTop auto */
.reviews__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 14px;
  border-top: 1px solid #cdc4b0; /* rv.rule */
  margin-top: auto;
}

/* Avatar: 36×36 gradient circle (no text) */
.reviews__avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  flex-shrink: 0;
}

/* Gradient palettes from Avatar component in source */
.reviews__avatar--sage {
  background: linear-gradient(135deg, #cbd0bd, #7a8a6e);
}
.reviews__avatar--clay {
  background: linear-gradient(135deg, #e3cdb6, #b85c3c);
}
.reviews__avatar--cream {
  background: linear-gradient(135deg, #ece4d2, #a89674);
}
.reviews__avatar--moss {
  background: linear-gradient(135deg, #a4b59a, #4d5e48);
}

/* Name: fontWeight c.nameWeight(600), fontSize 13 */
.reviews__name {
  font-weight: 500;
  font-size: 13px;
  color: #2c2a25;
}

/* Breed: fontSize 11, color rv.sageDark, letterSpacing 0.06em, textTransform uppercase */
.reviews__breed {
  font-size: 11px;
  color: #56664c;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* Date: fontSize 11, color rv.inkSoft, marginTop 4 */
.reviews__date {
  font-size: 11px;
  color: #5e5a50;
  margin-top: 4px;
}

/* ── Why owners trust us — Option C (TrustPhotos) ───────────── */
.trust {
  background: #ebe6dc;
  padding: 96px 56px;
}

.trust__inner {
  max-width: 1180px;
  margin: 0 auto;
}

.trust__header {
  max-width: 760px;
  margin: 0 0 56px;
  text-align: left;
}

.trust__eyebrow {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #56664c;
  margin-bottom: 16px;
}

.trust__title {
  font-family: "Satoshi", sans-serif;
  font-size: clamp(36px, 4vw, 52px);
  margin: 0;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: #2c2a25;
}

.trust__title em {
  color: #b85c3c;
  font-style: italic;
}

.trust__lede {
  font-family: var(--body-font);
  font-size: 15px;
  line-height: 1.6;
  color: var(--body-muted);
  margin: 18px 0 0;
  max-width: 560px;
}

.trust__grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 56px;
  align-items: start;
}

.trust__featured {
  background: #f4efe5;
  border-radius: 24px;
  padding: 26px;
  box-shadow: 0 18px 44px rgba(60, 55, 40, 0.1);
}

.trust__photo-cluster {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 12px;
  margin-bottom: 22px;
}

.trust__photo-stack {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 12px;
}

.trust__ph {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
}

.trust__ph img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.trust__ph__1 {
  margin-top: 80px;
}

.trust__ph--clay {
  background: linear-gradient(155deg, #e3cdb6 0%, #cfae8e 58%, #b85c3c 100%);
  aspect-ratio: 5 / 4;
}

.trust__ph--sage {
  background: linear-gradient(155deg, #cbd0bd 0%, #aeb89a 58%, #7a8a6e 100%);
  aspect-ratio: 1 / 1;
}

.trust__ph--moss {
  background: linear-gradient(155deg, #a4b59a 0%, #7d9077 58%, #4d5e48 100%);
  aspect-ratio: 1 / 1;
}

.trust__ph-stripe {
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    45deg,
    rgba(255, 255, 255, 0.06) 0 2px,
    transparent 2px 9px
  );
}

.trust__ph-label {
  position: absolute;
  bottom: 12px;
  left: 12px;
  font-family: "DM Mono", ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.94);
  background: rgba(40, 38, 30, 0.28);
  padding: 4px 9px;
  border-radius: 999px;
  backdrop-filter: blur(2px);
}

.trust__tag-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  background: #e8c9b1;
  color: #b85c3c;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
  font-weight: 500;
}

.trust__tag-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #b85c3c;
  flex-shrink: 0;
}

.trust__feat-title {
  font-family: "Satoshi", sans-serif;
  font-size: 34px;
  margin: 0 0 12px;
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: #2c2a25;
}

.trust__feat-num {
  font-style: italic;
  color: #b85c3c;
  margin-right: 12px;
}

.trust__feat-body {
  font-family: var(--body-font);
  font-size: 15px;
  line-height: 1.6;
  color: var(--body-muted);
  margin: 0;
  max-width: 520px;
}

.trust__list {
  display: flex;
  flex-direction: column;
}

.trust__item {
  padding: 26px 0;
}

.trust__item + .trust__item {
  border-top: 1px solid #cdc4b0;
}

.trust__item-num {
  font-family: "Satoshi", sans-serif;
  font-style: italic;
  font-size: 38px;
  color: #b85c3c;
  line-height: 1;
}

.trust__item-tag {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #56664c;
  margin-bottom: 8px;
}

.trust__item-title {
  font-family: "Satoshi", sans-serif;
  font-size: 24px;
  margin: 0 0 9px;
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: #2c2a25;
}

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

@media (max-width: 640px) {
  .trust {
    padding: 72px 24px;
  }
}

/* ── Footer ────────────────────────────────────────────────── */
.site-footer {
  width: 100%;
  line-height: 0;
}
.site-footer__img {
  width: 100%;
  display: block;
  object-fit: cover;
}
