/* ============================================================
   Product Partners — Modern Minimal Redesign
   Design System
============================================================ */

:root {
  /* Color — Apple-inspired, all-black text (no blue) */
  --bg: #FFFFFF;
  --bg-elevated: #F5F5F7;  /* Apple's signature light gray panel */
  --ink: #1D1D1F;          /* Apple's near-black */
  --ink-2: #1D1D1F;        /* All text black — no grey */
  --ink-3: #1D1D1F;        /* All text black — no grey */
  --line: #D2D2D7;         /* Apple line color */
  --line-strong: #B0B0B5;
  --accent: #1D1D1F;       /* Black (matches ink) — no blue */
  --accent-ink: #000000;   /* Hover / pressed black */

  /* Type — SF Pro on Apple devices via system stack; Inter fallback elsewhere */
  --font-sans: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "SF Pro", "Inter", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --font-display: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "SF Pro", "Inter", "Helvetica Neue", Helvetica, Arial, sans-serif;

  /* Spacing */
  --container: 1280px;
  --gutter: clamp(20px, 4vw, 48px);
  --section-y: clamp(18px, 2.5vw, 36px);

  /* Radius — Apple uses generously rounded shapes */
  --r-sm: 6px;
  --r-md: 12px;
  --r-lg: 18px;
  --r-xl: 24px;
}

/* ============================================================
   Reset
============================================================ */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.47;
  letter-spacing: -0.022em;
  font-feature-settings: "ss01", "cv11";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
