/* =====================================================
   POWER OF ADVENTURE — design system
   Aesthetic: trail journal / field notes from a working tradesman.
   Palette: warm paper, deep woodsmoke ink, terracotta + forest accents.
   Type: Fraunces (display) · Crimson Pro (serif body) · Bricolage (UI) · Plex Mono (map labels)
   ===================================================== */

:root {
  /* warm light palette — cream paper + earthy accents */
  --bg:        #f4ede0;   /* primary cream background */
  --bg-2:      #ece2cd;   /* kraft / second surface */
  --surface:   #e3d8bf;   /* deeper kraft */
  --paper:     #fbf7ec;   /* lightest cream — cards on bg */
  --ink:       #1c1814;   /* deep woodsmoke */
  --ink-2:     #322a22;
  --ink-3:     #4d4236;
  --muted:     #877b69;
  --line:      #d3c6ac;
  --line-soft: #e1d6bd;

  --rust:      #b15a2c;   /* primary accent — terracotta */
  --rust-deep: #8e441f;
  --clay:      #c9743a;
  --forest:    #2d4233;   /* secondary accent — deep forest */
  --moss:      #5d7257;
  --ember:     #d9803c;
  --gold:      #b48a3a;

  --maxw: 1240px;
  --gutter: clamp(1.25rem, 4vw, 2.75rem);
  --radius: 2px;

  --font-display: "Fraunces", "Times New Roman", serif;
  --font-body:    "Crimson Pro", "Source Serif Pro", Georgia, serif;
  --font-ui:      "Bricolage Grotesque", -apple-system, "Helvetica Neue", sans-serif;
  --font-mono:    "IBM Plex Mono", ui-monospace, Menlo, monospace;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--ink-2);
  font-family: var(--font-body);
  font-size: 19px;
  line-height: 1.55;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* subtle paper grain — gives the cream depth without going skeuomorphic */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 100;
  opacity: 0.10;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='220' height='220'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/></svg>");
}

img { max-width: 100%; display: block; }
a   { color: inherit; text-decoration: none; }

::selection { background: var(--rust); color: var(--paper); }

/* ---------- typography ---------- */
.h-display {
  font-family: var(--font-display);
  font-weight: 380;
  font-variation-settings: "opsz" 144, "SOFT" 40, "WONK" 0;
  letter-spacing: -0.025em;
  line-height: 0.95;
  color: var(--ink);
}

.h-eyebrow {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--rust);
}
.h-eyebrow .dot {
  display: inline-block;
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--rust);
  margin-right: 10px;
  transform: translateY(-2px);
}

.h-meta {
  font-family: var(--font-ui);
  font-size: 12px;
  letter-spacing: 0.10em;
  color: var(--muted);
  text-transform: uppercase;
}

em, i { font-style: italic; }
strong, b { font-weight: 600; color: var(--ink); }

/* ---------- layout helpers ---------- */
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gutter); }
.wrap-narrow { max-width: 760px; margin: 0 auto; padding: 0 var(--gutter); }

.rule { height: 1px; background: var(--line); width: 100%; }
.rule--accent { background: var(--rust); height: 2px; width: 64px; }

/* ---------- top nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(244,237,224,0.85);
  backdrop-filter: blur(14px) saturate(120%);
  -webkit-backdrop-filter: blur(14px) saturate(120%);
  border-bottom: 1px solid var(--line-soft);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px var(--gutter);
  max-width: var(--maxw);
  margin: 0 auto;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-ui);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
}
.brand__mark {
  display: inline-grid;
  place-items: center;
  width: 32px; height: 32px;
  border: 1.5px solid var(--rust);
  color: var(--rust);
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 500;
  font-style: italic;
  border-radius: 50%;
}
.brand__name strong { color: var(--ink); font-weight: 700; letter-spacing: 0.20em; }
.brand__name span  { color: var(--muted); letter-spacing: 0.18em; }

.nav__links {
  display: flex;
  gap: 32px;
  align-items: center;
  font-family: var(--font-ui);
  font-size: 13px;
  letter-spacing: 0.04em;
}
.nav__links a {
  color: var(--ink-3);
  position: relative;
  padding: 6px 0;
  transition: color 0.2s;
}
.nav__links a:hover { color: var(--rust); }
.nav__links a.is-active { color: var(--ink); }
.nav__links a.is-active::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 1.5px;
  background: var(--rust);
}

.btn-quote {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 22px;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.25s ease;
}
.btn-quote:hover {
  transform: translateY(-1px);
  background: var(--rust);
}
.btn-quote .arrow { transition: transform 0.2s; }
.btn-quote:hover .arrow { transform: translateX(4px); }

.nav__hamburger {
  display: none;
  background: transparent;
  border: 1px solid var(--line);
  color: var(--ink);
  width: 38px; height: 38px;
  cursor: pointer;
  padding: 0;
  align-items: center;
  justify-content: center;
}
.nav__hamburger span {
  display: block;
  width: 16px; height: 1.5px;
  background: currentColor;
  position: relative;
}
.nav__hamburger span::before,
.nav__hamburger span::after {
  content: "";
  position: absolute;
  left: 0; width: 16px; height: 1.5px;
  background: currentColor;
}
.nav__hamburger span::before { top: -5px; }
.nav__hamburger span::after  { top:  5px; }

/* ---------- hero ---------- */
.hero {
  position: relative;
  min-height: 86vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  isolation: isolate;
  border-bottom: 1px solid var(--line);
}
/* golden-hour landscape evocation — replace with photo when available */
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(1200px 700px at 70% 30%, rgba(217,128,60,0.32), transparent 65%),
    radial-gradient(900px 600px at 15% 85%, rgba(45,66,51,0.42), transparent 65%),
    linear-gradient(170deg, #e9d4a3 0%, #d9a268 35%, #8a5a3a 70%, #2d4233 100%);
}
.hero__bg img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  filter: contrast(1.03) saturate(0.95);
  animation: heroZoom 24s ease-out infinite alternate;
}
.hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(28,24,20,0.10) 0%, rgba(28,24,20,0.50) 70%, rgba(244,237,224,0.92) 100%),
    linear-gradient(90deg, rgba(28,24,20,0.45) 0%, rgba(28,24,20,0.0) 50%);
}
@keyframes heroZoom {
  from { transform: scale(1.0)  translate3d(0,0,0); }
  to   { transform: scale(1.06) translate3d(-1%, -1%, 0); }
}

