/* =========================================================
   HARVEY CREATIVE — DESIGN SYSTEM v2
   Canonical stylesheet. Built per REBUILD-PLAN.md (Phase 1).
   See: core/clyde-tools/design/backbone/clients/harvey-creative/BRAND-GUIDE.md
   Visual reference: /design-system.html
   ---------------------------------------------------------
   Rules of the road:
   1. NO per-page <style> blocks. NO inline style attrs (except data-driven).
   2. NO legacy fallback variables (--accent-color, --text-secondary, etc).
      Use only the tokens in the :root block below.
   3. Component-first. If you need a new visual pattern, add a component
      here with a doc comment, then use it. Don't one-off in HTML.
   4. Sharp corners (radius: 2px). Smoke & Brass language.
   ---------------------------------------------------------
   TABLE OF CONTENTS
     1. Tokens                  (colors, type, spacing, easing)
     2. Reset + base
     3. Typography              (h1-h6, p, links, italic accent pattern)
     4. Layout primitives       (.container, .wrap, .section, .alt-section)
     5. Buttons                 (.btn, .btn-primary, .btn-secondary, .btn-ghost, .btn-dark)
     6. Nav                     (.nav, .nav-brand, .nav-links, .nav-cta, .nav-toggle)
     7. Hero                    (.hero, .hero-row, .hero-content, .hero-photo, .hero-canvas, .hero-marquee)
     8. Section header          (.section-header, .section-label, .section-title, .section-desc)
     9. Position block          (.position-row, .position-block, .position-headline, .position-photo)
    10. Service cards           (.services-grid, .service-card, .service-photo, .service-link)
    11. Process steps           (.process-steps, .process-step, .step-number)
    12. Install grid (Results)  (.install-grid, .install-item, .install-icon)
    13. Wins grid               (.wins-grid, .win-card, .win-number, .win-label)
    14. Personal / About        (.personal-grid, .personal-item, .about-intro, .about-photo)
    15. Testimonial             (.testimonial-section, .testimonial, .testimonial-quote)
    16. Booking widget          (.booking-widget + .booking-* sub-classes)
    17. Portfolio               (.portfolio-grid masonry, .portfolio-item-overlay, .lightbox)
    18. Footer                  (.footer, .footer-grid, .footer-brand, .footer-social)
    19. CTA section             (.cta-section, .cta-content, .btn-dark)
    20. Prose                   (.prose, .legal-content, article)
    21. Reveal animations       (.reveal, .reveal-group)
    22. Responsive overrides
   ---------------------------------------------------------
   Smoke & Brass: graphite slate / oyster bone / aged brass
   Type: Bricolage Grotesque (display) + Fraunces (accent italics) + Inter Tight (body)
   ========================================================= */

/* =========================================================
   1. TOKENS
   ========================================================= */

:root {
  --moss:            #2d3138;
  --moss-deep:       #1f2126;
  --moss-ink:        #0f1115;
  --tobacco:         #5b5648;
  --tobacco-soft:    #7a7466;
  --rust:            #b08230;
  --rust-deep:       #8a6422;
  --canvas:          #dcd6c8;
  --canvas-warm:     #d2cab8;
  --bone:            #e8e2d1;
  --bone-paper:      #ede7d6;
  --charcoal:        #1a1b1f;
  --charcoal-soft:   #34353a;
  --muted:           #6b6760;
  --line:            #a8a395;
  --brass:           #9c7a3c;

  --rust-rgb:        176, 130, 48;
  --canvas-rgb:      220, 214, 200;
  --charcoal-rgb:    26, 27, 31;
  --ink-rgb:         15, 17, 21;
  --tobacco-rgb:     91, 86, 72;

  --display: "Bricolage Grotesque", "Inter Tight", -apple-system, system-ui, sans-serif;
  --accent:  "Fraunces", "Georgia", "Times New Roman", serif;
  --body:    "Inter Tight", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --wrap:        1240px;
  --wrap-narrow: 880px;
  --gut:         clamp(20px, 4vw, 56px);

  /* Vertical rhythm — single source of truth for section padding.
     Every section (.section, .testimonial-section, .cta-section, .hero
     bottom, etc.) uses this so adjacent sections always have a
     symmetric 2× this value gap between their content. */
  --section-pad: clamp(80px, 12vw, 160px);

  --ease-out:    cubic-bezier(0.22, 0.61, 0.36, 1);
  --ease-soft:   cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Reset ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--body);
  color: var(--charcoal);
  background: var(--canvas);
  line-height: 1.5;
  font-weight: 400;
  letter-spacing: -0.005em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  position: relative;
}

/* paper grain overlay — weather-worn editorial feel */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.18;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240' viewBox='0 0 240 240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.11  0 0 0 0 0.11  0 0 0 0 0.10  0 0 0 0.55 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; transition: color 0.25s; }
button { font: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }
em, .italic { font-style: italic; }

::selection { background: rgba(var(--rust-rgb), 0.28); color: var(--moss-ink); }
:focus-visible { outline: 2px solid var(--rust); outline-offset: 3px; }

.container,
.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 var(--gut);
  position: relative;
  z-index: 2;
}
.wrap-narrow { max-width: var(--wrap-narrow); }

section, header, footer { position: relative; z-index: 2; }

/* =========================================================
   TYPOGRAPHY
   ========================================================= */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--display);
  color: var(--charcoal);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.1;
  font-variation-settings: "opsz" 36;
}

.section-label,
.eyebrow {
  font-family: var(--body);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: var(--rust);
  display: flex;
  width: max-content;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
}
.section-label::before,
.eyebrow::before {
  content: "";
  display: inline-block;
  width: 36px;
  height: 1px;
  background: var(--rust);
}
.eyebrow-cream { color: var(--canvas); }
.eyebrow-cream::before { background: var(--canvas); }

.display,
.display-1,
.display-2 {
  font-family: var(--display);
  color: var(--charcoal);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.035em;
  text-wrap: balance;
  font-variation-settings: "opsz" 96;
}
.display { font-size: clamp(4rem, 12vw, 11rem); }
.display-1 { font-size: clamp(3rem, 8vw, 6.5rem); line-height: 0.98; }
.display-2 { font-size: clamp(2.2rem, 5.4vw, 4.6rem); line-height: 1.02; letter-spacing: -0.03em; }

.display .italic,
.display-1 .italic,
.display-2 .italic,
.display em,
.display-1 em,
.display-2 em {
  font-family: var(--accent);
  font-style: italic;
  font-weight: 500;
  color: var(--rust);
  letter-spacing: -0.025em;
  font-variation-settings: "opsz" 144, "SOFT" 50;
}

.lead {
  font-size: clamp(1.08rem, 1.4vw, 1.22rem);
  color: var(--charcoal-soft);
  line-height: 1.6;
  max-width: 60ch;
  text-wrap: pretty;
  font-weight: 400;
}

