/* ==========================================================================
   O'Connell Painting — site styles
   Sections:
     1. Tokens (palette, type)
     2. Reset + base
     3. Layout helpers
     4. Header / nav
     5. Footer
     6. Type utilities + buttons + placeholders
     7. Home page
     8. About page
     9. Process page
   ========================================================================== */

/* ----- 1. Tokens ----- */
:root {
  /* Palette — Classic Annapolis */
  --bg: #f1ece2;
  --bg-alt: #e8e1d2;
  --fg: #1a1814;
  --fg-dim: #575049;
  --fg-mute: #8a8176;
  --primary: #14243a;
  --primary-2: #1c3456;
  --accent: #9a7a3b;
  --rule: #c9beaa;
  --rule-strong: #a89b84;

  /* Type */
  --serif: "Playfair Display", "Iowan Old Style", Georgia, serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
  --mono: "JetBrains Mono", "SF Mono", Menlo, Consolas, monospace;
}

/* ----- 2. Reset + base ----- */
* { box-sizing: border-box; margin: 0; padding: 0; }

html, body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "ss01", "cv11";
}

a { color: inherit; text-decoration: none; }
::selection { background: var(--primary); color: var(--bg); }

/* ----- 3. Layout helpers ----- */
.wrap {
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 48px;
}
@media (max-width: 720px) {
  .wrap { padding: 0 24px; }
}
.rule { border: 0; border-top: 1px solid var(--rule); margin: 0; }
.rule--strong { border-top-color: var(--rule-strong); }

/* ----- 4. Header ----- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: color-mix(in srgb, var(--bg) 92%, transparent);
  backdrop-filter: saturate(130%) blur(10px);
  -webkit-backdrop-filter: saturate(130%) blur(10px);
  border-bottom: 1px solid var(--rule);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.wordmark {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: 0.01em;
  color: var(--primary);
  display: flex;
  align-items: baseline;
  gap: 10px;
}
.wordmark__sub {
  font-family: var(--sans);
  font-weight: 500;
  letter-spacing: 0.22em;
  font-size: 10px;
  text-transform: uppercase;
  color: var(--fg-mute);
  position: relative;
  top: -2px;
}
.nav { display: flex; align-items: center; gap: 28px; flex-wrap: nowrap; }
.nav a {
  font-size: 13px;
  letter-spacing: 0.02em;
  color: var(--fg-dim);
  padding: 6px 0;
  position: relative;
}
.nav a:hover { color: var(--fg); }
.nav a.is-active { color: var(--primary); }
.nav a.is-active::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 1.5px;
  background: var(--accent);
}
.nav a.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px;
  background: var(--primary);
  color: var(--bg);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
  border-radius: 2px;
  transition: background 160ms ease;
  white-space: nowrap;
  flex-shrink: 0;
}
.nav a.nav__cta:hover { background: var(--primary-2); color: var(--bg); }
@media (max-width: 1180px) { .nav { gap: 22px; } .nav a { font-size: 12.5px; } }
@media (max-width: 980px)  { .nav { gap: 20px; } .nav a:not(.nav__cta) { display: none; } .nav a.nav__cta { display: inline-flex; } }

/* ----- 5. Footer ----- */
.site-footer {
  border-top: 1px solid var(--rule);
  padding: 72px 0 40px;
  margin-top: 120px;
  background: var(--bg-alt);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 64px;
}
.footer-brand .wordmark { font-size: 28px; }
.footer-brand p {
  margin-top: 20px;
  max-width: 32ch;
  color: var(--fg-dim);
  font-size: 14px;
  line-height: 1.6;
}
.footer-col h4 {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--fg-mute);
  font-weight: 500;
  margin-bottom: 18px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; font-size: 14px; color: var(--fg-dim); }
.footer-col a:hover { color: var(--fg); }
.footer-legal {
  display: flex;
  justify-content: space-between;
  padding-top: 28px;
  border-top: 1px solid var(--rule);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--fg-mute);
  text-transform: uppercase;
}
.footer-legal span + span::before { content: "·"; margin: 0 14px; color: var(--rule-strong); }
@media (max-width: 820px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-legal { flex-direction: column; gap: 10px; }
  .footer-legal span + span::before { display: none; }
}