/* hide the legacy field-instrument readout — too SaaS for this aesthetic */
.hero__specs { display: none; }

.hero__inner {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 96px var(--gutter) 80px;
  position: relative;
}
.hero__title {
  font-size: clamp(3rem, 8.5vw, 7.5rem);
  margin: 28px 0 0;
  color: var(--paper);
  max-width: 14ch;
  text-shadow: 0 2px 30px rgba(28,24,20,0.35);
}
.hero__title em {
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
  color: #f0c98a;
}
.hero .h-eyebrow { color: #f0c98a; }
.hero .h-eyebrow .dot { background: #f0c98a; }

.hero__sub {
  margin-top: 28px;
  max-width: 50ch;
  font-family: var(--font-body);
  font-size: 21px;
  line-height: 1.5;
  color: rgba(251,247,236,0.92);
  text-shadow: 0 1px 16px rgba(28,24,20,0.4);
}
.hero__cta {
  margin-top: 40px;
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  align-items: center;
}
.hero__cta .btn-quote {
  background: var(--paper);
  color: var(--ink);
}
.hero__cta .btn-quote:hover { background: var(--rust); color: var(--paper); }

.hero__ctaSecondary {
  font-family: var(--font-ui);
  font-size: 13px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--paper);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid rgba(251,247,236,0.5);
  padding-bottom: 6px;
  transition: color 0.2s, border-color 0.2s;
}
.hero__ctaSecondary:hover { color: #f0c98a; border-color: #f0c98a; }

/* hero footer byline (replaces the spec meter) */
.hero__meter {
  position: absolute;
  left: var(--gutter);
  bottom: 28px;
  font-family: var(--font-ui);
  font-size: 11px;
  letter-spacing: 0.16em;
  color: rgba(251,247,236,0.78);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 14px;
}
.hero__meter .bar {
  display: inline-block;
  width: 56px;
  height: 1px;
  background: rgba(251,247,236,0.4);
  position: relative;
}

/* ---------- section heads ---------- */
.section {
  padding: clamp(80px, 11vw, 150px) 0;
  position: relative;
}
.section--paper { background: var(--paper); }
.section--paper .h-eyebrow { color: var(--forest); }
.section--paper .h-eyebrow .dot { background: var(--forest); }

.section__head {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 56px;
  margin-bottom: 72px;
  align-items: end;
}
.section__title {
  font-size: clamp(2.4rem, 5.2vw, 4.6rem);
  margin: 18px 0 0;
  color: var(--ink);
  max-width: 16ch;
}
.section__title em {
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
  color: var(--rust);
}
.section__lede {
  font-family: var(--font-body);
  font-size: 21px;
  line-height: 1.5;
  color: var(--ink-3);
  max-width: 56ch;
}

@media (max-width: 880px) {
  .section__head { grid-template-columns: 1fr; gap: 24px; margin-bottom: 48px; }
}


/* ---------- card grid (guides) ---------- */
.cards {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 28px;
}
.card {
  grid-column: span 4;
  position: relative;
  padding: 0;
  background: var(--paper);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.2,0.7,0.2,1), border-color 0.35s, box-shadow 0.35s;
  display: flex;
  flex-direction: column;
}
.card:hover {
  transform: translateY(-6px);
  border-color: var(--rust);
  box-shadow: 0 24px 60px -30px rgba(28,24,20,0.25);
}
.card__media {
  aspect-ratio: 4 / 3;
  background: var(--surface);
  position: relative;
  overflow: hidden;
}
.card__media img,
.card__media .ph {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.2,0.7,0.2,1);
}
.card:hover .card__media img { transform: scale(1.05); }
/* warm sepia placeholder until photos arrive */
.card__media .ph {
  background:
    radial-gradient(420px 240px at 30% 25%, rgba(217,128,60,0.32), transparent 60%),
    radial-gradient(520px 320px at 80% 90%, rgba(45,66,51,0.28), transparent 65%),
    linear-gradient(160deg, #e8d4a6 0%, #c98e5a 60%, #6d4b32 100%);
}
.card__media .label {
  position: absolute;
  top: 16px; left: 16px;
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: var(--paper);
  border: none;
  color: var(--rust);
  padding: 7px 11px;
}
.card__body {
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
}
.card__meta {
  font-family: var(--font-ui);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--muted);
  text-transform: uppercase;
  display: flex;
  justify-content: space-between;
}
.card__title {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 400;
  letter-spacing: -0.015em;
  line-height: 1.05;
  color: var(--ink);
  margin: 0;
}
.card__excerpt {
  color: var(--ink-3);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.5;
  margin: 0;
}
.card__more {
  margin-top: auto;
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--rust);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

