/* =========================================================
   PEARL IMPROVEMENTS — SHARED STYLES (v9 refresh)
   Editorial / honest-trade direction.
   - Display: Newsreader (variable, opsz)
   - UI:      Inter
   - Meta:    JetBrains Mono
========================================================= */

:root {
  /* Greens */
  --green:        #0F4D2A;
  --green-deep:   #073818;
  --green-soft:   #1B5E36;
  --green-mist:   #BFE8CC;
  --green-glow:   rgba(15,77,42,0.06);

  /* Neutrals — warmer than v8 */
  --ink:          #131211;       /* near-black, warm */
  --ink-soft:     #2A2724;
  --ink-mute:     rgba(19,18,17,0.65);
  --ink-line:     rgba(19,18,17,0.12);
  --bone:         #F7F2EA;       /* warm cream — fresh, Blank-Street-adjacent */
  --paper:        #ECE5D5;       /* alt section bg */
  --paper-deep:   #DDD3BD;
  --white:        #FBFAF6;

  /* Clay accent — used very sparingly (single-line dividers, micro-marks) */
  --clay:         oklch(0.58 0.07 50);

  /* Dark mode neutrals (used in dark sections) */
  --line-dark:    rgba(244,239,230,0.16);

  /* Shadows */
  --shadow-soft:  0 24px 60px -28px rgba(0,0,0,0.22);
  --shadow-deep:  0 50px 110px -40px rgba(0,0,0,0.45);

  /* Type */
  --display: 'Cormorant Garamond', 'Georgia', serif;
  --sans:    'Inter', system-ui, sans-serif;
  --mono:    'JetBrains Mono', ui-monospace, monospace;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  background: var(--bone);
  color: var(--ink);
  font-feature-settings: "ss01", "cv11";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  font-size: 16px;
  line-height: 1.5;
}
img, svg { display: block; max-width: 100%; }
::selection { background: var(--green); color: var(--bone); }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, textarea, select { font-family: inherit; }

.container { max-width: 1360px; margin: 0 auto; padding: 0 32px; }
.container-wide { max-width: 1560px; margin: 0 auto; padding: 0 32px; }

:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 3px;
  border-radius: 10px;
}

.skip-link {
  position: absolute;
  top: -100px; left: 24px;
  background: var(--green);
  color: var(--bone);
  padding: 12px 20px;
  z-index: 9999;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border-radius: 10px;
  transition: top 0.2s;
}
.skip-link:focus { top: 24px; }

/* =========================================================
   TOP SCROLL PROGRESS
========================================================= */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  width: 0%;
  background: var(--green);
  z-index: 200;
  transition: width 0.08s linear;
}

/* =========================================================
   NAV (single row, no separate topbar)
========================================================= */
.nav {
  position: sticky;
  top: 0;
  background: rgba(244,239,230,0.86);
  backdrop-filter: blur(22px) saturate(160%);
  -webkit-backdrop-filter: blur(22px) saturate(160%);
  border-bottom: 1px solid var(--ink-line);
  z-index: 80;
  transition: padding .25s ease, background .25s ease;
}
.nav-inner {
  max-width: 1560px;
  margin: 0 auto;
  padding: 18px 32px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 40px;
  transition: padding .25s ease;
}
.nav.scrolled .nav-inner { padding-top: 12px; padding-bottom: 12px; }
.logo-link { display: inline-block; }
.logo-svg { height: 56px; width: auto; display: block; transition: height .25s; }
.nav.scrolled .logo-svg { height: 44px; }

.nav-links {
  display: flex;
  gap: 36px;
  align-items: center;
  justify-content: center;
}
.nav-links > a {
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--ink);
  font-weight: 500;
  position: relative;
  padding: 6px 0;
  transition: color .2s;
}
.nav-links > a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 1px;
  background: var(--green);
  transition: width .3s ease;
}
.nav-links > a:hover { color: var(--green); }
.nav-links > a:hover::after,
.nav-links > a.active::after { width: 100%; }
.nav-links > a.active { color: var(--green); }

.nav-right {
  display: flex;
  align-items: center;
  gap: 20px;
}
.nav-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--ink);
  opacity: 0.78;
  transition: opacity .2s;
}
.nav-phone:hover { opacity: 1; color: var(--green); }
.nav-phone svg { width: 14px; height: 14px; }

