/* =====================================================================
   PM MODERN CONSTRUCTION — Design System v2
   Typography:  Fraunces (display serif) · Inter (body sans)
   Aesthetic:   Editorial, architectural, restrained. London craft.
   Palette:     Bone paper · Deep ink · Muted forest green
   ===================================================================== */

/* ── RESET ─────────────────────────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 72px; -webkit-text-size-adjust: 100%; }
img, svg { display: block; max-width: 100%; }
button { cursor: pointer; border: 0; background: none; font: inherit; color: inherit; }
ul, ol { list-style: none; }
a { color: inherit; text-decoration: none; }

/* ── DESIGN TOKENS ─────────────────────────────────────────────────── */
:root {
  /* — Surface — */
  --paper:        #F6F1E8;     /* primary bone background */
  --paper-warm:   #EFE9DC;     /* slightly deeper for alt sections */
  --paper-deep:   #E6DFD0;     /* deepest cream */
  --paper-edge:   #D9D2C2;     /* hairline border on paper */
  --white:        #FBF8F2;     /* "clean" panels */

  /* — Ink — */
  --ink:          #13110F;     /* primary text / dark backgrounds */
  --ink-soft:     #1E1C18;
  --ink-mid:      #322E29;
  --text:         #2A2620;
  --text-mid:     #5A5246;
  --text-muted:   #8A8175;
  --text-faint:   #B6AE9F;
  --line:         rgba(19,17,15,0.10);
  --line-strong:  rgba(19,17,15,0.18);

  /* — Accent: Muted Forest — */
  --moss:         #2E3D2E;     /* primary accent */
  --moss-hover:   #253223;
  --moss-soft:    rgba(46,61,46,0.08);
  --moss-line:    rgba(46,61,46,0.22);
  --sage:         #6B7A5E;     /* lighter step for type accents */

  /* — On-dark — */
  --on-dark:           rgba(251,248,242,1);
  --on-dark-mid:       rgba(251,248,242,0.66);
  --on-dark-faint:     rgba(251,248,242,0.36);
  --on-dark-line:      rgba(251,248,242,0.10);

  /* — Fonts — */
  --serif:  'Fraunces', 'Cormorant Garamond', Georgia, serif;
  --sans:   'Inter', system-ui, -apple-system, sans-serif;

  /* — Radii (deliberately tight) — */
  --r-xs: 1px;
  --r-sm: 2px;
  --r:    3px;
  --r-lg: 6px;

  /* — Elevation — */
  --shadow-xs: 0 1px 2px rgba(19,17,15,0.04);
  --shadow-sm: 0 2px 8px rgba(19,17,15,0.06);
  --shadow-md: 0 6px 22px rgba(19,17,15,0.08);
  --shadow-lg: 0 14px 38px rgba(19,17,15,0.10);
  --shadow-xl: 0 28px 64px rgba(19,17,15,0.14);

  /* — Motion — */
  --ease:       cubic-bezier(0.16, 0.84, 0.34, 1);
  --ease-out:   cubic-bezier(0.22, 1, 0.36, 1);
  --transition: 280ms var(--ease);

  /* — Layout — */
  --container:    1280px;
  --container-lg: 1440px;
  --gutter:       40px;
  --gutter-mobile: 24px;
}

@media (max-width: 700px) {
  :root { --gutter: var(--gutter-mobile); }
}

body {
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.65;
  color: var(--text);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  font-feature-settings: "ss01", "cv11";
}

/* ── TYPOGRAPHY ────────────────────────────────────────────────────── */
h1, h2, h3, h4 { font-family: var(--serif); color: var(--ink); letter-spacing: -0.01em; }

h1 {
  font-weight: 400;
  font-size: clamp(44px, 6.4vw, 88px);
  line-height: 1.02;
  letter-spacing: -0.022em;
  font-variation-settings: "opsz" 144, "SOFT" 30;
}

h2 {
  font-weight: 400;
  font-size: clamp(32px, 4.2vw, 56px);
  line-height: 1.06;
  letter-spacing: -0.018em;
  font-variation-settings: "opsz" 96, "SOFT" 40;
}

h3 {
  font-weight: 500;
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.18;
  letter-spacing: -0.012em;
  font-variation-settings: "opsz" 36, "SOFT" 50;
}

h4 {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 14px;
  line-height: 1.4;
  letter-spacing: 0;
  color: var(--ink);
}

p { color: var(--text-mid); }

.lede {
  font-family: var(--serif);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(20px, 2vw, 26px);
  line-height: 1.45;
  color: var(--ink-mid);
  letter-spacing: -0.005em;
}

.eyebrow {
  display: inline-block;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--moss);
}
.bg-ink .eyebrow { color: var(--on-dark-mid); }

