    /* ============================================================
       DESIGN PREVIEW — self-contained, does not touch styles.css
       ============================================================ */
    :root {
      --blue: #1B3F8F;
      --blue-dark: #122B6B;
      --blue-mid: #2A5ACF;
      --blue-light: #5C8DFB;
      --green: #00E676;
      --green-dark: #00B85E;
      --navy: #091b41;
      --text: #14142B;
      --text-mid: #4A5568;
      --white: #FFFFFF;
      --off-white: #F8F9FF;
      --font-display: 'Montserrat', system-ui, sans-serif;
      --font-body: 'Montserrat', system-ui, sans-serif;
    }

    .hero-carousel {
      position: absolute;
      inset: 0;
      z-index: 0;
      overflow: hidden;
    }

    .hero-carousel::after {
      content: '';
      position: absolute;
      inset: 0;
      z-index: 1;
      background: linear-gradient(180deg, rgba(20, 20, 43, 0.35), rgba(20, 20, 43, 0.6));
    }

    .hero-slide {
      position: absolute;
      inset: 0;
      background-position: center;
      background-size: cover;
      opacity: 0;
      animation: heroFade 9s infinite;
    }

    .hero-slide:nth-child(1) {
      background-image: url(images/hero-4.jpg);
      animation-delay: 0s;
    }

    .hero-slide:nth-child(2) {
      background-image: url(images/hero-carousel2.jpg);
      animation-delay: 3s;
    }

    .hero-slide:nth-child(3) {
      background-image: url(images/hero-carousel3.jpg);
      animation-delay: 6s;
    }

    @keyframes heroFade {
      0% {
        opacity: 0;
      }

      5% {
        opacity: 1;
      }

      33% {
        opacity: 1;
      }

      38% {
        opacity: 0;
      }

      100% {
        opacity: 0;
      }
    }

    @media (prefers-reduced-motion: reduce) {
      .hero-slide {
        animation: none !important;
      }

      .hero-slide:nth-child(1) {
        opacity: 1;
      }
    }

    #services .container {
      max-width: 1920px;
      width: 90%;
    }

    .hero .container {
      max-width: 1920px;
      width: 90%;
    }

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

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: var(--font-body);
      color: var(--text);
      background: var(--off-white);
      overflow-x: hidden;
      line-height: 1.6;
    }

    img {
      display: block;
      max-width: 100%;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    .container {
      width: 100%;
      max-width: 1200px;
      margin-inline: auto;
      padding-inline: 1.25rem;
    }

    .section {
      padding-block: 6rem;
      position: relative;
    }

    h1,
    h2,
    h3 {
      font-family: var(--font-display);
      line-height: 1.15;
    }

    h1 {
      font-size: clamp(2.4rem, 6vw, 4.2rem);
      font-weight: 800;
    }

    h2 {
      font-size: clamp(1.8rem, 4vw, 3.8rem);
      font-weight: 800;
    }

    .gradient-text {
      background: linear-gradient(90deg, var(--blue-mid), var(--green), var(--blue-light), var(--green-dark), var(--blue-mid));
      background-size: 300% auto;
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
      animation: hue-shift 8s linear infinite;
    }

    @keyframes hue-shift {
      to {
        background-position: 300% center;
      }
    }

    /* ── Preview ribbon ─────────────────────────────────────── */
    .preview-ribbon {
      position: sticky;
      top: 0;
      z-index: 100;
      background: linear-gradient(90deg, var(--blue), var(--green-dark));
      color: #fff;
      font-size: 0.85rem;
      font-weight: 600;
      text-align: center;
      padding: 0.6rem 1rem;
    }

    .preview-ribbon a {
      text-decoration: underline;
      text-underline-offset: 2px;
    }

    /* ── Nav ─────────────────────────────────────────────────── */
    .demo-header {
      position: sticky;
      top: 0;
      z-index: 90;
      background: #091b41;
      backdrop-filter: blur(10px);
      border-bottom: 1px solid rgba(20, 20, 43, 0.06);
    }

    .demo-header .container {
      max-width: 1600px;
      width: 95%;
    }

    .demo-nav {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1.5rem;
      padding: 0 0;
    }

    .demo-nav .logo img {
      width: auto;
      height: 80px;
    }

    .demo-nav .tag {
      font-size: 0.7rem;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--blue);
      background: rgba(27, 63, 143, 0.1);
      padding: 0.35rem 0.75rem;
      border-radius: 999px;
      white-space: nowrap;
    }

    .demo-nav-links {
      display: flex;
      align-items: center;
      gap: 2rem;
      list-style: none;
      margin: 0;
      padding: 0;
    }

    .demo-nav-links a {
      font-weight: 600;
      font-size: 1rem;
      color: var(--white);
      letter-spacing: 0.5px;
      position: relative;
      padding: 0.25rem 0;
      transition: color 0.2s ease;
    }


    .demo-nav-links a:hover::after {
      width: 100%;
    }

    .nav-link-kids .letter {
      display: inline-block;
    }

    .nav-link-kids:hover .letter {
      animation: kids-bounce 0.7s ease infinite;
    }

    .nav-link-kids:hover .letter:nth-child(1) {
      animation-delay: 0s;
      color: var(--blue-mid);
    }

    .nav-link-kids:hover .letter:nth-child(2) {
      animation-delay: 0.08s;
      color: var(--green);
    }

    .nav-link-kids:hover .letter:nth-child(3) {
      animation-delay: 0.16s;
      color: var(--blue-light);
    }

    .nav-link-kids:hover .letter:nth-child(4) {
      animation-delay: 0.24s;
      color: var(--green-dark);
    }

    @keyframes kids-bounce {

      0%,
      100% {
        transform: translateY(0);
      }

      30% {
        transform: translateY(-7px);
      }

      50% {
        transform: translateY(0);
      }
    }

    /* Emergencies — urgent red + bold on hover */
    .nav-link-emergency:hover {
      color: #E5302A;
      font-weight: 800;
    }

    /* Orthopaedics — actual dental braces (brackets + wire) appear across the word on hover */
    .nav-link-braces {
      position: relative;
    }

    .nav-link-braces .b-letter {
      position: relative;
      display: inline-block;
    }

    .nav-link-braces .b-letter::before {
      content: '';
      position: absolute;
      top: -7px;
      left: 50%;
      width: 5px;
      height: 5px;
      background: linear-gradient(135deg, #f2f2f2, #9a9a9a);
      border-radius: 1px;
      box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.3);
      transform: translateX(-50%) scale(0);
      transition: transform 0.25s ease;
      transition-delay: calc(var(--i, 0) * 0.03s);
    }

    .nav-link-braces:hover .b-letter::before {
      transform: translateX(-50%) scale(1);
    }

    .demo-nav-links a.nav-link-braces::after {
      content: '';
      left: 0;
      right: 0;
      bottom: -4px;
      width: auto;
      height: 2px;
      background: linear-gradient(90deg, #b8b8b8, #f2f2f2 50%, #b8b8b8);
      transform: scaleX(0);
      transform-origin: left center;
      transition: transform 0.4s ease 0.05s;
      border-radius: 1px;
    }

    .demo-nav-links a.nav-link-braces:hover::after {
      transform: scaleX(1);
    }

    .demo-dropdown {
      position: relative;
    }

    .demo-dropdown-toggle {
      display: inline-flex;
      align-items: center;
      gap: 0.35rem;
      background: none;
      border: none;
      font: inherit;
      font-weight: 600;
      font-size: 0.95rem;
      color: var(--white);
      cursor: pointer;
    }

    .demo-dropdown-toggle svg {
      transition: transform 0.2s ease;
    }

    .demo-dropdown.is-open .demo-dropdown-toggle svg {
      transform: rotate(180deg);
    }

    .demo-dropdown-menu {
      position: absolute;
      top: 100%;
      left: 50%;
      transform: translateX(-50%) translateY(8px);
      background: #091b41;
      border-radius: 16px;
      box-shadow: 0 20px 45px rgba(20, 20, 43, 0.16);
      padding: 0.6rem;
      min-width: 230px;
      display: grid;
      gap: 0.15rem;
      opacity: 0;
      visibility: hidden;
      pointer-events: none;
      transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
    }

    .demo-dropdown:hover .demo-dropdown-menu,
    .demo-dropdown.is-open .demo-dropdown-menu {
      opacity: 1;
      visibility: visible;
      pointer-events: auto;
      transform: translateX(-50%) translateY(0);
    }

    .demo-dropdown-menu a {
      display: block;
      padding: 0.55rem 0.85rem;
      border-radius: 10px;
      font-size: 0.88rem;
      font-weight: 500;
    }

    .demo-dropdown-menu a:hover {
      background: rgba(27, 63, 143, 0.08);
      color: var(--blue);
    }

    .demo-dropdown-menu a::after {
      display: none;
    }

    .demo-nav-cta {
      display: flex;
      align-items: center;
      gap: 1rem;
    }

    .demo-nav-cta .btn {
      padding: 0.7rem 1.4rem;
      font-size: 0.88rem;
    }

    .demo-nav-toggle {
      display: none;
      flex-direction: column;
      gap: 5px;
      background: none;
      border: none;
      cursor: pointer;
      padding: 0.5rem;
    }

    .demo-mobile-panel {
      display: none;
    }

    .demo-nav-toggle span {
      width: 24px;
      height: 2px;
      background: #fff;
      border-radius: 2px;
      transition: transform 0.25s ease, opacity 0.25s ease;
    }

    @media (max-width: 1150px) {
      .demo-nav-links {
        display: none;
      }

      .demo-nav-cta .btn-outline-hide {
        display: none;
      }

      .demo-nav-toggle {
        display: inline-flex;
      }

      .demo-mobile-panel {
        display: none;
        flex-direction: column;
        gap: 0.25rem;
        padding: 0 0 1.25rem;
      }

      .demo-mobile-panel.is-open {
        display: flex;
        max-height: calc(100vh - 5rem);
        overflow-y: auto;
      }

      .demo-mobile-panel a {
        padding: 0.7rem 0.5rem;
        font-weight: 600;
        border-radius: 10px;
        color: #fff;
      }

      .demo-mobile-panel a:hover {
        background: rgba(255, 255, 255, 0.08);
        color: var(--green);
      }

      .demo-mobile-dropdown-toggle {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 0.5rem;
        background: none;
        border: none;
        font: inherit;
        font-weight: 700;
        font-size: 0.75rem;
        text-transform: uppercase;
        letter-spacing: 0.06em;
        color: #fff;
        padding: 0.9rem 0.5rem;
        cursor: pointer;
      }

      .demo-mobile-dropdown-toggle svg {
        transition: transform 0.2s ease;
      }

      .demo-mobile-dropdown.is-open .demo-mobile-dropdown-toggle svg {
        transform: rotate(180deg);
      }

      .demo-mobile-services {
        display: none;
        padding-left: 1rem;
        gap: 0.1rem;
      }

      .demo-mobile-dropdown.is-open .demo-mobile-services {
        display: grid;
      }

      .demo-mobile-services a {
        font-weight: 500;
        font-size: 0.9rem;
        color: #fff;
      }
    }

    /* ── Sticky social dock ──────────────────────────────────── */
    .social-dock {
      position: fixed;
      left: 0.5rem;
      bottom: 0.5rem;
      z-index: 95;
      display: flex;
      flex-direction: column;
      gap: 0.85rem;
      padding: 1rem 0.65rem;
      background: rgba(239, 239, 239, 0.65);
      backdrop-filter: blur(6px);
      border-radius: 999px;
      box-shadow: 0 8px 24px rgba(9, 27, 65, 0.4);
    }

    .social-dock a {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      height: 24px;
      width: 24px;
      border-radius: 999px;
      transition: transform 0.2s ease, box-shadow 0.2s ease;
    }

    .social-dock a .social-icon {
      width: 30px;
      height: 30px;
      flex: 0 0 30px;
      border-radius: 999px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
    }

    .social-dock a .social-icon.ig {
      background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285aeb 90%);
    }

    .social-dock a .social-icon.fb {
      background: #1877f2;
    }

    .social-dock a .social-icon.tiktok {
      background: #000000;
    }

    .social-dock a .social-icon svg {
      width: 20px;
      height: 20px;
    }

    .social-dock a:hover,
    .social-dock a:focus-visible {
      transform: scale(1.12);
      box-shadow: 0 4px 12px rgba(9, 27, 65, 0.5);
    }

    @media (max-width: 640px) {
      .social-dock {
        left: 0.75rem;
        bottom: 0.75rem;
      }

      .social-dock a,
      .social-dock a .social-icon {
        height: 21px;
        width: 21px;
        flex-basis: 21px;
      }

      .social-dock a .social-icon svg {
        width: 11px;
        height: 11px;
      }
    }

    /* ── Fixed WhatsApp button ──────────────────────────────────── */
    .whatsapp-float {
      position: fixed;
      right: 1.25rem;
      bottom: 1.25rem;
      z-index: 95;
      width: 60px;
      height: 60px;
      border-radius: 50%;
      background: #25D366;
      color: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 10px 26px rgba(37, 211, 102, 0.5);
      animation: whatsapp-pulse 2.4s ease-in-out infinite;
      transition: transform 0.2s ease, box-shadow 0.2s ease;
    }

    .whatsapp-float:hover,
    .whatsapp-float:focus-visible {
      background: #1ebe5a;
      transform: scale(1.08);
      box-shadow: 0 14px 32px rgba(37, 211, 102, 0.6);
    }

    .whatsapp-float svg {
      width: 30px;
      height: 30px;
    }

    @keyframes whatsapp-pulse {
      0%, 100% { box-shadow: 0 10px 26px rgba(37, 211, 102, 0.5), 0 0 0 0 rgba(37, 211, 102, 0.5); }
      50%      { box-shadow: 0 10px 26px rgba(37, 211, 102, 0.5), 0 0 0 12px rgba(37, 211, 102, 0); }
    }

    @media (max-width: 640px) {
      .whatsapp-float {
        right: 0.85rem;
        bottom: 0.85rem;
        width: 52px;
        height: 52px;
      }

      .whatsapp-float svg {
        width: 26px;
        height: 26px;
      }
    }

    /* ── Hero ────────────────────────────────────────────────── */
    .hero {
      position: relative;
      min-height: 88vh;
      display: flex;
      align-items: center;
      overflow: hidden;
      padding-top: 2rem;
    }

    .blob {
      position: absolute;
      border-radius: 50%;
      filter: blur(60px);
      opacity: 0.55;
      animation: float 14s ease-in-out infinite;
      z-index: 0;
    }

    .blob-1 {
      width: 420px;
      height: 420px;
      background: var(--blue-mid);
      top: -120px;
      left: -100px;
      animation-duration: 16s;
    }

    .blob-2 {
      width: 380px;
      height: 380px;
      background: var(--green);
      top: 10%;
      right: -120px;
      animation-duration: 12s;
      animation-delay: -3s;
    }

    .blob-3 {
      width: 320px;
      height: 320px;
      background: var(--blue-light);
      bottom: -140px;
      left: 30%;
      animation-duration: 18s;
      animation-delay: -6s;
    }

    @keyframes float {

      0%,
      100% {
        transform: translate(0, 0) scale(1);
      }

      33% {
        transform: translate(30px, -40px) scale(1.08);
      }

      66% {
        transform: translate(-25px, 25px) scale(0.95);
      }
    }

    @media (prefers-reduced-motion: reduce) {

      .blob,
      .gradient-text,
      .marquee-track,
      .float-icon,
      .whatsapp-float {
        animation: none !important;
      }
    }

    .hero-inner {
      position: relative;
      z-index: 1;
      display: grid;
      gap: 3rem;
      grid-template-columns: 1.1fr 0.9fr;
      align-items: center;
    }

    .hero-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      font-weight: 700;
      font-size: 0.8rem;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--blue);
      margin-bottom: 1rem;
    }

    .hero-eyebrow::before {
      content: '';
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--green);
      animation: pulse 1.6s ease-in-out infinite;
    }

    @keyframes pulse {

      0%,
      100% {
        opacity: 1;
        transform: scale(1);
      }

      50% {
        opacity: 0.4;
        transform: scale(1.4);
      }
    }

    .hero p.lead {
      margin-top: 1.25rem;
      font-size: 1.1rem;
      color: var(--text-mid);
      max-width: 46ch;
    }

    .hero-actions {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 1.1rem;
      margin-top: 2rem;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.9rem 1.75rem;
      border-radius: 999px;
      font-weight: 700;
      font-size: 0.95rem;
      transition: transform 0.25s ease, box-shadow 0.25s ease;
      border: none;
      cursor: pointer;
    }

    .btn-primary {
      background: linear-gradient(135deg, var(--blue), var(--green-dark));
      color: #fff;
      box-shadow: 0 8px 24px rgba(0, 184, 94, 0.35);
    }

    .btn-primary:hover {
      transform: translateY(-3px) scale(1.03);
      box-shadow: 0 14px 32px rgba(0, 184, 94, 0.45);
    }

    /* Book Appointment — same shifting gradient as the h1's .gradient-text, applied as a fill */
    .btn-gradient-anim {
      background: linear-gradient(90deg, var(--blue-mid), var(--green), var(--blue-light), var(--green-dark), var(--blue-mid));
      background-size: 300% auto;
      animation: hue-shift 26s ease-in-out infinite alternate;
      color: #fff;
      padding: 0.85rem 1.9rem;
      font-size: 1.05rem;
      box-shadow: 0 12px 32px rgba(9, 27, 65, 0.45), 0 0 0 1px rgba(255, 255, 255, 0.18) inset;
    }

    .btn-gradient-anim:hover {
      transform: translateY(-4px) scale(1.04);
      box-shadow: 0 18px 40px rgba(9, 27, 65, 0.55), 0 0 0 1px rgba(255, 255, 255, 0.25) inset;
    }

    /* WhatsApp Us — real WhatsApp green, unmistakably WhatsApp */
    .btn-whatsapp {
      background: #25D366;
      color: #fff;
      padding: 0.85rem 1.9rem;
      box-shadow: 0 10px 26px rgba(37, 211, 102, 0.45);
    }

    .btn-whatsapp svg {
      width: 19px;
      height: 19px;
    }

    .btn-whatsapp:hover {
      background: #1ebe5a;
      transform: translateY(-3px) scale(1.03);
      box-shadow: 0 14px 32px rgba(37, 211, 102, 0.55);
    }

    .btn-outline {
      background: #fff;
      color: var(--blue); 
    }

    .btn-outline:hover {  
      font-weight: 900;
      transform: translateY(-3px);
    }

    /* Call us — plain text links, phone number pops up next to them on hover */
    .call-options {
      display: flex;
      gap: 2.75rem;
      flex-wrap: wrap;
      margin-top: 20px;
    }

    .call-link {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      color: #fff;
      font-weight: 500;
      font-size: 1rem;
      text-decoration: underline;
      text-underline-offset: 4px;
      text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    }

    .call-link svg {
      width: 20px;
      height: 20px;
      flex: 0 0 20px;
    }

    .hero-visual {
      position: relative;
    }

    .hero-visual img {
      border-radius: 32px;
      box-shadow: 0 30px 60px rgba(20, 20, 43, 0.25);
      animation: bob 5s ease-in-out infinite;
    }

    @keyframes bob {

      0%,
      100% {
        transform: translateY(0);
      }

      50% {
        transform: translateY(-14px);
      }
    }

    .float-icon {
      position: absolute;
      background: #fff;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 10px 25px rgba(20, 20, 43, 0.15);
      animation: float-badge 4s ease-in-out infinite;
    }

    .float-icon.fi-1 {
      width: 74px;
      height: 74px;
      top: -20px;
      right: 10%;
      font-size: 1.6rem;
      animation-delay: -1s;
    }

    .float-icon.fi-2 {
      width: 90px;
      height: 90px;
      bottom: 8%;
      left: -30px;
      font-size: 2rem;
      animation-delay: -2.4s;
    }

    @keyframes float-badge {

      0%,
      100% {
        transform: translateY(0) rotate(-4deg);
      }

      50% {
        transform: translateY(-16px) rotate(4deg);
      }
    }

    /* ── Reveal on scroll ────────────────────────────────────── */
    .reveal {
      opacity: 0;
      transform: translateY(36px);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }

    .reveal.is-visible {
      opacity: 1;
      transform: translateY(0);
    }


    /* ── Section header (shared) ───────────────────────────────── */
    .section-header {
      text-align: center;
      max-width: 640px;
      margin: 0 auto 3rem;
    }

    .section-header p {
      color: var(--text-mid);
      margin-top: 0.75rem;
    }

    /* ── 1. Services Overview ───────────────────────────────────── */
    .services-overview-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2.1rem;
    }

    .service-block {
      position: relative;
      background: #fff;
      border-radius: 24px;
      overflow: hidden;
      box-shadow: 0 10px 30px rgba(20, 20, 43, 0.08);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      transform-style: preserve-3d;
      will-change: transform;
    }

    /* Glowing gradient ring that sweeps in on hover */
    .service-block::before {
      content: '';
      position: absolute;
      inset: 0;
      border-radius: 24px;
      padding: 2px;
      background: linear-gradient(135deg, var(--blue-mid), var(--green), var(--blue-light));
      -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
      mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
      -webkit-mask-composite: xor;
      mask-composite: exclude;
      opacity: 0;
      transition: opacity 0.3s ease;
      pointer-events: none;
      z-index: 2;
    }

    .service-block:hover {
      transform: translateY(-10px) scale(1.015);
      box-shadow: 0 30px 60px rgba(20, 20, 43, 0.2);
    }

    .service-block:hover::before {
      opacity: 1;
    }

    .service-block-img-wrap {
      position: relative;
      height: 230px;
      overflow: hidden;
    }

    .service-block-img-wrap img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.6s ease;
    }

    .service-block:hover .service-block-img-wrap img {
      transform: scale(1.12) rotate(1deg);
    }

    /* Light sweep that glides across the photo on hover */
    .service-block-img-wrap::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(115deg, transparent 40%, rgba(255, 255, 255, 0.55) 50%, transparent 60%);
      transform: translateX(-120%);
      transition: transform 0.7s ease;
    }

    .service-block:hover .service-block-img-wrap::after {
      transform: translateX(120%);
    }

    .service-block-link {
      display: inline-flex;
      align-items: center;
      gap: 0.35rem;
      margin-top: 0.9rem;
      font-size: 0.85rem;
      font-weight: 700;
      color: var(--blue);
      transition: gap 0.2s ease, color 0.2s ease;
    }

    .service-block-link svg {
      width: 14px;
      height: 14px;
      transition: transform 0.2s ease;
    }

    .service-block-link:hover {
      color: var(--green-dark);
      gap: 0.55rem;
    }

    .service-block:hover .service-block-link svg {
      transform: translateX(3px);
    }

    .service-block-body {
      padding: 1.5rem 1.4rem 1.6rem;
    }

    .service-block h3 {
      font-size: 1.05rem;
      margin-bottom: 0.4rem;
      transition: color 0.25s ease;
    }

    .service-block:hover h3 {
      color: var(--blue);
    }

    .service-block p {
      font-size: 0.9rem;
      color: var(--text-mid);
    }

    @media (max-width: 900px) {
      .services-overview-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 600px) {
      .services-overview-grid {
        grid-template-columns: 1fr;
      }
    }

    /* ── 2. Meet the Team ───────────────────────────────────────── */
    .team-section {
      background: linear-gradient(180deg, var(--off-white), #EAF1FF);
    }

    .team-card {
      display: grid;
      grid-template-columns: 0.8fr 1.2fr;
      gap: 0;
      align-items: stretch;
      background: #fff;
      border-radius: 32px;
      box-shadow: 0 20px 50px rgba(20, 20, 43, 0.1);
      overflow: hidden;
    }

    .team-photo-wrap {
      position: relative;
      min-height: 380px;
    }

    .team-photo-wrap img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .team-est-badge {
      position: absolute;
      bottom: 1.25rem;
      left: 1.25rem;
      background: var(--navy);
      color: #fff;
      font-weight: 700;
      font-size: 0.8rem;
      padding: 0.5rem 1rem;
      border-radius: 999px;
      box-shadow: 0 8px 20px rgba(9, 27, 65, 0.4);
    }

    .team-copy {
      padding: 2.75rem;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .team-eyebrow {
      display: block;
      color: var(--blue);
      font-weight: 700;
      font-size: 0.78rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      margin-bottom: 0.6rem;
    }

    .team-copy h1,
    .team-copy h3 {
      font-family: var(--font-display);
      font-size: 1.7rem;
      font-weight: 800;
      line-height: 1.15;
    }

    .team-creds {
      display: flex;
      flex-wrap: wrap;
      gap: 0.6rem;
      margin: 1rem 0 1.25rem;
    }

    .cred-tag {
      background: var(--off-white);
      border: 1px solid var(--border, #DDE4F0);
      color: var(--blue);
      font-size: 0.78rem;
      font-weight: 600;
      padding: 0.4rem 0.85rem;
      border-radius: 999px;
    }

    .team-copy p {
      color: var(--text-mid);
      margin-bottom: 1rem;
    }

    .team-copy .btn {
      align-self: flex-start;
      margin-top: 0.5rem;
    }

    @media (max-width: 800px) {
      .team-card {
        grid-template-columns: 1fr;
      }

      .team-photo-wrap {
        min-height: 280px;
      }
    }

    /* ── 3. Before & After Smile Gallery ───────────────────────── */
    .gallery-section {
      background: linear-gradient(180deg, var(--off-white), #E6FBF0);
    }

    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.5rem;
    }

    .ba-slider {
      position: relative;
      border-radius: 24px;
      overflow: hidden;
      box-shadow: 0 20px 40px rgba(20, 20, 43, 0.12);
      --pos: 50%;
    }

    .ba-slider-stage {
      position: relative;
      width: 100%;
      height: 340px;
      overflow: hidden;
      user-select: none;
    }

    .ba-img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      pointer-events: none;
    }

    .ba-img-before {
      clip-path: inset(0 calc(100% - var(--pos)) 0 0);
      filter: grayscale(25%) brightness(0.95);
    }

    .ba-tag {
      position: absolute;
      top: 0.5rem;
      font-weight: 400;
      font-size: 0.75rem;
      letter-spacing: 0.04em;
      color: #fff;
      text-transform: lowercase;
      background: rgba(9, 27, 65, 0.55);
      backdrop-filter: blur(4px);
      padding: 0.25rem 0.6rem;
      border-radius: 999px;
      pointer-events: none;
    }

    .ba-tag-before {
      left: 0.5rem;
    }

    .ba-tag-after {
      right: 1rem;
    }

    .ba-divider {
      position: absolute;
      top: 0;
      bottom: 0;
      left: var(--pos);
      width: 3px;
      background: #fff;
      transform: translateX(-50%);
      box-shadow: 0 0 0 1px rgba(9, 27, 65, 0.15);
      pointer-events: none;
    }

    .ba-handle {
      position: absolute;
      top: 50%;
      left: var(--pos);
      width: 46px;
      height: 46px;
      border-radius: 50%;
      background: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 2px;
      color: var(--blue);
      box-shadow: 0 8px 22px rgba(9, 27, 65, 0.35);
      transform: translate(-50%, -50%);
      transition: transform 0.15s ease;
      pointer-events: none;
    }

    .ba-slider:hover .ba-handle {
      transform: translate(-50%, -50%) scale(1.08);
    }

    .ba-handle svg {
      width: 16px;
      height: 16px;
    }

    .ba-range {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      margin: 0;
      opacity: 0;
      cursor: ew-resize;
      -webkit-appearance: none;
      appearance: none;
    }

    .ba-range::-webkit-slider-thumb {
      -webkit-appearance: none;
      width: 46px;
      height: 340px;
    }

    .ba-range::-moz-range-thumb {
      width: 46px;
      height: 340px;
      border: none;
    }

    .ba-caption {
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 0.9rem 1.1rem;
      background: #fff;
    }

    .ba-caption span {
      font-size: 0.8rem;
      color: var(--text-mid);
    }

    .gallery-note {
      text-align: center;
      color: var(--text-mid);
      font-size: 0.85rem;
      margin-top: 2rem;
    }

    .gallery-cta {
      text-align: center;
      margin-top: 1.75rem;
    }

    /* ── 4. Patient Reviews ─────────────────────────────────────── */
    .reviews-summary {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0.6rem;
      margin-top: 0.75rem;
    }

    .reviews-stars,
    .review-stars {
      color: #FBBC05;
      display: flex;
      gap: 2px;
    }

    .reviews-stars svg,
    .review-stars svg {
      width: 16px;
      height: 16px;
    }

    .reviews-score {
      font-weight: 800;
      font-size: 1.3rem;
      color: var(--text);
    }

    .reviews-count {
      color: var(--text-mid);
      font-size: 0.9rem;
    }

    .reviews-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 1.5rem;
      margin-top: 1rem;
    }

    .review-card {
      background: #fff;
      border-radius: 20px;
      padding: 1.75rem;
      box-shadow: 0 10px 26px rgba(20, 20, 43, 0.08);
    }

    .review-stars {
      margin-bottom: 0.85rem;
    }

    .review-card p {
      color: var(--text-mid);
      font-size: 0.92rem;
      margin-bottom: 1.15rem;
    }

    .review-author {
      display: flex;
      align-items: center;
      gap: 0.65rem;
    }

    .review-avatar {
      width: 36px;
      height: 36px;
      flex: 0 0 36px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      background: linear-gradient(135deg, var(--blue), var(--green-dark));
      color: #fff;
      font-weight: 700;
      font-size: 0.85rem;
    }

    .review-name {
      font-weight: 700;
      font-size: 0.88rem;
    }

    .review-google {
      font-size: 0.75rem;
      color: var(--text-mid);
      display: flex;
      align-items: center;
      gap: 0.3rem;
      margin-top: 0.1rem;
    }

    .review-google svg {
      width: 12px;
      height: 12px;
    }

    .reviews-cta {
      text-align: center;
      margin-top: 2.5rem;
    }

    /* ── 5. Contact ─────────────────────────────────────────────── */
    .contact-section {
      background: white;
    }

    .contact-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 1.75rem;
    }

    .contact-card {
      background: #fff;
      border-radius: 28px;
      overflow: hidden;
      box-shadow: 0 20px 46px rgba(20, 20, 43, 0.1);
      transition: transform 0.25s ease, box-shadow 0.25s ease;
    }

    .contact-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 28px 56px rgba(20, 20, 43, 0.16);
    }

    .contact-card-top {
      padding: 1.75rem 1.75rem 1.4rem;
      background: linear-gradient(135deg, var(--blue), var(--green-dark));
      color: #fff;
    }

    .contact-card-top h3 {
      font-family: var(--font-display);
      font-size: 1.3rem;
      font-weight: 800;
    }

    .contact-card-top p {
      font-size: 0.85rem;
      opacity: 0.9;
      margin-top: 0.25rem;
    }

    .contact-details {
      list-style: none;
      margin: 0;
      padding: 1.5rem 1.75rem 0.5rem;
      display: grid;
      gap: 0.9rem;
    }

    .contact-details li {
      display: flex;
      align-items: flex-start;
      gap: 0.7rem;
      font-size: 0.9rem;
      color: var(--text-mid);
    }

    .contact-details svg {
      width: 18px;
      height: 18px;
      flex: 0 0 18px;
      color: var(--blue);
      margin-top: 0.1rem;
    }

    .contact-details a {
      color: var(--text-mid);
      transition: color 0.2s ease;
    }

    .contact-details a:hover {
      color: var(--blue);
    }

    .contact-hours-box {
      margin: 1.4rem 1.75rem 0;
      background: linear-gradient(135deg, rgba(27, 63, 143, 0.08), rgba(0, 184, 94, 0.1));
      border: 1px solid rgba(27, 63, 143, 0.12);
      border-radius: 16px;
      padding: 1rem 1.15rem;
      display: flex;
      align-items: flex-start;
      gap: 0.75rem;
    }

    .contact-hours-box svg {
      width: 22px;
      height: 22px;
      flex: 0 0 22px;
      color: var(--blue);
      margin-top: 0.15rem;
    }

    .contact-hours-box dl {
      display: grid;
      grid-template-columns: auto 1fr;
      gap: 0.15rem 0.6rem;
      margin: 0;
    }

    .contact-hours-box dt {
      font-weight: 700;
      font-size: 0.85rem;
      color: var(--text);
    }

    .contact-hours-box dd {
      font-weight: 600;
      font-size: 0.85rem;
      color: var(--green-dark);
      margin: 0;
    }

    .contact-card-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 0.65rem;
      padding: 1.4rem 1.75rem 1.75rem;
    }

    .contact-card-actions .btn {
      padding: 0.65rem 1.2rem;
      font-size: 0.85rem;
    }

    .contact-map {
      display: block;
      width: 100%;
      height: 220px;
      border: none;
    }

    @media (max-width: 800px) {
      .contact-grid {
        grid-template-columns: 1fr;
      }
    }

    /* ── Minimal footer ─────────────────────────────────────────── */
    .site-footer-minimal {
      background: var(--navy);
      color: rgba(255, 255, 255, 0.75);
      padding: 2.75rem 1rem 1.75rem;
      text-align: center;
    }

    .site-footer-minimal .footer-logo {
      width: auto;
      height: 80px;
      margin: 0 auto 1rem; 
      opacity: 0.9;
    }

    .site-footer-minimal .footer-copy {
      font-size: 0.85rem;
      color: rgba(255, 255, 255, 0.85);
    }

    .site-footer-minimal .footer-preview-note {
      margin-top: 0.75rem;
      font-size: 0.75rem;
      color: rgba(255, 255, 255, 0.4);
    }

    @media (max-width: 900px) {
      .hero-inner {
        grid-template-columns: 1fr;
      }

      .gallery-grid {
        grid-template-columns: 1fr;
      }
    }

    /* ============================================================
       ABOUT-2 — additions for the About page layout
       ============================================================ */

    /* ── Stacked panel (heading → photo → copy, half width) ─────── */
    .stack-block {
      max-width: 50%;
      margin-inline: auto;
      text-align: left;
    }

    .stack-block .section-eyebrow,
    .stack-block .team-eyebrow {
      display: block;
      text-align: left;
    }

    .stack-block h1,
    .stack-block h2 {
      margin-bottom: 2rem;
    }

    .stack-photo {
      position: relative;
      width: 100%;
      border-radius: 32px;
      overflow: hidden;
      margin-bottom: 2.5rem;
      box-shadow: 0 20px 50px rgba(20, 20, 43, 0.1);
    }

    .stack-photo img {
      height: auto;
      width: 100%;
      aspect-ratio: 3 / 4;
      object-fit: cover;
      display: block;
    }

    .stat-badge {
      position: absolute;
      bottom: 1.25rem;
      right: 1.25rem;
      background: var(--blue);
      color: #fff;
      padding: 0.85rem 1.25rem;
      border-radius: 16px;
      box-shadow: 0 8px 20px rgba(9, 27, 65, 0.4);
      text-align: center;
      min-width: 100px;
    }

    .stat-badge strong {
      display: block;
      font-size: 1.6rem;
      font-weight: 800;
      line-height: 1;
      color: var(--green);
    }

    .stat-badge span {
      font-size: 0.7rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.06em;
      opacity: 0.85;
    }

    .stack-copy {
      text-align: left;
    }

    .stack-copy p {
      color: var(--text-mid);
      margin-bottom: 1rem;
    }

    .stack-copy .lead {
      color: var(--text);
      font-weight: 600;
    }

    .stack-copy .btn {
      margin-top: 0.5rem;
    }

    @media (max-width: 800px) {
      .stack-block {
        max-width: 100%;
      }

      .stack-block h1,
    .stack-block h2 {
        font-size: 1.5rem;
      }
    }

    /* ============================================================
       SHARED INNER-PAGE COMPONENTS — page hero, service layout,
       legal content, full sitemap footer
       ============================================================ */

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

    /* ── Page hero (inner-page banner, photo + overlay + blob) ───── */
    .page-hero {
      position: relative;
      overflow: hidden;
      min-height: 44vh;
      display: flex;
      align-items: flex-end;
      padding: 7rem 0 6.5rem;
      background: linear-gradient(135deg, var(--navy), var(--blue-dark));
      background-size: cover;
      background-position: center;
      background-blend-mode: multiply;
      color: #fff;
      text-align: center;
    }

    .page-hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(9, 27, 65, 0.1), rgba(9, 27, 65, 0.45));
      z-index: 0;
    }

    .page-hero .blob {
      opacity: 0.35;
    }

    .page-hero.no-photo {
      min-height: auto;
      padding: 6.5rem 0 3.5rem;
    }

    /* ── Page hero — visual-only variant (photo, no heading/text) ── */
    .page-hero-visual {
      min-height: 58vh;
      padding: 0;
    }

    @media (max-width: 1150px) {
      .page-hero-visual {
        min-height: 38vh;
        background-image: none !important;
        background-color: var(--blue);
      }
    }

    .page-hero .container {
      position: relative;
      z-index: 1;
    }

    .page-hero-eyebrow {
      text-transform: uppercase;
      letter-spacing: 1.5px;
      font-size: 0.8rem;
      font-weight: 700;
      color: var(--green);
      text-shadow: 0 2px 10px rgba(9, 27, 65, 0.6);
    }

    .page-hero h1 {
      color: #fff;
      margin: 0.5rem auto 0;
      max-width: 18ch;
      font-size: clamp(2.1rem, 5vw, 3.4rem);
      text-shadow: 0 2px 16px rgba(9, 27, 65, 0.6);
    }

    .breadcrumb {
      margin-top: 1.25rem;
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 0.5rem;
      font-size: 0.85rem;
      color: rgba(255, 255, 255, 0.7);
      text-shadow: 0 1px 6px rgba(9, 27, 65, 0.6);
    }

    .breadcrumb a {
      color: rgba(255, 255, 255, 0.85);
      text-decoration: underline;
      text-underline-offset: 3px;
    }

    .breadcrumb a:hover {
      color: var(--green);
    }

    .breadcrumb-sep {
      opacity: 0.5;
    }

    .breadcrumb-current {
      font-weight: 600;
      color: #fff;
    }

    /* ── Intro panel — team-card floated up over the hero ─────────── */
    .intro-panel {
      position: relative;
      z-index: 2;
      margin-top: -18rem;
      padding-bottom: 1rem;
      background: transparent;
    }

    @media (max-width: 700px) {
      .page-hero {
        min-height: 30vh;
        padding: 5.5rem 0 4.5rem;
      }

      .page-hero h1 {
        max-width: 100%;
      }

      .intro-panel {
        margin-top: -13rem;
      }
    }

    /* ── Service page editorial content ────────────────────────── */
    .service-editorial {
      max-width: 760px;
      margin-inline: auto;
    }

    /* ── Content + booking sidebar layout ─────────────────────────── */
    .content-layout {
      display: grid;
      grid-template-columns: minmax(0, 1fr) 360px;
      gap: 3rem;
      align-items: start;
    }

    .content-layout-equal {
      grid-template-columns: 1fr 1fr;
    }

    .content-layout .service-editorial {
      max-width: none;
      margin-inline: 0;
    }

    .content-sidebar {
      display: grid;
      gap: 1.75rem;
      position: sticky;
      top: 6.5rem;
    }

    .content-sidebar-heading {
      font-family: var(--font-display);
      font-size: 1.8rem;
      font-weight: 800;
      color: var(--text);
    }

    @media (max-width: 900px) {
      .content-layout {
        grid-template-columns: 1fr;
      }

      .content-sidebar {
        position: static;
      }
    }

    /* ── Compact sidebar cards (e.g. contact page branch cards) ──── */
    .sidebar-compact .contact-card {
      background: transparent;
      border-radius: 0;
      box-shadow: none;
    }

    .sidebar-compact .contact-card:hover {
      transform: none;
      box-shadow: none;
    }

    .sidebar-compact .contact-card + .contact-card {
      border-top: 1px solid rgba(27, 63, 143, 0.12);
      padding-top: 1.75rem;
    }

    .sidebar-compact .contact-card-top {
      padding: 0 0 1rem;
      background: none;
      color: var(--text);
    }

    .sidebar-compact .contact-card-top h3 {
      font-size: 1.3rem;
      color: var(--blue);
    }

    .sidebar-compact .contact-card-top p {
      font-size: 0.85rem;
      color: var(--text-mid);
    }

    .sidebar-compact .contact-details {
      padding: 0;
      gap: 0.9rem;
    }

    .sidebar-compact .contact-details li {
      font-size: 0.9rem;
    }

    .sidebar-compact .contact-hours-box {
      margin: 1.4rem 0 0;
      padding: 1rem 1.15rem;
    }

    .sidebar-compact .contact-hours-box dt,
    .sidebar-compact .contact-hours-box dd {
      font-size: 0.85rem;
    }

    .sidebar-compact .contact-card-actions {
      padding: 1.4rem 0 1.75rem;
    }

    .sidebar-compact .contact-card-actions .btn {
      padding: 0.65rem 1.2rem;
      font-size: 0.85rem;
    }

    .sidebar-compact .contact-map {
      height: 280px;
    }

    .service-content h3 {
      color: var(--blue);
      margin-top: 2rem;
      margin-bottom: 0.75rem;
      font-size: clamp(1.2rem, 2vw, 1.5rem);
    }

    .service-content p {
      color: var(--text-mid);
      margin-bottom: 1rem;
    }

    .service-content a {
      color: var(--blue);
      font-weight: 600;
      text-decoration: underline;
      text-underline-offset: 2px;
    }

    .service-content a:hover {
      color: var(--green-dark);
    }

    .service-list {
      list-style: none;
      display: grid;
      gap: 0.65rem;
      margin: 0 0 1.25rem;
    }

    .service-list li {
      position: relative;
      padding-left: 1.75rem;
      color: var(--text-mid);
    }

    .service-list li::before {
      content: '';
      position: absolute;
      left: 0;
      top: 0.5rem;
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--blue), var(--green-dark));
    }

    /* ── Booking form (lives inside a .contact-card, see below) ──── */
    .contact-card-form {
      padding: 1.5rem 1.75rem 1.75rem;
    }

    .form-group {
      margin-bottom: 1.1rem;
    }

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

    @media (max-width: 480px) {
      .form-row {
        grid-template-columns: 1fr;
      }
    }

    .form-group label {
      display: block;
      font-weight: 600;
      font-size: 0.85rem;
      color: var(--text);
      margin-bottom: 0.4rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
      width: 100%;
      font: inherit;
      color: var(--text);
      background: var(--off-white);
      border: 1px solid rgba(27, 63, 143, 0.15);
      border-radius: 12px;
      padding: 0.7rem 0.9rem;
    }

    .form-group select {
      cursor: pointer;
    }

    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
      outline: none;
      border-color: var(--blue);
    }

    .form-group textarea {
      min-height: 100px;
      resize: vertical;
    }

    .btn-send {
      width: 100%;
      justify-content: center;
      background: linear-gradient(135deg, var(--blue), var(--green-dark));
      color: #fff;
      box-shadow: 0 8px 24px rgba(0, 184, 94, 0.35);
    }

    .btn-send:hover {
      transform: translateY(-3px) scale(1.02);
      box-shadow: 0 14px 32px rgba(0, 184, 94, 0.45);
    }

    /* ── Final CTA — blob-decorated closing band ──────────────────── */
    .final-cta {
      position: relative;
      overflow: hidden;
      text-align: center;
      background: linear-gradient(180deg, var(--off-white), #EAF1FF);
    }

    .final-cta-inner {
      position: relative;
      z-index: 1;
      max-width: 640px;
      margin-inline: auto;
    }

    .final-cta-inner p {
      color: var(--text-mid);
      margin-top: 0.75rem;
      font-size: 1.05rem;
    }

    .final-cta-actions {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 1rem;
      margin-top: 2rem;
    }

    .btn-white {
      background: #fff;
      color: var(--blue);
    }

    .btn-white:hover {
      transform: translateY(-3px) scale(1.03);
      box-shadow: 0 14px 32px rgba(0, 0, 0, 0.2);
    }

    .btn-whatsapp-outline {
      background: transparent;
      color: #fff;
      border: 1.5px solid rgba(255, 255, 255, 0.5);
    }

    .btn-whatsapp-outline:hover {
      border-color: #25D366;
      color: #25D366;
      transform: translateY(-3px);
    }

    .btn-outline-blue {
      background: #fff;
      color: var(--blue);
      border: 1.5px solid rgba(27, 63, 143, 0.25);
    }

    .btn-outline-blue:hover {
      border-color: var(--blue);
      transform: translateY(-3px);
    }

    /* ── Legal content (privacy / terms) ────────────────────────── */
    .legal-section {
      background: #fff;
    }

    .legal-content {
      max-width: 800px;
      margin-inline: auto;
    }

    .legal-content h2 {
      font-size: clamp(1.2rem, 2.4vw, 1.6rem);
      color: var(--blue);
      margin-top: 2.5rem;
      margin-bottom: 0.85rem;
    }

    .legal-content h2:first-of-type {
      margin-top: 0;
    }

    .legal-content p {
      color: var(--text-mid);
      margin-bottom: 1rem;
    }

    .legal-content ul {
      list-style: disc;
      padding-left: 1.4rem;
      color: var(--text-mid);
      display: grid;
      gap: 0.4rem;
      margin-bottom: 1rem;
    }

    .legal-content address {
      font-style: normal;
      color: var(--text-mid);
      background: var(--off-white);
      border-radius: 16px;
      padding: 1.25rem 1.5rem;
      margin-bottom: 1rem;
    }

    .legal-content a {
      color: var(--blue);
      font-weight: 600;
    }

    .legal-effective-date {
      display: inline-block;
      font-weight: 700;
      color: var(--green-dark);
      background: rgba(0, 184, 94, 0.1);
      padding: 0.4rem 0.9rem;
      border-radius: 999px;
      margin-bottom: 1.5rem;
    }

    /* ── Full sitemap footer ────────────────────────────────────── */
    .site-footer {
      background: var(--navy);
      color: rgba(255, 255, 255, 0.75);
    }

    .footer-top {
      padding-block: 4rem 2.5rem;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.3fr 1fr 1fr 1fr;
      gap: 2.5rem;
    }

    .footer-logo-img,
    .footer-brand .footer-logo img {
      width: auto;
      height: 56px;
    }

    .footer-tagline {
      margin-top: 1rem;
      font-size: 0.9rem;
      color: rgba(255, 255, 255, 0.6);
      max-width: 26ch;
    }

    .footer-grid h3 {
      font-family: var(--font-display);
      font-size: 0.95rem;
      color: #fff;
      margin-bottom: 1rem;
    }

    .footer-nav {
      list-style: none;
      display: grid;
      gap: 0.65rem;
    }

    .footer-nav a {
      font-size: 0.9rem;
      color: rgba(255, 255, 255, 0.65);
      transition: color 0.2s ease;
    }

    .footer-nav a:hover {
      color: var(--green);
    }

    .footer-branch h4 {
      font-family: var(--font-display);
      font-size: 0.85rem;
      color: #fff;
      margin: 1.1rem 0 0.5rem;
    }

    .branch-details {
      list-style: none;
      display: grid;
      gap: 0.65rem;
    }

    .branch-details li {
      display: flex;
      align-items: flex-start;
      gap: 0.6rem;
      font-size: 0.85rem;
      color: rgba(255, 255, 255, 0.65);
    }

    .branch-details svg {
      width: 16px;
      height: 16px;
      flex: 0 0 16px;
      color: var(--green);
      margin-top: 0.15rem;
    }

    .branch-details a {
      color: rgba(255, 255, 255, 0.75);
      transition: color 0.2s ease;
    }

    .branch-details a:hover {
      color: var(--green);
    }

    .branch-hours dl {
      display: grid;
      grid-template-columns: auto 1fr;
      gap: 0.15rem 0.6rem;
      font-size: 0.85rem;
    }

    .branch-hours dt {
      font-weight: 700;
      color: rgba(255, 255, 255, 0.85);
    }

    .branch-hours dd {
      color: var(--green);
      font-weight: 600;
    }

    .footer-branch .social-links {
      display: flex;
      gap: 0.7rem;
      margin-top: 1rem;
    }

    .footer-branch .social-link {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 34px;
      height: 34px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.08);
      color: #fff;
      transition: background 0.2s ease, transform 0.2s ease;
    }

    .footer-branch .social-link:hover {
      background: var(--green);
      color: var(--navy);
      transform: translateY(-3px);
    }

    .footer-bottom {
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      padding-block: 1.5rem;
    }

    .footer-bottom-inner {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: space-between;
      gap: 0.75rem;
      font-size: 0.8rem;
      color: rgba(255, 255, 255, 0.55);
    }

    .footer-bottom-inner a {
      color: rgba(255, 255, 255, 0.7);
      text-decoration: underline;
      text-underline-offset: 2px;
    }

    .footer-bottom-inner a:hover {
      color: var(--green);
    }

    @media (max-width: 1000px) {
      .footer-grid {
        grid-template-columns: 1fr 1fr;
      }
    }

    @media (max-width: 600px) {
      .footer-grid {
        grid-template-columns: 1fr;
      }
    }

    /* ── Back to top ─────────────────────────────────────────────── */
    .back-to-top {
      position: fixed;
      right: 1.5rem;
      bottom: 6.5rem;
      z-index: 80;
      width: 44px;
      height: 44px;
      border-radius: 50%;
      background: var(--navy);
      color: #fff;
      border: none;
      display: none;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      box-shadow: 0 8px 20px rgba(9, 27, 65, 0.35);
      transition: transform 0.2s ease, opacity 0.2s ease;
    }

    .back-to-top.is-visible {
      display: inline-flex;
    }

    .back-to-top:hover {
      transform: translateY(-3px);
      background: var(--blue);
    }