/* =========================================================
   BUTTONS
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--body);
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 18px 30px;
  border-radius: 2px;
  transition: transform 0.35s var(--ease-out), background 0.3s, color 0.3s, box-shadow 0.35s, border-color 0.3s;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  cursor: pointer;
  border: none;
}
.btn-primary {
  background: var(--rust);
  color: var(--bone-paper);
  box-shadow: 0 6px 20px -8px rgba(var(--rust-rgb), 0.55);
}
.btn-primary:hover {
  background: var(--rust-deep);
  color: var(--bone-paper);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px -8px rgba(var(--rust-rgb), 0.65);
}
.btn-primary .arrow,
.btn-primary .btn-arrow { transition: transform 0.35s var(--ease-out); display: inline-block; }
.btn-primary:hover .arrow,
.btn-primary:hover .btn-arrow { transform: translateX(4px); }

.btn-secondary,
.btn-ghost {
  background: transparent;
  color: var(--charcoal);
  border: 1.5px solid var(--charcoal);
}
.btn-secondary:hover,
.btn-ghost:hover {
  background: var(--charcoal);
  color: var(--canvas);
  transform: translateY(-2px);
}
.btn-ghost-cream {
  border-color: var(--canvas);
  color: var(--canvas);
}
.btn-ghost-cream:hover {
  background: var(--canvas);
  color: var(--moss-ink);
}
.btn-large {
  font-size: 1rem;
  padding: 22px 38px;
}

.arrow { display: inline-block; transition: transform 0.35s var(--ease-out); }

/* =========================================================
   NAV / HEADER
   ========================================================= */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 22px 0;
  transition: background 0.4s var(--ease-soft), padding 0.4s, box-shadow 0.4s;
  background: transparent;
}
.nav.is-scrolled,
.nav.scrolled {
  background: rgba(var(--canvas-rgb), 0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 14px 0;
  box-shadow: 0 1px 0 rgba(var(--charcoal-rgb), 0.08);
}
.nav-inner {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 var(--gut);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.nav-brand {
  font-family: var(--accent);
  font-style: italic;
  font-weight: 500;
  font-size: 1.4rem;
  color: var(--charcoal);
  letter-spacing: -0.025em;
  font-variation-settings: "opsz" 144, "SOFT" 50;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.nav-brand img { width: 28px; height: 28px; filter: brightness(0); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-family: var(--body);
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--charcoal-soft);
  position: relative;
  transition: color 0.25s;
}
.nav-links a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0; bottom: -4px;
  width: 0; height: 1px;
  background: var(--rust);
  transition: width 0.3s var(--ease-out);
}
.nav-links a:not(.nav-cta):hover { color: var(--rust); }
.nav-links a:not(.nav-cta):hover::after { width: 100%; }
.nav-cta {
  background: var(--rust);
  color: var(--bone-paper) !important;
  padding: 12px 22px;
  border-radius: 2px;
  font-size: 0.78rem !important;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background 0.25s, transform 0.25s var(--ease-out);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 600;
}
.nav-cta:hover {
  background: var(--rust-deep);
  transform: translateY(-1px);
}
.nav-cta span { transition: transform 0.25s var(--ease-out); display: inline-block; }
.nav-cta:hover span { transform: translateX(3px); }
.nav-toggle {
  display: none;
  background: none;
  border: 0;
  padding: 8px;
  cursor: pointer;
  width: 44px;
  height: 44px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--charcoal);
  transition: transform 0.3s var(--ease-out), opacity 0.2s;
  transform-origin: center;
}
.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 760px) {
  .nav-toggle { display: inline-flex; }
  .nav .nav-cta { display: none; }

  .nav-links {
    position: fixed;
    top: 0; right: 0;
    width: min(82vw, 360px);
    height: 100vh;
    background: var(--bone-paper);
    box-shadow: -8px 0 32px rgba(var(--charcoal-rgb), 0.18);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 96px 32px 32px;
    transform: translateX(100%);
    transition: transform 0.35s var(--ease-out);
    z-index: 99;
    overflow-y: auto;
  }
  .nav-links.active { transform: translateX(0); }
  .nav-links li { width: 100%; list-style: none; }
  .nav-links a:not(.nav-cta) {
    display: block;
    padding: 18px 0;
    font-size: 0.95rem;
    letter-spacing: 0.18em;
    border-bottom: 1px solid rgba(var(--charcoal-rgb), 0.08);
    color: var(--charcoal);
  }
  .nav-links a:not(.nav-cta)::after { display: none; }
}

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  padding: 160px 0 0;
  background: var(--bone-paper);
  overflow: hidden;
}
/* ── Typography-led hero — type left, helix right, both inside container ── */
.hero.hero-typeled {
  padding-top: calc(var(--section-pad) + clamp(40px, 4vw, 56px));
  padding-bottom: 0;
  text-align: left;
  overflow: hidden;
}
.hero.hero-typeled { position: relative; }
/* Override the base .container rule so the canvas-wrap positions relative
   to .hero itself, not the (shorter) container. */
.hero.hero-typeled .container { position: static; }
.hero.hero-typeled .hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(40px, 5vw, 72px);
  align-items: stretch;
}
@media (min-width: 900px) {
  .hero.hero-typeled .hero-grid {
    grid-template-columns: 1.35fr 0.65fr;
  }
}
.hero.hero-typeled .hero-content {
  max-width: 760px;
  margin: 0;
  text-align: left;
  align-self: center;
  position: relative;
  z-index: 2;
}
/* Mobile: canvas in flow, normal sizing. */
.hero.hero-typeled .hero-canvas-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 460px;
  margin: 0 auto;
}
/* Desktop: canvas anchored to the right half of the hero, spanning the
   entire hero from top of viewport down to the top of the marquee. The
   marquee's solid bg covers anything that extends past it. */
@media (min-width: 900px) {
  /* Canvas fits within the page content area — same right gutter as
     the container so it lines up with the page's content edge. */
  .hero.hero-typeled .hero-canvas-wrap {
    position: absolute;
    top: 0;
    right: max(var(--gut), calc((100% - var(--wrap)) / 2 + var(--gut)));
    bottom: 0;
    width: min(36%, 460px);
    min-height: 0;
    height: auto;
    z-index: 1;
  }
}
.hero.hero-typeled .hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 1;
  pointer-events: auto;   /* overrides legacy .hero-canvas { pointer-events: none } */
}
.hero.hero-typeled .hero-badge {
  justify-content: flex-start;
}
.hero.hero-typeled h1 {
  font-size: clamp(2.4rem, 6.4vw, 5.2rem);
  margin: 0 0 28px;
  text-wrap: pretty;
  white-space: normal;
}
.hero.hero-typeled .hero-sub {
  max-width: 540px;
  margin: 0 0 36px;
  font-size: clamp(1.05rem, 1.4vw, 1.22rem);
}
.hero.hero-typeled .hero-buttons {
  justify-content: flex-start;
}
@media (max-width: 899px) {
  .hero.hero-typeled .hero-canvas-wrap,
  .hero .hero-canvas {
    display: none;
  }
}
.hero::before {
  content: "";
  position: absolute;
  top: 200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, var(--canvas-warm) 0%, transparent 65%);
  opacity: 0.55;
  pointer-events: none;
  z-index: 0;
}
.hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 var(--gut) 60px;
  text-align: left;
}

.hero-row {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
  padding-bottom: 60px;
}
.hero-row .hero-content {
  max-width: none;
  margin: 0;
  padding: 0;
}
.hero-photo {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 2px;
  box-shadow: 0 60px 120px -32px rgba(var(--ink-rgb), 0.65);
}
.hero-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.94) contrast(1.06);
}
@media (max-width: 979px) {
  .hero-photo {
    aspect-ratio: 4 / 3;
    max-width: 560px;
    margin: 0 auto;
  }
}
@media (min-width: 980px) {
  .hero-row {
    grid-template-columns: 1fr 1.1fr;
    gap: clamp(48px, 5vw, 80px);
    padding-bottom: 80px;
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--rust);
  margin-bottom: 28px;
}
.hero-badge::before {
  content: "";
  display: inline-block;
  width: 36px;
  height: 1px;
  background: var(--rust);
}

.hero h1,
.hero-title {
  font-family: var(--display);
  font-size: clamp(3rem, 8vw, 6.5rem);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -0.035em;
  color: var(--charcoal);
  text-wrap: balance;
  font-variation-settings: "opsz" 96;
  margin-bottom: 28px;
}
.hero h1 .italic,
.hero h1 em,
.hero-title .italic {
  display: inline-block;
  font-family: var(--accent);
  font-style: italic;
  font-weight: 500;
  color: var(--rust);
  letter-spacing: -0.025em;
  font-variation-settings: "opsz" 144, "SOFT" 50;
}

