
    /* ─────────────────────────────────────────
       RESET & BASE
    ───────────────────────────────────────── */
    *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

    :root {
      --white:     #ffffff;
      --navy:      #1A3C5E;
      --blue:      #2E8BC0;
      --navy-dark: #0d2133;
      --off:       #f8f9fb;
      --nav-h:     128px;
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'Outfit', sans-serif;
      color: var(--navy);
      background: var(--white);
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
    }

    /* Shared section helpers */
    .section-label {
      display: block;
      font-size: 0.68rem; font-weight: 600;
      color: var(--blue);
      letter-spacing: 0.22em; text-transform: uppercase;
      margin-bottom: 14px;
    }
    .section-label.light { color: rgba(255,255,255,0.45); }

    .section-heading {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2rem, 4vw, 3rem);
      font-weight: 600; color: var(--navy);
      letter-spacing: -0.02em; line-height: 1.15;
    }
    .section-heading.light { color: var(--white); }

    /* ─────────────────────────────────────────
       SCROLL REVEAL ANIMATIONS
    ───────────────────────────────────────── */
    .reveal {
      opacity: 1;
      transform: translateY(0);
      transition: opacity 0.65s ease, transform 0.65s ease;
    }
    .reveal.pre-reveal {
      opacity: 0;
      transform: translateY(28px);
    }
    .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; }

    /* ─────────────────────────────────────────
       NAVIGATION
    ───────────────────────────────────────── */
    .nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      height: var(--nav-h);
      background: rgba(255,255,255,0.97);
      backdrop-filter: blur(14px);
      -webkit-backdrop-filter: blur(14px);
      box-shadow: 0 1px 24px rgba(26,60,94,0.07);
      z-index: 1000;
      display: flex; align-items: center; justify-content: space-between;
      padding: 0 48px;
      transition: box-shadow 0.3s ease;
    }
    .nav.scrolled { box-shadow: 0 2px 36px rgba(26,60,94,0.13); }

    .nav-logo {
      font-family: 'Playfair Display', serif;
      font-size: 1.5rem; font-weight: 700;
      color: var(--navy); letter-spacing: 0.12em;
      text-decoration: none; user-select: none; flex-shrink: 0;
    }

    .nav-links {
      display: flex; align-items: center;
      gap: 32px; list-style: none;
    }
    .nav-links a {
      font-size: 0.78rem; font-weight: 500;
      color: var(--navy); text-decoration: none;
      letter-spacing: 0.07em; text-transform: uppercase;
      position: relative; transition: color 0.2s ease;
    }
    .nav-links a::after {
      content: ''; position: absolute;
      bottom: -4px; left: 0; width: 0; height: 1.5px;
      background: var(--blue); transition: width 0.25s ease;
    }
    .nav-links a:hover { color: var(--blue); }
    .nav-links a:hover::after { width: 100%; }

    /* Hamburger */
    .hamburger {
      display: none; flex-direction: column;
      justify-content: center; align-items: center;
      gap: 5px; width: 44px; height: 44px;
      background: none; border: none; cursor: pointer; padding: 10px;
    }
    .hamburger span {
      display: block; width: 22px; height: 1.5px;
      background: var(--navy); border-radius: 2px;
      transition: transform 0.3s ease, opacity 0.3s ease;
      transform-origin: center;
    }
    .hamburger.active span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
    .hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
    .hamburger.active span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

    /* Mobile Menu */
    .mobile-menu {
      position: fixed; top: var(--nav-h); left: 0; right: 0;
      background: rgba(255,255,255,0.99);
      backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
      z-index: 999; display: flex; flex-direction: column;
      max-height: 0; overflow: hidden;
      transition: max-height 0.38s ease, box-shadow 0.38s ease;
    }
    .mobile-menu.open {max-height: calc(100vh - var(--nav-h)); min-height: calc(100vh - var(--nav-h)); height: calc(100vh - var(--nav-h)); box-shadow: 0 16px 40px rgba(26,60,94,0.12); overflow-y: auto; -webkit-overflow-scrolling: touch; background: #ffffff;}
    /* Mobile menu — track nav height when scrolled */
    .mobile-menu{transition:max-height 0.38s ease,box-shadow 0.38s ease,top 0.35s ease}
    .nav.scrolled ~ .mobile-menu{top:56px}

    .mobile-menu a {
      font-size: 0.9rem; font-weight: 500; color: var(--navy);
      text-decoration: none; text-transform: uppercase; letter-spacing: 0.09em;
      padding: 16px 28px; border-bottom: 1px solid rgba(26,60,94,0.07);
      transition: color 0.2s ease, background 0.2s ease;
    }
    .mobile-menu a:last-child { border-bottom: none; }
    .mobile-menu a:hover { color: var(--blue); background: rgba(46,139,192,0.04); }

    /* ─────────────────────────────────────────
       SECTION 1 — HERO
       Bottom-left layout (Demetriades-style)
    ───────────────────────────────────────── */
    .hero {
      position: relative;
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      align-items: flex-start;    /* ← bottom-left */
      justify-content: flex-end;  /* ← bottom-left */
      overflow: hidden;
      background: linear-gradient(
        -45deg,
        #050f1a,
        #0d2133,
        #1A3C5E,
        #1c5a85,
        #2E8BC0,
        #1a4e70,
        #0d2133
      );
      background-size: 500% 500%;
      animation: heroGradient 14s ease infinite;
    }
    @keyframes heroGradient {
      0%   { background-position: 0% 50%; }
      50%  { background-position: 100% 50%; }
      100% { background-position: 0% 50%; }
    }

    /* Vignette — dark band at bottom for text, light shade at top */
    .hero::before {
      content: '';
      position: absolute; inset: 0;
      background:
        linear-gradient(rgba(210,225,242,0.18), rgba(210,225,242,0.18)),
        linear-gradient(to bottom, rgba(0,0,0,0.32) 0%, transparent 30%),
        linear-gradient(to top,  rgba(0,0,0,0.58) 0%, rgba(0,0,0,0.28) 42%, rgba(0,0,0,0.08) 65%, transparent 100%),
        linear-gradient(to right, rgba(0,0,0,0.22) 0%, transparent 55%),
        radial-gradient(ellipse at 50% 100%, rgba(0,0,0,0.28) 0%, transparent 70%),
        rgba(0,0,0,0.28);
      z-index: 1; pointer-events: none;
    }
    /* Animated WebP — no <video> element, no play button possible on any browser */
    .hero-anim {
      position: absolute; top: 50%; left: 50%;
      width: 100%; height: 100%;
      transform: translate(-50%, -50%);
      object-fit: cover;
      pointer-events: none;
      -webkit-user-select: none; user-select: none;
      -webkit-touch-callout: none;
    }

    /* Diagonal texture lines */
    .hero-texture {
      position: absolute; inset: 0;
      background-image: repeating-linear-gradient(
        -55deg,
        transparent, transparent 40px,
        rgba(255,255,255,0.016) 40px,
        rgba(255,255,255,0.016) 41px
      );
      pointer-events: none; z-index: 1;
    }

    /* Video placeholder — will be replaced with <video> tag */
    .hero-video-placeholder {
      position: absolute; inset: 0;
      z-index: 0;
      /* swap this div for a <video autoplay muted loop playsinline> */
    }

    /* Content block — bottom-left */
    .hero-content {
      position: relative; z-index: 2;
      padding: 0 80px 88px;
      max-width: 760px;
      text-align: left;
    }

    .hero-eyebrow {
      display: inline-block;
      font-size: 0.68rem; font-weight: 500;
      color: rgba(255,255,255,0.5);
      letter-spacing: 0.22em; text-transform: uppercase;
      margin-bottom: 28px;
      border: 1px solid rgba(255,255,255,0.16);
      padding: 7px 18px; border-radius: 100px;
      animation: floatBadge 4s ease-in-out infinite; /* ANIMATION 2 */
    }
    @keyframes floatBadge {
      0%, 100% { transform: translateY(0); }
      50%       { transform: translateY(-5px); }
    }

    .hero-headline {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2.8rem, 7.5vw, 5.2rem);
      font-weight: 600; color: var(--white);
      line-height: 1.1; margin-bottom: 20px;
      letter-spacing: -0.02em;
    }

    .hero-subline {
      font-size: clamp(0.68rem, 1.8vw, 0.82rem); font-weight: 400;
      color: rgba(255,255,255,0.82);
      letter-spacing: 0.45em; text-transform: uppercase;
      margin-bottom: 44px;
    }

    .hero-btn {
      display: inline-block;
      font-size: 0.78rem; font-weight: 600;
      text-transform: uppercase; letter-spacing: 0.16em;
      color: var(--navy); background: var(--white);
      border: 2px solid var(--white);
      padding: 15px 48px; border-radius: 2px;
      cursor: pointer; text-decoration: none;
      transition: background 0.3s ease, color 0.3s ease, transform 0.2s ease;
    }
    .hero-btn:hover { background: transparent; color: var(--white); transform: translateY(-2px); }
    .hero-btn:active { transform: translateY(0); }

    /* Scroll cue — right side */
    .hero-scroll {
      position: absolute; bottom: 40px; left: 50%;
      transform: translateX(-50%); z-index: 2;
      display: flex; flex-direction: column; align-items: center;
      cursor: pointer; opacity: 0.32;
      transition: opacity 0.25s ease;
    }
    .hero-scroll:hover { opacity: 0.6; }
    .hero-scroll-line {
      width: 1px; height: 52px;
      background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.9));
      animation: scrollPulse 2.2s ease-in-out infinite;
    }
    @keyframes scrollPulse {
      0%,100% { opacity: 0.4; transform: scaleY(0.65) translateY(-6px); }
      50%      { opacity: 1;   transform: scaleY(1)   translateY(0); }
    }

    /* ─────────────────────────────────────────
       SECTION 2 — CATEGORIES
       20% shorter vertically (5/3 ratio)
    ───────────────────────────────────────── */
    .categories {
      padding: 112px 48px;
      background: var(--white);
      position: relative;
      overflow: hidden;
    }
    /* Animated ambient orbs behind the grid */
    .categories::before {
      content: '';
      position: absolute;
      width: 600px; height: 600px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(46,139,192,0.09) 0%, transparent 68%);
      top: -160px; left: -140px;
      filter: blur(48px);
      animation: catOrb1 14s ease-in-out infinite alternate;
      pointer-events: none;
    }
    .categories::after {
      content: '';
      position: absolute;
      width: 500px; height: 500px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(26,60,94,0.08) 0%, transparent 68%);
      bottom: -120px; right: -100px;
      filter: blur(56px);
      animation: catOrb2 18s ease-in-out infinite alternate;
      pointer-events: none;
    }
    @keyframes catOrb1 {
      0%   { transform: translate(0, 0) scale(1); }
      100% { transform: translate(60px, 40px) scale(1.15); }
    }
    @keyframes catOrb2 {
      0%   { transform: translate(0, 0) scale(1.05); }
      100% { transform: translate(-50px, -30px) scale(1); }
    }
    /* Floating diagonal lines accent */
    .cat-lines {
      position: absolute; inset: 0; pointer-events: none; overflow: hidden;
    }
    .cat-lines span {
      position: absolute;
      display: block;
      width: 1px;
      background: linear-gradient(to bottom, transparent, rgba(46,139,192,0.12), transparent);
      animation: catLine 6s ease-in-out infinite;
    }
    .cat-lines span:nth-child(1) { left: 18%; height: 40%; top: 10%; animation-delay: 0s; animation-duration: 7s; }
    .cat-lines span:nth-child(2) { left: 38%; height: 55%; top: 5%;  animation-delay: 1.5s; animation-duration: 9s; }
    .cat-lines span:nth-child(3) { left: 62%; height: 45%; top: 15%; animation-delay: 3s; animation-duration: 8s; }
    .cat-lines span:nth-child(4) { left: 82%; height: 35%; top: 8%;  animation-delay: 4.5s; animation-duration: 10s; }
    @keyframes catLine {
      0%, 100% { opacity: 0; transform: translateY(-12px); }
      50%       { opacity: 1; transform: translateY(12px); }
    }
    .categories-header { text-align: center; margin-bottom: 64px; position: relative; z-index: 1; }

    .categories-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 20px;
      max-width: 1200px; margin: 0 auto;
      position: relative; z-index: 1;
    }
    .cat-card {
      position: relative; border-radius: 4px;
      overflow: hidden;
      aspect-ratio: 5 / 3;   /* ← was 4/3, now 20% shorter */
      cursor: pointer; display: block; text-decoration: none;
    }
    .cat-card img {
      position: absolute; inset: 0;
      width: 100%; height: 100%;
      object-fit: cover;
      transition: transform 0.65s cubic-bezier(0.25,0.46,0.45,0.94);
    }
    .cat-card:hover img { transform: scale(1.07); }
    .cat-overlay {
      position: absolute; inset: 0;
      background: linear-gradient(to top, rgba(5,14,25,0.80) 0%, rgba(5,14,25,0.22) 48%, transparent 78%);
      transition: background 0.4s ease;
    }
    .cat-card:hover .cat-overlay {
      background: linear-gradient(to top, rgba(5,14,25,0.88) 0%, rgba(5,14,25,0.30) 52%, transparent 80%);
    }
    .cat-content { position: absolute; bottom: 0; left: 0; right: 0; padding: 30px 32px; }
    .cat-name {
      font-family: 'Outfit', sans-serif;
      font-size: clamp(1.35rem, 2.2vw, 1.9rem);
      font-weight: 600; color: #fff; line-height: 1.15; margin-bottom: 7px;
      text-shadow: 0 2px 20px rgba(0,0,0,0.95), 0 0 48px rgba(0,0,0,0.6);
    }
    .cat-sub {
      font-size: 0.875rem; color: rgba(255,255,255,0.92);
      font-weight: 400; line-height: 1.5; max-width: 320px;
      text-shadow: 0 1px 12px rgba(0,0,0,0.9);
    }
    .cat-arrow {
      display: inline-flex; align-items: center; gap: 6px;
      font-size: 0.72rem; font-weight: 600;
      letter-spacing: 0.12em; text-transform: uppercase;
      color: var(--blue); margin-top: 12px;
      opacity: 0; transform: translateY(6px);
      transition: opacity 0.28s ease 0.04s, transform 0.28s ease 0.04s;
    }
    .cat-arrow svg { width: 14px; height: 14px; }
    .cat-card:hover .cat-arrow { opacity: 1; transform: translateY(0); }

    /* ─────────────────────────────────────────
       SECTION 3 — PROJECTS
       Differentiated: blue-tinted bg + navy accents
    ───────────────────────────────────────── */
    .projects {
      padding: 112px 48px;
      background: #e8eef6;
      border-top: 4px solid var(--navy);
      position: relative;
      overflow: hidden;
    }
    /* Decorative corner accent */
    .projects::after {
      content: '';
      position: absolute;
      top: 0; right: 0;
      width: 300px; height: 300px;
      background: radial-gradient(ellipse at top right, rgba(26,60,94,0.1) 0%, transparent 70%);
      pointer-events: none;
    }
    .projects-header { text-align: center; margin-bottom: 56px; position: relative; z-index: 1; }
    .projects-note {
      text-align: center; font-size: 0.825rem;
      color: #7a8fa3; font-style: italic;
      margin-bottom: 56px;
    }
    .projects-grid {
      display: grid; grid-template-columns: repeat(3, 1fr);
      gap: 24px; max-width: 1200px; margin: 0 auto;
      position: relative; z-index: 1;
    }
    .proj-card {
      display: block; text-decoration: none; color: inherit;
      background: var(--white); border-radius: 8px; overflow: hidden;
      box-shadow: 0 3px 20px rgba(26,60,94,0.1);
      border: 1px solid rgba(26,60,94,0.08);
      transition: box-shadow 0.3s ease, transform 0.3s ease;
      cursor: pointer;
    }
    .proj-card:hover { box-shadow: 0 10px 36px rgba(26,60,94,0.16); transform: translateY(-5px); }
    .proj-img-wrap { position: relative; overflow: hidden; aspect-ratio: 4/3; }
    .proj-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
    .proj-card:hover .proj-img-wrap img { transform: scale(1.06); }
    .proj-info { padding: 24px 26px 28px; }
    .proj-tag {
      display: inline-block;
      font-size: 0.66rem; font-weight: 600;
      letter-spacing: 0.14em; text-transform: uppercase;
      color: var(--blue); background: rgba(46,139,192,0.1);
      padding: 4px 10px; border-radius: 100px; margin-bottom: 10px;
    }
    .proj-name {
      font-family: 'Playfair Display', serif;
      font-size: 1.2rem; font-weight: 600;
      color: var(--navy); margin-bottom: 6px; line-height: 1.25;
    }
    .proj-desc { font-size: 0.875rem; color: #6b7b8d; line-height: 1.55; }
    .proj-location {
      display: flex; align-items: center; gap: 5px;
      font-size: 0.75rem; color: #9aabb8;
      margin-top: 14px; font-weight: 500; letter-spacing: 0.04em;
    }
    .proj-location svg { width: 12px; height: 12px; flex-shrink: 0; }

    /* Home projects list — numbered, animated accent */
    .home-proj-list{display:grid;grid-template-columns:repeat(2,1fr);gap:18px;max-width:1280px;margin:0 auto;padding:0 48px}
    .home-proj-item{position:relative;display:flex;align-items:center;gap:22px;background:var(--white);border:1px solid rgba(26,60,94,0.09);border-radius:10px;padding:22px 26px 22px 30px;box-shadow:0 2px 12px rgba(26,60,94,0.04);text-decoration:none;color:inherit;overflow:hidden;isolation:isolate;transition:box-shadow 0.35s ease,transform 0.35s ease,border-color 0.35s ease}
    /* left accent bar */
    .home-proj-item::before{content:'';position:absolute;left:0;top:0;bottom:0;width:3px;background:linear-gradient(180deg,var(--blue) 0%,var(--navy) 100%);transform:scaleY(0.25);transform-origin:center;transition:transform 0.45s cubic-bezier(.65,.05,.36,1);z-index:1}
    /* gradient sweep */
    .home-proj-item::after{content:'';position:absolute;inset:0;background:linear-gradient(120deg,transparent 0%,transparent 35%,rgba(46,139,192,0.06) 50%,transparent 65%,transparent 100%);background-size:220% 100%;background-position:200% 0;transition:background-position 0.7s ease;pointer-events:none;z-index:0}
    a.home-proj-item:hover{box-shadow:0 14px 38px rgba(26,60,94,0.13);transform:translateY(-4px);border-color:rgba(46,139,192,0.42)}
    a.home-proj-item:hover::before{transform:scaleY(1)}
    a.home-proj-item:hover::after{background-position:-100% 0}
    .home-proj-num{position:relative;z-index:2;flex-shrink:0;width:44px;height:44px;border-radius:50%;background:linear-gradient(135deg,rgba(46,139,192,0.12) 0%,rgba(46,139,192,0.04) 100%);border:1px solid rgba(46,139,192,0.22);display:flex;align-items:center;justify-content:center;font-family:'Outfit',sans-serif;font-size:0.82rem;font-weight:800;color:var(--blue);letter-spacing:0.02em;transition:background 0.4s ease,border-color 0.4s ease,color 0.4s ease,transform 0.4s ease,box-shadow 0.4s ease}
    a.home-proj-item:hover .home-proj-num{background:linear-gradient(135deg,var(--blue) 0%,var(--navy) 100%);border-color:transparent;color:#fff;transform:scale(1.08) rotate(-4deg);box-shadow:0 6px 18px rgba(46,139,192,0.35)}
    .home-proj-body{position:relative;z-index:2;flex:1;min-width:0}
    .home-proj-tag{font-size:0.62rem;font-weight:700;letter-spacing:0.16em;text-transform:uppercase;color:var(--blue);margin-bottom:6px;display:inline-block;padding:3px 9px;background:rgba(46,139,192,0.08);border-radius:100px;transition:background 0.3s ease,color 0.3s ease}
    a.home-proj-item:hover .home-proj-tag{background:var(--blue);color:#fff}
    .home-proj-name{font-family:'Outfit',sans-serif;font-size:1.1rem;font-weight:700;color:var(--navy);margin-bottom:5px;line-height:1.3;display:flex;align-items:center;gap:10px;letter-spacing:-0.005em}
    .home-proj-name svg{width:14px;height:14px;flex-shrink:0;color:var(--blue);opacity:0;transform:translate(-6px,4px);transition:opacity 0.35s ease,transform 0.35s ease}
    a.home-proj-item:hover .home-proj-name{color:var(--blue)}
    a.home-proj-item:hover .home-proj-name svg{opacity:1;transform:translate(0,0)}
    .home-proj-loc{font-size:0.74rem;color:rgba(26,60,94,0.5);display:flex;align-items:center;gap:5px;font-weight:500}
    .home-proj-loc svg{width:12px;height:12px;flex-shrink:0;color:var(--blue)}
    /* Reveal stagger — already uses .reveal/.visible from existing IO */
    .home-proj-item.reveal{opacity:1;transform:translateY(0);transition:opacity 0.6s ease,transform 0.6s ease,box-shadow 0.35s ease,border-color 0.35s ease}
    .home-proj-item.reveal.visible{opacity:1;transform:translateY(0)}
    .home-proj-list .home-proj-item:nth-child(1).reveal{transition-delay:0s}
    .home-proj-list .home-proj-item:nth-child(2).reveal{transition-delay:0.06s}
    .home-proj-list .home-proj-item:nth-child(3).reveal{transition-delay:0.12s}
    .home-proj-list .home-proj-item:nth-child(4).reveal{transition-delay:0.18s}
    .home-proj-list .home-proj-item:nth-child(5).reveal{transition-delay:0.24s}
    .home-proj-list .home-proj-item:nth-child(6).reveal{transition-delay:0.30s}
    .home-proj-list .home-proj-item:nth-child(7).reveal{transition-delay:0.36s}
    .home-proj-list .home-proj-item:nth-child(8).reveal{transition-delay:0.42s}
    .home-proj-list .home-proj-item:nth-child(9).reveal{transition-delay:0.48s}
    .home-proj-list .home-proj-item:nth-child(10).reveal{transition-delay:0.54s}
    @media(max-width:768px){.home-proj-list{grid-template-columns:1fr;padding:0 24px;gap:14px}.home-proj-item{padding:18px 20px 18px 24px;gap:16px}.home-proj-num{width:38px;height:38px;font-size:0.74rem}}

    /* ─────────────────────────────────────────
       SECTION 4 — BRANDS (real logos)
    ───────────────────────────────────────── */
    .brands {
      padding: 96px 0;
      background: var(--off);
      border-top: 1px solid rgba(26,60,94,0.07);
      border-bottom: 1px solid rgba(26,60,94,0.07);
      overflow: hidden;
    }
    .brands-header { text-align: center; margin-bottom: 56px; padding: 0 48px; }
    .brands-marquee {
      overflow: hidden;
      position: relative;
      padding: 8px 0;
    }
    .brands-marquee::before,
    .brands-marquee::after {
      content: '';
      position: absolute;
      top: 0; bottom: 0;
      width: 120px;
      z-index: 2;
      pointer-events: none;
    }
    .brands-marquee::before { left: 0;  background: linear-gradient(to right, var(--off), transparent); }
    .brands-marquee::after  { right: 0; background: linear-gradient(to left,  var(--off), transparent); }
    .brands-track {
      display: flex;
      align-items: center;
      gap: 40px;
      width: max-content;
      animation: marqueeScroll 68s linear infinite;
    }
    .brands-track:hover { animation-play-state: paused; }
    @keyframes marqueeScroll {
      0%   { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }
    .brand-item {
      display: flex; flex-direction: column;
      align-items: center; gap: 10px;
      text-decoration: none; color: inherit;
      user-select: none;
      flex-shrink: 0;
    }
    .brand-name { display: none; }
    .brand-logo-box {
      width: 148px; height: 76px;
      border: 1.5px solid rgba(26,60,94,0.1);
      border-radius: 6px;
      background: var(--white);
      display: flex; align-items: center; justify-content: center;
      padding: 14px 18px;
      transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
    }
    .brand-item:hover .brand-logo-box {
      border-color: rgba(46,139,192,0.4);
      box-shadow: 0 4px 18px rgba(46,139,192,0.12);
      transform: translateY(-3px);
    }
    .brand-logo-box img {
      max-width: 110px; max-height: 44px;
      width: auto; height: auto;
      object-fit: contain;
      filter: saturate(0.85) contrast(1.05);
      transition: filter 0.25s ease;
    }
    .brand-item:hover .brand-logo-box img { filter: saturate(1) contrast(1); }
    /* Text fallback when logo image fails to load */
    .brand-logo-box > span {
      font-family: 'Outfit', sans-serif;
      font-size: 0.82rem; font-weight: 700;
      color: var(--navy); letter-spacing: 0.08em;
      text-align: center;
    }
    .brand-name { display: none; }
    a.brand-item, a.brand-item:hover, a.brand-item:focus { text-decoration: none; }

    /* ─────────────────────────────────────────
       SECTION 5 — SERVICES
       Navy/blue outline accents + CTA
    ───────────────────────────────────────── */
    .services { padding: 112px 48px; background: var(--white); }
    .services-header { text-align: center; margin-bottom: 20px; }
    .services-intro {
      text-align: center; font-size: 0.9375rem;
      color: #6b7b8d; line-height: 1.75;
      max-width: 720px; margin: 0 auto 64px;
    }
    .services-grid {
      display: grid; grid-template-columns: repeat(3, 1fr);
      gap: 20px; max-width: 1100px; margin: 0 auto 48px;
    }
    .svc-card {
      background: var(--off);
      border: 1.5px solid rgba(26,60,94,0.12);
      border-top: 3px solid var(--navy); /* navy top accent */
      border-radius: 6px;
      padding: 36px 22px 30px;
      text-align: center;
      transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
    }
    .svc-card:hover {
      border-color: var(--blue);
      border-top-color: var(--blue);
      box-shadow: 0 6px 28px rgba(46,139,192,0.14);
      transform: translateY(-4px);
    }
    .svc-icon {
      width: 50px; height: 50px;
      background: rgba(46,139,192,0.1);
      border: 1.5px solid rgba(46,139,192,0.2);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      margin: 0 auto 20px;
      transition: background 0.25s ease, border-color 0.25s ease, transform 0.35s ease;
    }
    /* ANIMATION 3 — icon hover rotation */
    .svc-card:hover .svc-icon {
      background: rgba(46,139,192,0.18);
      border-color: rgba(46,139,192,0.4);
      transform: rotate(8deg) scale(1.08);
    }
    .svc-icon svg { width: 22px; height: 22px; color: var(--blue); }
    .svc-title {
      font-family: 'Playfair Display', serif;
      font-size: 1rem; font-weight: 600;
      color: var(--navy); margin-bottom: 8px; line-height: 1.3;
    }
    .svc-desc { font-size: 0.8125rem; color: #7a8fa3; line-height: 1.55; }

    /* Services CTA */
    .services-cta {
      text-align: center;
    }
    .services-cta-btn {
      display: inline-flex;
      align-items: center; gap: 10px;
      font-family: 'Outfit', sans-serif;
      font-size: 0.82rem; font-weight: 700;
      letter-spacing: 0.12em; text-transform: uppercase;
      color: var(--white);
      background: var(--navy);
      border: 2px solid var(--navy);
      padding: 16px 44px; border-radius: 2px;
      text-decoration: none;
      transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease, transform 0.2s ease;
    }
    .services-cta-btn:hover {
      background: var(--blue); border-color: var(--blue);
      transform: translateY(-2px);
    }
    .services-cta-btn svg { width: 16px; height: 16px; }

    /* ─────────────────────────────────────────
       SECTION 6 — ABOUT
    ───────────────────────────────────────── */
    .about {
      padding: 112px 48px;
      background: var(--navy);
      position: relative; overflow: hidden;
    }
    .about::before {
      content: '';
      position: absolute; top: -60%; right: -15%;
      width: 700px; height: 700px; border-radius: 50%;
      background: radial-gradient(circle, rgba(46,139,192,0.12) 0%, transparent 70%);
      pointer-events: none;
    }
    .about-inner { max-width: 860px; margin: 0 auto; text-align: center; position: relative; z-index: 1; }
    .about-text {
      font-size: 1.0625rem; color: rgba(255,255,255,0.72);
      line-height: 1.82; margin: 28px 0 52px;
    }
    .about-btns { display: flex; flex-wrap: nowrap; gap: 14px; justify-content: center; }
    .about-btn {
      display: inline-flex; align-items: center; gap: 9px;
      font-family: 'Outfit', sans-serif;
      font-size: 0.8125rem; font-weight: 600;
      letter-spacing: 0.08em; text-transform: uppercase;
      color: var(--white);
      background: rgba(255,255,255,0.1);
      border: 1.5px solid rgba(255,255,255,0.22);
      padding: 13px 28px; border-radius: 100px;
      text-decoration: none;
      transition: background 0.25s ease, border-color 0.25s ease, transform 0.2s ease;
    }
    .about-btn:hover { background: rgba(255,255,255,0.18); border-color: rgba(255,255,255,0.45); transform: translateY(-2px); }
    .about-btn svg { width: 16px; height: 16px; flex-shrink: 0; }

    /* Nav logo image */
    .nav-logo-img { height: 120px; width: auto; display: block; }

    /* Language switcher */
    .nav-phone {
      display: flex; align-items: center; gap: 6px; margin-left: 20px;
      font-size: 0.78rem; font-weight: 600; color: var(--navy);
      text-decoration: none; letter-spacing: 0.03em;
      transition: color 0.2s;
    }
    .nav-phone svg { width: 15px; height: 15px; flex-shrink: 0; }
    .nav-phone:hover { color: var(--blue); }
    .lang-switch { display: flex; align-items: center; gap: 4px; margin-left: 20px; }
    .lang-btn { background: none; border: none; cursor: pointer; font-family: 'Outfit', sans-serif; font-size: 0.82rem; font-weight: 700; color: rgba(26,60,94,0.55); letter-spacing: 0.06em; padding: 6px 5px; transition: color 0.2s; }
    .lang-btn:hover, .lang-btn.active { color: var(--blue); }
    .lang-sep { font-size: 0.65rem; color: rgba(26,60,94,0.25); user-select: none; }

    /* Brands CTA */
    .brands-cta { text-align: center; margin-top: 48px; padding: 0 48px; }
    .brands-cta-btn { display: inline-flex; align-items: center; gap: 9px; font-family: 'Outfit', sans-serif; font-size: 0.8rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--navy); border: 1.5px solid rgba(26,60,94,0.3); padding: 14px 40px; border-radius: 2px; text-decoration: none; transition: background 0.25s, color 0.25s, border-color 0.25s, transform 0.2s; }
    .brands-cta-btn:hover { background: var(--navy); color: var(--white); border-color: var(--navy); transform: translateY(-2px); }
    .brands-cta-btn svg { width: 15px; height: 15px; }

    /* ─────────────────────────────────────────
       SECTION 7 — CONTACT
    ───────────────────────────────────────── */
    .contact { padding: 112px 48px; background: var(--white); }
    .contact-header { text-align: center; margin-bottom: 64px; }
    .contact-inner {
      display: grid; grid-template-columns: 1fr 1.4fr;
      gap: 80px; max-width: 1100px; margin: 0 auto;
    }
    .contact-info h3 {
      font-family: 'Playfair Display', serif;
      font-size: 1.2rem; font-weight: 600;
      color: var(--navy); margin-bottom: 28px;
    }
    .contact-item { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 24px; }
    .contact-item-icon {
      width: 40px; height: 40px;
      background: rgba(46,139,192,0.1); border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0; margin-top: 1px;
    }
    .contact-item-icon svg { width: 17px; height: 17px; color: var(--blue); }
    .contact-item-label { font-size: 0.7rem; font-weight: 600; color: var(--blue); letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 4px; }
    .contact-item-value { font-size: 0.9375rem; color: var(--navy); line-height: 1.5; }
    .contact-item-value a { color: inherit; text-decoration: none; transition: color 0.2s ease; }
    .contact-item-value a:hover { color: var(--blue); }
    .contact-hours {
      margin-top: 36px; padding: 20px 24px;
      background: var(--off); border-radius: 6px;
      border-left: 3px solid var(--blue);
    }
    .contact-hours-title { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--blue); margin-bottom: 12px; }
    .contact-hours-dept { font-size: 0.78rem; font-weight: 700; color: var(--navy); letter-spacing: 0.04em; margin-bottom: 6px; }
    .contact-hours-row {
      display: flex; justify-content: space-between;
      font-size: 0.875rem; color: var(--navy);
      padding: 4px 0; border-bottom: 1px solid rgba(26,60,94,0.07);
    }
    .contact-hours-row:last-child { border-bottom: none; }
    .contact-hours-row span:last-child { font-weight: 600; }

    .contact-form { display: flex; flex-direction: column; gap: 20px; }
    .form-group { display: flex; flex-direction: column; gap: 7px; }
    .form-group label { font-size: 0.78rem; font-weight: 600; color: var(--navy); letter-spacing: 0.05em; text-transform: uppercase; }
    .form-group input, .form-group textarea {
      font-family: 'Outfit', sans-serif;
      font-size: 0.9375rem; color: var(--navy);
      background: var(--off); border: 1.5px solid rgba(26,60,94,0.12);
      border-radius: 4px; padding: 13px 16px; outline: none;
      transition: border-color 0.2s ease, box-shadow 0.2s ease; resize: none;
    }
    .form-group input:focus, .form-group textarea:focus {
      border-color: var(--blue); box-shadow: 0 0 0 3px rgba(46,139,192,0.12); background: var(--white);
    }
    .form-group input::placeholder, .form-group textarea::placeholder { color: #9aabb8; }
    .form-btn {
      font-family: 'Outfit', sans-serif;
      font-size: 0.8rem; font-weight: 700;
      letter-spacing: 0.14em; text-transform: uppercase;
      color: var(--white); background: var(--navy);
      border: none; border-radius: 4px;
      padding: 16px 32px; cursor: pointer;
      align-self: flex-start;
      transition: background 0.25s ease, transform 0.2s ease;
    }
    .form-btn:hover { background: var(--blue); transform: translateY(-2px); }
    .form-btn:active { transform: translateY(0); }
    .form-mailto-link {
      display: inline-flex; align-items: center; gap: 6px;
      margin-top: 14px; font-size: 0.78rem; font-weight: 500;
      color: rgba(26,60,94,0.5); text-decoration: none;
      letter-spacing: 0.04em; transition: color 0.2s;
    }
    .form-mailto-link:hover { color: var(--blue); }

    /* ─────────────────────────────────────────
       SECTION 8 — REVIEWS
    ───────────────────────────────────────── */
    .reviews { padding: 112px 48px; background: var(--off); }
    .reviews-header { text-align: center; margin-bottom: 64px; }
    /* Carousel */
    .reviews-carousel-outer { position: relative; max-width: 1100px; margin: 0 auto 16px; padding: 0 56px; }
    .reviews-carousel-wrap {
      display: flex; gap: 20px;
      align-items: center;
      overflow-x: scroll;
      scroll-snap-type: x mandatory;
      scroll-behavior: smooth;
      -webkit-overflow-scrolling: touch;
      scrollbar-width: none;
      -ms-overflow-style: none;
    }
    .reviews-carousel-wrap::-webkit-scrollbar { display: none; }
    .reviews-track { display: contents; }
    .review-card {
      position: relative;
      flex: 0 0 calc(33.333% - 14px);
      scroll-snap-align: start;
      min-width: 0;
      background: var(--white); border-radius: 8px;
      padding: 36px 30px 30px;
      box-shadow: 0 1px 3px rgba(26,60,94,0.04), 0 8px 24px rgba(26,60,94,0.06);
      border: 1px solid rgba(26,60,94,0.06);
      transition: box-shadow 0.35s ease, transform 0.35s ease;
      overflow: hidden;
    }
    .review-card::before {
      content: '\201C';
      position: absolute;
      top: -28px; right: 18px;
      font-family: 'Playfair Display', Georgia, serif;
      font-size: 180px; line-height: 1;
      color: var(--navy);
      opacity: 0.06;
      pointer-events: none;
      user-select: none;
    }
    .review-card:hover { box-shadow: 0 2px 6px rgba(26,60,94,0.06), 0 16px 40px rgba(26,60,94,0.12); transform: translateY(-4px); }
    .review-stars { display: flex; gap: 3px; margin-bottom: 18px; }
    .review-stars svg { width: 18px; height: 18px; color: #f5a623; fill: #f5a623; }
    .review-text { font-size: 0.9rem; color: #4a5e70; line-height: 1.7; margin-bottom: 24px; font-style: italic; }
    .review-footer { display: flex; align-items: center; gap: 12px; }
    .review-avatar {
      width: 40px; height: 40px; border-radius: 50%;
      background: linear-gradient(135deg, var(--navy), var(--blue));
      display: flex; align-items: center; justify-content: center;
      font-family: 'Playfair Display', serif;
      font-size: 1rem; font-weight: 700; color: var(--white); flex-shrink: 0;
    }
    .review-name { font-weight: 600; font-size: 0.9rem; color: var(--navy); }
    .review-badge { font-size: 0.68rem; color: #8a9ab0; margin-top: 2px; display: flex; align-items: center; gap: 4px; }
    .review-badge svg { width: 11px; height: 11px; }
    .reviews-note { text-align: center; font-size: 0.8rem; color: #9aabb8; font-style: italic; }
    .reviews-rating-line { text-align: center; margin-bottom: 36px; font-size: 0.9rem; color: #4a5e70; }
    .reviews-rating-line strong { color: var(--navy); font-weight: 700; }
    .reviews-rating-stars { color: #f5a623; font-size: 1rem; margin: 0 4px; }
    .reviews-nav {
      position: absolute; top: 50%; transform: translateY(-50%);
      width: 42px; height: 42px; border-radius: 50%;
      background: var(--white); border: 1px solid rgba(26,60,94,0.12);
      box-shadow: 0 2px 12px rgba(26,60,94,0.10);
      display: flex; align-items: center; justify-content: center;
      cursor: pointer; transition: background 0.2s, box-shadow 0.2s;
      z-index: 2;
    }
    .reviews-nav:hover { background: var(--blue); }
    .reviews-nav:hover svg { stroke: #fff; }
    .reviews-nav svg { width: 18px; height: 18px; stroke: var(--navy); stroke-width: 2; fill: none; }
    .reviews-nav.prev { left: 0; }
    .reviews-nav.next { right: 0; }
    .reviews-nav:disabled { opacity: 0.3; cursor: default; }
    .reviews-dots { display: flex; justify-content: center; gap: 8px; margin-top: 24px; }
    .reviews-dot {
      width: 8px; height: 8px; border-radius: 50%;
      background: rgba(26,60,94,0.15); cursor: pointer;
      transition: background 0.25s, transform 0.25s;
    }
    .reviews-dot.active { background: var(--blue); transform: scale(1.35); }

    /* ─────────────────────────────────────────
       FOOTER
    ───────────────────────────────────────── */
    .footer {
      background: var(--navy-dark);
      padding: 48px;
      display: flex; align-items: center;
      justify-content: space-between; gap: 24px; flex-wrap: wrap;
    }
    .footer-left {
      font-family: 'Playfair Display', serif;
      font-size: 1.1rem; font-weight: 700;
      color: rgba(255,255,255,0.9); letter-spacing: 0.1em;
    }
    .footer-left span {
      display: block; font-family: 'Outfit', sans-serif;
      font-size: 0.72rem; font-weight: 400;
      letter-spacing: 0.06em; color: rgba(255,255,255,0.35); margin-top: 4px;
    }
    .footer-center { display: flex; gap: 20px; align-items: center; }
    .footer-social {
      width: 40px; height: 40px; border-radius: 50%;
      border: 1px solid rgba(255,255,255,0.15);
      display: flex; align-items: center; justify-content: center;
      color: rgba(255,255,255,0.6); text-decoration: none;
      transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
    }
    .footer-social:hover { border-color: rgba(255,255,255,0.4); color: var(--white); background: rgba(255,255,255,0.08); }
    .footer-social svg { width: 18px; height: 18px; }
    .footer-right { display: flex; gap: 24px; flex-wrap: wrap; }
    .footer-right a {
      font-size: 0.75rem; font-weight: 500;
      color: rgba(255,255,255,0.45); text-decoration: none;
      letter-spacing: 0.06em; text-transform: uppercase;
      transition: color 0.2s ease;
    }
    .footer-right a:hover { color: rgba(255,255,255,0.85); }

    /* ─────────────────────────────────────────
       RESPONSIVE
    ───────────────────────────────────────── */
    @media (max-width: 1100px) {
      .services-grid { grid-template-columns: repeat(3, 1fr); }
    }
    @media (max-width: 900px) {
      .nav { padding: 0 24px; }
      .nav-links { display: none; }
      .nav-phone span { display: none; }
      .hamburger { display: flex; }

      .hero-content { padding: 0 32px 72px; }
      .categories { padding: 80px 24px; }
      .categories-grid { grid-template-columns: 1fr; gap: 16px; }
      .cat-card { aspect-ratio: 16/8; }
      .cat-arrow { opacity: 1; transform: translateY(0); }

      .projects { padding: 80px 24px; }
      .projects-grid { grid-template-columns: 1fr; }

      .brands { padding: 72px 0; }
      .brands-header { padding: 0 24px; }

      .services { padding: 80px 24px; }
      .services-grid { grid-template-columns: repeat(2, 1fr); }

      .about { padding: 80px 24px; }
      .about-stats { gap: 0; }
      .stat-item { flex: 0 0 33.33%; min-width: 0; padding: 0 8px; }
      .stat-item:not(:last-child) { border-right: 1px solid rgba(255,255,255,0.12); }

      .contact { padding: 80px 24px; }
      .contact-inner { grid-template-columns: 1fr; gap: 48px; }

      .reviews { padding: 80px 24px; }
      .reviews-carousel-outer { max-width: 100%; padding: 0 50px; }
      .review-card { flex: 0 0 calc(50% - 10px); }


      .footer { flex-direction: column; align-items: center; text-align: center; padding: 40px 24px; gap: 28px; }
    }
    @media (max-width: 640px) {
      .reviews-carousel-outer { padding: 0 24px; }
      .reviews-carousel-wrap { gap: 20px; scroll-padding-inline: 0; }
      .review-card { flex: 0 0 100%; }
    }
    @media (max-width: 480px) {
      .nav { padding: 0 16px; }
      .hero-content { padding: 0 20px 56px; }
      .hero-btn { width: 100%; max-width: 280px; text-align: center; }
      .about-btns { flex-direction: column; align-items: center; gap: 20px; }
      .form-btn { width: 100%; text-align: center; }
      /* Reviews mobile fix */
      .reviews-nav { display: none; }
      .review-card { flex: 0 0 100%; padding: 22px 18px 20px; }
      .review-text { font-size: 0.85rem; }
    }
    @media (prefers-reduced-motion: reduce) {
      .hero { animation: none; background-position: 50% 50%; }
      .hero-scroll-line, .hero-eyebrow { animation: none; }
      .brands-track { animation: none; }
      .reveal { opacity: 1; transform: none; transition: none; }
    }

    /* ─────────────────────────────────────────
       PREMIUM ANIMATIONS
    ───────────────────────────────────────── */

    /* 1 — Hero headline: word-by-word entrance */
    .hero-headline .word {
      display: inline-block;
      opacity: 0;
      transform: translateY(32px);
      animation: wordIn 0.78s cubic-bezier(0.22,1,0.36,1) forwards;
    }
    .hero-headline .word:nth-child(1) { animation-delay: 0.10s; }
    .hero-headline .word:nth-child(2) { animation-delay: 0.26s; }
    .hero-headline .word:nth-child(3) { animation-delay: 0.42s; }
    .hero-headline .word:nth-child(4) { animation-delay: 0.58s; }
    @keyframes wordIn {
      to { opacity: 1; transform: translateY(0); }
    }
    .hero-subline {
      opacity: 0;
      animation: fadeUp 0.6s ease 0.82s forwards;
    }
    .hero-btn {
      opacity: 0;
      animation: fadeUp 0.6s ease 1.0s forwards;
    }
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(14px); }
      to   { opacity: 1; transform: translateY(0); }
    }

    /* 2 — Nav: smooth shrink on scroll */
    .nav { transition: height 0.35s ease, padding 0.35s ease, box-shadow 0.35s ease; }
    .nav.scrolled {
      height: 56px;
      box-shadow: 0 2px 28px rgba(26,60,94,0.11);
    }
    .nav.scrolled .nav-logo-img { height: 88px; transition: height 0.35s ease; }

    /* 3 — Stats bar */
    .about-stats {
      display: flex; justify-content: center; gap: 0; margin: 40px 0 44px;
      flex-wrap: wrap; width: 100%;
    }
    .stat-item {
      display: flex; flex-direction: column; align-items: center;
      text-align: center; flex: 1; min-width: 120px;
      padding: 0 24px; border-right: 1px solid rgba(255,255,255,0.12);
    }
    .stat-item:last-child { border-right: none; }
    .stat-number-row { display: flex; align-items: baseline; gap: 2px; line-height: 1; }
    .stat-num {
      font-family: 'Outfit', sans-serif;
      font-size: clamp(2.6rem, 5vw, 4rem);
      font-weight: 800; color: #fff;
      letter-spacing: -0.02em; line-height: 1;
    }
    .stat-suffix {
      font-family: 'Outfit', sans-serif;
      font-size: clamp(1.6rem, 3vw, 2.4rem);
      font-weight: 800; color: var(--blue);
      letter-spacing: -0.01em;
    }
    .stat-label {
      font-size: 0.70rem; font-weight: 500;
      letter-spacing: 0.14em; text-transform: uppercase;
      color: rgba(255,255,255,0.42); margin-top: 9px;
    }

    /* 4 — Reduced motion overrides */
    @media (prefers-reduced-motion: reduce) {
      .hero-headline .word { animation: none; opacity: 1; transform: none; }
      .hero-subline, .hero-btn { animation: none; opacity: 1; transform: none; }
    }

    /* ── SELF-HOSTED HERO VIDEO ── */
    .hero-video-wrap {
      position: absolute; inset: 0; z-index: 0;
      overflow: hidden; pointer-events: none;
    }
    .hero-video-wrap video {
      position: absolute; top: 50%; left: 50%;
      min-width: 100%; min-height: 100%;
      width: 177.78vh; height: 56.25vw;
      transform: translate(-50%, -50%);
      object-fit: cover; pointer-events: none;
    }
    /* Safari's autoplay-blocked play button (LPM) swallows clicks without calling play().
       Disable its pointer-events so clicks fall through to our wrap listener. */
    .hero-video-wrap video::-webkit-media-controls-start-playback-button { pointer-events: none !important; }
    .hero-video-wrap video::-webkit-media-controls-overlay-play-button { pointer-events: none !important; }

    /* Custom play overlay — shown only when autoplay was blocked (e.g. Safari Low Power Mode). */
    .hero-play-overlay {
      position: absolute; top: 50%; left: 50%;
      transform: translate(-50%, -50%);
      z-index: 3;
      width: 96px; height: 96px;
      border-radius: 50%;
      border: 2px solid rgba(255,255,255,0.95);
      background: rgba(0,0,0,0.55);
      backdrop-filter: blur(8px);
      -webkit-backdrop-filter: blur(8px);
      color: #fff;
      display: flex; align-items: center; justify-content: center;
      cursor: pointer; padding: 0;
      transition: transform 0.18s ease, background 0.18s ease;
      box-shadow: 0 10px 40px rgba(0,0,0,0.5);
    }
    .hero-play-overlay[hidden] { display: none; }
    .hero-play-overlay:hover { background: rgba(0,0,0,0.75); transform: translate(-50%, -50%) scale(1.06); }
    .hero-play-overlay svg { width: 40px; height: 40px; margin-left: 4px; }

    /* ── MAP EMBED ── */
    .reviews-map-wrap {
      position: relative; height: 380px;
      max-width: 1100px; margin: 48px auto 0;
      border-radius: 6px; overflow: hidden;
      box-shadow: 0 4px 24px rgba(26,60,94,0.10);
      border: 1px solid rgba(26,60,94,0.08);
    }
    .reviews-map-wrap iframe {
      position: absolute; inset: 0;
      width: 100%; height: 100%; border: 0;
      opacity: 0; transition: opacity 0.6s;
    }
    .map-fallback {
      position: absolute; inset: 0;
      display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px;
      background: var(--off); color: var(--navy);
    }
    .map-fallback svg { width: 36px; height: 36px; color: var(--blue); }
    .map-fallback-name { font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 700; margin: 0; }
    .map-fallback-addr { font-size: 0.88rem; color: rgba(26,60,94,0.6); margin: 0; }
    .map-fallback-link {
      margin-top: 8px; font-size: 0.78rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
      color: var(--blue); text-decoration: none; border-bottom: 1px solid rgba(46,139,192,0.4);
      transition: color 0.2s, border-color 0.2s;
    }
    .map-fallback-link:hover { color: var(--navy); border-color: var(--navy); }
    .reviews-google-btn {
      display: inline-flex; align-items: center; gap: 9px;
      margin-top: 28px;
      font-family: 'Outfit', sans-serif; font-size: 0.8rem; font-weight: 600;
      letter-spacing: 0.12em; text-transform: uppercase;
      color: var(--navy); border: 1.5px solid rgba(26,60,94,0.25);
      padding: 13px 36px; border-radius: 2px; text-decoration: none;
      transition: background 0.25s, color 0.25s, border-color 0.25s, transform 0.2s;
    }
    .reviews-google-btn:hover { background: var(--navy); color: var(--white); border-color: var(--navy); transform: translateY(-2px); }
    .reviews-google-btn svg { width: 16px; height: 16px; }
  
    /* ── Footer mobile grid (3+3 centred) ── */
    @media (max-width: 640px){
      .footer-right{
        display:grid;
        grid-template-columns:repeat(3,auto);
        gap:12px 22px;
        justify-content:center;
        width:auto;
        max-width:340px;
        margin:0 auto;
      }
      .footer-right a{ font-size:0.72rem; padding:0; }
    }

body.menu-open{overflow:hidden;position:fixed;left:0;right:0;width:100%}
