/* Self-hosted variable fonts (latin subset, from Google Fonts) */
@font-face { font-family: 'Bitter'; font-style: normal; font-weight: 500 700; font-display: swap; src: url('/assets/fonts/bitter.woff2') format('woff2'); unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; }
@font-face { font-family: 'Inter'; font-style: normal; font-weight: 400 600; font-display: swap; src: url('/assets/fonts/inter.woff2') format('woff2'); unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; }
:root {
    --charcoal: #141414;
    --ground: #F6F3EE;
    --surface: #FFFFFF;
    --surface-2: #EDE8DF;
    --pine: #1F3B2E;
    --pine-soft: #E4EBE6;
    --gold: #C9A24A;
    --gold-deep: #A8842F;
    --steel: #5B6670;
    --ink: #1B1B1A;
    --ink-2: #4B4F52;
    --line: #DAD4C8;
    --on-dark: #F6F3EE;
    --on-dark-2: #BDB6AA;
    --display: "Bitter", Georgia, "Times New Roman", serif;
    --body: "Inter", system-ui, -apple-system, "Segoe UI", Helvetica, Arial, sans-serif;
    --maxw: 1180px;
    --pad: clamp(20px, 5vw, 48px);
    --shadow: 0 18px 40px -22px rgba(20, 20, 20, 0.35);
  }
  :root[data-theme="dark"] {
    --ground: #161615;
    --surface: #1F1F1D;
    --surface-2: #262623;
    --pine-soft: #1E2B24;
    --ink: #F1EDE5;
    --ink-2: #B7B1A6;
    --line: #34332F;
    --steel: #97A1AA;
    --shadow: 0 18px 40px -22px rgba(0, 0, 0, 0.7);
  }

  *, *::before, *::after { box-sizing: border-box; }
  html { scroll-behavior: smooth; scroll-padding-top: 84px; }
  @media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { transition: none !important; animation: none !important; }
  }
  body {
    margin: 0;
    background: var(--ground);
    color: var(--ink);
    font-family: var(--body);
    font-size: 17px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
  }
  img { max-width: 100%; height: auto; display: block; }
  a { color: inherit; }
  a:focus-visible, button:focus-visible, summary:focus-visible {
    outline: 3px solid var(--gold);
    outline-offset: 3px;
  }
  h1, h2, h3 {
    font-family: var(--display);
    line-height: 1.12;
    margin: 0;
    text-wrap: balance;
  }
  h2 { font-size: clamp(28px, 3.6vw, 42px); font-weight: 700; letter-spacing: -0.01em; }
  h3 { font-size: 21px; font-weight: 600; }
  p { margin: 0; }
  .wrap { width: min(100% - 2 * var(--pad), var(--maxw)); margin-inline: auto; }
  .section { padding-block: clamp(56px, 8vw, 104px); }
  .lede { color: var(--ink-2); max-width: 62ch; font-size: 18px; }
  .section-head { display: grid; gap: 14px; margin-bottom: clamp(28px, 4vw, 48px); max-width: 760px; }
  .section-head h2::before {
    content: "";
    display: block;
    width: 56px;
    height: 4px;
    background: var(--gold);
    margin-bottom: 18px;
  }

  /* Buttons */
  .btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 24px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    border: 2px solid transparent;
    transition: background-color .15s ease, color .15s ease, border-color .15s ease;
    white-space: nowrap;
  }
  .btn-gold { background: var(--gold); color: var(--charcoal); border-color: var(--gold); }
  .btn-gold:hover { background: var(--gold-deep); border-color: var(--gold-deep); }
  .btn-ghost { color: var(--on-dark); border-color: rgba(246, 243, 238, 0.5); }
  .btn-ghost:hover { border-color: var(--on-dark); background: rgba(246, 243, 238, 0.08); }
  .btn svg { width: 18px; height: 18px; flex: none; }

  /* Header */
  .site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: var(--charcoal);
    color: var(--on-dark);
    border-bottom: 1px solid rgba(201, 162, 74, 0.35);
  }
  .header-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    min-height: 72px;
  }
  .brand { display: flex; align-items: center; gap: 12px; text-decoration: none; min-width: 0; }
  .brand img { width: 48px; height: 48px; border-radius: 4px; object-fit: contain; background: #000; flex: none; }
  .brand-name { font-family: var(--display); font-weight: 700; font-size: 17px; line-height: 1.1; }
  .brand-name small { display: block; font-family: var(--body); font-weight: 500; font-size: 11.5px; color: var(--on-dark-2); letter-spacing: .04em; margin-top: 3px; }
  .nav { display: none; }
  .nav a { white-space: nowrap; text-decoration: none; color: var(--on-dark-2); font-weight: 500; font-size: 15px; padding: 8px 12px; border-radius: 4px; }
  .nav a:hover { color: var(--on-dark); }
  .header-cta { display: flex; align-items: center; gap: 10px; }
  .header-phone { display: none; }
  .header-cta .btn { padding: 12px 16px; font-size: 15px; min-height: 44px; }
  .menu-btn {
    appearance: none;
    background: transparent;
    border: 1px solid rgba(246, 243, 238, 0.3);
    color: var(--on-dark);
    border-radius: 6px;
    width: 44px; height: 44px;
    display: inline-grid; place-items: center;
    cursor: pointer;
  }
  .menu-btn svg { width: 22px; height: 22px; }
  .mobile-nav[hidden] { display: none; }
  .mobile-nav {
    background: var(--charcoal);
    border-top: 1px solid rgba(246, 243, 238, 0.12);
    padding: 8px var(--pad) 18px;
    display: grid;
  }
  .mobile-nav a { color: var(--on-dark); text-decoration: none; padding: 12px 4px; border-bottom: 1px solid rgba(246, 243, 238, 0.1); font-weight: 500; }
  .mobile-nav a:last-child { border-bottom: 0; }
  @media (max-width: 899px) {
    .brand-name { white-space: nowrap; font-size: 16px; }
    .brand-name small, .header-cta .btn { display: none; }
  }
  @media (min-width: 900px) {
    .nav { display: flex; gap: 2px; }
    .menu-btn { display: none; }
    .header-phone { display: inline-flex; white-space: nowrap; color: var(--on-dark); text-decoration: none; font-weight: 600; font-variant-numeric: tabular-nums; align-items: center; gap: 8px; padding: 8px 12px; }
    .header-phone svg { width: 18px; height: 18px; color: var(--gold); }
  }

  /* Hero */
  .hero {
    position: relative;
    color: var(--on-dark);
    background: linear-gradient(160deg, #1B2F26 0%, #141414 62%);
    overflow: hidden;
  }
  .hero::before {
    content: "";
    position: absolute; inset: 0;
    background: repeating-linear-gradient(90deg, rgba(246,243,238,0.035) 0 1px, transparent 1px 64px);
    pointer-events: none;
  }
  .hero-grid {
    position: relative;
    display: grid;
    gap: 32px;
    align-items: center;
    padding-block: clamp(44px, 7vw, 96px) clamp(40px, 6vw, 88px);
  }
  @media (min-width: 900px) { .hero-grid { grid-template-columns: 1.1fr 0.9fr; gap: 56px; } }
  .hero-inner { display: grid; gap: 22px; max-width: 640px; }
  .eyebrow {
    display: inline-flex; align-items: center; gap: 10px;
    font-size: 14px; font-weight: 500;
    color: var(--gold);
    font-variant-numeric: tabular-nums;
  }
  .eyebrow svg { width: 18px; height: 18px; flex: none; }
  .hero h1 {
    font-size: clamp(36px, 5.6vw, 62px);
    font-weight: 700;
    letter-spacing: -0.015em;
    line-height: 1.05;
  }
  .hero .sub { font-size: clamp(17px, 1.6vw, 20px); color: rgba(246, 243, 238, 0.88); max-width: 56ch; line-height: 1.55; }
  .hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 8px; }
  .hero-photo { margin: 0; position: relative; }
  .hero-photo img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    object-position: 50% 22%;
    border-radius: 10px;
    border: 1px solid rgba(201, 162, 74, 0.35);
    box-shadow: 0 30px 60px -30px rgba(0, 0, 0, 0.8);
  }
  @media (min-width: 900px) { .hero-photo img { aspect-ratio: 4 / 5; object-position: 50% 30%; } }
  .hero-photo figcaption {
    position: absolute; left: 12px; right: 12px; bottom: 12px;
    font-size: 13px; line-height: 1.35;
    color: var(--on-dark);
    background: rgba(20, 20, 20, 0.74);
    padding: 8px 12px; border-radius: 6px;
  }

  /* Trust strip */
  .trust { background: var(--pine); color: var(--on-dark); }
  .trust ul {
    list-style: none; margin: 0; padding: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  .trust li {
    display: flex; align-items: center; gap: 10px;
    padding: 16px 12px;
    font-weight: 500; font-size: 15px;
    border-bottom: 1px solid rgba(246, 243, 238, 0.12);
  }
  .trust li:nth-child(odd) { border-right: 1px solid rgba(246, 243, 238, 0.12); }
  .trust li:nth-last-child(-n+2) { border-bottom: 0; }
  .trust li svg { width: 20px; height: 20px; color: var(--gold); flex: none; }
  @media (min-width: 760px) {
    .trust ul { grid-template-columns: repeat(4, 1fr); }
    .trust li { border-bottom: 0; border-right: 1px solid rgba(246, 243, 238, 0.12); padding: 18px 20px; justify-content: center; }
    .trust li:last-child { border-right: 0; }
  }

  /* Services */
  .services-grid {
    display: grid;
    gap: 22px;
    grid-template-columns: 1fr;
  }
  @media (min-width: 640px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
  @media (min-width: 1000px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }
  .service {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 8px;
    overflow: hidden;
    display: flex; flex-direction: column;
    text-decoration: none;
    color: inherit;
    box-shadow: var(--shadow);
    transition: transform .2s ease, border-color .2s ease;
  }
  .service:hover { transform: translateY(-3px); border-color: var(--gold); }
  .service img { aspect-ratio: 4 / 3; width: 100%; object-fit: cover; object-position: 50% 30%; }
  .service-body { padding: 20px 22px 22px; display: grid; gap: 10px; flex: 1; align-content: start; }
  .service-body p { color: var(--ink-2); font-size: 15.5px; }
  .service-link {
    margin-top: auto; padding-top: 8px;
    color: var(--pine); font-weight: 600; font-size: 15px;
    display: inline-flex; align-items: center; gap: 6px;
  }
  .service-link svg { width: 16px; height: 16px; transition: transform .15s ease; }
  .service:hover .service-link svg { transform: translateX(3px); }
  :root[data-theme="dark"] .service-link { color: var(--gold); }

  /* Why us */
  .why { background: var(--charcoal); color: var(--on-dark); position: relative; overflow: hidden; }
  .why::before {
    content: "";
    position: absolute; inset: 0;
    background: repeating-linear-gradient(90deg, rgba(246,243,238,0.045) 0 1px, transparent 1px 64px);
    pointer-events: none;
  }
  .why .wrap { position: relative; }
  .why-grid { display: grid; gap: 40px; align-items: center; }
  @media (min-width: 960px) { .why-grid { grid-template-columns: 1.05fr 1fr; gap: 64px; } }
  .why h2::before { background: var(--gold); }
  .why-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 22px; }
  .why-list li { display: grid; grid-template-columns: 44px 1fr; gap: 16px; align-items: start; }
  .why-icon {
    width: 44px; height: 44px; border-radius: 50%;
    display: grid; place-items: center;
    border: 1.5px solid var(--gold); color: var(--gold);
  }
  .why-icon svg { width: 20px; height: 20px; }
  .why-list h3 { font-size: 19px; color: var(--on-dark); margin-bottom: 4px; }
  .why-list p { color: var(--on-dark-2); font-size: 15.5px; }
  .why-photo { display: grid; gap: 14px; }
  .why-photo figure { margin: 0; }
  .why-photo img { border-radius: 8px; aspect-ratio: 4 / 3; object-fit: cover; object-position: 50% 40%; width: 100%; }
  .why-photo figcaption { font-size: 13.5px; color: var(--on-dark-2); margin-top: 8px; }
  .why-stat {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px;
    background: rgba(246,243,238,0.12);
    border: 1px solid rgba(246,243,238,0.12);
    border-radius: 8px; overflow: hidden;
  }
  .why-stat div { background: var(--charcoal); padding: 14px 16px; }
  .why-stat b { display: block; font-family: var(--display); font-size: 26px; color: var(--gold); font-variant-numeric: tabular-nums; line-height: 1.1; }
  .why-stat span { font-size: 13px; color: var(--on-dark-2); }

  /* Gallery */
  .gallery {
    display: grid; gap: 12px;
    grid-template-columns: repeat(2, 1fr);
    grid-auto-flow: row dense;
  }
  @media (min-width: 760px) { .gallery { grid-template-columns: repeat(4, 1fr); gap: 16px; } }
  .gallery figure { margin: 0; position: relative; border-radius: 6px; overflow: hidden; background: var(--surface-2); }
  .gallery img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; object-position: 50% 35%; display: block; }
  .gallery figure.tall { grid-row: span 2; min-height: 200px; }
  .gallery figure.tall img { position: absolute; inset: 0; height: 100%; aspect-ratio: auto; object-position: 50% 30%; }
  .gallery figcaption {
    position: absolute; left: 0; right: 0; bottom: 0;
    padding: 36px 12px 10px;
    font-size: 13px; line-height: 1.35; color: #F6F3EE;
    background: linear-gradient(180deg, rgba(20,20,20,0) 0%, rgba(20,20,20,0.82) 100%);
  }

  /* Reviews */
  .reviews { background: var(--pine-soft); }
  .reviews-grid { display: grid; gap: 20px; }
  @media (min-width: 900px) { .reviews-grid { grid-template-columns: repeat(3, 1fr); } }
  .review {
    background: var(--surface);
    border-radius: 8px;
    padding: 26px 26px 24px;
    display: grid; gap: 14px;
    border-top: 4px solid var(--gold);
    margin: 0;
  }
  .stars { display: inline-flex; gap: 2px; color: var(--gold); }
  .stars svg { width: 18px; height: 18px; }
  .review blockquote { margin: 0; font-family: var(--display); font-size: 17.5px; line-height: 1.5; font-weight: 500; }
  .review figcaption { font-size: 14.5px; color: var(--ink-2); font-weight: 500; }

  /* Process */
  .steps { list-style: none; margin: 0; padding: 0; display: grid; gap: 0; counter-reset: step; position: relative; }
  .step {
    display: grid; grid-template-columns: 56px 1fr; gap: 18px;
    padding: 22px 0;
    border-top: 1px solid var(--line);
  }
  .step:last-child { border-bottom: 1px solid var(--line); }
  .step-num {
    width: 56px; height: 56px; border-radius: 50%;
    background: var(--pine); color: var(--on-dark);
    font-family: var(--display); font-weight: 700; font-size: 22px;
    display: grid; place-items: center;
    font-variant-numeric: tabular-nums;
  }
  .step h3 { margin-bottom: 4px; }
  .step p { color: var(--ink-2); max-width: 60ch; }
  .process-grid { display: grid; gap: 36px; align-items: start; }
  @media (min-width: 960px) {
    .process-grid { grid-template-columns: 1fr 1fr; gap: 64px; }
    .steps { gap: 0; }
    .step { grid-template-columns: 56px 1fr; }
  }
  .process-photo { margin: 0; position: sticky; top: 96px; }
  .process-photo img { border-radius: 8px; aspect-ratio: 4 / 3; object-fit: cover; object-position: 50% 30%; width: 100%; }
  @media (min-width: 960px) { .process-photo img { aspect-ratio: 4 / 5; } }
  .process-photo figcaption { font-size: 13.5px; color: var(--ink-2); margin-top: 8px; }

  /* Area */
  .area { background: var(--charcoal); color: var(--on-dark); position: relative; overflow: hidden; }
  .area-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.28; }
  .area::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(20,20,20,0.95) 0%, rgba(20,20,20,0.7) 60%, rgba(20,20,20,0.5) 100%); }
  .area .wrap { position: relative; z-index: 1; }
  .area h2::before { background: var(--gold); }
  .area-lede { color: var(--on-dark-2); max-width: 60ch; margin-bottom: 26px; }
  .area-list { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 10px; max-width: 820px; }
  .area-list li {
    padding: 9px 16px; border-radius: 999px;
    border: 1px solid rgba(246,243,238,0.28);
    font-size: 15px; font-weight: 500;
  }
  .area-list li.home { background: var(--gold); border-color: var(--gold); color: var(--charcoal); }

  /* FAQ */
  .faq-list { display: grid; gap: 0; max-width: 820px; }
  .faq-list details { border-top: 1px solid var(--line); }
  .faq-list details:last-child { border-bottom: 1px solid var(--line); }
  .faq-list summary {
    list-style: none; cursor: pointer;
    display: flex; align-items: center; justify-content: space-between; gap: 20px;
    padding: 20px 4px;
    font-family: var(--display); font-weight: 600; font-size: 19px; line-height: 1.3;
  }
  .faq-list summary::-webkit-details-marker { display: none; }
  .faq-list summary::after {
    content: "";
    flex: none;
    width: 12px; height: 12px;
    border-right: 2px solid var(--gold);
    border-bottom: 2px solid var(--gold);
    transform: rotate(45deg);
    transition: transform .2s ease;
    margin-right: 6px;
  }
  .faq-list details[open] summary::after { transform: rotate(225deg); }
  .faq-list details p { padding: 0 4px 22px; color: var(--ink-2); max-width: 66ch; }

  /* Final CTA */
  .cta-final { background: var(--pine); color: var(--on-dark); }
  .cta-final .wrap { display: grid; gap: 22px; align-items: center; }
  @media (min-width: 900px) { .cta-final .wrap { grid-template-columns: 1fr auto; gap: 48px; } }
  .cta-final h2 { font-size: clamp(30px, 4vw, 44px); }
  .cta-final p { color: rgba(246,243,238,0.85); font-size: 18px; max-width: 48ch; margin-top: 12px; }
  .cta-actions { display: flex; flex-wrap: wrap; gap: 12px; }

  /* Footer */
  .site-footer { background: var(--charcoal); color: var(--on-dark-2); font-size: 15px; border-top: 4px solid var(--gold); }
  .footer-grid { display: grid; gap: 32px; padding-block: 48px 28px; }
  @media (min-width: 800px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; gap: 48px; } }
  .footer-brand { display: grid; gap: 14px; }
  .footer-brand img { width: 72px; height: 72px; border-radius: 6px; }
  .footer-brand strong { color: var(--on-dark); font-family: var(--display); font-size: 19px; display: block; }
  .site-footer address { font-style: normal; line-height: 1.7; }
  .site-footer a { color: var(--on-dark); text-decoration: none; }
  .site-footer a:hover { color: var(--gold); }
  .footer-col h3 { color: var(--on-dark); font-size: 15px; font-family: var(--body); font-weight: 600; margin-bottom: 12px; }
  .footer-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; }
  .footer-bottom {
    border-top: 1px solid rgba(246,243,238,0.12);
    padding-block: 18px 26px;
    display: flex; flex-wrap: wrap; gap: 8px 24px; justify-content: space-between;
    font-size: 13.5px;
  }
  .lic { font-variant-numeric: tabular-nums; }

  /* Mobile call bar */
  .mobile-bar {
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 40;
    display: grid; grid-template-columns: 1fr 1fr; gap: 10px;
    padding: 10px var(--pad) calc(10px + env(safe-area-inset-bottom));
    background: rgba(20, 20, 20, 0.95);
    border-top: 1px solid rgba(201, 162, 74, 0.4);
  }
  .mobile-bar .btn { justify-content: center; min-height: 48px; padding: 12px 14px; font-size: 15px; }
  @media (max-width: 899px) { body { padding-bottom: 78px; } }
  @media (min-width: 900px) { .mobile-bar { display: none; } }

