
    :root{
      --bg: #ffffff;
      --ink: #0f172a;
      --muted: #64748b;
      --line: rgba(15, 23, 42, .14);

      --brand-navy: #243a60;
      --brand-blue: #5d78ad;
      --brand-gold: #b6934a;
      --brand-lilac: #8f8ad8;

      --serif: "Bodoni Moda", "Bodoni MT", "Didot", serif;
      --sans: "Plus Jakarta Sans", system-ui, -apple-system, sans-serif;

      --radius: 18px;
      --shadow: 0 12px 30px rgba(15,23,42,.12);
      --container: 1180px;
    }

    *{ box-sizing: border-box; }
    html{ scroll-behaviour: smooth; }
    body{
      margin: 0;
      font-family: var(--sans);
      color: var(--ink);
      background: var(--bg);
      overflow-x: hidden;
    }
    a{ color: inherit; text-decoration: none; }
    img{ max-width: 100%; display: block; }

    /* Typography hierarchy */
    h1{
      font-family: var(--serif);
      font-weight: 500;
      font-size: clamp(38px, 4.4vw, 60px);
      line-height: 1.08;
      margin: 0;
      color: rgba(15,23,42,.92);
    }
    h2{
      font-family: var(--serif);
      font-weight: 500;
      font-size: clamp(30px, 2.8vw, 46px);
      line-height: 1.12;
      margin: 0;
      color: rgba(15,23,42,.92);
    }
    h3{
      font-family: var(--serif);
      font-weight: 500;
      font-size: clamp(22px, 2.2vw, 34px);
      line-height: 1.15;
      margin: 0;
      color: rgba(15,23,42,.92);
    }
    h4{
      font-family: var(--serif);
      font-weight: 600;
      font-size: clamp(18px, 1.6vw, 24px);
      line-height: 1.25;
      margin: 0;
      color: rgba(15,23,42,.92);
    }
    p{
      font-size: 16px;
      line-height: 1.7;
      margin: 0;
      color: rgba(15,23,42,.68);
    }

    .container{
      width: min(var(--container), calc(100% - 48px));
      margin: 0 auto;
    }

    /* Semi-hero for internal pages (About, Contact, Gallery) */
    .page-hero{
      height: clamp(260px, 39vh, 380px);
      background: #001D51;
      display: grid;
      place-items: center;
      text-align: center;
      color: #fff;
      position: relative;
      overflow: hidden;
    }
    .page-hero::before{
      content: '';
      position: absolute;
      inset: 0;
      background: url('background-pattern.jpg');
      background-size: cover;
      background-position: center;
      opacity: 0.8;
    }
    .page-hero .container{
      position: relative;
    }
    .page-hero h1{
      color: #fff;
      letter-spacing: .06em;
    }

    .section{
      padding: 96px 0;
    }

    /* Legal pages (Privacy, Terms) */
    .legal-content{
      max-width: 65ch;
      margin: 0 auto;
    }
    .legal-content h2{
      margin-top: 2.2em;
      margin-bottom: 0.5em;
    }
    .legal-content h2:first-of-type{ margin-top: 0; }
    .legal-content h3{
      margin-top: 1.6em;
      margin-bottom: 0.4em;
    }
    .legal-content p{
      margin-bottom: 1em;
    }
    .legal-content ul{
      margin: 0 0 1.2em;
      padding-left: 1.4em;
    }
    .legal-content li{
      margin-bottom: 0.5em;
      color: rgba(15,23,42,.68);
      font-size: 16px;
      line-height: 1.65;
    }
    .legal-content a{
      color: var(--brand-blue);
      text-decoration: underline;
      text-underline-offset: 2px;
    }
    .legal-content a:hover{
      color: var(--brand-lilac);
    }
    .legal-intro{
      font-size: 17px;
      line-height: 1.7;
      color: rgba(15,23,42,.78);
    }
    .legal-updated{
      margin-top: 2.5em;
      font-size: 14px;
      color: rgba(15,23,42,.5);
    }
    .legal-back{
      margin-top: 2em;
      padding-top: 1.5em;
      border-top: 1px solid var(--line);
    }

    /* Header */
    .site-header{
      position: sticky;
      top: 0;
      z-index: 1000;
      backdrop-filter: blur(10px);
      background: rgba(255,255,255,.86);
      border-bottom: 1px solid var(--line);
    }
    .nav{
      display: grid;
      grid-template-columns: 150px 1fr 150px;
      align-items: center;
      gap: 12px;
      padding: 14px 0;
    }
    .header-slot--left{ min-width: 0; }
    .header-slot--center{ min-width: 0; display: flex; justify-content: center; }
    .header-slot--right{ min-width: 0; display: flex; justify-content: flex-end; }
    .site-header .btn-header{
      padding: 12px 24px;
      font-size: 13px;
      letter-spacing: .08em;
    }
    .brand{
      display: flex;
      align-items: center;
      gap: 12px;
    }
    .brand .logo{
      width: 40px;
      border:0;
      border-radius: 999px;
      display: grid;
      place-items: centre;
      overflow: hidden;
    }
    .brand .logo span{
      font-family: var(--serif);
      font-weight: 600;
      letter-spacing: .06em;
    }

    .brand .logo img{
      border-radius: 120px;
      border: 1.5px solid black;
    }

    .nav-links{
      display: flex;
      justify-content: center;
      gap: 28px;
      font-size: 13px;
      letter-spacing: .18em;
      text-transform: uppercase;
      color: rgba(15,23,42,.72);
    }
    .nav-links a{
      position: relative;
      padding: 8px 0;
    }
    .nav-links a::after{
      content: "";
      position: absolute;
      left: 0;
      bottom: 4px;
      width: 0%;
      height: 1px;
      background: currentColor;
      opacity: .5;
      transition: width .2s ease;
    }
    .nav-links a:hover::after{ width: 100%; }

    .nav-cta{
      display: flex;
      justify-content: flex-end;
      gap: 10px;
      align-items: center;
    }

    .btn{
      border: 0;
      cursor: pointer;
      font-family: var(--sans);
      border-radius: 0;
      padding: 18px 36px;
      font-weight: 100;
      letter-spacing: 1px;
      transition: all .15s ease;
      display: inline-flex;
      justify-content: center;
      gap: 10px;
      white-space: nowrap;
      position: relative;
      overflow: hidden;
    }
    .btn:active{ transform: translateY(1px); }

    .btn-primary{
      background: #2c3441;
      color: #fff;
      box-shadow: 0 8px 20px rgba(93,120,173,.18);
    }
    .btn-primary:hover{
      background: #454e5c;
    }

    .btn-ghost{
      background: transparent;
      border: 1px solid var(--line);
      color: rgba(15,23,42,.8);
    }
    .btn-ghost:hover{
      opacity: 0.6;
      background: rgba(15,23,42,.06);
    }

    /* Burger Menu Icon */
    .burger{
      display: none;
      width: 44px;
      height: 44px;
      border-radius: 12px;
      border: 1px solid var(--line);
      background: #fff;
      cursor: pointer;
      align-items: center;
      justify-content: center;
      position: relative;
      z-index: 1001;
    }
    .burger span{
      display: block;
      width: 20px;
      height: 2px;
      background: var(--brand-navy);
      position: relative;
      transition: background .25s ease;
    }
    .burger span::before,
    .burger span::after{
      content: "";
      position: absolute;
      left: 0;
      width: 20px;
      height: 2px;
      background: var(--brand-navy);
      transition: transform .35s cubic-bezier(0.68, -0.6, 0.32, 1.6), top .35s cubic-bezier(0.68, -0.6, 0.32, 1.6);
    }
    .burger span::before{ top: -7px; }
    .burger span::after{ top: 7px; }
    
    /* Burger Animated to X */
    .burger[aria-expanded="true"] span{
      background: transparent;
    }
    .burger[aria-expanded="true"] span::before{
      top: 0;
      transform: rotate(45deg);
    }
    .burger[aria-expanded="true"] span::after{
      top: 0;
      transform: rotate(-45deg);
    }

    /* Mobile Menu Overlay */
    .mobile-drawer{
      position: fixed;
      top: 0;
      left: 0;
      width:100vw;
      height:100vh;
      background: white;
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      padding: 140px 32px 48px;
      opacity: 0;
      visibility: hidden;
      transform: translateY(-12px);
      transition: 
        opacity .4s cubic-bezier(0.16, 1, 0.3, 1),
        transform .4s cubic-bezier(0.16, 1, 0.3, 1),
        visibility 0s .4s;
      z-index: 998;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 0;
    }
    .mobile-drawer.open{
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
      transition: 
        opacity .4s cubic-bezier(0.16, 1, 0.3, 1),
        transform .4s cubic-bezier(0.16, 1, 0.3, 1),
        visibility 0s 0s;
    }
    .mobile-drawer a{
      display: block;
      padding: 20px 0;
      letter-spacing: .22em;
      text-transform: uppercase;
      font-size: 15px;
      font-weight: 500;
      color: var(--brand-navy);
      text-align: center;
      opacity: 0;
      transform: translateY(10px);
      transition: opacity .3s ease, transform .3s ease, color .2s ease;
    }
    .mobile-drawer.open a{
      opacity: 1;
      transform: translateY(0);
    }
    .mobile-drawer.open a:nth-child(1){ transition-delay: .1s; }
    .mobile-drawer.open a:nth-child(2){ transition-delay: .15s; }
    .mobile-drawer.open a:nth-child(3){ transition-delay: .2s; }
    .mobile-drawer.open a:nth-child(4){ transition-delay: .25s; }
    .mobile-drawer.open a:nth-child(5){ transition-delay: .3s; }
    .mobile-drawer a:hover{
      color: var(--brand-lilac);
    }

    /* Hero */
    .hero{
      position: relative;
      height: clamp(520px, 78vh, 760px);
      overflow: hidden;
    }
    .hero .hero-bg{
      position: absolute;
      inset: 0;
      background-image:url('hero-2.jpg');
      background-size: cover;
      background-position: center;
      transform: scale(1.02);
    }
    .hero .hero-content{
      position: relative;
      height: 100%;
      display: grid;
      place-items: centre;
      text-align: center;
      color: #fff;
      padding: 60px 0;
    }
    .hero-stack{
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 10px;
    }
    .hero-wordmark{
      width: min(400px, 90vw);
      display: block;
      margin: 0 auto;
    }
    .hero-footer{
      margin-top: 4px;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 8px;
    }
    .hero .mark{
      width: 70px;
      border-radius: 999px;
      border: 2px solid rgba(255, 255, 255, .75);
      display: grid;
      place-items: center;
      margin: 0 auto;
      background: rgba(0, 0, 0, .15);
    }
    .hero .mark span{
      font-family: var(--serif);
      font-size: 28px;
      letter-spacing: .08em;
      opacity: .95;
    }
    .hero h1{
      letter-spacing: .08em;
      text-align:center;
      color: #fff;
      font-size: clamp(28px, 4.2vw, 52px) !important;
    }
    .hero h1 em{
      display: block;
      font-style: italic;
      letter-spacing: .02em;
      text-transform: none;
      font-weight: 400;
      font-size: clamp(28px, 4.2vw, 52px);
      margin-top: 6px;
    }
    .hero .subtitle{
      margin: 0;
      font-family: var(--serif);
      font-size: clamp(16px, 1.55vw, 20px);
      opacity: .94;
    }
    .hero .meta{
      margin: 0;
      text-align: center;
      width: 100%;
      font-size: 13px;
      letter-spacing: .14em;
      opacity: .85;
    }
    .hero .coverage-areas{
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      justify-content: center;
      align-items: center;
    }
    .hero .coverage-label{
      width: 100%;
      font-size: clamp(11px, 1vw, 13px);
      letter-spacing: .08em;
      opacity: .85;
    }
    .hero .coverage-badge{
      display: inline-block;
      padding: 6px 12px;
      font-family: var(--sans);
      font-size: clamp(12px, 1.1vw, 14px);
      letter-spacing: 1px;
      color: rgba(255, 255, 255, .95);
      background: rgb(23 22 22 / 50%);
      backdrop-filter: blur(12px);
      white-space: nowrap;
    }

      