.hero-sub {
  font-family: var(--body);
  font-size: clamp(1.15rem, 1.55vw, 1.4rem);
  line-height: 1.55;
  font-weight: 400;
  color: var(--charcoal-soft);
  margin: 24px 0 44px;
  max-width: 52ch;
  text-wrap: pretty;
  letter-spacing: -0.01em;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 48px;
}

/* hero marquee strip */
.hero-marquee {
  margin-top: clamp(40px, 6vw, 80px);
  border-top: 1px solid rgba(var(--canvas-rgb), 0.12);
  border-bottom: 1px solid rgba(var(--canvas-rgb), 0.12);
  padding: 22px 0;
  background: var(--moss-ink);
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  z-index: 2;
}
.marquee-track {
  display: inline-flex;
  align-items: center;
  gap: 28px;
  font-family: var(--accent);
  font-style: italic;
  font-size: clamp(1.2rem, 1.7vw, 1.55rem);
  color: var(--canvas-warm);
  font-weight: 500;
  font-variation-settings: "opsz" 60, "SOFT" 50;
  animation: marquee 40s linear infinite;
  padding-right: 28px;
  letter-spacing: -0.01em;
}
.marquee-track .dot {
  color: var(--rust);
  font-style: normal;
  opacity: 0.85;
  font-family: var(--display);
  font-weight: 700;
}
@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* =========================================================
   TRUST BAR
   ========================================================= */
.trust-bar {
  background: var(--bone-paper);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 56px 0;
  position: relative;
  z-index: 2;
}
.trust-items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.trust-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
}
.trust-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -16px; top: 10%;
  width: 1px; height: 80%;
  background: var(--line);
}
.trust-number {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(1.8rem, 2.8vw, 2.6rem);
  line-height: 1;
  color: var(--moss);
  letter-spacing: -0.03em;
  font-variation-settings: "opsz" 60;
}
.trust-label {
  margin-top: 12px;
  font-family: var(--body);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
  max-width: 22ch;
  line-height: 1.5;
}

@media (max-width: 760px) {
  .trust-items { grid-template-columns: repeat(2, 1fr); gap: 32px 20px; }
  .trust-item:not(:last-child)::after { display: none; }
}

/* =========================================================
   SECTIONS
   ========================================================= */
.section {
  padding: var(--section-pad) 0;
  background: var(--canvas);
  position: relative;
  z-index: 2;
}
.section.alt-section {
  background: var(--bone-paper);
}
.section-header {
  max-width: 760px;
  margin-bottom: clamp(48px, 6vw, 72px);
}
.section-header.is-centered {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.section-header.is-centered .section-label,
.section-header.is-centered .eyebrow,
.section-header.is-centered .section-desc {
  margin-left: auto;
  margin-right: auto;
}
.section-title {
  font-family: var(--display);
  font-size: clamp(2.2rem, 5.4vw, 4.6rem);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.03em;
  color: var(--charcoal);
  text-wrap: balance;
  font-variation-settings: "opsz" 96;
  margin-bottom: 24px;
}
.section-title .italic,
.section-title em {
  font-family: var(--accent);
  font-style: italic;
  font-weight: 500;
  color: var(--rust);
  letter-spacing: -0.025em;
  font-variation-settings: "opsz" 144, "SOFT" 50;
}
.section-desc {
  font-family: var(--body);
  font-size: clamp(1.05rem, 1.3vw, 1.18rem);
  line-height: 1.6;
  color: var(--charcoal-soft);
  max-width: 60ch;
  text-wrap: pretty;
}

/* =========================================================
   POSITION BLOCK
   ========================================================= */
.position-block {
  max-width: 880px;
}

.position-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}
.position-photo img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 2px;
  box-shadow: 0 40px 80px -32px rgba(var(--ink-rgb), 0.45);
  filter: saturate(0.68) contrast(1.04);
}
@media (min-width: 980px) {
  .position-row {
    grid-template-columns: 0.95fr 1.05fr;
    gap: clamp(56px, 6vw, 96px);
  }
  .position-row .position-block { max-width: none; }
}
.position-headline {
  font-family: var(--display);
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--charcoal);
  margin-bottom: 32px;
  text-wrap: balance;
  font-variation-settings: "opsz" 96;
}
.position-headline .italic,
.position-headline em {
  font-family: var(--accent);
  font-style: italic;
  font-weight: 500;
  color: var(--rust);
  letter-spacing: -0.025em;
  font-variation-settings: "opsz" 144, "SOFT" 50;
}
.position-body {
  font-family: var(--body);
  font-size: clamp(1.05rem, 1.25vw, 1.18rem);
  line-height: 1.7;
  color: var(--charcoal-soft);
  max-width: 64ch;
  text-wrap: pretty;
}

/* =========================================================
   SERVICE CARDS
   ========================================================= */
.services-grid {
  display: grid;
  gap: 28px;
}
.services-grid-2 { grid-template-columns: repeat(2, 1fr); }
.services-grid-3 { grid-template-columns: repeat(3, 1fr); }
.services-grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 980px) {
  .services-grid-3,
  .services-grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px) {
  .services-grid-2,
  .services-grid-3,
  .services-grid-4 { grid-template-columns: 1fr; }
}

.service-card {
  background: var(--bone);
  border: 1px solid var(--line);
  border-radius: 2px;
  padding: 36px 32px;
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s, border-color 0.3s;
  position: relative;
  overflow: hidden;
}
.section.alt-section .service-card {
  background: var(--canvas);
}
.service-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--rust);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease-out);
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px -20px rgba(var(--ink-rgb), 0.35);
  border-color: var(--tobacco-soft);
}
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 44px;
  height: 44px;
  border-radius: 2px;
  background: var(--moss);
  color: var(--canvas);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}
.service-card.has-photo { padding-top: 0; }
.service-photo {
  margin: 0 -32px 28px;
  height: 280px;
  overflow: hidden;
  position: relative;
}
.service-photo::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(var(--ink-rgb), 0.22));
  pointer-events: none;
}
.service-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s var(--ease-out);
  filter: saturate(0.68) contrast(1.03);
}
.service-card.has-photo:hover .service-photo img { transform: scale(1.04); }
.service-card h3 {
  font-family: var(--display);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.015em;
  color: var(--charcoal);
  margin-bottom: 12px;
  font-variation-settings: "opsz" 36;
}
.service-card p {
  font-family: var(--body);
  font-size: 0.98rem;
  line-height: 1.6;
  color: var(--charcoal-soft);
}

@media (max-width: 900px) {
  .services-grid-3, .services-grid-4 { grid-template-columns: 1fr; }
  .services-grid-2 { grid-template-columns: 1fr; }
}

/* =========================================================
   PROCESS STEPS
   ========================================================= */
.process-steps {
  display: grid;
  gap: 28px;
}
.process-steps-3 { grid-template-columns: repeat(3, 1fr); }
.process-steps-4 { grid-template-columns: repeat(4, 1fr); }

.process-step {
  position: relative;
  padding: 36px 28px 32px;
  background: var(--bone);
  border: 1px solid var(--line);
  border-radius: 2px;
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s;
}
.section.alt-section .process-step {
  background: var(--canvas);
}
.process-step:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px -20px rgba(var(--ink-rgb), 0.3);
}
.step-number {
  font-family: var(--accent);
  font-style: italic;
  font-weight: 500;
  font-size: 2.4rem;
  color: var(--rust);
  letter-spacing: -0.025em;
  line-height: 1;
  margin-bottom: 20px;
  font-variation-settings: "opsz" 144, "SOFT" 50;
}
.process-step h3 {
  font-family: var(--display);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--charcoal);
  margin-bottom: 10px;
  font-variation-settings: "opsz" 36;
}
.process-step p {
  font-family: var(--body);
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--charcoal-soft);
}

