/* ==========================================================================
   Dlords Exports — Design System
   Typography : Halyard Display (Adobe Fonts / Typekit — family "halyard-display")
   Palette    : --red #E73E3A · --ink #111111 · --paper #FFFFFF · --grey #6B6B6B
   ========================================================================== */

:root {
  --red: #E73E3A;
  --red-hover: #EA6A62; /* lightened coral — button hover (matches live) */
  --ink: #111111;
  --paper: #FFFFFF;
  --grey: #6B6B6B;
  --line: #E6E4E1;
  --wash: #F7F6F4;
  --font: "Hanken Grotesk", -apple-system, "Helvetica Neue", Helvetica, Arial, sans-serif;
  /* Squarespace site variables: --sqs-site-max-width:1500px · --sqs-site-gutter:4vw */
  --maxw: 1500px;
  /* 4vw matches Squarespace, but enforce a comfortable minimum gutter on phones */
  --gutter: max(4vw, 30px);
  --container: min(var(--maxw), calc(100% - var(--gutter) * 2));
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--paper);
  /* Fluid body text: ~15px on phones → 18px on desktop (headings/buttons use rem, unaffected) */
  font-size: clamp(15px, 12.3px + 0.63vw, 18px);
  line-height: 1.6;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }

/* Smooth opacity fade-in on page load (like the live site) */
a { color: inherit; text-decoration: none; }
.red { color: var(--red); }
.link-red { color: var(--red); font-weight: 500; border-bottom: 2px solid var(--red); padding-bottom: 2px; }
.link-red:hover { opacity: .75; }
.big-link { font-size: 1.5rem; }