@media (max-width: 980px) { .card { grid-column: span 6; } }
@media (max-width: 620px) { .card { grid-column: span 12; } }

/* hero card */
.card--hero { grid-column: span 8; }
.card--hero .card__media { aspect-ratio: 16 / 9; }
.card--hero .card__title { font-size: clamp(28px, 3.4vw, 46px); }
@media (max-width: 980px) { .card--hero { grid-column: span 12; } }

/* ---------- services list ---------- */
.svc-list {
  border-top: 1px solid var(--line);
  list-style: none;
  padding: 0;
  margin: 0;
}
.svc-row {
  display: grid;
  grid-template-columns: 80px 1fr 1.4fr 80px;
  gap: 32px;
  padding: 36px 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
  position: relative;
  transition: padding 0.3s ease;
}
.svc-row:hover { padding-left: 14px; }
.svc-row::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(177,90,44,0.05), transparent 30%);
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}
.svc-row:hover::after { opacity: 1; }

.svc-row__num {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: 18px;
  color: var(--rust);
  letter-spacing: 0;
  padding-top: 8px;
}
.svc-row__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(24px, 2.8vw, 34px);
  color: var(--ink);
  letter-spacing: -0.015em;
  line-height: 1.1;
  margin: 0;
}
.svc-row__desc {
  color: var(--ink-3);
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.5;
}
.svc-row__arrow {
  text-align: right;
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: var(--muted);
  text-transform: uppercase;
  padding-top: 14px;
  transition: color 0.2s;
}
.svc-row:hover .svc-row__arrow { color: var(--rust); }

@media (max-width: 760px) {
  .svc-row { grid-template-columns: 50px 1fr; }
  .svc-row__desc, .svc-row__arrow { grid-column: 2; }
  .svc-row__arrow { text-align: left; padding-top: 4px; }
}

/* ---------- field reports (testimonials, as postcards) ---------- */
.section--reports { background: var(--bg-2); }

.reports {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.report {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 30px 26px 22px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  transition: transform 0.4s cubic-bezier(0.2,0.7,0.2,1), box-shadow 0.35s;
  /* slight randomized rotation for postcard feel */
}
.report:nth-child(1) { transform: rotate(-0.7deg) translateY(8px); }
.report:nth-child(2) { transform: rotate(0.5deg) translateY(-4px); }
.report:nth-child(3) { transform: rotate(-0.4deg) translateY(12px); }
.report:nth-child(4) { transform: rotate(0.6deg) translateY(-2px); }
.report:hover {
  transform: translateY(-8px) rotate(0deg);
  box-shadow: 0 26px 50px -28px rgba(28,24,20,0.30);
}
/* a vertical "stamp" rule on the left, like postal mark */
.report::before {
  content: "";
  position: absolute;
  left: 14px; top: 32px; bottom: 32px;
  width: 1px;
  background: repeating-linear-gradient(to bottom, var(--rust) 0 2px, transparent 2px 6px);
  opacity: 0.55;
}

.report__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding-left: 18px;
}
.report__tag { color: var(--rust); }
.report__status { color: var(--gold); letter-spacing: 0.06em; font-size: 11px; }