@media (max-width: 900px) {
  .process-steps-3, .process-steps-4 { grid-template-columns: 1fr; }
}

/* =========================================================
   INSTALL GRID (Results)
   ========================================================= */
.install-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px 36px;
}
.install-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 8px 0;
}
.install-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 2px;
  background: var(--rust);
  color: var(--bone-paper);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--display);
  font-weight: 700;
  font-size: 1rem;
}
.install-item strong {
  display: block;
  font-family: var(--display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--charcoal);
  letter-spacing: -0.015em;
  margin-bottom: 6px;
  font-variation-settings: "opsz" 36;
}
.install-item p {
  font-family: var(--body);
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--charcoal-soft);
}

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

/* =========================================================
   TESTIMONIAL
   ========================================================= */
.testimonial-section {
  background: var(--moss-ink);
  color: var(--canvas);
  padding: var(--section-pad) 0;
  position: relative;
  overflow: hidden;
}
.testimonial-section::before {
  content: "";
  position: absolute;
  top: -150px; left: -150px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(var(--rust-rgb), 0.12) 0%, transparent 70%);
  pointer-events: none;
}
.testimonial-section::after {
  content: "";
  position: absolute;
  bottom: -200px; right: -150px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(var(--tobacco-rgb), 0.22) 0%, transparent 70%);
  pointer-events: none;
}
.testimonial {
  position: relative;
  z-index: 2;
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
}
.testimonial-stars {
  display: inline-flex;
  gap: 6px;
  color: var(--rust);
  margin-bottom: 32px;
}
.testimonial-quote {
  font-family: var(--accent);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.4rem, 2.4vw, 2.1rem);
  line-height: 1.35;
  color: var(--canvas);
  letter-spacing: -0.015em;
  text-wrap: balance;
  margin-bottom: 28px;
  font-variation-settings: "opsz" 144, "SOFT" 50;
}
.testimonial-author {
  font-family: var(--body);
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--canvas-warm);
  font-weight: 500;
}
.testimonial-author strong {
  color: var(--rust);
  font-weight: 700;
}

/* =========================================================
   BOOKING WIDGET — Smoke & Brass reskin
   ========================================================= */
.booking-widget {
  display: flex;
  flex-direction: column;
  background: var(--bone);
  border: 1px solid var(--line);
  border-radius: 2px;
  max-width: 880px;
  margin: 0 auto;
  box-shadow: 0 30px 60px -28px rgba(var(--ink-rgb), 0.35);
  position: relative;
  overflow: hidden;
}
@media (min-width: 700px) {
  /* Locked height so the widget never grows or shrinks as the user
     steps through dates / times / form. Internal panels scroll. */
  .booking-widget { flex-direction: row; align-items: stretch; height: 600px; }
}

.booking-panel-calendar {
  padding: 40px;
  flex: 1 1 auto;
  min-width: 0;
  transition: flex 0.35s var(--ease-out);
}

.booking-panel-times,
.booking-panel-form {
  width: 0;
  min-width: 0;
  overflow: hidden;
  opacity: 0;
  padding: 0;
  border-left: 0 solid var(--line);
  background: var(--canvas);
  display: flex;
  flex-direction: column;
  transition: width 0.35s var(--ease-out), opacity 0.25s var(--ease-out), padding 0.35s var(--ease-out), border-left-width 0.35s var(--ease-out);
}

.booking-panel-confirm {
  display: none;
  flex: 1 1 auto;
  align-items: center;
  justify-content: center;
  padding: 40px;
}

@media (min-width: 700px) {
  .booking-widget.step-times .booking-panel-times,
  .booking-widget.step-form .booking-panel-times {
    width: 280px;
    opacity: 1;
    padding: 32px;
    border-left-width: 1px;
    overflow: visible;
    overflow-y: auto;
  }
  .booking-widget.step-form .booking-panel-times { width: 240px; }
  .booking-widget.step-form .booking-panel-form {
    width: 300px;
    opacity: 1;
    padding: 32px;
    border-left-width: 1px;
    overflow: visible;
    overflow-y: auto;
  }
}

.booking-widget.step-confirmed .booking-panel-calendar,
.booking-widget.step-confirmed .booking-panel-times,
.booking-widget.step-confirmed .booking-panel-form { display: none; }
.booking-widget.step-confirmed .booking-panel-confirm {
  display: flex;
  min-height: 360px;
  width: 100%;
}

@media (max-width: 699px) {
  .booking-panel-times,
  .booking-panel-form {
    width: 100% !important;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    padding: 0;
    transition: max-height 0.35s var(--ease-out), opacity 0.25s var(--ease-out), padding 0.35s var(--ease-out);
  }
  .booking-widget.step-times .booking-panel-calendar,
  .booking-widget.step-form .booking-panel-calendar { display: none; }
  .booking-widget.step-times .booking-panel-times {
    max-height: 720px;
    opacity: 1;
    padding: 32px;
    overflow: visible;
    overflow-y: auto;
    border-top: 1px solid var(--line);
  }
  .booking-widget.step-form .booking-panel-times { display: none; }
  .booking-widget.step-form .booking-panel-form {
    max-height: 720px;
    opacity: 1;
    padding: 32px;
    overflow: visible;
    overflow-y: auto;
    border-top: 1px solid var(--line);
  }
}

.booking-title {
  font-family: var(--display);
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--charcoal);
  margin-bottom: 16px;
  font-variation-settings: "opsz" 60;
}
.booking-meta {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.booking-meta-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--body);
  font-size: 0.85rem;
  color: var(--muted);
  font-weight: 500;
}
.booking-month-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.booking-month-label {
  font-family: var(--display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--charcoal);
  letter-spacing: -0.01em;
}
.booking-month-arrow {
  width: 36px;
  height: 36px;
  border-radius: 2px;
  background: var(--canvas);
  color: var(--charcoal);
  font-size: 1.4rem;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s, color 0.25s;
  border: 1px solid var(--line);
  cursor: pointer;
}
.booking-month-arrow:hover {
  background: var(--rust);
  color: var(--bone-paper);
  border-color: var(--rust);
}
.booking-days-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
  margin-bottom: 16px;
}
.booking-days-grid button,
.booking-days-grid .booking-day {
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 2px;
  background: var(--canvas);
  color: var(--charcoal);
  font-family: var(--body);
  font-size: 0.92rem;
  font-weight: 500;
  border: 1px solid transparent;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  cursor: pointer;
}
.booking-days-grid button:hover:not(:disabled),
.booking-days-grid .booking-day:hover:not(.disabled) {
  background: var(--bone-paper);
  border-color: var(--rust);
}
.booking-days-grid button:disabled,
.booking-days-grid .booking-day.disabled {
  opacity: 0.3;
  cursor: not-allowed;
}
.booking-days-grid .booking-day.selected,
.booking-days-grid button.selected {
  background: var(--rust);
  color: var(--bone-paper);
  font-weight: 600;
}
.booking-days-grid .booking-day-header {
  font-family: var(--body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  text-align: center;
  background: transparent;
  border: none;
  cursor: default;
}
.booking-tz-note {
  font-family: var(--body);
  font-size: 0.78rem;
  color: var(--muted);
  letter-spacing: 0.06em;
}

@media (max-width: 699px) {
  .booking-panel-confirm { margin-top: 0; }
}
.booking-panel-back {
  display: none;
}
.booking-widget.step-form .booking-panel-form .booking-panel-back { display: inline-flex; }
@media (max-width: 699px) {
  .booking-widget.step-times .booking-panel-times .booking-panel-back,
  .booking-widget.step-form .booking-panel-form .booking-panel-back { display: inline-flex; }
}
.booking-back-btn {
  font-family: var(--body);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 18px;
  cursor: pointer;
  transition: color 0.25s;
  background: none;
  border: none;
}
.booking-back-btn:hover { color: var(--rust); }
.booking-right-label {
  font-family: var(--display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--charcoal);
  letter-spacing: -0.01em;
  margin-bottom: 14px;
}
.booking-times-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 10px;
}
.booking-times-list button {
  padding: 14px 12px;
  background: var(--canvas);
  border: 1px solid var(--line);
  border-radius: 2px;
  font-family: var(--body);
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--charcoal);
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.booking-times-list button:hover {
  background: var(--rust);
  border-color: var(--rust);
  color: var(--bone-paper);
}
.booking-placeholder {
  font-family: var(--body);
  color: var(--muted);
  font-size: 0.92rem;
  font-style: italic;
}
.booking-loading::after {
  content: "...";
  animation: dots 1.5s infinite;
}
@keyframes dots {
  0%, 20% { content: "."; }
  40% { content: ".."; }
  60%, 100% { content: "..."; }
}