.nav-cta {
  background: var(--ink);
  color: var(--bone);
  padding: 12px 20px;
  font-size: 12px;
  letter-spacing: 0.02em;
  font-weight: 500;
  border-radius: 999px;
  transition: all .3s ease;
  border: 1px solid var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.nav-cta:hover { background: var(--green); border-color: var(--green); }
.nav-cta .dot { width: 6px; height: 6px; background: #4ADE80; border-radius: 50%; }

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  width: 32px; height: 24px;
  position: relative;
}
.menu-toggle span {
  position: absolute;
  left: 0; right: 0;
  height: 1.5px;
  background: var(--ink);
  transition: all 0.3s;
}
.menu-toggle span:nth-child(1) { top: 5px; }
.menu-toggle span:nth-child(2) { top: 50%; transform: translateY(-50%); }
.menu-toggle span:nth-child(3) { bottom: 5px; }
.menu-toggle.open span:nth-child(1) { top: 50%; transform: translateY(-50%) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { bottom: 50%; transform: translateY(50%) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--bone);
  z-index: 70;
  padding: 96px 28px 40px;
  transform: translateY(-100%);
  transition: transform 0.4s cubic-bezier(0.22,1,0.36,1);
  display: flex;
  flex-direction: column;
  gap: 4px;
  overflow-y: auto;
}
.mobile-menu.open { transform: translateY(0); }
.mobile-menu a {
  font-family: var(--display);
  font-size: 40px;
  line-height: 1;
  color: var(--ink);
  padding: 18px 0;
  border-bottom: 1px solid var(--ink-line);
  letter-spacing: -0.02em;
  font-weight: 500;
}
.mobile-menu a.active { color: var(--green); }
.mobile-menu-meta {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--ink-line);
  font-family: var(--mono);
  font-size: 12px;
  color: var(--ink-mute);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.mobile-menu-meta a { font-size: 13px; padding: 0; border: none; font-family: var(--mono); }

/* =========================================================
   BUTTONS — quieter, more confident
========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 26px;
  font-size: 13px;
  letter-spacing: 0.02em;
  font-weight: 500;
  border-radius: 999px;
  transition: background .25s, color .25s, border-color .25s, transform .25s;
  border: 1px solid transparent;
  font-family: var(--sans);
}
.btn-primary { background: var(--green); color: var(--bone); }
.btn-primary:hover { background: var(--green-deep); }
.btn-dark { background: var(--ink); color: var(--bone); }
.btn-dark:hover { background: var(--green); }
.btn-ghost {
  background: transparent;
  color: var(--bone);
  border-color: rgba(244,239,230,0.5);
}
.btn-ghost:hover { background: var(--bone); color: var(--ink); border-color: var(--bone); }
.btn-outline-dark {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn-outline-dark:hover { background: var(--ink); color: var(--bone); }
.btn-outline-green {
  background: transparent;
  color: var(--green);
  border-color: var(--green);
}
.btn-outline-green:hover { background: var(--green); color: var(--bone); }
.btn-lg { padding: 20px 32px; font-size: 13.5px; }

.arrow {
  display: inline-block;
  width: 18px; height: 1px;
  background: currentColor;
  position: relative;
  transition: width .3s ease;
}
.arrow::after {
  content: '';
  position: absolute;
  right: 0; top: -3px;
  width: 7px; height: 7px;
  border-right: 1px solid currentColor;
  border-top: 1px solid currentColor;
  transform: rotate(45deg);
}
.btn:hover .arrow { width: 28px; }
a.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--green);
  padding-bottom: 4px;
  border-bottom: 1px solid currentColor;
  transition: gap .25s;
}
a.text-link:hover { gap: 14px; }

/* =========================================================
   TYPE PRIMITIVES
========================================================= */
.eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--green);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::before {
  content: '';
  width: 28px;
  height: 1px;
  background: currentColor;
}
.eyebrow.no-rule::before { display: none; }
.eyebrow-light {
  color: var(--green-mist);
}

.display-title {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(48px, 6.2vw, 92px);
  line-height: 0.96;
  letter-spacing: -0.025em;
  color: var(--ink);
}
.display-title em {
  font-style: italic;
  color: var(--green);
  font-weight: 400;
}
.display-xl {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(56px, 8.5vw, 132px);
  line-height: 0.94;
  letter-spacing: -0.035em;
}
.display-md {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(36px, 4.4vw, 64px);
  line-height: 1;
  letter-spacing: -0.02em;
}