.eyebrow--rule {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.eyebrow--rule::before {
  content: '';
  width: 28px; height: 1px;
  background: currentColor;
  opacity: 0.7;
}

/* Display utility class */
.display {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(56px, 8vw, 120px);
  line-height: 0.98;
  letter-spacing: -0.028em;
  font-variation-settings: "opsz" 144;
  color: var(--ink);
}

/* Italic styling for emphasis inside serifs */
em, .italic { font-style: italic; font-variation-settings: "opsz" 144; }

/* ── CONTAINERS & LAYOUT ───────────────────────────────────────────── */
.container    { max-width: var(--container);    margin: 0 auto; padding: 0 var(--gutter); }
.container-lg { max-width: var(--container-lg); margin: 0 auto; padding: 0 var(--gutter); }
.container-sm { max-width: 880px;               margin: 0 auto; padding: 0 var(--gutter); }

.section     { padding: 120px 0; position: relative; }
.section-sm  { padding: 80px  0; position: relative; }
.section-lg  { padding: 160px 0; position: relative; }

@media (max-width: 800px) {
  .section    { padding: 80px 0; }
  .section-sm { padding: 56px 0; }
  .section-lg { padding: 100px 0; }
}

.bg-paper      { background: var(--paper); }
.bg-paper-warm { background: var(--paper-warm); }
.bg-paper-deep { background: var(--paper-deep); }
.bg-white      { background: var(--white); }
.bg-ink        { background: var(--ink); color: var(--on-dark-mid); }
.bg-ink h1, .bg-ink h2, .bg-ink h3, .bg-ink h4 { color: var(--on-dark); }
.bg-ink p { color: var(--on-dark-mid); }

/* ── ANIMATIONS ────────────────────────────────────────────────────── */
@keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes slideDown { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: translateY(0); } }
@keyframes scrollBounce { 0%,100% { transform: translateY(0); opacity: 0.7; } 50% { transform: translateY(8px); opacity: 1; } }

.anim { opacity: 0; transform: translateY(20px); transition: opacity 800ms var(--ease-out), transform 800ms var(--ease-out); }
.anim.visible { opacity: 1; transform: translateY(0); }
.anim-delay-1 { transition-delay: 100ms; }
.anim-delay-2 { transition-delay: 200ms; }
.anim-delay-3 { transition-delay: 300ms; }
.anim-delay-4 { transition-delay: 400ms; }

/* ── BUTTONS ───────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 24px;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: var(--r);
  transition: var(--transition);
  white-space: nowrap;
  position: relative;
  border: 1px solid transparent;
}

.btn-primary { background: var(--moss); color: var(--on-dark); }
.btn-primary:hover { background: var(--moss-hover); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(46,61,46,0.22); }

.btn-ink { background: var(--ink); color: var(--on-dark); }
.btn-ink:hover { background: var(--ink-soft); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(19,17,15,0.18); }

.btn-outline { background: transparent; border-color: var(--line-strong); color: var(--ink); }
.btn-outline:hover { border-color: var(--ink); color: var(--ink); background: rgba(19,17,15,0.03); }

.btn-ghost-dark { background: transparent; border-color: var(--on-dark-line); color: var(--on-dark-mid); }
.btn-ghost-dark:hover { border-color: var(--on-dark-mid); color: var(--on-dark); }

.btn-white { background: var(--white); color: var(--ink); }
.btn-white:hover { transform: translateY(-1px); box-shadow: 0 8px 24px rgba(251,248,242,0.18); }

.btn-lg { padding: 16px 32px; font-size: 12px; }
.btn-sm { padding: 9px 16px; font-size: 10px; gap: 7px; }
.btn-full { width: 100%; justify-content: center; }

.btn-arrow::after {
  content: '→';
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  transition: transform 280ms var(--ease);
}
.btn-arrow:hover::after { transform: translateX(4px); }

/* Text-link with hairline */
.link-quiet {
  display: inline-flex; gap: 10px; align-items: center;
  font-family: var(--sans);
  font-size: 13px; font-weight: 500;
  color: var(--ink);
  padding-bottom: 2px;
  border-bottom: 1px solid var(--line-strong);
  transition: var(--transition);
}
.link-quiet::after { content: '→'; transition: transform 280ms var(--ease); }
.link-quiet:hover { border-color: var(--moss); color: var(--moss); }
.link-quiet:hover::after { transform: translateX(4px); }

/* ── NAVBAR ────────────────────────────────────────────────────────── */
.navbar {
  position: fixed; inset: 0 0 auto 0; z-index: 1000;
  background: rgba(246,241,232,0.86);
  backdrop-filter: blur(16px) saturate(120%);
  -webkit-backdrop-filter: blur(16px) saturate(120%);
  border-bottom: 1px solid transparent;
  transition: background 300ms var(--ease), border-color 300ms var(--ease), box-shadow 300ms var(--ease);
}
.navbar.scrolled { background: rgba(246,241,232,0.96); border-bottom-color: var(--line); }

.navbar-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
  max-width: var(--container-lg); margin: 0 auto;
  padding: 0 var(--gutter);
}

/* Logo — architectural seal */
.logo { display: inline-flex; align-items: center; gap: 12px; }
.logo-seal {
  width: 42px; height: 42px;
  flex-shrink: 0;
  transition: transform 400ms var(--ease);
}
.logo:hover .logo-seal { transform: rotate(-4deg); }
.logo-seal .seal-fill { fill: var(--ink); }
.logo-seal .seal-ring { stroke: var(--moss); stroke-width: 0.7; opacity: 0.7; fill: none; }
.logo-seal .seal-text {
  fill: var(--paper);
  font-family: var(--serif);
  font-style: italic;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: -0.01em;
  font-variation-settings: "opsz" 36, "SOFT" 50;
}
.logo-seal .seal-rim {
  fill: var(--paper);
  font-family: var(--sans);
  font-size: 3.2px;
  font-weight: 600;
  letter-spacing: 0.18em;
  opacity: 0.7;
}