/* ----- 6. Type utilities, buttons, placeholders ----- */
.eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--fg-mute);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before { content: ""; width: 22px; height: 1px; background: var(--accent); display: inline-block; }
.display { font-family: var(--serif); font-weight: 500; line-height: 0.98; letter-spacing: -0.018em; color: var(--primary); }
.display em { font-style: italic; font-weight: 400; color: var(--accent); }
.section-num { font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; color: var(--fg-mute); }
.lead { font-family: var(--serif); font-size: 24px; line-height: 1.4; color: var(--fg); font-weight: 400; max-width: 30ch; }
.body-lg { font-size: 17px; line-height: 1.65; color: var(--fg-dim); max-width: 58ch; }

/* placeholder block (used when no real photo is set) */
.ph {
  position: relative;
  overflow: hidden;
  background:
    repeating-linear-gradient(135deg,
      color-mix(in srgb, var(--primary) 14%, transparent) 0 2px,
      transparent 2px 12px),
    var(--bg-alt);
  border: 1px solid var(--rule);
  color: var(--fg-mute);
}
.ph--dark {
  background:
    repeating-linear-gradient(135deg,
      color-mix(in srgb, var(--bg) 14%, transparent) 0 2px,
      transparent 2px 12px),
    var(--primary);
  border-color: var(--primary-2);
  color: color-mix(in srgb, var(--bg) 70%, var(--primary));
}
.ph__label   { position: absolute; left: 16px; top: 14px;     font-family: var(--mono); font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; }
.ph__corner  { position: absolute; right: 16px; bottom: 14px; font-family: var(--mono); font-size: 10px; letter-spacing: 0.14em; opacity: 0.6; }
.ph--photo { background: none; border-color: transparent; }
.ph--photo .ph__label { display: none; }
.ph--photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  image-orientation: none;  /* trust the file's pixel orientation; we baked rotation in already */
}
.ph--photo .ph__corner { color: rgba(255,255,255,0.85); text-shadow: 0 1px 2px rgba(0,0,0,0.4); }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 26px;
  background: var(--primary);
  color: var(--bg);
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
  border-radius: 2px;
  border: 1px solid var(--primary);
  cursor: pointer;
  transition: background 160ms ease;
}
.btn:hover { background: var(--primary-2); }
.btn--ghost { background: transparent; color: var(--primary); border-color: var(--rule-strong); }
.btn--ghost:hover { background: var(--bg-alt); }
.btn .arrow { transition: transform 180ms ease; }
.btn:hover .arrow { transform: translateX(4px); }

.page-hero { padding: 96px 0 80px; border-bottom: 1px solid var(--rule); }
.page-hero__num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--fg-mute);
  text-transform: uppercase;
  margin-bottom: 28px;
}

/* ==========================================================================
   7. HOME PAGE
   ========================================================================== */
.hero { padding: 72px 0 0; position: relative; }
.hero__grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 64px; align-items: end; }
.hero__title { font-size: clamp(54px, 7.4vw, 108px); line-height: 0.96; }
.hero__sub { margin-top: 40px; max-width: 42ch; font-family: var(--sans); font-size: 18px; line-height: 1.55; color: var(--fg-dim); }
.hero__cta { display: flex; gap: 14px; margin-top: 44px; flex-wrap: wrap; }
.hero__image { aspect-ratio: 3 / 4; min-height: 520px; }
.hero__strip {
  margin-top: 80px;
  padding: 22px 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}
.hero__strip-item { display: flex; align-items: baseline; gap: 14px; font-size: 13px; color: var(--fg-dim); }
.hero__strip-item strong {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--primary);
  text-transform: uppercase;
  font-weight: 500;
}
@media (max-width: 900px) {
  .hero__grid { grid-template-columns: 1fr; gap: 40px; }
  .hero__image { min-height: 380px; }
  .hero__strip { grid-template-columns: 1fr 1fr; gap: 20px; }
}