/* --- Intro section fix --- */

.intro-section {
  padding: 96px 0;
  overflow:hidden;
}

.intro-grid {
  display: grid;
  grid-template-columns: 1.05fr 1.4fr;
  gap: 36px;
  align-items: center;
}

.intro-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 72px;
  align-items: center;
}

/* Feature Image with offset border */
.feature-image{
  position: relative;
}
.feature-image::before{
  content: '';
  position: absolute;
  top: 24px;
  left: -24px;
  right: 24px;
  bottom: -24px;
  border: 1px solid rgba(15,23,42,.18);
  pointer-events: none;
}
.feature-image img{
  position: relative;
  width: 100%;
  display: block;
  box-shadow: 0 24px 48px rgba(15,23,42,.12);
}

/* Feature Content */
.feature-content h2{
  margin-bottom: 24px;
}
.feature-content p{
  margin-bottom: 18px;
  color: rgba(15,23,42,.65);
}
.feature-content p:last-of-type{
  margin-bottom: 0;
}

/* Stats */
.feature-stats{
  display: flex;
  gap: 50px;
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid rgba(15,23,42,.10);
}
.stat{
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.stat-number{
  font-family: var(--serif);
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 400;
  color: var(--brand-navy);
  line-height: 1;
  letter-spacing: -0.02em;
}
.stat-label{
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(15,23,42,.5);
}

/* TEXT SIDE */

.intro-heading {
  display: grid;
  grid-template-columns: 64px 1fr;
  column-gap: 20px;
  align-items: start;
}

.accent-line {
  width: 64px;
  height: 2px;
  background: var(--brand-navy);
  margin:auto;
}

    .intro-text h2 {
  /* Uses global h2 styles */
}

.intro-text p {
  margin-top: 22px;
  color: var(--muted);
  line-height: 1.7;
}

/* GALLERY SIDE */

.intro-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  position: relative;
}

