:root {
      --navy:   #1a3354;
      --teal:   #1b7a6e;
      --teal-lt:#22a090;
      --gold:   #e8a020;
      --cream:  #faf7f2;
      --white:  #ffffff;
      --gray:   #6b7280;
      --light:  #f0ece4;
      --dark:   #111827;
      --radius: 12px;
      --shadow: 0 4px 32px rgba(26,51,84,.13);
    }

    /* ── RESET ──────────────────────────────────── */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body {
      font-family: 'Lato', sans-serif;
      background: var(--cream);
      color: var(--dark);
      line-height: 1.65;
    }
    img { max-width: 100%; display: block; }
    a  { color: inherit; text-decoration: none; }

    /* ── UTILITY ─────────────────────────────────── */
    .container { width: 92%; max-width: 1080px; margin: 0 auto; }
    .section    { padding: 72px 0; }
    .btn {
      display: inline-block;
      background: var(--gold);
      color: var(--navy);
      font-family: 'Lato', sans-serif;
      font-weight: 900;
      font-size: 1.05rem;
      letter-spacing: .04em;
      text-transform: uppercase;
      padding: 16px 36px;
      border-radius: 50px;
      border: none;
      cursor: pointer;
      transition: transform .2s, box-shadow .2s;
      box-shadow: 0 4px 18px rgba(232,160,32,.45);
    }
    .btn:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(232,160,32,.5); }
    .btn-lg { font-size: 1.2rem; padding: 20px 48px; }

    /* ── TOP BAR ─────────────────────────────────── */
    .topbar {
      background: var(--navy);
      color: var(--white);
      text-align: center;
      padding: 10px 20px;
      font-size: .9rem;
      letter-spacing: .05em;
    }
    .topbar a {
      color: var(--gold);
      font-weight: 700;
      font-size: 1rem;
      letter-spacing: .08em;
    }

    /* ── HEADER ──────────────────────────────────── */
    header {
      background: var(--white);
      box-shadow: 0 2px 16px rgba(0,0,0,.08);
      position: sticky;
      top: 0;
      z-index: 100;
    }
    .header-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 18px 0;
      gap: 16px;
    }
    .logo {
      font-family: 'Playfair Display', serif;
      font-size: 1.55rem;
      font-weight: 800;
      color: var(--navy);
      line-height: 1.1;
    }
    .logo span { color: var(--teal); }
    .logo small {
      display: block;
      font-family: 'Lato', sans-serif;
      font-size: .7rem;
      font-weight: 400;
      letter-spacing: .12em;
      text-transform: uppercase;
      color: var(--gray);
      margin-top: 2px;
    }
    .header-phone {
      text-align: right;
    }
    .header-phone .label {
      font-size: .72rem;
      letter-spacing: .1em;
      text-transform: uppercase;
      color: var(--gray);
    }
    .header-phone a {
      display: block;
      font-size: 1.6rem;
      font-weight: 900;
      color: var(--teal);
      letter-spacing: .02em;
      line-height: 1.1;
    }
    .header-phone a:hover { color: var(--navy); }

    /* ── HERO ─────────────────────────────────────── */
    .hero {
      background: linear-gradient(135deg, var(--navy) 0%, #1b5c7a 100%);
      color: var(--white);
      padding: 56px 0 48px;
      text-align: center;
      position: relative;
      overflow: hidden;
    }
    .hero::before {
	  pointer-events: none;
      content: '';
      position: absolute; inset: 0;
      background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    }
    .hero-tag {
      display: inline-block;
      background: rgba(255,255,255,.12);
      border: 1px solid rgba(255,255,255,.25);
      color: var(--gold);
      font-size: .78rem;
      font-weight: 700;
      letter-spacing: .14em;
      text-transform: uppercase;
      padding: 6px 18px;
      border-radius: 50px;
      margin-bottom: 20px;
    }
    .hero h1 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(1.8rem, 4vw, 3rem);
      font-weight: 800;
      line-height: 1.2;
      max-width: 800px;
      margin: 0 auto 20px;
    }
    .hero h1 em {
      font-style: normal;
      color: var(--gold);
    }
    .hero-sub {
      font-size: 1.05rem;
      opacity: .88;
      max-width: 560px;
      margin: 0 auto 32px;
    }
    .hero-phone {
      font-size: 1.5rem;
      font-weight: 900;
      color: var(--gold);
      letter-spacing: .04em;
    }
    .hero-phone span {
      font-size: .85rem;
      font-weight: 400;
      color: rgba(255,255,255,.7);
      letter-spacing: .06em;
      display: block;
      text-transform: uppercase;
      margin-bottom: 4px;
    }

    /* ── VIDEO SECTION ───────────────────────────── */
    .video-section {
      background: var(--white);
      padding: 72px 0 56px;
      text-align: center;
    }
    .section-eyebrow {
      font-size: .78rem;
      font-weight: 700;
      letter-spacing: .18em;
      text-transform: uppercase;
      color: var(--teal);
      margin-bottom: 10px;
    }
    .video-section h2 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(1.6rem, 3.5vw, 2.5rem);
      font-weight: 800;
      color: var(--navy);
      max-width: 760px;
      margin: 0 auto 12px;
      line-height: 1.25;
    }
    .video-section h2 em {
      font-style: normal;
      color: var(--teal);
    }
    .video-section .sub {
      color: var(--gray);
      margin-bottom: 40px;
      font-size: 1.05rem;
      max-width: 560px;
      margin-left: auto; margin-right: auto;
    }
    .video-wrapper {
      position: relative;
      max-width: 760px;
      margin: 0 auto;
      border-radius: var(--radius);
      overflow: hidden;
      box-shadow: var(--shadow), 0 0 0 6px rgba(27,122,110,.12);
      background: #0f1c2d;
      aspect-ratio: 16/9;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .video-placeholder {
      width: 100%;
      height: 100%;
      position: absolute;
      inset: 0;
      background: linear-gradient(160deg, #0f2540 0%, #1a3354 60%, #1b5c7a 100%);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 16px;
    }
    .play-btn {
      width: 82px; height: 82px;
      background: var(--gold);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      box-shadow: 0 0 0 12px rgba(232,160,32,.2), 0 8px 32px rgba(0,0,0,.35);
      transition: transform .2s;
      cursor: pointer;
    }
    .play-btn:hover { transform: scale(1.08); }
    .play-btn svg { margin-left: 6px; }
    .video-label {
      color: rgba(255,255,255,.7);
      font-size: .85rem;
      letter-spacing: .08em;
      text-transform: uppercase;
    }
    .video-note {
      margin-top: 20px;
      font-size: .88rem;
      color: var(--gray);
      font-style: italic;
    }

    /* ── PRICE CALLOUT ───────────────────────────── */
    .price-banner {
      background: var(--teal);
      color: var(--white);
      text-align: center;
      padding: 40px 20px;
    }
    .price-banner .price-tag {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2.4rem, 6vw, 4.5rem);
      font-weight: 800;
      color: var(--gold);
      line-height: 1;
    }
    .price-banner .compare {
      font-size: .95rem;
      opacity: .85;
      margin-top: 8px;
    }
    .price-banner .compare s { opacity: .65; }

    /* ── BENEFITS ────────────────────────────────── */
    .benefits { background: var(--cream); }
    .benefits h2 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(1.6rem, 3vw, 2.3rem);
      color: var(--navy);
      margin-bottom: 48px;
      text-align: center;
    }
    .benefits-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 28px;
    }
    .benefit-card {
      background: var(--white);
      border-radius: var(--radius);
      padding: 32px 28px;
      box-shadow: 0 2px 18px rgba(0,0,0,.06);
      border-left: 4px solid var(--teal);
      transition: transform .2s;
    }
    .benefit-card:hover { transform: translateY(-4px); }
    .benefit-icon {
      font-size: 2rem;
      margin-bottom: 12px;
    }
    .benefit-card h3 {
      font-family: 'Playfair Display', serif;
      font-size: 1.15rem;
      color: var(--navy);
      margin-bottom: 8px;
    }
    .benefit-card p { font-size: .95rem; color: #555; }

    /* ── PHOTO + TEXT ────────────────────────────── */
    .features { background: var(--white); }
    .feature-row {
      display: flex;
      align-items: center;
      gap: 60px;
      margin-bottom: 72px;
    }
    .feature-row:last-child { margin-bottom: 0; }
    .feature-row.reverse { flex-direction: row-reverse; }
    .feature-img {
      flex: 0 0 45%;
      border-radius: var(--radius);
      overflow: hidden;
      box-shadow: var(--shadow);
    }
    .feature-img img { width: 100%; height: 340px; object-fit: cover; }
    .feature-img .img-placeholder {
      width: 100%; height: 340px;
      background: linear-gradient(135deg, #e8f0ee 0%, #d0e4e0 100%);
      display: flex; align-items: center; justify-content: center;
      flex-direction: column;
      color: var(--teal);
      font-size: .85rem;
      letter-spacing: .06em;
      gap: 10px;
    }
    .feature-copy { flex: 1; }
    .feature-copy h3 {
      font-family: 'Playfair Display', serif;
      font-size: 1.75rem;
      color: var(--navy);
      margin-bottom: 16px;
      line-height: 1.25;
    }
    .feature-copy p { color: #555; margin-bottom: 16px; }
    .feature-copy ul {
      list-style: none;
      padding: 0;
    }
    .feature-copy ul li {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      margin-bottom: 10px;
      color: #444;
      font-size: .97rem;
    }
    .feature-copy ul li::before {
      content: '✓';
      background: var(--teal);
      color: white;
      font-size: .7rem;
      font-weight: 900;
      width: 20px; height: 20px;
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
      margin-top: 2px;
    }

    /* ── PROCESS ─────────────────────────────────── */
    .process { background: var(--light); }
    .process h2 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(1.6rem, 3vw, 2.3rem);
      color: var(--navy);
      text-align: center;
      margin-bottom: 48px;
    }
    .steps {
      display: flex;
      gap: 0;
      position: relative;
      flex-wrap: wrap;
      justify-content: center;
    }
    .step {
      flex: 1 1 160px;
      max-width: 200px;
      text-align: center;
      padding: 0 16px;
      position: relative;
    }
    .step-num {
      width: 52px; height: 52px;
      background: var(--navy);
      color: var(--gold);
      font-family: 'Playfair Display', serif;
      font-size: 1.3rem;
      font-weight: 800;
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      margin: 0 auto 14px;
    }
    .step h4 {
      font-family: 'Playfair Display', serif;
      font-size: 1rem;
      color: var(--navy);
      margin-bottom: 6px;
    }
    .step p { font-size: .85rem; color: var(--gray); }
    .step::after {
      content: '→';
      position: absolute;
      right: -10px; top: 14px;
      color: var(--teal-lt);
      font-size: 1.5rem;
    }
    .step:last-child::after { display: none; }

    /* ── BOOKING ─────────────────────────────────── */
    .booking { background: var(--white); text-align: center; }
    .booking h2 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(1.6rem, 3vw, 2.4rem);
      color: var(--navy);
      margin-bottom: 12px;
    }
    .booking .sub {
      color: var(--gray);
      margin-bottom: 40px;
      max-width: 520px;
      margin-left: auto; margin-right: auto;
    }
    .calendly-placeholder {
      max-width: 820px;
      margin: 0 auto;
     
      overflow: hidden;       
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 16px;
      color: var(--teal);
    }
    .calendly-placeholder svg { opacity: .5; }
    .calendly-placeholder .cal-label {
      font-size: 1.1rem;
      font-weight: 700;
      color: var(--navy);
    }
    .calendly-placeholder .cal-sub {
      font-size: .9rem;
      color: var(--gray);
    }
    .or-call {
      margin: 36px auto 0;
      font-size: 1rem;
      color: var(--gray);
    }
    .or-call a {
      display: inline-flex; align-items: center; gap: 10px;
      background: var(--navy);
      color: var(--white);
      font-weight: 900;
      font-size: 1.5rem;
      padding: 16px 36px;
      border-radius: 50px;
      margin-top: 12px;
      transition: background .2s;
      letter-spacing: .02em;
    }
    .or-call a:hover { background: var(--teal); }

    /* ── FINANCING ───────────────────────────────── */
    .financing {
      background: var(--navy);
      color: var(--white);
      text-align: center;
    }
    .financing h2 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(1.5rem, 2.8vw, 2.2rem);
      margin-bottom: 14px;
    }
    .financing p {
      max-width: 600px;
      margin: 0 auto 28px;
      opacity: .85;
      font-size: 1rem;
    }

    /* ── CTA BAND ─────────────────────────────────── */
    .cta-band {
      background: var(--gold);
      text-align: center;
      padding: 52px 20px;
    }
    .cta-band h2 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(1.5rem, 3vw, 2.4rem);
      color: var(--navy);
      margin-bottom: 8px;
    }
    .cta-band p { color: var(--navy); opacity: .8; margin-bottom: 24px; font-size: 1rem; }
    .cta-band .phone-big {
      font-size: clamp(2rem, 5vw, 3.2rem);
      font-weight: 900;
      color: var(--navy);
      letter-spacing: .02em;
    }
    .cta-band .phone-big a { color: inherit; }
    .cta-band .phone-big a:hover { color: var(--teal); }

    /* ── FOOTER ──────────────────────────────────── */
    footer {
      background: #0d1e33;
      color: rgba(255,255,255,.65);
      padding: 44px 0 28px;
      text-align: center;
      font-size: .9rem;
    }
    .footer-logo {
      font-family: 'Playfair Display', serif;
      font-size: 1.35rem;
      font-weight: 800;
      color: var(--white);
      margin-bottom: 16px;
    }
    .footer-logo span { color: var(--teal-lt); }
    .footer-contact { margin-bottom: 20px; line-height: 2; }
    .footer-contact a { color: var(--gold); }
    .footer-contact a:hover { color: var(--white); }
    .footer-copy { font-size: .78rem; opacity: .5; margin-top: 20px; }
    .footer-service {
      margin: 12px auto 0;
      max-width: 460px;
      font-size: .82rem;
      opacity: .55;
    }

    /* ── RESPONSIVE ──────────────────────────────── */
    @media (max-width: 768px) {
      .header-inner { flex-direction: column; text-align: center; }
      .header-phone { text-align: center; }
      .feature-row, .feature-row.reverse { flex-direction: column; }
      .feature-img { flex: none; width: 100%; }
      .steps { flex-direction: column; align-items: center; }
      .step::after { display: none; }
    }