
    *, *::before, *::after {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    :root {
      --bg: #fafaf8;
      --bg-alt: #f0f0ec;
      --text: #111111;
      --text-muted: #767676;
      --border: #e2e2df;
      --card-bg: #f0f0ec;
      --nav-bg: rgba(250, 250, 248, 0.88);
      --t: 0.3s ease;
    }

    [data-theme="dark"] {
      --bg: #0d0d0d;
      --bg-alt: #1a1a1a;
      --text: #efefef;
      --text-muted: #888888;
      --border: #272727;
      --card-bg: #1a1a1a;
      --nav-bg: rgba(13, 13, 13, 0.88);
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
      background: var(--bg);
      color: var(--text);
      line-height: 1.6;
      transition: background var(--t), color var(--t);
      overflow-x: hidden;
    }

    /* ─── NAV ─── */
    nav {
      position: fixed;
      inset: 0 0 auto 0;
      z-index: 100;
      background: var(--nav-bg);
      backdrop-filter: blur(14px);
      -webkit-backdrop-filter: blur(14px);
      border-bottom: 1px solid var(--border);
      transition: background var(--t), border-color var(--t);
    }

    .nav-inner {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 2rem;
      height: 64px;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .nav-logo {
      display: flex;
      align-items: center;
      gap: 0.6rem;
      font-size: 0.95rem;
      font-weight: 800;
      letter-spacing: -0.03em;
      color: var(--text);
      text-decoration: none;
      transition: color var(--t);
    }

    .nav-logo img {
      width: auto;
      height: 28px;
      flex-shrink: 0;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 2.25rem;
      list-style: none;
    }

    .nav-links a {
      font-size: 0.85rem;
      font-weight: 400;
      color: var(--text-muted);
      text-decoration: none;
      transition: color var(--t);
    }

    .nav-links a:hover { color: var(--text); }

    .nav-right {
      display: flex;
      align-items: center;
      gap: 1.25rem;
    }

    .theme-toggle {
      width: 42px;
      height: 24px;
      background: var(--border);
      border: none;
      border-radius: 100px;
      cursor: pointer;
      position: relative;
      transition: background var(--t);
      flex-shrink: 0;
    }

    .theme-toggle::after {
      content: '';
      position: absolute;
      width: 18px;
      height: 18px;
      background: var(--text);
      border-radius: 50%;
      top: 3px;
      left: 3px;
      transition: transform var(--t), background var(--t);
    }

    [data-theme="dark"] .theme-toggle::after { transform: translateX(18px); }

    .hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      background: none;
      border: none;
      cursor: pointer;
      padding: 4px;
    }

    .hamburger span {
      display: block;
      width: 22px;
      height: 2px;
      background: var(--text);
      border-radius: 2px;
      transition: all var(--t);
    }

    .hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .hamburger.open span:nth-child(2) { opacity: 0; }
    .hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    .mobile-menu {
      display: none;
      position: fixed;
      inset: 64px 0 0 0;
      background: var(--bg);
      z-index: 99;
      padding: 3rem 2rem;
      flex-direction: column;
      gap: 2rem;
      transition: background var(--t);
    }

    .mobile-menu.open { display: flex; }

    .mobile-menu a {
      font-size: 2.5rem;
      font-weight: 800;
      letter-spacing: -0.04em;
      color: var(--text);
      text-decoration: none;
      transition: color var(--t);
    }

    .mobile-menu a:hover { color: var(--text-muted); }

    /* ─── LAYOUT ─── */
    .wrap {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 2rem;
    }

    hr.divider {
      max-width: 1200px;
      margin: 0 auto;
      border: none;
      border-top: 1px solid var(--border);
      transition: border-color var(--t);
    }

    .section-label {
      font-size: 0.68rem;
      font-weight: 600;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: var(--text-muted);
      padding-top: 5rem;
      margin-bottom: 3rem;
      transition: color var(--t);
    }

    /* ─── HERO ─── */
    .hero {
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      padding-top: 64px;
    }

    .hero-inner {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 2rem 6rem;
      width: 100%;
    }

    .hero-eyebrow {
      font-size: 0.72rem;
      font-weight: 500;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--text-muted);
      margin-bottom: 1.75rem;
      transition: color var(--t);
    }

    .hero-title {
      font-size: clamp(3.25rem, 8.5vw, 7.5rem);
      font-weight: 900;
      line-height: 0.95;
      letter-spacing: -0.045em;
      margin-bottom: 2rem;
      transition: color var(--t);
    }

    .hero-sub {
      font-size: clamp(1rem, 1.8vw, 1.2rem);
      font-weight: 400;
      color: var(--text-muted);
      max-width: 440px;
      line-height: 1.65;
      margin-bottom: 3rem;
      transition: color var(--t);
    }

    .hero-cta {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.9rem 1.8rem;
      background: var(--text);
      color: var(--bg);
      font-size: 0.85rem;
      font-weight: 600;
      text-decoration: none;
      border-radius: 100px;
      transition: opacity var(--t), background var(--t), color var(--t);
    }

    .hero-cta:hover { opacity: 0.75; }

    .hero-badges {
      display: flex;
      gap: 0.75rem;
      margin-top: 4rem;
      flex-wrap: wrap;
    }

    .badge {
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      padding: 0.4rem 0.9rem;
      border: 1px solid var(--border);
      border-radius: 100px;
      font-size: 0.72rem;
      font-weight: 500;
      color: var(--text-muted);
      text-decoration: none;
      transition: border-color var(--t), color var(--t);
    }

    a.badge:hover { color: var(--text); border-color: var(--text); }

    /* ─── SERVICES ─── */
    .services-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 1px;
      background: var(--border);
      border: 1px solid var(--border);
      border-radius: 16px;
      overflow: hidden;
      margin-bottom: 6rem;
      transition: background var(--t), border-color var(--t);
    }

    .service-card {
      background: var(--bg);
      padding: 3rem;
      transition: background var(--t);
    }

    .service-card:hover { background: var(--bg-alt); }

    .service-icon { font-size: 1.75rem; margin-bottom: 1.5rem; line-height: 1; }

    .service-title {
      font-size: 1.2rem;
      font-weight: 700;
      letter-spacing: -0.025em;
      margin-bottom: 0.75rem;
      transition: color var(--t);
    }

    .service-desc {
      font-size: 0.875rem;
      color: var(--text-muted);
      line-height: 1.75;
      transition: color var(--t);
    }

    /* ─── BUYERS INFO ─── */
    .buyers-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 6rem;
      margin-bottom: 6rem;
      align-items: start;
    }

    .buyers-left h2 {
      font-size: clamp(2rem, 3.5vw, 3rem);
      font-weight: 800;
      letter-spacing: -0.035em;
      line-height: 1.05;
      margin-bottom: 1.5rem;
      transition: color var(--t);
    }

    .buyers-left p {
      font-size: 0.95rem;
      color: var(--text-muted);
      line-height: 1.8;
      margin-bottom: 0.9rem;
      transition: color var(--t);
    }

    .steps { list-style: none; }

    .step {
      display: flex;
      gap: 1.5rem;
      padding: 1.5rem 0;
      border-bottom: 1px solid var(--border);
      transition: border-color var(--t);
    }

    .step:first-child { border-top: 1px solid var(--border); }

    .step-num {
      font-size: 0.68rem;
      font-weight: 700;
      color: var(--text-muted);
      padding-top: 0.15rem;
      min-width: 1.75rem;
      transition: color var(--t);
    }

    .step-body strong {
      display: block;
      font-size: 0.95rem;
      font-weight: 600;
      margin-bottom: 0.3rem;
    }

    .step-body p {
      font-size: 0.875rem;
      color: var(--text-muted);
      line-height: 1.65;
      transition: color var(--t);
    }

    /* ─── REVIEWS ─── */
    .reviews-intro {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      gap: 1rem;
      margin-bottom: 2rem;
      flex-wrap: wrap;
    }

    .reviews-intro h2 {
      font-size: clamp(2rem, 3.5vw, 3rem);
      font-weight: 800;
      letter-spacing: -0.035em;
      line-height: 1.05;
    }

    .google-btn {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.7rem 1.3rem;
      border: 1px solid var(--border);
      border-radius: 100px;
      font-size: 0.78rem;
      font-weight: 600;
      color: var(--text-muted);
      text-decoration: none;
      white-space: nowrap;
      transition: color var(--t), border-color var(--t);
      flex-shrink: 0;
    }

    .google-btn:hover { color: var(--text); border-color: var(--text); }
    .google-btn svg { width: 14px; height: 14px; flex-shrink: 0; }

    .reviews-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.25rem;
      margin-bottom: 2rem;
    }

    .review-card {
      background: var(--card-bg);
      border-radius: 14px;
      padding: 2rem;
      display: flex;
      flex-direction: column;
      gap: 1rem;
      transition: background var(--t);
    }

    .review-stars { font-size: 0.75rem; letter-spacing: 0.1em; color: var(--text); }
    .review-text { font-size: 0.875rem; line-height: 1.75; color: var(--text-muted); flex: 1; transition: color var(--t); }
    .review-author { font-size: 0.78rem; font-weight: 600; color: var(--text); transition: color var(--t); }

    .reviews-cta { text-align: center; padding: 1.5rem 0 5rem; }
    .reviews-cta a { font-size: 0.85rem; color: var(--text-muted); text-decoration: none; transition: color var(--t); }
    .reviews-cta a:hover { color: var(--text); }

    /* ─── CONTACT ─── */
    .contact-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 6rem;
      margin-bottom: 6rem;
      align-items: start;
    }

    .contact-left h2 {
      font-size: clamp(2rem, 3.5vw, 3rem);
      font-weight: 800;
      letter-spacing: -0.035em;
      line-height: 1.05;
      margin-bottom: 2.5rem;
      transition: color var(--t);
    }

    .contact-detail { margin-bottom: 1.5rem; }

    .contact-detail .lbl {
      font-size: 0.68rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      color: var(--text-muted);
      margin-bottom: 0.3rem;
      transition: color var(--t);
    }

    .contact-detail a,
    .contact-detail span {
      font-size: 1rem;
      color: var(--text);
      text-decoration: none;
      font-weight: 500;
      transition: color var(--t);
    }

    .contact-detail a:hover { text-decoration: underline; }

    /* ─── FORM ─── */
    .contact-form { display: flex; flex-direction: column; gap: 1rem; }

    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

    .form-group { display: flex; flex-direction: column; gap: 0.35rem; }

    .form-group label {
      font-size: 0.68rem;
      font-weight: 600;
      color: var(--text-muted);
      text-transform: uppercase;
      letter-spacing: 0.1em;
      transition: color var(--t);
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
      background: var(--bg-alt);
      border: 1px solid var(--border);
      border-radius: 8px;
      padding: 0.875rem 1rem;
      font-size: 0.9rem;
      color: var(--text);
      font-family: inherit;
      transition: border-color var(--t), background var(--t), color var(--t);
      outline: none;
      appearance: none;
      -webkit-appearance: none;
    }

    .form-group input::placeholder,
    .form-group textarea::placeholder { color: var(--text-muted); }

    .form-group input:focus,
    .form-group textarea:focus,
    .form-group select:focus { border-color: var(--text); }

    .form-group textarea { resize: vertical; min-height: 120px; }

    /* Honeypot — invisible to humans, visible to bots */
    .hp-field {
      position: absolute;
      left: -9999px;
      top: -9999px;
      opacity: 0;
      pointer-events: none;
    }

    .form-submit {
      align-self: flex-start;
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.9rem 1.8rem;
      background: var(--text);
      color: var(--bg);
      font-size: 0.85rem;
      font-weight: 600;
      border: none;
      border-radius: 100px;
      cursor: pointer;
      font-family: inherit;
      transition: opacity var(--t), background var(--t), color var(--t);
      margin-top: 0.5rem;
    }

    .form-submit:hover { opacity: 0.75; }
    .form-submit:disabled { opacity: 0.5; cursor: not-allowed; }

    /* ─── FOOTER ─── */
    footer { border-top: 1px solid var(--border); transition: border-color var(--t); }

    .footer-inner {
      max-width: 1200px;
      margin: 0 auto;
      padding: 1.75rem 2rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 1rem;
    }

    .footer-left { font-size: 0.78rem; color: var(--text-muted); transition: color var(--t); }

    .footer-right { display: flex; gap: 2rem; flex-wrap: wrap; align-items: center; }

    .footer-right a {
      font-size: 0.78rem;
      color: var(--text-muted);
      text-decoration: none;
      transition: color var(--t);
    }

    .footer-right a:hover { color: var(--text); }

    /* ─── ANIMATIONS ─── */
    .fade-in {
      opacity: 0;
      transform: translateY(18px);
      transition: opacity 0.65s ease, transform 0.65s ease;
    }

    .fade-in.visible { opacity: 1; transform: translateY(0); }

    /* ─── RESPONSIVE ─── */
    @media (max-width: 900px) {
      .buyers-grid,
      .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
      .reviews-grid { grid-template-columns: 1fr 1fr; }
    }

    @media (max-width: 640px) {
      .nav-links { display: none; }
      .hamburger { display: flex; }
      .services-grid { grid-template-columns: 1fr; }
      .reviews-grid { grid-template-columns: 1fr; }
      .form-row { grid-template-columns: 1fr; }
      .service-card { padding: 2rem; }
      .reviews-intro { flex-direction: column; align-items: flex-start; }
    }
  