.report__quote {
  margin: 0;
  padding-left: 18px;
  font-family: var(--font-display);
  font-weight: 380;
  font-size: 22px;
  line-height: 1.3;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.report__quote em {
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 80, "WONK" 0;
}

.report__by {
  padding-left: 18px;
  font-family: var(--font-body);
  font-style: italic;
  font-size: 16px;
  color: var(--ink-3);
}
.report__by span { color: var(--muted); font-style: normal; }

.report__spec {
  margin-top: auto;
  padding-left: 18px;
  padding-top: 16px;
  border-top: 1px dashed var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: 6px 14px;
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.report__spec span { position: relative; }
.report__spec span + span::before {
  content: "·";
  position: absolute;
  left: -10px;
  color: var(--line);
}

.reports__foot {
  margin-top: 64px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding-top: 36px;
  border-top: 1px solid var(--line);
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.reports__brands-label { color: var(--muted); }
.reports__brands { color: var(--ink); }
.reports__brands a { color: var(--ink); transition: color 0.2s; }
.reports__brands a:hover { color: var(--rust); }

.report__quote {
  font-size: 18px;
  line-height: 1.35;
}

@media (max-width: 1100px) {
  .reports { grid-template-columns: 1fr 1fr; }
  .report:nth-child(n) { transform: rotate(0); }
  .report__quote { font-size: 20px; }
}
@media (max-width: 680px) {
  .reports { grid-template-columns: 1fr; gap: 22px; }
  .report__quote { font-size: 19px; }
  .reports__foot { flex-direction: column; gap: 10px; text-align: center; }
}

/* ---------- featured banner ---------- */
.feature-banner {
  position: relative;
  padding: clamp(96px, 12vw, 160px) var(--gutter);
  overflow: hidden;
  isolation: isolate;
  text-align: center;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.feature-banner__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(800px 500px at 25% 30%, rgba(217,128,60,0.35), transparent 60%),
    radial-gradient(900px 600px at 80% 80%, rgba(45,66,51,0.55), transparent 65%),
    linear-gradient(170deg, #2d4233 0%, #4a3826 60%, #8a5a3a 100%);
}
.feature-banner .h-eyebrow { color: #f0c98a; }
.feature-banner .h-eyebrow .dot { background: #f0c98a; }
.feature-banner__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.4rem, 6vw, 5rem);
  color: var(--paper);
  margin: 16px auto 0;
  max-width: 18ch;
  line-height: 1.0;
  letter-spacing: -0.025em;
}
.feature-banner__title em {
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
  color: #f0c98a;
}
.feature-banner__sub {
  margin: 28px auto 40px;
  max-width: 58ch;
  color: rgba(251,247,236,0.88);
  font-family: var(--font-body);
  font-size: 20px;
  line-height: 1.55;
}
.feature-banner .btn-quote {
  background: var(--paper);
  color: var(--ink);
}
.feature-banner .btn-quote:hover { background: var(--rust); color: var(--paper); }

/* ---------- article (guide detail) ---------- */
.article { padding: clamp(56px, 8vw, 96px) 0 0; }
.article__head { max-width: 880px; margin: 0 auto; padding: 0 var(--gutter); }
.article__kicker {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--rust);
  margin-bottom: 28px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.article__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.4rem, 6.5vw, 5.5rem);
  color: var(--ink);
  line-height: 0.95;
  letter-spacing: -0.025em;
  margin: 0;
}
.article__title em {
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
  color: var(--rust);
}
.article__meta {
  margin-top: 36px;
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--muted);
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.article__meta span strong { color: var(--ink); font-weight: 600; margin-left: 8px; }
.article__meta a { color: inherit; text-decoration: none; transition: color 0.2s; }
.article__meta a:hover { color: var(--rust); }

.article__hero { margin: 64px auto; max-width: 1100px; padding: 0 var(--gutter); }
.article__hero .frame {
  aspect-ratio: 16 / 9;
  background:
    radial-gradient(700px 400px at 30% 20%, rgba(217,128,60,0.35), transparent 60%),
    radial-gradient(800px 500px at 80% 80%, rgba(45,66,51,0.30), transparent 65%),
    linear-gradient(160deg, #e8d4a6 0%, #c98e5a 60%, #6d4b32 100%);
  border: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.article__hero img { width: 100%; height: 100%; object-fit: cover; }
.article__hero .frame::after {
  content: "FIG. 01";
  position: absolute;
  bottom: 14px; left: 18px;
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.20em;
  color: var(--paper);
  opacity: 0.9;
}

.article__body {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 var(--gutter) 96px;
  font-family: var(--font-body);
  font-size: 20px;
  line-height: 1.7;
  color: var(--ink-2);
}
.article__body > p:first-of-type::first-letter {
  font-family: var(--font-display);
  font-weight: 400;
  float: left;
  font-size: 5.2em;
  line-height: 0.85;
  margin: 6px 14px 0 -2px;
  color: var(--rust);
}
.article__body p { margin: 0 0 1.4em; }
.article__body h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  color: var(--ink);
  letter-spacing: -0.015em;
  margin: 2.4em 0 0.6em;
  line-height: 1.1;
  position: relative;
  padding-top: 36px;
}
.article__body h2::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 48px; height: 2px;
  background: var(--rust);
}
.article__body h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.45rem;
  color: var(--ink);
  margin: 2em 0 0.4em;
  line-height: 1.2;
}
.article__body h4 {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--rust);
  margin: 2em 0 0.6em;
}
.article__body strong { color: var(--ink); font-weight: 600; }
.article__body em { font-style: italic; color: var(--ink); }
.article__body a {
  color: var(--rust);
  border-bottom: 1px solid color-mix(in oklab, var(--rust) 40%, transparent);
  transition: border-color 0.2s;
}
.article__body a:hover { border-color: var(--rust); }