html { overflow-x: hidden; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
input, textarea { font: inherit; color: inherit; }

::selection { background: var(--ink); color: var(--bg); }

/* ============================================================
   Layout
============================================================ */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

.section {
  padding-top: var(--section-y);
  padding-bottom: var(--section-y);
}

.section-tight { padding-top: clamp(24px, 3vw, 40px); padding-bottom: clamp(24px, 3vw, 40px); }

/* Apple-style eyebrow: small grey label, no underline */
.eyebrow {
  font-size: 17px;
  letter-spacing: -0.022em;
  text-transform: none;
  color: var(--ink-2);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 400;
}
.eyebrow::before { content: none; }

/* ============================================================
   Typography
============================================================ */
h1, h2, h3, h4 { margin: 0; font-weight: 500; letter-spacing: -0.02em; line-height: 1.05; }

/* Apple display: SemiBold, very tight tracking, larger and centered for hero */
.display {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: clamp(40px, 5.6vw, 80px);
  line-height: 1.05;
  letter-spacing: -0.04em;
}
.display em {
  font-style: normal;
  font-weight: 600;
  color: var(--accent);
}

h2.section-title {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: clamp(28px, 4vw, 56px);
  line-height: 1.07;
  letter-spacing: -0.035em;
  max-width: none;
}
h2.section-title em { font-style: normal; font-weight: 600; color: var(--accent); }

h3 { font-size: clamp(20px, 1.8vw, 24px); line-height: 1.25; letter-spacing: -0.01em; }

p { margin: 0 0 1em; color: var(--ink); }
p.lede { font-size: clamp(18px, 1.6vw, 22px); line-height: 1.5; color: var(--ink-2); max-width: 56ch; }
.muted { color: var(--ink-2); }

/* ============================================================
   Buttons
============================================================ */
/* Apple-style buttons: black pill (primary) + black text link with chevron (ghost) */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 17px;
  font-weight: 400;
  letter-spacing: -0.022em;
  transition: background .2s ease, color .2s ease, opacity .2s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--ink);
  color: #FFFFFF;
  padding: 12px 22px;
  border-radius: 999px;
}
.btn-primary:hover { background: #000000; }

/* Ghost = Apple-style inline black text link with chevron */
.btn-ghost {
  background: transparent;
  color: var(--ink);
  padding: 12px 0;
  border-radius: 0;
}
.btn-ghost:hover { opacity: 0.6; }
.btn-ghost::after {
  content: "›";
  font-size: 1.4em;
  line-height: 1;
  margin-left: 2px;
  transition: transform .2s ease;
  display: inline-block;
}
.btn-ghost:hover::after { transform: translateX(3px); }

.btn-arrow::after {
  content: "›";
  font-size: 1.4em;
  line-height: 1;
  display: inline-block;
  margin-left: 2px;
  transition: transform .2s ease;
}
.btn-arrow:hover::after { transform: translateX(3px); }

/* ============================================================
   Header
============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s ease;
}
.site-header.scrolled { border-bottom-color: var(--line); }
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 18px;
  padding-bottom: 18px;
}
.nav-logo { display: inline-flex; align-items: center; gap: 10px; }
.nav-logo img { height: 28px; width: auto; }
.wordmark {
  font-family: var(--font-sans);
  font-weight: 600;
  letter-spacing: -0.025em;
}
.nav-logo .wordmark {
  font-family: var(--font-sans);
  font-size: 26px;
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1;
  color: var(--ink);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-links a {
  font-size: 16px;
  color: var(--ink);
  font-weight: 400;
  letter-spacing: -0.01em;
  transition: opacity .2s ease;
  position: relative;
}
.nav-links a:hover { opacity: 0.7; }
.nav-cta { display: inline-flex; align-items: center; gap: 18px; }

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  align-items: center;
  justify-content: center;
}
.menu-toggle span {
  width: 16px;
  height: 1.5px;
  background: var(--ink);
  position: relative;
  display: block;
}
.menu-toggle span::before,
.menu-toggle span::after {
  content: ""; position: absolute; left: 0; right: 0; height: 1.5px; background: var(--ink);
}
.menu-toggle span::before { top: -5px; }
.menu-toggle span::after { top: 5px; }

/* Mobile menu hidden by default at all sizes; only shown when .open on mobile */
.mobile-menu { display: none; }

@media (max-width: 880px) {
  .nav-links { display: none; }
  .nav-cta .btn { display: none; }
  .menu-toggle { display: inline-flex; }

  .mobile-menu {
    position: fixed;
    inset: 0;
    background: var(--bg);
    z-index: 100;
    padding: 28px var(--gutter);
    flex-direction: column;
  }
  .mobile-menu.open { display: flex; }
  .mobile-menu-head {
    display: flex; justify-content: space-between; align-items: center;
  }
  .mobile-menu-links {
    display: flex; flex-direction: column; gap: 4px; margin-top: 48px;
  }
  .mobile-menu-links a {
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 40px;
    line-height: 1.15;
    letter-spacing: -0.03em;
    color: var(--ink);
    padding: 6px 0;
    border-bottom: 1px solid var(--line);
  }
  .mobile-menu-foot { margin-top: auto; padding-bottom: 24px; }
}

/* ============================================================
   Top product slideshow (full-width marquee of product squares)
============================================================ */
.top-slideshow {
  padding-top: clamp(20px, 3vw, 36px);
  padding-bottom: clamp(20px, 3vw, 36px);
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  width: 100%;
  max-width: 100vw;
}
.slideshow-track {
  display: flex;
  gap: clamp(16px, 2vw, 28px);
  width: max-content;
  animation: slideshow 50s linear infinite;
}
.top-slideshow:hover .slideshow-track { animation-play-state: paused; }
.slideshow-track img {
  height: clamp(140px, 18vw, 240px);
  width: clamp(140px, 18vw, 240px);
  object-fit: cover;
  border-radius: var(--r-md);
  background: #FFFFFF;
  flex: 0 0 auto;
}
@keyframes slideshow {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============================================================
   Hero — Apple-style centered, large headline + subhead + link CTAs
============================================================ */
.hero {
  padding-top: clamp(36px, 4.5vw, 64px);
  padding-bottom: clamp(28px, 3.5vw, 52px);
  text-align: center;
  position: relative;
}
.hero-copy { max-width: 980px; margin: 0 auto; }
.hero h1 { margin-top: 14px; }
.hero-sub {
  margin: 18px auto 0;
  max-width: 60ch;
  font-size: clamp(19px, 1.6vw, 24px);
  font-weight: 400;
  line-height: 1.38;
  letter-spacing: -0.022em;
  color: var(--ink);
}
.hero-tagline {
  margin: 16px 0 0;
  font-size: 17px;
  letter-spacing: -0.022em;
  color: var(--ink-2);
  text-transform: none;
}
.hero-actions {
  margin-top: 24px;
  display: flex; gap: 32px; flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
/* center the eyebrow in the hero (with its left underline) */
.hero .eyebrow { justify-content: center; }

/* Lifestyle row (3 images) */
.lifestyle-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.lifestyle-row figure {
  margin: 0;
  border-radius: var(--r-md);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--bg-elevated);
}
.lifestyle-row figure img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s ease;
}
.lifestyle-row figure:hover img { transform: scale(1.03); }

@media (max-width: 720px) {
  .lifestyle-row { grid-template-columns: 1fr; }
}

/* ============================================================
   Stats
============================================================ */
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.stat {
  padding: clamp(40px, 5vw, 64px) clamp(20px, 3vw, 40px);
  border-right: 1px solid var(--line);
}
.stat:last-child { border-right: 0; }
.stat-num {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: clamp(40px, 5.6vw, 72px);
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--ink);
  text-align: center;
}
.stat-num em { font-style: normal; font-weight: 600; color: var(--accent); }
.stat-label { text-align: center; margin-left: auto; margin-right: auto; }
.stat-label {
  margin-top: 16px;
  font-size: 14px;
  color: var(--ink-2);
  max-width: 28ch;
}
@media (max-width: 760px) {
  .stats { grid-template-columns: 1fr; }
  .stat { border-right: 0; border-bottom: 1px solid var(--line); }
  .stat:last-child { border-bottom: 0; }
}