/* ---------- Type scale ---------- */
h1, h2, h3 { font-weight: 700; line-height: 1.1; letter-spacing: -0.01em; }
h1 { font-size: clamp(2.6rem, 6vw, 4.5rem); }
h2 { font-size: clamp(1.9rem, 4vw, 2.8rem); }
h3 { font-size: 1.25rem; }
.eyebrow {
  color: var(--red); text-transform: uppercase; letter-spacing: .14em;
  font-size: .85rem; font-weight: 600; margin-bottom: 1rem;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block; font-weight: 600; font-size: 1rem;
  padding: .85rem 2.1rem; border: 2px solid var(--ink);
  transition: all .2s ease; cursor: pointer; background: none;
  font-family: var(--font);
}
.btn-red { background: var(--red); border-color: var(--red); color: #fff; }
.btn-red:hover { background: var(--red-hover); border-color: var(--red-hover); color: #fff; }
.btn-outline { color: var(--ink); }
.btn-outline:hover { background: var(--ink); color: #fff; }
.btn-nav { border: 1.5px solid var(--red); background: var(--red); color: #fff; padding: .5rem 1.3rem; font-size: .95rem; border-radius: 999px; }
.btn-nav:hover { background: var(--red-hover); border-color: var(--red-hover); color: #fff; }
.btn-red { border-radius: 999px; }
.btn-white { background: #fff; border-color: #fff; color: var(--red); border-radius: 999px; }
.btn-white:hover { background: var(--ink); border-color: var(--ink); color: #fff; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: #fff;
  border-bottom: 1px solid rgba(231,62,58,.35);
  transition: transform .35s ease;
}
/* Hide on scroll down, reveal on scroll up (JS toggles .header-hidden) */
.site-header.header-hidden { transform: translateY(-100%); }
/* Lock page scroll while the mobile menu overlay is open */
body.nav-open { overflow: hidden; }
.header-inner {
  width: var(--container); margin: 0 auto; min-height: 76px; padding: 0;
  display: flex; align-items: center; gap: 2rem;
}
.brand-logo { height: 36px; width: auto; }
.site-nav { flex: 1; display: flex; align-items: center; gap: 2rem; }
.nav-links { display: flex; align-items: center; gap: 2.2rem; margin: 0 auto; }
.nav-actions { display: flex; align-items: center; gap: 1.4rem; }
.nav-link { font-size: 1rem; font-weight: 400; position: relative; }
.nav-link::after {
  content: ""; position: absolute; left: 0; bottom: -4px; height: 2px; width: 0;
  background: var(--red); transition: width .25s ease;
}
.nav-link:hover::after, .nav-link.active::after { width: 100%; }
.nav-social { display: flex; align-items: center; }
.nav-toggle {
  display: none; flex-direction: column; justify-content: center; align-items: center;
  gap: 6px; background: none; border: none; cursor: pointer; padding: 9px 2px;
}
.nav-toggle span { display: block; width: 28px; height: 2px; background: var(--ink); transition: transform .3s ease; transform-origin: center; }
.nav-toggle span:last-child { display: none; } /* two-line hamburger (matches live) */
/* Animate the two lines into an X when the menu is open (gap 6px + 1px line = 3.5px to center) */
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(3.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { transform: translateY(-3.5px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  width: var(--container); margin: 0 auto; padding: 3rem 0 3.5rem;
  min-height: 74vh; display: flex; align-items: center;
}
.hero-inner {
  width: 100%; display: grid; grid-template-columns: 1fr auto; align-items: end; gap: 2rem;
}
.hero-copy { max-width: none; }
.hero-copy h1 {
  font-size: clamp(2.6rem, 6vw, 7rem); font-weight: 300; line-height: 1.05;
  letter-spacing: -0.02em; margin-bottom: 2.2rem; white-space: nowrap;
}
.hero-kicker { font-size: clamp(1.5rem, 2.3vw, 2rem); font-weight: 600; color: var(--red); margin-bottom: 1rem; }
.hero-sub { font-size: clamp(1rem, 0.9rem + 0.6vw, 1.45rem); color: var(--ink); max-width: 620px; line-height: 1.45; font-weight: 400; }
.hero-cta { padding-bottom: .5rem; }
.hero-inner .btn {
  font-size: 1.05rem; min-width: 221px; height: 71px; padding: 0 2rem;
  display: inline-flex; align-items: center; justify-content: center;
}

/* Secondary-page hero (compact header, not full-height) */
.hero-page {
  min-height: auto; display: block; padding: 7rem 0 2.5rem;
}
.hero-page h1 {
  font-size: clamp(2.2rem, 4.6vw, 4.2rem); font-weight: 300; line-height: 1.12;
  letter-spacing: -0.02em; white-space: normal; margin-bottom: 1.2rem; max-width: 18ch;
}
.hero-page .hero-sub { max-width: 760px; }
.hero-page .btn { margin-top: 1.4rem; }

/* ---------- Full-bleed video hero (catalog pages) ---------- */
.hero-video {
  position: relative; width: 100%; min-height: 64vh;
  display: flex; align-items: center; overflow: hidden;
  background: var(--ink);
}
.hero-video-bg {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; z-index: 0;
}
.hero-video::after { /* subtle dark wash for text legibility */
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(90deg, rgba(0,0,0,.35), rgba(0,0,0,.05));
}
.hero-video-inner {
  position: relative; z-index: 2;
  width: var(--container); margin: 0 auto; padding: 2rem 0;
}
.hero-video-inner h1 {
  color: #fff; font-weight: 300; line-height: 1.02; letter-spacing: -0.02em;
  font-size: clamp(2.6rem, 6vw, 6rem);
}

/* Red highlight underline — Squarespace hand-drawn "draw" stroke, revealed left→right */
.underline-hand {
  position: relative; display: inline-block; white-space: nowrap;
}
.underline-hand::after {
  content: ""; position: absolute; left: -1%; right: -1%; bottom: -0.30em;
  width: 102%; height: 0.5em;
  background: no-repeat left center/100% 100%
    url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%2098%20620%2040'%20preserveAspectRatio='none'%3E%3Cpath%20d='M%200,123.75%20c%2075.5,-3.4375%20151,-10.625%20302,-13.75%20c%20151,-3.125%20229.52,0%20302,1.25%20c%2014.496,0.25%20-11.476,3.5625%20-12.08,3.75'%20fill='none'%20stroke='%23E73E3A'%20stroke-width='7'%20stroke-linecap='round'/%3E%3C/svg%3E");
}
/* JS marks the underline (.reveal-line); it draws left→right the first time it scrolls into view */
.underline-hand.reveal-line::after { clip-path: inset(0 100% 0 0); }
.underline-hand.reveal-line.is-visible::after { clip-path: inset(0 0 0 0); transition: clip-path .75s ease .1s; }

/* Squarespace-style scroll reveal — JS adds .reveal, then .is-visible when in viewport */
.reveal { opacity: 0; transform: translateY(28px);
  transition: opacity .7s cubic-bezier(.4,0,.2,1), transform .7s cubic-bezier(.4,0,.2,1); }
.reveal.is-visible { opacity: 1; transform: none; }
/* Collage photos have their own transition (for hover) that would override the reveal —
   restore the reveal transition so opacity actually fades, matching every other element */
.collage img.reveal { transition: opacity .7s cubic-bezier(.4,0,.2,1), transform .7s cubic-bezier(.4,0,.2,1); }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; }
  .underline-hand.reveal-line::after { clip-path: none !important; }
}

/* ---------- Sections ---------- */
.section { width: var(--container); margin: 0 auto; padding: 4.5rem 0; }
.section-title { text-align: center; margin-bottom: 1rem; }
.section-sub { text-align: center; color: var(--grey); max-width: 680px; margin: 0 auto 2.5rem; font-weight: 400; }
.section-sub .link-red { font-size: 1.1rem; }

/* ---------- Logo strip ---------- */
.logo-strip {
  width: var(--container); margin: 0 auto; padding: 20px 0;
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 3rem;
  align-items: center;
}
/* Uniform gallery-grid cells (102px tall); each logo fits by its natural aspect */
.logo-strip a { display: flex; align-items: center; justify-content: center; height: 102px; }
.logo-strip img { width: auto; height: auto; max-width: 100%; max-height: 102px; object-fit: contain; opacity: 1; transition: .25s; }
.logo-strip a:hover img { opacity: .6; }

/* ---------- Red full-bleed sections (flat — matches live site) ---------- */
.red-block {
  background: var(--red); color: #fff; position: relative;
  padding: 6rem 0; display: flex; align-items: center;
}
.red-block-inner { width: var(--container); margin: 0 auto; padding: 0; }
.red-block h2 { margin-bottom: 1.2rem; }
.red-block a.link-red { color: #fff; border-color: #fff; }
/* Wavy bottom section dividers on the home red blocks (same shape as the Services stats) */
.big-claim {
  -webkit-clip-path: url(#section-divider-dlords);
  clip-path: url(#section-divider-dlords);
}
.vision-section {
  -webkit-clip-path: url(#section-divider-faq);
  clip-path: url(#section-divider-faq);
}
.big-claim { padding-bottom: clamp(5rem, 9vw, 8rem); }
.vision-section { padding-bottom: clamp(4rem, 7vw, 6rem); }

/* ---------- Big claim (inside red block) ---------- */
.claim-grid {
  display: grid; grid-template-columns: 1.4fr 1fr; gap: clamp(2rem, 4vw, 4rem); align-items: start;
  margin-bottom: clamp(2.5rem, 6vw, 80px);
}
.giant { font-size: clamp(2.8rem, 9.5vw, 120px); font-weight: 300; letter-spacing: -0.02em; line-height: 1.0; }
.giant-sub { font-size: clamp(0.95rem, 1.15vw, 1.15rem); color: rgba(255,255,255,.9); font-weight: 400; margin-top: 1.4rem; }
.claim-copy { color: rgba(255,255,255,.95); font-size: clamp(1.15rem, 1.85vw, 26px); line-height: 1.45; font-weight: 400; }

/* ---------- Stats (inside red block) ---------- */
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; text-align: center; }
.stat { padding: 0 1rem; }
.stat-num { display: block; font-size: clamp(2rem, 3.4vw, 48px); font-weight: 300; color: #fff; }
.stat-label { color: rgba(255,255,255,.85); font-size: .95rem; font-weight: 400; }

/* ---------- Services grid (left title + 2x2) ---------- */
.services-layout { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 2rem 4rem; align-items: center; }
.services-heading { display: flex; justify-content: center; }
.section-title-left { font-size: clamp(2rem, 3.8vw, 3.4rem); font-weight: 400; }
.services-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(3rem, 5vw, 5rem) 3rem; }
.service-card { transition: .25s; }
.service-card:hover { transform: translateY(-3px); }
.service-card img { height: clamp(44px, 4.4vw, 64px); width: clamp(44px, 4.4vw, 64px); object-fit: contain; margin-bottom: 1.4rem; }
.service-card h3 { margin-bottom: .7rem; font-weight: 400; font-size: clamp(1.35rem, 1.9vw, 1.7rem); }
.service-card p { color: var(--grey); font-size: 1.05rem; line-height: 1.55; }

/* ---------- Vision CRM (inside wavy red block) ---------- */
.vision-grid {
  display: grid; grid-template-columns: 1fr 1.15fr; gap: 3.5rem; align-items: center;
}
.vision-copy h2 { margin-bottom: 1.2rem; font-weight: 300; letter-spacing: -0.01em; font-size: clamp(2rem, 3.4vw, 2.9rem); line-height: 1.15; }
.vision-copy p { margin-bottom: 1rem; color: rgba(255,255,255,.95); }
.vision-copy p strong { color: #fff; font-weight: 600; }
.vision-copy .btn { margin-top: .8rem; }
.vision-shot { display: block; width: 100%; height: auto; }

/* ---------- Categories collage (scattered) ---------- */
/* Full-bleed so the scattered photos can spread to (and overflow) the viewport edges */
.categories { width: 100%; max-width: none; margin: 0; overflow-x: clip; padding: 3rem 0; }
.collage {
  position: relative; max-width: 1500px; margin: 0 auto;
  min-height: 820px;
}
.collage-center { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); text-align: center; width: min(620px, 84%); z-index: 2; }
.collage-center .section-title { font-weight: 400; letter-spacing: -0.01em; line-height: 1.05;
  font-size: clamp(2.2rem, 5.5vw, 4.5rem); margin-bottom: 1.6rem; }
/* View Catalogs — red, 34px on desktop, with the hand-drawn underline (like section titles) */
.view-catalogs { margin: 0; }
.view-catalogs a { color: var(--red); font-weight: 500; font-size: clamp(1.3rem, 2.4vw, 2.125rem); }
.collage img {
  position: absolute; object-fit: cover; border-radius: 14px;
  transition: transform .3s ease; z-index: 1;
}
.collage img:hover { transform: scale(1.03); }
.collage .c1 { width: 230px; height: 265px; top: 2%;  left: 15%; }
.collage .c2 { width: 155px; height: 280px; top: 45%; left: -1%; }
.collage .c3 { width: 225px; height: 235px; top: 71%; left: 15%; }
.collage .c4 { width: 220px; height: 210px; top: 6%;  right: 13%; }
.collage .c5 { width: 150px; height: 195px; top: 39%; right: -1%; }
.collage .c6 { width: 215px; height: 235px; top: 69%; right: 11%; }

/* ---------- Team teaser (inside red block) ---------- */
.teaser-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; align-items: center; }
.teaser-copy h2 { margin-bottom: 24px; font-weight: 300; letter-spacing: -0.01em; font-size: clamp(2rem, 3.4vw, 2.9rem); line-height: 1.15; }
.teaser-copy p { color: rgba(255,255,255,.95); margin-bottom: 60px; max-width: 340px; }
.teaser-oval { aspect-ratio: 100/67; width: 100%; overflow: hidden; clip-path: url(#teaser-oval-mask); -webkit-clip-path: url(#teaser-oval-mask); }
.teaser-oval img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 50%; display: block; }
.teaser-oval-mask-svg { position: absolute; width: 0; height: 0; }
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 4rem 3rem; }
.team-card { text-align: center; }
.team-card img {
  aspect-ratio: 1/1; object-fit: cover; border-radius: 50%;
  filter: grayscale(1); width: 100%; max-width: 296px; margin: 0 auto 1.6rem;
}
.team-card h3 { font-size: 1.4rem; font-weight: 400; margin-bottom: .5rem; }
.team-card p { color: var(--grey); font-size: 1rem; }

/* ---------- Testimonial "The Results" — white quote card overlapping the image ---------- */
.testimonial .results-title { color: var(--ink); font-weight: 400; letter-spacing: -0.01em;
  font-size: clamp(1.9rem, 4vw, 3.4rem); margin-bottom: 2.2rem; }
.testimonial-grid { display: grid; grid-template-columns: repeat(12, 1fr); align-items: center; }
.testimonial-grid img { grid-column: 6 / 13; grid-row: 1; width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.testimonial blockquote { grid-column: 1 / 8; grid-row: 1; z-index: 2; margin: 0;
  background: #fff; padding: clamp(1.6rem, 3vw, 2.8rem); }
.testimonial blockquote::before { content: "\201C"; display: block;
  font-size: 3rem; line-height: .3; color: var(--ink); margin: .4rem 0 1.1rem; }
.testimonial blockquote p { font-size: clamp(1.05rem, 1.5vw, 1.4rem); font-weight: 400;
  line-height: 1.45; color: var(--ink); margin-bottom: 1.4rem; }
.testimonial cite { color: var(--ink); font-style: normal; font-weight: 400; }

/* ---------- Steps ---------- */
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.step-card { border-top: 3px solid var(--red); padding-top: 1.4rem; }
.step-num { color: var(--red); font-weight: 700; text-transform: uppercase; letter-spacing: .1em; font-size: .85rem; }
.step-card h3 { margin: .5rem 0 .6rem; }
.step-card p { color: var(--grey); font-size: .98rem; }

/* ---------- Fit graphic ---------- */
.fit-section { text-align: center; }
/* Section headings — regular weight, live responsive sizes 34 / 25.2 / 22.7px */
.fit-section .section-title,
.steps-section .section-title,
.case-teaser .section-title { font-weight: 400; font-size: clamp(1.417rem, 1.1rem + 1.15vw, 2.125rem); }
.fit-section .section-title { margin-bottom: 2.6rem; }
.fit-section img { display: block; max-width: 100%; height: auto; margin: 0 auto; }

/* ---------- Product photo strip (services) ---------- */
/* Desktop: 5 photos in one contained row, equal height, widths by aspect ratio */
.photo-strip {
  width: var(--container); margin: 2.5rem auto;
  display: grid; gap: 12px;
  grid-template-columns: 3fr 3fr 5.33fr 3fr 3.46fr;
}
.photo-strip img { display: block; width: 100%; height: clamp(200px, 21vw, 300px); object-fit: cover; }
@media (max-width: 900px) {
  /* Tablet: two large photos on top, three smaller below — equal height per row (object-fit cover) */
  .photo-strip { grid-template-columns: repeat(6, 1fr); }
  .photo-strip img:nth-child(1) { grid-column: 1 / 4; grid-row: 1; height: 48vw; }
  .photo-strip img:nth-child(2) { grid-column: 4 / 7; grid-row: 1; height: 48vw; }
  .photo-strip img:nth-child(3) { grid-column: 1 / 3; grid-row: 2; height: 33vw; }
  .photo-strip img:nth-child(4) { grid-column: 3 / 5; grid-row: 2; height: 33vw; }
  .photo-strip img:nth-child(5) { grid-column: 5 / 7; grid-row: 2; height: 33vw; }
}
@media (max-width: 600px) {
  /* Phone: first two side by side, the rest full-width stacked (natural aspect) */
  .photo-strip { grid-template-columns: 1fr 1fr; }
  .photo-strip img:nth-child(1) { grid-column: 1 / 2; grid-row: 1; height: auto; }
  .photo-strip img:nth-child(2) { grid-column: 2 / 3; grid-row: 1; height: auto; }
  .photo-strip img:nth-child(3) { grid-column: 1 / 3; grid-row: 2; height: auto; }
  .photo-strip img:nth-child(4) { grid-column: 1 / 3; grid-row: 3; height: auto; }
  .photo-strip img:nth-child(5) { grid-column: 1 / 3; grid-row: 4; height: auto; }
}

/* ========== Services page ========== */
/* Hero — dark wrapping heading, big Get In Touch on the right */
.services-hero .hero-copy h1 {
  white-space: normal; font-weight: 400; color: var(--ink);
  font-size: clamp(2rem, 4vw, 51px); line-height: 1.15; max-width: 1034px;
}

/* Red stats block with a convex (downward) curved bottom */
.stats-red { padding: 5rem 0 6.5rem; align-items: center;
  -webkit-clip-path: url(#section-divider-dlords);
  clip-path: url(#section-divider-dlords); }

/* Steps — big red "Step N :" label left, content right */
.steps-list { margin-top: 3rem; max-width: 980px; margin-left: auto; margin-right: auto; }
.step-row {
  display: grid; grid-template-columns: minmax(220px, 340px) 1fr; gap: 2rem 3rem;
  padding: 2.6rem 0; align-items: start;
}
.step-row + .step-row { border-top: 1px solid var(--line); }
.step-label { color: var(--red); font-weight: 400; line-height: 1;
  font-size: clamp(2.2rem, 4.5vw, 3.8rem); }
.step-body h3 { font-weight: 400; font-size: clamp(1.3rem, 2vw, 1.7rem); margin-bottom: .9rem; }
.step-body p { color: var(--grey); font-size: 0.96em; max-width: 760px; line-height: 1.5; font-weight: 400; }

/* FAQs — red block, title left, accordion right */
.faq-red { padding: 6rem 0 9rem;
  -webkit-clip-path: url(#section-divider-faq); clip-path: url(#section-divider-faq); }
.faq-layout { display: grid; grid-template-columns: minmax(220px, 340px) 1fr; gap: 3rem; align-items: start; }
.faq-title { color: #fff; font-weight: 300; letter-spacing: -0.02em;
  font-size: clamp(3rem, 6vw, 5rem); }
.faq-red .faq-item { border-bottom: 1px solid rgba(255,255,255,.4); }
.faq-red .faq-item summary { color: #fff; font-size: clamp(1.25rem, 2vw, 1.7rem); font-weight: 400; padding: 1.6rem 2.4rem 1.6rem 0; }
.faq-red .faq-item summary::after { color: #fff; font-size: 2rem; }
.faq-red .faq-item p { color: rgba(255,255,255,.9); font-size: 1.05rem; }

/* ---------- Case studies ---------- */
.case-teaser { text-align: center; }
.case-list { display: grid; gap: 6.5rem; padding-top: 4rem; }
.case-list img { width: 100%; border-radius: 0; }
/* Services teaser — stack the case-study banners with the same gap as the case studies page */
.case-teaser .mosaic-3 { display: grid; gap: 6.5rem; padding-top: 2rem; }
.case-teaser .mosaic-3 a { display: block; }
.case-teaser .mosaic-3 img { width: 100%; }

/* Red full-bleed hero (case studies) */
.hero-red { display: block; padding: 7rem 0; }
.hero-red h1 {
  color: #fff; font-weight: 300; letter-spacing: -0.02em; line-height: 1.02;
  font-size: clamp(2.6rem, 8vw, 94px); margin-bottom: 2.6rem;
}
.hero-red-sub {
  color: #fff; font-weight: 400; line-height: 1.5; max-width: 1050px;
  font-size: clamp(1rem, 0.85rem + 1vw, 24px);
}
/* Team "Who We Are" hero — a bit taller, description contained narrower */
.hero-team { padding: 8.5rem 0; }
.hero-team .hero-red-sub { max-width: 700px; }
@media (max-width: 768px) { .hero-team .hero-red-sub { max-width: 62%; } }
@media (max-width: 600px) { .hero-team .hero-red-sub { max-width: none; } }

/* Design Studio hero (red) + numbered list */
.hero-studio { padding: 6.5rem 0 7rem; }
.hero-studio h1 { margin-bottom: 3.2rem; }
.studio-intro { margin-bottom: 1.8rem; font-size: 18px; }
.studio-list { list-style: none; counter-reset: sp; max-width: 900px; color: #fff; }
.studio-list li {
  counter-increment: sp; position: relative; padding: .55rem 0 .55rem 2.4rem;
  font-size: 18px; font-weight: 400; line-height: 1.4;
}
.studio-list li::before { content: counter(sp) "."; position: absolute; left: 0; color: #fff; }

/* White hand-drawn underline (for red backgrounds) — overrides the red squiggle image */
.underline-white::after {
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%2098%20620%2040'%20preserveAspectRatio='none'%3E%3Cpath%20d='M%200,123.75%20c%2075.5,-3.4375%20151,-10.625%20302,-13.75%20c%20151,-3.125%20229.52,0%20302,1.25%20c%2014.496,0.25%20-11.476,3.5625%20-12.08,3.75'%20fill='none'%20stroke='%23ffffff'%20stroke-width='7'%20stroke-linecap='round'/%3E%3C/svg%3E");
}

/* Video embed — YouTube facade (poster + play button) that swaps to an iframe on click */
.studio-video { text-align: center; }
.video-embed {
  position: relative; width: 100%; max-width: 1000px; margin: 0 auto;
  aspect-ratio: 16 / 9; overflow: hidden; cursor: pointer; background: #000;
}
.video-embed .video-poster { width: 100%; height: 100%; object-fit: cover; display: block; }
.video-embed .video-play {
  position: absolute; inset: 0; margin: auto; width: 76px; height: 76px;
  border: none; border-radius: 50%; background: rgba(0,0,0,.55);
  cursor: pointer; display: grid; place-items: center; transition: background .2s;
}
.video-embed .video-play::after {
  content: ""; width: 0; height: 0; margin-left: 5px;
  border-left: 22px solid #fff; border-top: 13px solid transparent; border-bottom: 13px solid transparent;
}
.video-embed:hover .video-play { background: var(--red); }
.video-embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* Design Studio photo gallery — full-bleed justified "strips" (rows share height,
   widths distribute by each image's aspect ratio via --ar) */
.studio-gallery { width: 100%; padding: 0 2vw clamp(28px, 2vw, 40px); } /* live: 28.8px side padding + gap before footer */
.gallery-strips { display: flex; flex-direction: column; gap: 0; }
.gallery-row { display: flex; gap: 0; }                 /* live gutter: 0 — images touch */
.gallery-row img {
  flex: var(--ar) 1 0; min-width: 0; aspect-ratio: var(--ar);
  object-fit: cover; display: block;
}
@media (max-width: 600px) {
  .gallery-row { flex-direction: column; }
  .gallery-row img { flex: none; width: 100%; }
}

/* ---------- FAQ ---------- */
.faq-section { max-width: 820px; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary {
  cursor: pointer; list-style: none; font-weight: 600; font-size: 1.1rem;
  padding: 1.3rem 2.4rem 1.3rem 0; position: relative;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+"; position: absolute; right: 0; top: 50%; transform: translateY(-50%);
  color: var(--red); font-size: 1.6rem; font-weight: 400; transition: transform .2s;
}
.faq-item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq-item p { color: var(--grey); padding: 0 0 1.4rem; }

/* ---------- Catalog pages ---------- */
/* Season section: 144px (10vmax) top/bottom padding to match live */
.section.catalog-section { padding: min(10vmax, 144px) 0; }
.section.services-section { padding: 120px 0; }
.season-title {
  font-size: clamp(2rem, 3.7vw, 3.25rem); font-weight: 300; /* 52px at 1440 */
  letter-spacing: -0.02em; line-height: 1.05;
  color: var(--ink); margin: 0 0 70px; /* space-below-section-title: 70px */
}
.catalog-grid + .season-title { margin-top: 144px; }
.catalog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2.5rem; }
.catalog-card { display: flex; flex-direction: column; }   /* so buttons bottom-align across a row */
.catalog-card img { aspect-ratio: 7/5; object-fit: cover; margin-bottom: 1.1rem; }
.catalog-card h3 { margin-bottom: .5rem; }
.catalog-card p { color: var(--grey); font-size: .95rem; margin-bottom: 1rem; }
.catalog-card .btn { font-size: .9rem; padding: .6rem 1.5rem; margin-top: auto; align-self: flex-start; }
.full-bleed img { width: 100%; max-height: 70vh; object-fit: cover; }

/* ========== Catalogs page ========== */
/* Big hero — "Footwear Catalogs." with the red accent word underlined */
.hero-catalogs { padding: 5rem 0 2rem; }
.hero-catalogs h1 { font-size: clamp(3.2rem, 9vw, 130px); font-weight: 300;
  letter-spacing: -0.02em; line-height: 1.04; max-width: none; white-space: normal; }
.cat-accent { color: var(--red); }

/* Category — Squarespace "alternating side-by-side": overlapping photo collage + title + button */
.catalog-cat { display: grid; grid-template-columns: 1fr 1fr; column-gap: 4rem; row-gap: 1.6rem;
  align-items: center; padding: 4rem 0; }
.catalog-media { position: relative; grid-column: 1; grid-row: 1 / 3;
  /* Height tracks the (half-width) media cell so the scatter stays tight as the
     viewport narrows; caps at 860px so the 1440 desktop layout is unchanged. */
  min-height: min(860px, calc(63vw - 44px)); }
.catalog-title { grid-column: 2; grid-row: 1; align-self: end; text-align: center;
  font-weight: 300; letter-spacing: -0.01em; line-height: 1.02;
  font-size: clamp(2.6rem, 5.5vw, 5.2rem); }
.catalog-btn { grid-column: 2; grid-row: 2; align-self: start; justify-self: center; margin-top: 1.8rem; }
.catalog-cat.reverse .catalog-media { grid-column: 2; }
.catalog-cat.reverse .catalog-title,
.catalog-cat.reverse .catalog-btn { grid-column: 1; }

.catalog-media img { position: absolute; object-fit: cover; }
/* Mens — landscape black loafers top-left, big landscape monk shoe centre, boot bottom-right */
.cm-a { width: 42%; aspect-ratio: 5/4;  top: 2%;  left: 0;   z-index: 1; }
.cm-b { width: 80%; aspect-ratio: 4/3;  top: 25%; left: 11%; z-index: 2; }
.cm-c { width: 46%; aspect-ratio: 6/7;  top: 56%; left: 55%; z-index: 3; }
/* Womens — diagonal scatter: coral sandals (portrait) top-left, boots-on-steps
   (landscape) centre with breathing room, pink mules (portrait) bottom-right */
.cw-a { width: 35%; aspect-ratio: 2/3;  top: 4%;  left: 8%;  z-index: 1; }
.cw-b { width: 72%; aspect-ratio: 4/3;  top: 28%; left: 16%; z-index: 2; }
.cw-c { width: 35%; aspect-ratio: 2/3;  top: 61%; left: 61%; z-index: 3; }
/* Phone: stack title → photos → button (tablet keeps side-by-side).
   Scatter is re-tuned to stay inside the gutter (≤100% wide) and given
   viewport-relative height so nothing overflows onto the button. */
@media (max-width: 600px) {
  .catalog-cat { grid-template-columns: 1fr; padding: 2.5rem 0; }
  .catalog-title,
  .catalog-cat.reverse .catalog-title { grid-column: 1; grid-row: 1; }
  .catalog-media,
  .catalog-cat.reverse .catalog-media { grid-column: 1; grid-row: 2; min-height: 132vw; }
  .catalog-btn,
  .catalog-cat.reverse .catalog-btn { grid-column: 1; grid-row: 3; }

  /* Mens phone zigzag: loafers top-left, monk centre-right (to the edge), boot bottom-left */
  .catalog-media-mens { min-height: calc(131vw - 79px); }
  .cm-a { width: 56%; aspect-ratio: 1/1;   top: 0;   left: 0;   }
  .cm-b { width: 63%; aspect-ratio: 11/10; top: 27%; left: 37%; z-index: 3; }
  .cm-c { width: 55%; aspect-ratio: 1/1;   top: 58%; left: 0;   z-index: 2; }

  /* Womens phone zigzag (same shape as Mens): coral top-left, boots centre-right
     (landscape, to the edge, on top), mules bottom-left. Taller box for the portraits. */
  .catalog-cat.reverse .catalog-media { min-height: calc(139vw - 83px); }
  .cw-a { width: 52%; aspect-ratio: 3/4; top: 0;   left: 0;   z-index: 1; }
  .cw-b { width: 66%; aspect-ratio: 3/2; top: 26%; left: 34%; z-index: 3; }
  .cw-c { width: 50%; aspect-ratio: 3/4; top: 52%; left: 0;   z-index: 2; }
}

/* ---------- Newsletter ---------- */
.newsletter { text-align: center; }
.newsletter-form { display: flex; gap: 1rem; justify-content: center; max-width: 520px; margin: 0 auto; }
.newsletter-form input {
  flex: 1; padding: .85rem 1.2rem; border: 2px solid var(--ink);
  font-family: var(--font); font-size: 1rem;
}
.thanks { color: var(--red); font-weight: 600; font-size: 1.2rem; }

/* Custom validation message — light pink box, red text (matches the live site) */
.field-error {
  background: #fbdedd; color: #c0392b; font-weight: 400; font-size: .95rem;
  padding: .75rem 1rem; margin-bottom: .8rem; text-align: center;
}
/* Newsletter form already spaces items with its flex gap — drop the extra margin */
.newsletter-form .field-error { margin-bottom: 0; }

/* Newsletter — translucent slate card over a full-bleed product photo (inner catalog pages) */
.newsletter-hero {
  background-size: cover; background-position: center;
  padding: clamp(3rem, 8vw, 7rem) var(--gutter);
  display: flex; justify-content: center;
}
.newsletter-card {
  width: 100%; max-width: 480px; text-align: center; color: #3c566b;
  background: #fff;
  padding: clamp(2.2rem, 5vw, 3.4rem) clamp(1.6rem, 4vw, 3rem);
}
.newsletter-card h2 {
  font-weight: 300; letter-spacing: -0.01em; line-height: 1.15;
  font-size: clamp(1.9rem, 3.4vw, 2.6rem); color: #3c566b; margin-bottom: 1.1rem;
}
.newsletter-card p {
  color: #3c566b; font-weight: 400; line-height: 1.5;
  margin: 0 auto 2.4rem; max-width: 340px;
}
.newsletter-card .newsletter-form {
  flex-direction: column; gap: 2rem; max-width: none; margin: 0;
}
.newsletter-card .newsletter-form input {
  background: transparent; border: 1px solid rgba(60, 86, 107, 0.5);
  color: #3c566b; padding: 1.1rem 1.2rem; width: 100%; text-align: left;
}
.newsletter-card .newsletter-form input::placeholder { color: #3c566b; opacity: .8; }
.newsletter-btn {
  background: var(--ink); border: none; border-radius: 999px; color: #fff;
  align-self: center; padding: 1rem 3rem; font-weight: 400;
}
.newsletter-btn:hover { background: #333; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 4rem; }
.contact-grid h2 { margin-bottom: 1rem; }
.contact-grid p { margin-bottom: 1rem; color: var(--grey); }
.addresses { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin: 2rem 0; }
.addresses h3 { color: var(--red); margin-bottom: .4rem; }
.contact-form { display: grid; gap: 1.2rem; align-content: start; }
.contact-form label { font-weight: 600; font-size: .95rem; display: grid; gap: .4rem; }
.contact-form input, .contact-form textarea {
  padding: .8rem 1rem; border: 2px solid var(--ink); font-family: var(--font);
  font-size: 1rem; font-weight: 300;
}
.contact-form input:focus, .contact-form textarea:focus, .newsletter-form input:focus { outline: 2px solid var(--red); outline-offset: 1px; }

/* ---------- Studio ---------- */
.studio-points { max-width: 760px; }
.numbered { counter-reset: pt; list-style: none; }
.numbered li {
  counter-increment: pt; font-size: 1.35rem; font-weight: 500;
  padding: 1.4rem 0 1.4rem 4rem; border-bottom: 1px solid var(--line); position: relative;
}
.numbered li::before {
  content: counter(pt, decimal-leading-zero); position: absolute; left: 0;
  color: var(--red); font-weight: 800; font-size: 1.6rem;
}

/* ---------- Marquee CTA (signature — from the original site) ---------- */
.marquee-cta {
  display: block; background: var(--red); color: #fff; overflow: hidden;
  padding: 2.8rem 0 2.4rem; white-space: nowrap;
}
.marquee-track { display: flex; width: max-content; animation: scroll 60s linear infinite; }
.marquee-track span {
  font-size: 24px; font-weight: 500; letter-spacing: 0;
  text-transform: none; padding-right: 0; white-space: nowrap;
}
@keyframes scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; }
  html { scroll-behavior: auto; }
}

/* ---------- Red form pages (Contact, Supplier, Careers) ---------- */
.red-page { background: var(--red); color: #fff; padding-bottom: clamp(3rem, 7vw, 6rem); }
.red-page-inner { width: var(--container); margin: 0 auto; }

/* Wavy scrolling marquee at the top of the red pages —
   inherits the footer marquee's 24px size, weight and 60s scroll speed */
.wave-marquee { overflow: hidden; white-space: nowrap; padding: clamp(1.8rem, 4vw, 3.2rem) 0; }

/* Two-column: intro copy on the left, form on the right */
.form-layout { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 5rem);
  align-items: start; padding-top: clamp(1rem, 3vw, 2.5rem); }
.form-intro h1 { color: #fff; font-weight: 300; letter-spacing: -0.02em; line-height: 1.02;
  font-size: clamp(2.8rem, 7vw, 92px); margin-bottom: 1.6rem; }
.red-page .lead { font-size: 26px; font-weight: 400; margin-bottom: 1.6rem; }
.form-intro p, .careers-body p { color: rgba(255,255,255,.95); font-weight: 400; line-height: 1.55;
  margin-bottom: 1rem; max-width: 620px; }
.red-addresses { margin-top: 2.2rem; }
.red-addresses h3 { font-weight: 500; font-size: 1.05rem; text-decoration: underline;
  text-underline-offset: 3px; margin: 1.4rem 0 .6rem; }
.red-addresses p { margin-bottom: .3rem; }
.red-link { color: #fff; text-decoration: underline; text-underline-offset: 3px; }
.red-link:hover { opacity: .8; }

/* Form controls on red */
.red-form { display: grid; gap: 1.7rem; align-content: start; }
.red-form .field { display: grid; gap: .5rem; }
.red-form .name-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem; }
.red-form label, .red-form legend, .red-form .field-label { color: #fff; font-weight: 400; font-size: 1rem; }
.red-form .req { color: rgba(255,255,255,.7); }
.red-form .hint { color: rgba(255,255,255,.85); font-weight: 400; margin: .1rem 0 .2rem; }
.red-form input[type=text], .red-form input[type=email], .red-form input[type=tel], .red-form textarea {
  width: 100%; background: #fff; border: none; padding: .95rem 1rem;
  font-family: var(--font); font-size: 1rem; color: var(--ink);
}
.red-form textarea { min-height: 150px; resize: vertical; }
.red-form input:focus, .red-form textarea:focus { outline: 3px solid rgba(255,255,255,.6); outline-offset: 2px; }
.red-form fieldset { border: none; padding: 0; margin: 0; }
.red-form .checks { display: grid; gap: .9rem; margin-top: .8rem; }
.red-form .check { display: flex; align-items: center; gap: .7rem; font-weight: 400; }
.red-form .check input { width: 20px; height: 20px; accent-color: #fff; }
.btn-send { background: #fff; color: var(--red); border: none; border-radius: 999px;
  padding: .9rem 2.6rem; font-weight: 500; font-size: 1rem; font-family: var(--font);
  cursor: pointer; justify-self: start; transition: background .2s, color .2s; }
.btn-send:hover { background: var(--ink); color: #fff; }
.red-page .thanks { color: #fff; }

/* Careers — centred/left text block, no form */
.careers-body { max-width: 900px; padding-top: clamp(1rem, 3vw, 2.5rem); }
.careers-body h1 { color: #fff; font-weight: 300; letter-spacing: -0.02em; line-height: 1.02;
  font-size: clamp(2.8rem, 7vw, 92px); margin-bottom: 1.4rem; }

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

/* ---------- Privacy Policy (prose) ---------- */
.hero-policy { padding-top: clamp(2.2rem, 4vw, 3.2rem); padding-bottom: clamp(2.2rem, 4vw, 3.2rem); }
.hero-policy h1 { margin-bottom: 0; }
.policy { max-width: 820px; }
.policy h2 { font-size: 1.5rem; font-weight: 700; margin: 2.4rem 0 .8rem; }
.policy p { color: var(--ink); line-height: 1.7; margin-bottom: 1rem; }
.policy ul { margin: 0 0 1.2rem 1.4rem; }
.policy li { line-height: 1.7; margin-bottom: .3rem; }
.policy address { font-style: normal; color: var(--grey); line-height: 1.7; }
.policy address .addr-contact { display: block; margin-top: 1.2rem; }
.policy address .link-red { border-bottom: none; padding-bottom: 0; }

/* ---------- Footer ---------- */
.site-footer { background: var(--red); color: #fff; border-top: none; padding: 0 0 3.5rem; }
.footer-inner {
  width: var(--container); margin: 0 auto; padding-top: 3.5rem;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2.5rem; text-align: center;
}
.footer-col h4 {
  color: #fff; text-transform: none; letter-spacing: 0; font-weight: 300;
  font-size: clamp(1.8rem, 2.4vw, 2.4rem); margin-bottom: 1.8rem;
}
.footer-col a { color: #fff; text-decoration: underline; text-underline-offset: 3px; }
.footer-col a:hover { opacity: .7; color: #fff; }
/* Navigate — inline links separated by " / ", wrap naturally */
.footer-nav-links { line-height: 2.4; max-width: 30ch; margin: 0 auto; }
.footer-nav-links a { white-space: nowrap; }
/* Catalogs & Contact — stacked links */
.footer-col > a { display: block; padding: .5rem 0; }
.footer-in { text-decoration: none; display: inline-block; margin-top: .8rem; }
.footer-in svg { vertical-align: middle; }
.footer-note { text-align: center; color: rgba(255,255,255,.8); font-size: .85rem; margin-top: 2.8rem; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; align-items: start; gap: 1.6rem; }
  .hero-copy h1 { white-space: normal; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid, .catalog-grid { grid-template-columns: repeat(2, 1fr); }
  .faq-layout { grid-template-columns: 1fr; gap: .6rem; }
  /* Steps stay 2-column on tablet — contained & centered (matches live fluid-engine group) */
  .steps-list { max-width: 620px; }
  .step-row { grid-template-columns: minmax(110px, 150px) 1fr; gap: 1.4rem 1.8rem; padding: 2rem 0; }
  .faq-title { margin-bottom: 1rem; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 2.5rem 2rem; }
  .logo-strip { grid-template-columns: repeat(3, 1fr); gap: 2rem; }
  .logo-strip a { height: 120px; }
  .logo-strip img { max-height: 120px; }
  /* Section dividers — shallower waves on tablet (match Squarespace responsive paths) */
  .stats-red, .big-claim { -webkit-clip-path: url(#section-divider-dlords-sm); clip-path: url(#section-divider-dlords-sm); }
  .faq-red, .vision-section { -webkit-clip-path: url(#section-divider-faq-sm); clip-path: url(#section-divider-faq-sm); }
  .claim-grid, .services-layout, .vision-grid, .contact-grid {
    grid-template-columns: 1fr; gap: 2rem;
  }
  .teaser-grid { gap: 2.5rem; }
  .services-layout { gap: clamp(2.5rem, 6vw, 4rem); }
  .services-grid { gap: 2.2rem 2rem; }
  .red-block { border-radius: 0; }
  /* Collage keeps its full-width scattered layout on tablet — side photos overflow the edges */
  .collage { min-height: 640px; max-width: none; }
  .collage-center { width: min(340px, 66%); }
  .collage-center .section-title { font-size: clamp(1.9rem, 6vw, 2.6rem); }
  .collage .c1 { width: 130px; height: 155px; top: 4%;  left: 11%; }
  .collage .c2 { width: 100px; height: 175px; top: 44%; left: -2%; }
  .collage .c3 { width: 135px; height: 145px; top: 72%; left: 11%; }
  .collage .c4 { width: 135px; height: 130px; top: 8%;  right: 10%; }
  .collage .c5 { width: 95px;  height: 125px; top: 40%; right: -2%; }
  .collage .c6 { width: 135px; height: 145px; top: 70%; right: 8%; }
}
/* Tablet — collapse nav to a hamburger (matches live @768).
   Live header = 128px total (46px block padding, ~36px logo). Thin 1px hamburger. */
@media (max-width: 768px) {
  .header-inner { min-height: 128px; }
  .nav-toggle { display: flex; margin-left: auto; }
  .nav-toggle span { width: 26px; height: 1px; }
  /* Full-viewport white overlay that fades in (matches live) */
  .site-nav {
    position: fixed; inset: 0; z-index: 90; flex: none;
    background: #fff;
    display: flex; flex-direction: column; justify-content: flex-start; align-items: flex-start;
    padding: 24vh 8vw 0; gap: 0; border: none;
    opacity: 0; visibility: hidden; pointer-events: none;
    transition: opacity .45s ease, visibility 0s linear .45s;
  }
  .site-nav.open {
    opacity: 1; visibility: visible; pointer-events: auto;
    transition: opacity .45s ease;
  }
  /* keep the logo + close button above the overlay */
  .brand, .nav-toggle { position: relative; z-index: 95; }

  .nav-links, .nav-actions { flex-direction: column; align-items: flex-start; margin: 0; }
  .nav-links { gap: 0; line-height: 1.35; width: 100%; }
  .nav-links a { font-size: 1.5rem; font-weight: 400; }
  .nav-links .nav-link::after { display: none; }   /* no underline in overlay */
  /* items stay near the top; actions pinned to the bottom */
  .nav-actions { position: absolute; left: 8vw; right: 8vw; bottom: 5vh; width: auto; gap: 2rem; }
  .nav-actions .nav-social svg { width: 24px; height: 24px; }
  .nav-actions .btn-nav { display: inline-block; min-width: 210px; text-align: center; padding: 15px 26px; font-size: 19px; font-weight: 500; line-height: 1.2; }

  /* subtle rise-in for the content when the overlay opens */
  .site-nav .nav-links, .site-nav .nav-actions {
    transform: translateY(16px); opacity: 0;
    transition: transform .55s ease, opacity .55s ease;
  }
  .site-nav.open .nav-links { transform: translateY(0); opacity: 1; transition-delay: .08s; }
  .site-nav.open .nav-actions { transform: translateY(0); opacity: 1; transition-delay: .16s; }
}

/* Phone — stack the remaining multi-column blocks */
@media (max-width: 600px) {
  .header-inner { min-height: 86px; }
  .brand-logo { height: 30px; }
  .catalog-grid, .team-grid, .services-grid { grid-template-columns: 1fr; }
  /* Steps stack on phones — "Step N :" on its own line above the content */
  .step-row { grid-template-columns: 1fr; gap: .5rem; padding: 1.8rem 0; }
  /* Testimonial stacks — image on top, quote card overlapping its bottom edge */
  .testimonial-grid { display: block; }
  .testimonial-grid img { width: 100%; }
  .testimonial blockquote { width: 90%; margin: -3.6rem auto 0; position: relative; }
  .logo-strip { grid-template-columns: repeat(2, 1fr); gap: 1.4rem; }
  .logo-strip a { height: 130px; }
  .logo-strip img { max-height: 130px; }
  /* Section dividers — shallowest waves on phones (match Squarespace responsive paths) */
  .stats-red, .big-claim { -webkit-clip-path: url(#section-divider-dlords-xs); clip-path: url(#section-divider-dlords-xs); }
  .faq-red, .vision-section { -webkit-clip-path: url(#section-divider-faq-xs); clip-path: url(#section-divider-faq-xs); }
  /* Team teaser on phones: heading → copy → oval → full-width button (matches live order) */
  .team-teaser .teaser-grid { display: flex; flex-direction: column; align-items: stretch; gap: 1.6rem; }
  .team-teaser .teaser-copy { display: contents; }
  .team-teaser .teaser-copy h2 { order: 1; }
  .team-teaser .teaser-copy p { order: 2; max-width: none; margin-bottom: 0; }
  .team-teaser .teaser-oval { order: 3; margin: .4rem 0; }
  .team-teaser .teaser-copy .btn { order: 4; width: 100%; text-align: center; }
  .footer-inner { grid-template-columns: 1fr; gap: 2.8rem; }
  /* Phone: contained, staggered scatter (haphazard) with the normal side gutter — no overflow */
  .categories { padding-left: var(--gutter); padding-right: var(--gutter); overflow-x: visible; }
  .collage { display: grid; grid-template-columns: 1fr 1fr; column-gap: 1rem; row-gap: 0;
    min-height: 0; max-width: none; align-items: start; }
  .collage img { position: static; width: 100%; height: auto; border-radius: 16px;
    top: auto; left: auto; right: auto; }
  .collage-center { position: static; transform: none; width: 100%; grid-column: 1 / -1; order: 2; margin: .6rem 0 1.8rem; }
  /* varied sizes + alternating vertical offsets for the haphazard look */
  .collage .c1 { order: 1; aspect-ratio: 5/6; margin-bottom: 1.6rem; }
  .collage .c5 { order: 1; aspect-ratio: 4/5; margin: 2.6rem 0 1.6rem; }
  .collage .c2 { order: 3; aspect-ratio: 5/6; margin: .4rem 0 1.6rem; }
  .collage .c6 { order: 3; aspect-ratio: 1/1; margin-bottom: 1.6rem; }
  .collage .c3 { order: 4; aspect-ratio: 1/1; margin: .9rem 0 1.6rem; }
  .collage .c4 { order: 4; aspect-ratio: 1/1; margin: 2.6rem 0 1.6rem; }
  .newsletter-form { flex-direction: column; }
  .addresses { grid-template-columns: 1fr; }
  .underline-hand { white-space: normal; }
  .hero-page { padding: 5rem 0 2rem; }
}