.article__body ul, .article__body ol { padding-left: 0; list-style: none; margin: 1.4em 0; }
.article__body li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 0.6em;
}
.article__body ul li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.75em;
  width: 14px; height: 1.5px;
  background: var(--rust);
}

.article__body blockquote {
  margin: 2.4em 0;
  padding: 1.6em 2em;
  border-left: 3px solid var(--rust);
  background: var(--paper);
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-style: italic;
  color: var(--ink);
  line-height: 1.35;
}

/* spec card embed (guides) */
.spec-card {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 32px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
  margin: 2em 0;
  position: relative;
}
.spec-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 40px; height: 2px;
  background: var(--rust);
}
.spec-card__title {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 10px;
}
.spec-card__sub {
  color: var(--ink-3);
  font-family: var(--font-body);
  font-size: 16px;
  margin: 0;
  font-style: italic;
}
.spec-card__num {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  color: var(--ink);
  line-height: 1;
  letter-spacing: -0.025em;
  white-space: nowrap;
}
.spec-card__num small {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.40em;
  color: var(--rust);
  margin-left: 8px;
  letter-spacing: 0;
}

/* product card */
.product-card {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 28px;
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 24px;
  align-items: center;
  margin: 1.8em 0;
}
.product-card__img {
  width: 100px; height: 100px;
  background:
    radial-gradient(circle at 30% 30%, rgba(217,128,60,0.35), transparent 65%),
    linear-gradient(160deg, #e8d4a6, #c98e5a);
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
}
.product-card__img svg { color: var(--ink); }
.product-card__title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--ink);
  margin: 0 0 6px;
}
.product-card__sub {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 14px;
}
.product-card__btn {
  display: inline-block;
  padding: 9px 16px;
  border: 1px solid var(--rust);
  color: var(--rust);
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: var(--paper);
  transition: background 0.2s, color 0.2s;
}
.product-card__btn:hover { background: var(--rust); color: var(--paper); }

/* ---------- footer ---------- */
.footer {
  border-top: 1px solid var(--line);
  padding: 88px 0 40px;
  background: var(--bg-2);
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 64px;
}
.footer__brand {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  color: var(--ink);
  letter-spacing: -0.025em;
  line-height: 0.95;
  margin: 0 0 20px;
}
.footer__brand em {
  color: var(--rust);
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
}
.footer__tag {
  color: var(--ink-3);
  font-family: var(--font-body);
  font-style: italic;
  font-size: 17px;
}
.footer__phone {
  display: inline-block;
  margin-top: 14px;
  font-family: var(--font-mono);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--ink);
  transition: color 0.2s;
}
.footer__phone:hover { color: var(--rust); }
.footer__col h5 {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--rust);
  margin: 0 0 20px;
}
.footer__col ul { list-style: none; padding: 0; margin: 0; }
.footer__col li { margin-bottom: 12px; }
.footer__col a {
  color: var(--ink-3);
  font-family: var(--font-body);
  font-size: 17px;
  transition: color 0.2s;
}
.footer__col a:hover { color: var(--rust); }

.footer__bar {
  border-top: 1px solid var(--line);
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-family: var(--font-ui);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--muted);
  text-transform: uppercase;
}
.footer__bar .ascii {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 14px;
  letter-spacing: 0;
  color: var(--ink-3);
  text-transform: none;
}

@media (max-width: 880px) {
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer__brand { grid-column: 1 / -1; }
}

/* ---------- mobile nav ---------- */
@media (max-width: 880px) {
  .nav__links { display: none; }
  .nav__hamburger { display: inline-flex; }
}

/* ---------- reveal-on-scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.9s cubic-bezier(0.2,0.7,0.2,1), transform 0.9s cubic-bezier(0.2,0.7,0.2,1);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- our story (magazine spread) ---------- */
.section--story {
  background: var(--paper);
  position: relative;
}