.gallery-card {
  overflow: hidden;
  background: #f3f3f3;
  box-shadow: 0 18px 40px rgba(15,23,42,.12);
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* RESPONSIVE */

@media (max-width: 980px) {
  .intro-grid {
    grid-template-columns: 1fr;
    gap:24px;
  }

  .intro-grid-2 {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .feature-image::before{
    top: 16px;
    left: -16px;
    right: 16px;
    bottom: -16px;
  }
  .feature-stats{
    gap: 36px;
  }

  .intro-gallery {
    left: 0;
  }

}


    .photo-strip{
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 16px;
      align-items: stretch;
    }
    .photo-strip .ph{
      overflow: hidden;
      box-shadow: var(--shadow);
      border: 1px solid rgba(15,23,42,.10);
      background: #fff;
      aspect-ratio: 3 / 4;
      position: relative;
    }
    .photo-strip .ph img{
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    .photo-strip .ph::after{
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(0,0,0,.18), rgba(0,0,0,0));
      opacity: .55;
      pointer-events: none;
    }

    /* Testimonials - Light Mode */
    .testimonials{
      position: relative;
      padding: 74px 0 86px;
      background: linear-gradient(135deg, #e0e8ed 0%, #aec1cd 100%);
      border-top: 1px solid rgba(93,120,173,.12);
      border-bottom: 1px solid rgba(93,120,173,.12);
    }
    .testimonials::before{
      content: '';
      position: absolute;
      inset: 0;
      background: url('brand-pattern.svg') repeat;
      background-size: 200px 200px;
      opacity: 0;
      filter: brightness(2);
      pointer-events: none;
    }
    .testimonials .container{
      position: relative;
      z-index: 1;
    }
    .testimonials h3{
      letter-spacing: .04em;
      text-align: center;
      color: rgba(15,23,42,.92);
      margin: 0 0 28px;
    }
    .cards{
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 22px;
      align-items: stretch;
    }
    .card{
      background: #fff;
      border: 1px solid rgba(93,120,173,.18);

      box-shadow: 0 12px 32px rgba(15,23,42,.08);
      padding: 22px;
      display: grid;
      grid-template-columns: 52px 1fr;
      gap: 14px;
      align-content: start;
      min-height: 150px;
      transition: transform .2s ease, box-shadow .2s ease;
      position: relative;
    }
    .card::before{
      content: '"';
      position: absolute;
      top: 18px;
      left: 18px;
      font-size: 80px;
      font-family: var(--serif);
      color: rgba(182,147,74,.08);
      line-height: 1;
      pointer-events: none;
    }
    .card:hover{
      transform: translateY(-2px);
      box-shadow: 0 16px 40px rgba(93,120,173,.16);
    }
    .avatar{
      width: 52px;
      height: 52px;
      border-radius: 999px;
      overflow: hidden;
      border: 1px solid rgba(15,23,42,.14);
      background: #fff;
    }
    .avatar img{ width: 100%; height: 100%; object-fit: cover; }
    .quote{
      margin: 0;
      color: rgba(15,23,42,.84);
      line-height: 1.6;
      position: relative;
    }
    .stars{
      display: flex;
      gap: 3px;
      margin:14px 0;
    }
    .stars svg{
      width: 16px;
      height: 16px;
      fill: var(--brand-gold);
      stroke: none;
    }
    .by{
      margin-top: 10px;
      font-size: 12px;
      letter-spacing: .10em;
      text-transform: uppercase;
      color: rgba(15,23,42,.55);
    }

    /* How it works */
    .how{
      position: relative;
      overflow: hidden;
      padding: 0;
    }
    .how .bg{
      position: absolute;
      inset: 0;
      background-image:
        url("how-it-works-bg.jpg");
      background-size: cover;
      background-position: center;
    }
    .how .inner{
      position: relative;
      padding: 90px 0;
      align-items: center;
    min-height: 90vh;
    display: flex;
    }
    .how h3{
      text-align: center;
      color: rgba(255,255,255,.92);
      margin: 0 0 28px;
      letter-spacing: .04em;
    }
    .steps{
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 23px;
      align-items: stretch;
    }
    .step{
          background: rgb(255 255 255 / 70%);
    padding: 28px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .22);
    min-height: 210px;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    }
    .step .num{
      font-family: var(--serif);
      font-size: 52px;
      line-height: 1;
      opacity: .9;
      color: rgba(15,23,42,.75);
      margin-bottom: 10px;
    }
    .step h4{
      margin: 0 0 8px;
    }
    .step p{
      margin: 0;
      color: rgba(15,23,42,.68);
      line-height: 1.65;
      max-width: 50ch;
    }

    /* Footer - Compact Blue Section */
    footer{
      background: linear-gradient(135deg, rgba(18,31,60,.98), rgba(24,38,72,.96));
      padding: 48px 0 28px;
      position: relative;
      overflow: hidden;
    }
    footer::before{
      content: '';
      position: absolute;
      top: 0;
      right: 0;
      width: 600px;
      height: 600px;
      background: radial-gradient(circle, rgba(93,120,173,.12), transparent 70%);
      pointer-events: none;
    }
    .footer-content{
      position: relative;
      text-align: center;
      display: grid;
      gap: 28px;
      justify-items: center;
    }
    .footer-logo{
      width: 60px;
      height: auto;
    }
    .footer-links{
      display: flex;
      gap: 32px;
      flex-wrap: wrap;
      justify-content: center;
      align-items: center;
    }
    .footer-links a{
      font-size: 13px;
      letter-spacing: .16em;
      text-transform: uppercase;
      color: rgba(255,255,255,.7);
      transition: color .2s ease;
    }
    .footer-links a:hover{
      color: rgba(255,255,255,.95);
    }
    .footer-divider{
      width: 1px;
      height: 14px;
      background: rgba(255,255,255,.2);
    }
    .footer-social{
      display: flex;
      gap: 16px;
      align-items: center;
    }
    .social-icon{
      width: 42px;
      height: 42px;
      border-radius: 50%;
      background: rgba(255,255,255,.95);
      display: grid;
      place-items: center;
      transition: transform .2s ease, box-shadow .2s ease;
    }
    .social-icon:hover{
      transform: translateY(-2px);
      box-shadow: 0 8px 20px rgba(0,0,0,.2);
    }
    .social-icon svg{
      width: 20px;
      height: 20px;
      stroke: var(--brand-navy);
      fill: none;
      stroke-width: 2;
    }
    .footer-bottom{
      margin-top: 32px;
      padding-top: 24px;
      border-top: 1px solid rgba(255,255,255,.12);
      display: flex;
      justify-content: center;
      gap: 16px;
      flex-wrap: wrap;
      font-size: 12px;
      color: rgba(255,255,255,.5);
    }
    .footer-bottom a{
      color: rgba(255,255,255,.6);
      transition: color .2s ease;
    }
    .footer-bottom a:hover{
      color: rgba(255,255,255,.9);
    }

    .insta-grid{
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 10px;
      margin-top: 16px;
    }
    .insta-grid a{
      display: block;
      border-radius: 12px;
      overflow: hidden;
      border: 1px solid rgba(15,23,42,.10);
      background: rgba(15,23,42,.03);
      aspect-ratio: 1 / 1;
      position: relative;
    }
    .insta-grid a span{
      position: absolute;
      inset: 0;
      display: grid;
      place-items: centre;
      font-size: 12px;
      letter-spacing: .10em;
      text-transform: uppercase;
      color: rgba(15,23,42,.55);
      padding: 10px;
      text-align: centre;
    }

    .form{
      display: grid;
      gap: 12px;
      max-width: 100%;
    }
    .field{
      display: grid;
      gap: 6px;
    }
    label{
      font-size: 12px;
      letter-spacing: .12em;
      text-transform: uppercase;
      color: rgba(15,23,42,.70);
    }
    input, textarea{
      width: 100%;
      padding: 12px 14px;
      border: 1px solid rgba(15,23,42,.14);
      font-family: var(--sans);
      font-size: 14px;
      outline: none;
      background: #fff;
    }
    textarea{ min-height: 120px; resize: vertical; }
    input:focus, textarea:focus{
      border-color: rgba(93,120,173,.55);
      box-shadow: 0 0 0 4px rgba(93,120,173,.14);
    }
    .form-row{
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
    }
    .form-actions{
      display: flex;
      gap: 10px;
      align-items: centre;
      margin-top: 6px;
    }
    .fine{
      font-size: 12px;
      color: rgba(15,23,42,.55);
      line-height: 1.5;
    }

    .toast{
      position: fixed;
      left: 50%;
      bottom: 22px;
      transform: translateX(-50%);
      background: rgba(15,23,42,.92);
      color: #fff;
      padding: 12px 14px;
      border-radius: 12px;
      box-shadow: 0 18px 50px rgba(0,0,0,.25);
      font-size: 13px;
      opacity: 0;
      pointer-events: none;
      transition: opacity .2s ease, transform .2s ease;
    }
    .toast.show{
      opacity: 1;
      transform: translateX(-50%) translateY(-2px);
    }

    /* Utilities */
    .sr-only{
      position: absolute;
      width: 1px;
      height: 1px;
      padding: 0;
      margin: -1px;
      overflow: hidden;
      clip: rect(0,0,0,0);
      white-space: nowrap;
      border: 0;
    }

  /* Site Footer */
  .site-footer{
    background: linear-gradient(rgba(18, 31, 60, 0.25), rgba(18, 31, 60, 0.25)), url('footer-background.jpg') center / cover no-repeat;
    padding: 48px 24px 32px;
    text-align: center;
  }
  .footer-logo{
    width: 56px;
    height: auto;
    border: 1.5px solid rgba(255,255,255,.5);
    border-radius: 999px;
    margin: 0 auto 14px;
    display: block;
  }
  .footer-wordmark{
    width: min(260px, 65vw);
    height: auto;
    margin: 0 auto 24px;
    display: block;
  }
  .footer-nav{
    display: flex;
    gap: 28px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 36px;
  }
  .footer-nav a{
    font-size: 12px;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: rgba(255,255,255,.7);
    text-decoration: none;
  }
  .footer-nav a:hover{
    color: #fff;
  }
  .footer-cols{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 700px;
    margin: 0 auto 28px;
  }
  .footer-col{
    font-size: 13px;
    line-height: 2;
    color: rgba(255,255,255,.65);
  }
  .footer-col a{
    color: rgba(255,255,255,.7);
    text-decoration: none;
  }
  .footer-col a:hover{
    color: #fff;
  }
  .footer-legal{
    margin-bottom: 20px;
  }
  .footer-legal a{
    font-size: 11px;
    letter-spacing: .08em;
    color: rgba(255,255,255,.5);
    text-decoration: none;
    margin: 0 10px;
  }
  .footer-legal a:hover{
    color: rgba(255,255,255,.8);
  }
  .footer-accreditation{
    font-size: 13px;
    line-height: 2;
    color: rgba(255,255,255,.65);
    margin-bottom: 8px;
  }
  .footer-copy{
    font-size: 11px;
    color: rgba(255,255,255,.35);
  }
  @media (max-width: 550px){
    .footer-cols{
      grid-template-columns: 1fr;
      gap: 20px;
    }
  }

  .larger-btn{
    padding: 18px 24px;
    font-size: 15px;
  }

    /* Responsive */
    @media (max-width: 980px){
      .nav{
        grid-template-columns: 1fr auto;
        grid-template-areas: "brand burger";
        align-items: center;
      }
      .header-slot--left{ grid-area: brand; }
      .header-slot--center,
      .header-slot--right{ display: none; }
      .burger{ grid-area: burger; display: inline-flex; justify-self: end; }
      .nav-links{ display: none; }
      .nav-cta{ display: none !important; }
      .mobile-drawer a.mobile-cta{
        background: #2c3441;
        color: #fff !important;
        border-radius: 0;
        padding: 14px 32px !important;
        margin-top: 32px;
        font-weight: 500;
        font-size: 13px;
        letter-spacing: .08em;
        box-shadow: 0 8px 20px rgba(93,120,173,.18);
      }
      .mobile-drawer a.mobile-cta:hover{
        background: #454e5c;
        color: #fff !important;
      }

      .intro{ grid-template-columns: 1fr; }
      .photo-strip{ grid-template-columns: repeat(3, 1fr); }
      .cards{ grid-template-columns: 1fr; }
      .steps{ grid-template-columns: 1fr; }
      .footer-inner{ grid-template-columns: 1fr; }
    }
    @media (max-width: 640px){
      .photo-strip{ grid-template-columns: 1fr; }
      .photo-strip .ph{ aspect-ratio: 16 / 10; }
      .form-row{ grid-template-columns: 1fr; }
      .nav-cta{ flex-wrap: wrap; justify-content: flex-end; }
    }

    /* ─── Section fade-in ─────────────────────────────────────────── */
    .fade-section{
      opacity: 0;
      transform: translateY(22px);
      transition: opacity .65s ease, transform .65s ease;
    }
    .fade-section.is-visible{
      opacity: 1;
      transform: translateY(0);
    }
    /* Don't flash on reduced motion */
    @media (prefers-reduced-motion: reduce){
      .fade-section{ opacity: 1; transform: none; transition: none; }
    }