.pillars { padding: 120px 0 100px; }
.pillars__head { margin-bottom: 72px; }
.pillars__head h2 {
  font-family: var(--serif);
  font-size: clamp(40px, 4.8vw, 68px);
  line-height: 1.02;
  letter-spacing: -0.015em;
  color: var(--primary);
  font-weight: 500;
  max-width: 18ch;
}
.pillars__head h2 em { font-style: italic; color: var(--accent); font-weight: 400; }
.pillars__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--rule-strong);
}
.pillar { padding: 36px 32px 40px; border-right: 1px solid var(--rule); }
.pillar:last-child { border-right: 0; }
.pillar__num { font-family: var(--mono); font-size: 11px; letter-spacing: 0.18em; color: var(--accent); margin-bottom: 60px; }
.pillar__title { font-family: var(--serif); font-size: 30px; line-height: 1.1; color: var(--primary); margin-bottom: 16px; font-weight: 500; }
.pillar__body { font-size: 15px; line-height: 1.6; color: var(--fg-dim); }
@media (max-width: 900px) {
  .pillars__grid { grid-template-columns: 1fr; }
  .pillar { border-right: 0; border-bottom: 1px solid var(--rule); }
  .pillar:last-child { border-bottom: 0; }
}

.josh { background: var(--primary); color: var(--bg); padding: 120px 0; }
.josh__grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 80px; align-items: center; }
.josh__image { aspect-ratio: 4 / 5; min-height: 480px; }
.josh__eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--bg) 60%, var(--primary));
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
}
.josh__eyebrow::before { content: ""; width: 22px; height: 1px; background: var(--accent); }
.josh__quote {
  font-family: var(--serif);
  font-size: clamp(28px, 3.2vw, 44px);
  line-height: 1.2;
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.01em;
  text-wrap: pretty;
}
.josh__quote::before {
  content: "\201C";
  font-family: var(--serif);
  font-size: 64px;
  line-height: 0.4;
  color: var(--accent);
  margin-right: 4px;
  vertical-align: -14px;
}
.josh__body {
  margin-top: 36px;
  font-size: 16px;
  line-height: 1.7;
  color: color-mix(in srgb, var(--bg) 80%, transparent);
  max-width: 54ch;
}
.josh__sig {
  margin-top: 40px;
  display: flex;
  align-items: center;
  gap: 20px;
  padding-top: 28px;
  border-top: 1px solid color-mix(in srgb, var(--bg) 20%, transparent);
  font-size: 13px;
  color: color-mix(in srgb, var(--bg) 70%, transparent);
}
.josh__sig-name { font-family: var(--serif); font-style: italic; font-size: 24px; color: var(--bg); }
.josh__story-link {
  margin-left: auto;
  color: var(--accent);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
@media (max-width: 900px) {
  .josh__grid { grid-template-columns: 1fr; gap: 48px; }
  .josh__image { min-height: 360px; }
}

.work { padding: 120px 0 40px; }
.work__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 48px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--rule);
}
.work__head h2 {
  font-family: var(--serif);
  font-size: clamp(40px, 4.8vw, 64px);
  line-height: 1;
  color: var(--primary);
  font-weight: 500;
  letter-spacing: -0.015em;
}
.work__head h2 em { font-style: italic; color: var(--accent); font-weight: 400; }
.work__head a {
  color: var(--fg-dim);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.work__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px 24px; }