/* ============================================================
   About
============================================================ */
/* Apple-style centered about */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
}
.about-text { position: sticky; top: 100px; }
.about-text .section-title { margin-top: 18px; }
.about-body { margin-top: 24px; max-width: 56ch; }
.about-body p { color: var(--ink-2); font-size: 19px; line-height: 1.5; margin-bottom: 16px; letter-spacing: -0.022em; }

/* Apple-style centered "Who we are" block */
#about > .container > div:first-child { text-align: center; margin-left: auto; margin-right: auto; max-width: 760px !important; }
#about > .container > div:first-child .eyebrow { justify-content: center; }
#about > .container > div:first-child h2.section-title { margin-left: auto; margin-right: auto; }
#about .about-body { margin-left: auto; margin-right: auto; }
#about .about-body p { font-size: clamp(18px, 1.6vw, 21px); line-height: 1.45; color: var(--ink); }

.about-mosaic {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr 1fr;
  gap: 16px;
  aspect-ratio: 4/5;
}
.about-mosaic figure { margin: 0; border-radius: var(--r-lg); overflow: hidden; }
.about-mosaic figure:nth-child(1) { grid-column: 1 / 2; grid-row: 1 / 3; }
.about-mosaic figure:nth-child(2) { grid-column: 2 / 3; grid-row: 1 / 2; }
.about-mosaic figure:nth-child(3) { grid-column: 2 / 3; grid-row: 2 / 4; }
.about-mosaic figure:nth-child(4) { grid-column: 1 / 2; grid-row: 3 / 4; }
.about-mosaic img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s ease; }
.about-mosaic figure:hover img { transform: scale(1.04); }

@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-text { position: static; }
}

/* ============================================================
   Services
============================================================ */
.services-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  margin-bottom: clamp(20px, 3vw, 32px);
}
.services-head .eyebrow { justify-content: center; }
.services-head h2.section-title { margin: 0 auto; }
.services-head p { max-width: 52ch; color: var(--ink-2); margin: 0; font-size: 19px; }