.booking-field {
  margin-bottom: 16px;
}
.booking-field label {
  display: block;
  font-family: var(--body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
}
.booking-field input {
  width: 100%;
  padding: 14px 16px;
  background: var(--canvas);
  border: 1px solid var(--line);
  border-radius: 2px;
  font-family: var(--body);
  font-size: 1rem;
  color: var(--charcoal);
  transition: border-color 0.25s, background 0.25s;
}
.booking-field input:focus {
  outline: none;
  border-color: var(--rust);
  background: var(--bone-paper);
}

.booking-confirm-btn {
  width: 100%;
  padding: 18px 24px;
  background: var(--rust);
  color: var(--bone-paper);
  font-family: var(--body);
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 2px;
  border: none;
  cursor: pointer;
  transition: background 0.25s, transform 0.25s var(--ease-out);
  margin-top: 8px;
}
.booking-confirm-btn:hover {
  background: var(--rust-deep);
  transform: translateY(-2px);
}
.booking-confirm-note {
  font-family: var(--body);
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 12px;
}
.booking-confirmed {
  text-align: center;
  padding: 24px 0;
}
.booking-confirmed svg {
  color: var(--rust);
  margin: 0 auto 18px;
}
.booking-confirmed h3 {
  font-family: var(--display);
  font-size: 1.8rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--charcoal);
  margin-bottom: 10px;
  font-variation-settings: "opsz" 60;
}
.booking-confirmed p {
  font-family: var(--body);
  font-size: 1rem;
  color: var(--charcoal-soft);
  margin-bottom: 8px;
}

/* =========================================================
   FOOTER
   ========================================================= */
.footer {
  background: var(--moss-ink);
  color: var(--canvas-warm);
  padding: clamp(60px, 8vw, 100px) 0 32px;
  position: relative;
  z-index: 2;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}
.footer-info { max-width: 360px; }
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--accent);
  font-style: italic;
  font-weight: 500;
  font-size: 1.45rem;
  color: var(--canvas);
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  font-variation-settings: "opsz" 144, "SOFT" 50;
}
.footer-brand .footer-mark {
  display: inline-block;
  width: 22px;
  height: 22px;
  background-color: currentColor;
  -webkit-mask: url(/assets/HC.png) center / contain no-repeat;
          mask: url(/assets/HC.png) center / contain no-repeat;
}
.footer-desc {
  font-family: var(--body);
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--canvas-warm);
  opacity: 0.8;
}
.footer-col h4 {
  font-family: var(--body);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rust);
  font-weight: 700;
  margin-bottom: 20px;
}
.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-col a {
  font-family: var(--body);
  font-size: 0.95rem;
  color: var(--canvas-warm);
  opacity: 0.85;
  transition: color 0.25s, opacity 0.25s;
}
.footer-col a:hover {
  color: var(--rust);
  opacity: 1;
}
.footer-bottom {
  border-top: 1px solid rgba(var(--canvas-rgb), 0.15);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-copy {
  font-family: var(--body);
  font-size: 0.82rem;
  color: var(--canvas-warm);
  opacity: 0.6;
}
.footer-legal {
  display: flex;
  gap: 24px;
}
.footer-legal a {
  font-family: var(--body);
  font-size: 0.82rem;
  color: var(--canvas-warm);
  opacity: 0.7;
  transition: color 0.25s;
}
.footer-legal a:hover { color: var(--rust); opacity: 1; }

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* =========================================================
   REVEAL ANIMATIONS
   ========================================================= */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
  will-change: transform, opacity;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-group > .reveal:nth-child(1).visible { transition-delay: 0s; }
.reveal-group > .reveal:nth-child(2).visible { transition-delay: 0.08s; }
.reveal-group > .reveal:nth-child(3).visible { transition-delay: 0.16s; }
.reveal-group > .reveal:nth-child(4).visible { transition-delay: 0.24s; }
.reveal-group > .reveal:nth-child(5).visible { transition-delay: 0.32s; }
.reveal-group > .reveal:nth-child(6).visible { transition-delay: 0.4s; }

/* =========================================================
   UTILITIES + LEGACY PAGES FALLBACKS
   ========================================================= */
strong, b { font-weight: 700; color: var(--charcoal); }
p { color: var(--charcoal-soft); }
p a, .position-body a, .section-desc a {
  color: var(--rust);
  border-bottom: 1px solid rgba(var(--rust-rgb), 0.3);
}
p a:hover { color: var(--rust-deep); border-color: var(--rust-deep); }

/* responsive hero */
@media (max-width: 760px) {
  .hero { padding: 120px 0 0; }
  .hero h1, .hero-title { font-size: clamp(2.4rem, 9vw, 3.4rem); }
  .hero-sub { font-size: 1.05rem; }
  .hero-buttons { gap: 10px; }
  .btn { padding: 16px 24px; font-size: 0.85rem; }
}

/* =========================================================
   LEGACY PAGE STUBS — kept for blog/portfolio/etc.
   These selectors exist across other pages. Keeping minimal
   shape so layouts don't fully collapse before Phase 2 port.
   ========================================================= */
.blog-card, .portfolio-card {
  background: var(--bone);
  border: 1px solid var(--line);
  border-radius: 2px;
  overflow: hidden;
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s;
}
.blog-card:hover, .portfolio-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -22px rgba(var(--ink-rgb), 0.35);
}
.blog-card img, .portfolio-card img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }
.blog-card-body, .portfolio-card-body { padding: 24px; }
.blog-card h3, .portfolio-card h3 {
  font-family: var(--display);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--charcoal);
  font-variation-settings: "opsz" 36;
}
.blog-card p, .portfolio-card p {
  font-family: var(--body);
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--charcoal-soft);
}

/* generic prose for legal/blog */
.prose, .legal-content, article {
  font-family: var(--body);
  color: var(--charcoal-soft);
  line-height: 1.7;
  max-width: 720px;
  margin: 0 auto;
  font-size: 1.05rem;
}
.prose h1, .legal-content h1, article h1 {
  font-family: var(--display);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  margin-bottom: 24px;
  color: var(--charcoal);
}
.prose h2, .legal-content h2, article h2 {
  font-family: var(--display);
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  margin: 48px 0 16px;
  color: var(--charcoal);
}
.prose h3, .legal-content h3, article h3 {
  font-family: var(--display);
  font-size: 1.3rem;
  margin: 32px 0 12px;
  color: var(--charcoal);
}
.prose p, .legal-content p, article p { margin-bottom: 18px; }
.prose ul, .legal-content ul, article ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 18px;
}
.prose li, .legal-content li, article li { margin-bottom: 8px; }