.work__item { cursor: pointer; }
.work__item .ph {
  width: 100%;
  aspect-ratio: 4 / 3;
  min-height: 260px;
  margin-bottom: 16px;
  transition: transform 300ms ease;
}
.work__item:hover .ph { transform: translateY(-3px); }
.work__item.featured { grid-column: span 3; }
.work__item.featured .ph { aspect-ratio: 16 / 7; min-height: 420px; }
.work__caption { display: flex; justify-content: space-between; gap: 20px; padding-top: 4px; }
.work__caption h3 { font-family: var(--serif); font-size: 22px; font-weight: 500; color: var(--primary); line-height: 1.2; }
.work__caption p {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-mute);
  margin-top: 4px;
}
.work__caption small {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--fg-mute);
  white-space: nowrap;
}
.work__more {
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid var(--rule);
  display: flex;
  justify-content: center;
  clear: both;
}
@media (max-width: 900px) {
  .work__grid { grid-template-columns: 1fr; }
  .work__item.featured { grid-column: auto; }
  .work__item.featured .ph { aspect-ratio: 4 / 3; min-height: 260px; }
  .work__head { flex-direction: column; align-items: flex-start; gap: 16px; }
}

.process-preview { padding: 120px 0; background: var(--bg-alt); }
.process-preview__head {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 64px;
  margin-bottom: 56px;
  align-items: end;
}
.process-preview__head h2 {
  font-family: var(--serif);
  font-size: clamp(40px, 4.8vw, 64px);
  line-height: 1.02;
  color: var(--primary);
  font-weight: 500;
  letter-spacing: -0.015em;
}
.process-preview__head h2 em { font-style: italic; color: var(--accent); font-weight: 400; }
.process-preview__head p { color: var(--fg-dim); max-width: 42ch; font-size: 16px; line-height: 1.6; }
.steps {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  border-top: 1px solid var(--rule-strong);
  border-bottom: 1px solid var(--rule-strong);
}
.step {
  padding: 28px 18px 32px;
  border-right: 1px solid var(--rule);
  position: relative;
  cursor: pointer;
  transition: background 200ms ease;
}
.step:last-child { border-right: 0; }
.step:hover { background: color-mix(in srgb, var(--primary) 4%, transparent); }
.step__num { font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; color: var(--accent); margin-bottom: 56px; display: block; }
.step__title { font-family: var(--serif); font-size: 17px; line-height: 1.2; color: var(--primary); font-weight: 500; margin-bottom: 6px; }
.step__hint { font-size: 12px; color: var(--fg-dim); line-height: 1.5; }
.process-preview__cta { margin-top: 48px; display: flex; justify-content: flex-end; }
@media (max-width: 1100px) {
  .steps { grid-template-columns: repeat(4, 1fr); }
  .step { border-bottom: 1px solid var(--rule); }
  .step:nth-child(4) { border-right: 0; }
}
@media (max-width: 720px) {
  .steps { grid-template-columns: 1fr 1fr; }
  .step:nth-child(odd) { border-right: 1px solid var(--rule); }
  .step:nth-child(even) { border-right: 0; }
  .process-preview__head { grid-template-columns: 1fr; gap: 24px; }
}