.services-list {
  border-top: 1px solid var(--line);
}
.service {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(24px, 4vw, 64px);
  padding: clamp(32px, 5vw, 56px) 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
  transition: padding .3s ease;
}
.service:hover { padding-left: 8px; }
.service-num {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 20px;
  letter-spacing: -0.01em;
  color: var(--ink-3);
}
.service-title h3 {
  font-family: var(--font-sans);
  font-size: clamp(24px, 2.4vw, 32px);
  font-weight: 500;
  letter-spacing: -0.015em;
  line-height: 1.15;
}
.service-title .service-tags {
  margin-top: 16px;
  display: flex; flex-wrap: wrap; gap: 6px;
}
.service-tags span {
  font-size: 12px;
  padding: 5px 10px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  color: var(--ink-2);
}
.service-body {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 32px;
  align-items: start;
}
.service-body p { color: var(--ink-2); margin: 0; }
.service-body figure {
  margin: 0;
  aspect-ratio: 4/3;
  border-radius: var(--r-md);
  overflow: hidden;
}
.service-body figure img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.service:hover .service-body figure img { transform: scale(1.05); }

@media (max-width: 880px) {
  .service { grid-template-columns: 1fr; gap: 18px; }
  .service-body { grid-template-columns: 1fr; }
}

/* ============================================================
   Clients
============================================================ */
.clients-section { background: var(--bg-elevated); }
.clients-section .container { padding-top: clamp(32px, 4.5vw, 60px); padding-bottom: clamp(32px, 4.5vw, 60px); }
.clients-head { margin-bottom: clamp(20px, 3vw, 32px); text-align: center; }
.clients-head .eyebrow { justify-content: center; }
.clients-head h2.section-title { margin-left: auto; margin-right: auto; }
.clients-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.clients-grid > div {
  background: #FFFFFF;
  aspect-ratio: 3/2;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  transition: background .25s ease;
  min-width: 0;
}
.clients-grid > div:hover { background: #FAFAF8; }
.clients-grid img {
  max-height: 42px;
  max-width: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}

@media (max-width: 900px) { .clients-grid { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 560px) {
  .clients-grid { grid-template-columns: repeat(3, 1fr); }
  .clients-grid > div { padding: 12px; }
  .clients-grid img { max-height: 32px; }
}

/* ============================================================
   Portfolio
============================================================ */
.portfolio-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  margin-bottom: clamp(20px, 3vw, 32px);
}
.portfolio-head .eyebrow { justify-content: center; }
.portfolio-head p { max-width: 52ch; color: var(--ink-2); margin: 0; font-size: 19px; }

/* Portfolio: clean 3 wide x 6 deep grid, original images & order */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.portfolio-grid figure {
  margin: 0;
  border-radius: var(--r-md);
  overflow: hidden;
  position: relative;
  background: var(--bg-elevated);
  aspect-ratio: 4/3;
}
.portfolio-grid figure img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s ease;
}
.portfolio-grid figure:hover img { transform: scale(1.03); }

@media (max-width: 720px) {
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
}

/* ============================================================
   Testimonials
============================================================ */
/* Apple-style light testimonials panel */
.testimonials-section { background: var(--bg-elevated); color: var(--ink); }
.testimonials-section h2.section-title { color: var(--ink); text-align: center; margin-left: auto; margin-right: auto; }
.testimonials-section .section-title em { color: var(--accent); }
.testimonials-section > .container > .reveal:first-child { text-align: center; }
.testimonials-section .eyebrow { justify-content: center; }

.testimonials-grid {
  margin-top: clamp(28px, 4vw, 48px);
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}
.quote {
  background: #FFFFFF;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: clamp(24px, 3vw, 32px);
  display: flex;
  flex-direction: column;
}
.quote q {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: clamp(17px, 1.3vw, 19px);
  line-height: 1.45;
  color: var(--ink);
  quotes: none;
  letter-spacing: -0.02em;
}
.quote q::before, .quote q::after { content: ""; }
.quote .attrib {
  margin-top: auto;
  padding-top: 24px;
  font-size: 13px;
  color: var(--ink-2);
  letter-spacing: 0;
}
.quote .attrib strong { color: var(--ink); font-weight: 600; }