/* Footer & dark-section variants — invert seal */
.footer .logo-seal .seal-fill,
.bg-ink .logo-seal .seal-fill { fill: var(--paper); }
.footer .logo-seal .seal-text,
.bg-ink .logo-seal .seal-text { fill: var(--ink); }
.footer .logo-seal .seal-ring,
.bg-ink .logo-seal .seal-ring { stroke: var(--sage); opacity: 0.8; }
.footer .logo-seal .seal-rim,
.bg-ink .logo-seal .seal-rim { fill: var(--ink); opacity: 0.65; }

.logo-text { display: flex; flex-direction: column; line-height: 1; }
.logo-text strong {
  font-family: var(--serif); font-weight: 500; font-size: 17px;
  color: var(--ink); letter-spacing: -0.005em;
  font-variation-settings: "opsz" 36;
}
.logo-text small {
  font-family: var(--sans); font-size: 9px; font-weight: 600;
  color: var(--text-muted); letter-spacing: 0.22em; text-transform: uppercase;
  margin-top: 4px;
}

/* Nav links */
.nav-links { display: flex; align-items: center; gap: 2px; }
.nav-links a {
  position: relative;
  padding: 10px 14px;
  font-family: var(--sans); font-size: 13px; font-weight: 500;
  color: var(--text-mid);
  transition: color 200ms var(--ease);
}
.nav-links a:hover { color: var(--ink); }
.nav-links a.active { color: var(--ink); }
.nav-links a.active::after {
  content: ''; position: absolute; bottom: 4px; left: 14px; right: 14px;
  height: 1px; background: var(--moss);
}

.nav-cta { padding: 10px 18px; font-size: 11px; }

/* Mobile toggle */
.menu-toggle { display: none; padding: 10px; color: var(--ink); }
.menu-toggle svg { width: 22px; height: 22px; }

.mobile-menu {
  display: none;
  position: absolute; top: 72px; left: 0; right: 0;
  background: var(--paper);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 16px var(--gutter) 28px;
  animation: slideDown 240ms var(--ease) both;
}
.mobile-menu.open { display: block; }
.mobile-menu a {
  display: block;
  padding: 14px 4px;
  border-bottom: 1px solid var(--line);
  font-family: var(--sans); font-size: 14px; font-weight: 500;
  color: var(--text-mid);
}
.mobile-menu a:last-of-type { border-bottom: none; }
.mobile-menu a.active { color: var(--ink); }
.mobile-menu .btn { width: 100%; justify-content: center; margin-top: 16px; }

@media (max-width: 940px) {
  .nav-links, .nav-cta { display: none; }
  .menu-toggle { display: block; }
}

/* ── HERO (homepage) ───────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh; min-height: 100svh;
  display: flex; flex-direction: column;
  background: var(--ink);
  overflow: hidden;
  padding-top: 72px;
}
.hero-bg { position: absolute; inset: 0; z-index: 1; }
.hero-bg img {
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(0.62) saturate(0.92) contrast(1.04);
}
.hero-overlay {
  position: absolute; inset: 0; z-index: 2;
  background:
    linear-gradient(180deg, rgba(19,17,15,0.42) 0%, rgba(19,17,15,0.10) 28%, rgba(19,17,15,0.20) 72%, rgba(19,17,15,0.78) 100%),
    linear-gradient(96deg, rgba(19,17,15,0.55) 0%, rgba(19,17,15,0.10) 60%);
}

.hero-inner {
  position: relative; z-index: 3;
  flex: 1;
  display: grid;
  grid-template-rows: 1fr auto;
  max-width: var(--container-lg);
  width: 100%;
  margin: 0 auto;
  padding: 0 var(--gutter) 0;
}

.hero-content {
  align-self: end;
  padding-bottom: 80px;
  max-width: 920px;
}
.hero .eyebrow { color: rgba(251,248,242,0.78); margin-bottom: 32px; }
.hero .eyebrow--rule::before { background: rgba(251,248,242,0.55); opacity: 1; }
.hero h1 {
  color: var(--on-dark);
  font-weight: 300;
  animation: fadeUp 1000ms var(--ease-out) 100ms both;
}
.hero h1 em {
  font-style: italic; font-weight: 300;
  color: rgba(251,248,242,0.92);
}
.hero-sub {
  font-family: var(--sans);
  font-size: clamp(16px, 1.4vw, 19px);
  color: rgba(251,248,242,0.74);
  margin-top: 28px;
  max-width: 580px;
  line-height: 1.65;
  animation: fadeUp 1000ms var(--ease-out) 200ms both;
}
.hero-buttons {
  display: flex; flex-wrap: wrap; gap: 14px;
  margin-top: 44px;
  animation: fadeUp 1000ms var(--ease-out) 300ms both;
}

/* Hero meta strip — bottom of hero */
.hero-meta {
  position: relative; z-index: 4;
  display: flex; justify-content: space-between; align-items: center; gap: 24px;
  padding: 24px 0;
  border-top: 1px solid rgba(251,248,242,0.14);
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(251,248,242,0.58);
  flex-wrap: wrap;
}
.hero-meta-item { display: flex; align-items: center; gap: 10px; }
.hero-meta-item::before {
  content: ''; width: 4px; height: 4px; background: var(--moss); border-radius: 50%;
  flex-shrink: 0;
}

@media (max-width: 700px) {
  .hero-content { padding-bottom: 48px; }
  .hero-meta { display: none; }
}