.story {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 80px;
  align-items: start;
  max-width: 1100px;
  margin: 0 auto;
}
.story__photo { position: sticky; top: 120px; margin: 0; }
.story__photo img {
  display: block;
  width: 100%;
  border-radius: var(--radius);
  border: 1px solid var(--line);
}
.story__photo figcaption {
  margin-top: 12px;
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

.story__body {
  font-family: var(--font-body);
  font-size: 20px;
  line-height: 1.65;
  color: var(--ink-2);
}
.story__body p { margin: 0 0 1.4em; }
.story__lede {
  font-size: 24px;
  line-height: 1.45;
  color: var(--ink);
}
.story__lede::first-letter {
  font-family: var(--font-display);
  font-weight: 400;
  float: left;
  font-size: 4.6em;
  line-height: 0.85;
  margin: 6px 14px 0 -2px;
  color: var(--rust);
}
.story__sign {
  margin-top: 2.4em;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  font-style: italic;
  color: var(--ink-3);
}
.story__sign em {
  font-style: italic;
  color: var(--rust);
}

@media (max-width: 900px) {
  .story { grid-template-columns: 1fr; gap: 32px; }
  .story__photo { position: static; }
  .story__lede { font-size: 20px; }
}

/* ---------- magazine svc-list asymmetry (home + services) ---------- */
.section--svc .svc-list { border-top: none; }
.section--svc .svc-row {
  border-bottom: 1px solid var(--line);
  border-top: none;
  padding: 44px 0;
  align-items: baseline;
}
.section--svc .svc-row:first-child { border-top: 1px solid var(--line); }
.section--svc .svc-row:nth-child(even) { padding-left: clamp(0px, 4vw, 56px); }

/* ---------- featured videos on home ---------- */
.section--videos { background: var(--bg); }
#home-videos { grid-template-columns: repeat(12, 1fr); }
#home-videos .card { grid-column: span 4; }
#home-videos .card:first-child { grid-column: span 6; }
#home-videos .card:nth-child(2),
#home-videos .card:nth-child(3) { grid-column: span 3; }
@media (max-width: 980px) {
  #home-videos .card,
  #home-videos .card:first-child,
  #home-videos .card:nth-child(2),
  #home-videos .card:nth-child(3) { grid-column: span 6; }
}
@media (max-width: 620px) {
  #home-videos .card,
  #home-videos .card:first-child,
  #home-videos .card:nth-child(2),
  #home-videos .card:nth-child(3) { grid-column: span 12; }
}

/* video thumbnail aspect */
.card--video .card__media { aspect-ratio: 16 / 10; }
.card--video .card__media img { object-fit: cover; }
.card--video .card__media::after {
  content: "▶";
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 64px; height: 64px;
  border-radius: 50%;
  background: rgba(28,24,20,0.78);
  color: var(--paper);
  display: grid;
  place-items: center;
  font-size: 22px;
  padding-left: 4px;
  transition: background 0.25s, transform 0.25s;
  pointer-events: none;
}
.card--video:hover .card__media::after { background: var(--rust); transform: translate(-50%, -50%) scale(1.08); }

/* ---------- videos index page ---------- */
.videos-page__head {
  max-width: 880px;
  margin: 0 auto 64px;
  padding: 0 var(--gutter);
}
.videos-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 28px;
  padding: 0 var(--gutter);
  max-width: var(--maxw);
  margin: 0 auto;
}
.videos-grid .card { grid-column: span 4; }
@media (max-width: 980px) { .videos-grid .card { grid-column: span 6; } }
@media (max-width: 620px) { .videos-grid .card { grid-column: span 12; } }

.videos-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 60px 20px;
  color: var(--muted);
  font-family: var(--font-body);
  font-style: italic;
  font-size: 19px;
}

/* ---------- video detail page ---------- */
.video-page {
  max-width: 980px;
  margin: 0 auto;
  padding: clamp(48px, 7vw, 80px) var(--gutter) 60px;
}
.video-page__kicker {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--rust);
  margin-bottom: 18px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.video-page__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2rem, 5.2vw, 4rem);
  color: var(--ink);
  line-height: 0.98;
  letter-spacing: -0.025em;
  margin: 0 0 20px;
  max-width: 22ch;
}
.video-page__title em {
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
  color: var(--rust);
}
.video-page__summary {
  font-family: var(--font-body);
  font-size: 21px;
  line-height: 1.5;
  color: var(--ink-3);
  margin: 0 0 40px;
  max-width: 60ch;
}

.video-embed {
  position: relative;
  aspect-ratio: 16 / 9;
  background: var(--surface);
  margin: 0 0 24px;
  border: 1px solid var(--line);
}
.video-page__actions { margin: 0 0 52px; }
.video-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  border: 0;
}

/* products section on video page */
.products__head {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--rust);
  margin: 0 0 6px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