/* =========================================================
   INNER PAGE RECOVERY (Smoke & Brass)
   Restores broken section classes after homepage rewrite.
   ========================================================= */

/* ── Hero with bg image (services, sub-services, landing) ── */
.hero-background {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.hero-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(40%) contrast(1.05);
  opacity: 0.32;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(var(--canvas-rgb), 0.92) 0%, rgba(var(--canvas-rgb), 0.78) 100%);
}
.hero-title {
  font-family: var(--display);
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.05;
  color: var(--charcoal);
  margin: 0 0 24px;
}
.hero-title .italic,
.hero-title em {
  font-family: var(--accent);
  font-style: italic;
  font-weight: 400;
  color: var(--rust);
}
.hero-description {
  font-family: var(--body);
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  line-height: 1.55;
  color: var(--charcoal-soft);
  max-width: 680px;
  margin: 0 0 32px;
}
.text-gradient {
  font-family: var(--accent);
  font-style: italic;
  font-weight: 400;
  color: var(--rust);
}

/* ── Generic section backgrounds ── */
.bg-image,
.section-bg-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.12;
  z-index: 0;
  pointer-events: none;
}
.bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(var(--canvas-rgb), 0.85), rgba(var(--canvas-rgb), 0.95));
  z-index: 0;
  pointer-events: none;
}
.alt-section {
  background: var(--bone-paper);
  position: relative;
}
.section-description {
  font-family: var(--body);
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--charcoal-soft);
  max-width: 720px;
  margin: 0 auto 48px;
  text-align: center;
}

/* ── Generic services grid (used by sub-pages) ── */
.services {
  padding: 96px 0;
  position: relative;
}
.services-cta {
  display: flex;
  justify-content: center;
  margin-top: 48px;
}
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--body);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--rust);
  margin-top: 16px;
  transition: gap 0.25s var(--ease-out), color 0.25s;
}
.service-link:hover { gap: 14px; color: var(--rust-deep); }

/* ── CTA section pattern ── */
.cta-section {
  padding: var(--section-pad) 0;
  background: var(--moss-ink);
  color: var(--bone-paper);
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 50%, rgba(var(--rust-rgb), 0.12), transparent 60%);
  pointer-events: none;
}
.cta-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.cta-section h2 {
  font-family: var(--display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin: 0 0 20px;
  color: var(--bone-paper);
}
.cta-section h2 em,
.cta-section h2 .italic {
  font-family: var(--accent);
  font-style: italic;
  font-weight: 400;
  color: var(--rust);
}
.cta-section p {
  font-size: 1.1rem;
  line-height: 1.55;
  color: rgba(237, 231, 214, 0.78);
  margin: 0 0 32px;
}
.btn-dark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--rust);
  color: var(--bone-paper);
  padding: 16px 28px;
  border-radius: 2px;
  font-family: var(--body);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  border: 0;
  cursor: pointer;
  transition: background 0.25s, transform 0.25s var(--ease-out);
}
.btn-dark:hover {
  background: var(--rust-deep);
  transform: translateY(-1px);
}

/* ── HC logo ── */
.hc-logo {
  width: 28px;
  height: 28px;
  display: inline-block;
}

/* ── Footer social ── */
.footer-social {
  display: flex;
  gap: 14px;
  margin-top: 16px;
}
.footer-social a {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(var(--canvas-rgb), 0.25);
  color: var(--bone-paper);
  border-radius: 2px;
  transition: background 0.25s, border-color 0.25s, color 0.25s;
}
.footer-social a:hover {
  background: var(--rust);
  border-color: var(--rust);
  color: var(--bone-paper);
}

/* =========================================================
   ABOUT PAGE
   ========================================================= */
.about-intro {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
  max-width: 1120px;
  margin: 0 auto 64px;
  text-align: left;
}
@media (min-width: 820px) {
  .about-intro {
    grid-template-columns: minmax(280px, 360px) 1fr;
    gap: clamp(48px, 5vw, 80px);
  }
}
.about-photo {
  width: 100%;
  max-width: 360px;
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: 2px;
  object-fit: cover;
  object-position: center top;
  box-shadow: 0 24px 48px -16px rgba(var(--ink-rgb), 0.32);
  filter: grayscale(20%) contrast(1.05);
}
@media (min-width: 820px) {
  .about-photo { margin: 0; aspect-ratio: 4 / 5; max-width: 360px; }
}
.about-name {
  font-family: var(--display);
  font-size: clamp(2rem, 3.6vw, 2.8rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--charcoal);
  margin: 0 0 8px;
}
.about-name em,
.about-name .italic {
  font-family: var(--accent);
  font-style: italic;
  font-weight: 400;
  color: var(--rust);
}
.about-role {
  font-family: var(--body);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--rust);
  margin: 0 0 24px;
}
.about-bio {
  font-family: var(--body);
  font-size: 1.1rem;
  line-height: 1.65;
  color: var(--charcoal-soft);
  margin: 0;
}
.about-bio p + p { margin-top: 18px; }
.about-cta-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
  max-width: 720px;
  margin: 40px auto 0;
}

/* ── Wins / stats grid ── */
.wins-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1120px;
  margin: 0 auto;
}
@media (max-width: 899px) {
  .wins-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
  .wins-grid { grid-template-columns: 1fr; }
}
.win-card {
  background: var(--bone-paper);
  border: 1px solid rgba(var(--charcoal-rgb), 0.08);
  border-radius: 2px;
  padding: 32px 24px;
  text-align: center;
  transition: border-color 0.25s, transform 0.25s var(--ease-out);
}
.win-card:hover {
  border-color: var(--rust);
  transform: translateY(-2px);
}
.win-number {
  display: block;
  font-family: var(--accent);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  color: var(--rust);
  line-height: 1;
  margin: 0 0 12px;
}
.win-label {
  font-family: var(--body);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--charcoal-soft);
}

/* ── Personal section ── */
.personal-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  max-width: 1120px;
  margin: 0 auto;
}
.personal-item {
  background: var(--bone-paper);
  border: 1px solid rgba(var(--charcoal-rgb), 0.08);
  border-radius: 2px;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  transition: border-color 0.25s, transform 0.25s var(--ease-out);
}
.personal-item:hover {
  border-color: var(--rust);
  transform: translateY(-2px);
}
.personal-icon {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--canvas);
  border-radius: 2px;
  color: var(--moss);
}
.personal-icon svg { width: 22px; height: 22px; }
.personal-item h3 {
  font-family: var(--display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--charcoal);
  margin: 0;
}
.personal-item p {
  font-family: var(--body);
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--charcoal-soft);
  margin: 0;
}

/* =========================================================
   BLOG
   ========================================================= */
.blog-hero {
  padding: 160px 0 64px;
  background: var(--canvas);
  text-align: center;
  position: relative;
}
.blog-hero-title {
  font-family: var(--display);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.05;
  color: var(--charcoal);
  margin: 0 0 18px;
}
.blog-hero-title em,
.blog-hero-title .italic,
.blog-hero-title .text-gradient {
  font-family: var(--accent);
  font-style: italic;
  font-weight: 400;
  color: var(--rust);
}
.blog-hero-description {
  font-family: var(--body);
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--charcoal-soft);
  max-width: 640px;
  margin: 0 auto;
}
.blog-listing { padding: 64px 0 96px; }
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
  max-width: var(--wrap);
  margin: 0 auto;
}
.blog-card {
  background: var(--bone-paper);
  border: 1px solid rgba(var(--charcoal-rgb), 0.08);
  border-radius: 2px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: border-color 0.25s, transform 0.25s var(--ease-out);
}
.blog-card:hover {
  border-color: var(--rust);
  transform: translateY(-2px);
}
.blog-card-meta {
  font-family: var(--body);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--muted);
  display: flex;
  gap: 14px;
}
.blog-card-title {
  font-family: var(--display);
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.2;
  color: var(--charcoal);
  margin: 0;
}
.blog-card-title a { color: inherit; }
.blog-card-title a:hover { color: var(--rust); }
.blog-card-excerpt {
  font-family: var(--body);
  font-size: 0.98rem;
  line-height: 1.55;
  color: var(--charcoal-soft);
  margin: 0;
}
.blog-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: auto;
}
.blog-tag {
  font-family: var(--body);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--rust);
  background: rgba(var(--rust-rgb), 0.08);
  padding: 4px 10px;
  border-radius: 2px;
}
.blog-empty {
  text-align: center;
  padding: 64px 24px;
  font-family: var(--body);
  color: var(--charcoal-soft);
}
.blog-load-more {
  display: flex;
  justify-content: center;
  margin-top: 48px;
}