/* ── PAGE HERO (inner pages) ───────────────────────────────────────── */
.page-hero {
  position: relative;
  padding: 160px var(--gutter) 96px;
  background: var(--paper-warm);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; top: 0; left: 0; bottom: 0;
  width: 3px; background: var(--moss);
}
.page-hero-inner { max-width: var(--container); margin: 0 auto; position: relative; z-index: 1; }
.page-hero .breadcrumb {
  display: flex; gap: 10px; align-items: center;
  font-family: var(--sans);
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 32px;
}
.page-hero .breadcrumb a { color: var(--text-mid); transition: var(--transition); }
.page-hero .breadcrumb a:hover { color: var(--moss); }
.page-hero h1 { max-width: 900px; margin-bottom: 16px; }
.page-hero p {
  font-family: var(--serif); font-style: italic; font-weight: 300;
  font-size: clamp(18px, 1.7vw, 22px);
  color: var(--ink-mid);
  max-width: 640px;
  line-height: 1.5;
}

/* ── SECTION HEADER ────────────────────────────────────────────────── */
.section-header { max-width: 760px; margin: 0 auto 72px; }
.section-header.center { text-align: center; }
.section-header h2 { margin-top: 16px; }
.section-header p { margin-top: 20px; max-width: 540px; font-size: 17px; line-height: 1.65; }
.section-header.center p { margin-left: auto; margin-right: auto; }

/* Editorial section header — left aligned, two columns */
.section-header--split {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
  max-width: var(--container); margin: 0 auto 80px;
  align-items: end;
}
@media (max-width: 900px) {
  .section-header--split { grid-template-columns: 1fr; gap: 24px; margin-bottom: 56px; }
}

/* ── TWO-TRACK SPLIT (Residential + Spray Painting) ────────────────── */
.split-track {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.split-track > .track {
  position: relative;
  padding: 64px 56px;
  background: var(--paper);
  transition: var(--transition);
  overflow: hidden;
  min-height: 540px;
  display: flex; flex-direction: column; justify-content: flex-end;
}
.split-track > .track::before {
  content: '';
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  z-index: 0;
  opacity: 0.18;
  transition: opacity 600ms var(--ease), transform 1.6s var(--ease);
}
.split-track > .track:hover::before { opacity: 0.32; transform: scale(1.04); }
.split-track > .track::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(246,241,232,0.95) 0%, rgba(246,241,232,0.78) 60%, rgba(246,241,232,0.94) 100%);
  z-index: 1;
}
.split-track .track-residential::before {
  background-image: linear-gradient(135deg, #6B7A5E 0%, #2E3D2E 100%);
}
.split-track .track-spray::before {
  background-image: linear-gradient(135deg, #322E29 0%, #13110F 100%);
}
.track-inner { position: relative; z-index: 2; max-width: 460px; }
.track-eyebrow {
  font-family: var(--sans); font-size: 11px;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--moss); font-weight: 600;
  margin-bottom: 24px;
  display: inline-flex; align-items: center; gap: 12px;
}
.track-eyebrow::before { content: '01'; font-family: var(--serif); font-size: 13px; color: var(--ink); font-weight: 400; }
.track-spray .track-eyebrow::before { content: '02'; }
.track-inner h3 {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(28px, 3vw, 40px);
  color: var(--ink); margin-bottom: 18px;
  line-height: 1.1;
  letter-spacing: -0.015em;
}
.track-inner p {
  font-size: 16px; color: var(--text-mid); line-height: 1.7;
  margin-bottom: 32px;
}
.track-inner .link-quiet { margin-top: 4px; }

@media (max-width: 900px) {
  .split-track { grid-template-columns: 1fr; }
  .split-track > .track { padding: 48px 32px; min-height: 380px; }
}

/* ── SERVICES GRID ─────────────────────────────────────────────────── */
.services-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px;
}
@media (max-width: 800px) { .services-grid { grid-template-columns: 1fr; } }

.service-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  padding: 44px 40px 40px;
  transition: var(--transition);
  display: flex; flex-direction: column;
  min-height: 360px;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0;
  width: 0; height: 2px; background: var(--moss);
  transition: width 400ms var(--ease);
}
.service-card:hover { box-shadow: var(--shadow-md); border-color: var(--line-strong); }
.service-card:hover::before { width: 100%; }
.service-card .num {
  font-family: var(--serif); font-style: italic; font-weight: 300;
  font-size: 13px; color: var(--moss);
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}
.service-card h3 { margin-bottom: 12px; font-weight: 500; }
.service-card > p { font-size: 15px; color: var(--text-mid); line-height: 1.7; }
.service-card ul { margin-top: 24px; }
.service-card li {
  font-family: var(--sans); font-size: 13px;
  padding: 10px 0;
  color: var(--text-mid);
  border-bottom: 1px solid var(--line);
  display: flex; align-items: center; gap: 12px;
}
.service-card li:last-child { border-bottom: 0; }
.service-card li::before {
  content: ''; flex-shrink: 0;
  width: 5px; height: 5px; background: var(--moss);
  border-radius: 50%;
}
.service-card .link-quiet { margin-top: auto; padding-top: 28px; align-self: flex-start; }