/* dense scannable index — hairline rows, two columns on wide screens */
.products {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 44px;
  border-top: 1px solid var(--line);
  margin-top: 18px;
}
.product {
  grid-column: auto;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  padding: 12px 2px 11px;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  color: inherit;
  transition: background-color 0.2s ease, padding-left 0.2s ease, padding-right 0.2s ease;
}
.product:hover,
.product:focus-visible {
  background-color: rgba(177, 90, 44, 0.05);
  padding-left: 8px;
  padding-right: 8px;
  outline: none;
}
.product__text {
  min-width: 0;
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 3px 10px;
}
.product__brand {
  flex: none;
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  transform: translateY(-1px);
  transition: color 0.2s ease;
}
.product:hover .product__brand,
.product:focus-visible .product__brand { color: var(--rust); }
.product__name {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 400;
  color: var(--ink);
  line-height: 1.25;
}
.product__view {
  flex: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
  transition: color 0.2s ease;
}
.product:hover .product__view,
.product:focus-visible .product__view { color: var(--rust); }
.product__arrow {
  transition: transform 0.2s ease;
}
.product:hover .product__arrow,
.product:focus-visible .product__arrow { transform: translateX(3px); }

.products__empty {
  padding: 18px 0;
  color: var(--muted);
  font-family: var(--font-body);
  font-size: 18px;
  font-style: italic;
}

@media (max-width: 700px) {
  .products { grid-template-columns: 1fr; column-gap: 0; }
  .product { padding: 11px 2px 10px; }
}

/* ---------- shared service number (home + services, consistent) ---------- */
.svc-num,
.section--svc .svc-row__num {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(30px, 3.4vw, 46px);
  line-height: 0.9;
  color: var(--rust);
  letter-spacing: -0.01em;
  flex: none;
}

/* ---------- services page: editorial zig-zag feature rows ---------- */
.svc-feat-list { list-style: none; margin: 0; padding: 0; }
.svc-feat {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 5vw, 68px);
  align-items: center;
  padding: clamp(40px, 6vw, 78px) 0;
  border-bottom: 1px solid var(--line);
}
.svc-feat:first-child { border-top: 1px solid var(--line); }
/* alternate: image moves to the right on even rows (text is first in DOM) */
.svc-feat:nth-child(even) .svc-feat__media { order: -1; }

.svc-feat__media {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: 0 28px 56px -34px rgba(28,24,20,0.55);
}
.svc-feat__media img {
  display: block;
  width: 100%;
  height: auto;            /* show the full labeled image — no cropping */
  transition: transform 0.6s ease;
}
.svc-feat:hover .svc-feat__media img { transform: scale(1.03); }

.svc-feat__head {
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 18px;
}
.svc-feat__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(26px, 3vw, 38px);
  color: var(--ink);
  letter-spacing: -0.015em;
  line-height: 1.05;
  margin: 0;
}
.svc-feat__desc {
  color: var(--ink-3);
  font-family: var(--font-body);
  font-size: 19px;
  line-height: 1.55;
  margin: 0 0 28px;
  max-width: 52ch;
}
.svc-feat__cta { background: var(--rust); }
.svc-feat__cta:hover { background: var(--rust-deep); color: var(--paper); }

@media (max-width: 820px) {
  .svc-feat { grid-template-columns: 1fr; gap: 24px; }
  .svc-feat__media,
  .svc-feat:nth-child(even) .svc-feat__media { order: -1; }  /* image always on top */
  .svc-feat__desc { font-size: 18px; }
}

/* ---------- partners / dealer logos (home strip) ---------- */
.section--partners { background: var(--bg-2); }
.partners {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 44px;
}
.partner {
  display: flex;
  flex-direction: column;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.partner:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px -18px rgba(28,24,20,0.4);
}
.partner__logo {
  height: 92px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  border-radius: var(--radius);
}
.partner__logo img {
  max-height: 56px;
  max-width: 88%;
  width: auto;
  object-fit: contain;
  /* dissolve the white logo boxes into the cream card so the marks print cleanly */
  mix-blend-mode: multiply;
}
/* Epoch is white-on-navy — give it its own native plate instead of blending */
.partner--dark .partner__logo {
  background: #13223c;
  padding: 0 18px;
}
.partner--dark .partner__logo img {
  mix-blend-mode: normal;
  max-height: 50px;
}
.partner__name {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--rust);
  margin: 0 0 8px;
}
.partner__desc {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.45;
  color: var(--ink-3);
  margin: 0;
}
@media (max-width: 860px) { .partners { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 460px) { .partners { grid-template-columns: 1fr; } }

/* ---------- install gallery (home) ---------- */
.section--gallery { background: var(--bg); }
.gallery {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 200px;
  gap: 16px;
  margin-top: 44px;
}
.gallery__item {
  grid-column: span 4;
  grid-row: span 1;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--surface);
}
.gallery__item:nth-child(1),
.gallery__item:nth-child(6) { grid-column: span 6; grid-row: span 2; }
.gallery__item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.gallery__item:hover img { transform: scale(1.05); }
@media (max-width: 860px) {
  .gallery { grid-auto-rows: 150px; }
  .gallery__item { grid-column: span 6; }
  .gallery__item:nth-child(1),
  .gallery__item:nth-child(6) { grid-column: span 6; grid-row: span 2; }
}
@media (max-width: 520px) {
  .gallery__item,
  .gallery__item:nth-child(1),
  .gallery__item:nth-child(6) { grid-column: span 12; grid-row: span 1; }
}