/* ── Newsletter inline card ── */
.newsletter-card-title {
  font-family: var(--display);
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: -0.015em;
  color: var(--charcoal);
  margin: 0 0 8px;
}
.newsletter-card-desc {
  font-family: var(--body);
  font-size: 0.98rem;
  line-height: 1.5;
  color: var(--charcoal-soft);
  margin: 0 0 18px;
}
.newsletter-form {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.newsletter-form input {
  flex: 1;
  min-width: 220px;
  padding: 12px 14px;
  border: 1px solid rgba(var(--charcoal-rgb), 0.18);
  border-radius: 2px;
  background: var(--canvas);
  font-family: var(--body);
  font-size: 0.95rem;
  color: var(--charcoal);
}
.newsletter-form input:focus {
  outline: 2px solid var(--rust);
  outline-offset: -1px;
  border-color: var(--rust);
}
.newsletter-msg {
  font-family: var(--body);
  font-size: 0.85rem;
  color: var(--rust);
  margin-top: 10px;
}

/* =========================================================
   PORTFOLIO (our-work.html)
   ========================================================= */
.portfolio-page { background: var(--canvas); }
.portfolio {
  padding: 160px 0 96px;
  position: relative;
}
.portfolio-intro {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 56px;
}
.portfolio-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin: 0 auto 48px;
  position: relative;
  z-index: 2;
}
.portfolio-filters button,
.portfolio-filters .filter-pill {
  font-family: var(--body);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--charcoal-soft);
  background: var(--bone-paper);
  border: 1px solid rgba(var(--charcoal-rgb), 0.12);
  border-radius: 2px;
  padding: 10px 16px;
  cursor: pointer;
  transition: background 0.25s, color 0.25s, border-color 0.25s;
}
.portfolio-filters button:hover,
.portfolio-filters button.active,
.portfolio-filters button.is-active,
.portfolio-filters .filter-pill.active {
  background: var(--rust);
  color: var(--bone-paper);
  border-color: var(--rust);
}

/* Portfolio image cards */
.portfolio-card {
  background: var(--bone-paper);
  border: 1px solid rgba(var(--charcoal-rgb), 0.08);
  border-radius: 2px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: border-color 0.25s, transform 0.25s var(--ease-out);
}
.portfolio-card:hover {
  border-color: var(--rust);
  transform: translateY(-3px);
}
.portfolio-card-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--canvas-warm, var(--canvas));
}
.portfolio-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s var(--ease-out);
}
.portfolio-card:hover .portfolio-card-image img {
  transform: scale(1.04);
}
.portfolio-card-body {
  padding: 18px 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.portfolio-card-tag {
  font-family: var(--body);
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--rust);
}
.portfolio-card-title {
  font-family: var(--display);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--charcoal);
  margin: 0;
  line-height: 1.2;
}
.portfolio-submenu {
  display: flex;
  justify-content: center;
  margin: 0 0 32px;
}
.portfolio-submenu-toggle {
  font-family: var(--body);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--charcoal);
  background: var(--bone-paper);
  border: 1px solid rgba(var(--charcoal-rgb), 0.12);
  padding: 12px 20px;
  border-radius: 2px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}
.portfolio-submenu-toggle-label { display: inline-block; }
.portfolio-submenu-caret {
  width: 12px;
  height: 12px;
  transition: transform 0.25s;
}
.portfolio-submenu-toggle[aria-expanded="true"] .portfolio-submenu-caret { transform: rotate(180deg); }
.portfolio-submenu-inner {
  display: none;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  padding: 16px;
}
.portfolio-submenu-toggle[aria-expanded="true"] + .portfolio-submenu-inner { display: flex; }
.portfolio-grid {
  column-count: 3;
  column-gap: 18px;
  max-width: var(--wrap);
  margin: 0 auto;
  transition: opacity 0.25s var(--ease-out);
}
.portfolio-grid.switching { opacity: 0; }
@media (max-width: 1100px) { .portfolio-grid { column-count: 3; column-gap: 16px; } }
@media (max-width: 860px)  { .portfolio-grid { column-count: 2; column-gap: 14px; } }
@media (max-width: 560px)  { .portfolio-grid { column-count: 1; } }

.portfolio-grid .portfolio-item,
.portfolio-grid > a,
.portfolio-grid > figure {
  display: block;
  position: relative;
  break-inside: avoid;
  margin: 0 0 18px;
  background: var(--bone-paper);
  border-radius: 3px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 1px 2px rgba(var(--ink-rgb), 0.06);
  transition: box-shadow 0.35s var(--ease-out), transform 0.35s var(--ease-out);
  -webkit-column-break-inside: avoid;
  page-break-inside: avoid;
}
.portfolio-grid .portfolio-item:hover,
.portfolio-grid > a:hover,
.portfolio-grid > figure:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 48px -24px rgba(var(--ink-rgb), 0.45);
}
.portfolio-grid img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.65s var(--ease-out), filter 0.35s;
  filter: saturate(0.95);
}
.portfolio-grid .portfolio-item:hover img { transform: scale(1.045); filter: saturate(1.05); }

/* Overlay — fades up on hover with category + title */
.portfolio-item-overlay {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 36px 18px 16px;
  background: linear-gradient(180deg,
    transparent 0%,
    rgba(var(--ink-rgb), 0.55) 55%,
    rgba(var(--ink-rgb), 0.92) 100%);
  display: flex;
  flex-direction: column;
  gap: 4px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.3s var(--ease-out), transform 0.3s var(--ease-out);
  pointer-events: none;
}
.portfolio-grid .portfolio-item:hover .portfolio-item-overlay {
  opacity: 1;
  transform: translateY(0);
}
.portfolio-item-category {
  font-family: var(--body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rust);
  line-height: 1.3;
}
.portfolio-item-title {
  font-family: var(--accent);
  font-style: italic;
  font-weight: 500;
  font-size: 1.15rem;
  letter-spacing: -0.01em;
  color: var(--bone-paper);
  line-height: 1.25;
  font-variation-settings: "opsz" 60, "SOFT" 50;
}

/* Always-visible mobile: tap targets need persistent label */
@media (hover: none) {
  .portfolio-item-overlay { opacity: 1; transform: none; padding: 28px 14px 12px; }
  .portfolio-grid .portfolio-item:hover img { transform: none; }
}