/* ── PROJECT CARDS ─────────────────────────────────────────────────── */
.projects-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.projects-grid--featured {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 32px;
}
.projects-grid--featured .project-card:first-child .project-thumb { aspect-ratio: 16/11; }
@media (max-width: 1000px) {
  .projects-grid { grid-template-columns: repeat(2, 1fr); }
  .projects-grid--featured { grid-template-columns: 1fr; }
}
@media (max-width: 600px) { .projects-grid { grid-template-columns: 1fr; } }

.project-card { display: block; transition: var(--transition); }
.project-card:hover { transform: translateY(-4px); }
.project-thumb {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--paper-deep);
  margin-bottom: 24px;
}
.project-thumb img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1200ms var(--ease);
}
.project-card:hover .project-thumb img { transform: scale(1.04); }
.project-thumb-placeholder {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--paper-deep), var(--paper-warm));
  display: grid; place-items: center;
  color: var(--text-faint);
  font-family: var(--serif); font-style: italic; font-size: 14px;
  letter-spacing: 0.02em;
}
.project-thumb-placeholder::after {
  content: ''; position: absolute; inset: 0;
  background: repeating-linear-gradient(45deg, transparent, transparent 14px, rgba(19,17,15,0.025) 14px, rgba(19,17,15,0.025) 15px);
}
.project-thumb-placeholder span {
  position: relative; z-index: 1;
  background: rgba(246,241,232,0.9);
  padding: 6px 14px;
  border: 1px solid var(--line);
}
.project-tags {
  position: absolute; top: 16px; left: 16px; right: 16px;
  display: flex; justify-content: space-between; gap: 8px; z-index: 2;
}
.tag {
  padding: 5px 12px;
  font-family: var(--sans); font-size: 10px;
  font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
}
.tag-cat { background: var(--moss); color: var(--on-dark); }
.tag-year { background: rgba(246,241,232,0.94); color: var(--ink); backdrop-filter: blur(6px); }

.project-info { padding: 0 4px; }
.project-info .loc {
  font-family: var(--sans); font-size: 11px;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--text-muted); margin-bottom: 10px;
}
.project-info h3 {
  font-size: 22px; margin-bottom: 10px;
  font-weight: 500;
}
.project-info p { font-size: 14px; color: var(--text-mid); line-height: 1.65; }

/* Project filter */
.filter-bar {
  display: flex; justify-content: center; gap: 6px;
  margin-bottom: 64px; flex-wrap: wrap;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}
.filter-btn {
  padding: 9px 18px;
  font-family: var(--sans);
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--text-muted);
  background: transparent;
  border: 1px solid transparent;
  transition: var(--transition);
}
.filter-btn:hover { color: var(--ink); }
.filter-btn.active { color: var(--ink); border-color: var(--ink); }

/* ── PROCESS STEPS ─────────────────────────────────────────────────── */
.process-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.process-step {
  padding: 44px 32px;
  border-right: 1px solid var(--line);
  position: relative;
}
.process-step:last-child { border-right: 0; }
.process-step::before {
  content: ''; position: absolute; top: -1px; left: 0;
  width: 0; height: 1px; background: var(--moss);
  transition: width 600ms var(--ease);
}
.process-step:hover::before { width: 100%; }
.process-step .num {
  font-family: var(--serif); font-style: italic; font-weight: 300;
  font-size: 42px; color: var(--moss);
  letter-spacing: -0.02em;
  line-height: 1; margin-bottom: 24px;
}
.process-step h4 {
  font-family: var(--serif); font-weight: 500;
  font-size: 20px; color: var(--ink);
  margin-bottom: 12px;
  letter-spacing: -0.005em;
}
.process-step p { font-size: 14px; color: var(--text-mid); line-height: 1.65; }
@media (max-width: 900px) {
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .process-step { border-bottom: 1px solid var(--line); }
  .process-step:nth-child(2) { border-right: 0; }
}
@media (max-width: 540px) {
  .process-grid { grid-template-columns: 1fr; }
  .process-step { border-right: 0; }
}

/* ── APPLICATIONS GRID (spray painting page) ───────────────────────── */
.apps-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: var(--line);
  border: 1px solid var(--line);
}
.app-tile {
  background: var(--paper);
  padding: 36px 32px 32px;
  transition: var(--transition);
  position: relative;
  min-height: 220px;
  display: flex; flex-direction: column; justify-content: space-between;
}
.app-tile:hover { background: var(--white); }
.app-tile::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 2px; background: var(--moss);
  transition: width 400ms var(--ease);
}
.app-tile:hover::after { width: 40px; }
.app-tile .num {
  font-family: var(--serif); font-style: italic; font-weight: 300;
  font-size: 12px; color: var(--moss);
  letter-spacing: 0.04em;
}
.app-tile h4 {
  font-family: var(--serif); font-weight: 500;
  font-size: 22px; color: var(--ink);
  margin: 16px 0 10px;
  letter-spacing: -0.005em;
  line-height: 1.15;
}
.app-tile p { font-size: 13px; color: var(--text-mid); line-height: 1.65; }
@media (max-width: 900px) { .apps-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .apps-grid { grid-template-columns: 1fr; } }

/* ── SECTORS LIST ──────────────────────────────────────────────────── */
.sectors-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
}
.sector-pill {
  padding: 16px 20px;
  background: var(--paper);
  border: 1px solid var(--line);
  font-family: var(--sans);
  font-size: 13px; font-weight: 500;
  color: var(--text-mid);
  display: flex; align-items: center; gap: 12px;
  transition: var(--transition);
}
.sector-pill:hover {
  background: var(--white);
  border-color: var(--moss-line);
  color: var(--ink);
}
.sector-pill::before {
  content: ''; width: 6px; height: 6px;
  background: var(--moss); flex-shrink: 0;
  border-radius: 50%;
}
@media (max-width: 800px) { .sectors-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .sectors-grid { grid-template-columns: 1fr; } }