.lede {
  font-family: var(--sans);
  font-size: 18px;
  line-height: 1.55;
  color: var(--ink-mute);
  font-weight: 400;
  max-width: 540px;
}
.lede-lg {
  font-family: var(--display);
  font-size: clamp(22px, 2.2vw, 28px);
  line-height: 1.4;
  color: var(--ink);
  font-weight: 400;
  max-width: 720px;
}

.section-num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

/* =========================================================
   SECTION SCAFFOLD
========================================================= */
section { padding: 120px 0; position: relative; }
.section-head {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  margin-bottom: 72px;
  align-items: end;
}
.section-head .eyebrow { margin-bottom: 16px; }

/* Bone / paper / ink section variants */
.sec-paper { background: var(--paper); }
.sec-ink {
  background: var(--ink);
  color: var(--bone);
}
.sec-ink .display-title,
.sec-ink .display-md,
.sec-ink .lede,
.sec-ink .lede-lg { color: var(--bone); }
.sec-ink .display-title em,
.sec-ink .display-md em { color: var(--green-mist); }
.sec-ink .section-num { color: rgba(244,239,230,0.5); }

.sec-green {
  background: var(--green);
  color: var(--bone);
}
.sec-green .display-title em { color: var(--green-mist); }

/* =========================================================
   PHOTO PLATE — placeholder system + real img wrapper
   Use this for ALL imagery slots. When Riley supplies a
   real photo, swap the inner content for an <img>.
========================================================= */
.photo {
  position: relative;
  background:
    linear-gradient(135deg, #1c1916 0%, #0e0c0b 100%);
  color: rgba(244,239,230,0.7);
  overflow: hidden;
  border-radius: 10px;
  isolation: isolate;
}
.photo::before {
  /* fine diagonal weave — reads as 'placeholder' without being noisy */
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(135deg,
      rgba(244,239,230,0.04) 0 1px,
      transparent 1px 14px);
  pointer-events: none;
  z-index: 1;
}
.photo::after {
  /* subtle vignette + warm tint */
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 30%, rgba(191,232,204,0.06), transparent 60%),
    linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.5) 100%);
  pointer-events: none;
  z-index: 1;
}
.photo > img {
  width: 100%; height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  z-index: 2;
  transition: transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}
.photo:hover > img { transform: scale(1.055); }
.photo[data-loaded="true"]::before,
.photo[data-loaded="true"]::after { display: none; }
.photo[data-loaded="true"] > .photo-plate,
.photo[data-loaded="true"] > .photo-num,
.photo[data-loaded="true"] > .photo-label { display: none; }

.photo-plate {
  position: absolute;
  top: 20px; left: 20px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(244,239,230,0.55);
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.photo-plate::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--green-mist);
  opacity: 0.7;
}
.photo-num {
  position: absolute;
  top: 20px; right: 20px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(244,239,230,0.4);
  z-index: 3;
}
.photo-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 20px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(244,239,230,0.78);
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.photo-label .pl-title { color: var(--green-mist); font-size: 12px; letter-spacing: 0.18em; }
.photo-label .pl-meta { font-size: 10px; color: rgba(244,239,230,0.55); }

/* Photo aspect helpers */
.photo.ratio-45 { aspect-ratio: 4/5; }
.photo.ratio-43 { aspect-ratio: 4/3; }
.photo.ratio-11 { aspect-ratio: 1/1; }
.photo.ratio-169 { aspect-ratio: 16/9; }
.photo.ratio-32 { aspect-ratio: 3/2; }
.photo.ratio-34 { aspect-ratio: 3/4; }
.photo.ratio-56 { aspect-ratio: 5/6; }
.photo.tall { aspect-ratio: 3/4; }
.photo.wide { aspect-ratio: 16/9; }
.photo.full { width: 100%; height: 100%; aspect-ratio: auto; }

/* Hover lift for clickable photo cards */
.photo-card {
  transition: transform .5s cubic-bezier(0.22,1,0.36,1), box-shadow .5s;
  box-shadow: 0 20px 50px -30px rgba(0,0,0,0.25);
}
.photo-card:hover { transform: translateY(-4px); box-shadow: 0 30px 70px -25px rgba(0,0,0,0.35); }

