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

  :root {
    --white:       #FFFFFF;
    --off-white:   #F5F7FA;
    --sand:        #EDE5D8;
    --black:       #0A0C10;
    --navy:        #0C1F48;
    --navy-mid:    #173670;
    --blue:        #2356B2;
    --blue-light:  #4A7FD4;
    --blue-pale:   #D6E4F7;
    --earth:       #7A5C35;
    --earth-light: #B8956A;
    --earth-pale:  #F0E6D8;
    --muted:       #5A6580;
    --border:      rgba(12,31,72,0.10);
  }

  html {
    scroll-behavior: smooth;
    overflow-x: hidden;
  }
  body {
    font-family: 'DM Sans', sans-serif;
    background: var(--off-white);
    color: var(--black);
    overflow-x: hidden;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: subpixel-antialiased;
    -moz-osx-font-smoothing: auto;
    font-kerning: normal;
  }
  .page-home { background: var(--earth-pale); }
  .page-contact { background: var(--earth-pale); }
  .page-about,
  .page-services,
  .page-catalogue { background: var(--off-white); }
  .page-catalogue {
    --cat-type-eyebrow: clamp(0.72rem, 0.2vw + 0.67rem, 0.84rem);
    --cat-type-hero: clamp(2.5rem, 5.2vw, 4.2rem);
    --cat-type-lead: clamp(1.03rem, 0.34vw + 0.95rem, 1.18rem);
    --cat-type-section-title: clamp(1.65rem, 2.15vw, 2.15rem);
    --cat-type-section-body: clamp(0.94rem, 0.24vw + 0.88rem, 1.03rem);
    --cat-type-group-title: clamp(0.72rem, 0.2vw + 0.66rem, 0.82rem);
    --cat-type-item: clamp(0.93rem, 0.16vw + 0.89rem, 1rem);
  }
  .page-legal { background: var(--off-white); }

  /* ── NAV ── */
  nav {
    position: fixed;
    top: 1.1rem;
    left: max(1.5rem, calc((100vw - 1240px) / 2));
    right: max(1.5rem, calc((100vw - 1240px) / 2));
    width: auto;
    z-index: 100;
    display: flex; align-items: center; justify-content: space-between;
    padding: 0;
    background: transparent;
    backdrop-filter: none;
    border: none;
    border-radius: 0;
    box-shadow: none;
    transition: background 0.28s ease, padding 0.28s ease, border-color 0.28s ease, border-radius 0.28s ease, backdrop-filter 0.28s ease;
  }
  nav.scrolled {
    padding: 0.8rem 1.15rem;
    background: rgba(255,255,255,0.76);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 1rem;
    border-bottom: none;
  }
  .nav-logo { font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 900; color: var(--navy); text-decoration: none; display: flex; align-items: center; gap: 0.58rem; min-width: 0; }
  .nav-logo span { color: var(--navy) !important; }
  .page-home nav {
    left: calc(clamp(1rem, 5vw, 5rem) + clamp(1rem, 1.6vw, 1.4rem));
  }
  .page-home .nav-logo,
  .page-home .nav-logo span {
    color: var(--white) !important;
  }
  .page-inner .nav-logo,
  .page-inner .nav-logo span {
    color: var(--white) !important;
  }
  .page-home nav.scrolled .nav-logo,
  .page-home nav.scrolled .nav-logo span,
  .page-inner nav.scrolled .nav-logo,
  .page-inner nav.scrolled .nav-logo span {
    color: var(--navy) !important;
  }
  .page-home nav:not(.scrolled) .nav-toggle,
  .page-inner nav:not(.scrolled) .nav-toggle {
    color: var(--white);
  }
  .page-home nav.scrolled .nav-toggle,
  .page-inner nav.scrolled .nav-toggle {
    color: var(--navy);
  }
  .nav-links { display: flex; gap: 0.62rem; list-style: none; align-items: center; }
  .nav-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 0.28rem;
    width: 2.75rem;
    height: 2.75rem;
    border: none;
    border-radius: 0;
    background: transparent;
    color: var(--navy);
    cursor: pointer;
    flex-shrink: 0;
    transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease, box-shadow 0.22s ease;
  }
  .nav-toggle:hover {
    transform: translateY(-1px);
    background: transparent;
  }
  .nav-toggle:focus-visible {
    outline: 2px solid var(--blue);
    outline-offset: 2px;
  }
  .nav-toggle-bar {
    width: 1.2rem;
    height: 2px;
    border-radius: 2px;
    background: currentColor;
    transition: transform 0.2s ease, opacity 0.2s ease;
  }
  .nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) { opacity: 0; }
  .nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
  .mobile-menu { display: none; opacity: 0; pointer-events: none; }
  .mobile-menu-panel {
    width: min(86vw, 340px);
    max-height: calc(100vh - 6.8rem);
    overflow-y: auto;
    border-radius: 1.4rem;
    padding: 0.82rem;
    background: rgba(248,251,255,0.98);
    border: 1px solid rgba(255,255,255,0.45);
    transform: translateX(20px) scale(0.98);
    opacity: 0;
    transition: transform 0.24s ease, opacity 0.24s ease;
  }
  .mobile-menu-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.2rem 0.18rem 0.8rem;
    border-bottom: 1px solid rgba(12,31,72,0.08);
    margin-bottom: 0.72rem;
  }
  .mobile-menu-title {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(12,31,72,0.5);
  }
  .mobile-menu-close {
    width: 2.1rem;
    height: 2.1rem;
    border: 1px solid rgba(12,31,72,0.1);
    border-radius: 999px;
    background: rgba(255,255,255,0.78);
    color: var(--navy);
    font-size: 1.15rem;
    line-height: 1;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
  }
  .mobile-menu-close:hover {
    transform: rotate(90deg);
    background: rgba(214,228,247,0.9);
    border-color: rgba(35,86,178,0.2);
  }
  .mobile-menu-close:focus-visible {
    outline: 2px solid rgba(35,86,178,0.52);
    outline-offset: 2px;
  }
  .mobile-menu-links { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; }
  .mobile-menu-links a { display: block; text-align: left; }
  .mobile-menu .nav-menu-pill,
  .mobile-menu .nav-cta {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 0.95rem 1rem;
    border-radius: 1rem;
    font-size: 0.74rem;
    letter-spacing: 0.12em;
    box-shadow: none;
    justify-content: flex-start;
  }
  .mobile-menu .nav-menu-pill {
    background: rgba(255,255,255,0.72);
  }
  .mobile-menu .nav-cta {
    justify-content: center;
    margin-top: 0.15rem;
  }
  .mobile-menu.is-open { opacity: 1; pointer-events: auto; }
  .mobile-menu.is-open .mobile-menu-panel { transform: translateX(0) scale(1); opacity: 1; }
  .nav-links a { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; text-decoration: none; color: #244165; transition: color 0.2s, background 0.2s, border-color 0.2s; }
  .nav-links a:hover { color: #14335d; }
  .nav-menu-pill {
    background: rgba(255,255,255,0.72);
    color: #244165 !important;
    padding: 0.5rem 0.88rem;
    border-radius: 999px;
    border: 1px solid rgba(35,86,178,0.16);
    text-decoration: none;
  }
  .nav-menu-pill:hover {
    background: rgba(214,228,247,0.9);
    color: #14335d !important;
    border-color: rgba(35,86,178,0.32);
  }
  .nav-cta {
    background: var(--blue) !important;
    color: var(--white) !important;
    padding: 0.5rem 1rem;
    border-radius: 999px;
    border: 1px solid transparent;
    box-shadow: 0 8px 14px rgba(35,86,178,0.2);
    transition: background 0.2s !important;
    text-decoration: none;
  }
  .nav-links .nav-cta { margin-left: 0.45rem; }
  .nav-cta:hover { background: var(--blue-light) !important; }
  .page-about .nav-link-about,
  .page-services .nav-link-services,
  .page-catalogue .nav-link-catalogue {
    background: rgba(214,228,247,0.98);
    color: #14335d !important;
    border-color: rgba(35,86,178,0.34);
  }
  .page-contact .nav-cta {
    background: var(--blue) !important;
  }

  /* ── HERO ── */
  .hero {
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    isolation: isolate;
    padding-top: 0;
    display: flex;
    align-items: center;
  }
  .hero-left {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: min(680px, calc(100% - 2rem));
    margin-left: clamp(1rem, 5vw, 5rem);
    margin-right: 1rem;
    padding: clamp(2rem, 3.8vw, 3.2rem) clamp(1rem, 1.6vw, 1.4rem);
    background: transparent;
    border-radius: 0;
    box-shadow: none;
    backdrop-filter: none;
  }
  .hero-tag { display: inline-flex; align-items: center; gap: 0.5rem; font-size: 0.72rem; font-weight: 500; letter-spacing: 0.13em; text-transform: uppercase; color: rgba(225,241,255,0.96); margin-bottom: 1.4rem; animation: fadeUp 0.6s ease both; text-shadow: 0 1px 8px rgba(0,0,0,0.45); }
  .hero-tag::before { content: ''; width: 2rem; height: 1px; background: rgba(225,241,255,0.82); }
  .hero-title { font-family: 'Playfair Display', serif; font-size: clamp(3rem, 5vw, 5.2rem); line-height: 1.06; font-weight: 900; letter-spacing: -0.03em; margin-bottom: 1.4rem; animation: fadeUp 0.7s 0.1s ease both; color: #ffffff; text-shadow: 0 2px 16px rgba(0,0,0,0.45); }
  .hero-title em { font-style: italic; color: #9dd0ff; }
  .hero-desc { font-size: 1rem; font-weight: 400; line-height: 1.8; color: rgba(245,250,255,0.92); max-width: 420px; margin-bottom: 2.4rem; animation: fadeUp 0.7s 0.2s ease both; text-shadow: 0 1px 10px rgba(0,0,0,0.42); }
  .hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; animation: fadeUp 0.7s 0.3s ease both; }
  .btn-primary { background: var(--navy); color: var(--white); padding: 0.85rem 2rem; border-radius: 3rem; font-size: 0.9rem; font-weight: 500; text-decoration: none; transition: background 0.2s, transform 0.2s; box-shadow: 0 4px 20px rgba(12,31,72,0.25); }
  .btn-primary:hover { background: var(--blue); transform: translateY(-2px); }
  .btn-outline { border: 1.5px solid var(--navy); color: var(--navy); padding: 0.85rem 2rem; border-radius: 3rem; font-size: 0.9rem; font-weight: 500; text-decoration: none; transition: background 0.2s, color 0.2s; }
  .btn-outline:hover { background: var(--navy); color: var(--white); }

  .hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
  }

  /* atmospheric overlay */
  .hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(145deg, rgba(8,22,52,0.56) 0%, rgba(8,22,52,0.36) 40%, rgba(8,22,52,0.5) 100%);
    z-index: 2;
    pointer-events: none;
  }
  body.page-home.hero-scroll-active .hero {
    --hero-scroll-progress: 0;
    will-change: auto;
    transform: none;
    filter: none;
  }
  body.page-home.hero-scroll-active .hero-left {
    will-change: auto;
    transform: none;
    opacity: 1;
  }

  /* ── SECTIONS ── */
  .section { padding: 6rem 5rem; }
  .section-label { font-size: 0.72rem; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: var(--blue); display: flex; align-items: center; gap: 0.7rem; margin-bottom: 1rem; }
  .section-label::after { content: ''; flex: 0 0 2rem; height: 1px; background: var(--blue); }
  .section-title { font-family: 'Playfair Display', serif; font-size: clamp(2rem, 3.5vw, 3rem); font-weight: 900; line-height: 1.12; letter-spacing: -0.02em; max-width: 620px; margin-bottom: 1rem; color: var(--black); }
  .section-sub { color: var(--muted); font-size: 0.95rem; line-height: 1.75; max-width: 540px; margin-bottom: 3rem; }
  .page-inner .section:first-of-type { padding-top: 3rem; }

  /* ── PAGE HERO BANNER ── */
  .page-hero {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 60%, #1a3a7a 100%);
    padding: 7rem 5rem 5rem;
    position: relative;
    overflow: hidden;
    text-align: center;
  }
  .page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 20% 50%, rgba(74,127,212,0.18) 0%, transparent 60%),
                radial-gradient(ellipse at 80% 20%, rgba(74,127,212,0.12) 0%, transparent 50%);
    pointer-events: none;
  }
  .page-hero-label {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--blue-light);
    margin-bottom: 1rem;
    position: relative;
  }
  .page-hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.2rem, 5vw, 3.6rem);
    font-weight: 900;
    color: var(--white);
    line-height: 1.1;
    letter-spacing: -0.02em;
    max-width: 680px;
    margin: 0 auto 0.8rem;
    position: relative;
  }
  .page-hero-sub {
    font-size: 1rem;
    color: rgba(255,255,255,0.55);
    max-width: 480px;
    margin: 0 auto;
    line-height: 1.7;
    position: relative;
  }
  .page-hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
  }
  .page-hero-wave svg { display: block; width: 100%; }
  .page-catalogue .page-hero-label {
    font-size: var(--cat-type-eyebrow);
    letter-spacing: 0.2em;
  }
  .page-catalogue .page-hero-title {
    font-size: var(--cat-type-hero);
    line-height: 1.04;
    letter-spacing: -0.03em;
    max-width: 780px;
  }
  .page-catalogue .page-hero-sub {
    font-size: var(--cat-type-lead);
    line-height: 1.74;
    color: rgba(255,255,255,0.72);
    max-width: 640px;
  }

  /* ── ENHANCED MV-CARDS ── */
  .mv-card {
    background: var(--off-white);
    border-radius: 1rem;
    padding: 1.5rem;
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
  }
  .mv-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 3px;
    background: linear-gradient(90deg, var(--blue), var(--blue-light));
    opacity: 0;
    transition: opacity 0.25s ease;
  }
  .mv-card:hover { transform: translateY(-3px); box-shadow: 0 12px 30px rgba(12,31,72,0.08); }
  .mv-card:hover::before { opacity: 1; }
  .mv-card-icon {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: var(--blue-pale);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem;
    margin-bottom: 0.85rem;
  }

  /* ── ENHANCED SERVICE CARDS ── */
  .service-card { position: relative; border-bottom: 3px solid transparent; transition: background 0.3s, transform 0.3s, border-color 0.3s; }
  .service-card:hover { border-color: var(--blue-light); }
  .service-card-icon { font-size: 1.6rem; margin-bottom: 0.65rem; display: block; }

  /* ── CONTACT INFO CARD ── */
  .contact-info-card {
    background: linear-gradient(145deg, var(--navy) 0%, var(--navy-mid) 100%);
    border-radius: 1.25rem;
    padding: 2rem 1.8rem;
    color: var(--white);
    height: 100%;
    box-sizing: border-box;
    text-align: center;
  }
  .contact-info-card .section-label { color: var(--blue-light); }
  .contact-info-card .section-label::after { background: var(--blue-light); }
  .contact-info-card .section-title { color: var(--white); max-width: 100%; }
  .contact-info-card .section-sub { color: rgba(255,255,255,0.55); }
  .contact-info-card .contact-label { color: rgba(255,255,255,0.45); }
  .contact-info-card .contact-val { color: var(--white); }
  .contact-info-card .contact-val a { color: var(--white); }
  .contact-info-card .contact-val a:hover { color: var(--blue-light); }
  .contact-info-card .contact-ico { background: rgba(255,255,255,0.08); border-radius: 50%; width: 38px; height: 38px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
  .contact-card-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    line-height: 1.2;
    margin-bottom: 0.35rem;
    color: var(--white);
  }
  .contact-card-sub {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.72);
    margin: 0 auto 1.15rem;
    line-height: 1.6;
    max-width: 460px;
  }
  .contact-card-items {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
    margin-top: 0.25rem;
  }
  .contact-mini-label {
    font-weight: 700;
    letter-spacing: 0.02em;
  }

  /* ── HOME OVERVIEW ── */
  .home-overview { background: var(--white); }
  .home-overview .section-title { max-width: 760px; }
  .home-overview .section-sub { max-width: 680px; margin-bottom: 2.4rem; }
  .home-teasers { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1.15rem; margin-top: 0; }
  .home-teaser {
    background: linear-gradient(150deg, #f9fcff 0%, #f1f6ff 100%);
    border: 1px solid rgba(35,86,178,0.16);
    border-radius: 1.15rem;
    padding: 1.45rem;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    position: relative;
    overflow: hidden;
    isolation: isolate;
    min-height: 245px;
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  }
  .home-teaser > * {
    position: relative;
    z-index: 1;
  }
  .home-teaser::before {
    display: none;
  }
  .home-teaser:hover {
    transform: translateY(-5px);
    border-color: rgba(35,86,178,0.42);
    box-shadow: 0 16px 26px rgba(14,47,103,0.13);
    background: linear-gradient(150deg, #f7fbff 0%, #edf4ff 100%);
  }
  .home-teaser:focus-visible {
    outline: 2px solid rgba(35,86,178,0.42);
    outline-offset: 2px;
    border-color: rgba(35,86,178,0.5);
    box-shadow: 0 0 0 4px rgba(74,127,212,0.18);
  }
  .home-teaser:active {
    transform: translateY(-2px);
  }
  .home-teaser-type {
    font-size: 0.66rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--blue);
    display: inline-block;
  }
  .home-teaser h3 { font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 900; color: var(--navy); }
  .home-teaser p { font-size: 0.88rem; color: var(--muted); line-height: 1.7; }
  .home-teaser-link {
    margin-top: auto;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--navy);
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
  }
  .home-teaser:hover .home-teaser-link,
  .home-teaser:focus-visible .home-teaser-link {
    color: #153a79;
  }
  .home-teaser-link::after { content: '\2192'; transition: transform 0.2s ease; }
  .home-teaser:hover .home-teaser-link::after { transform: translateX(3px); }

  /* ── ABOUT ── */
  #about { background: var(--white); }
  .about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
  .about-quote { font-family: 'Playfair Display', serif; font-size: 1.15rem; font-style: italic; line-height: 1.65; color: var(--navy); border-left: 3px solid var(--blue); padding-left: 1.5rem; margin-bottom: 1.5rem; }
  .about-body { color: var(--muted); line-height: 1.8; font-size: 0.95rem; }
  .mv-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
  .mv-card { background: var(--off-white); border-radius: 1rem; padding: 1.5rem; border: 1px solid var(--border); }
  .mv-card h4 { font-family: 'Playfair Display', serif; font-size: 1rem; font-weight: 700; margin-bottom: 0.5rem; color: var(--navy); }
  .mv-card h4 span { color: var(--blue); }
  .mv-card p { font-size: 0.85rem; color: var(--muted); line-height: 1.65; }
  .mv-card.full { grid-column: 1 / -1; }

  /* ── SERVICES ── */
  #services { background: var(--off-white); }
  #services .section-label { color: var(--blue); }
  #services .section-label::after { background: var(--blue); }
  #services .section-title { color: var(--black); }
  #services .section-sub { color: var(--muted); }
  .services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
  .service-card { background: var(--white); border-radius: 1.25rem; padding: 2rem; border: 1px solid var(--border); transition: background 0.3s, transform 0.3s; }
  .service-card:hover { background: var(--blue-pale); transform: translateY(-5px); }
  .service-num { font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 900; color: rgba(35,86,178,0.28); line-height: 1; margin-bottom: 0.6rem; }
  .service-name { font-family: 'Playfair Display', serif; font-size: 1.05rem; font-weight: 700; margin-bottom: 0.45rem; color: var(--navy); }
  .service-desc { font-size: 0.85rem; color: var(--muted); line-height: 1.65; }

  /* ── RENTAL CATALOGUE ── */
  #catalogue { background: var(--white); }
  #catalogue .section-label {
    display: inline-flex;
    width: fit-content;
    background: var(--navy);
    color: var(--white);
    padding: 0.5rem 1.05rem;
    border-radius: 2rem;
    letter-spacing: 0.1em;
    font-weight: 600;
    box-shadow: 0 6px 20px rgba(12,31,72,0.14);
  }
  #catalogue .section-label::after { display: none; }
  .catalogue-grid {
    display: flex;
    flex-direction: column;
    gap: 4.25rem;
    margin: 2.2rem auto 0;
    max-width: 1120px;
  }
  .catalogue-section {
    background: transparent;
    border: 0;
    padding-top: 0;
  }
  .catalogue-section-head {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.68rem;
    padding: 0 0 1rem;
    text-align: center;
  }
  .catalogue-section-head h3 {
    font-family: 'Playfair Display', serif;
    font-size: var(--cat-type-section-title);
    font-weight: 900;
    letter-spacing: -0.01em;
    color: var(--navy);
    line-height: 1.12;
  }
  .catalogue-section-head-copy {
    display: flex;
    flex-direction: column;
    gap: 0.28rem;
    align-items: center;
  }
  .catalogue-section-head-copy p {
    margin: 0;
    color: var(--muted);
    font-size: var(--cat-type-section-body);
    line-height: 1.62;
    letter-spacing: 0.01em;
    max-width: 560px;
  }
  .catalogue-groups {
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.4rem;
  }
  .catalogue-group {
    background: transparent;
    border: 0;
    border-radius: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
  }
  .catalogue-group h5 {
    font-size: var(--cat-type-group-title);
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--blue);
    margin: 0;
    font-weight: 700;
  }
  .catalogue-group-image {
    height: 190px;
    border: 1px solid rgba(12,31,72,0.18);
    border-radius: 0.68rem;
    background: #f4f8ff;
    color: #345b95;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 0.63rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 0;
    padding: 0.4rem;
  }
  .catalogue-group-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: inherit;
    display: block;
  }
  .catalogue-sublist {
    padding-left: 1rem;
    margin: 0;
  }
  .catalogue-sublist li {
    color: var(--muted);
    line-height: 1.72;
    font-size: var(--cat-type-item);
    margin: 0.24rem 0;
  }
  .page-catalogue #catalogue-guidance .section-title {
    font-size: clamp(2rem, 3.1vw, 2.85rem);
    line-height: 1.1;
    letter-spacing: -0.025em;
    max-width: 780px;
  }
  .page-catalogue #catalogue-guidance .section-sub {
    font-size: clamp(1rem, 0.3vw + 0.93rem, 1.1rem);
    line-height: 1.8;
    max-width: 700px;
  }
  .page-catalogue #catalogue-guidance .service-name {
    font-size: clamp(1.05rem, 0.34vw + 0.97rem, 1.2rem);
    line-height: 1.28;
  }
  .page-catalogue #catalogue-guidance .service-desc {
    font-size: 0.92rem;
    line-height: 1.7;
  }

  /* ── PROCESS ── */
  #process { background: var(--sand); }
  #process .section-label { color: var(--earth); }
  #process .section-label::after { background: var(--earth); }
  #process .section-title { color: var(--black); }
  .steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }
  .step { position: relative; }
  .step-num { font-family: 'Playfair Display', serif; font-size: 3.5rem; font-weight: 900; color: rgba(122,92,53,0.18); line-height: 1; margin-bottom: 0.5rem; }
  .step-title { font-weight: 700; font-size: 0.95rem; margin-bottom: 0.4rem; color: var(--navy); }
  .step-desc { font-size: 0.85rem; color: var(--muted); line-height: 1.65; }
  .step-connector { position: absolute; top: 1.8rem; right: -1rem; width: 2rem; height: 2px; background: rgba(122,92,53,0.2); }
  .step:last-child .step-connector { display: none; }

  /* ── CLIENTS ── */
  #clients { background: #183158; color: var(--white); padding: 6rem 5rem; }
  #clients .section-label { color: var(--blue-pale); }
  #clients .section-label::after { background: var(--blue-pale); }
  #clients .section-title { color: var(--white); }
  #clients .section-sub { color: rgba(233,239,250,0.72); }
  .clients-row { display: flex; gap: 0.8rem; flex-wrap: wrap; margin-bottom: 4rem; }
  .client-pill { display: flex; align-items: center; gap: 0.6rem; background: rgba(255,255,255,0.1); border: 1px solid rgba(214,228,247,0.28); border-radius: 3rem; padding: 0.55rem 1.1rem; font-size: 0.84rem; font-weight: 500; color: var(--white); transition: background 0.2s, border-color 0.2s; }
  .client-pill:hover { background: rgba(74,127,212,0.26); border-color: var(--blue-pale); }
  .client-pill-logo-wrap { width: 1.85rem; height: 1.85rem; border-radius: 50%; background: rgba(255,255,255,0.94); display: inline-flex; align-items: center; justify-content: center; overflow: hidden; flex-shrink: 0; }
  .client-pill-logo { width: 100%; height: 100%; object-fit: cover; display: block; }
  .client-pill-logo-contain { object-fit: contain; padding: 0.12rem; }
  .client-pill-logo-makosa { transform: scale(1.18); transform-origin: center; }
  .featured-projects-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.2rem;
  }
  .featured-projects-label {
    color: var(--blue-light) !important;
    margin-bottom: 0;
  }
  .featured-projects-label::after {
    background: var(--blue-light) !important;
  }
  .featured-carousel {
    position: relative;
  }
  .featured-carousel-viewport {
    overflow: hidden;
    border-radius: 1.25rem;
  }
  .featured-carousel-track {
    display: flex;
    will-change: transform;
    transition: transform 0.5s ease;
  }
  .featured-slide {
    flex: 0 0 100%;
    min-width: 100%;
  }
  .featured-carousel-controls {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
  }
  .featured-carousel-btn {
    width: 2.2rem;
    height: 2.2rem;
    border-radius: 50%;
    border: 1px solid rgba(214,228,247,0.42);
    background: rgba(255,255,255,0.1);
    color: var(--white);
    font-size: 1rem;
    line-height: 1;
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
  }
  .featured-carousel-btn:hover {
    background: rgba(214,228,247,0.2);
    border-color: rgba(214,228,247,0.65);
    transform: translateY(-1px);
  }
  .featured-carousel-btn:focus-visible {
    outline: 2px solid rgba(214,228,247,0.75);
    outline-offset: 2px;
  }
  .featured-carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.42rem;
    margin-top: 0.9rem;
  }
  .featured-carousel-dot {
    width: 0.58rem;
    height: 0.58rem;
    border-radius: 50%;
    border: 0;
    background: rgba(214,228,247,0.45);
    cursor: pointer;
    padding: 0;
    transition: transform 0.2s ease, background 0.2s ease;
  }
  .featured-carousel-dot:hover {
    transform: scale(1.08);
    background: rgba(214,228,247,0.74);
  }
  .featured-carousel-dot.is-active {
    transform: scale(1.15);
    background: var(--blue-pale);
  }
  .featured-carousel-dot:focus-visible {
    outline: 2px solid rgba(214,228,247,0.7);
    outline-offset: 2px;
  }
  .work-card { background: rgba(255,255,255,0.08); border: 1px solid rgba(214,228,247,0.22); border-radius: 1.25rem; padding: 2rem; transition: background 0.3s, border-color 0.3s; }
  .work-card:hover { background: rgba(255,255,255,0.12); border-color: rgba(214,228,247,0.4); }
  .work-tag { display: inline-block; background: var(--blue); color: var(--white); font-size: 0.67rem; letter-spacing: 0.09em; text-transform: uppercase; padding: 0.18rem 0.65rem; border-radius: 1rem; margin-bottom: 0.7rem; }
  .work-card h4 { font-family: 'Playfair Display', serif; font-size: 1.05rem; font-weight: 700; color: var(--blue-pale); margin-bottom: 0.25rem; }
  .work-meta { font-size: 0.72rem; color: rgba(233,239,250,0.62); margin-bottom: 0.9rem; letter-spacing: 0.05em; text-transform: uppercase; }
  .work-card p { font-size: 0.85rem; color: rgba(233,239,250,0.84); line-height: 1.65; }

  /* ── GALLERY ── */
  #gallery { background: var(--off-white); padding: 6rem 5rem; }
  .gallery-masonry {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.75rem;
    align-items: start;
    grid-auto-rows: auto;
  }
  .gallery-masonry.is-enhanced {
    grid-auto-rows: 8px;
  }
  .gallery-item {
    display: block;
    width: 100%;
    margin: 0;
    border-radius: 0.75rem;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    transition: opacity 0.3s, transform 0.3s;
  }
  .gallery-item img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    image-orientation: from-image;
  }
  .gallery-item:hover { opacity: 0.9; transform: translateY(-2px); }

  /* ── ABOUT TEAM DETAIL ── */
  .team-process {
    background: var(--off-white);
  }
  .team-process .section-label {
    justify-content: center;
  }
  .team-process .section-label::after {
    display: none;
  }
  .team-process .section-title { max-width: 680px; }
  .team-process .section-title,
  .team-process .section-sub {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }
  .team-process-wrap {
    max-width: 920px;
    margin: 0 auto;
  }
  .team-process .team-impact {
    max-width: 820px;
    margin: 0 auto;
    text-align: center;
  }
  .team-process .team-pillars {
    max-width: 720px;
    margin: 0 auto;
    gap: 0.6rem;
  }
  .team-process .team-pillars li {
    display: grid;
    grid-template-columns: 2.2rem 1fr;
    gap: 0.72rem;
    align-items: start;
    text-align: left;
    justify-items: stretch;
    padding: 0;
  }
  .team-process .team-pillars li + li {
    border-top: 1px solid rgba(214,228,247,0.26);
    padding-top: 0.6rem;
  }
  .team-process .team-pillars span {
    margin-top: 0.05rem;
    width: 2.2rem;
    height: 2.2rem;
    font-size: 0.66rem;
    border-color: rgba(214,228,247,0.28);
  }
  .team-process .team-pillars h4 {
    margin-bottom: 0.24rem;
    font-size: 0.9rem;
    line-height: 1.35;
  }
  .team-process .team-pillars p {
    font-size: 0.81rem;
    line-height: 1.58;
  }
  .about-team {
    background: linear-gradient(180deg, #f9fbff 0%, var(--white) 34%, #f4f7fc 100%);
    position: relative;
    overflow: hidden;
    padding-top: 4.2rem;
    padding-bottom: 4.2rem;
    --about-member-photo-height: 188px;
  }
  .about-team::before {
    content: '';
    position: absolute;
    width: min(520px, 44vw);
    height: min(520px, 44vw);
    right: -12%;
    top: -28%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(35,86,178,0.18) 0%, rgba(35,86,178,0.05) 42%, transparent 72%);
    pointer-events: none;
  }
  .about-team > * { position: relative; z-index: 1; }
  .about-team .section-title { max-width: 780px; }
  .about-team .section-sub { max-width: 760px; margin-bottom: 2.1rem; }
  .team-impact {
    background: linear-gradient(145deg, var(--navy) 0%, #102b61 65%, #19448b 100%);
    border-radius: 1.2rem;
    border: 1px solid rgba(214,228,247,0.2);
    padding: 1.65rem;
    color: var(--white);
  }
  .team-pillars {
    list-style: none;
    display: grid;
    gap: 0.95rem;
    margin: 0.2rem 0 0;
  }
  .team-pillars li {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.7rem;
    align-items: start;
  }
  .team-pillars span {
    width: 2rem;
    height: 2rem;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(214,228,247,0.18);
    color: var(--blue-pale);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    margin-top: 0.06rem;
  }
  .team-pillars h4 {
    color: var(--white);
    font-size: 0.86rem;
    line-height: 1.3;
    margin-bottom: 0.22rem;
    font-weight: 700;
  }
  .team-pillars p {
    font-size: 0.8rem;
    line-height: 1.55;
    color: rgba(233,239,250,0.76);
  }
  .about-team-members {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.1rem;
  }
  .about-member-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 1.2rem;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    cursor: pointer;
    transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
  }
  .about-member-card:hover,
  .about-member-card.is-active {
    transform: translateY(-4px);
    box-shadow: 0 10px 28px rgba(12,31,72,0.09);
    border-color: rgba(35,86,178,0.28);
  }
  .about-member-card:focus-visible {
    outline: 2px solid rgba(35,86,178,0.5);
    outline-offset: 2px;
  }
  .about-member-photo {
    height: var(--about-member-photo-height);
    min-height: var(--about-member-photo-height);
    max-height: var(--about-member-photo-height);
    flex: 0 0 var(--about-member-photo-height);
    width: var(--about-member-photo-height);
    margin: 1.1rem auto 0;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid rgba(35,86,178,0.2);
    background: linear-gradient(145deg, #17386f 0%, #2757a2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
  }
  .about-member-photo::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, rgba(255,255,255,0.08), rgba(255,255,255,0));
    pointer-events: none;
  }
  .about-member-photo.has-photo {
    background: #ececec;
  }
  .about-member-photo.has-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 18%;
    display: block;
  }
  .about-member-photo.has-photo img.deborah-photo {
    object-position: center 16%;
    transform: scale(1.08);
    transform-origin: center top;
  }
  .about-member-photo.has-photo img.solomon-photo {
    object-position: center 34%;
    transform: scale(1.16);
    transform-origin: center center;
  }
  .about-member-photo.has-photo img.dickson-photo {
    object-position: center center;
    transform: scale(1.02);
    transform-origin: center center;
  }
  .about-member-photo.has-photo img.naomi-photo {
    object-position: center 18%;
    transform: scale(1.06);
    transform-origin: center top;
  }
  .about-member-photo-initial {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 900;
    letter-spacing: 0.03em;
    color: #ffffff;
    position: relative;
    z-index: 1;
  }
  .about-member-photo-initial::before {
    content: '';
    position: absolute;
    inset: auto -22% -34% -22%;
    height: 80%;
    background:
      radial-gradient(circle at 20% 38%, rgba(255,255,255,0.2) 0%, transparent 48%),
      radial-gradient(circle at 75% 30%, rgba(255,255,255,0.14) 0%, transparent 44%);
    pointer-events: none;
    z-index: -1;
  }
  .about-member-content {
    padding: 0.95rem 1rem 1.1rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    text-align: center;
  }
  .about-member-content .team-name {
    font-size: 1.18rem;
    margin-bottom: 0;
    line-height: 1.14;
  }
  .about-member-content .team-role {
    margin-top: 0.14rem;
    color: #345b95;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.64rem;
    font-weight: 700;
  }
  .about-member-engage {
    width: 100%;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    margin-top: 0;
    transition: max-height 0.24s ease, opacity 0.2s ease, margin-top 0.2s ease, padding-top 0.2s ease;
  }
  .about-member-card.is-active .about-member-engage {
    max-height: 90px;
    opacity: 1;
    margin-top: 0.55rem;
    padding-top: 0.55rem;
    border-top: 1px solid rgba(35,86,178,0.18);
  }
  .about-member-engage span {
    display: block;
    color: var(--muted);
    font-size: 0.76rem;
    line-height: 1.5;
    margin-bottom: 0.45rem;
  }
  .about-member-engage a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    padding: 0.36rem 0.72rem;
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--white);
    text-decoration: none;
    background: var(--blue);
  }
  .about-member-engage a:hover {
    background: var(--blue-light);
  }
  /* ── TEAM ── */
  .page-home #team { background: var(--white); }
  .team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }
  .team-card { text-align: center; padding: 2.4rem 1.4rem; background: var(--off-white); border-radius: 1.25rem; border: 1px solid var(--border); transition: box-shadow 0.3s, transform 0.3s; }
  .team-card:hover { box-shadow: 0 16px 40px rgba(12,31,72,0.1); transform: translateY(-4px); }
  .team-avatar { width: 138px; height: 138px; border-radius: 50%; background: var(--navy); margin: 0 auto 1.25rem; display: flex; align-items: center; justify-content: center; font-family: 'Playfair Display', serif; font-size: 2.05rem; font-weight: 900; color: var(--blue-light); border: 3px solid var(--blue-pale); box-shadow: 0 10px 28px rgba(12,31,72,0.12); }
  .team-avatar.has-photo { padding: 0; overflow: hidden; background: #ececec; }
  .team-avatar.has-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center; border-radius: 50%; display: block; }
  .team-avatar.has-photo img.solomon-photo { object-position: center 34%; transform: scale(1.2); transform-origin: center center; }
  .team-avatar.has-photo img.dickson-photo { object-position: center center; transform: scale(1.02); transform-origin: center center; }
  .team-avatar.has-photo img.deborah-photo { object-position: center 18%; transform: scale(1.18); transform-origin: center top; }
  .team-avatar.has-photo img.naomi-photo { object-position: center 22%; transform: scale(1.1); transform-origin: center top; }
  .team-name { font-family: 'Playfair Display', serif; font-size: 1.2rem; font-weight: 700; margin-bottom: 0.3rem; color: var(--navy); }
  .team-role { font-size: 0.78rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.09em; }
  .team-card.flip-card {
    perspective: 1200px;
    padding: 0;
    background: transparent;
    border: none;
    box-shadow: none;
    min-height: 338px;
    cursor: pointer;
  }
  .team-card.flip-card:hover {
    transform: none;
    box-shadow: none;
  }
  .team-card.flip-card:focus-visible {
    outline: 2px solid var(--blue);
    outline-offset: 4px;
  }
  .flip-card-inner {
    position: relative;
    width: 100%;
    min-height: 338px;
    transition: transform 0.68s cubic-bezier(0.22, 0.61, 0.36, 1);
    transform-style: preserve-3d;
  }
  .team-card.flip-card.is-flipped .flip-card-inner {
    transform: rotateY(180deg);
  }
  .flip-card-face {
    position: absolute;
    inset: 0;
    backface-visibility: hidden;
    border-radius: 1.25rem;
    border: 1px solid var(--border);
  }
  .flip-card-front {
    background: var(--off-white);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
    padding: 2.4rem 1.4rem 1.2rem;
  }
  .team-flip-hint {
    margin-top: 1rem;
    font-size: 0.69rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--blue);
    font-weight: 600;
    opacity: 0.9;
  }
  .flip-card-back {
    transform: rotateY(180deg);
    background: linear-gradient(145deg, var(--navy) 0%, #163770 58%, #2356b2 100%);
    color: var(--white);
    padding: 1.2rem 1.2rem 1.3rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 0.75rem;
  }
  .team-back-kicker {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(214,228,247,0.86);
  }
  .team-back-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    line-height: 1.2;
    color: var(--white);
  }
  .team-back-copy {
    font-size: 0.82rem;
    line-height: 1.55;
    color: rgba(233,239,250,0.92);
  }
  .team-back-tags {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin: 0;
    padding: 0;
  }
  .team-back-tags li {
    border: 1px solid rgba(214,228,247,0.42);
    border-radius: 999px;
    padding: 0.28rem 0.55rem;
    font-size: 0.66rem;
    letter-spacing: 0.04em;
    color: rgba(246,249,255,0.96);
    background: rgba(255,255,255,0.08);
  }
  .team-back-link {
    align-self: flex-start;
    font-size: 0.76rem;
    font-weight: 700;
    color: var(--white);
    text-decoration: none;
    border-bottom: 1px solid rgba(255,255,255,0.6);
    padding-bottom: 0.12rem;
  }
  .team-back-link:hover {
    color: var(--blue-pale);
    border-bottom-color: var(--blue-pale);
  }

  /* ── CTA ── */
  .cta-banner {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 50%, var(--blue) 100%);
    padding: clamp(3rem, 7vw, 5rem) clamp(1rem, 4vw, 5rem);
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
  }
  .cta-banner::before {
    content: '';
    position: absolute;
    top: -42%;
    left: -18%;
    width: min(680px, 62vw);
    height: min(680px, 62vw);
    background: radial-gradient(circle, rgba(255,255,255,0.14) 0%, rgba(255,255,255,0.05) 35%, transparent 72%);
    border-radius: 50%;
    pointer-events: none;
  }
  .cta-banner::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(115deg, rgba(255,255,255,0.09) 0%, rgba(255,255,255,0) 45%);
    pointer-events: none;
  }
  .cta-banner > * { position: relative; z-index: 1; }
  .cta-banner h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3.4rem);
    font-weight: 900;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
  }
  .cta-banner p {
    font-size: 1.02rem;
    opacity: 0.82;
    margin: 0 auto 1.8rem;
    max-width: 760px;
  }
  .cta-shell {
    max-width: 940px;
    margin: 0 auto;
    padding: clamp(1.8rem, 4vw, 3rem);
    border-radius: 1.2rem;
    border: 1px solid rgba(255,255,255,0.22);
    background: rgba(8,18,44,0.22);
    backdrop-filter: blur(2px);
  }
  .cta-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.76);
    margin-bottom: 0.85rem;
  }
  .cta-kicker::before {
    content: '';
    width: 1.5rem;
    height: 1px;
    background: rgba(255,255,255,0.55);
  }
  .cta-actions {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
  }
  .btn-white {
    background: var(--white);
    color: var(--navy);
    padding: 0.82rem 1.55rem;
    border-radius: 999px;
    border: 1px solid transparent;
    font-weight: 700;
    font-size: 0.86rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-block;
    transition: transform 0.2s, background 0.2s, color 0.2s, border-color 0.2s;
  }
  .btn-white:hover { transform: translateY(-1px); }
  .btn-white-secondary {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.45);
  }
  .btn-white-secondary:hover {
    background: rgba(255,255,255,0.12);
    color: var(--white);
    border-color: rgba(255,255,255,0.64);
  }
  .cta-meta {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.55rem;
  }
  .cta-meta span {
    font-size: 0.72rem;
    letter-spacing: 0.03em;
    color: rgba(255,255,255,0.86);
    border: 1px solid rgba(255,255,255,0.24);
    border-radius: 999px;
    padding: 0.28rem 0.62rem;
    background: rgba(255,255,255,0.08);
  }
  .cta-banner-inner {
    background: transparent;
  }
  .cta-banner-inner::before,
  .cta-banner-inner::after {
    display: none;
  }
  .cta-banner-inner .cta-shell {
    background: var(--earth-pale);
    border-color: rgba(122,92,53,0.24);
  }
  .cta-banner-inner h2 {
    color: var(--navy);
  }
  .cta-banner-inner p {
    color: var(--muted);
    opacity: 1;
  }
  .cta-banner-inner .cta-kicker {
    color: var(--earth);
  }
  .cta-banner-inner .cta-kicker::before {
    background: rgba(122,92,53,0.5);
  }
  .cta-banner-inner .btn-white {
    background: var(--navy);
    color: var(--white);
  }
  .cta-banner-inner .btn-white:hover {
    background: var(--blue);
    color: var(--white);
  }
  .cta-banner-inner .btn-white-secondary {
    background: transparent;
    color: var(--navy);
    border-color: rgba(12,31,72,0.22);
  }
  .cta-banner-inner .btn-white-secondary:hover {
    background: rgba(12,31,72,0.08);
    color: var(--navy);
    border-color: rgba(12,31,72,0.4);
  }
  .cta-banner-inner .cta-meta span {
    color: var(--navy);
    border-color: rgba(12,31,72,0.15);
    background: rgba(255,255,255,0.7);
  }
  .cta-banner-simple {
    background: transparent;
    padding: clamp(2.4rem, 5vw, 3.4rem) clamp(1rem, 4vw, 3rem);
  }
  .cta-banner-simple::before,
  .cta-banner-simple::after {
    display: none;
  }
  .cta-banner-simple .cta-shell {
    max-width: 700px;
    padding: 0;
    border: none;
    background: transparent;
    backdrop-filter: none;
  }
  .cta-banner-simple h2 {
    font-size: clamp(1.9rem, 3.2vw, 2.6rem);
    margin-bottom: 0.7rem;
    color: var(--navy);
  }
  .cta-banner-simple p {
    max-width: 560px;
    margin: 0 auto 1.15rem;
    font-size: 0.95rem;
    opacity: 1;
    color: var(--muted);
  }
  .cta-banner-simple .cta-actions {
    margin-bottom: 0.65rem;
  }
  .cta-banner-simple .btn-white {
    background: var(--navy);
    color: var(--white);
  }
  .cta-banner-simple .btn-white:hover {
    background: var(--blue);
    color: var(--white);
  }

  /* ── CONTACT ── */
  #contact { background: var(--earth-pale); }
  #contact .section-label { color: var(--earth); }
  #contact .section-label::after { background: var(--earth); }
  #contact .section-title { color: var(--black); }
  .contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3.6rem;
    max-width: 880px;
    margin: 0 auto;
  }
  .contact-item {
    display: flex;
    gap: 0.7rem;
    align-items: center;
    margin: 0;
    text-align: left;
    padding: 0.68rem 0.78rem;
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 0.78rem;
    background: rgba(255,255,255,0.05);
  }
  .contact-ico { font-size: 1.05rem; }
  .contact-label { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted); margin-bottom: 0.2rem; }
  .contact-val { font-weight: 500; font-size: 0.95rem; color: var(--navy); }
  .contact-val a { color: var(--navy); text-decoration: none; }
  .contact-val a:hover { color: var(--blue); }
  .contact-form { display: flex; flex-direction: column; gap: 1rem; }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
  .form-group { display: flex; flex-direction: column; gap: 0.3rem; }
  .form-group label { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted); }
  .form-group input, .form-group select, .form-group textarea { background: var(--white); border: 1.5px solid rgba(122,92,53,0.2); border-radius: 0.6rem; padding: 0.75rem 1rem; font-family: 'DM Sans', sans-serif; font-size: 0.9rem; color: var(--black); outline: none; transition: border-color 0.2s; }
  .form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--blue); }
  .form-group textarea { resize: vertical; min-height: 100px; }
  .form-honeypot {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    clip: rect(0 0 0 0) !important;
    clip-path: inset(50%) !important;
    white-space: nowrap !important;
    border: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
  }
  .form-submit { background: var(--navy); color: var(--white); border: none; border-radius: 3rem; padding: 0.9rem 2rem; font-family: 'DM Sans', sans-serif; font-size: 0.9rem; font-weight: 500; cursor: pointer; transition: background 0.2s; width: fit-content; display: block; margin: 0.4rem auto 1.2rem; }
  .form-submit:hover { background: var(--blue); }

  /* ── LEGAL PAGES ── */
  .legal-shell {
    max-width: 980px;
    margin: 0 auto;
    padding: 7.8rem 1.5rem 3rem;
  }
  .legal-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 1rem;
    padding: clamp(1.2rem, 2.4vw, 2rem);
  }
  .legal-card .section-title {
    margin-bottom: 0.6rem;
    max-width: 100%;
  }
  .legal-meta {
    font-size: 0.82rem;
    color: var(--muted);
    margin-bottom: 1.4rem;
  }
  .legal-content {
    display: flex;
    flex-direction: column;
    gap: 1.05rem;
  }
  .legal-content h2 {
    font-size: 1rem;
    color: var(--navy);
    letter-spacing: 0.01em;
  }
  .legal-content p,
  .legal-content li {
    font-size: 0.9rem;
    color: var(--muted);
    line-height: 1.75;
  }
  .legal-content ul {
    padding-left: 1.1rem;
    display: grid;
    gap: 0.35rem;
  }

  /* ── FOOTER ── */
  /* ── SCROLL ANIMATIONS ── */
  .reveal { opacity: 0; transform: translateY(32px); transition: opacity 0.65s ease, transform 0.65s ease; }
  .reveal.visible { opacity: 1; transform: translateY(0); }
  .reveal-delay-1 { transition-delay: 0.1s; }
  .reveal-delay-2 { transition-delay: 0.2s; }
  .reveal-delay-3 { transition-delay: 0.3s; }
  .reveal-delay-4 { transition-delay: 0.4s; }

  /* ── TESTIMONIALS ── */
  #testimonials { background: var(--white); padding: 6rem 5rem; }
  #testimonials .section-label { color: var(--earth); }
  #testimonials .section-label::after { background: var(--earth); }
  .testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3rem; }
  .testi-card { background: var(--off-white); border-radius: 1.25rem; padding: 2rem; border: 1px solid var(--border); position: relative; display: flex; flex-direction: column; gap: 1.2rem; transition: transform 0.3s, box-shadow 0.3s; }
  .testi-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(12,31,72,0.1); }
  .testi-stars { color: #F5A623; font-size: 1rem; letter-spacing: 2px; }
  .testi-quote { font-family: 'Playfair Display', serif; font-size: 1rem; line-height: 1.75; color: var(--navy); font-style: italic; }
  .testi-quote::before { content: '\201C'; font-size: 2.5rem; color: var(--blue-pale); line-height: 0; vertical-align: -0.6rem; margin-right: 4px; }
  .testi-author { display: flex; align-items: center; gap: 0.75rem; margin-top: auto; }
  .testi-avatar { width: 42px; height: 42px; border-radius: 50%; background: var(--blue-pale); display: flex; align-items: center; justify-content: center; font-family: 'Playfair Display', serif; font-weight: 700; font-size: 1rem; color: var(--blue); flex-shrink: 0; }
  .testi-name { font-weight: 600; font-size: 0.88rem; color: var(--black); }
  .testi-role { font-size: 0.75rem; color: var(--muted); }

  /* ── FAQ ── */
  #faq { background: var(--earth-pale); padding: 6rem 5rem; }
  #faq .section-label { color: var(--earth); }
  #faq .section-label::after { background: var(--earth); }
  #faq .section-label { justify-content: center; }
  #faq .section-title,
  #faq .section-sub {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }
  .faq-list {
    width: min(100%, 860px);
    margin: 3rem auto 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }
  .faq-item { background: var(--white); border-radius: 1rem; border: 1px solid var(--border); overflow: hidden; }
  .faq-question { width: 100%; text-align: left; background: none; border: none; cursor: pointer; padding: 1.4rem 1.8rem; display: flex; justify-content: space-between; align-items: center; font-family: 'DM Sans', sans-serif; font-size: 0.97rem; font-weight: 600; color: var(--navy); gap: 1rem; }
  .faq-question:hover { color: var(--blue); }
  .faq-icon { font-size: 1.3rem; font-weight: 300; color: var(--blue); flex-shrink: 0; transition: transform 0.3s; }
  .faq-item.open .faq-icon { transform: rotate(45deg); }
  .faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s ease; padding: 0 1.8rem; }
  .faq-answer p { font-size: 0.92rem; color: var(--muted); line-height: 1.8; padding-bottom: 1.4rem; }
  .faq-item.open .faq-answer { max-height: 300px; }

  /* ── FLOATING BUTTONS ── */
  .float-btns { position: fixed; bottom: 2rem; right: 2rem; z-index: 999; display: flex; flex-direction: column; gap: 0.75rem; align-items: flex-end; }
  .float-btn { display: flex; align-items: center; gap: 0; padding: 0.85rem; border-radius: 50%; text-decoration: none; font-size: 0.85rem; font-weight: 600; box-shadow: 0 6px 24px rgba(0,0,0,0.22); transition: transform 0.2s, box-shadow 0.2s; cursor: pointer; border: none; }
  .float-btn:hover { transform: translateY(-3px); box-shadow: 0 10px 32px rgba(0,0,0,0.3); }
  .float-btn svg { width: 20px; height: 20px; flex-shrink: 0; }
  .float-wa { background: #25D366; color: #fff; }
  .float-call { background: var(--navy); color: #fff; }
  .float-label { display: none; }

  /* ── POPUP ── */
  .popup-overlay { position: fixed; inset: 0; background: rgba(10,12,16,0.65); z-index: 1100; display: flex; align-items: center; justify-content: center; opacity: 0; pointer-events: none; transition: opacity 0.4s ease; }
  .popup-overlay.active { opacity: 1; pointer-events: all; }
  .popup-box { background: var(--white); border-radius: 1.5rem; padding: 2.5rem 2.2rem; max-width: 420px; width: 90%; position: relative; transform: translateY(30px); transition: transform 0.4s ease; }
  .popup-overlay.active .popup-box { transform: translateY(0); }
  .popup-close { position: absolute; top: 1rem; right: 1.2rem; background: none; border: none; font-size: 1.5rem; cursor: pointer; color: var(--muted); line-height: 1; }
  .popup-close:hover { color: var(--black); }
  .popup-tag { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.13em; text-transform: uppercase; color: var(--blue); margin-bottom: 0.6rem; }
  .popup-title { font-family: 'Playfair Display', serif; font-size: 1.7rem; font-weight: 900; color: var(--navy); line-height: 1.2; margin-bottom: 0.6rem; }
  .popup-sub { font-size: 0.88rem; color: var(--muted); line-height: 1.65; margin-bottom: 1.5rem; }
  .popup-input { width: 100%; padding: 0.75rem 1rem; border: 1.5px solid var(--border); border-radius: 0.65rem; font-family: 'DM Sans', sans-serif; font-size: 0.9rem; color: var(--navy); background: var(--off-white); margin-bottom: 0.75rem; outline: none; transition: border-color 0.2s; }
  .popup-input:focus { border-color: var(--blue); }
  .popup-submit { width: 100%; background: var(--navy); color: var(--white); border: none; padding: 0.9rem; border-radius: 3rem; font-size: 0.92rem; font-weight: 600; cursor: pointer; transition: background 0.2s; }
  .popup-submit:hover { background: var(--blue); }
  .popup-dismiss { text-align: center; margin-top: 0.75rem; font-size: 0.78rem; color: var(--muted); cursor: pointer; background: none; border: none; padding: 0; width: 100%; font-family: inherit; }
  .popup-dismiss:hover { color: var(--navy); }
  .popup-nudge { font-size: 0.75rem; color: var(--earth); font-weight: 500; margin-bottom: 1rem; display: flex; align-items: center; gap: 0.4rem; }

  .site-footer {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 50%, var(--blue) 100%);
    color: rgba(233,239,250,0.72);
    padding: clamp(2.2rem, 4vw, 3.8rem) clamp(1rem, 4vw, 5rem) 1.4rem;
    border-top: 1px solid rgba(255,255,255,0.08);
    width: min(1240px, calc(100% - 3rem));
    margin: 2rem auto 0;
    border-radius: 1.25rem 1.25rem 0 0;
  }
  .page-inner .site-footer {
    margin-top: 0;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 50%, var(--blue) 100%);
  }
  .footer-top {
    max-width: 1180px;
    margin: 0 auto 1.6rem;
    display: grid;
    grid-template-columns: minmax(0, 2fr) repeat(3, minmax(0, 1fr));
    gap: clamp(1.1rem, 2vw, 2rem);
    align-items: start;
  }
  .footer-brand {
    max-width: none;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 1rem;
    padding: 1.15rem 1.2rem;
    margin-right: clamp(0.45rem, 1.1vw, 1rem);
  }
  .footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--white);
    display: block;
    margin-bottom: 0.32rem;
    letter-spacing: -0.01em;
  }
  .footer-logo span { color: var(--blue-light); }
  .footer-tagline {
    font-size: 0.85rem;
    line-height: 1.7;
    color: rgba(233,239,250,0.66);
  }
  .footer-col {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    min-width: 0;
  }
  .footer-col h4 {
    font-size: 0.68rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(233,239,250,0.5);
    margin-bottom: 0.28rem;
  }
  .footer-col a,
  .footer-col p {
    font-size: 0.83rem;
    line-height: 1.65;
    color: rgba(233,239,250,0.78);
    text-decoration: none;
  }
  .footer-col a {
    width: fit-content;
    position: relative;
    padding-bottom: 0.12rem;
    transition: color 0.2s ease;
  }
  .footer-col a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 0;
    height: 1px;
    background: var(--blue-light);
    transition: width 0.2s ease;
  }
  .footer-col a:hover { color: var(--white); }
  .footer-col a:hover::after { width: 100%; }
  .footer-contact p { color: rgba(233,239,250,0.6); }
  .footer-bottom {
    max-width: 1180px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    padding-top: 1rem;
    border-top: 1px solid rgba(255,255,255,0.11);
  }
  .footer-bottom p {
    font-size: 0.75rem;
    color: rgba(233,239,250,0.5);
  }
  .footer-bottom p a {
    color: rgba(233,239,250,0.82);
    text-decoration: none;
    transition: color 0.2s ease;
  }
  .footer-bottom p a:hover {
    color: var(--white);
    text-decoration: none;
  }
  .footer-legal { display: flex; align-items: center; gap: 0.75rem; flex-wrap: wrap; }
  .footer-legal a {
    font-size: 0.74rem;
    color: rgba(233,239,250,0.78);
    text-decoration: none;
    border: 1px solid rgba(255,255,255,0.16);
    border-radius: 999px;
    padding: 0.3rem 0.68rem;
    transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
  }
  .footer-legal a:hover {
    color: var(--white);
    border-color: rgba(74,127,212,0.6);
    background: rgba(74,127,212,0.12);
  }

  @media (max-width: 768px) {
    .form-row { grid-template-columns: 1fr; }
    .contact-card-items { grid-template-columns: 1fr; }
  }
  @keyframes fadeUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }

  @media (max-width: 960px) {
    .testimonials-grid { grid-template-columns: 1fr; }
    #testimonials, #faq { padding: 4rem 1.5rem; }
    .float-label { display: none; }
    .float-btn { padding: 0.85rem; border-radius: 50%; }

    nav {
      top: 0.8rem;
      left: 1rem;
      right: 1rem;
      width: auto;
      transform: none;
      padding: 0;
      gap: 0.75rem;
      border-radius: 0;
    }
    nav.scrolled {
      padding: 0.42rem 0.72rem;
      border-radius: 0.78rem;
    }
    .nav-logo { flex: 1; min-width: 0; font-size: 1.08rem; gap: 0.45rem; }
    .nav-logo span { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
    .page-home nav {
      left: 1rem;
      right: 1rem;
    }
    .nav-links { display: none; }
    .nav-toggle {
      display: inline-flex;
      position: relative;
      z-index: 2;
      width: 2.2rem;
      height: 2.2rem;
    }
    .mobile-menu {
      position: fixed;
      inset: 0;
      justify-content: flex-end;
      align-items: flex-start;
      padding: 5.45rem 0.95rem 1rem;
      background: rgba(7,17,42,0.22);
      transition: opacity 0.24s ease, background 0.24s ease;
    }
    .mobile-menu:not([hidden]) { display: flex; }
    .legal-shell { padding: 6.7rem 1.5rem 2.6rem; }
    .hero {
      min-height: 100vh;
      min-height: 100svh;
      min-height: 100dvh;
    }
    .hero-left {
      width: min(680px, calc(100% - 1.5rem));
      margin-left: 0.75rem;
      margin-right: 0.75rem;
      padding: 1.6rem 1.35rem;
    }
    .section, #clients, #gallery { padding: 4rem 1.5rem; }
    .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .team-process-wrap { max-width: 100%; }
    .team-impact { padding: 1.45rem; }
    .about-team { padding-top: 3.2rem; padding-bottom: 3.2rem; }
    .about-team-members { grid-template-columns: 1fr; }
    .about-team { --about-member-photo-height: 180px; }
    .about-member-photo-initial { font-size: 3.1rem; }
    .about-member-content { padding: 0.9rem 1rem 1.05rem; }
    .mv-grid { grid-template-columns: 1fr; }
    .mv-card.full { grid-column: auto; }
    .services-grid { grid-template-columns: 1fr 1fr; }
    .home-teasers { grid-template-columns: 1fr; }
    .home-teaser { min-height: 220px; }
    .home-teaser::before {
      width: 12.4rem;
      height: 12.4rem;
      right: -4.9rem;
      top: -5.4rem;
    }
    .steps { grid-template-columns: 1fr 1fr; }
    .step-connector { display: none; }
    .featured-projects-head {
      flex-direction: column;
      align-items: flex-start;
    }
    .team-grid { grid-template-columns: 1fr 1fr; }
    .team-card.flip-card,
    .team-card.flip-card .flip-card-inner { min-height: 322px; }
    .team-avatar { width: 126px; height: 126px; font-size: 1.92rem; }
    .gallery-masonry { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .cta-banner { padding: 3.5rem 1.5rem; }
    .cta-shell { padding: 1.6rem; }
    .site-footer {
      padding: 2.5rem 1.5rem 1.5rem;
      width: min(1240px, calc(100% - 2rem));
      margin-top: 1.5rem;
      border-radius: 1rem 1rem 0 0;
    }
    .page-inner .site-footer { margin-top: 0; }
    .footer-top { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.5rem; }
    .footer-brand { grid-column: 1 / -1; max-width: 100%; margin-right: 0; }
    .footer-bottom { flex-direction: column; align-items: flex-start; }
    .page-inner .section:first-of-type { padding-top: 6.75rem; }
  }

  @media (max-width: 480px) {
    nav {
      left: 0.5rem;
      right: 0.5rem;
      width: auto;
      transform: none;
      top: 0.62rem;
      padding: 0.66rem 0.7rem;
      border-radius: 0.82rem;
    }
    .nav-logo { font-size: 1rem; gap: 0.4rem; }
    .legal-shell { padding: 5.9rem 1rem 2rem; }
    .legal-card { padding: 1rem; }
    .legal-content p,
    .legal-content li { font-size: 0.86rem; }
    .hero-left h1 { font-size: 2rem; }
    .hero-left {
      width: calc(100% - 1rem);
      margin-left: 0.5rem;
      margin-right: 0.5rem;
      padding: 1.35rem 1rem;
      border-radius: 0.9rem;
    }
    .section, #clients, #gallery { padding: 3rem 1rem; }
    .services-grid { grid-template-columns: 1fr; }
    .home-teaser {
      min-height: 210px;
      padding: 1.3rem 1.2rem;
    }
    .home-teaser::before {
      width: 10.6rem;
      height: 10.6rem;
      right: -4.6rem;
      top: -4.9rem;
    }
    .client-pill { width: 100%; justify-content: flex-start; }
    .featured-carousel-btn {
      width: 2rem;
      height: 2rem;
      font-size: 0.95rem;
    }
    .catalogue-group-image {
      height: 170px;
      font-size: 0.6rem;
    }
    .steps { grid-template-columns: 1fr; }
    .team-impact { padding: 1.2rem; border-radius: 1rem; }
    .about-team { padding-top: 2.6rem; padding-bottom: 2.6rem; }
    .team-process .team-pillars li {
      grid-template-columns: 1fr;
      justify-items: center;
      text-align: center;
      gap: 0.45rem;
      padding: 0;
    }
    .team-process .team-pillars li + li { padding-top: 0.75rem; }
    .team-process .team-pillars span { margin-top: 0; }
    .about-member-card { border-radius: 1rem; }
    .about-team { --about-member-photo-height: 150px; }
    .about-member-photo-initial { font-size: 2.65rem; }
    .about-member-content { padding: 0.85rem 0.9rem 1rem; }
    .team-grid { grid-template-columns: 1fr; }
    .team-card { padding: 2rem 1.2rem; }
    .team-card.flip-card,
    .team-card.flip-card .flip-card-inner { min-height: 304px; }
    .team-avatar { width: 116px; height: 116px; font-size: 1.75rem; }
    .gallery-masonry { grid-template-columns: 1fr; }
    .cta-banner h2 { font-size: 1.8rem; }
    .cta-shell { padding: 1.25rem; border-radius: 1rem; }
    .cta-actions { flex-direction: column; align-items: stretch; }
    .cta-actions .btn-white { width: 100%; text-align: center; }
    .cta-meta { justify-content: center; }
    .cta-meta span { width: 100%; text-align: center; }
    .mv-grid { grid-template-columns: 1fr; }
    .site-footer {
      padding: 2rem 1rem 1.25rem;
      width: calc(100% - 1rem);
      margin-top: 1rem;
      border-radius: 0.9rem 0.9rem 0 0;
    }
    .page-inner .site-footer { margin-top: 0; }
    .footer-top {
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 1rem 0.85rem;
      margin-bottom: 1.25rem;
    }
    .footer-brand { grid-column: 1 / -1; margin-right: 0; }
    .footer-col { padding-top: 1.1rem; border-top: none; }
    .footer-contact { grid-column: 1 / -1; }
    .footer-bottom { gap: 0.7rem; align-items: center; justify-content: center; }
    .footer-legal { display: none; }
    .footer-bottom p { width: 100%; text-align: center; }
    .footer-bottom p, .footer-legal a { font-size: 0.74rem; }
    .contact-grid { gap: 1.5rem; }
  }

  @media (prefers-reduced-motion: reduce) {
    .about-member-card,
    .about-member-engage {
      transition: none;
    }
    .flip-card-inner { transition: none; }
  }