/* ── ACCREDITATIONS STRIP ──────────────────────────────────────────── */
.accred-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 36px 0;
}
.accred-grid {
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 24px;
  align-items: center;
}
.accred-logo {
  display: flex; align-items: center; justify-content: center;
  padding: 12px;
  color: var(--text-muted);
  font-family: var(--serif);
  font-weight: 500; font-size: 14px;
  letter-spacing: 0.02em;
  text-align: center;
  min-height: 56px;
  border: 1px solid var(--line);
  background: var(--white);
  transition: var(--transition);
}
.accred-logo:hover { color: var(--ink); border-color: var(--moss-line); }
.accred-logo small {
  display: block;
  font-family: var(--sans); font-size: 9px; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  margin-top: 2px; color: var(--text-faint);
}
@media (max-width: 900px) { .accred-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 480px) { .accred-grid { grid-template-columns: repeat(2, 1fr); } }

/* ── CREDENTIALS BAR (replaces the old "stat bar") ─────────────────── */
.cred-bar {
  background: var(--paper-warm);
  border-bottom: 1px solid var(--line);
}
.cred-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  max-width: var(--container-lg); margin: 0 auto;
}
.cred-item {
  padding: 40px 28px;
  border-right: 1px solid var(--line);
  text-align: center;
}
.cred-item:last-child { border-right: 0; }
.cred-item .label {
  font-family: var(--sans); font-size: 10px; font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.22em; text-transform: uppercase;
  margin-bottom: 12px;
}
.cred-item .value {
  font-family: var(--serif); font-weight: 400;
  font-size: 24px; color: var(--ink);
  letter-spacing: -0.01em; line-height: 1.2;
}
.cred-item .value em { color: var(--moss); font-style: italic; font-weight: 300; }
@media (max-width: 800px) {
  .cred-grid { grid-template-columns: repeat(2, 1fr); }
  .cred-item:nth-child(2) { border-right: 0; }
  .cred-item:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
}

/* ── FEATURED PROJECT (Chelsea) ────────────────────────────────────── */
.featured-project {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.featured-project .image {
  aspect-ratio: 4/5;
  background: var(--paper-deep);
  overflow: hidden;
  position: relative;
}
.featured-project .image img { width: 100%; height: 100%; object-fit: cover; }
.featured-project .body { max-width: 480px; }
.featured-project .meta {
  font-family: var(--sans); font-size: 11px;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--moss); margin-bottom: 24px;
  display: flex; gap: 18px; flex-wrap: wrap;
}
.featured-project h2 { margin-bottom: 28px; }
.featured-project .lede { margin-bottom: 28px; }
.featured-project p { font-size: 16px; color: var(--text-mid); line-height: 1.75; }
.featured-project .detail-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
  margin-top: 36px; padding-top: 32px; border-top: 1px solid var(--line);
}
.featured-project .detail-row dt {
  font-family: var(--sans); font-size: 10px; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--text-muted); margin-bottom: 6px;
}
.featured-project .detail-row dd {
  font-family: var(--serif); font-size: 17px; color: var(--ink);
}
@media (max-width: 900px) {
  .featured-project { grid-template-columns: 1fr; gap: 48px; }
  .featured-project .image { aspect-ratio: 4/3; }
}

/* ── REVIEWS / SOCIAL PROOF (empty-state ready) ────────────────────── */
.reviews {
  text-align: center;
  max-width: 760px; margin: 0 auto;
}
.reviews-empty {
  border: 1px dashed var(--line-strong);
  padding: 56px 40px;
  background: var(--paper);
  margin-top: 32px;
}
.reviews-empty .icon {
  width: 48px; height: 48px; margin: 0 auto 24px;
  border: 1px solid var(--moss); color: var(--moss);
  display: grid; place-items: center;
  font-family: var(--serif); font-style: italic; font-size: 20px;
}
.reviews-empty p {
  font-family: var(--serif); font-style: italic; font-size: 19px;
  color: var(--ink-mid); line-height: 1.5;
  max-width: 480px; margin: 0 auto;
}
.reviews-empty .source {
  font-family: var(--sans); font-size: 11px; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--text-muted); margin-top: 24px;
}

/* Review card (for when reviews exist) */
.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.review-card {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 36px 32px 32px;
  position: relative;
  text-align: left;
}
.review-card::before {
  content: '"';
  position: absolute; top: 0; left: 32px;
  font-family: var(--serif); font-size: 80px;
  line-height: 1; color: var(--moss);
  font-style: italic;
}
.review-stars {
  display: inline-flex; gap: 3px;
  font-size: 13px; color: var(--moss);
  letter-spacing: 2px;
  margin-top: 28px; margin-bottom: 18px;
}
.review-text {
  font-family: var(--serif); font-style: italic; font-weight: 300;
  font-size: 16px; line-height: 1.65;
  color: var(--ink-mid);
  margin-bottom: 24px;
}
.review-author {
  font-family: var(--sans); font-size: 12px; font-weight: 600;
  color: var(--ink);
}
.review-author small {
  display: block; font-weight: 400; color: var(--text-muted);
  margin-top: 2px;
}
@media (max-width: 900px) { .review-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; } }

