/* ============================================================
       CUSTOM PROPERTIES
    ============================================================ */
    :root {
      --cream:        #F5F0E8;
      --cream-soft:   #FAF6EF;
      --cream-deep:   #ECE4D5;
      --navy:         #1B2A4A;
      --navy-dark:    #0F1A30;
      --navy-light:   #2A3D63;
      --brass:        #B8935A;
      --brass-bright: #D4B074;
      --brass-dark:   #8E6F3F;
      --brass-glow:   rgba(184, 147, 90, 0.30);
      --charcoal:     #2C2C2C;
      --muted:        rgba(44, 44, 44, 0.70);
      --muted-light:  rgba(245, 240, 232, 0.75);
      --white:        #ffffff;
      --border:       rgba(27, 42, 74, 0.15);
      --border-brass: rgba(184, 147, 90, 0.35);
      --ease:         cubic-bezier(0.4, 0, 0.2, 1);
      --t:            0.28s;
      --radius:       12px;
      --radius-lg:    20px;
      --shadow-sm:    0 4px 16px rgba(15, 26, 48, 0.08);
      --shadow:       0 10px 40px rgba(15, 26, 48, 0.12);
      --shadow-lg:    0 20px 60px rgba(15, 26, 48, 0.18);
      --serif:        'Playfair Display', Georgia, serif;
      --sans:         'Montserrat', 'Segoe UI', system-ui, sans-serif;
    }

    *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
    html { scroll-behavior: smooth; font-size: 16px; }
    body {
      font-family: var(--sans);
      background: var(--cream);
      color: var(--charcoal);
      overflow-x: hidden;
      line-height: 1.65;
      -webkit-font-smoothing: antialiased;
    }
    img { max-width: 100%; display: block; }
    a   { text-decoration: none; color: inherit; }

    .container { max-width: 1240px; margin: 0 auto; padding: 0 28px; }

    .eyebrow {
      display: inline-block;
      font-family: var(--sans);
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 0.32em;
      text-transform: uppercase;
      color: var(--brass);
      margin-bottom: 18px;
    }
    .section-title {
      font-family: var(--serif);
      font-size: clamp(2.2rem, 4.2vw, 3.4rem);
      font-weight: 700;
      line-height: 1.1;
      color: var(--navy);
      margin-bottom: 18px;
      letter-spacing: -0.01em;
    }
    .section-title .accent { color: var(--brass); font-style: italic; }
    .section-body {
      font-size: 1.05rem;
      color: var(--muted);
      max-width: 620px;
      margin-bottom: 56px;
      line-height: 1.7;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      padding: 15px 36px;
      border-radius: 50px;
      font-family: var(--sans);
      font-weight: 600;
      font-size: 0.92rem;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      cursor: pointer;
      border: 2px solid transparent;
      transition: all var(--t) var(--ease);
      white-space: nowrap;
    }
    .btn-primary {
      background: var(--brass);
      color: var(--white);
      border-color: var(--brass);
      box-shadow: 0 8px 24px var(--brass-glow);
    }
    .btn-primary:hover {
      background: var(--brass-bright);
      border-color: var(--brass-bright);
      transform: translateY(-2px);
      box-shadow: 0 12px 32px var(--brass-glow);
    }
    .btn-outline { background: transparent; color: var(--navy); border-color: var(--navy); }
    .btn-outline:hover { background: var(--navy); color: var(--cream); transform: translateY(-2px); }
    .btn-light { background: var(--cream); color: var(--navy); border-color: var(--cream); }
    .btn-light:hover { background: var(--brass); border-color: var(--brass); color: var(--white); transform: translateY(-2px); }

    /* NAVIGATION */
    .nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
      padding: 18px 0;
      background: rgba(245, 240, 232, 0.92);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      border-bottom: 1px solid transparent;
      transition: all var(--t) var(--ease);
    }
    .nav.scrolled {
      padding: 12px 0;
      background: rgba(245, 240, 232, 0.98);
      border-bottom-color: var(--border);
      box-shadow: var(--shadow-sm);
    }
    .nav-inner {
      display: flex; align-items: center; justify-content: space-between;
      max-width: 1240px; margin: 0 auto; padding: 0 28px;
    }
    .nav-logo {
      font-family: var(--serif); font-size: 1.55rem; font-weight: 800;
      color: var(--navy); letter-spacing: -0.01em; display: flex; align-items: center;
    }
    .nav-logo .accent { color: var(--brass); font-style: italic; }
    .nav-logo img { height: 64px; width: auto; display: block; transition: height var(--t) var(--ease); }
    .nav.scrolled .nav-logo img { height: 52px; }
    @media (max-width: 600px) { .nav-logo img { height: 48px; } }
    .nav-links { display: flex; align-items: center; gap: 36px; list-style: none; }
    .nav-links a {
      font-size: 0.88rem; font-weight: 500; color: var(--navy);
      letter-spacing: 0.04em; position: relative; padding: 4px 0;
      transition: color var(--t) var(--ease);
    }
    .nav-links a::after {
      content: ''; position: absolute; left: 0; bottom: -4px;
      width: 0; height: 2px; background: var(--brass);
      transition: width var(--t) var(--ease);
    }
    .nav-links a:hover { color: var(--brass); }
    .nav-links a:hover::after { width: 100%; }
    .nav-cta {
      display: inline-flex; align-items: center; gap: 8px;
      padding: 10px 22px; background: var(--navy); color: var(--cream);
      border-radius: 50px; font-size: 0.85rem; font-weight: 600;
      letter-spacing: 0.04em; transition: all var(--t) var(--ease);
    }
    .nav-cta:hover { background: var(--brass); transform: translateY(-1px); }
    .nav-toggle {
      display: none; flex-direction: column; gap: 5px;
      background: none; border: none; cursor: pointer; padding: 8px;
    }
    .nav-toggle span { width: 26px; height: 2px; background: var(--navy); transition: all var(--t) var(--ease); }

    @media (max-width: 900px) {
      .nav-links, .nav-cta { display: none; }
      .nav-toggle { display: flex; }
      .nav-links.open {
        display: flex; position: absolute; top: 100%; left: 0; right: 0;
        flex-direction: column; gap: 0; background: var(--cream);
        padding: 16px 28px 24px; border-bottom: 1px solid var(--border);
      }
      .nav-links.open li { width: 100%; }
      .nav-links.open a { display: block; padding: 14px 0; border-bottom: 1px solid var(--border); }
    }

    /* HERO */
    .hero {
      position: relative; min-height: 100vh; display: flex; align-items: center;
      padding: 140px 0 80px; background: var(--navy); overflow: hidden;
    }
    .hero-bg {
      position: absolute; inset: 0;
      background:
        radial-gradient(ellipse at top right, rgba(184, 147, 90, 0.20) 0%, transparent 55%),
        radial-gradient(ellipse at bottom left, rgba(184, 147, 90, 0.12) 0%, transparent 50%),
        linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
    }
    .hero-pattern {
      position: absolute; inset: 0; opacity: 0.08;
      background-image:
        linear-gradient(var(--brass) 1px, transparent 1px),
        linear-gradient(90deg, var(--brass) 1px, transparent 1px);
      background-size: 60px 60px;
      mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
      -webkit-mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
    }
    .hero-inner {
      position: relative; z-index: 2; display: grid;
      grid-template-columns: 1.1fr 1fr; gap: 64px; align-items: center;
    }
    .hero-content { color: var(--cream); }
    .hero-badge {
      display: inline-flex; align-items: center; gap: 8px;
      padding: 8px 18px; border: 1px solid var(--border-brass);
      border-radius: 50px; background: rgba(184, 147, 90, 0.08);
      font-size: 0.78rem; font-weight: 600; letter-spacing: 0.14em;
      text-transform: uppercase; color: var(--brass-bright); margin-bottom: 28px;
    }
    .hero-badge::before {
      content: ''; width: 6px; height: 6px; background: var(--brass-bright);
      border-radius: 50%; box-shadow: 0 0 12px var(--brass-bright);
    }
    .hero-title {
      font-family: var(--serif); font-size: clamp(2.6rem, 5.5vw, 4.4rem);
      font-weight: 700; line-height: 1.05; color: var(--cream);
      margin-bottom: 24px; letter-spacing: -0.02em;
    }
    .hero-title .accent { color: var(--brass-bright); font-style: italic; font-weight: 600; }
    .hero-sub {
      font-size: 1.12rem; color: var(--muted-light); line-height: 1.7;
      margin-bottom: 36px; max-width: 540px;
    }
    .hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 48px; }
    .hero-actions .btn-outline { color: var(--cream); border-color: rgba(245, 240, 232, 0.5); }
    .hero-actions .btn-outline:hover { background: var(--cream); color: var(--navy); border-color: var(--cream); }
    .hero-stats { display: flex; gap: 48px; padding-top: 36px; border-top: 1px solid rgba(184, 147, 90, 0.25); }
    .stat-num {
      font-family: var(--serif); font-size: 2.2rem; font-weight: 700;
      color: var(--brass-bright); line-height: 1; margin-bottom: 6px;
    }
    .stat-label {
      font-size: 0.78rem; font-weight: 500; text-transform: uppercase;
      letter-spacing: 0.14em; color: var(--muted-light);
    }
    .hero-promo {
      position: relative; background: var(--cream); border-radius: var(--radius-lg);
      padding: 48px 40px; box-shadow: var(--shadow-lg);
      border: 1px solid var(--border-brass); transform: rotate(1deg);
    }
    .hero-promo::before {
      content: ''; position: absolute; inset: -8px; border: 1px solid var(--brass);
      border-radius: var(--radius-lg); z-index: -1; transform: rotate(-2deg); opacity: 0.4;
    }
    .promo-tag {
      display: inline-block; background: var(--brass); color: var(--white);
      padding: 6px 16px; border-radius: 50px; font-size: 0.7rem; font-weight: 700;
      letter-spacing: 0.2em; text-transform: uppercase; margin-bottom: 20px;
    }
    .promo-title {
      font-family: var(--serif); font-size: 1.7rem; font-weight: 700;
      color: var(--navy); line-height: 1.2; margin-bottom: 8px;
    }
    .promo-sub { color: var(--muted); font-size: 0.95rem; margin-bottom: 24px; }
    .promo-price { display: flex; align-items: baseline; gap: 6px; margin-bottom: 24px; }
    .promo-price .dollar { font-family: var(--serif); font-size: 1.6rem; font-weight: 600; color: var(--brass); }
    .promo-price .amount {
      font-family: var(--serif); font-size: 3.6rem; font-weight: 800;
      color: var(--navy); line-height: 1; letter-spacing: -0.02em;
    }
    .promo-features { list-style: none; margin-bottom: 28px; }
    .promo-features li {
      display: flex; align-items: center; gap: 10px; padding: 8px 0;
      font-size: 0.92rem; color: var(--charcoal); border-bottom: 1px solid var(--border);
    }
    .promo-features li:last-child { border-bottom: none; }
    .promo-features li::before { content: '\2713'; color: var(--brass); font-weight: 700; }
    .promo-cta { width: 100%; }

    @media (max-width: 900px) {
      .hero-inner { grid-template-columns: 1fr; gap: 48px; }
      .hero-promo { transform: none; }
      .hero-stats { gap: 28px; flex-wrap: wrap; }
    }

    section { padding: 110px 0; }
    .section-head { text-align: center; max-width: 720px; margin: 0 auto 72px; }
    .section-head .section-body { margin-left: auto; margin-right: auto; margin-bottom: 0; }

    /* ABOUT */
    .about { background: var(--cream-soft); }
    .features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
    .feature {
      background: var(--white); padding: 44px 36px; border-radius: var(--radius-lg);
      border: 1px solid var(--border); transition: all var(--t) var(--ease); position: relative;
    }
    .feature:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--border-brass); }
    .feature-icon {
      width: 64px; height: 64px; border-radius: 18px;
      background: linear-gradient(135deg, var(--brass) 0%, var(--brass-bright) 100%);
      display: flex; align-items: center; justify-content: center;
      color: var(--white); font-size: 1.6rem; margin-bottom: 24px;
      box-shadow: 0 8px 20px var(--brass-glow);
    }
    .feature-title { font-family: var(--serif); font-size: 1.45rem; font-weight: 700; color: var(--navy); margin-bottom: 12px; }
    .feature-text { color: var(--muted); font-size: 0.95rem; line-height: 1.7; }
    @media (max-width: 900px) { .features-grid { grid-template-columns: 1fr; gap: 20px; } }

    /* SERVICES */
    .services { background: var(--cream); }
    .services-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
    .service {
      display: flex; gap: 28px; padding: 36px; background: var(--white);
      border-radius: var(--radius-lg); border: 1px solid var(--border);
      transition: all var(--t) var(--ease);
    }
    .service:hover { border-color: var(--brass); transform: translateY(-4px); box-shadow: var(--shadow); }
    .service-num { font-family: var(--serif); font-size: 2.4rem; font-weight: 700; color: var(--brass); line-height: 1; min-width: 50px; }
    .service-body h3 { font-family: var(--serif); font-size: 1.35rem; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
    .service-body p { color: var(--muted); font-size: 0.94rem; line-height: 1.7; }
    @media (max-width: 800px) { .services-grid { grid-template-columns: 1fr; } }

    /* GALLERY */
    .gallery { background: var(--cream-soft); }
    .gallery-grid { columns: 2; column-gap: 20px; }
    .gallery-item {
      position: relative; overflow: hidden; border-radius: var(--radius);
      background: var(--cream-deep); cursor: pointer; border: 1px solid var(--border);
      break-inside: avoid; -webkit-column-break-inside: avoid; margin-bottom: 20px; display: block;
    }
    .gallery-item img { width: 100%; height: auto; display: block; transition: transform 0.6s var(--ease); }
    .gallery-item:hover img { transform: scale(1.03); }
    .gallery-overlay {
      position: absolute; inset: 0;
      background: linear-gradient(to top, rgba(15, 26, 48, 0.85) 0%, transparent 60%);
      display: flex; align-items: flex-end; padding: 24px; color: var(--cream);
      opacity: 0; transition: opacity var(--t) var(--ease);
    }
    .gallery-item:hover .gallery-overlay { opacity: 1; }
    .gallery-overlay span { font-family: var(--serif); font-size: 1.15rem; font-weight: 600; }
    @media (max-width: 1100px) { .gallery-grid { columns: 2; } }
    @media (max-width: 600px) { .gallery-grid { columns: 1; } }

    /* PRICING */
    .pricing { background: var(--navy); color: var(--cream); }
    .pricing .section-title { color: var(--cream); }
    .pricing .section-body { color: var(--muted-light); }
    .pricing-grid { display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 24px; }
    .price-card {
      background: var(--navy-light); border: 1px solid rgba(184, 147, 90, 0.2);
      border-radius: var(--radius-lg); padding: 44px 36px; transition: all var(--t) var(--ease);
    }
    .price-card:hover { transform: translateY(-6px); border-color: var(--brass); }
    .price-card.featured {
      background: linear-gradient(160deg, var(--brass) 0%, var(--brass-dark) 100%);
      border-color: var(--brass-bright); box-shadow: 0 20px 60px rgba(184, 147, 90, 0.25);
    }
    .price-card.featured .price-desc, .price-card.featured .price-features li { color: var(--white); }
    .price-tier {
      font-family: var(--sans); font-size: 0.78rem; font-weight: 700;
      letter-spacing: 0.2em; text-transform: uppercase; color: var(--brass-bright); margin-bottom: 16px;
    }
    .price-name { font-family: var(--serif); font-size: 1.7rem; font-weight: 700; color: var(--cream); margin-bottom: 10px; }
    .price-desc { color: var(--muted-light); font-size: 0.92rem; margin-bottom: 28px; line-height: 1.6; }
    .price-figure {
      display: flex; align-items: baseline; gap: 4px; margin-bottom: 28px;
      padding-bottom: 28px; border-bottom: 1px solid rgba(245, 240, 232, 0.2);
    }
    .price-figure .dollar { font-family: var(--serif); font-size: 1.4rem; color: var(--brass-bright); font-weight: 600; }
    .price-card.featured .price-figure .dollar { color: var(--white); }
    .price-figure .amount {
      font-family: var(--serif); font-size: 3rem; font-weight: 800;
      color: var(--cream); line-height: 1; letter-spacing: -0.02em;
    }
    .price-figure .amount.small { font-size: 1.8rem; }
    .price-features { list-style: none; margin-bottom: 32px; }
    .price-features li {
      display: flex; align-items: flex-start; gap: 10px; padding: 8px 0;
      font-size: 0.92rem; color: var(--muted-light); line-height: 1.5;
    }
    .price-features li::before { content: '\2713'; color: var(--brass-bright); font-weight: 700; flex-shrink: 0; }
    .price-card.featured .price-features li::before { color: var(--white); }
    .price-card .btn { width: 100%; }
    @media (max-width: 900px) { .pricing-grid { grid-template-columns: 1fr; } }

    /* QUOTE */
    .quote { background: var(--cream); }
    .quote-wrap { display: grid; grid-template-columns: 1fr 1.2fr; gap: 64px; align-items: start; }
    .quote-info .section-title { text-align: left; }
    .quote-info .section-body { margin: 0 0 32px; }
    .quote-info ul { list-style: none; }
    .quote-info ul li {
      display: flex; align-items: center; gap: 14px; padding: 14px 0;
      border-bottom: 1px solid var(--border); color: var(--charcoal); font-size: 0.98rem;
    }
    .quote-info ul li:last-child { border: none; }
    .quote-info ul li::before { content: ''; width: 10px; height: 10px; background: var(--brass); border-radius: 50%; flex-shrink: 0; }
    .quote-form {
      background: var(--white); padding: 48px; border-radius: var(--radius-lg);
      box-shadow: var(--shadow); border: 1px solid var(--border);
    }
    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 18px; }
    .form-group { margin-bottom: 18px; }
    .form-group label {
      display: block; font-size: 0.8rem; font-weight: 600; letter-spacing: 0.08em;
      text-transform: uppercase; color: var(--navy); margin-bottom: 8px;
    }
    .form-group input, .form-group select, .form-group textarea {
      width: 100%; padding: 14px 16px; background: var(--cream-soft);
      border: 1px solid var(--border); border-radius: 10px; font-family: var(--sans);
      font-size: 0.95rem; color: var(--charcoal); transition: all var(--t) var(--ease);
    }
    .form-group input:focus, .form-group select:focus, .form-group textarea:focus {
      outline: none; border-color: var(--brass); background: var(--white);
      box-shadow: 0 0 0 4px var(--brass-glow);
    }
    .form-group textarea { resize: vertical; min-height: 110px; }
    .form-msg { margin-top: 18px; padding: 14px 16px; border-radius: 10px; font-size: 0.92rem; display: none; }
    .form-msg.success { background: rgba(46, 125, 50, 0.1); color: #2E7D32; display: block; }
    .form-msg.error { background: rgba(198, 40, 40, 0.1); color: #C62828; display: block; }
    @media (max-width: 900px) {
      .quote-wrap { grid-template-columns: 1fr; gap: 48px; }
      .quote-form { padding: 32px 24px; }
      .form-row { grid-template-columns: 1fr; }
    }

    /* CONTACT */
    .contact { background: var(--navy); color: var(--cream); padding: 100px 0; position: relative; overflow: hidden; }
    .contact::before {
      content: ''; position: absolute; inset: 0;
      background: radial-gradient(ellipse at center, rgba(184, 147, 90, 0.15) 0%, transparent 60%);
    }
    .contact-inner { position: relative; z-index: 2; text-align: center; max-width: 760px; margin: 0 auto; }
    .contact .section-title { color: var(--cream); }
    .contact .section-body { color: var(--muted-light); margin: 0 auto 44px; }
    .contact-details {
      display: flex; gap: 56px; justify-content: center; flex-wrap: wrap;
      margin-bottom: 44px; padding: 32px; background: rgba(15, 26, 48, 0.5);
      border: 1px solid rgba(184, 147, 90, 0.2); border-radius: var(--radius-lg);
    }
    .contact-detail { display: flex; flex-direction: column; align-items: center; gap: 6px; }
    .contact-detail .label {
      font-size: 0.72rem; font-weight: 600; letter-spacing: 0.2em;
      text-transform: uppercase; color: var(--brass-bright);
    }
    .contact-detail .value { font-family: var(--serif); font-size: 1.5rem; font-weight: 700; color: var(--cream); }
    .contact-detail a { transition: color var(--t) var(--ease); }
    .contact-detail a:hover { color: var(--brass-bright); }

    /* FOOTER */
    .footer {
      background: var(--navy-dark); color: var(--muted-light);
      padding: 60px 0 30px; border-top: 1px solid rgba(184, 147, 90, 0.15);
    }
    .footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 48px; margin-bottom: 48px; }
    .footer-logo { font-family: var(--serif); font-size: 1.7rem; font-weight: 800; color: var(--cream); margin-bottom: 14px; }
    .footer-logo .accent { color: var(--brass-bright); font-style: italic; }
    .footer p { font-size: 0.92rem; line-height: 1.7; }
    .footer-col h4 {
      font-family: var(--sans); font-size: 0.78rem; font-weight: 700;
      letter-spacing: 0.16em; text-transform: uppercase; color: var(--brass-bright); margin-bottom: 18px;
    }
    .footer-col ul { list-style: none; }
    .footer-col ul li { padding: 5px 0; font-size: 0.92rem; }
    .footer-col ul a:hover { color: var(--brass-bright); }
    .footer-bottom {
      padding-top: 30px; border-top: 1px solid rgba(184, 147, 90, 0.15);
      text-align: center; font-size: 0.82rem; color: rgba(245, 240, 232, 0.5);
    }
    @media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
    @media (max-width: 500px) { .footer-grid { grid-template-columns: 1fr; } }

    .reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
    .reveal.in { opacity: 1; transform: translateY(0); }
    .d1 { transition-delay: 0.1s; }
    .d2 { transition-delay: 0.2s; }
    .d3 { transition-delay: 0.3s; }
    .d4 { transition-delay: 0.4s; }

    /* SOCIAL ICONS (nav + footer) */
    .nav-social { display: flex; align-items: center; gap: 14px; }
    .nav-social a { color: var(--navy); transition: color var(--t) var(--ease); display: inline-flex; }
    .nav-social a:hover { color: var(--brass); }
    .nav-social svg { width: 20px; height: 20px; }
    .footer-social { display: flex; gap: 14px; margin-top: 18px; }
    .footer-social a {
      width: 40px; height: 40px; border-radius: 50%; display: inline-flex;
      align-items: center; justify-content: center; color: var(--cream);
      border: 1px solid rgba(184, 147, 90, 0.4); transition: all var(--t) var(--ease);
    }
    .footer-social a:hover { background: var(--brass); border-color: var(--brass); transform: translateY(-2px); }
    .footer-social svg { width: 18px; height: 18px; }

    /* FINANCING */
    .financing { background: var(--cream-soft); }
    .financing-card {
      display: grid; grid-template-columns: 1fr 1fr; gap: 0;
      border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow);
      border: 1px solid var(--border-brass);
    }
    .financing-left {
      background: linear-gradient(150deg, var(--navy) 0%, var(--navy-dark) 100%);
      color: var(--cream); padding: 60px 56px;
    }
    .financing-left .eyebrow { color: var(--brass-bright); }
    .financing-left h2 {
      font-family: var(--serif); font-size: clamp(1.9rem, 3.2vw, 2.7rem);
      font-weight: 700; line-height: 1.15; margin-bottom: 18px; color: var(--cream);
    }
    .financing-left h2 .accent { color: var(--brass-bright); font-style: italic; }
    .financing-left p { color: var(--muted-light); font-size: 1.02rem; line-height: 1.7; margin-bottom: 28px; }
    .financing-left .btn { margin-top: 6px; }
    .financing-right {
      background: var(--white); padding: 60px 56px;
      display: flex; flex-direction: column; justify-content: center;
    }
    .finance-perk { display: flex; gap: 18px; padding: 18px 0; border-bottom: 1px solid var(--border); }
    .finance-perk:last-child { border-bottom: none; }
    .finance-perk-icon {
      width: 48px; height: 48px; border-radius: 12px; flex-shrink: 0;
      background: linear-gradient(135deg, var(--brass) 0%, var(--brass-bright) 100%);
      color: var(--white); display: flex; align-items: center; justify-content: center; font-size: 1.3rem;
    }
    .finance-perk h4 { font-family: var(--serif); font-size: 1.2rem; color: var(--navy); margin-bottom: 4px; }
    .finance-perk p { color: var(--muted); font-size: 0.92rem; line-height: 1.6; }
    @media (max-width: 800px) {
      .financing-card { grid-template-columns: 1fr; }
      .financing-left, .financing-right { padding: 40px 28px; }
    }

    /* VIDEO */
    .video { background: var(--cream); }
    .video-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
    .video-item {
      position: relative; border-radius: var(--radius); overflow: hidden;
      background: var(--navy); aspect-ratio: 16 / 9; border: 1px solid var(--border);
    }
    .video-item iframe { width: 100%; height: 100%; border: 0; display: block; }
    .video-placeholder {
      position: absolute; inset: 0; display: flex; flex-direction: column;
      align-items: center; justify-content: center; gap: 12px;
      background: linear-gradient(150deg, var(--navy-light) 0%, var(--navy) 100%); color: var(--muted-light);
    }
    .video-placeholder .play {
      width: 60px; height: 60px; border-radius: 50%; background: var(--brass);
      display: flex; align-items: center; justify-content: center; color: var(--white); font-size: 1.4rem;
    }
    .video-placeholder span { font-size: 0.82rem; letter-spacing: 0.08em; }
    @media (max-width: 800px) { .video-grid { grid-template-columns: 1fr; } }

    /* TESTIMONIALS */
    .reviews { background: var(--navy); color: var(--cream); }
    .reviews .section-title { color: var(--cream); }
    .reviews .section-body { color: var(--muted-light); }
    .reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
    .review-card {
      background: var(--navy-light); border: 1px solid rgba(184, 147, 90, 0.2);
      border-radius: var(--radius-lg); padding: 36px 32px; transition: all var(--t) var(--ease);
    }
    .review-card:hover { transform: translateY(-4px); border-color: var(--brass); }
    .review-stars { color: var(--brass-bright); font-size: 1.05rem; letter-spacing: 2px; margin-bottom: 16px; }
    .review-text { font-size: 0.98rem; line-height: 1.7; color: var(--cream); margin-bottom: 22px; font-style: italic; }
    .review-author { display: flex; align-items: center; gap: 12px; }
    .review-avatar {
      width: 44px; height: 44px; border-radius: 50%; flex-shrink: 0;
      background: linear-gradient(135deg, var(--brass) 0%, var(--brass-bright) 100%);
      color: var(--white); display: flex; align-items: center; justify-content: center;
      font-family: var(--serif); font-weight: 700; font-size: 1.1rem;
    }
    .review-name { font-weight: 600; font-size: 0.95rem; color: var(--cream); }
    .review-loc { font-size: 0.82rem; color: var(--muted-light); }
    @media (max-width: 800px) { .reviews-grid { grid-template-columns: 1fr; } }

    /* STICKY MOBILE CTA BAR */
    .sticky-cta {
      position: fixed; bottom: 0; left: 0; right: 0; z-index: 999;
      display: none; grid-template-columns: 1fr 1fr;
      background: var(--navy); box-shadow: 0 -6px 24px rgba(15, 26, 48, 0.35);
    }
    .sticky-cta a {
      display: flex; align-items: center; justify-content: center; gap: 8px;
      padding: 16px 12px; font-weight: 700; font-size: 0.92rem; letter-spacing: 0.04em;
    }
    .sticky-cta .sc-call { background: var(--brass); color: var(--white); }
    .sticky-cta .sc-quote { color: var(--cream); }
    @media (max-width: 768px) {
      .sticky-cta { display: grid; }
      body { padding-bottom: 56px; }
    }

    /* SERVICE AREAS */
    .areas { background: var(--cream); }
    .areas-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
    .area-card {
      background: var(--white); border: 1px solid var(--border); border-radius: var(--radius);
      padding: 26px 28px; transition: all var(--t) var(--ease);
    }
    .area-card:hover { border-color: var(--brass); transform: translateY(-3px); box-shadow: var(--shadow-sm); }
    .area-card h3 { font-family: var(--serif); font-size: 1.25rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
    .area-card p { color: var(--muted); font-size: 0.92rem; line-height: 1.65; }
    @media (max-width: 900px) { .areas-grid { grid-template-columns: repeat(2, 1fr); } }
    @media (max-width: 560px) { .areas-grid { grid-template-columns: 1fr; } }

    /* FAQ */
    .faq { background: var(--cream-soft); }
    .faq-list { max-width: 780px; margin: 0 auto; }
    .faq-item {
      background: var(--white); border: 1px solid var(--border); border-radius: var(--radius);
      margin-bottom: 14px; overflow: hidden;
    }
    .faq-item summary {
      cursor: pointer; padding: 20px 24px; font-weight: 600; color: var(--navy);
      font-size: 1.02rem; list-style: none; display: flex; justify-content: space-between;
      align-items: center; gap: 14px;
    }
    .faq-item summary::-webkit-details-marker { display: none; }
    .faq-item summary::after { content: '+'; color: var(--brass); font-size: 1.5rem; font-weight: 700; flex-shrink: 0; }
    .faq-item[open] summary::after { content: '\2212'; }
    .faq-item .faq-a { padding: 0 24px 20px; color: var(--muted); line-height: 1.7; font-size: 0.96rem; }
