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

    :root {
      --bg1:    #F8F4EE;   /* warm ivory – main bg */
      --bg2:    #F0E9DF;   /* warm cream – alt bg  */
      --bg3:    #E8DFD3;   /* deeper cream – third bg */
      --gold:   #A67C2A;   /* rich dark gold */
      --gold2:  #C9A84C;   /* medium gold */
      --teal:   #006E78;   /* deep teal */
      --teal2:  #008E9A;   /* mid teal */
      --text:   #1C1610;   /* near-black warm */
      --text2:  #4A3F35;   /* medium warm brown */
      --gray:   #7A6E64;   /* muted warm gray */
      --white:  #ffffff;
      --light:  #F8F4EE;
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'Montserrat', sans-serif;
      background-color: var(--bg1);
      color: var(--text);
      overflow-x: hidden;
    }

    /* ── SCROLLBAR ── */
    ::-webkit-scrollbar { width: 6px; }
    ::-webkit-scrollbar-track { background: var(--bg2); }
    ::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

    /* ══════════════════════════════════════
       NAV
    ══════════════════════════════════════ */
    nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
      display: flex; align-items: center; justify-content: space-between;
      padding: 0 5%;
      height: 80px;
      background: rgba(248, 244, 238, 0.88);
      backdrop-filter: blur(18px);
      border-bottom: 1px solid rgba(166,124,42,0.18);
      transition: all .3s ease;
    }
    nav.scrolled {
      height: 66px;
      background: rgba(248, 244, 238, 0.97);
      border-bottom-color: rgba(166,124,42,0.32);
      box-shadow: 0 4px 24px rgba(0,0,0,0.07);
    }

    .nav-logo {
      display: flex; align-items: center; gap: 12px;
      text-decoration: none;
    }
    .nav-logo-icon {
      width: 44px; height: 44px;
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
    }
    .nav-logo-text { display: flex; flex-direction: column; line-height: 1.1; }

    .site-logo-image {
      display: block;
      width: auto;
      height: 56px;
      max-width: 100%;
      object-fit: contain;
    }
    nav.scrolled .site-logo-image {
      height: 46px;
    }
    .footer-logo-image {
      display: block;
      width: auto;
      height: 72px;
      max-width: 100%;
      object-fit: contain;
    }
    .nav-logo-text span:first-child {
      font-size: 15px; font-weight: 800; letter-spacing: .5px;
      background: linear-gradient(90deg, var(--gold), var(--gold2));
      -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    }
    .nav-logo-text span:last-child {
      font-size: 9px; font-weight: 500; letter-spacing: 2.5px;
      text-transform: uppercase; color: var(--gray);
    }

    .nav-links {
      display: flex; align-items: center; gap: 32px;
      list-style: none;
    }
    .nav-links a {
      text-decoration: none; color: var(--text2);
      font-size: 12px; font-weight: 600; letter-spacing: 1.5px;
      text-transform: uppercase;
      transition: color .25s;
      position: relative;
    }
    .nav-links a::after {
      content: ''; position: absolute; left: 0; bottom: -4px;
      width: 0; height: 1.5px;
      background: var(--gold);
      transition: width .3s ease;
    }
    .nav-links a:hover { color: var(--gold); }
    .nav-links a:hover::after { width: 100%; }

    .nav-cta {
      padding: 10px 24px;
      background: transparent;
      border: 1.5px solid var(--gold);
      color: var(--gold);
      font-family: 'Montserrat', sans-serif;
      font-size: 11px; font-weight: 700;
      letter-spacing: 2px; text-transform: uppercase;
      border-radius: 3px;
      cursor: pointer;
      text-decoration: none;
      transition: all .3s ease;
    }
    .nav-cta:hover {
      background: var(--gold);
      color: var(--white);
    }

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

    /* ══════════════════════════════════════
       HERO
    ══════════════════════════════════════ */
    #hero {
      position: relative;
      min-height: 100vh;
      display: flex; align-items: center;
      overflow: hidden;
      background: linear-gradient(160deg, #F8F4EE 0%, #EDE3D5 60%, #E4D8C6 100%);
    }

    /* Animated grid background */
    .hero-grid {
      position: absolute; inset: 0;
      background-image:
        linear-gradient(rgba(166,124,42,0.07) 1px, transparent 1px),
        linear-gradient(90deg, rgba(166,124,42,0.07) 1px, transparent 1px);
      background-size: 60px 60px;
      animation: gridPan 30s linear infinite;
    }
    @keyframes gridPan {
      0%   { background-position: 0 0; }
      100% { background-position: 60px 60px; }
    }

    /* Glowing orbs */
    .orb {
      position: absolute; border-radius: 50%;
      filter: blur(80px); opacity: .35; pointer-events: none;
    }
    .orb-1 {
      width: 600px; height: 600px;
      top: -150px; left: -100px;
      background: radial-gradient(circle, rgba(0,110,120,0.12), transparent 70%);
      animation: orbFloat 12s ease-in-out infinite;
    }
    .orb-2 {
      width: 500px; height: 500px;
      bottom: -100px; right: -100px;
      background: radial-gradient(circle, rgba(166,124,42,0.14), transparent 70%);
      animation: orbFloat 15s ease-in-out infinite reverse;
    }
    .orb-3 {
      width: 300px; height: 300px;
      top: 40%; left: 55%;
      background: radial-gradient(circle, rgba(0,110,120,0.08), transparent 70%);
      animation: orbFloat 9s ease-in-out infinite 3s;
    }
    @keyframes orbFloat {
      0%, 100% { transform: translate(0, 0); }
      50%       { transform: translate(30px, -30px); }
    }

    .hero-content {
      position: relative; z-index: 2;
      padding: 140px 5% 80px;
      max-width: 800px;
    }

    .hero-badge {
      display: inline-flex; align-items: center; gap: 8px;
      padding: 6px 16px;
      border: 1px solid rgba(166,124,42,0.45);
      border-radius: 40px;
      background: rgba(166,124,42,0.10);
      font-size: 10px; font-weight: 700;
      letter-spacing: 2.5px; text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 28px;
      animation: fadeUp .8s ease both;
    }
    .hero-badge-dot {
      width: 6px; height: 6px; border-radius: 50%;
      background: var(--teal);
      box-shadow: 0 0 6px var(--teal);
      animation: pulse 2s ease-in-out infinite;
    }
    @keyframes pulse {
      0%, 100% { opacity: 1; }
      50%       { opacity: .3; }
    }

    .hero-title {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2.8rem, 6vw, 5.2rem);
      font-weight: 700; line-height: 1.1;
      color: var(--text);
      margin-bottom: 28px;
      animation: fadeUp .8s ease .15s both;
    }
    .hero-title .line-gold {
      background: linear-gradient(90deg, var(--gold), var(--gold2));
      -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    }
    .hero-title .line-teal {
      background: linear-gradient(90deg, var(--teal), var(--teal2));
      -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    }

    .hero-sub {
      font-size: 16px; font-weight: 400; line-height: 1.8;
      color: var(--text2); max-width: 600px;
      margin-bottom: 48px;
      animation: fadeUp .8s ease .3s both;
    }

    .hero-actions {
      display: flex; flex-wrap: wrap; gap: 16px;
      animation: fadeUp .8s ease .45s both;
    }

    .btn-primary {
      padding: 16px 36px;
      background: linear-gradient(135deg, var(--gold), var(--gold2));
      color: var(--white);
      font-family: 'Montserrat', sans-serif;
      font-size: 12px; font-weight: 800;
      letter-spacing: 2px; text-transform: uppercase;
      border: none; border-radius: 3px;
      cursor: pointer; text-decoration: none;
      transition: all .3s ease;
      box-shadow: 0 8px 32px rgba(201,168,76,0.3);
    }
    .btn-primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 16px 48px rgba(201,168,76,0.45);
    }

    .btn-outline {
      padding: 16px 36px;
      background: transparent;
      color: var(--teal);
      font-family: 'Montserrat', sans-serif;
      font-size: 12px; font-weight: 700;
      letter-spacing: 2px; text-transform: uppercase;
      border: 1.5px solid var(--teal);
      border-radius: 3px;
      cursor: pointer; text-decoration: none;
      transition: all .3s ease;
    }
    .btn-outline:hover {
      background: rgba(0,110,120,0.08);
      transform: translateY(-2px);
      box-shadow: 0 8px 32px rgba(0,110,120,0.15);
    }

    /* Stats strip */
    .hero-stats {
      position: absolute; bottom: 0; left: 0; right: 0;
      display: flex;
      border-top: 1px solid rgba(166,124,42,0.18);
      background: rgba(248,244,238,0.75);
      backdrop-filter: blur(12px);
      z-index: 2;
      animation: fadeUp .8s ease .6s both;
    }
    .hero-stat {
      flex: 1; padding: 28px 32px;
      text-align: center;
      border-right: 1px solid rgba(166,124,42,0.12);
    }
    .hero-stat:last-child { border-right: none; }
    .hero-stat-num {
      font-family: 'Playfair Display', serif;
      font-size: 2rem; font-weight: 700;
      background: linear-gradient(90deg, var(--gold), var(--gold2));
      -webkit-background-clip: text; -webkit-text-fill-color: transparent;
      display: block;
    }
    .hero-stat-label {
      font-size: 10px; font-weight: 600;
      letter-spacing: 2px; text-transform: uppercase;
      color: var(--gray); margin-top: 4px;
    }

    /* ══════════════════════════════════════
       SECTION SHARED
    ══════════════════════════════════════ */
    section { padding: 100px 5%; }

    .section-tag {
      display: inline-block;
      font-size: 10px; font-weight: 700;
      letter-spacing: 3px; text-transform: uppercase;
      color: var(--teal);
      padding: 4px 0;
      border-bottom: 1.5px solid var(--teal);
      margin-bottom: 20px;
    }

    .section-title {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2rem, 4vw, 3rem);
      font-weight: 700; line-height: 1.2;
      margin-bottom: 20px;
    }
    .section-title em {
      font-style: italic;
      background: linear-gradient(90deg, var(--gold), var(--gold2));
      -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    }

    .section-desc {
      font-size: 15px; line-height: 1.9;
      color: var(--gray); max-width: 560px;
    }

    /* ══════════════════════════════════════
       SERVICES
    ══════════════════════════════════════ */
    #services {
      background: var(--bg2);
      position: relative; overflow: hidden;
    }
    #services::before {
      content: '';
      position: absolute; top: 0; left: 0; right: 0; height: 1px;
      background: linear-gradient(90deg, transparent, var(--gold), transparent);
    }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 24px;
      margin-top: 64px;
    }

    .service-card {
      background: rgba(255,255,255,0.70);
      border: 1px solid rgba(166,124,42,0.14);
      border-radius: 12px;
      padding: 36px 32px;
      position: relative; overflow: hidden;
      transition: all .4s ease;
      cursor: default;
      box-shadow: 0 2px 12px rgba(0,0,0,0.04);
    }
    .service-card::before {
      content: '';
      position: absolute; top: 0; left: 0; right: 0; height: 3px;
      background: linear-gradient(90deg, var(--gold), var(--teal));
      opacity: 0;
      transition: opacity .4s;
    }
    .service-card:hover {
      background: rgba(255,255,255,0.90);
      border-color: rgba(166,124,42,0.35);
      transform: translateY(-6px);
      box-shadow: 0 24px 60px rgba(0,0,0,0.10);
    }
    .service-card:hover::before { opacity: 1; }

    .service-icon {
      width: 56px; height: 56px;
      background: linear-gradient(135deg, rgba(166,124,42,0.12), rgba(0,110,120,0.10));
      border: 1px solid rgba(166,124,42,0.25);
      border-radius: 12px;
      display: flex; align-items: center; justify-content: center;
      font-size: 26px;
      margin-bottom: 24px;
      transition: all .3s;
    }
    .service-card:hover .service-icon {
      background: linear-gradient(135deg, rgba(166,124,42,0.20), rgba(0,110,120,0.15));
    }

    .service-title {
      font-size: 17px; font-weight: 700;
      margin-bottom: 12px;
      color: var(--text);
    }
    .service-desc {
      font-size: 13.5px; line-height: 1.8;
      color: var(--text2);
    }

    .service-tags {
      display: flex; flex-wrap: wrap; gap: 8px;
      margin-top: 20px;
    }
    .service-tag {
      padding: 4px 12px;
      background: rgba(0,110,120,0.07);
      border: 1px solid rgba(0,110,120,0.2);
      border-radius: 20px;
      font-size: 10px; font-weight: 600;
      letter-spacing: 1px; text-transform: uppercase;
      color: var(--teal);
    }

    .service-estimator-link {
      display: inline-block;
      margin-top: 16px;
      padding: 8px 18px;
      background: var(--teal);
      color: var(--white);
      font-size: 13px;
      font-weight: 600;
      border-radius: 6px;
      text-decoration: none;
      transition: background .2s ease, transform .2s ease;
    }
    .service-estimator-link:hover {
      background: var(--teal2);
      transform: translateY(-1px);
    }

    /* ══════════════════════════════════════
       WHY US
    ══════════════════════════════════════ */
    #why {
      background: var(--bg1);
      position: relative;
    }

    .why-layout {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
      margin-top: 20px;
    }

    .why-visual {
      position: relative;
    }
    .why-visual-box {
      background: rgba(255,255,255,0.75);
      border: 1px solid rgba(166,124,42,0.22);
      border-radius: 16px;
      padding: 48px 40px;
      position: relative; overflow: hidden;
      box-shadow: 0 4px 32px rgba(0,0,0,0.06);
    }
    .why-visual-box::after {
      content: 'RP';
      position: absolute; right: -20px; bottom: -30px;
      font-family: 'Playfair Display', serif;
      font-size: 140px; font-weight: 700;
      color: rgba(166,124,42,0.07);
      line-height: 1;
      pointer-events: none;
      user-select: none;
    }

    .why-badge-row {
      display: flex; gap: 8px; margin-bottom: 28px; flex-wrap: wrap;
    }
    .why-cert-badge {
      padding: 10px 12px;
      background: rgba(0,110,120,0.07);
      border: 1px solid rgba(0,110,120,0.22);
      border-radius: 8px;
      font-size: 11px; font-weight: 700;
      letter-spacing: 1px; color: var(--teal);
      text-align: center;
    }
    .why-cert-badge span {
      display: block; font-size: 10px;
      font-weight: 500; color: var(--gray);
      margin-top: 2px;
    }

    .why-quote {
      font-family: 'Playfair Display', serif;
      font-size: 1.3rem; font-style: italic;
      line-height: 1.7; color: var(--text2);
      margin-bottom: 24px;
    }

    .why-quote-author {
      display: flex; align-items: center; gap: 12px;
    }
    .why-quote-line {
      width: 32px; height: 2px;
      background: linear-gradient(90deg, var(--gold), var(--teal));
    }
    .why-quote-name {
      font-size: 11px; font-weight: 700;
      letter-spacing: 1.5px; text-transform: uppercase;
      color: var(--gold);
    }

    .why-points { margin-top: 40px; }
    .why-point {
      display: flex; align-items: flex-start; gap: 16px;
      padding: 20px 0;
      border-bottom: 1px solid rgba(166,124,42,0.12);
    }
    .why-point:last-child { border-bottom: none; }
    .why-point-icon {
      width: 36px; height: 36px; flex-shrink: 0;
      background: linear-gradient(135deg, rgba(166,124,42,0.10), rgba(0,110,120,0.08));
      border: 1px solid rgba(166,124,42,0.22);
      border-radius: 8px;
      display: flex; align-items: center; justify-content: center;
      font-size: 16px;
    }
    .why-point-body h4 {
      font-size: 14px; font-weight: 700; margin-bottom: 4px;
      color: var(--text);
    }
    .why-point-body p {
      font-size: 13px; line-height: 1.7; color: var(--text2);
    }

    /* ══════════════════════════════════════
       COVERAGE
    ══════════════════════════════════════ */
    #coverage {
      background: var(--bg3);
      position: relative; overflow: hidden;
    }
    #coverage::before {
      content: '';
      position: absolute; top: 0; left: 0; right: 0; height: 1px;
      background: linear-gradient(90deg, transparent, var(--teal), transparent);
    }

    .coverage-layout {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 64px;
      align-items: center;
      margin-top: 64px;
    }

    .coverage-map {
      position: relative;
      background: rgba(255,255,255,0.55);
      border: 1px solid rgba(0,110,120,0.18);
      border-radius: 16px;
      padding: 40px;
      display: flex; align-items: center; justify-content: center;
      min-height: 340px;
      box-shadow: 0 4px 24px rgba(0,0,0,0.05);
    }

    /* SVG Map */
    .map-svg { width: 100%; max-width: 420px; }

    .coverage-cards { display: flex; flex-direction: column; gap: 20px; }

    .coverage-card {
      background: rgba(255,255,255,0.65);
      border: 1px solid rgba(166,124,42,0.14);
      border-radius: 12px; padding: 28px 28px;
      display: flex; align-items: center; gap: 20px;
      transition: all .3s;
      box-shadow: 0 2px 10px rgba(0,0,0,0.04);
    }
    .coverage-card:hover {
      border-color: rgba(0,110,120,0.3);
      background: rgba(255,255,255,0.90);
      transform: translateX(6px);
      box-shadow: 0 8px 28px rgba(0,0,0,0.07);
    }

    .coverage-flag {
      width: 52px; height: 52px; border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-size: 28px; flex-shrink: 0;
      background: rgba(255,255,255,0.8);
      border: 1px solid rgba(166,124,42,0.18);
    }
    .coverage-info h3 {
      font-size: 16px; font-weight: 700; margin-bottom: 4px;
      color: var(--text);
    }
    .coverage-info p {
      font-size: 12.5px; color: var(--text2); line-height: 1.6;
    }
    .coverage-arrow {
      margin-left: auto; font-size: 18px; color: var(--teal);
      opacity: 0; transition: opacity .3s, transform .3s;
      transform: translateX(-6px);
    }
    .coverage-card:hover .coverage-arrow {
      opacity: 1; transform: translateX(0);
    }

    /* ══════════════════════════════════════
       PROCESS
    ══════════════════════════════════════ */
    #process {
      background: var(--bg1);
    }

    .process-header {
      display: flex; justify-content: space-between;
      align-items: flex-end; gap: 40px;
      flex-wrap: wrap;
      margin-bottom: 64px;
    }

    .process-steps {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 0;
      position: relative;
    }
    .process-steps::before {
      content: '';
      position: absolute; top: 28px; left: 10%; right: 10%;
      height: 1px;
      background: linear-gradient(90deg, var(--gold), var(--teal));
      opacity: .3;
    }

    .process-step {
      padding: 0 24px;
      text-align: center;
    }
    .process-num {
      width: 56px; height: 56px; border-radius: 50%;
      margin: 0 auto 24px;
      display: flex; align-items: center; justify-content: center;
      font-size: 18px; font-weight: 800;
      background: var(--white);
      border: 1.5px solid var(--gold);
      color: var(--gold);
      position: relative; z-index: 1;
      box-shadow: 0 4px 16px rgba(166,124,42,0.12);
    }
    .process-step-title {
      font-size: 14px; font-weight: 700; margin-bottom: 10px;
      color: var(--text);
    }
    .process-step-desc {
      font-size: 12.5px; line-height: 1.7; color: var(--text2);
    }

    /* ══════════════════════════════════════
       CONTACT
    ══════════════════════════════════════ */
    #contact {
      background: var(--bg2);
      position: relative; overflow: hidden;
    }
    #contact::before {
      content: '';
      position: absolute; top: 0; left: 0; right: 0; height: 1px;
      background: linear-gradient(90deg, transparent, var(--gold), transparent);
    }

    /* Decorative radial */
    #contact::after {
      content: '';
      position: absolute; bottom: -200px; right: -200px;
      width: 600px; height: 600px; border-radius: 50%;
      background: radial-gradient(circle, rgba(0,110,120,0.07), transparent 70%);
      pointer-events: none;
    }

    .contact-layout {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: start;
    }

    .contact-info { position: relative; z-index: 1; }
    .contact-info .section-desc { margin-bottom: 40px; }

    .contact-detail {
      display: flex; align-items: flex-start; gap: 16px;
      margin-bottom: 24px;
    }
    .contact-detail-icon {
      width: 42px; height: 42px; flex-shrink: 0;
      background: rgba(201,168,76,0.1);
      border: 1px solid rgba(201,168,76,0.25);
      border-radius: 8px;
      display: flex; align-items: center; justify-content: center;
      font-size: 18px;
    }
    .contact-detail-body h4 {
      font-size: 11px; font-weight: 700;
      letter-spacing: 2px; text-transform: uppercase;
      color: var(--gold); margin-bottom: 4px;
    }
    .contact-detail-body p, .contact-detail-body a {
      font-size: 14px; color: var(--text2);
      text-decoration: none;
      transition: color .2s;
    }
    .contact-detail-body a:hover { color: var(--teal); }

    .contact-form-wrap { position: relative; z-index: 1; }

    .contact-form {
      background: rgba(255,255,255,0.75);
      border: 1px solid rgba(166,124,42,0.15);
      border-radius: 16px; padding: 40px;
      box-shadow: 0 4px 32px rgba(0,0,0,0.06);
    }

    .form-row {
      display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
      margin-bottom: 16px;
    }
    .form-group { margin-bottom: 16px; }
    .form-group label {
      display: block; font-size: 10px; font-weight: 700;
      letter-spacing: 2px; text-transform: uppercase;
      color: var(--gray); margin-bottom: 8px;
    }
    .form-group input,
    .form-group textarea,
    .form-group select {
      width: 100%;
      padding: 14px 16px;
      background: rgba(255,255,255,0.85);
      border: 1px solid rgba(166,124,42,0.22);
      border-radius: 6px;
      color: var(--text);
      font-family: 'Montserrat', sans-serif;
      font-size: 13px;
      transition: border-color .3s;
      outline: none;
    }
    .form-group input::placeholder,
    .form-group textarea::placeholder { color: #B0A090; }
    .form-group input:focus,
    .form-group textarea:focus,
    .form-group select:focus {
      border-color: var(--gold);
      background: rgba(255,255,255,1);
      box-shadow: 0 0 0 3px rgba(166,124,42,0.08);
    }
    .form-group select option { background: var(--white); color: var(--text); }
    .form-group textarea { resize: vertical; min-height: 120px; }

    .form-submit {
      width: 100%; padding: 16px;
      background: linear-gradient(135deg, var(--gold), var(--gold2));
      color: var(--white);
      font-family: 'Montserrat', sans-serif;
      font-size: 12px; font-weight: 800;
      letter-spacing: 2.5px; text-transform: uppercase;
      border: none; border-radius: 6px;
      cursor: pointer; margin-top: 8px;
      transition: all .3s ease;
      box-shadow: 0 8px 24px rgba(201,168,76,0.25);
    }
    .form-submit:hover {
      transform: translateY(-2px);
      box-shadow: 0 16px 40px rgba(201,168,76,0.4);
    }

    /* ══════════════════════════════════════
       FOOTER
    ══════════════════════════════════════ */
    footer {
      background: var(--bg3);
      border-top: 1px solid rgba(166,124,42,0.18);
      padding: 48px 5% 32px;
    }

    .footer-top {
      display: flex; justify-content: space-between;
      align-items: flex-start; gap: 40px;
      flex-wrap: wrap;
      padding-bottom: 40px;
      border-bottom: 1px solid rgba(166,124,42,0.14);
    }

    .footer-brand p {
      font-size: 13px; color: var(--text2); line-height: 1.8;
      max-width: 320px; margin-top: 12px;
    }

    .footer-links h4 {
      font-size: 10px; font-weight: 700;
      letter-spacing: 2.5px; text-transform: uppercase;
      color: var(--gold); margin-bottom: 16px;
    }
    .footer-links ul { list-style: none; }
    .footer-links ul li { margin-bottom: 10px; }
    .footer-links ul li a {
      font-size: 13px; color: var(--text2); text-decoration: none;
      transition: color .25s;
    }
    .footer-links ul li a:hover { color: var(--teal); }

    .footer-bottom {
      display: flex; justify-content: space-between;
      align-items: center; flex-wrap: wrap; gap: 16px;
      margin-top: 32px;
    }
    .footer-bottom p {
      font-size: 12px; color: var(--gray);
    }
    .footer-accred {
      display: flex; gap: 16px; flex-wrap: wrap;
    }
    .footer-accred span {
      font-size: 10px; font-weight: 700;
      letter-spacing: 1.5px; text-transform: uppercase;
      color: var(--gold);
      padding: 4px 12px;
      border: 1px solid rgba(166,124,42,0.28);
      border-radius: 4px;
      background: rgba(166,124,42,0.06);
    }

    /* ══════════════════════════════════════
       ANIMATIONS
    ══════════════════════════════════════ */
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(24px); }
      to   { opacity: 1; transform: translateY(0); }
    }

    .reveal {
      opacity: 0; transform: translateY(32px);
      transition: opacity .7s ease, transform .7s ease;
    }
    .reveal.visible {
      opacity: 1; transform: translateY(0);
    }
    .reveal-delay-1 { transition-delay: .1s; }
    .reveal-delay-2 { transition-delay: .2s; }
    .reveal-delay-3 { transition-delay: .3s; }
    .reveal-delay-4 { transition-delay: .4s; }
    .reveal-delay-5 { transition-delay: .5s; }

    /* ══════════════════════════════════════
       MOBILE
    ══════════════════════════════════════ */
    @media (max-width: 900px) {
      .why-layout,
      .coverage-layout,
      .contact-layout { grid-template-columns: 1fr; gap: 40px; }

      .hero-stats { position: static; flex-wrap: wrap; }
      .hero-stat { flex: 1 1 50%; border-right: none;
        border-bottom: 1px solid rgba(166,124,42,0.12); }

      .process-steps::before { display: none; }

      .nav-links, .nav-cta { display: none; }
      .hamburger { display: flex; }

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

    @media (max-width: 600px) {
      section { padding: 70px 5%; }
      .hero-content { padding: 120px 5% 220px; }
      .hero-stat { flex: 1 1 100%; }
    }

    /* Mobile nav overlay */
    .mobile-menu {
      display: none; position: fixed; inset: 0; z-index: 999;
      background: rgba(248,244,238,0.98);
      flex-direction: column; align-items: center; justify-content: center;
      gap: 32px;
    }
    .mobile-menu.open { display: flex; }
    .mobile-menu a {
      font-size: 20px; font-weight: 700; color: var(--text);
      text-decoration: none; letter-spacing: 2px; text-transform: uppercase;
      transition: color .25s;
    }
    .mobile-menu a:hover { color: var(--gold); }
    .mobile-menu-close {
      position: absolute; top: 28px; right: 5%;
      font-size: 28px; cursor: pointer;
      background: none; border: none; color: var(--gold);
    }

.rp-form-notice {
  margin-bottom: 18px;
  padding: 14px 16px;
  border-radius: 6px;
  font-size: 13px;
  line-height: 1.6;
}

.rp-form-success {
  background: rgba(0, 110, 120, 0.08);
  border: 1px solid rgba(0, 110, 120, 0.25);
  color: var(--teal);
}

.rp-form-error {
  background: rgba(166, 124, 42, 0.08);
  border: 1px solid rgba(166, 124, 42, 0.25);
  color: var(--gold);
}

.contact-form form {
  display: block;
}

html {
  scroll-padding-top: 90px;
}

.admin-bar nav {
  top: 32px;
}

@media (max-width: 782px) {
  .admin-bar nav {
    top: 46px;
  }
}


/* Replaced header and footer logo sizing */
.site-logo-image,
.site-logo-full,
.site-logo-mark,
.nav-logo img,
.footer-brand img,
.footer-logo img{
  width: auto !important;
  height: auto !important;
  display: block;
}

.nav-logo img,
.site-logo-image,
.site-logo-full,
.site-logo-mark{
  max-height: 96px !important;
}

.footer-brand img,
.footer-logo img{
  max-height: 110px !important;
}

.site-header,
.header-inner,
.nav-inner{
  min-height: 108px !important;
}

@media (max-width: 768px){
  .nav-logo img,
  .site-logo-image,
  .site-logo-full,
  .site-logo-mark{
    max-height: 72px !important;
  }
  .footer-brand img,
  .footer-logo img{
    max-height: 84px !important;
  }
  .site-header,
  .header-inner,
  .nav-inner{
    min-height: 84px !important;
  }
}


.hero-onboarding{
  display:inline-block;
  margin:0 0 28px;
  padding:14px 18px;
  max-width:760px;
  background:rgba(255,252,245,0.88);
  border:1px solid rgba(166,124,42,0.24);
  border-left:4px solid var(--gold);
  border-radius:14px;
  color:var(--charcoal);
  font-size:0.98rem;
  line-height:1.65;
  box-shadow:0 12px 30px rgba(0,0,0,0.04);
}
@media (max-width: 768px){
  .hero-onboarding{
    padding:12px 14px;
    margin-bottom:22px;
    font-size:0.94rem;
  }
}


.footer-contact-link{
  display:flex;
  justify-content:flex-end;
  align-items:center;
}

.footer-contact-link a{
  color: var(--gold, #b58f2a) !important;
  text-decoration: none !important;
  font-weight: 700 !important;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.82rem;
}

.footer-contact-link a:hover{
  color: var(--gold, #b58f2a) !important;
  text-decoration: none !important;
  opacity: 0.92;
}


/* Remove map in favor of cleaner coverage summary */
.coverage-summary{
  display:flex;
  align-items:stretch;
}
.coverage-summary-card{
  width:100%;
  padding:28px;
  background:rgba(255,255,255,0.72);
  border:1px solid rgba(23,140,160,0.16);
  border-radius:24px;
  box-shadow:0 18px 40px rgba(0,0,0,0.04);
}
.coverage-summary-tag{
  display:inline-block;
  margin-bottom:12px;
  padding:6px 12px;
  border-radius:999px;
  background:rgba(201,168,76,0.10);
  color:var(--gold);
  font-size:0.78rem;
  letter-spacing:0.12em;
  text-transform:uppercase;
  font-weight:700;
}
.coverage-summary-card h3{
  margin:0 0 12px;
  font-size:1.65rem;
}
.coverage-summary-card p{
  margin:0 0 14px;
}
.coverage-summary-list{
  margin:0;
  padding-left:18px;
}
.coverage-summary-list li{
  margin:8px 0;
}


/* Center the coverage summary heading block */
.coverage-summary-card{
  text-align:center;
}
.coverage-summary-tag{
  margin-left:auto;
  margin-right:auto;
}
.coverage-summary-card p{
  max-width: 760px;
  margin-left:auto;
  margin-right:auto;
}


/* Center the coverage summary card within the section */
.coverage-layout{
  display:flex !important;
  justify-content:center !important;
  align-items:flex-start !important;
}
.coverage-summary{
  width:100%;
  display:flex !important;
  justify-content:center !important;
}
.coverage-summary-card{
  margin-left:auto !important;
  margin-right:auto !important;
  max-width:900px;
}


/* Tighten footer after removing resources column */
.footer-grid{
  align-items:start;
}


.footer-legal-inline{
  display:flex;
  justify-content:flex-end;
  align-items:center;
  gap:10px;
  margin-bottom:10px;
  flex-wrap:wrap;
}

.footer-legal-inline a{
  color: inherit;
  text-decoration:none;
  font-size:0.92rem;
}

.footer-legal-inline a:hover{
  text-decoration:underline;
}

.footer-legal-sep{
  opacity:0.6;
}

@media (max-width: 768px){
  .footer-legal-inline{
    justify-content:center;
  }
}


/* Footer legal links refinement */
.footer-legal-inline{
  display:flex;
  justify-content:flex-end;
  align-items:center;
  gap:18px;
  margin-bottom:10px;
  flex-wrap:wrap;
}

.footer-legal-inline a{
  color: inherit;
  text-decoration:none;
  font-size:0.72rem;
  line-height:1.2;
}

.footer-legal-inline a:hover{
  text-decoration:underline;
}

.footer-legal-sep{
  display:none;
}

@media (max-width: 768px){
  .footer-legal-inline{
    justify-content:center;
    gap:14px;
  }
}


/* Align footer legal links with email on the same level */
.footer-bottom-right{
  display:flex;
  align-items:center;
  justify-content:flex-end;
  gap:18px;
  flex-wrap:wrap;
}

.footer-legal-inline{
  display:flex;
  align-items:center;
  justify-content:flex-end;
  gap:18px;
  margin-bottom:0 !important;
  line-height:1;
}

.footer-legal-inline a{
  font-size:0.72rem;
  line-height:1;
  display:inline-flex;
  align-items:center;
}

.footer-contact-link{
  display:flex;
  align-items:center;
  margin:0 !important;
  line-height:1;
}

.footer-contact-link a{
  display:inline-flex;
  align-items:center;
  line-height:1;
}

.footer-linkedin{
  display:flex;
  justify-content:flex-end;
  align-items:center;
  margin-top:6px;
}
.footer-linkedin a{
  display:inline-flex;
  align-items:center;
  gap:6px;
  color: var(--gold, #b58f2a) !important;
  text-decoration: none !important;
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.05em;
  transition: opacity .2s ease;
}
.footer-linkedin a:hover{
  opacity: 0.8;
}
.footer-linkedin svg{
  flex-shrink:0;
}

@media (max-width: 768px){
  .footer-bottom-right{
    justify-content:center;
  }
}

/* ── Onboarding Notice ── */
.onboarding-notice {
  background: linear-gradient(90deg, #0a1628 0%, #0d1f3c 100%);
  border-top: 2px solid rgba(196,160,80,0.35);
  border-bottom: 2px solid rgba(196,160,80,0.35);
  padding: 18px 24px;
}
.onboarding-notice-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.onboarding-notice-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #c4a050;
  flex-shrink: 0;
  box-shadow: 0 0 8px rgba(196,160,80,0.7);
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 8px rgba(196,160,80,0.7); }
  50%       { box-shadow: 0 0 16px rgba(196,160,80,1); }
}
.onboarding-notice p {
  margin: 0;
  color: rgba(255,255,255,0.85);
  font-size: 0.92rem;
  font-family: 'Montserrat', sans-serif;
  flex: 1;
  min-width: 200px;
}
.onboarding-notice-cta {
  color: #c4a050;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  letter-spacing: 0.03em;
  transition: opacity 0.2s;
}
.onboarding-notice-cta:hover { opacity: 0.75; }
@media (max-width: 600px) {
  .onboarding-notice-inner { gap: 10px; }
  .onboarding-notice p { font-size: 0.85rem; }
}

/* ── Footer icon logo ── */
.footer-icon-logo {
  display: inline-flex;
  margin-bottom: 14px;
}
.footer-icon-logo img {
  height: 90px;
  width: auto;
  object-fit: contain;
}

/* ── Onboarding Notice — enhanced ── */
.onboarding-notice {
  background: linear-gradient(90deg, #071120 0%, #0d1f3c 50%, #071120 100%) !important;
  border-top: 3px solid rgba(196,160,80,0.6) !important;
  border-bottom: 3px solid rgba(196,160,80,0.6) !important;
  padding: 26px 28px !important;
}
.onboarding-notice-inner {
  gap: 18px !important;
}
.onboarding-notice-dot {
  width: 14px !important;
  height: 14px !important;
}
.onboarding-notice p {
  font-size: 1.05rem !important;
  color: rgba(255,255,255,0.95) !important;
  font-weight: 500 !important;
  letter-spacing: 0.01em;
}
.onboarding-notice-cta {
  font-size: 0.95rem !important;
  background: rgba(196,160,80,0.12);
  border: 1px solid rgba(196,160,80,0.45);
  border-radius: 6px;
  padding: 8px 16px;
  transition: background 0.2s, opacity 0.2s !important;
}
.onboarding-notice-cta:hover {
  background: rgba(196,160,80,0.22) !important;
  opacity: 1 !important;
}

/* ── Legal Pages ── */
.legal-page-wrap {
  background: #f8f7f4;
  min-height: 80vh;
  padding: 120px 24px 80px;
}
.legal-page-inner {
  max-width: 820px;
  margin: 0 auto;
  background: #fff;
  border-radius: 12px;
  padding: 56px 64px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.07);
}
.legal-page-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  color: #0a1628;
  margin-bottom: 32px;
  padding-bottom: 16px;
  border-bottom: 2px solid rgba(0,110,120,0.15);
}
.legal-page-body {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  line-height: 1.8;
  color: #333;
}
.legal-page-body h2,
.legal-page-body h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: #0a1628;
  margin-top: 32px;
  margin-bottom: 12px;
}
.legal-page-body h2 { font-size: 1.3rem; }
.legal-page-body h3 { font-size: 1.1rem; }
.legal-page-body ul {
  padding-left: 20px;
  margin-bottom: 16px;
}
.legal-page-body a {
  color: #006e78;
  text-decoration: underline;
}
.legal-page-back {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid #e5e5e5;
}
.legal-page-back a {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: #006e78;
  text-decoration: none;
}
.legal-page-back a:hover { text-decoration: underline; }
@media (max-width: 600px) {
  .legal-page-inner { padding: 32px 24px; }
  .legal-page-title { font-size: 1.6rem; }
}

/* ── Content Pages (Canada, Services, About, etc.) ── */
/* Matches the warm ivory homepage aesthetic with gold/teal accents */

.content-page-wrap {
  background: linear-gradient(160deg, #F8F4EE 0%, #EDE3D5 60%, #E4D8C6 100%);
  min-height: 80vh;
  padding: 140px 24px 100px;
  position: relative;
  overflow: hidden;
}
.content-page-wrap::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0,110,120,0.08), transparent 70%);
  pointer-events: none;
}
.content-page-wrap::after {
  content: '';
  position: absolute;
  bottom: -150px;
  left: -150px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(166,124,42,0.10), transparent 70%);
  pointer-events: none;
}
.content-page-inner {
  max-width: 1100px;
  margin: 0 auto;
  background: rgba(255,255,255,0.75);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 64px 72px;
  box-shadow: 0 8px 40px rgba(10,22,40,0.08);
  position: relative;
  z-index: 1;
  border: 1px solid rgba(255,255,255,0.6);
}
.content-page-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.6rem;
  font-weight: 700;
  color: #0a1628;
  margin: 0 0 32px;
  padding-bottom: 20px;
  line-height: 1.2;
  position: relative;
}
.content-page-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold2));
  border-radius: 2px;
}
.content-page-body {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  line-height: 1.8;
  color: #2c3e50;
}
.content-page-body p {
  margin-bottom: 18px;
}
.content-page-body h2 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.9rem;
  color: #0a1628;
  margin-top: 56px;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid rgba(0,110,120,0.18);
  line-height: 1.3;
}
.content-page-body h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  color: #006e78;
  margin-top: 36px;
  margin-bottom: 14px;
  letter-spacing: 0.01em;
  line-height: 1.4;
}
.content-page-body ul {
  padding-left: 24px;
  margin-bottom: 22px;
}
.content-page-body ul li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 4px;
}
.content-page-body ul li::marker {
  color: var(--gold);
}
.content-page-body ol {
  padding-left: 24px;
  margin-bottom: 22px;
}
.content-page-body ol li {
  margin-bottom: 10px;
}
.content-page-body a {
  color: #006e78;
  text-decoration: none;
  border-bottom: 1px solid rgba(0,110,120,0.3);
  transition: color 0.2s, border-color 0.2s;
}
.content-page-body a:hover {
  color: var(--gold);
  border-bottom-color: var(--gold);
}
.content-page-body strong {
  color: #0a1628;
  font-weight: 700;
}
.content-page-body em {
  color: #555;
}
.content-page-body blockquote {
  border-left: 3px solid var(--gold);
  padding: 16px 24px;
  margin: 24px 0;
  background: rgba(255,255,255,0.5);
  border-radius: 0 8px 8px 0;
  font-style: italic;
  color: #444;
}
.content-page-body img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  margin: 24px 0;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}
@media (max-width: 768px) {
  .content-page-wrap {
    padding: 100px 16px 60px;
  }
  .content-page-inner {
    padding: 40px 28px;
    border-radius: 16px;
  }
  .content-page-title {
    font-size: 1.9rem;
  }
  .content-page-body h2 {
    font-size: 1.5rem;
    margin-top: 40px;
  }
  .content-page-body h3 {
    font-size: 1.15rem;
    margin-top: 28px;
  }
}