/* ── FAQ (for spray painting page) ─────────────────────────────────── */
.faq-list { max-width: 880px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-item:first-child { border-top: 1px solid var(--line); }
.faq-q {
  width: 100%; text-align: left;
  padding: 28px 0;
  display: flex; justify-content: space-between; align-items: center; gap: 24px;
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(18px, 1.8vw, 22px);
  color: var(--ink); letter-spacing: -0.005em;
  transition: var(--transition);
}
.faq-q:hover { color: var(--moss); }
.faq-q .toggle {
  flex-shrink: 0; width: 28px; height: 28px;
  border: 1px solid var(--line-strong);
  display: grid; place-items: center;
  font-size: 16px; color: var(--ink-mid);
  transition: var(--transition);
}
.faq-item.open .toggle { background: var(--moss); border-color: var(--moss); color: var(--on-dark); transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 400ms var(--ease), padding 400ms var(--ease);
}
.faq-item.open .faq-a { max-height: 600px; padding-bottom: 28px; }
.faq-a p {
  font-size: 16px; line-height: 1.7; color: var(--text-mid);
  max-width: 720px;
}
.faq-a p + p { margin-top: 12px; }

/* ── VALUES / WHY US ───────────────────────────────────────────────── */
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.value-card {
  padding: 44px 36px;
  background: var(--white);
  border: 1px solid var(--line);
  position: relative;
}
.value-card::before {
  content: ''; position: absolute; top: 0; left: 0;
  width: 32px; height: 2px; background: var(--moss);
}
.value-card .num {
  font-family: var(--serif); font-style: italic; font-weight: 300;
  font-size: 14px; color: var(--moss);
  margin-bottom: 18px;
}
.value-card h3 {
  font-weight: 500; font-size: 22px; margin-bottom: 14px;
}
.value-card p { font-size: 15px; color: var(--text-mid); line-height: 1.7; }

/* Dark variant — when .value-card sits inside a .bg-ink section */
.bg-ink .value-card {
  background: rgba(251,248,242,0.03);
  border-color: rgba(251,248,242,0.10);
}
.bg-ink .value-card::before { background: var(--sage); }
.bg-ink .value-card h3 { color: var(--on-dark); }
.bg-ink .value-card p { color: rgba(251,248,242,0.62); }
.bg-ink .value-card .num { color: var(--sage); }
.bg-ink .section-header--split .lede { color: rgba(251,248,242,0.78); }

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

/* ── ABOUT — STUDIO ────────────────────────────────────────────────── */
.studio-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 96px;
  align-items: center;
}
.studio-grid .image {
  aspect-ratio: 4/5;
  background: var(--paper-deep);
  overflow: hidden;
}
.studio-grid .image img { width: 100%; height: 100%; object-fit: cover; }
.studio-grid .body { max-width: 520px; }
.studio-grid h2 { margin-bottom: 32px; }
.studio-grid .lede { margin-bottom: 28px; }
.studio-grid p { font-size: 16px; color: var(--text-mid); line-height: 1.8; }
.studio-grid p + p { margin-top: 18px; }
@media (max-width: 900px) {
  .studio-grid { grid-template-columns: 1fr; gap: 48px; }
}

/* ── CONTACT ───────────────────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 80px;
}
.form-wrap {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 48px 44px;
}
.form-wrap h3 { margin-bottom: 8px; font-weight: 500; }
.form-wrap .form-intro {
  font-size: 14px; color: var(--text-muted);
  margin-bottom: 32px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { margin-bottom: 22px; }
.form-group label {
  display: block;
  font-family: var(--sans); font-size: 10px;
  font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--text-mid); margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid var(--line-strong);
  background: var(--paper);
  font-family: var(--sans); font-size: 16px;
  color: var(--ink);
  border-radius: 0;
  transition: var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: 0;
  border-color: var(--moss);
  background: var(--white);
  box-shadow: 0 0 0 3px var(--moss-soft);
}
.form-group textarea { resize: vertical; min-height: 140px; }
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--text-faint); }

/* Form submission status — success / error message */
.form-status {
  padding: 28px 32px;
  margin-bottom: 24px;
  border-radius: 0;
  font-family: var(--sans);
  border-left: 3px solid var(--moss);
  background: var(--paper-warm);
  animation: fadeUp 600ms var(--ease-out) both;
}
.form-status h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 22px;
  color: var(--ink);
  letter-spacing: -0.01em;
  margin: 0;
}
.form-status p {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.65;
  margin: 0;
}
.form-status--success {
  border-left-color: var(--moss);
  background: rgba(46,61,46,0.05);
}
.form-status--error {
  border-left-color: #A32D2D;
  background: rgba(163,45,45,0.05);
}
.form-status--error h3 { color: #791F1F; }

.contact-info h2 { margin-bottom: 20px; }
.contact-info > p {
  font-size: 16px; color: var(--text-mid); line-height: 1.7;
  margin-bottom: 36px;
}
.contact-cards { display: flex; flex-direction: column; gap: 1px; background: var(--line); border: 1px solid var(--line); }
.contact-card {
  display: flex; gap: 16px; padding: 22px 24px;
  background: var(--paper);
  transition: var(--transition);
}
.contact-card:hover { background: var(--white); }
.contact-card-icon {
  flex-shrink: 0;
  width: 36px; height: 36px;
  display: grid; place-items: center;
  background: var(--moss); color: var(--on-dark);
  font-family: var(--serif); font-size: 14px;
}
.contact-card h4 {
  font-family: var(--sans); font-size: 10px; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--text-muted); margin-bottom: 4px;
}
.contact-card p {
  font-family: var(--sans); font-size: 14px;
  color: var(--ink); line-height: 1.6;
}
.contact-card a { color: var(--ink); transition: var(--transition); }
.contact-card a:hover { color: var(--moss); }
@media (max-width: 1000px) {
  .contact-grid { grid-template-columns: 1fr; gap: 56px; }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 540px) {
  .form-wrap { padding: 32px 24px; }
}