.testimonials { padding: 120px 0; }
.testimonials__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 56px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--rule);
}
.testimonials__head h2 {
  font-family: var(--serif);
  font-size: clamp(40px, 4.8vw, 64px);
  font-weight: 500;
  color: var(--primary);
  line-height: 1;
  letter-spacing: -0.015em;
}
.testimonials__head h2 em { font-style: italic; color: var(--accent); font-weight: 400; }
.testimonials__count {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-mute);
}
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--rule);
}
.tcard { padding: 40px 32px 36px; border-right: 1px solid var(--rule); }
.tcard:last-child { border-right: 0; }
.tcard__rating { display: flex; gap: 3px; margin-bottom: 24px; }
.tcard__star {
  width: 10px; height: 10px;
  background: var(--accent);
  clip-path: polygon(50% 0, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 71%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}
.tcard__quote {
  font-family: var(--serif);
  font-size: 21px;
  line-height: 1.4;
  color: var(--fg);
  font-weight: 400;
  text-wrap: pretty;
  margin-bottom: 28px;
}
.tcard__by { padding-top: 16px; border-top: 1px solid var(--rule); font-size: 13px; color: var(--fg-dim); }
.tcard__by strong { font-weight: 500; color: var(--fg); display: block; font-size: 14px; }
@media (max-width: 900px) {
  .testimonials__grid { grid-template-columns: 1fr; }
  .tcard { border-right: 0; border-bottom: 1px solid var(--rule); }
  .tcard:last-child { border-bottom: 0; }
}

.area { padding: 120px 0; background: var(--bg-alt); }
.area__inner { display: grid; grid-template-columns: 1fr 1.4fr; gap: 80px; align-items: center; }
.area__head h2 {
  font-family: var(--serif);
  font-size: clamp(40px, 4.8vw, 60px);
  line-height: 1.02;
  color: var(--primary);
  font-weight: 500;
  letter-spacing: -0.015em;
}
.area__head h2 em { font-style: italic; color: var(--accent); font-weight: 400; }
.area__head p { margin-top: 24px; color: var(--fg-dim); font-size: 16px; line-height: 1.65; max-width: 38ch; }
.area__list {
  margin-top: 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px 20px;
  list-style: none;
}
.area__list li {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-dim);
  padding: 6px 0;
  border-bottom: 1px dotted var(--rule);
}
.area__map { aspect-ratio: 1 / 1; min-height: 440px; position: relative; overflow: hidden; border: 1px solid var(--rule); }
.area__map--photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.area__map--photo .map-svg--overlay { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; }
@media (max-width: 900px) {
  .area__inner { grid-template-columns: 1fr; gap: 48px; }
}

.contact-cta { padding: 140px 0; text-align: center; }
.contact-cta h2 {
  font-family: var(--serif);
  font-size: clamp(48px, 6vw, 96px);
  line-height: 0.98;
  color: var(--primary);
  font-weight: 500;
  letter-spacing: -0.018em;
  text-wrap: balance;
  max-width: 18ch;
  margin: 0 auto;
}
.contact-cta h2 em { font-style: italic; color: var(--accent); font-weight: 400; }
.contact-cta p {
  margin: 28px auto 40px;
  max-width: 44ch;
  font-size: 17px;
  line-height: 1.6;
  color: var(--fg-dim);
}
.contact-cta__actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* SVG map */
.map-svg { width: 100%; height: 100%; display: block; }
.map-svg__land { fill: var(--bg); stroke: var(--rule-strong); stroke-width: 1; }
.map-svg__water { fill: color-mix(in srgb, var(--primary) 10%, var(--bg-alt)); }
.map-svg__lines { fill: none; stroke: var(--rule); stroke-width: 0.5; stroke-dasharray: 2 3; }
.map-svg__pin { fill: var(--accent); }
.map-svg__pin-ring { fill: none; stroke: var(--accent); stroke-width: 1; opacity: 0.4; }
.map-svg__label {
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.1em;
  fill: var(--fg-dim);
  text-transform: uppercase;
}
.map-svg__label--primary { fill: var(--primary); font-weight: 500; }

/* ==========================================================================
   8. ABOUT PAGE
   ========================================================================== */
.about-hero { padding: 96px 0 80px; border-bottom: 1px solid var(--rule); }
.about-hero__grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 80px; align-items: end; }
.about-hero h1 {
  font-family: var(--serif);
  font-size: clamp(48px, 6.4vw, 96px);
  line-height: 0.98;
  color: var(--primary);
  font-weight: 500;
  letter-spacing: -0.018em;
}
.about-hero h1 em { font-style: italic; color: var(--accent); font-weight: 400; }
.about-hero__sub {
  margin-top: 32px;
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1.45;
  font-style: italic;
  color: var(--fg-dim);
  max-width: 38ch;
}
.about-hero__image { aspect-ratio: 3 / 4; min-height: 520px; }
@media (max-width: 900px) { .about-hero__grid { grid-template-columns: 1fr; gap: 40px; } }

