/* ==========================================================================
   Pacific Earthworks LLC — Design System
   Premium monochrome (charcoal / bone / warm stone). Industrial-refined.
   Built by OptiPath. Mobile-first.
   ========================================================================== */

/* ---------- Tokens ---------- */
:root {
  /* Brand monochrome palette */
  --ink-900: #101214;   /* near-black, header/footer/CTA */
  --ink-800: #181b1e;
  --ink-700: #22262a;
  --ink:     #14171a;   /* primary text */
  --stone-700: #3c4248;
  --stone-600: #5a6168; /* secondary text */
  --stone-500: #7c838a;
  --stone-400: #a7adb3;
  --stone-300: #cdd1d5;
  --stone-200: #e3e5e7; /* hairlines */
  --stone-100: #eeeff0;
  --bone:    #f5f3ee;   /* warm page background */
  --bone-2:  #efece4;   /* alt section */
  --paper:   #ffffff;

  --line: var(--stone-200);
  --line-dark: rgba(255,255,255,.14);

  /* Accent kept monochrome per brand (the equipment in photos is the colour pop).
     Single variable so a colour can be introduced site-wide later if desired. */
  --accent: var(--ink-900);
  --accent-contrast: var(--bone);
  --focus: #2d6cdf; /* accessibility focus ring only */

  /* Type */
  --font-head: "Archivo", "Helvetica Neue", system-ui, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;

  /* Rhythm */
  --container: 1240px;
  --container-narrow: 880px;
  --gutter: clamp(1.1rem, 4vw, 2.2rem);
  --section-y: clamp(3.6rem, 8vw, 7rem);
  --radius: 4px;
  --radius-lg: 8px;

  --shadow-sm: 0 1px 2px rgba(16,18,20,.06), 0 1px 3px rgba(16,18,20,.04);
  --shadow-md: 0 10px 24px -10px rgba(16,18,20,.22), 0 4px 10px -6px rgba(16,18,20,.14);
  --shadow-lg: 0 26px 60px -22px rgba(16,18,20,.40);

  --ease: cubic-bezier(.22,.61,.36,1);
  --t: .35s var(--ease);
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bone);
  line-height: 1.65;
  font-size: 1.0125rem;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, picture, svg, video { display: block; max-width: 100%; height: auto; }