/* ─── SUBPAGES / ADDITIONS ─── */
.page-hero { padding: calc(64px + 5rem) 0 3rem; }
.page-hero .wrap { max-width: 1200px; }
.crumbs { font-size: 0.72rem; color: var(--text-muted); margin-bottom: 1.5rem; letter-spacing: 0.04em; }
.crumbs a { color: var(--text-muted); text-decoration: none; }
.crumbs a:hover { color: var(--text); }
.page-title { font-size: clamp(2.25rem, 5.5vw, 4.5rem); font-weight: 900; line-height: 1; letter-spacing: -0.04em; margin-bottom: 1.5rem; max-width: 900px; }
.page-lead { font-size: clamp(1rem, 1.6vw, 1.2rem); color: var(--text-muted); max-width: 680px; line-height: 1.7; margin-bottom: 2rem; }
.btn-row { display: flex; gap: 0.75rem; flex-wrap: wrap; align-items: center; }
.btn-ghost { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.9rem 1.8rem; border: 1px solid var(--border); border-radius: 100px; font-size: 0.85rem; font-weight: 600; color: var(--text); text-decoration: none; transition: border-color var(--t); }
.btn-ghost:hover { border-color: var(--text); }
.prose { max-width: 760px; padding-bottom: 1rem; }
.prose h2 { font-size: clamp(1.5rem, 2.6vw, 2.1rem); font-weight: 800; letter-spacing: -0.03em; line-height: 1.1; margin: 3rem 0 1rem; }
.prose p { font-size: 0.98rem; color: var(--text-muted); line-height: 1.85; margin-bottom: 1rem; }
.prose a { color: var(--text); }
.check-list { list-style: none; margin: 0 0 1.25rem; padding: 0; }
.check-list li { position: relative; padding: 0.55rem 0 0.55rem 1.75rem; border-bottom: 1px solid var(--border); font-size: 0.93rem; color: var(--text-muted); line-height: 1.6; }
.check-list li::before { content: "\2713"; position: absolute; left: 0; top: 0.55rem; color: var(--text); font-weight: 700; }
.price-card { background: var(--card-bg); border-radius: 16px; padding: 2.5rem; display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; align-items: center; margin-bottom: 6rem; }
.price-card.tight { margin: 2rem 0 1rem; padding: 2rem; }
.price-from { font-size: 0.68rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--text-muted); }
.price-amt { font-size: clamp(3rem, 7vw, 5rem); font-weight: 900; letter-spacing: -0.05em; line-height: 1; margin: 0.25rem 0 0.5rem; }
.price-note { font-size: 0.85rem; color: var(--text-muted); line-height: 1.7; }
.area-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; margin-bottom: 6rem; }
.area-card { background: var(--card-bg); border-radius: 14px; padding: 2rem; }
.area-card h3 { font-size: 1.2rem; font-weight: 700; letter-spacing: -0.025em; margin-bottom: 0.75rem; }
.area-card p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.8; margin-bottom: 1rem; }
.area-card a.more { font-size: 0.85rem; font-weight: 600; color: var(--text); text-decoration: none; }
.area-card a.more:hover { text-decoration: underline; }
.faq { max-width: 760px; margin-bottom: 5rem; }
.faq details { border-bottom: 1px solid var(--border); padding: 1.1rem 0; }
.faq details:first-of-type { border-top: 1px solid var(--border); }
.faq summary { cursor: pointer; font-weight: 600; font-size: 0.98rem; list-style: none; display: flex; justify-content: space-between; gap: 1rem; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--text-muted); font-weight: 400; }
.faq details[open] summary::after { content: "\2212"; }
.faq details p { font-size: 0.92rem; color: var(--text-muted); line-height: 1.8; margin-top: 0.75rem; }
.cta-band { background: var(--card-bg); border-radius: 16px; padding: 3rem; display: flex; justify-content: space-between; align-items: center; gap: 2rem; flex-wrap: wrap; margin: 3rem 0 6rem; }
.cta-band h2 { font-size: clamp(1.5rem, 2.8vw, 2.2rem); font-weight: 800; letter-spacing: -0.03em; line-height: 1.1; max-width: 520px; }
.link-grid { display: flex; flex-wrap: wrap; gap: 0.6rem; margin: 1rem 0 2rem; }
.form-ok { display: none; background: var(--card-bg); border-radius: 12px; padding: 1.5rem; font-size: 0.95rem; line-height: 1.7; }
.form-note { font-size: 0.75rem; color: var(--text-muted); }
.callbar { display: none; }
.hero-cta-row { display: flex; gap: 0.75rem; flex-wrap: wrap; align-items: center; }
@media (max-width: 900px) { .price-card, .area-grid { grid-template-columns: 1fr; } }
@media (max-width: 640px) {
  .callbar { display: flex; position: fixed; inset: auto 0 0 0; z-index: 90; background: var(--bg); border-top: 1px solid var(--border); padding: 0.6rem 1rem calc(0.6rem + env(safe-area-inset-bottom)); gap: 0.6rem; }
  .callbar a { flex: 1; text-align: center; padding: 0.8rem 0.5rem; border-radius: 100px; font-size: 0.85rem; font-weight: 700; text-decoration: none; }
  .callbar a.c1 { background: var(--text); color: var(--bg); }
  .callbar a.c2 { border: 1px solid var(--border); color: var(--text); }
  body { padding-bottom: 4.5rem; }
  .cta-band, .price-card { padding: 1.75rem; }
}