/* ===== Site-wide additions (multi-page) ===== */
.skip { position: absolute; left: -999px; top: 8px; z-index: 100; background: var(--gold); color: var(--charcoal); padding: 10px 14px; border-radius: 6px; font-weight: 600; }
.skip:focus { left: 8px; }
picture { display: contents; }
a > svg, p > svg { width: 1em; height: 1em; vertical-align: -0.15em; }

/* Header dropdown */
.nav .has-menu { position: relative; }
.nav-btn { appearance: none; background: none; border: 0; color: var(--on-dark-2); font: inherit; font-weight: 500; font-size: 15px; padding: 8px 12px; border-radius: 4px; cursor: pointer; display: inline-flex; align-items: center; gap: 4px; white-space: nowrap; }
.nav-btn svg { width: 16px; height: 16px; transition: transform .15s ease; }
.nav-btn:hover, .has-menu.is-active .nav-btn { color: var(--on-dark); }
.has-menu.open .nav-btn svg { transform: rotate(180deg); }
.menu { position: absolute; top: calc(100% + 6px); left: 0; min-width: 260px; list-style: none; margin: 0; padding: 8px; background: var(--charcoal); border: 1px solid rgba(201,162,74,0.4); border-radius: 8px; box-shadow: 0 20px 40px -20px rgba(0,0,0,.7); display: none; z-index: 60; }
.has-menu.open .menu, .has-menu:focus-within .menu { display: block; }
.menu a { display: block; padding: 10px 12px; border-radius: 4px; color: var(--on-dark); white-space: nowrap; }
.menu a:hover, .menu a[aria-current="page"] { background: rgba(246,243,238,0.08); color: var(--gold); }
.nav a[aria-current="page"] { color: var(--gold); }
.mobile-nav-label { color: var(--on-dark-2); font-size: 12.5px; letter-spacing: .04em; padding: 14px 4px 4px; }
.mobile-nav a.sub { padding-left: 16px; }
.mobile-nav-actions { display: grid; gap: 10px; padding-top: 14px; }
.mobile-nav-actions .btn { justify-content: center; min-height: 48px; }
.mobile-nav-actions .btn-ghost { border-color: rgba(246,243,238,0.4); }