/* =========================================================
   TRUST STRIP — slim, single line below hero
========================================================= */
.trust-strip {
  background: var(--bone);
  border-top: 1px solid var(--ink-line);
  border-bottom: 1px solid var(--ink-line);
  padding: 22px 0;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.trust-strip-inner {
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  white-space: nowrap;
}
.trust-pill svg { width: 14px; height: 14px; color: var(--green); flex-shrink: 0; }
.trust-pill strong { color: var(--green); font-weight: 600; font-family: var(--mono); }

/* =========================================================
   MARQUEE (kept available but used very sparingly)
========================================================= */
.marquee {
  background: var(--paper);
  padding: 28px 0;
  overflow: hidden;
  border-bottom: 1px solid var(--ink-line);
  border-top: 1px solid var(--ink-line);
}
.marquee-track {
  display: flex;
  gap: 48px;
  white-space: nowrap;
  animation: scroll 60s linear infinite;
  font-family: var(--display);
  font-size: 36px;
  font-weight: 500;
  align-items: center;
}
.marquee-track .word { color: var(--ink); }
.marquee-track .word.accent { color: var(--green); font-style: italic; font-weight: 300; }
.marquee-track .sep { font-size: 10px; color: var(--clay); }
@keyframes scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* =========================================================
   PAGE HEADER (inner pages)
========================================================= */
.page-header {
  background: var(--ink);
  color: var(--bone);
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}
.page-header::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 85% 30%, rgba(15,77,42,0.4), transparent 55%);
  pointer-events: none;
}
.page-header-inner {
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 32px;
  position: relative;
  z-index: 2;
}
.breadcrumb {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green-mist);
  margin-bottom: 32px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.breadcrumb a { color: rgba(244,239,230,0.55); transition: color .2s; }
.breadcrumb a:hover { color: var(--bone); }
.breadcrumb-sep { color: rgba(244,239,230,0.3); }
.page-header h1 {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(52px, 7vw, 116px);
  line-height: 0.95;
  letter-spacing: -0.035em;
  margin-bottom: 28px;
}
.page-header h1 em { font-style: italic; color: var(--green-mist); font-weight: 400; }
.page-header .page-lede {
  font-family: var(--sans);
  font-size: 18px;
  line-height: 1.55;
  color: rgba(244,239,230,0.78);
  max-width: 640px;
  font-weight: 400;
}

/* =========================================================
   FOOTER
========================================================= */
footer {
  background: var(--ink);
  color: var(--bone);
  padding: 96px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 64px;
  padding-bottom: 56px;
  margin-bottom: 32px;
  border-bottom: 1px solid var(--line-dark);
}
.footer-brand p {
  margin-top: 22px;
  font-family: var(--sans);
  font-size: 14.5px;
  line-height: 1.6;
  color: rgba(244,239,230,0.65);
  max-width: 340px;
}
.footer-col h5 {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--green-mist);
  margin-bottom: 22px;
}
.footer-col a {
  display: block;
  color: rgba(244,239,230,0.7);
  font-size: 14px;
  margin-bottom: 12px;
  transition: color .2s, transform .2s;
}
.footer-col a:hover { color: var(--bone); transform: translateX(3px); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(244,239,230,0.4);
  flex-wrap: wrap;
  gap: 16px;
}
.footer-wordmark {
  font-family: var(--display);
  font-size: clamp(72px, 13vw, 200px);
  font-weight: 400;
  line-height: 0.9;
  color: rgba(15,77,42,0.5);
  margin: 64px 0 40px;
  letter-spacing: -0.04em;
  text-align: center;
}
.footer-wordmark em { font-style: italic; color: rgba(191,232,204,0.16); }

/* =========================================================
   STICKY MOBILE BAR
========================================================= */
.sticky-mobile { display: none; }
@media (max-width: 768px) {
  .sticky-mobile {
    display: flex;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    background: rgba(19,18,17,0.96);
    backdrop-filter: blur(16px);
    z-index: 50;
    padding: 10px;
    gap: 8px;
    border-top: 1px solid rgba(244,239,230,0.12);
    padding-bottom: max(10px, env(safe-area-inset-bottom));
  }
  .sticky-mobile a {
    flex: 1;
    text-align: center;
    padding: 14px 12px;
    font-family: var(--sans);
    font-size: 12px;
    letter-spacing: 0.06em;
    font-weight: 500;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
  }
  .sticky-mobile .call { background: rgba(244,239,230,0.1); color: var(--bone); border: 1px solid rgba(244,239,230,0.18); }
  .sticky-mobile .quote { background: var(--green); color: var(--bone); }
  body { padding-bottom: 78px; }
}