.story { padding: 120px 0; }
.story__grid { display: grid; grid-template-columns: 1fr 2fr; gap: 80px; align-items: start; }
.story__aside { position: sticky; top: 120px; }
.story__aside h2 {
  font-family: var(--serif);
  font-size: clamp(32px, 3.6vw, 48px);
  line-height: 1.05;
  color: var(--primary);
  font-weight: 500;
  letter-spacing: -0.01em;
}
.story__aside h2 em { font-style: italic; color: var(--accent); font-weight: 400; }
.story__body p {
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1.55;
  color: var(--fg);
  font-weight: 400;
  margin-bottom: 28px;
  text-wrap: pretty;
}
.story__body p:first-of-type::first-letter {
  font-family: var(--serif);
  float: left;
  font-size: 78px;
  line-height: 0.85;
  padding: 6px 14px 0 0;
  color: var(--accent);
  font-weight: 500;
}
.story__body p.small {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  color: var(--fg-dim);
}
.story__pull {
  margin: 44px 0;
  padding: 0 0 0 28px;
  border-left: 2px solid var(--accent);
  font-family: var(--serif);
  font-style: italic;
  font-size: 28px;
  line-height: 1.3;
  color: var(--primary);
}
@media (max-width: 900px) { .story__grid { grid-template-columns: 1fr; gap: 48px; } .story__aside { position: static; } }

.model { padding: 120px 0; background: var(--primary); color: var(--bg); }
.model__grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 80px; }
.model__eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--bg) 60%, var(--primary));
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.model__eyebrow::before { content:""; width: 22px; height: 1px; background: var(--accent); }
.model h2 {
  font-family: var(--serif);
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1;
  font-weight: 500;
  letter-spacing: -0.015em;
}
.model h2 em { font-style: italic; color: var(--accent); font-weight: 400; }
.model__intro {
  margin-top: 24px;
  color: color-mix(in srgb, var(--bg) 78%, transparent);
  font-size: 16px;
  line-height: 1.65;
  max-width: 36ch;
}
.model__points { display: grid; grid-template-columns: 1fr; gap: 4px; }
.model__row {
  display: grid;
  grid-template-columns: 80px 1fr 1fr;
  padding: 24px 0;
  border-bottom: 1px solid color-mix(in srgb, var(--bg) 20%, transparent);
  gap: 28px;
  align-items: baseline;
}
.model__row:last-child { border-bottom: 0; }
.model__row-num { font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; color: var(--accent); }
.model__row-title { font-family: var(--serif); font-size: 22px; line-height: 1.2; color: var(--bg); font-weight: 500; }
.model__row-body { font-size: 14px; line-height: 1.65; color: color-mix(in srgb, var(--bg) 75%, transparent); }
@media (max-width: 900px) {
  .model__grid { grid-template-columns: 1fr; gap: 40px; }
  .model__row { grid-template-columns: 1fr; gap: 8px; }
}

.creds { padding: 120px 0; }
.creds__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 56px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--rule);
}
.creds__head h2 {
  font-family: var(--serif);
  font-size: clamp(40px, 4.8vw, 64px);
  line-height: 1;
  color: var(--primary);
  font-weight: 500;
  letter-spacing: -0.015em;
}
.creds__head h2 em { font-style: italic; color: var(--accent); font-weight: 400; }
.creds__head small {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--fg-mute);
  text-transform: uppercase;
}
.creds__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--rule-strong);
  border-bottom: 1px solid var(--rule-strong);
}
.cred { padding: 32px 24px 36px; border-right: 1px solid var(--rule); }
.cred:last-child { border-right: 0; }
.cred__label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-mute);
  margin-bottom: 44px;
}
.cred__val {
  font-family: var(--serif);
  font-size: 28px;
  line-height: 1.1;
  color: var(--primary);
  font-weight: 500;
  margin-bottom: 8px;
}
.cred__hint { font-size: 13px; line-height: 1.5; color: var(--fg-dim); }
@media (max-width: 900px) {
  .creds__grid { grid-template-columns: 1fr 1fr; }
  .cred:nth-child(2) { border-right: 0; }
  .cred:nth-child(1), .cred:nth-child(2) { border-bottom: 1px solid var(--rule); }
}