/* ── AREA CHIPS ────────────────────────────────────────────────────── */
.chips { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; }
.chip {
  padding: 10px 18px;
  background: var(--white);
  border: 1px solid var(--line);
  font-family: var(--sans); font-size: 13px;
  color: var(--text-mid);
  transition: var(--transition);
}
.chip:hover {
  border-color: var(--moss-line);
  color: var(--moss);
  background: var(--paper);
}

/* ── CTA BANNER ────────────────────────────────────────────────────── */
.cta-banner {
  background: var(--ink);
  color: var(--on-dark);
  padding: 120px var(--gutter);
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0;
  width: 3px; background: var(--moss);
}
.cta-banner-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid; grid-template-columns: 1.4fr 1fr;
  gap: 80px; align-items: center;
}
.cta-banner h2 {
  color: var(--on-dark);
  font-weight: 300;
  font-size: clamp(36px, 4.4vw, 60px);
  margin-bottom: 24px;
}
.cta-banner h2 em { font-style: italic; color: rgba(251,248,242,0.85); }
.cta-banner p {
  font-family: var(--serif); font-style: italic; font-weight: 300;
  font-size: 19px; color: rgba(251,248,242,0.7); line-height: 1.55;
}
.cta-banner .buttons {
  display: flex; flex-direction: column; gap: 14px;
  justify-self: end; align-items: flex-end;
}
@media (max-width: 900px) {
  .cta-banner { padding: 80px var(--gutter); }
  .cta-banner-inner { grid-template-columns: 1fr; gap: 36px; }
  .cta-banner .buttons { justify-self: start; align-items: flex-start; flex-direction: row; flex-wrap: wrap; }
}

/* ── FOOTER ────────────────────────────────────────────────────────── */
.footer {
  background: var(--ink);
  color: var(--on-dark-mid);
  padding: 88px 0 32px;
  border-top: 1px solid rgba(251,248,242,0.06);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 56px;
  margin-bottom: 64px;
  padding: 0 var(--gutter);
  max-width: var(--container-lg); margin-left: auto; margin-right: auto;
}
.footer-brand p {
  font-family: var(--sans); font-size: 14px; line-height: 1.75;
  max-width: 320px; margin-top: 20px;
  color: var(--on-dark-mid);
}
.footer-brand .logo { margin-bottom: 4px; }
.footer-brand .logo-text strong { color: var(--on-dark); }
.footer-brand .logo-text small { color: var(--on-dark-faint); }
.footer-col h4 {
  font-family: var(--sans); font-size: 10px; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--on-dark); margin-bottom: 22px;
}
.footer-col li { margin-bottom: 12px; }
.footer-col a {
  font-family: var(--sans); font-size: 14px;
  color: var(--on-dark-mid);
  transition: var(--transition);
}
.footer-col a:hover { color: var(--on-dark); }
.footer-bottom {
  padding: 28px var(--gutter) 0;
  border-top: 1px solid rgba(251,248,242,0.08);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 16px;
  font-family: var(--sans); font-size: 12px;
  color: var(--on-dark-faint);
  max-width: var(--container-lg); margin-left: auto; margin-right: auto;
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; } }
@media (max-width: 540px) { .footer-grid { grid-template-columns: 1fr; gap: 32px; } }

/* ── MOBILE FLOATING CTA ───────────────────────────────────────────── */
.mobile-cta-float {
  display: none;
  position: fixed; bottom: 20px; right: 20px; left: 20px;
  z-index: 900;
}
@media (max-width: 720px) { .mobile-cta-float { display: flex; gap: 10px; } }
.mobile-cta-float a {
  flex: 1;
  background: var(--ink); color: var(--on-dark);
  padding: 14px 18px;
  font-family: var(--sans); font-size: 11px; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  box-shadow: var(--shadow-lg);
}
.mobile-cta-float a.primary { background: var(--moss); }

/* ── HORIZONTAL RULE ───────────────────────────────────────────────── */
.rule {
  width: 100%; height: 1px;
  background: var(--line);
  border: 0; margin: 0;
}
.rule-accent {
  width: 40px; height: 2px;
  background: var(--moss);
  border: 0;
  display: block;
}

/* ── UTILITY ───────────────────────────────────────────────────────── */
.tac { text-align: center; }
.tal { text-align: left; }
.mt-sm { margin-top: 24px; }
.mt-md { margin-top: 40px; }
.mt-lg { margin-top: 64px; }
.mb-md { margin-bottom: 40px; }
.flex-row { display: flex; gap: 14px; flex-wrap: wrap; }
.flex-center { display: flex; align-items: center; justify-content: center; gap: 14px; flex-wrap: wrap; }

/* ── PREFERS-REDUCED-MOTION ────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
}