/* ---------- amazon associate disclosure ---------- */
.products__disclosure {
  margin-top: 18px;
  font-family: var(--font-ui);
  font-size: 12px;
  line-height: 1.5;
  color: var(--muted);
}

/* ---------- atmosphere: paper grain + hero entrance ---------- */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.04;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%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");
}

@media (prefers-reduced-motion: no-preference) {
  @keyframes heroIn {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: none; }
  }
  .hero__inner .h-eyebrow { animation: heroIn 0.8s 0.10s both cubic-bezier(0.2,0.7,0.2,1); }
  .hero__title            { animation: heroIn 0.9s 0.22s both cubic-bezier(0.2,0.7,0.2,1); }
  .hero__sub              { animation: heroIn 0.9s 0.40s both cubic-bezier(0.2,0.7,0.2,1); }
  .hero__cta              { animation: heroIn 0.9s 0.56s both cubic-bezier(0.2,0.7,0.2,1); }
  .hero__meter            { animation: heroIn 1.0s 0.72s both cubic-bezier(0.2,0.7,0.2,1); }
}

/* ---------- utility ---------- */
.center { text-align: center; }
.mt-2  { margin-top: 16px; }
.mt-4  { margin-top: 32px; }
.mt-6  { margin-top: 48px; }

/* ---------- brand logo (replaces P/A text mark) ---------- */
.brand__logo {
  height: 92px;
  width: 92px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  mix-blend-mode: multiply;
  transition: transform 0.2s;
}
.brand:hover .brand__logo { transform: scale(1.05); }
.brand__sub {
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
}

/* ---------- hero meter readability ---------- */
.hero__meter {
  background: rgba(28,24,20,0.35);
  padding: 8px 16px;
  border-radius: 2px;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

/* ---------- gallery grid ---------- */
.gallery-grid {
  margin-top: 44px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.gallery-grid figure {
  margin: 0;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--surface);
}
.gallery-grid img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.2,0.7,0.2,1);
}
.gallery-grid figure:hover img { transform: scale(1.04); }
@media (max-width: 760px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
}

/* ---------- story teaser (home page) ---------- */
.section--story-teaser { background: var(--paper); }
.story-teaser {
  max-width: 640px;
  text-align: center;
  margin: 0 auto;
}
.story-teaser__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.2rem, 4.8vw, 3.8rem);
  color: var(--ink);
  letter-spacing: -0.025em;
  line-height: 0.95;
  margin: 18px 0 0;
}
.story-teaser__title em {
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
  color: var(--rust);
}
.story-teaser__sub {
  font-family: var(--font-body);
  font-size: 19px;
  line-height: 1.55;
  color: var(--ink-3);
  margin: 20px 0 36px;
}

/* ---------- contact page form ---------- */
.contact-wrap {
  max-width: 640px;
  margin: 64px auto 96px;
  padding: 0 var(--gutter);
}
.form-group {
  margin-bottom: 28px;
}
.form-group label {
  display: block;
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--rust);
  margin-bottom: 10px;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  background: var(--paper);
  border: 1px solid var(--line);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.5;
  transition: border-color 0.2s;
  -webkit-appearance: none;
  border-radius: 0;
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus { border-color: var(--rust); }
.form-group textarea { min-height: 160px; resize: vertical; }
.contact-alt {
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
  font-family: var(--font-body);
  font-size: 17px;
  color: var(--ink-3);
  font-style: italic;
}
.contact-alt a {
  color: var(--rust);
  border-bottom: 1px solid color-mix(in oklab, var(--rust) 40%, transparent);
  transition: border-color 0.2s;
}
.contact-alt a:hover { border-color: var(--rust); }

/* ── Contact options (contact.html) ─────────────────────────────── */
.contact-wrap--wide { max-width: 880px; margin-top: 8px; }
.contact-options { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--line); }
.contact-option {
  display: grid; grid-template-columns: 180px 1fr; gap: 8px 32px; align-items: baseline;
  padding: 28px 0; border-bottom: 1px solid var(--line);
}
.contact-option__label {
  font-family: var(--font-ui); font-size: 11px; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--rust);
}
.contact-option__value {
  font-family: var(--font-display); font-size: 28px; line-height: 1.15; letter-spacing: -0.01em;
  color: var(--ink); user-select: all; overflow-wrap: anywhere;
}
.contact-option .btn-quote { justify-self: start; white-space: nowrap; }
.contact-option__note {
  grid-column: 2; margin: 0;
  font-family: var(--font-body); font-size: 17px; line-height: 1.55; color: var(--ink-3); max-width: 520px;
}
@media (max-width: 620px) {
  .contact-option { grid-template-columns: 1fr; gap: 10px; padding: 22px 0; }
  .contact-option__note { grid-column: 1; }
  .contact-option__value { font-size: 24px; }
}