.timeline { padding: 120px 0 40px; background: var(--bg-alt); }
.timeline__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 48px;
}
.timeline h2 {
  font-family: var(--serif);
  font-size: clamp(40px, 4.8vw, 64px);
  font-weight: 500;
  color: var(--primary);
  line-height: 1;
  letter-spacing: -0.015em;
}
.timeline h2 em { font-style: italic; color: var(--accent); font-weight: 400; }
.tl { border-top: 1px solid var(--rule); }
.tl-row {
  display: grid;
  grid-template-columns: 160px 1fr 2fr;
  padding: 32px 0;
  border-bottom: 1px solid var(--rule);
  gap: 40px;
  align-items: baseline;
}
.tl-year { font-family: var(--mono); font-size: 13px; letter-spacing: 0.14em; color: var(--accent); }
.tl-title { font-family: var(--serif); font-size: 22px; color: var(--primary); font-weight: 500; line-height: 1.2; }
.tl-body { font-size: 15px; line-height: 1.6; color: var(--fg-dim); }
@media (max-width: 820px) { .tl-row { grid-template-columns: 1fr; gap: 10px; padding: 24px 0; } }

/* ==========================================================================
   9. PROCESS PAGE
   ========================================================================== */
.proc-hero { padding: 96px 0 80px; border-bottom: 1px solid var(--rule); }
.proc-hero h1 {
  font-family: var(--serif);
  font-size: clamp(54px, 7.4vw, 108px);
  line-height: 0.98;
  color: var(--primary);
  letter-spacing: -0.018em;
  font-weight: 500;
  max-width: 14ch;
}
.proc-hero h1 em { font-style: italic; color: var(--accent); font-weight: 400; }
.proc-hero__meta {
  margin-top: 56px;
  padding-top: 28px;
  border-top: 1px solid var(--rule);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}
.proc-hero__meta-item strong {
  display: block;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 8px;
  font-weight: 500;
}
.proc-hero__meta-item { font-size: 14px; color: var(--fg-dim); line-height: 1.55; }
@media (max-width: 820px) { .proc-hero__meta { grid-template-columns: 1fr 1fr; } }

.proc-steps { padding: 80px 0 40px; }
.pstep {
  display: grid;
  grid-template-columns: 100px 1.2fr 1fr;
  gap: 64px;
  padding: 64px 0;
  border-top: 1px solid var(--rule);
  align-items: start;
}
.pstep:last-child { border-bottom: 1px solid var(--rule); }
.pstep__num { font-family: var(--serif); font-size: 56px; line-height: 1; color: var(--accent); font-weight: 400; font-style: italic; }
.pstep__body h3 {
  font-family: var(--serif);
  font-size: clamp(32px, 3.6vw, 46px);
  line-height: 1.05;
  color: var(--primary);
  font-weight: 500;
  letter-spacing: -0.01em;
  margin-bottom: 20px;
}
.pstep__lede { font-size: 17px; line-height: 1.65; color: var(--fg-dim); margin-bottom: 28px; max-width: 52ch; }
.pstep__list { list-style: none; display: grid; gap: 8px; }
.pstep__list li {
  display: flex;
  gap: 14px;
  font-size: 14px;
  color: var(--fg);
  padding: 8px 0;
  border-bottom: 1px dotted var(--rule);
}
.pstep__list li::before { content: "\2713"; color: var(--accent); font-family: var(--mono); font-size: 12px; flex-shrink: 0; width: 14px; }
.pstep__figure { aspect-ratio: 4 / 5; min-height: 340px; }
@media (max-width: 900px) {
  .pstep { grid-template-columns: 1fr; gap: 24px; padding: 44px 0; }
  .pstep__num { font-size: 40px; }
  .pstep__figure { min-height: 240px; }
}

