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

    :root {
      --navy:       #1B2A4A;
      --navy-light: #243559;
      --stone:      #5C5C4E;
      --stone-light:#8A8A78;
      --cream:      #F7F4EE;
      --cream-dark: #EDE9E0;
      --gold:       #B8892A;
      --gold-light: #D4A83E;
      --white:      #FFFFFF;
      --text-dark:  #1A1A1A;
      --text-mid:   #444440;
      --text-muted: #6B6B60;
      --border:     rgba(0,0,0,0.10);
      --radius:     6px;
      --radius-lg:  12px;
      --shadow-sm:  0 1px 3px rgba(0,0,0,0.08);
      --shadow-md:  0 4px 16px rgba(0,0,0,0.10);
      --font-display: 'Playfair Display', Georgia, serif;
      --font-body:    'Source Sans 3', system-ui, sans-serif;
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: var(--font-body);
      font-size: 16px;
      line-height: 1.65;
      color: var(--text-dark);
      background: var(--white);
    }

    img { display: block; max-width: 100%; }
    a { color: inherit; text-decoration: none; }

    /* ── UTILITY ─────────────────────────────────── */
    .container {
      width: 100%;
      max-width: 1280px;
      margin: 0 auto;
      padding: 0 40px;
    }

    .btn {
      display: inline-block;
      padding: 14px 28px;
      font-family: var(--font-body);
      font-size: 15px;
      font-weight: 600;
      letter-spacing: 0.03em;
      border-radius: var(--radius);
      cursor: pointer;
      transition: background 0.2s, color 0.2s, transform 0.15s;
      border: 2px solid transparent;
      text-align: center;
    }
    .btn:active { transform: scale(0.98); }

    .btn-primary {
      background: var(--gold);
      color: var(--white);
      border-color: var(--gold);
    }
    .btn-primary:hover { background: var(--gold-light); border-color: var(--gold-light); }

    .btn-outline {
      background: transparent;
      color: var(--white);
      border-color: rgba(255,255,255,0.6);
    }
    .btn-outline:hover { background: rgba(255,255,255,0.12); border-color: var(--white); }

    .section-label {
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 10px;
    }

    .section-title {
      font-family: var(--font-display);
      font-size: clamp(30px, 4vw, 44px);
      font-weight: 700;
      color: var(--navy);
      line-height: 1.2;
      margin-bottom: 16px;
    }

    .section-body {
      font-size: 17px;
      color: var(--text-mid);
      line-height: 1.7;
      max-width: 640px;
    }

    /* ── TOPBAR ──────────────────────────────────── */
    .topbar {
      background: var(--navy);
      color: rgba(255,255,255,0.75);
      font-size: 14px;
      padding: 10px 0;
      text-align: center;
    }
    .topbar a { color: rgba(255,255,255,0.85); }
    .topbar a:hover { color: var(--white); }
    .topbar-inner {
      display: flex;
      justify-content: center;
      gap: 24px;
      flex-wrap: wrap;
      align-items: center;
    }
    .topbar-inner span { display: flex; align-items: center; gap: 6px; }

    /* ── NAV ─────────────────────────────────────── */
    nav {
      position: sticky;
      top: 0;
      z-index: 100;
      background: var(--white);
      border-bottom: 1px solid var(--border);
      box-shadow: var(--shadow-sm);
    }
    .nav-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 68px;
    }
    .nav-logo {
      display: flex;
      flex-direction: column;
      line-height: 1.1;
    }
    .nav-logo-name {
      font-family: var(--font-display);
      font-size: 20px;
      font-weight: 700;
      color: var(--navy);
      letter-spacing: -0.01em;
    }
    .nav-logo-sub {
      font-size: 12px;
      letter-spacing: 0.10em;
      text-transform: uppercase;
      color: var(--stone-light);
      font-weight: 500;
    }
    .nav-links {
      display: flex;
      align-items: center;
      gap: 28px;
      list-style: none;
    }
    .nav-links a {
      font-size: 15px;
      font-weight: 500;
      color: var(--text-mid);
      transition: color 0.15s;
      letter-spacing: 0.01em;
    }
    .nav-links a:hover { color: var(--navy); }
    .nav-cta { margin-left: 8px; }

    .hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      background: none;
      border: none;
      cursor: pointer;
      padding: 4px;
    }
    .hamburger span {
      display: block;
      width: 24px;
      height: 2px;
      background: var(--navy);
      border-radius: 2px;
      transition: all 0.25s;
    }

    .mobile-menu {
      display: none;
      flex-direction: column;
      background: var(--white);
      border-top: 1px solid var(--border);
      padding: 16px 24px 20px;
      gap: 2px;
    }
    .mobile-menu a {
      font-size: 15px;
      font-weight: 500;
      color: var(--text-mid);
      padding: 10px 0;
      border-bottom: 1px solid var(--cream-dark);
    }
    .mobile-menu a:last-child { border-bottom: none; }
    .mobile-menu .btn { margin-top: 12px; width: 100%; }
    .mobile-menu.open { display: flex; }

    /* ── HERO ────────────────────────────────────── */
    .hero {
      background: var(--navy);
      overflow: hidden;
    }

    .hero-inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      min-height: 560px;
      align-items: stretch;
    }

    /* Left column — text pushed toward the center split,
       max-width caps line length so it doesn't sprawl */
    .hero-left {
      display: flex;
      align-items: center;
      justify-content: flex-end;
    }

    .hero-content {
      width: 100%;
      max-width: 560px;
      padding: 72px 48px 72px 24px;
    }

    .hero-eyebrow {
      font-size: 13px;
      font-weight: 600;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: var(--gold-light);
      margin-bottom: 20px;
    }

    .hero-title {
      font-family: var(--font-display);
      font-size: clamp(40px, 5vw, 72px);
      font-weight: 700;
      color: var(--white);
      line-height: 1.08;
      margin-bottom: 24px;
    }

    .hero-title em {
      font-style: normal;
      color: var(--gold-light);
    }

    .hero-sub {
      font-size: clamp(16px, 1.8vw, 20px);
      color: rgba(255,255,255,0.78);
      line-height: 1.65;
      max-width: 520px;
      margin-bottom: 36px;
    }

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

    /* RIGHT SIDE — photo placeholder */
    .hero-right {
      position: relative;
      overflow: hidden;
      background: #1e3060;
      /* swap for a real photo by replacing background with an <img> tag */
    }

    .hero-image-placeholder {
      position: absolute;
      inset: 0;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 12px;
      background: linear-gradient(135deg, #1e3060 0%, #2a4070 60%, #1a2a50 100%);
      background-image:
        linear-gradient(135deg, #1e3060 0%, #2a4070 60%, #1a2a50 100%),
        repeating-linear-gradient(
          45deg,
          rgba(255,255,255,0.012) 0px,
          rgba(255,255,255,0.012) 1px,
          transparent 1px,
          transparent 50px
        );
    }

    .hero-image-placeholder svg {
      width: 48px;
      height: 48px;
      stroke: rgba(255,255,255,0.18);
      stroke-width: 1.5;
      fill: none;
    }

    .hero-image-placeholder p {
      font-size: 13px;
      color: rgba(255,255,255,0.25);
      text-align: center;
      line-height: 1.5;
    }

    /* TO ADD YOUR PHOTO — replace .hero-right contents with:
       <img src="images/hero-driveway.jpg" alt="Clean driveway after pressure washing"
            style="width:100%;height:100%;object-fit:cover;display:block;" />
    */

    /* ── TRUST BAR ───────────────────────────────── */
    .trust-bar {
      background: var(--cream);
      border-bottom: 1px solid var(--cream-dark);
      padding: 16px 0;
    }
    .trust-items {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 8px 28px;
    }
    .trust-item {
      display: flex;
      align-items: center;
      gap: 7px;
      font-size: 14px;
      font-weight: 500;
      color: var(--stone);
    }
    .trust-check {
      width: 16px;
      height: 16px;
      background: var(--navy);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }
    .trust-check svg {
      width: 9px;
      height: 9px;
      stroke: var(--white);
      stroke-width: 2.5;
      fill: none;
    }

    /* ── INTRO ───────────────────────────────────── */
    .intro {
      padding: 88px 0;
      background: var(--white);
    }
    .intro-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 64px;
      align-items: center;
    }
    .intro-image {
      background: var(--cream-dark);
      border-radius: var(--radius-lg);
      aspect-ratio: 4/3;
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .intro-image-placeholder {
      color: var(--stone-light);
      font-size: 13px;
      text-align: center;
      padding: 24px;
    }
    .intro-text p {
      color: var(--text-mid);
      line-height: 1.75;
      margin-bottom: 16px;
    }
    .intro-text p:last-child { margin-bottom: 0; }
    .intro-quote {
      margin-top: 28px;
      padding: 20px 24px;
      background: var(--cream);
      border-left: 3px solid var(--gold);
      border-radius: 0 var(--radius) var(--radius) 0;
    }
    .intro-quote p {
      font-family: var(--font-display);
      font-size: 15px;
      font-style: italic;
      color: var(--stone);
      margin-bottom: 6px !important;
    }
    .intro-quote cite {
      font-size: 12px;
      font-style: normal;
      letter-spacing: 0.08em;
      color: var(--gold);
      font-weight: 600;
    }

    /* ── SERVICES ────────────────────────────────── */
    .services {
      padding: 88px 0;
      background: var(--cream);
    }
    .services-header {
      text-align: center;
      margin-bottom: 52px;
    }
    .services-header .section-body {
      margin: 0 auto;
      text-align: center;
    }
    .services-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
    }
    .service-card {
      background: var(--white);
      border-radius: var(--radius-lg);
      padding: 36px 28px;
      border: 1px solid var(--border);
      transition: box-shadow 0.2s, transform 0.2s;
    }
    .service-card:hover {
      box-shadow: var(--shadow-md);
      transform: translateY(-3px);
    }
    .service-icon {
      width: 52px;
      height: 52px;
      background: var(--navy);
      border-radius: var(--radius);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 20px;
    }
    .service-icon svg {
      width: 26px;
      height: 26px;
      stroke: var(--gold-light);
      stroke-width: 1.5;
      fill: none;
    }
    .service-name {
      font-family: var(--font-display);
      font-size: 21px;
      font-weight: 700;
      color: var(--navy);
      margin-bottom: 10px;
    }
    .service-desc {
      font-size: 15px;
      color: var(--text-muted);
      line-height: 1.7;
    }

    /* ── WHY US ──────────────────────────────────── */
    .why {
      padding: 88px 0;
      background: var(--white);
    }
    .why-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 64px;
      align-items: start;
    }
    .why-points {
      display: flex;
      flex-direction: column;
      gap: 24px;
      margin-top: 32px;
    }
    .why-point {
      display: flex;
      gap: 16px;
      align-items: flex-start;
    }
    .why-num {
      flex-shrink: 0;
      width: 32px;
      height: 32px;
      background: var(--navy);
      color: var(--gold-light);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 13px;
      font-weight: 700;
      font-family: var(--font-display);
      margin-top: 2px;
    }
    .why-point-title {
      font-weight: 600;
      color: var(--navy);
      margin-bottom: 4px;
      font-size: 16px;
    }
    .why-point-body {
      font-size: 15px;
      color: var(--text-muted);
      line-height: 1.65;
    }
    .why-statement {
      background: var(--navy);
      border-radius: var(--radius-lg);
      padding: 40px 36px;
      color: var(--white);
    }
    .why-statement-title {
      font-family: var(--font-display);
      font-size: 24px;
      font-weight: 700;
      color: var(--white);
      margin-bottom: 16px;
      line-height: 1.3;
    }
    .why-statement p {
      font-size: 15px;
      color: rgba(255,255,255,0.72);
      line-height: 1.7;
      margin-bottom: 14px;
    }
    .why-statement p:last-child { margin-bottom: 0; }
    .why-statement-verse {
      margin-top: 24px;
      padding-top: 20px;
      border-top: 1px solid rgba(255,255,255,0.12);
    }
    .why-statement-verse p {
      font-family: var(--font-display);
      font-style: italic;
      font-size: 14px;
      color: rgba(255,255,255,0.50);
      margin-bottom: 6px;
    }
    .why-statement-verse cite {
      font-size: 11px;
      letter-spacing: 0.09em;
      font-style: normal;
      color: var(--gold-light);
      font-weight: 600;
    }

    /* ── SERVICE AREA ────────────────────────────── */
    .area {
      padding: 72px 0;
      background: var(--cream);
      text-align: center;
    }
    .area-map-wrap {
      margin-top: 36px;
      border-radius: var(--radius-lg);
      overflow: hidden;
      box-shadow: var(--shadow-md);
      border: 1px solid var(--border);
      line-height: 0; /* removes gap below iframe */
    }
    .area-map-wrap iframe {
      width: 100%;
      height: 440px;
      border: none;
      display: block;
    }
    .area-towns {
      margin-top: 24px;
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      justify-content: center;
    }
    .area-town-pill {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 20px;
      padding: 5px 14px;
      font-size: 13px;
      color: var(--stone);
      font-weight: 500;
    }

    /* ── CTA BANNER ──────────────────────────────── */
    .cta-banner {
      background: var(--navy);
      padding: 72px 0;
    }
    .cta-inner {
      text-align: center;
    }
    .cta-inner .section-title { color: var(--white); margin-bottom: 12px; }
    .cta-inner p {
      color: rgba(255,255,255,0.68);
      font-size: 16px;
      margin-bottom: 32px;
      max-width: 520px;
      margin-left: auto;
      margin-right: auto;
    }
    .cta-buttons {
      display: flex;
      gap: 14px;
      justify-content: center;
      flex-wrap: wrap;
    }
    .btn-white {
      background: var(--white);
      color: var(--navy);
      border-color: var(--white);
      font-weight: 600;
    }
    .btn-white:hover { background: var(--cream); border-color: var(--cream); }
    .btn-navy { background: var(--navy); color: var(--white); border-color: var(--navy); }
    .btn-navy:hover { background: var(--navy-light); border-color: var(--navy-light); }

    /* ── FOOTER ──────────────────────────────────── */
    footer {
      background: #111825;
      color: rgba(255,255,255,0.55);
      padding: 48px 0 28px;
      font-size: 14px;
    }
    .footer-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr;
      gap: 40px;
      padding-bottom: 36px;
      border-bottom: 1px solid rgba(255,255,255,0.08);
    }
    .footer-brand-name {
      font-family: var(--font-display);
      font-size: 17px;
      font-weight: 700;
      color: var(--white);
      margin-bottom: 8px;
    }
    .footer-brand-tagline {
      font-size: 12px;
      letter-spacing: 0.07em;
      color: var(--gold);
      font-weight: 500;
      margin-bottom: 14px;
    }
    .footer-brand p {
      line-height: 1.7;
      max-width: 280px;
    }
    .footer-col h4 {
      font-size: 11px;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.35);
      font-weight: 600;
      margin-bottom: 14px;
    }
    .footer-col a {
      display: block;
      color: rgba(255,255,255,0.55);
      margin-bottom: 9px;
      font-size: 13px;
      transition: color 0.15s;
    }
    .footer-col a:hover { color: var(--white); }
    .footer-verse {
      text-align: center;
      padding-top: 24px;
      font-family: var(--font-display);
      font-style: italic;
      color: rgba(255,255,255,0.28);
      font-size: 13px;
    }
    .footer-verse cite {
      display: block;
      font-style: normal;
      font-size: 11px;
      letter-spacing: 0.09em;
      color: var(--gold);
      margin-top: 4px;
    }
    .footer-bottom {
      margin-top: 20px;
      text-align: center;
      font-size: 12px;
      color: rgba(255,255,255,0.22);
    }

    /* ── RESPONSIVE ──────────────────────────────── */

    /* ── Large desktop (1200px+) ── */
    @media (min-width: 1200px) {
      .hero-content { padding: 88px 64px 88px 32px; max-width: 600px; }
    }

    /* ── Small desktop / tablet landscape (1024px and below) ── */
    @media (max-width: 1024px) {
      .hero-inner { grid-template-columns: 55% 45%; }
      .hero-content { padding: 64px 40px 64px 20px; }

      /* Reduce heavy section padding slightly */
      .intro, .services, .why { padding: 72px 0; }
      .area, .cta-banner { padding: 60px 0; }

      /* Why grid gap tightens */
      .why-grid { gap: 48px; }
    }

    /* ── Tablet portrait (900px and below) ── */
    @media (max-width: 900px) {
      /* Hero stacks */
      .hero-inner {
        grid-template-columns: 1fr;
        min-height: auto;
      }
      .hero-left {
        order: 1;
        justify-content: flex-start;
      }
      .hero-content {
        padding: 56px 24px 40px;
        max-width: 100%;
      }
      .hero-right {
        order: 2;
        height: 260px;
        min-height: unset;
      }

      /* Section padding steps down */
      .intro, .services, .why { padding: 60px 0; }
      .area, .cta-banner { padding: 52px 0; }
      footer { padding: 40px 0 24px; }

      /* Grids collapse to single column */
      .intro-grid { grid-template-columns: 1fr; gap: 32px; }
      .why-grid   { grid-template-columns: 1fr; gap: 32px; }

      /* Services go 2-col */
      .services-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
      .service-card  { padding: 28px 22px; }

      /* Footer 2-col */
      .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
      .footer-brand p { max-width: 100%; }

      /* Why statement flows naturally stacked */
      .why-statement { padding: 32px 28px; }
    }

    /* ── Mobile (640px and below) ── */
    @media (max-width: 640px) {
      /* Nav collapses to hamburger */
      .nav-links, .nav-cta { display: none; }
      .hamburger { display: flex; }

      /* Topbar compresses */
      .topbar-inner { gap: 10px; font-size: 13px; }

      /* Hero */
      .hero-right { height: 200px; }
      .hero-title { font-size: clamp(30px, 8vw, 42px); }
      .hero-buttons { flex-direction: column; }
      .hero-buttons .btn { width: 100%; text-align: center; }

      /* Trust bar — stack to 2 per row */
      .trust-items { gap: 8px 16px; }
      .trust-item  { font-size: 12px; }

      /* Section padding tight on mobile */
      .intro, .services, .why { padding: 48px 0; }
      .area, .cta-banner { padding: 44px 0; }
      footer { padding: 36px 0 20px; }

      /* Intro image hidden (no photo yet, saves space) */
      .intro-image { display: none; }

      /* Services single column */
      .services-grid { grid-template-columns: 1fr; gap: 14px; }
      .service-card  { padding: 24px 20px; }
      .services-header { margin-bottom: 36px; }

      /* Why section */
      .why-points { gap: 20px; margin-top: 24px; }
      .why-statement { padding: 28px 22px; }
      .why-statement-title { font-size: 20px; }

      /* Area map shorter on mobile */
      .area-map-wrap iframe { height: 280px; }
      .area-town-pill { font-size: 12px; padding: 4px 12px; }

      /* CTA */
      .cta-buttons { flex-direction: column; align-items: center; }
      .cta-buttons .btn { width: 100%; max-width: 320px; text-align: center; }

      /* Footer single column */
      .footer-grid { grid-template-columns: 1fr; gap: 28px; }
      .footer-brand p { max-width: 100%; }
      .footer-grid .footer-col:last-child { padding-bottom: 0; }
    }

    /* ── Small mobile (400px and below) ── */
    @media (max-width: 400px) {
      .container { padding: 0 16px; }
      .hero-content { padding: 44px 16px 32px; }
      .hero-title { font-size: 30px; }
      .btn { padding: 12px 20px; font-size: 14px; }
      .topbar-inner span:last-child { display: none; }
    }

    /* ════════════════════════════════════════════════
       SHARED — interior page components
       ════════════════════════════════════════════════ */

    /* Active nav state */
    .nav-links a.active { color: var(--navy); font-weight: 600; border-bottom: 2px solid var(--gold); padding-bottom: 3px; }

    /* ── PAGE HEADER (interior pages) ── */
    .page-header {
      background: var(--navy);
      padding: 76px 0 64px;
      position: relative;
      overflow: hidden;
    }
    .page-header::after {
      content: '';
      position: absolute;
      bottom: 0; left: 0; right: 0;
      height: 3px;
      background: linear-gradient(90deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold) 100%);
    }
    .page-header-eyebrow { font-size: 11px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold-light); margin-bottom: 14px; }
    .page-header h1 { font-family: var(--font-display); font-size: clamp(30px, 4.5vw, 46px); font-weight: 700; color: var(--white); line-height: 1.14; margin-bottom: 18px; max-width: 680px; }
    .page-header p { font-size: 17px; color: rgba(255,255,255,0.72); line-height: 1.7; max-width: 600px; }

    /* ── BREADCRUMB ── */
    .breadcrumb { background: var(--cream); border-bottom: 1px solid var(--cream-dark); padding: 11px 0; }
    .breadcrumb-inner { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--text-muted); }
    .breadcrumb-inner a { color: var(--navy); font-weight: 500; }
    .breadcrumb-inner a:hover { color: var(--gold); }
    .breadcrumb-sep { color: var(--stone-light); }

    /* ── "ABOUT ME" LINK under What You Can Expect ── */
    .why-cta { margin-top: 28px; }
    .why-cta a {
      display: inline-flex; align-items: center; gap: 8px;
      font-size: 14px; font-weight: 600; color: var(--navy);
      letter-spacing: 0.02em; transition: gap 0.2s, color 0.2s;
    }
    .why-cta a:hover { gap: 12px; color: var(--gold); }
    .why-cta svg { width: 16px; height: 16px; stroke: currentColor; stroke-width: 2; fill: none; }

    /* ── SERVICE BLOCKS (services page) ── */
    .services-list { padding: 80px 0; }
    .service-block {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: start;
      padding: 60px 0;
      border-bottom: 1px solid var(--cream-dark);
    }
    .service-block:first-child { padding-top: 0; }
    .service-block:last-child { border-bottom: none; }
    .service-block.reversed { direction: rtl; }
    .service-block.reversed > * { direction: ltr; }

    .service-photo {
      border-radius: var(--radius-lg);
      overflow: hidden;
      background: var(--cream-dark);
      aspect-ratio: 4/3;
      position: relative;
      position: sticky;
      top: 90px;
    }
    .service-photo img { width: 100%; height: 100%; object-fit: cover; }
    .service-photo img.portrait { object-fit: contain; background: var(--cream-dark); }
    .service-photo-placeholder {
      position: absolute; inset: 0;
      display: flex; flex-direction: column;
      align-items: center; justify-content: center;
      gap: 12px; padding: 24px; text-align: center;
    }
    .service-photo-placeholder svg { width: 42px; height: 42px; stroke: var(--stone-light); stroke-width: 1.4; fill: none; }
    .service-photo-placeholder p { font-size: 13px; color: var(--stone-light); line-height: 1.5; }
    .photo-badge {
      position: absolute; top: 16px; left: 16px;
      background: var(--navy); color: var(--gold-light);
      font-size: 11px; font-weight: 600; letter-spacing: 0.10em;
      text-transform: uppercase; padding: 6px 13px;
      border-radius: 999px;
    }

    .service-content { display: flex; flex-direction: column; }
    .service-number { font-size: 11px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; }
    .service-title { font-family: var(--font-display); font-size: clamp(23px, 3vw, 31px); font-weight: 700; color: var(--navy); line-height: 1.18; margin-bottom: 16px; }
    .service-desc { font-size: 15px; color: var(--text-mid); line-height: 1.75; margin-bottom: 24px; }
    .service-desc p + p { margin-top: 12px; }

    .service-includes { margin-bottom: 24px; }
    .service-includes-title { font-size: 12px; font-weight: 600; letter-spacing: 0.10em; text-transform: uppercase; color: var(--stone); margin-bottom: 12px; }
    .service-includes ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
    .service-includes li { display: flex; align-items: flex-start; gap: 11px; font-size: 14.5px; color: var(--text-mid); line-height: 1.5; }
    .service-includes li::before {
      content: '';
      flex-shrink: 0;
      width: 19px; height: 19px;
      margin-top: 1px;
      background-color: var(--navy);
      border-radius: 50%;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 12 12' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='2,6 5,9 10,3' stroke='%23D4A83E' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-position: center;
      background-size: 11px;
    }

    .service-pricing {
      background: var(--cream);
      border-left: 3px solid var(--gold);
      border-radius: 0 var(--radius) var(--radius) 0;
      padding: 16px 20px;
      margin-bottom: 24px;
    }
    .service-pricing-amount { font-family: var(--font-display); font-size: 20px; font-weight: 700; color: var(--navy); }
    .service-pricing-note { font-size: 13px; color: var(--text-muted); margin-top: 3px; line-height: 1.55; }

    .service-cta { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
    .service-cta-call { font-size: 14px; font-weight: 600; color: var(--navy); }
    .service-cta-call:hover { color: var(--gold); }

    /* ── BUNDLE ── */
    .bundle {
      background: var(--navy);
      border-radius: var(--radius-lg);
      padding: 48px;
      margin: 0 0 0;
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 36px;
      align-items: center;
    }
    .bundle-label { font-size: 11px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold-light); margin-bottom: 10px; }
    .bundle-title { font-family: var(--font-display); font-size: clamp(22px, 3vw, 30px); font-weight: 700; color: var(--white); margin-bottom: 12px; line-height: 1.2; }
    .bundle-desc { font-size: 15px; color: rgba(255,255,255,0.70); line-height: 1.7; max-width: 580px; }
    .bundle-actions { display: flex; flex-direction: column; gap: 10px; align-items: stretch; white-space: nowrap; }
    .bundle-section { padding: 0 0 80px; }

    /* ── ALSO AVAILABLE ── */
    .also-available { background: var(--cream); padding: 76px 0; }
    .also-header { text-align: center; margin-bottom: 44px; }
    .also-header .section-body { margin: 0 auto; text-align: center; }
    .also-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
    .also-card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      padding: 26px 24px;
      transition: box-shadow 0.2s, transform 0.2s;
    }
    .also-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
    .also-icon { width: 42px; height: 42px; background: var(--cream-dark); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; margin-bottom: 15px; }
    .also-icon svg { width: 21px; height: 21px; stroke: var(--navy); stroke-width: 1.5; fill: none; }
    .also-name { font-weight: 600; color: var(--navy); font-size: 15px; margin-bottom: 6px; }
    .also-desc { font-size: 13px; color: var(--text-muted); line-height: 1.6; }

    /* ── ABOUT PAGE ── */
    .about-intro { padding: 80px 0; }
    .about-intro-grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: 64px; align-items: start; }
    .about-lead { font-family: var(--font-display); font-size: clamp(22px, 3vw, 28px); font-weight: 700; color: var(--navy); line-height: 1.35; margin-bottom: 24px; }
    .about-body p { color: var(--text-mid); line-height: 1.8; margin-bottom: 16px; }
    .about-body p:last-child { margin-bottom: 0; }
    .about-verse {
      background: var(--cream); border-left: 3px solid var(--gold);
      border-radius: 0 var(--radius) var(--radius) 0;
      padding: 20px 24px; margin: 28px 0;
    }
    .about-verse p { font-family: var(--font-display); font-style: italic; font-size: 16px; color: var(--stone); margin-bottom: 6px !important; line-height: 1.6; }
    .about-verse cite { font-size: 12px; font-style: normal; letter-spacing: 0.08em; color: var(--gold); font-weight: 600; }
    .about-photo {
      background: var(--cream-dark); border-radius: var(--radius-lg);
      aspect-ratio: 3/4; overflow: hidden; position: relative;
      position: sticky; top: 90px;
    }
    .about-photo img { width: 100%; height: 100%; object-fit: cover; }
    .about-photo-placeholder {
      position: absolute; inset: 0; display: flex; flex-direction: column;
      align-items: center; justify-content: center; gap: 12px; padding: 28px; text-align: center;
    }
    .about-photo-placeholder svg { width: 46px; height: 46px; stroke: var(--stone-light); stroke-width: 1.3; fill: none; }
    .about-photo-placeholder p { font-size: 13px; color: var(--stone-light); line-height: 1.55; }

    .about-story { background: var(--cream); padding: 76px 0; }
    .about-story-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 56px; align-items: center; }
    .about-expect { padding: 76px 0; }
    .expect-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 36px; }
    .expect-card { display: flex; gap: 14px; align-items: flex-start; background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 22px 24px; }
    .expect-check { flex-shrink: 0; width: 28px; height: 28px; background: var(--navy); border-radius: 50%; display: flex; align-items: center; justify-content: center; }
    .expect-check svg { width: 14px; height: 14px; stroke: var(--gold-light); stroke-width: 2.5; fill: none; }
    .expect-card p { font-size: 14.5px; color: var(--text-mid); line-height: 1.55; }
    .expect-card strong { color: var(--navy); font-weight: 600; }

    .about-neighbors { background: var(--navy); padding: 76px 0; }
    .neighbors-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
    .neighbors-col h3 { font-family: var(--font-display); font-size: 22px; font-weight: 700; color: var(--white); margin-bottom: 14px; }
    .neighbors-col p { color: rgba(255,255,255,0.72); line-height: 1.75; font-size: 15px; }
    .neighbors-verse { text-align: center; margin-top: 48px; padding-top: 32px; border-top: 1px solid rgba(255,255,255,0.12); }
    .neighbors-verse p { font-family: var(--font-display); font-style: italic; font-size: 16px; color: rgba(255,255,255,0.62); line-height: 1.6; max-width: 640px; margin: 0 auto 8px; }
    .neighbors-verse cite { font-size: 12px; font-style: normal; letter-spacing: 0.09em; color: var(--gold-light); font-weight: 600; }

    /* ── GALLERY ── */
    .gallery { padding: 80px 0; }
    .gallery-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
    .gallery-item { border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; background: var(--white); transition: box-shadow 0.2s, transform 0.2s; }
    .gallery-item:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
    .gallery-pair { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; background: var(--cream-dark); }
    .gallery-half { aspect-ratio: 1/1; background: var(--cream-dark); position: relative; overflow: hidden; }
    .gallery-half img { width: 100%; height: 100%; object-fit: cover; }
    .gallery-half-tag { position: absolute; top: 12px; left: 12px; font-size: 10px; font-weight: 700; letter-spacing: 0.10em; text-transform: uppercase; padding: 4px 10px; border-radius: 999px; }
    .gallery-half-tag.before { background: rgba(27,42,74,0.85); color: var(--white); }
    .gallery-half-tag.after { background: var(--gold); color: var(--white); }
    .gallery-half-placeholder { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; color: var(--stone-light); font-size: 12px; }
    .gallery-caption { padding: 18px 22px; }
    .gallery-caption-title { font-weight: 600; color: var(--navy); font-size: 15px; margin-bottom: 3px; }
    .gallery-caption-note { font-size: 13px; color: var(--text-muted); }
    .gallery-empty-note { text-align: center; max-width: 560px; margin: 0 auto 44px; font-size: 15px; color: var(--text-muted); line-height: 1.7; background: var(--cream); border-radius: var(--radius-lg); padding: 24px 28px; }

    /* ── TESTIMONIALS ── */
    .reviews { padding: 80px 0; }
    .reviews-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
    .review-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 30px 30px 28px; display: flex; flex-direction: column; }
    .review-stars { display: flex; gap: 3px; margin-bottom: 16px; }
    .review-stars svg { width: 18px; height: 18px; fill: var(--gold); }
    .review-text { font-size: 15.5px; color: var(--text-mid); line-height: 1.7; font-style: italic; margin-bottom: 20px; flex-grow: 1; }
    .review-author { display: flex; align-items: center; gap: 12px; }
    .review-avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--navy); color: var(--gold-light); display: flex; align-items: center; justify-content: center; font-weight: 700; font-family: var(--font-display); font-size: 16px; flex-shrink: 0; }
    .review-author-name { font-weight: 600; color: var(--navy); font-size: 14px; }
    .review-author-meta { font-size: 12.5px; color: var(--text-muted); }
    .reviews-placeholder-banner { text-align: center; max-width: 600px; margin: 0 auto 44px; font-size: 14px; color: var(--text-muted); line-height: 1.7; background: var(--cream); border: 1px dashed var(--stone-light); border-radius: var(--radius-lg); padding: 20px 26px; }
    .google-reviews { background: var(--cream); padding: 64px 0; text-align: center; }
    .google-reviews .section-body { margin: 0 auto 28px; text-align: center; }

    /* ── CONTACT ── */
    .contact-section { padding: 80px 0; }
    .contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 56px; align-items: start; }
    .contact-info-card { background: var(--cream); border-radius: var(--radius-lg); padding: 36px 34px; }
    .contact-info-block { padding: 18px 0; border-bottom: 1px solid var(--cream-dark); }
    .contact-info-block:first-child { padding-top: 0; }
    .contact-info-block:last-child { border-bottom: none; padding-bottom: 0; }
    .contact-info-label { display: flex; align-items: center; gap: 9px; font-size: 11px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; }
    .contact-info-label svg { width: 15px; height: 15px; stroke: var(--gold); stroke-width: 2; fill: none; }
    .contact-info-value { font-size: 16px; color: var(--text-dark); font-weight: 500; line-height: 1.5; }
    .contact-info-value a { color: var(--navy); font-weight: 600; }
    .contact-info-value a:hover { color: var(--gold); }
    .contact-info-sub { font-size: 13px; color: var(--text-muted); margin-top: 5px; line-height: 1.55; }
    .contact-hours-row { display: flex; justify-content: space-between; font-size: 14.5px; color: var(--text-mid); padding: 3px 0; }
    .contact-hours-row span:last-child { color: var(--navy); font-weight: 500; }
    .contact-hours-row.closed span:last-child { color: var(--text-muted); font-weight: 400; }

    .form-panel { }
    .form-panel-title { font-family: var(--font-display); font-size: 24px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
    .form-panel-sub { font-size: 15px; color: var(--text-mid); line-height: 1.65; margin-bottom: 24px; }
    .form-embed-frame { width: 100%; border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; background: var(--white); }
    .form-embed-frame iframe { width: 100%; min-height: 1100px; border: 0; display: block; }
    .form-placeholder {
      border: 2px dashed var(--stone-light); border-radius: var(--radius-lg);
      padding: 48px 32px; text-align: center; background: var(--cream);
    }
    .form-placeholder svg { width: 44px; height: 44px; stroke: var(--stone-light); stroke-width: 1.4; fill: none; margin-bottom: 16px; }
    .form-placeholder h4 { font-size: 16px; color: var(--navy); font-weight: 600; margin-bottom: 10px; }
    .form-placeholder p { font-size: 14px; color: var(--text-muted); line-height: 1.65; max-width: 440px; margin: 0 auto 8px; }
    .form-placeholder code { background: var(--cream-dark); padding: 2px 7px; border-radius: 4px; font-size: 13px; color: var(--navy); font-family: ui-monospace, monospace; }

    /* ── PAYMENT ── */
    .payment { background: var(--cream); padding: 76px 0; }
    .payment-header { text-align: center; margin-bottom: 44px; }
    .payment-header .section-body { margin: 0 auto; text-align: center; }
    .payment-methods { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 28px; }
    .payment-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 28px 24px; text-align: center; }
    .payment-icon { width: 48px; height: 48px; background: var(--navy); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; }
    .payment-icon svg { width: 24px; height: 24px; stroke: var(--gold-light); stroke-width: 1.6; fill: none; }
    .payment-name { font-family: var(--font-display); font-size: 18px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
    .payment-desc { font-size: 13.5px; color: var(--text-muted); line-height: 1.6; }
    .payment-notes { max-width: 720px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; }
    .payment-note { display: flex; gap: 14px; align-items: flex-start; background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 18px 22px; }
    .payment-note svg { flex-shrink: 0; width: 20px; height: 20px; stroke: var(--gold); stroke-width: 2; fill: none; margin-top: 1px; }
    .payment-note p { font-size: 14px; color: var(--text-mid); line-height: 1.6; }
    .payment-note strong { color: var(--navy); font-weight: 600; }

    /* ── RESPONSIVE for interior pages ── */
    @media (max-width: 900px) {
      .service-block, .service-block.reversed { grid-template-columns: 1fr; gap: 32px; direction: ltr; }
      .service-photo { position: relative; top: 0; }
      .about-photo { position: relative; top: 0; aspect-ratio: 4/3; }
      .also-grid { grid-template-columns: 1fr 1fr; }
      .bundle { grid-template-columns: 1fr; }
      .bundle-actions { align-items: stretch; }
      .about-intro-grid, .about-story-grid { grid-template-columns: 1fr; gap: 36px; }
      .neighbors-grid { grid-template-columns: 1fr; gap: 32px; }
      .contact-grid { grid-template-columns: 1fr; gap: 36px; }
      .payment-methods { grid-template-columns: 1fr 1fr; }
      .expect-grid { grid-template-columns: 1fr; }
      [style*="grid-template-columns:1fr 1fr"] { grid-template-columns: 1fr !important; gap: 36px !important; }
      .story-grid { grid-template-columns: 1fr !important; gap: 32px !important; }
      .story-grid > div:first-child { order: 2; }
      .story-grid > div:last-child { order: 1; }
    }
    @media (max-width: 640px) {
      .also-grid { grid-template-columns: 1fr; }
      .gallery-grid, .reviews-grid { grid-template-columns: 1fr; }
      .payment-methods { grid-template-columns: 1fr; }
      .page-header { padding: 52px 0 44px; }
      .services-list, .about-intro, .gallery, .reviews, .contact-section { padding: 56px 0; }
      .also-available, .about-story, .about-expect, .about-neighbors, .payment { padding: 56px 0; }
      .bundle { padding: 32px 24px; }
      .contact-info-card { padding: 28px 24px; }
    }


    /* ── MOBILE CTA BAR (all pages except homepage) ── */
    .mobile-cta-bar {
      display: none !important;
    }
    @media (max-width: 768px) {
      .mobile-cta-bar {
        display: grid !important;
        grid-template-columns: 1fr 1fr;
        border-bottom: 2px solid var(--gold);
        position: sticky;
        top: 68px;
        left: 0;
        right: 0;
        z-index: 98;
      }
      .mobile-cta-bar a:first-child {
        display: flex; align-items: center; justify-content: center; gap: 8px;
        padding: 10px;
        background: var(--navy);
        color: #fff;
        font-size: 13px; font-weight: 600;
        text-decoration: none;
        border-right: 1px solid rgba(255,255,255,0.15);
      }
      .mobile-cta-bar a:last-child {
        display: flex; align-items: center; justify-content: center; gap: 8px;
        padding: 10px;
        background: var(--gold);
        color: #fff;
        font-size: 13px; font-weight: 600;
        text-decoration: none;
      }
      .mobile-cta-bar svg {
        width: 14px; height: 14px; stroke: currentColor; stroke-width: 2.2; fill: none; flex-shrink: 0;
      }
    }