[id] { scroll-margin-top: 96px; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
ul[class] { list-style: none; padding: 0; }
:focus-visible { outline: 3px solid var(--focus); outline-offset: 2px; border-radius: 2px; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 600;
  line-height: 1.06;
  letter-spacing: .01em;
  color: var(--ink-900);
  text-wrap: balance;
}
h1 { font-size: clamp(2.4rem, 6.2vw, 4.25rem); font-weight: 700; }
h2 { font-size: clamp(1.9rem, 4.4vw, 3rem); }
h3 { font-size: clamp(1.3rem, 2.4vw, 1.7rem); font-weight: 600; }
h4 { font-size: 1.12rem; letter-spacing: .02em; }
p { text-wrap: pretty; }
strong { font-weight: 600; color: var(--ink-900); }

.eyebrow {
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: .26em;
  font-size: .8rem;
  font-weight: 500;
  color: var(--stone-600);
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  margin-bottom: 1.1rem;
}
.eyebrow::before {
  content: "";
  width: 30px; height: 2px;
  background: var(--ink-900);
  display: inline-block;
}
.eyebrow--light { color: rgba(255,255,255,.72); }
.eyebrow--light::before { background: var(--bone); }
.eyebrow--center { justify-content: center; }

.lead { font-size: clamp(1.05rem, 1.7vw, 1.22rem); color: var(--stone-700); line-height: 1.7; }
.muted { color: var(--stone-600); }

/* ---------- Layout utilities ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.container--narrow { max-width: var(--container-narrow); }
.section { padding-block: var(--section-y); }
.section--tight { padding-block: clamp(2.4rem, 5vw, 4rem); }
.section--ink { background: var(--ink-900); color: var(--stone-300); }
.section--ink h1,.section--ink h2,.section--ink h3 { color: #fff; }
.section--alt { background: var(--bone-2); }
.section--paper { background: var(--paper); }

.section-head { max-width: 720px; margin-bottom: clamp(2rem, 4vw, 3.2rem); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head p { margin-top: 1rem; }

.grid { display: grid; gap: clamp(1.1rem, 2.4vw, 1.8rem); }
.cols-2 { grid-template-columns: repeat(2, 1fr); }
.cols-3 { grid-template-columns: repeat(3, 1fr); }
.cols-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 960px) { .cols-3, .cols-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .cols-2, .cols-3, .cols-4 { grid-template-columns: 1fr; } }

.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 200;
  background: var(--ink-900); color: #fff; padding: .8rem 1.2rem; border-radius: 0 0 6px 0;
}
.skip-link:focus { left: 0; }

/* ---------- Buttons ---------- */
.btn {
  --bg: var(--ink-900); --fg: var(--bone); --bd: var(--ink-900);
  display: inline-flex; align-items: center; justify-content: center; gap: .6rem;
  font-family: var(--font-head); font-weight: 500; letter-spacing: .07em; text-transform: uppercase;
  font-size: .9rem; line-height: 1;
  padding: 1.05rem 1.7rem;
  background: var(--bg); color: var(--fg);
  border: 1.5px solid var(--bd); border-radius: var(--radius);
  transition: transform var(--t), background var(--t), color var(--t), box-shadow var(--t), border-color var(--t);
  will-change: transform;
}
.btn:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.btn:active { transform: translateY(-1px); }
.btn .arrow { transition: transform var(--t); }
.btn:hover .arrow { transform: translateX(4px); }

.btn--light { --bg: var(--bone); --fg: var(--ink-900); --bd: var(--bone); }
.btn--ghost { --bg: transparent; --fg: var(--ink-900); --bd: var(--stone-300); }
.btn--ghost:hover { --bg: var(--ink-900); --fg: var(--bone); --bd: var(--ink-900); }
.btn--ghost-light { --bg: transparent; --fg: #fff; --bd: rgba(255,255,255,.4); }
.btn--ghost-light:hover { --bg: #fff; --fg: var(--ink-900); --bd:#fff; }
.btn--lg { padding: 1.2rem 2.1rem; font-size: .98rem; }
.btn--block { width: 100%; }

.btn-row { display: flex; flex-wrap: wrap; gap: .9rem; align-items: center; }
.btn-row--center { justify-content: center; }

/* Text link with arrow */
.link-arrow {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--font-head); font-weight: 500; letter-spacing: .06em; text-transform: uppercase; font-size: .86rem;
  color: var(--ink-900); border-bottom: 2px solid transparent; padding-bottom: 2px; transition: gap var(--t), border-color var(--t); width: fit-content;
}
.link-arrow:hover { gap: .85rem; border-color: var(--ink-900); }
.section--ink .link-arrow { color: #fff; }
.section--ink .link-arrow:hover { border-color: #fff; }

/* ---------- Utility top bar ---------- */
.topbar {
  background: var(--ink-900);
  color: var(--stone-400);
  font-size: .82rem;
  border-bottom: 1px solid var(--line-dark);
}
.topbar .container { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: 42px; }
.topbar a { color: var(--stone-300); transition: color var(--t); display: inline-flex; align-items: center; gap: .4rem; }
.topbar a:hover { color: #fff; }
.topbar__list { display: flex; gap: 1.5rem; align-items: center; flex-wrap: wrap; }
.topbar__list li { display: inline-flex; align-items: center; gap: .45rem; }
.topbar__list svg { width: 15px; height: 15px; opacity: .8; }
.topbar__cta { font-family: var(--font-head); letter-spacing: .12em; text-transform: uppercase; }
@media (max-width: 860px) { .topbar__hide { display: none; } .topbar .container { justify-content: center; } }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: var(--ink-900);
  border-bottom: 1px solid var(--line-dark);
  transition: box-shadow var(--t), background var(--t);
}
.site-header.is-stuck { box-shadow: 0 8px 30px -12px rgba(0,0,0,.6); }
.nav { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; min-height: 76px; }

.brand { display: inline-flex; align-items: center; gap: .8rem; }
.brand img { height: 56px; width: auto; }
.brand__text { display: none; } /* full logo image already includes the wordmark */
@media (max-width: 420px){ .brand img{height:46px;} }

.nav__menu { display: flex; align-items: center; gap: .35rem; }
.nav__menu > li { position: relative; }
.nav__link {
  display: inline-flex; align-items: center; gap: .35rem;
  font-family: var(--font-head); font-weight: 500; letter-spacing: .08em; text-transform: uppercase; font-size: .86rem;
  color: var(--stone-300); padding: .7rem .85rem; border-radius: var(--radius);
  transition: color var(--t), background var(--t);
}
.nav__link:hover, .nav__link[aria-current="page"] { color: #fff; }
.nav__link[aria-current="page"] { box-shadow: inset 0 -2px 0 #fff; border-radius: 0; }
.nav__link .chev { width: 12px; height: 12px; transition: transform var(--t); }

/* Dropdown (services) */
.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.has-dropdown:hover .chev { transform: rotate(180deg); }
.dropdown {
  position: absolute; top: calc(100% + 6px); left: 50%; transform: translate(-50%, 8px);
  background: var(--paper); color: var(--ink); border: 1px solid var(--line); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg); padding: .8rem; min-width: 560px;
  display: grid; grid-template-columns: 1fr 1fr; gap: .1rem .4rem;
  opacity: 0; visibility: hidden; transition: opacity var(--t), transform var(--t), visibility var(--t); z-index: 120;
}
.dropdown a {
  display: flex; flex-direction: column; gap: 1px; padding: .6rem .8rem; border-radius: var(--radius);
  font-size: .92rem; transition: background var(--t);
}
.dropdown a:hover { background: var(--bone); }
.dropdown a span { font-family: var(--font-head); font-weight: 500; letter-spacing: .02em; color: var(--ink-900); }
.dropdown a small { color: var(--stone-600); font-size: .76rem; }
.dropdown__foot { grid-column: 1 / -1; border-top: 1px solid var(--line); margin-top: .4rem; padding: .7rem .8rem 0; }

.nav__cta { margin-left: .4rem; }

/* Mobile toggle */
.nav__toggle {
  display: none; background: transparent; border: 1.5px solid var(--line-dark); border-radius: var(--radius);
  width: 48px; height: 44px; position: relative;
}
.nav__toggle span, .nav__toggle span::before, .nav__toggle span::after {
  content: ""; position: absolute; left: 50%; top: 50%; width: 22px; height: 2px; background: #fff;
  transform: translate(-50%,-50%); transition: transform var(--t), opacity var(--t);
}
.nav__toggle span::before { transform: translate(-50%, -8px); }
.nav__toggle span::after  { transform: translate(-50%, 6px); }
.nav__toggle[aria-expanded="true"] span { background: transparent; }
.nav__toggle[aria-expanded="true"] span::before { transform: translate(-50%,-50%) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span::after  { transform: translate(-50%,-50%) rotate(-45deg); }

@media (max-width: 1024px) {
  .nav__toggle { display: block; }
  .nav__menu {
    position: fixed; inset: 0 0 0 auto; width: min(380px, 86vw);
    background: var(--ink-900); flex-direction: column; align-items: stretch; gap: 0;
    padding: 6.5rem 1.4rem 2rem; overflow-y: auto;
    transform: translateX(100%); transition: transform var(--t); box-shadow: var(--shadow-lg);
    border-left: 1px solid var(--line-dark);
  }
  .nav__menu.is-open { transform: translateX(0); }
  .nav__menu > li { border-bottom: 1px solid var(--line-dark); }
  .nav__link { padding: 1rem .4rem; font-size: 1rem; width: 100%; justify-content: space-between; }
  .dropdown {
    position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none;
    background: transparent; border: 0; border-radius: 0; min-width: 0; grid-template-columns: 1fr;
    padding: 0 0 .6rem; display: none;
  }
  .dropdown.is-open { display: grid; }
  .dropdown a { padding: .55rem .9rem; }
  .dropdown a span { color: var(--stone-200); }
  .dropdown a:hover { background: var(--ink-700); }
  .dropdown__foot { border-color: var(--line-dark); }
  .nav__cta { margin: 1rem 0 0; }
  .nav__cta .btn { width: 100%; }
}
.nav-backdrop {
  position: fixed; inset: 0; background: rgba(8,9,10,.55); backdrop-filter: blur(2px);
  opacity: 0; visibility: hidden; transition: opacity var(--t), visibility var(--t); z-index: 90;
}
.nav-backdrop.is-open { opacity: 1; visibility: visible; }
body.nav-lock { overflow: hidden; }

/* ---------- Hero ---------- */
.hero { position: relative; background: var(--ink-900); color: #fff; isolation: isolate; }
.hero__media { position: absolute; inset: 0; z-index: -2; overflow: hidden; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero__media::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(180deg, rgba(11,13,15,.60) 0%, rgba(11,13,15,.70) 55%, rgba(11,13,15,.90) 100%),
    linear-gradient(90deg, rgba(11,13,15,.97) 0%, rgba(11,13,15,.90) 30%, rgba(11,13,15,.52) 64%, rgba(11,13,15,.18) 100%);
}
.hero__inner { padding-block: clamp(4.5rem, 12vw, 9rem); max-width: 760px; }
.hero h1 { color: #fff; text-shadow: 0 2px 28px rgba(0,0,0,.5); }
.hero__sub { margin-top: 1.4rem; font-size: clamp(1.08rem, 1.7vw, 1.3rem); color: #fff; max-width: 600px; line-height: 1.7; text-shadow: 0 2px 18px rgba(0,0,0,.55); }
.hero .btn-row { margin-top: 2.2rem; }
.hero__chips { display: flex; flex-wrap: wrap; gap: .6rem 1.6rem; margin-top: 2.4rem; padding-top: 1.8rem; border-top: 1px solid rgba(255,255,255,.16); }
.hero__chip { display: inline-flex; align-items: center; gap: .55rem; font-size: .86rem; color: rgba(255,255,255,.85); letter-spacing: .02em; }
.hero__chip svg { width: 18px; height: 18px; flex: none; color: #fff; }
.hero--page .hero__inner { padding-block: clamp(3.2rem, 8vw, 5.6rem); max-width: 820px; }
.hero--page h1 { font-size: clamp(2.1rem, 5vw, 3.4rem); }

/* Breadcrumbs */
.crumbs { font-size: .82rem; color: rgba(255,255,255,.7); margin-bottom: 1.3rem; letter-spacing: .03em; }
.crumbs ol { list-style: none; display: flex; flex-wrap: wrap; gap: .5rem; padding: 0; }
.crumbs li { display: inline-flex; gap: .5rem; align-items: center; }
.crumbs li:not(:last-child)::after { content: "/"; color: rgba(255,255,255,.4); }
.crumbs a:hover { color: #fff; text-decoration: underline; }
.crumbs [aria-current="page"] { color: #fff; }

/* ---------- Trust bar ---------- */
.trustbar { background: var(--ink-800); color: var(--stone-300); border-bottom: 1px solid var(--line-dark); }
.trustbar .container { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem 2.6rem; padding-block: 1.05rem; }
.trustbar__item { display: inline-flex; align-items: center; gap: .6rem; font-family: var(--font-head); letter-spacing: .12em; text-transform: uppercase; font-size: .82rem; }
.trustbar__item svg { width: 18px; height: 18px; color: #fff; opacity: .9; }

/* ---------- Cards / service grid ---------- */
.svc-card {
  position: relative; display: flex; flex-direction: column;
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden;
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
}
.svc-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--stone-300); }
.svc-card__media { aspect-ratio: 16 / 11; overflow: hidden; background: var(--ink-800); }
.svc-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.svc-card:hover .svc-card__media img { transform: scale(1.07); }
.svc-card__body { padding: 1.3rem 1.4rem 1.5rem; display: flex; flex-direction: column; flex: 1; gap: .5rem; }
.svc-card__kicker { font-family: var(--font-head); font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; color: var(--stone-500); }
.svc-card h3 { font-size: 1.28rem; }
.svc-card p { color: var(--stone-600); font-size: .94rem; flex: 1; }
.svc-card .link-arrow { margin-top: .6rem; }
.svc-card__tag { position: absolute; top: .9rem; left: .9rem; z-index: 2; background: var(--ink-900); color: #fff; font-family: var(--font-head); font-size: .68rem; letter-spacing: .16em; text-transform: uppercase; padding: .35rem .65rem; border-radius: 3px; }
/* full-card link overlay */
.stretch::after { content: ""; position: absolute; inset: 0; }

/* ---------- Feature split ---------- */
.split { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(1.6rem, 4vw, 4rem); align-items: stretch; }
.split--reverse .split__media { order: -1; }
.split__media { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); min-height: 360px; }
.split__media img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 820px){ .split__media { min-height: 300px; } }
.split ul.checks { margin-top: 1.3rem; }
@media (max-width: 820px) { .split { grid-template-columns: 1fr; } .split--reverse .split__media { order: 0; } }

/* Checklist */
ul.checks { display: grid; gap: .7rem; }
ul.checks li { position: relative; padding-left: 2rem; color: var(--stone-700); }
ul.checks li::before {
  content: ""; position: absolute; left: 0; top: .2em; width: 1.25rem; height: 1.25rem;
  background: var(--ink-900);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/%3E%3C/svg%3E") center/contain no-repeat;
          mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/%3E%3C/svg%3E") center/contain no-repeat;
}
.section--ink ul.checks li { color: var(--stone-300); }
.section--ink ul.checks li::before { background: #fff; }

/* ---------- Value props (why us) ---------- */
.value { position: relative; padding: 2.3rem 1.9rem; border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--paper); box-shadow: var(--shadow-sm); overflow: hidden; transition: transform .45s var(--ease), box-shadow .45s var(--ease), border-color .45s var(--ease); }
.value::after { content: ""; position: absolute; left: 0; top: 0; width: 100%; height: 3px; background: var(--ink-900); transform: scaleX(0); transform-origin: left; transition: transform .45s var(--ease); }
.value:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: var(--stone-300); }
.value:hover::after { transform: scaleX(1); }
.value__num { display: block; font-family: var(--font-head); font-size: .82rem; font-weight: 600; letter-spacing: .3em; color: var(--stone-400); margin-bottom: 1.1rem; }
.value__icon { width: 58px; height: 58px; display: grid; place-items: center; background: var(--ink-900); color: #fff; border-radius: 14px; margin-bottom: 1.2rem; transition: transform .45s var(--ease); }
.value:hover .value__icon { transform: translateY(-3px) rotate(-5deg); }
.value__icon svg { width: 28px; height: 28px; }
.value h3 { margin-bottom: .55rem; font-size: 1.35rem; }
.value p { color: var(--stone-600); font-size: .97rem; }

/* ---------- Stats / credibility ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line-dark); border: 1px solid var(--line-dark); border-radius: var(--radius-lg); overflow: hidden; }
.stat { background: var(--ink-900); padding: clamp(1.6rem,3vw,2.4rem) 1.2rem; text-align: center; }
.stat__num { font-family: var(--font-head); font-weight: 700; font-size: clamp(2.2rem, 4vw, 3.1rem); color: #fff; line-height: 1; letter-spacing: .01em; }
.stat__label { margin-top: .6rem; font-size: .8rem; letter-spacing: .14em; text-transform: uppercase; color: var(--stone-400); }
@media (max-width: 720px){ .stats { grid-template-columns: repeat(2,1fr);} }

/* ---------- Service area ---------- */
.cities { display: grid; grid-template-columns: repeat(4,1fr); gap: .6rem; }
@media (max-width: 760px){ .cities { grid-template-columns: repeat(2,1fr);} }
.cities li a, .city-chip {
  display: flex; align-items: center; gap: .6rem; padding: .8rem 1rem; background: var(--paper);
  border: 1px solid var(--line); border-radius: var(--radius); font-size: .92rem; transition: all var(--t);
}
.cities li a:hover { border-color: var(--ink-900); transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.cities svg { width: 15px; height: 15px; color: var(--stone-500); flex: none; }
.map-embed { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow-sm); }
.map-embed iframe { display: block; width: 100%; height: 100%; border: 0; min-height: 340px; }

/* ---------- FAQ ---------- */
.faq { max-width: 860px; margin-inline: auto; border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  list-style: none; cursor: pointer; padding: 1.3rem .3rem; display: flex; align-items: flex-start; justify-content: space-between; gap: 1.2rem;
  font-family: var(--font-head); font-weight: 500; font-size: clamp(1.05rem,1.7vw,1.22rem); color: var(--ink-900);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary .ico { flex: none; width: 24px; height: 24px; position: relative; margin-top: .2rem; }
.faq summary .ico::before, .faq summary .ico::after { content:""; position:absolute; background: var(--ink-900); transition: transform var(--t), opacity var(--t); }
.faq summary .ico::before { top: 11px; left: 2px; width: 20px; height: 2px; }
.faq summary .ico::after  { top: 2px; left: 11px; width: 2px; height: 20px; }
.faq details[open] summary .ico::after { transform: scaleY(0); opacity: 0; }
.faq__a { padding: 0 .3rem 1.4rem; color: var(--stone-700); max-width: 70ch; }
.faq__a p + p { margin-top: .8rem; }

/* ---------- Pretty prose (body content blocks) ---------- */
.prose p { margin-bottom: 1.1rem; color: var(--stone-700); }
.prose h2 { margin-top: 2.4rem; margin-bottom: 1rem; }
.prose h3 { margin-top: 1.8rem; margin-bottom: .7rem; }
.prose ul:not([class]) { margin: 0 0 1.2rem; padding-left: 1.2rem; display: grid; gap: .5rem; color: var(--stone-700); }
.prose ul:not([class]) li { padding-left: .3rem; }
.prose a:not(.btn):not(.link-arrow) { color: var(--ink-900); text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 1px; }

/* Pull / callout */
.callout { border-left: 3px solid var(--ink-900); background: var(--bone-2); padding: 1.2rem 1.4rem; border-radius: 0 var(--radius) var(--radius) 0; margin: 1.4rem 0; }
.callout p { margin: 0; color: var(--stone-700); }

/* Sub-brand note */
.subbrand-note { font-size: .85rem; color: var(--stone-600); border: 1px dashed var(--stone-300); border-radius: var(--radius); padding: .8rem 1rem; display: inline-flex; gap: .6rem; align-items: center; }

/* ---------- CTA band ---------- */
.cta-band { background: var(--ink-900); color: #fff; position: relative; overflow: hidden; }
.cta-band .container { position: relative; z-index: 1; text-align: center; max-width: 760px; }
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255,255,255,.8); margin-top: 1rem; }
.cta-band .btn-row { margin-top: 2rem; justify-content: center; }
.cta-phone { font-family: var(--font-head); font-size: clamp(1.6rem,3vw,2.2rem); color:#fff; letter-spacing:.02em; display:inline-flex; gap:.6rem; align-items:center; margin-top: .4rem; }
.cta-phone svg{width:26px;height:26px;}

/* ---------- Forms ---------- */
.form-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(1.5rem, 3vw, 2.4rem); box-shadow: var(--shadow-sm); }
.field { margin-bottom: 1.1rem; }
.field label { display: block; font-family: var(--font-head); font-weight: 500; letter-spacing: .04em; font-size: .82rem; text-transform: uppercase; color: var(--stone-700); margin-bottom: .45rem; }
.field .req { color: #b23b2e; }
.field input, .field select, .field textarea {
  width: 100%; padding: .85rem 1rem; font: inherit; color: var(--ink);
  background: var(--bone); border: 1.5px solid var(--line); border-radius: var(--radius); transition: border-color var(--t), background var(--t), box-shadow var(--t);
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--ink-900); background: #fff; box-shadow: 0 0 0 3px rgba(16,18,20,.08); }
.field textarea { min-height: 140px; resize: vertical; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0 1.1rem; }
@media (max-width: 620px){ .form-grid { grid-template-columns: 1fr; } }
.form-note { font-size: .82rem; color: var(--stone-600); margin-top: .4rem; }
.form-status { display: none; margin-top: 1rem; padding: 1rem 1.1rem; border-radius: var(--radius); font-size: .92rem; }
.form-status.is-success { display: block; background: #e8f1ea; border: 1px solid #b9d6c1; color: #1f5130; }
.form-status.is-error { display: block; background: #fbeae8; border: 1px solid #e6c2bd; color: #8a2c20; }
.hp { position: absolute; left: -9999px; opacity: 0; height: 0; width: 0; }

/* Contact info list */
.contact-list { display: grid; gap: 1.3rem; }
.contact-list li { display: flex; gap: 1rem; align-items: flex-start; }
.contact-list .ic { flex: none; width: 46px; height: 46px; display: grid; place-items: center; background: var(--ink-900); color: #fff; border-radius: 50%; }
.contact-list .ic svg { width: 22px; height: 22px; }
.contact-list b { font-family: var(--font-head); letter-spacing: .04em; display: block; font-size: .78rem; text-transform: uppercase; color: var(--stone-600); font-weight: 500; }
.contact-list a, .contact-list span { font-size: 1.08rem; color: var(--ink-900); }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink-900); color: var(--stone-400); padding-top: clamp(3rem,6vw,4.5rem); border-top: 3px solid var(--ink-700); }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 2.2rem; padding-bottom: 3rem; }
@media (max-width: 900px){ .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; } }
@media (max-width: 560px){ .footer-grid { grid-template-columns: 1fr; } }
.site-footer .brand img { height: 80px; }
.site-footer .btn--light { background: var(--bone); color: var(--ink-900); border-color: var(--bone); }
.site-footer .btn--light:hover { background: #fff; color: var(--ink-900); }
.footer-about p { margin-top: 1.1rem; font-size: .92rem; color: var(--stone-400); max-width: 38ch; }
.footer-tag { display: inline-flex; gap: .6rem; align-items: center; margin-top: 1.1rem; font-family: var(--font-head); letter-spacing: .18em; text-transform: uppercase; font-size: .76rem; color: var(--stone-300); }
.footer-col h4 { color: #fff; letter-spacing: .08em; text-transform: uppercase; font-size: .82rem; margin-bottom: 1.1rem; }
.footer-col ul { display: grid; gap: .6rem; }
.footer-col a { font-size: .92rem; color: var(--stone-400); transition: color var(--t); }
.footer-col a:hover { color: #fff; }
.footer-contact li { display: flex; gap: .6rem; align-items: flex-start; margin-bottom: .8rem; font-size: .92rem; }
.footer-contact svg { width: 17px; height: 17px; margin-top: 3px; flex: none; opacity: .8; }
.footer-badges { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: 1rem; }
.footer-badge { border: 1px solid var(--line-dark); border-radius: var(--radius); padding: .45rem .7rem; font-size: .72rem; letter-spacing: .08em; text-transform: uppercase; font-family: var(--font-head); color: var(--stone-300); }
.footer-bar { border-top: 1px solid var(--line-dark); padding-block: 1.4rem; display: flex; flex-wrap: wrap; gap: .6rem 1.4rem; align-items: center; justify-content: space-between; font-size: .82rem; }
.footer-bar a:hover { color:#fff; text-decoration: underline; }
.footer-built a { color: var(--stone-300); }

/* ---------- Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal[data-d="1"]{ transition-delay: .08s; }
.reveal[data-d="2"]{ transition-delay: .16s; }
.reveal[data-d="3"]{ transition-delay: .24s; }
.reveal[data-d="4"]{ transition-delay: .32s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  .btn, .svc-card, .value { transition: none !important; }
}

/* ---------- Helpers ---------- */
.text-center { text-align: center; }
.mt-0{margin-top:0}.mt-1{margin-top:.6rem}.mt-2{margin-top:1.2rem}.mt-3{margin-top:2rem}
.mb-0{margin-bottom:0}
.maxw-prose{max-width:65ch}
.divider { height:1px; background: var(--line); border:0; margin: 0; }
.tag-pill { display:inline-flex; align-items:center; gap:.4rem; font-family:var(--font-head); font-size:.7rem; letter-spacing:.16em; text-transform:uppercase; color:var(--stone-600); border:1px solid var(--line); border-radius:100px; padding:.35rem .8rem; }
.related-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:1rem; }
@media (max-width:760px){ .related-grid{grid-template-columns:1fr;} }
.related-card { display:flex; align-items:center; justify-content:space-between; gap:1rem; padding:1.1rem 1.3rem; background:var(--paper); border:1px solid var(--line); border-radius:var(--radius-lg); transition: all var(--t); }
.related-card:hover { border-color:var(--ink-900); transform:translateY(-3px); box-shadow:var(--shadow-sm); }
.related-card span { font-family:var(--font-head); font-weight:500; color:var(--ink-900); }
.related-card svg { width:18px;height:18px;color:var(--stone-500); transition: transform var(--t);}
.related-card:hover svg { transform: translateX(4px); color:var(--ink-900); }

/* ============================================================
   PREMIUM ELEVATION LAYER
   ============================================================ */

/* Subtle film grain over the whole site for a tactile, printed feel */
body::after {
  content: ""; position: fixed; inset: 0; z-index: 9998; pointer-events: none; opacity: .02;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* Sharper, more confident display type */
h1 { letter-spacing: -.025em; line-height: 1.0; font-weight: 800; }
h2 { letter-spacing: -.018em; font-weight: 700; }
h3 { letter-spacing: -.01em; }
.hero h1 { font-size: clamp(2.4rem, 5.2vw, 4rem); font-weight: 800; }
.section-head h2 { font-size: clamp(2.1rem, 4.7vw, 3.5rem); }
.cta-band h2 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
.stat__num { font-variant-numeric: tabular-nums; letter-spacing: -.02em; }
.eyebrow { font-weight: 600; }

/* Hero scroll cue */
.hero { overflow: hidden; }
.scroll-cue {
  position: absolute; left: 50%; bottom: 22px; transform: translateX(-50%); z-index: 3;
  display: flex; flex-direction: column; align-items: center; gap: .7rem;
  color: rgba(255,255,255,.62); font-family: var(--font-head); font-size: .64rem; letter-spacing: .3em; text-transform: uppercase;
}
.scroll-cue i { width: 1px; height: 46px; background: rgba(255,255,255,.35); position: relative; overflow: hidden; }
.scroll-cue i::after { content: ""; position: absolute; inset: 0; background: #fff; transform: translateY(-100%); animation: cue 2.4s cubic-bezier(.7,0,.3,1) infinite; }
@keyframes cue { 0% { transform: translateY(-100%); } 55%,100% { transform: translateY(100%); } }
@media (max-width: 700px){ .scroll-cue { display: none; } }

/* Editorial service cards: image-forward, animated title underline */
.svc-card { border: 1px solid var(--stone-200); border-radius: 6px; }
.svc-card__media { aspect-ratio: 4 / 3; }
.svc-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-lg); border-color: var(--stone-300); }
.svc-card__body { padding: 1.5rem 1.5rem 1.7rem; }
.svc-card h3 {
  font-size: 1.34rem; width: fit-content; padding-bottom: 3px;
  background-image: linear-gradient(var(--ink-900), var(--ink-900));
  background-size: 0% 2px; background-position: 0 100%; background-repeat: no-repeat;
  transition: background-size .45s var(--ease);
}
.svc-card:hover h3 { background-size: 100% 2px; }

/* Sticky header refines to a translucent blur on scroll */
.site-header { transition: background .4s var(--ease), box-shadow .4s var(--ease); }
.site-header.is-stuck { background: rgba(14,16,18,.82); backdrop-filter: saturate(1.3) blur(12px); -webkit-backdrop-filter: saturate(1.3) blur(12px); }
.nav { transition: min-height .4s var(--ease); }
.site-header.is-stuck .nav { min-height: 66px; }

/* Depth/vignette on dark sections */
.section--ink { position: relative; }
.section--ink::before, .cta-band::before {
  content: ""; position: absolute; inset: 0; pointer-events: none; z-index: 0;
  background:
    radial-gradient(120% 90% at 50% -10%, rgba(255,255,255,.06), transparent 55%),
    radial-gradient(100% 120% at 50% 130%, rgba(0,0,0,.45), transparent 55%);
}
.section--ink > .container, .cta-band > .container { position: relative; z-index: 1; }

/* Framed split media + clip-path reveal */
.split__media { box-shadow: var(--shadow-lg); }
.reveal-clip { clip-path: inset(0 0 100% 0); opacity: .001; transition: clip-path 1.1s var(--ease), opacity 1.1s var(--ease); }
.reveal-clip.is-visible { clip-path: inset(0 0 0 0); opacity: 1; }
.reveal { transition-duration: .9s; }

@media (prefers-reduced-motion: reduce) {
  .hero__media img { animation: none; }
  .scroll-cue i::after { animation: none; }
  .reveal-clip { clip-path: none !important; opacity: 1 !important; transition: none !important; }
}

/* Editorial photo caption */
.split__media { position: relative; }
.media-caption {
  position: absolute; left: 14px; bottom: 14px; z-index: 2;
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(11,13,15,.7); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  color: #fff; font-family: var(--font-head); font-weight: 600; font-size: .66rem; letter-spacing: .16em; text-transform: uppercase;
  padding: .5rem .85rem; border-radius: 4px;
}
.media-caption::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: #fff; }
