:root {
      --navy-950: #06162b;
      --navy-900: #0b2342;
      --navy-800: #12345d;
      --navy-700: #1c477a;
      --copper-700: #9c541b;
      --copper-600: #b96822;
      --copper-500: #cc7e33;
      --gold-400: #dfaa57;
      --cream-50: #fffdf9;
      --cream-100: #fbf5eb;
      --cream-200: #f3e7d4;
      --stone-700: #4c4a46;
      --stone-600: #66615a;
      --stone-300: #d8d0c4;
      --white: #ffffff;
      --success: #276749;
      --danger: #a23b32;
      --shadow-sm: 0 8px 24px rgba(6, 22, 43, .08);
      --shadow-md: 0 18px 48px rgba(6, 22, 43, .14);
      --radius-sm: 10px;
      --radius-md: 18px;
      --radius-lg: 28px;
      --max-width: 1180px;
      --header-height: 84px;
    }

    *, *::before, *::after { box-sizing: border-box; }
    html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-height) + 18px); }
    body {
      margin: 0;
      color: var(--navy-950);
      background: var(--cream-50);
      font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      line-height: 1.6;
      text-rendering: optimizeLegibility;
    }
    body.menu-open { overflow: hidden; }
    img { display: block; max-width: 100%; }
    a { color: inherit; }
    button, input, textarea, select { font: inherit; }
    button { cursor: pointer; }
    :focus-visible { outline: 3px solid rgba(204, 126, 51, .55); outline-offset: 3px; }

    .container { width: min(calc(100% - 36px), var(--max-width)); margin-inline: auto; }
    .section { padding: 88px 0; }
    .section--soft { background: var(--cream-100); }
    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 9px;
      margin: 0 0 10px;
      color: var(--copper-700);
      font-size: .8rem;
      font-weight: 800;
      letter-spacing: .12em;
      text-transform: uppercase;
    }
    .eyebrow::before { content: ""; width: 28px; height: 2px; background: currentColor; }
    .section-heading { max-width: 740px; margin: 0 auto 42px; text-align: center; }
    .section-heading h2,
    .hero h1,
    .area-panel h2,
    .contact-card h2 {
      margin: 0;
      font-family: Georgia, "Times New Roman", serif;
      letter-spacing: -.035em;
      line-height: 1.08;
    }
    .section-heading h2 { font-size: clamp(2.05rem, 4vw, 3.2rem); }
    .section-heading p { margin: 16px auto 0; max-width: 680px; color: var(--stone-600); font-size: 1.05rem; }

    .skip-link {
      position: fixed;
      left: 16px;
      top: -80px;
      z-index: 9999;
      padding: 12px 16px;
      color: var(--white);
      background: var(--navy-950);
      border-radius: 8px;
      transition: top .2s ease;
    }
    .skip-link:focus { top: 16px; }

    .site-header {
      position: sticky;
      top: 0;
      z-index: 1000;
      min-height: var(--header-height);
      background: rgba(255, 253, 249, .93);
      border-bottom: 1px solid rgba(11, 35, 66, .08);
      backdrop-filter: blur(14px);
    }
    .nav-wrap { min-height: var(--header-height); display: flex; align-items: center; justify-content: space-between; gap: 28px; }
    .brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; flex: 0 0 auto; }
    .brand-mark {
      display: grid;
      place-items: center;
      width: 50px;
      height: 50px;
      color: var(--copper-600);
      border: 2px solid currentColor;
      border-radius: 50%;
      background: var(--white);
    }
    .brand-mark svg { width: 30px; height: 30px; }
    .brand-copy { line-height: 1.05; }
    .brand-copy strong { display: block; color: var(--copper-700); font-family: Georgia, serif; font-size: 1.24rem; letter-spacing: .025em; }
    .brand-copy span { display: block; margin-top: 5px; color: var(--navy-900); font-size: .66rem; font-weight: 800; letter-spacing: .2em; text-transform: uppercase; }
    .site-nav { display: flex; align-items: center; gap: 26px; }
    .site-nav a { text-decoration: none; font-size: .94rem; font-weight: 700; }
    .site-nav a:not(.button) { position: relative; padding: 10px 0; }
    .site-nav a:not(.button)::after { content: ""; position: absolute; left: 0; right: 100%; bottom: 3px; height: 2px; background: var(--copper-500); transition: right .2s ease; }
    .site-nav a:not(.button):hover::after, .site-nav a:not(.button):focus-visible::after { right: 0; }
    .menu-toggle {
      display: none;
      align-items: center;
      justify-content: center;
      width: 46px;
      height: 46px;
      color: var(--navy-900);
      background: transparent;
      border: 1px solid rgba(11, 35, 66, .2);
      border-radius: 10px;
    }
    .menu-toggle svg { width: 24px; height: 24px; }

    .button {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      min-height: 48px;
      padding: 12px 20px;
      color: var(--white);
      background: var(--navy-900);
      border: 1px solid var(--navy-900);
      border-radius: 9px;
      box-shadow: 0 7px 16px rgba(11, 35, 66, .13);
      font-weight: 800;
      text-decoration: none;
      transition: transform .18s ease, background .18s ease, border-color .18s ease, box-shadow .18s ease;
    }
    .button:hover { transform: translateY(-2px); background: var(--navy-800); border-color: var(--navy-800); box-shadow: 0 11px 24px rgba(11, 35, 66, .18); }
    .button--outline { color: var(--copper-700); background: rgba(255,255,255,.75); border-color: var(--copper-500); box-shadow: none; }
    .button--outline:hover { color: var(--white); background: var(--copper-600); border-color: var(--copper-600); }
    .button--gold { color: var(--navy-950); background: var(--gold-400); border-color: var(--gold-400); }
    .button--gold:hover { background: #e8b967; border-color: #e8b967; }
    .button svg { width: 19px; height: 19px; flex: 0 0 auto; }

    .hero {
      position: relative;
      overflow: hidden;
      min-height: 680px;
      background:
        radial-gradient(circle at 86% 20%, rgba(223, 170, 87, .22), transparent 24%),
        radial-gradient(circle at 10% 70%, rgba(185, 104, 34, .10), transparent 30%),
        linear-gradient(112deg, #fffaf2 0%, #fffdf9 55%, #f5ecdf 100%);
      border-bottom: 1px solid rgba(11, 35, 66, .06);
    }
    .hero::before {
      content: "";
      position: absolute;
      right: -120px;
      top: 54px;
      width: 560px;
      height: 560px;
      border: 1px solid rgba(185, 104, 34, .14);
      border-radius: 50%;
      box-shadow: 0 0 0 42px rgba(185, 104, 34, .035), 0 0 0 84px rgba(185, 104, 34, .025);
    }
    .hero-grid { position: relative; z-index: 1; min-height: 680px; display: grid; grid-template-columns: 1.03fr .97fr; align-items: center; gap: 30px; padding: 52px 0 34px; }
    .hero-copy { padding: 32px 0; }
    .hero h1 { max-width: 720px; font-size: clamp(3.15rem, 6vw, 5.7rem); color: var(--navy-950); }
    .hero h1 span { color: var(--copper-600); }
    .hero-lede { max-width: 620px; margin: 24px 0 0; color: var(--stone-700); font-size: clamp(1.06rem, 1.7vw, 1.25rem); }
    .hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
    .hero-trust { display: flex; flex-wrap: wrap; gap: 14px 22px; margin: 30px 0 0; padding: 0; list-style: none; }
    .hero-trust li { display: inline-flex; align-items: center; gap: 9px; color: var(--navy-900); font-size: .9rem; font-weight: 750; }
    .hero-trust svg { width: 20px; height: 20px; color: var(--copper-600); }
    .hero-visual { position: relative; align-self: end; display: flex; align-items: end; justify-content: center; min-height: 620px; }
    .hero-visual::before {
      content: "";
      position: absolute;
      inset: 120px 10px 28px;
      background: linear-gradient(180deg, rgba(255,255,255,.75), rgba(255,255,255,.42));
      border: 1px solid rgba(185, 104, 34, .11);
      border-radius: 48% 48% 24px 24px;
      box-shadow: var(--shadow-md);
    }
    .hero-visual img { position: relative; z-index: 2; width: min(100%, 510px); max-height: 630px; object-fit: contain; object-position: bottom center; filter: drop-shadow(0 20px 25px rgba(6, 22, 43, .18)); }
    .floating-note {
      position: absolute;
      z-index: 3;
      left: -20px;
      bottom: 58px;
      width: min(250px, 64%);
      padding: 16px 18px;
      background: rgba(255,255,255,.94);
      border: 1px solid rgba(11,35,66,.1);
      border-radius: 14px;
      box-shadow: var(--shadow-sm);
    }
    .floating-note strong { display: block; font-family: Georgia, serif; font-size: 1.08rem; }
    .floating-note span { display: block; margin-top: 3px; color: var(--stone-600); font-size: .86rem; }

    .service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
    .service-card {
      position: relative;
      overflow: hidden;
      min-height: 235px;
      padding: 28px;
      background: var(--white);
      border: 1px solid rgba(156, 84, 27, .17);
      border-radius: var(--radius-md);
      box-shadow: var(--shadow-sm);
      transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
    }
    .service-card:hover { transform: translateY(-5px); border-color: rgba(156,84,27,.35); box-shadow: var(--shadow-md); }
    .service-icon { display: grid; place-items: center; width: 48px; height: 48px; color: var(--copper-700); background: var(--cream-100); border-radius: 12px; }
    .service-icon svg { width: 26px; height: 26px; }
    .service-card h3 { margin: 20px 0 8px; font-family: Georgia, serif; font-size: 1.35rem; }
    .service-card p { margin: 0; color: var(--stone-600); font-size: .95rem; }
    .service-card::after { content: ""; position: absolute; right: -28px; bottom: -28px; width: 90px; height: 90px; border: 16px solid rgba(204, 126, 51, .05); border-radius: 50%; }

    .steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; counter-reset: steps; }
    .step {
      position: relative;
      padding: 34px 28px 30px;
      background: var(--white);
      border: 1px solid rgba(11,35,66,.1);
      border-radius: var(--radius-md);
      box-shadow: var(--shadow-sm);
    }
    .step::before {
      counter-increment: steps;
      content: counter(steps);
      display: grid;
      place-items: center;
      width: 44px;
      height: 44px;
      margin-bottom: 20px;
      color: var(--white);
      background: var(--navy-900);
      border-radius: 50%;
      font-family: Georgia, serif;
      font-size: 1.2rem;
      font-weight: 700;
    }
    .step:not(:last-child)::after {
      content: "";
      position: absolute;
      top: 54px;
      left: calc(100% - 6px);
      width: 36px;
      height: 2px;
      background: repeating-linear-gradient(90deg, var(--copper-500) 0 5px, transparent 5px 10px);
    }
    .step h3 { margin: 0 0 8px; font-family: Georgia, serif; font-size: 1.42rem; }
    .step p { margin: 0; color: var(--stone-600); }

    .area-wrap { display: grid; grid-template-columns: 1.08fr .92fr; gap: 24px; }
    .area-panel {
      position: relative;
      overflow: hidden;
      min-height: 420px;
      padding: 48px;
      color: var(--white);
      background:
        linear-gradient(145deg, rgba(6,22,43,.96), rgba(18,52,93,.95)),
        radial-gradient(circle at 20% 30%, rgba(223,170,87,.3), transparent 38%);
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow-md);
    }
    .area-panel::after {
      content: "";
      position: absolute;
      right: -85px;
      bottom: -95px;
      width: 310px;
      height: 310px;
      border: 42px solid rgba(223,170,87,.08);
      border-radius: 50%;
    }
    .area-panel .eyebrow { color: #f2c77e; }
    .area-panel h2 { position: relative; z-index: 1; max-width: 640px; font-size: clamp(2.35rem, 4.5vw, 4rem); }
    .area-panel p { position: relative; z-index: 1; max-width: 630px; margin: 18px 0 0; color: rgba(255,255,255,.78); }
    .area-list { position: relative; z-index: 1; display: flex; flex-wrap: wrap; gap: 9px; margin: 27px 0 0; padding: 0; list-style: none; }
    .area-list li { padding: 8px 12px; color: #fff6e8; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.14); border-radius: 999px; font-size: .9rem; font-weight: 700; }
    .hours-card { padding: 42px; background: var(--white); border: 1px solid rgba(11,35,66,.08); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); }
    .hours-card h3 { margin: 0; font-family: Georgia, serif; font-size: 2rem; }
    .hours-list { margin: 26px 0 0; padding: 0; list-style: none; }
    .hours-list li { display: flex; justify-content: space-between; gap: 20px; padding: 14px 0; border-bottom: 1px solid rgba(11,35,66,.1); }
    .hours-list li span:first-child { color: var(--stone-700); font-weight: 750; }
    .hours-list li span:last-child { text-align: right; color: var(--navy-900); font-weight: 800; }
    .hours-note { margin-top: 22px; padding: 16px; color: var(--copper-700); background: var(--cream-100); border-left: 4px solid var(--copper-500); border-radius: 7px; font-weight: 700; }

    .trust-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: 32px; align-items: start; }
    .credentials { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
    .credential { display: flex; align-items: center; gap: 14px; min-height: 104px; padding: 18px; background: var(--white); border: 1px solid rgba(11,35,66,.09); border-radius: 14px; }
    .credential svg { width: 34px; height: 34px; color: var(--copper-600); flex: 0 0 auto; }
    .credential strong { line-height: 1.25; }
    .testimonials { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
    .testimonial { margin: 0; padding: 24px; background: var(--white); border: 1px solid rgba(156,84,27,.15); border-radius: 14px; box-shadow: var(--shadow-sm); }
    .stars { color: var(--copper-600); letter-spacing: .08em; font-size: .9rem; }
    .testimonial p { margin: 14px 0 18px; color: var(--stone-700); font-size: .94rem; }
    .testimonial footer { color: var(--navy-900); font-weight: 800; }
    .fictional-note { margin: 20px 0 0; color: var(--stone-600); font-size: .82rem; text-align: center; }

    .faq-list { max-width: 900px; margin: 0 auto; display: grid; gap: 12px; }
    .faq-item { overflow: hidden; background: var(--white); border: 1px solid rgba(11,35,66,.11); border-radius: 13px; }
    .faq-question {
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
      padding: 20px 22px;
      color: var(--navy-950);
      background: transparent;
      border: 0;
      text-align: left;
      font-weight: 800;
    }
    .faq-question svg { width: 20px; height: 20px; flex: 0 0 auto; transition: transform .2s ease; }
    .faq-item[open] .faq-question svg { transform: rotate(180deg); }
    .faq-answer { padding: 0 22px 22px; color: var(--stone-600); }
    .faq-answer p { margin: 0; }
    details summary { list-style: none; }
    details summary::-webkit-details-marker { display: none; }

    .contact-section { padding: 88px 0 0; background: linear-gradient(180deg, var(--cream-50), var(--cream-100)); }
    .contact-card {
      display: grid;
      grid-template-columns: .78fr 1.22fr;
      gap: 42px;
      padding: 52px;
      background: var(--white);
      border: 1px solid rgba(11,35,66,.09);
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow-md);
    }
    .contact-card h2 { font-size: clamp(2.4rem, 4.5vw, 4rem); }
    .contact-card > div > p { color: var(--stone-600); }
    .contact-list { margin: 30px 0 0; padding: 0; list-style: none; display: grid; gap: 16px; }
    .contact-list li, .contact-list a { display: flex; align-items: flex-start; gap: 12px; text-decoration: none; }
    .contact-list svg { width: 21px; height: 21px; margin-top: 2px; color: var(--copper-600); flex: 0 0 auto; }
    .contact-list strong { display: block; }
    .contact-list span { color: var(--stone-600); font-size: .9rem; }
    .contact-form { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
    .field { display: grid; gap: 7px; }
    .field--full { grid-column: 1 / -1; }
    .field label { color: var(--navy-900); font-size: .86rem; font-weight: 800; }
    .field input, .field textarea, .field select {
      width: 100%;
      min-height: 50px;
      padding: 12px 13px;
      color: var(--navy-950);
      background: var(--cream-50);
      border: 1px solid var(--stone-300);
      border-radius: 8px;
      transition: border-color .18s ease, box-shadow .18s ease;
    }
    .field textarea { min-height: 118px; resize: vertical; }
    .field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--copper-500); box-shadow: 0 0 0 3px rgba(204,126,51,.14); }
    .form-note { grid-column: 1 / -1; margin: -2px 0 0; color: var(--stone-600); font-size: .8rem; }
    .form-status { display: none; grid-column: 1 / -1; padding: 14px 16px; border-radius: 9px; font-weight: 750; }
    .form-status.is-visible { display: block; }
    .form-status.is-demo { color: var(--navy-900); background: #eef4fb; border: 1px solid #cadbea; }

    .site-footer { margin-top: 78px; color: rgba(255,255,255,.82); background: var(--navy-950); }
    .footer-grid { display: grid; grid-template-columns: 1.45fr .75fr 1fr 1fr; gap: 32px; padding: 54px 0 34px; }
    .footer-brand .brand-copy strong { color: #f0bb6d; }
    .footer-brand .brand-copy span { color: rgba(255,255,255,.72); }
    .footer-brand .brand-mark { background: transparent; color: #e9ad58; border-color: currentColor; }
    .footer-copy { max-width: 310px; margin: 18px 0 0; color: rgba(255,255,255,.62); font-size: .9rem; }
    .footer-col h3 { margin: 0 0 15px; color: var(--white); font-family: Georgia, serif; font-size: 1.08rem; }
    .footer-col ul { margin: 0; padding: 0; list-style: none; display: grid; gap: 8px; }
    .footer-col a { color: rgba(255,255,255,.72); text-decoration: none; }
    .footer-col a:hover { color: var(--white); }
    .footer-cta p { margin: 0 0 16px; color: rgba(255,255,255,.7); font-size: .9rem; }
    .footer-bottom { display: flex; justify-content: space-between; gap: 20px; padding: 18px 0 24px; border-top: 1px solid rgba(255,255,255,.1); color: rgba(255,255,255,.54); font-size: .79rem; }
    .footer-bottom a { color: rgba(255,255,255,.7); }

    .mobile-cta { display: none; }

    @media (max-width: 1020px) {
      .site-nav { gap: 18px; }
      .site-nav a:not(.button) { font-size: .88rem; }
      .hero-grid { grid-template-columns: 1fr 1fr; }
      .service-grid { grid-template-columns: repeat(2, 1fr); }
      .trust-grid { grid-template-columns: 1fr; }
      .testimonials { grid-template-columns: repeat(3, 1fr); }
      .contact-card { grid-template-columns: 1fr; }
      .footer-grid { grid-template-columns: 1.3fr 1fr 1fr; }
      .footer-cta { grid-column: 1 / -1; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
      .footer-cta p { margin: 0; }
    }

    @media (max-width: 860px) {
      :root { --header-height: 72px; }
      .brand-copy strong { font-size: 1.02rem; }
      .brand-copy span { font-size: .58rem; }
      .brand-mark { width: 44px; height: 44px; }
      .menu-toggle { display: inline-flex; }
      .site-nav {
        position: fixed;
        inset: var(--header-height) 0 auto 0;
        display: grid;
        gap: 0;
        padding: 16px 20px 24px;
        background: rgba(255,253,249,.985);
        border-bottom: 1px solid rgba(11,35,66,.09);
        box-shadow: var(--shadow-md);
        transform: translateY(-120%);
        opacity: 0;
        visibility: hidden;
        transition: transform .22s ease, opacity .22s ease, visibility .22s ease;
      }
      .site-nav.is-open { transform: translateY(0); opacity: 1; visibility: visible; }
      .site-nav a:not(.button) { padding: 14px 6px; border-bottom: 1px solid rgba(11,35,66,.08); }
      .site-nav .button { margin-top: 14px; }
      .hero { min-height: auto; }
      .hero-grid { min-height: auto; grid-template-columns: 1fr; padding-top: 54px; }
      .hero-copy { text-align: center; padding-bottom: 0; }
      .hero h1, .hero-lede { margin-inline: auto; }
      .hero-actions, .hero-trust { justify-content: center; }
      .hero-visual { min-height: 520px; }
      .hero-visual img { max-height: 530px; }
      .floating-note { left: 2%; bottom: 28px; }
      .steps { grid-template-columns: 1fr; }
      .step:not(:last-child)::after { top: auto; left: 49px; bottom: -25px; width: 2px; height: 25px; background: repeating-linear-gradient(180deg, var(--copper-500) 0 5px, transparent 5px 10px); }
      .area-wrap { grid-template-columns: 1fr; }
      .testimonials { grid-template-columns: 1fr 1fr; }
      .footer-grid { grid-template-columns: 1fr 1fr; }
      .footer-brand { grid-column: 1 / -1; }
    }

    @media (max-width: 620px) {
      .container { width: min(calc(100% - 24px), var(--max-width)); }
      .section { padding: 68px 0; }
      .brand-copy span { letter-spacing: .14em; }
      .hero h1 { font-size: clamp(2.65rem, 13vw, 4.2rem); }
      .hero-actions .button { width: 100%; }
      .hero-visual { min-height: 445px; }
      .hero-visual img { max-height: 450px; }
      .hero-visual::before { inset: 92px 0 22px; }
      .floating-note { width: 72%; left: 0; bottom: 14px; }
      .service-grid { grid-template-columns: 1fr; }
      .service-card { min-height: auto; }
      .area-panel, .hours-card, .contact-card { padding: 30px 23px; }
      .credentials { grid-template-columns: 1fr; }
      .testimonials { grid-template-columns: 1fr; }
      .contact-form { grid-template-columns: 1fr; }
      .field--full { grid-column: auto; }
      .form-note, .form-status { grid-column: auto; }
      .footer-grid { grid-template-columns: 1fr; }
      .footer-brand, .footer-cta { grid-column: auto; }
      .footer-cta { display: block; }
      .footer-cta p { margin-bottom: 16px; }
      .footer-bottom { flex-direction: column; }
      .mobile-cta {
        position: fixed;
        z-index: 1100;
        left: 12px;
        right: 12px;
        bottom: 12px;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 8px;
        padding: 8px;
        background: rgba(255,255,255,.96);
        border: 1px solid rgba(11,35,66,.12);
        border-radius: 14px;
        box-shadow: 0 16px 40px rgba(6,22,43,.22);
        backdrop-filter: blur(12px);
      }
      .mobile-cta .button { min-height: 46px; padding: 10px; font-size: .88rem; }
      .site-footer { padding-bottom: 84px; }
    }

    @media (prefers-reduced-motion: reduce) {
      html { scroll-behavior: auto; }
      *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
    }