/* Breadcrumb */
.crumbs ol { list-style: none; margin: 0 0 14px; padding: 0; display: flex; flex-wrap: wrap; gap: 6px; font-size: 14px; color: var(--on-dark-2); }
.crumbs li + li::before { content: "/"; margin-right: 6px; opacity: .5; }
.crumbs a { color: var(--on-dark-2); text-decoration: none; }
.crumbs a:hover { color: var(--gold); }
.crumbs [aria-current] { color: var(--on-dark); }

/* Inner page hero */
.page-hero { position: relative; color: var(--on-dark); background: linear-gradient(160deg, #1B2F26 0%, #141414 62%); overflow: hidden; }
.page-hero::before { content: ""; position: absolute; inset: 0; background: repeating-linear-gradient(90deg, rgba(246,243,238,0.035) 0 1px, transparent 1px 64px); pointer-events: none; }
.page-hero .wrap { position: relative; }
.page-hero-grid { display: grid; gap: 28px; align-items: center; padding-block: clamp(36px, 6vw, 72px) clamp(36px, 6vw, 72px); }
@media (min-width: 900px) { .page-hero-grid { grid-template-columns: 1.15fr 0.85fr; gap: 56px; } }
.page-hero h1 { font-size: clamp(32px, 4.6vw, 52px); font-weight: 700; letter-spacing: -0.015em; line-height: 1.08; }
.page-hero .sub { font-size: clamp(17px, 1.5vw, 19px); color: rgba(246,243,238,0.88); max-width: 58ch; line-height: 1.55; margin-top: 14px; }
.page-hero .sub a { color: var(--gold); }
.page-hero .hero-actions { margin-top: 22px; }
.page-hero .hero-photo img { aspect-ratio: 4 / 3; }
@media (min-width: 900px) { .page-hero .hero-photo img { aspect-ratio: 5 / 4; } }
.page-hero-compact .wrap { padding-block: clamp(36px, 6vw, 72px); max-width: 820px; margin-inline: 0; margin-left: max(var(--pad), (100% - var(--maxw)) / 2); }

/* Prose + sidebar */
.prose-grid { display: grid; gap: 36px; align-items: start; }
@media (min-width: 960px) { .prose-grid { grid-template-columns: minmax(0, 1fr) 320px; gap: 56px; } }
.prose { max-width: 68ch; }
.prose h2 { font-size: clamp(24px, 2.6vw, 30px); margin: 34px 0 12px; }
.prose h2:first-child { margin-top: 0; }
.prose h2::before { content: ""; display: block; width: 40px; height: 3px; background: var(--gold); margin-bottom: 14px; }
.prose p { margin: 0 0 16px; color: var(--ink); }
.prose a { color: var(--pine); font-weight: 500; }
.prose ul { padding-left: 0; }
.side { display: grid; gap: 18px; position: sticky; top: 92px; }
.side-card { background: var(--surface); border: 1px solid var(--line); border-radius: 8px; padding: 22px; }
.side-card h2 { font-size: 18px; margin: 0 0 12px; }
.side-card h2 + h2 { margin-top: 18px; }
.side-card p { color: var(--ink-2); margin: 0 0 12px; font-size: 15.5px; }
.side-card-dark { background: var(--charcoal); border-color: rgba(201,162,74,0.4); color: var(--on-dark); }
.side-card-dark h2 { color: var(--on-dark); }
.side-card-dark p { color: var(--on-dark-2); }
.side-card-dark .btn { width: 100%; justify-content: center; }
.side-link { display: inline-flex; align-items: center; gap: 6px; margin-top: 12px; color: var(--gold); font-weight: 600; font-size: 15px; text-decoration: none; }
.side-link svg { width: 16px; height: 16px; }
.check-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.check-list li { display: flex; gap: 10px; align-items: flex-start; font-size: 15px; line-height: 1.45; }
.check-list svg { width: 18px; height: 18px; flex: none; color: var(--pine); margin-top: 3px; }
.plain-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; }
.plain-list a { color: var(--pine); font-weight: 500; }
.facts { display: grid; grid-template-columns: auto 1fr; gap: 6px 14px; margin: 0; font-size: 15px; }
.facts dt { color: var(--ink-2); }
.facts dd { margin: 0; font-weight: 500; }
:root[data-theme="dark"] .prose a, :root[data-theme="dark"] .plain-list a, :root[data-theme="dark"] .check-list svg { color: var(--gold); }

/* Materials */
.materials { background: var(--pine-soft); }
.mat-grid { display: grid; gap: 18px; }
@media (min-width: 640px) { .mat-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .mat-grid { grid-template-columns: repeat(3, 1fr); } }
.mat { background: var(--surface); border-radius: 8px; padding: 22px; border-top: 4px solid var(--gold); }
.mat h3 { font-size: 19px; margin-bottom: 8px; }
.mat p { color: var(--ink-2); font-size: 15.5px; }

/* Signs + process */
.signs-grid { display: grid; gap: 40px; align-items: start; }
@media (min-width: 960px) { .signs-grid { grid-template-columns: 1fr 1fr; gap: 64px; } }
.signs-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.signs-list li { position: relative; padding-left: 26px; line-height: 1.5; }
.signs-list li::before { content: ""; position: absolute; left: 0; top: 10px; width: 12px; height: 12px; border-radius: 50%; border: 2px solid var(--gold); }

/* Photo rows */
.photo-row { display: grid; gap: 14px; grid-template-columns: 1fr; }
@media (min-width: 640px) { .photo-row { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .photo-row { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); } }
.photo-row figure { margin: 0; position: relative; border-radius: 6px; overflow: hidden; background: var(--surface-2); }
.photo-row img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; object-position: 50% 35%; }
.photo-row figcaption { position: absolute; left: 0; right: 0; bottom: 0; padding: 36px 12px 10px; font-size: 13px; color: #F6F3EE; background: linear-gradient(180deg, rgba(20,20,20,0) 0%, rgba(20,20,20,0.82) 100%); }

/* Service areas */
.area-grid { display: grid; gap: 18px; }
@media (min-width: 640px) { .area-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .area-grid { grid-template-columns: repeat(3, 1fr); } }
.area-card { background: var(--surface); border: 1px solid var(--line); border-radius: 8px; padding: 22px; }
.area-card h3 { font-size: 20px; margin-bottom: 8px; }
.area-card p { color: var(--ink-2); font-size: 15.5px; }

/* Contact form */
.contact-grid { display: grid; gap: 36px; align-items: start; }
@media (min-width: 960px) { .contact-grid { grid-template-columns: minmax(0, 1fr) 340px; gap: 56px; } }
.form { display: grid; gap: 18px; max-width: 640px; }
.field { display: grid; gap: 6px; border: 0; padding: 0; margin: 0; }
.field label, .field legend { font-weight: 600; font-size: 15px; }
.field .req { font-weight: 400; color: var(--ink-2); }
.field input, .field select, .field textarea { font: inherit; padding: 12px 14px; min-height: 48px; border: 1px solid var(--line); border-radius: 6px; background: var(--surface); color: var(--ink); width: 100%; }
.field textarea { min-height: 140px; resize: vertical; }
.field input:focus-visible, .field select:focus-visible, .field textarea:focus-visible { outline: 3px solid var(--gold); outline-offset: 1px; border-color: var(--gold); }
.field .radio { display: inline-flex; align-items: center; gap: 8px; margin-right: 18px; font-weight: 500; min-height: 44px; }
.field .radio input { width: 20px; height: 20px; min-height: 0; accent-color: var(--pine); }
.form .btn { justify-self: start; min-height: 48px; }
.form-note { color: var(--ink-2); font-size: 14px; }
.hp { position: absolute; left: -9999px; }
.contact-side { display: grid; gap: 18px; }
.big-phone { display: inline-flex; align-items: center; gap: 10px; font-family: var(--display); font-size: 26px; font-weight: 700; color: var(--gold); text-decoration: none; font-variant-numeric: tabular-nums; margin-bottom: 8px; }
.big-phone svg { width: 24px; height: 24px; }
.contact-side address { font-style: normal; line-height: 1.6; margin-bottom: 12px; }
.contact-side a { color: var(--pine); font-weight: 500; }
.contact-side .side-card-dark a { color: var(--gold); }
:root[data-theme="dark"] .contact-side a { color: var(--gold); }

/* Footer extras */
.footer-areas { display: grid; grid-template-columns: 1fr 1fr; gap: 6px 12px !important; }
.footer-col h2 { color: var(--on-dark); font-size: 15px; font-family: var(--body); font-weight: 600; margin-bottom: 12px; }
@media (min-width: 800px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; } }
.site-footer .lic a { color: var(--on-dark-2); text-decoration: underline; }

/* dark-section lede + numbered prose lists */
.why .lede { color: var(--on-dark-2); }
.prose ol.numbered { padding-left: 0; list-style: none; counter-reset: n; display: grid; gap: 12px; margin: 0 0 18px; }
.prose ol.numbered li { counter-increment: n; position: relative; padding-left: 40px; line-height: 1.55; }
.prose ol.numbered li::before { content: counter(n); position: absolute; left: 0; top: 2px; width: 28px; height: 28px; border-radius: 50%; background: var(--pine); color: var(--on-dark); font-family: var(--display); font-weight: 700; font-size: 14px; display: grid; place-items: center; }
.side-card ul + h2 { margin-top: 18px; }