.q-1 { grid-column: span 3; }
.q-2 { grid-column: span 3; }
.q-3 { grid-column: span 2; }
.q-4 { grid-column: span 2; }
.q-5 { grid-column: span 2; }

@media (max-width: 900px) {
  .q-1, .q-2, .q-3, .q-4, .q-5 { grid-column: span 6; }
}

/* ============================================================
   Contact
============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
}
.contact-info .section-title { margin-top: 24px; }
.contact-info p.lede { margin-top: 28px; }
.contact-meta {
  margin-top: 40px;
  border-top: 1px solid var(--line);
  padding-top: 28px;
  display: grid; gap: 20px;
}
.contact-meta-item .label {
  display: block;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 6px;
}
.contact-meta-item a, .contact-meta-item .value {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: clamp(20px, 2vw, 26px);
  color: var(--ink);
  letter-spacing: -0.02em;
}
.contact-meta-item a { transition: opacity .2s ease; }
.contact-meta-item a:hover { opacity: 0.6; }

.form {
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: clamp(28px, 4vw, 48px);
}
.field { margin-bottom: 24px; position: relative; }
.field label {
  display: block;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 10px;
}
.field input, .field textarea {
  width: 100%;
  padding: 14px 0;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line-strong);
  font-size: 17px;
  color: var(--ink);
  outline: none;
  transition: border-color .2s ease;
  font-family: inherit;
  resize: vertical;
}
.field input::placeholder, .field textarea::placeholder { color: var(--ink-3); }
.field input:focus, .field textarea:focus { border-color: var(--ink); }
.field textarea { min-height: 140px; line-height: 1.5; }

.form .form-actions { margin-top: 16px; display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; }
.form .form-actions .note { font-size: 13px; color: var(--ink-3); }

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

/* ============================================================
   Footer
============================================================ */
.site-footer {
  background: var(--bg);
  border-top: 1px solid var(--line);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 32px;
  padding-top: clamp(56px, 7vw, 88px);
  padding-bottom: clamp(40px, 5vw, 56px);
}
.footer-brand { max-width: 32ch; }
.footer-brand p { color: var(--ink-2); margin-top: 18px; font-size: 15px; }
.footer-col h4 {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 18px;
  font-weight: 500;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.footer-col a { color: var(--ink); font-size: 15px; transition: color .2s ease; }
.footer-col a { transition: opacity .2s ease; }
.footer-col a:hover { opacity: 0.6; }

.footer-bar {
  border-top: 1px solid var(--line);
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--ink-2);
}
.footer-bar .legal { display: flex; gap: 20px; flex-wrap: wrap; }

.footer-wordmark {
  display: none; /* Apple doesn't use giant footer wordmarks */
}

@media (max-width: 760px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; }
}

/* ============================================================
   Reveal animation
============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .8s ease, transform .8s ease;
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
  html { scroll-behavior: auto; }
}

/* ============================================================
   Legal pages
============================================================ */
.legal-hero { padding-top: clamp(64px, 9vw, 120px); padding-bottom: clamp(40px, 5vw, 64px); }
.legal-hero h1 {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: clamp(40px, 7vw, 84px);
  line-height: 1.05;
  letter-spacing: -0.035em;
}
.legal-hero .updated { color: var(--ink-3); font-size: 14px; margin-top: 18px; }
.legal-body {
  max-width: 72ch;
  padding-bottom: clamp(80px, 10vw, 140px);
}
.legal-body h2 {
  font-family: var(--font-sans);
  font-size: 24px;
  font-weight: 500;
  margin: 56px 0 16px;
  letter-spacing: -0.01em;
}
.legal-body h3 {
  font-family: var(--font-sans);
  font-size: 18px;
  font-weight: 500;
  margin: 32px 0 12px;
}
.legal-body p { color: var(--ink-2); margin-bottom: 16px; line-height: 1.65; }
.legal-body strong { color: var(--ink); }