.warranty { padding: 120px 0; background: var(--primary); color: var(--bg); }
.warranty__grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 80px; align-items: start; }
.warranty__eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--bg) 60%, var(--primary));
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
}
.warranty__eyebrow::before { content:""; width: 22px; height: 1px; background: var(--accent); }
.warranty h2 {
  font-family: var(--serif);
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1;
  font-weight: 500;
  letter-spacing: -0.015em;
}
.warranty h2 em { font-style: italic; color: var(--accent); font-weight: 400; }
.warranty__intro {
  margin-top: 24px;
  color: color-mix(in srgb, var(--bg) 78%, transparent);
  font-size: 15px;
  line-height: 1.65;
  max-width: 32ch;
}
.warranty__cols { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.warranty__col h4 {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.warranty__col .term {
  font-family: var(--serif);
  font-size: 44px;
  line-height: 1;
  font-weight: 500;
  color: var(--bg);
  margin-bottom: 16px;
}
.warranty__col p { font-size: 14px; line-height: 1.65; color: color-mix(in srgb, var(--bg) 75%, transparent); }
@media (max-width: 900px) {
  .warranty__grid { grid-template-columns: 1fr; gap: 40px; }
  .warranty__cols { grid-template-columns: 1fr 1fr; gap: 24px; }
}

.materials { padding: 120px 0; }
.materials__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 56px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--rule);
}
.materials__head h2 {
  font-family: var(--serif);
  font-size: clamp(40px, 4.8vw, 64px);
  line-height: 1;
  font-weight: 500;
  color: var(--primary);
  letter-spacing: -0.015em;
}
.materials__head h2 em { font-style: italic; color: var(--accent); font-weight: 400; }
.materials__head small {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--fg-mute);
  text-transform: uppercase;
}
.materials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--rule-strong);
  border-bottom: 1px solid var(--rule-strong);
}
.mat { padding: 36px 32px 40px; border-right: 1px solid var(--rule); }
.mat:last-child { border-right: 0; }
.mat__kind {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--fg-mute);
  margin-bottom: 56px;
}
.mat__brand { font-family: var(--serif); font-size: 28px; line-height: 1.1; color: var(--primary); font-weight: 500; margin-bottom: 6px; }
.mat__line { font-style: italic; color: var(--accent); font-family: var(--serif); margin-bottom: 16px; }
.mat p { font-size: 14px; line-height: 1.6; color: var(--fg-dim); }
@media (max-width: 900px) {
  .materials__grid { grid-template-columns: 1fr; }
  .mat { border-right: 0; border-bottom: 1px solid var(--rule); }
  .mat:last-child { border-bottom: 0; }
}

.faq { padding: 120px 0; background: var(--bg-alt); }
.faq__head h2 {
  font-family: var(--serif);
  font-size: clamp(40px, 4.8vw, 64px);
  font-weight: 500;
  color: var(--primary);
  line-height: 1;
  letter-spacing: -0.015em;
  margin-bottom: 56px;
}
.faq__head h2 em { font-style: italic; color: var(--accent); font-weight: 400; }
.faq__list { border-top: 1px solid var(--rule); }
.faq__item { border-bottom: 1px solid var(--rule); }
.faq__q {
  display: grid;
  grid-template-columns: 60px 1fr auto;
  gap: 32px;
  align-items: center;
  padding: 28px 0;
  cursor: pointer;
  background: transparent;
  border: 0;
  width: 100%;
  text-align: left;
  font-family: inherit;
  color: inherit;
  list-style: none;
}
.faq__q::-webkit-details-marker { display: none; }
.faq__q-num { font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; color: var(--accent); }
.faq__q-text { font-family: var(--serif); font-size: 22px; font-weight: 500; color: var(--primary); line-height: 1.3; }
.faq__q-toggle { font-family: var(--serif); font-size: 26px; color: var(--fg-mute); transition: transform 240ms ease; }
.faq__item[open] .faq__q-toggle { transform: rotate(45deg); color: var(--accent); }
.faq__a { padding: 0 0 32px 92px; font-size: 16px; line-height: 1.65; color: var(--fg-dim); max-width: 72ch; }
@media (max-width: 720px) {
  .faq__q { grid-template-columns: 40px 1fr auto; gap: 16px; }
  .faq__a { padding-left: 56px; }
  .faq__q-text { font-size: 18px; }
}