/* ── Lightbox ── */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(var(--ink-rgb), 0.94);
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 40px;
}
.lightbox.active { display: flex; }
.lightbox-content {
  position: relative;
  max-width: 92vw;
  max-height: 88vh;
}
.lightbox-img {
  max-width: 100%;
  max-height: 88vh;
  object-fit: contain;
  border-radius: 2px;
}
.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  background: rgba(var(--canvas-rgb), 0.12);
  border: 1px solid rgba(var(--canvas-rgb), 0.25);
  color: var(--bone-paper);
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 2px;
  cursor: pointer;
  transition: background 0.25s;
}
.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover { background: var(--rust); border-color: var(--rust); }
.lightbox-close { top: -56px; right: 0; }
.lightbox-prev { left: -64px; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: -64px; top: 50%; transform: translateY(-50%); }
.lightbox-counter {
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(237, 231, 214, 0.72);
  font-family: var(--body);
  font-size: 0.85rem;
  letter-spacing: 0.12em;
}
@media (max-width: 760px) {
  .lightbox-prev { left: 8px; }
  .lightbox-next { right: 8px; }
  .lightbox-close { top: 8px; right: 8px; }
}

/* =========================================================
   LANDING PAGES (.lp-*)
   ========================================================= */
.lp-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(var(--canvas-rgb), 0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(var(--charcoal-rgb), 0.08);
}
.lp-header-inner {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 16px var(--gut);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.lp-brand {
  font-family: var(--accent);
  font-style: italic;
  font-weight: 500;
  font-size: 1.2rem;
  color: var(--charcoal);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.lp-header-cta,
.btn-cta {
  background: var(--rust);
  color: var(--bone-paper) !important;
  padding: 12px 22px;
  border-radius: 2px;
  font-family: var(--body);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  border: 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background 0.25s, transform 0.25s var(--ease-out);
  text-decoration: none;
}
.lp-header-cta:hover,
.btn-cta:hover {
  background: var(--rust-deep);
  transform: translateY(-1px);
}
.lp-hero {
  padding: 80px 0 64px;
  background: var(--canvas);
  position: relative;
}
.lp-hero-inner {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 var(--gut);
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 56px;
  align-items: start;
}
@media (max-width: 900px) {
  .lp-hero-inner { grid-template-columns: 1fr; }
}
.lp-hero-content { max-width: 580px; }
.lp-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--rust);
  background: rgba(var(--rust-rgb), 0.1);
  padding: 8px 14px;
  border-radius: 2px;
  margin: 0 0 22px;
}
.lp-hero-content h1 {
  font-family: var(--display);
  font-size: clamp(2.2rem, 4.6vw, 3.6rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.05;
  color: var(--charcoal);
  margin: 0 0 18px;
}
.lp-hero-content h1 em,
.lp-hero-content h1 .italic {
  font-family: var(--accent);
  font-style: italic;
  font-weight: 400;
  color: var(--rust);
}
.lp-hero-sub {
  font-family: var(--body);
  font-size: 1.1rem;
  line-height: 1.55;
  color: var(--charcoal-soft);
  margin: 0 0 28px;
}
.lp-value-props,
.lp-benefits-inner {
  display: flex;
  flex-direction: column;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.lp-value-props li,
.lp-benefits-inner li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-family: var(--body);
  font-size: 0.98rem;
  color: var(--charcoal);
}
.lp-form-card {
  background: var(--bone-paper);
  border: 1px solid rgba(var(--charcoal-rgb), 0.1);
  border-radius: 2px;
  padding: 32px;
  box-shadow: 0 24px 48px -20px rgba(var(--ink-rgb), 0.18);
}
.lp-form-title {
  font-family: var(--display);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--charcoal);
  margin: 0 0 8px;
}
.lp-form-subtitle {
  font-family: var(--body);
  font-size: 0.95rem;
  color: var(--charcoal-soft);
  margin: 0 0 24px;
}
.lp-form { display: flex; flex-direction: column; gap: 14px; }
.lp-form label {
  font-family: var(--body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--charcoal);
  margin-bottom: 4px;
  display: block;
}
.lp-form input,
.lp-form textarea,
.lp-form select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid rgba(var(--charcoal-rgb), 0.18);
  border-radius: 2px;
  background: var(--canvas);
  font-family: var(--body);
  font-size: 0.95rem;
  color: var(--charcoal);
}
.lp-form input:focus,
.lp-form textarea:focus,
.lp-form select:focus {
  outline: 2px solid var(--rust);
  outline-offset: -1px;
  border-color: var(--rust);
}
.lp-form textarea { min-height: 90px; resize: vertical; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
@media (max-width: 560px) { .form-row { grid-template-columns: 1fr; } }
.form-optional {
  font-size: 0.7rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  margin-left: 6px;
}
.lp-form .btn-cta { width: 100%; justify-content: center; padding: 16px; font-size: 0.88rem; }
.lp-form-disclaimer {
  font-family: var(--body);
  font-size: 0.78rem;
  line-height: 1.45;
  color: var(--muted);
  margin: 14px 0 0;
  text-align: center;
}

/* ── LP supporting sections ── */
.lp-proof { padding: 64px 0; background: var(--bone-paper); }
.lp-proof-inner {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 var(--gut);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  text-align: center;
}
.lp-proof-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.lp-proof-item strong {
  font-family: var(--accent);
  font-style: italic;
  font-size: 2.4rem;
  color: var(--rust);
  line-height: 1;
}
.lp-proof-item span {
  font-family: var(--body);
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--charcoal-soft);
}
.lp-benefits { padding: 80px 0; }
.lp-section-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--rust);
  margin: 0 0 14px;
}
.lp-section-title {
  font-family: var(--display);
  font-size: clamp(1.8rem, 3.6vw, 2.6rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--charcoal);
  margin: 0 0 14px;
}
.lp-section-title em,
.lp-section-title .italic {
  font-family: var(--accent);
  font-style: italic;
  font-weight: 400;
  color: var(--rust);
}
.lp-section-sub {
  font-family: var(--body);
  font-size: 1.05rem;
  color: var(--charcoal-soft);
  margin: 0 0 40px;
  max-width: 640px;
}
.lp-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}
.lp-card {
  background: var(--bone-paper);
  border: 1px solid rgba(var(--charcoal-rgb), 0.08);
  border-radius: 2px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: border-color 0.25s, transform 0.25s var(--ease-out);
}
.lp-card:hover { border-color: var(--rust); transform: translateY(-2px); }
.lp-card h3 {
  font-family: var(--display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--charcoal);
  margin: 0;
}
.lp-card p {
  font-family: var(--body);
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--charcoal-soft);
  margin: 0;
}
.lp-card-icon {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--canvas);
  border-radius: 2px;
  color: var(--moss);
}
.lp-card-icon svg { width: 22px; height: 22px; }
.lp-bottom-cta {
  padding: 80px 0;
  background: var(--moss-ink);
  color: var(--bone-paper);
  text-align: center;
}
.lp-bottom-cta h2 {
  font-family: var(--display);
  font-size: clamp(1.8rem, 3.6vw, 2.6rem);
  font-weight: 700;
  color: var(--bone-paper);
  margin: 0 0 20px;
}
.lp-bottom-cta h2 em,
.lp-bottom-cta h2 .italic {
  font-family: var(--accent);
  font-style: italic;
  font-weight: 400;
  color: var(--rust);
}
.lp-bottom-cta p {
  font-size: 1.05rem;
  color: rgba(237, 231, 214, 0.78);
  margin: 0 0 28px;
}
.lp-footer {
  padding: 28px 0;
  background: var(--moss-ink);
  color: rgba(237, 231, 214, 0.6);
  font-family: var(--body);
  font-size: 0.85rem;
  text-align: center;
  border-top: 1px solid rgba(var(--canvas-rgb), 0.08);
}

/* ── Booking widget panel-back ── */
.booking-panel-back {
  background: transparent;
  border: 0;
  color: var(--charcoal-soft);
  cursor: pointer;
  font-family: var(--body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  align-items: center;
  gap: 6px;
  padding: 8px 0;
  margin-bottom: 16px;
  transition: color 0.25s;
}
.booking-panel-back:hover { color: var(--rust); }