/* =========================================================
   REVEAL ANIMATIONS
========================================================= */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .9s cubic-bezier(0.22,1,0.36,1), transform .9s cubic-bezier(0.22,1,0.36,1);
}
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .8s cubic-bezier(0.22,1,0.36,1), transform .8s cubic-bezier(0.22,1,0.36,1);
}
.reveal-stagger.in > * { opacity: 1; transform: translateY(0); }
.reveal-stagger.in > *:nth-child(1) { transition-delay: 0s; }
.reveal-stagger.in > *:nth-child(2) { transition-delay: 0.06s; }
.reveal-stagger.in > *:nth-child(3) { transition-delay: 0.12s; }
.reveal-stagger.in > *:nth-child(4) { transition-delay: 0.18s; }
.reveal-stagger.in > *:nth-child(5) { transition-delay: 0.24s; }
.reveal-stagger.in > *:nth-child(6) { transition-delay: 0.30s; }

/* =========================================================
   PAGE LOAD FADE
========================================================= */
body { animation: pageLoad 0.5s ease-out; }
@keyframes pageLoad { from { opacity: 0; } to { opacity: 1; } }

/* =========================================================
   RESPONSIVE
========================================================= */
@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 48px; }
  .section-head { grid-template-columns: 1fr; gap: 24px; align-items: start; }
}

@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-phone { display: none; }
  .nav-cta { display: none; }
  .menu-toggle { display: block; justify-self: end; }
  .nav-inner { grid-template-columns: auto 1fr; }
  section { padding: 84px 0; }
  .trust-strip { padding: 16px 0; font-size: 10px; letter-spacing: 0.14em; }
  .trust-strip-inner { gap: 16px 24px; justify-content: flex-start; }
  .marquee-track { font-size: 28px; }
  .page-header { padding: 80px 0 56px; }
  .footer-wordmark { margin: 40px 0 28px; }
  .footer-bottom { font-size: 10px; }
}

@media (max-width: 600px) {
  .container, .container-wide, .nav-inner, .page-header-inner { padding-left: 20px; padding-right: 20px; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 8px; }
  .trust-strip-inner > :nth-child(n+4) { display: none; }
  .logo-svg { height: 44px; }
}

/* =========================================================
   REDUCED MOTION
========================================================= */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.15s !important;
  }
  .marquee-track { animation: none; }
}
/* prevent horizontal scroll from full-bleed/100vw elements on all viewports (keeps sticky nav working) */
html, body { overflow-x: clip; max-width: 100%; }


/* Small designer credit — contact page footer only */
.footer-credit {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.08);
  text-align: center;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  line-height: 1.7;
  color: rgba(255,255,255,0.30);
}
.footer-credit a {
  color: rgba(255,255,255,0.48);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color .2s ease;
}
.footer-credit a:hover { color: rgba(255,255,255,0.85); }


/* Service photo gallery strip (services) */
.svc-gallery { display:grid; grid-template-columns:repeat(3,1fr); gap:14px; margin-top:clamp(26px,4vw,50px); }
.svc-gallery .sg-item { margin:0; border-radius:16px; overflow:hidden; aspect-ratio:3/4; background:#e9e6df; }
.svc-gallery .sg-item img { width:100%; height:100%; object-fit:cover; display:block; transition:transform .6s cubic-bezier(.2,.7,.2,1); }
.svc-gallery .sg-item:hover img { transform:scale(1.045); }
@media (max-width:760px){
  .svc-gallery { grid-template-columns:1fr 1fr; gap:10px; }
  .svc-gallery .sg-item:nth-child(3){ grid-column:1 / -1; aspect-ratio:16/10; }
}


/* Captioned gallery (before / during / after) */
.svc-gallery .sg-item { position: relative; }
.svc-gallery.captioned .sg-item figcaption {
  position: absolute; top: 10px; left: 10px;
  background: rgba(10,10,10,0.70); color: #F4EFE6;
  font-family: var(--mono); font-size: 9.5px; letter-spacing: 0.14em; text-transform: uppercase;
  padding: 5px 11px; border-radius: 999px;
}


/* Labels above before/during/after galleries */
.svc-gallery-label { font-family: var(--mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--green); margin: clamp(28px,4.5vw,52px) 0 12px; }
.svc-gallery-label + .svc-gallery { margin-top: 0; }
