:root {
    --orange: #F47B20;
    --orange-light: #FF9340;
    --orange-dark: #D96510;
    --navy: #1A2D6B;
    --navy-dark: #0F1E4F;
    --navy-light: #2A4090;
    --cream: #FAF7F2;
    --cream-dark: #F0EBE0;
    --ink: #1A1612;
    --muted: #7A6E65;
    --border: rgba(26,45,107,0.12);
  }

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

  html { scroll-behavior: smooth; }

  body {
    font-family: 'Barlow', sans-serif;
    background: var(--cream);
    color: var(--ink);
    overflow-x: hidden;
  }

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

  /* ── PRELOADER ── */
  .preloader-overlay {
    position: fixed; inset: 0;
    background: #fff; z-index: 99999;
    display: flex; align-items: center; justify-content: center;
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.8s ease;
  }
  .preloader-overlay.hidden { opacity: 0; visibility: hidden; }
  .preloader-logo {
    width: 40vw; /* 40% of the screen width */
    height: auto;
    opacity: 0;
    transform: scale(1);
    animation: preloaderGrowGlow 2.5s ease-out forwards;
  }
  @keyframes preloaderGrowGlow {
    0% {
      opacity: 0;
      transform: scale(1);
    }
    20% {
      opacity: 1;
      transform: scale(1);
    }
    100% {
      opacity: 1;
      transform: scale(1.5); /* 1.5 * 40vw = 60vw */
    }
  }

  /* ── NAV ── */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 5vw;
    height: 80px;
    background: rgba(250,247,242,0.92);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    transition: box-shadow 0.3s;
  }
  nav.scrolled { box-shadow: 0 4px 32px rgba(26,45,107,0.10); }

  .nav-logo img {
    height: 48px;
    filter: drop-shadow(0 2px 6px rgba(244,123,32,0.25));
    transition: transform 0.3s;
  }
  .nav-logo img:hover { transform: scale(1.04); }

  .nav-links {
    display: flex; align-items: center; gap: 2.5rem;
    list-style: none;
  }
  .nav-links a {
    font-family: 'Barlow', sans-serif;
    font-weight: 600; font-size: 0.78rem;
    letter-spacing: 0.14em; text-transform: uppercase;
    color: var(--navy); text-decoration: none;
    position: relative; padding-bottom: 3px;
    transition: color 0.25s;
  }
  .nav-links a::after {
    content: ''; position: absolute; bottom: 0; left: 0;
    width: 0; height: 2px; background: var(--orange);
    transition: width 0.3s;
  }
  .nav-links a:hover { color: var(--orange); }
  .nav-links a:hover::after { width: 100%; }

  .nav-cta {
    position: relative !important;
    background: transparent !important;
    color: var(--navy) !important;
    padding: 0.55rem 1.4rem !important;
    border-radius: 100px !important;
    font-size: 0.73rem !important;
    letter-spacing: 0.13em !important;
    font-weight: 700 !important;
    border: 1.5px solid var(--navy) !important;
    transition: color 0.3s, border-color 0.3s, box-shadow 0.3s, background 0.3s !important;
    overflow: hidden !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 0.5rem !important;
  }
  .nav-cta::before {
    content: '' !important;
    position: absolute !important; inset: 0 !important;
    background: var(--navy) !important;
    border-radius: 100px !important;
    transform: scaleX(0) !important;
    transform-origin: left !important;
    transition: transform 0.35s cubic-bezier(0.4,0,0.2,1) !important;
    z-index: 0 !important;
  }
  .nav-cta::after { display: none !important; }
  .nav-cta span { position: relative; z-index: 1; }
  .nav-cta svg { position: relative; z-index: 1; transition: transform 0.3s; }
  .nav-cta:hover {
    color: #fff !important;
    border-color: var(--navy) !important;
    box-shadow: 0 4px 20px rgba(26,45,107,0.22) !important;
    transform: translateY(-1px) !important;
  }
  .nav-cta:hover::before { transform: scaleX(1) !important; }
  .nav-cta:hover svg { transform: translateX(3px) !important; }

  .nav-hamburger {
    display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px;
  }
  .nav-hamburger span {
    display: block; width: 26px; height: 2px; background: var(--navy);
    transition: all 0.3s;
  }

  .mobile-menu {
    display: none; position: fixed; top: 80px; left: 0; right: 0;
    background: rgba(250,247,242,0.98); backdrop-filter: blur(20px);
    border-bottom: 2px solid var(--orange);
    padding: 2rem 5vw; z-index: 999;
    flex-direction: column; gap: 1.5rem;
  }
  .mobile-menu.open { display: flex; }
  .mobile-menu a {
    font-family: 'Barlow', sans-serif; font-weight: 600;
    font-size: 1rem; letter-spacing: 0.12em; text-transform: uppercase;
    color: var(--navy); text-decoration: none; padding: 0.5rem 0;
    border-bottom: 1px solid var(--border);
    transition: color 0.2s;
  }
  .mobile-menu a:hover { color: var(--orange); }

  /* ── HERO ── */
  .hero {
    min-height: 100vh;
    display: flex; flex-direction: column; justify-content: center;
    padding: 120px 5vw 80px;
    position: relative; overflow: hidden;
    background: #000;
  }

  /* ── VIDEO BACKGROUND ── */
  .hero-video {
    position: absolute; inset: 0; z-index: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    pointer-events: none;
  }

  /* ── DARK OVERLAY ── */
  .hero-overlay {
    position: absolute; inset: 0; z-index: 1;
    background: rgba(4, 8, 22, 0.60);
  }
  .hero-overlay::after {
    content: ''; position: absolute; inset: 0;
    background-image:
      repeating-linear-gradient(0deg, transparent, transparent 59px, rgba(255,255,255,0.022) 59px, rgba(255,255,255,0.022) 60px),
      repeating-linear-gradient(90deg, transparent, transparent 59px, rgba(255,255,255,0.022) 59px, rgba(255,255,255,0.022) 60px);
  }

  /* ── HERO LAYOUT: TEXT LEFT, CIRCLES RIGHT ── */
  .hero-content {
    position: relative; z-index: 2;
    display: flex; align-items: center;
    justify-content: space-between;
    gap: 4rem; width: 100%;
  }

  .hero-text { flex: 1; min-width: 0; }

  /* Eyebrow line */
  .hero-eyebrow {
    font-family: 'Barlow', sans-serif;
    font-size: 0.72rem; font-weight: 600;
    letter-spacing: 0.22em; text-transform: uppercase;
    color: var(--orange); margin-bottom: 1.4rem;
    opacity: 0; animation: fadeUp 0.8s 0.2s forwards;
    display: flex; align-items: center; gap: 1rem;
  }
  .hero-eyebrow::before {
    content: ''; display: block; width: 40px; height: 1px; background: var(--orange);
  }

  /* Main title — bold all-caps like the reference */
  .hero-title {
    font-family: 'Barlow', sans-serif;
    font-size: clamp(2.8rem, 7vw, 7.5rem);
    font-weight: 900; line-height: 0.96;
    color: #fff;
    letter-spacing: -0.01em;
    text-transform: uppercase;
    max-width: 680px;
    opacity: 0; animation: fadeUp 0.9s 0.35s forwards;
  }

  /* "Since 1945" italic cursive line */
  .hero-since {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4.5vw, 4.2rem);
    font-weight: 700; font-style: italic;
    color: var(--orange);
    line-height: 1.15;
    margin-top: 0.1em;
    opacity: 0; animation: fadeUp 0.9s 0.55s forwards;
  }

  .hero-sub {
    font-family: 'Barlow', sans-serif;
    font-size: clamp(0.9rem, 1.3vw, 1.08rem);
    font-weight: 300; color: rgba(255,255,255,0.70);
    max-width: 520px; margin-top: 1.6rem; line-height: 1.75;
    opacity: 0; animation: fadeUp 0.9s 0.75s forwards;
  }
  .hero-sub strong { color: var(--orange); font-weight: 700; }

  .hero-actions {
    display: flex; gap: 1.2rem; margin-top: 2.4rem; flex-wrap: wrap;
    opacity: 0; animation: fadeUp 0.9s 0.95s forwards;
  }

  /* ── OVERLAPPING IMAGE CIRCLES ── */
  .hero-circles {
    position: relative; z-index: 2;
    flex-shrink: 0;
    width: 480px; height: 480px;
    opacity: 0; animation: fadeUp 0.9s 0.5s forwards;
  }

  .hero-circle-big {
    position: absolute;
    top: 0; left: 0;
    width: 370px; height: 370px;
    border-radius: 50%;
    overflow: hidden;
    border: none;
    box-shadow: 0 20px 70px rgba(0,0,0,0.65);
    background: var(--navy-dark);
  }
  .hero-circle-big img {
    width: 100%; height: 100%;
    object-fit: cover; display: block;
    filter: grayscale(30%);
    transition: transform 0.6s;
    position: relative; z-index: 1;
  }
  .hero-circle-big:hover img { transform: scale(1.05); }

  /* Placeholder — sits behind the image (z-index: 0) */
  .hero-circle-big .circle-placeholder,
  .hero-circle-small .circle-placeholder {
    position: absolute; inset: 0; z-index: 0;
    display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.5rem;
    background: linear-gradient(145deg, var(--navy) 0%, var(--navy-dark) 100%);
    font-size: 0.65rem; letter-spacing: 0.18em; text-transform: uppercase;
    color: rgba(255,255,255,0.25); font-weight: 600;
  }
  .hero-circle-big .circle-placeholder svg,
  .hero-circle-small .circle-placeholder svg { color: rgba(244,123,32,0.3); }

  .hero-circle-small {
    position: absolute;
    bottom: 0; right: 0;
    width: 230px; height: 230px;
    border-radius: 50%;
    overflow: hidden;
    border: none;
    box-shadow: 0 14px 48px rgba(0,0,0,0.7);
    background: var(--navy);
  }
  .hero-circle-small img {
    width: 100%; height: 100%;
    object-fit: cover; display: block;
    transition: transform 0.6s;
    position: relative; z-index: 1;
  }
  .hero-circle-small:hover img { transform: scale(1.05); }

  /* Orange accent dot between circles */
  .hero-circles::before {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 14px; height: 14px;
    border-radius: 50%;
    background: var(--orange);
    box-shadow: 0 0 0 4px rgba(244,123,32,0.2);
    z-index: 3;
    pointer-events: none;
  }

  .btn-primary {
    background: var(--orange); color: #fff;
    padding: 1rem 2.4rem; border: none; cursor: pointer;
    font-family: 'Barlow', sans-serif;
    font-size: 0.82rem; font-weight: 700;
    letter-spacing: 0.14em; text-transform: uppercase;
    text-decoration: none; display: inline-block;
    transition: background-color 0.25s, box-shadow 0.25s;
    box-shadow: 0 4px 20px rgba(244,123,32,0.35);
  }
  .btn-primary span { position: relative; z-index: 1; }
  .btn-primary:hover { background: var(--orange-dark); box-shadow: 0 8px 32px rgba(244,123,32,0.45); }

  .btn-outline {
    background: transparent; color: var(--navy);
    padding: 1rem 2.4rem; border: 1.5px solid var(--navy);
    cursor: pointer;
    font-family: 'Barlow', sans-serif;
    font-size: 0.82rem; font-weight: 600;
    letter-spacing: 0.14em; text-transform: uppercase;
    text-decoration: none; display: inline-block;
    transition: background 0.25s, color 0.25s, transform 0.25s;
  }
  .btn-outline:hover {
    background: var(--navy); color: #fff; transform: translateY(-2px);
  }

  .hero-scroll {
    position: absolute; bottom: 2.5rem; left: 5vw;
    display: flex; align-items: center; gap: 0.8rem;
    opacity: 0; animation: fadeUp 0.9s 1.2s forwards;
  }
  .hero-scroll-line {
    width: 50px; height: 1px; background: rgba(255,255,255,0.35);
    position: relative; overflow: hidden;
  }
  .hero-scroll-line::after {
    content: ''; position: absolute; top: 0; left: -100%; right: 100%;
    height: 1px; background: var(--orange);
    animation: scanLine 2s 1.5s infinite;
  }
  .hero-scroll span {
    font-size: 0.72rem; letter-spacing: 0.15em; text-transform: uppercase;
    color: rgba(255,255,255,0.5); font-weight: 500;
  }

  /* ── SECTION COMMONS ── */
  section { padding: 7rem 5vw; position: relative; }

  .section-tag {
    font-size: 0.72rem; font-weight: 700;
    letter-spacing: 0.22em; text-transform: uppercase;
    color: var(--orange); margin-bottom: 1rem;
    display: flex; align-items: center; gap: 0.8rem;
  }
  .section-tag::before {
    content: ''; display: block; width: 28px; height: 2px; background: var(--orange);
  }

  .section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.2rem, 5vw, 4.5rem);
    font-weight: 800; line-height: 1.08;
    color: var(--navy-dark); letter-spacing: -0.02em;
  }
  .section-title em { font-style: italic; color: var(--orange); }

  /* ── WHO WE ARE ── */
  .who {
    background: #fff;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
  }

  .who-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 5rem; align-items: center; margin-top: 4rem;
  }

  .who-text p {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.05rem, 1.6vw, 1.35rem);
    font-weight: 400; line-height: 1.8;
    color: var(--muted); margin-bottom: 1.2rem;
  }
  .who-text p strong {
    color: var(--navy); font-weight: 600;
  }

  .who-link {
    display: inline-flex; align-items: center; gap: 0.6rem;
    font-size: 0.82rem; font-weight: 700;
    letter-spacing: 0.14em; text-transform: uppercase;
    color: var(--orange); text-decoration: none; margin-top: 1rem;
    transition: gap 0.25s;
  }
  .who-link:hover { gap: 1rem; }
  .who-link svg { width: 16px; height: 16px; }

  .who-visual {
    position: relative;
  }
  .who-visual-card {
    background: var(--navy-dark);
    padding: 2.4rem 2.6rem;
    position: relative; overflow: hidden;
    border-radius: 2px;
  }
  .who-visual-card::before {
    content: '';
    position: absolute; top: -40px; right: -40px;
    width: 200px; height: 200px;
    background: radial-gradient(circle, rgba(244,123,32,0.25) 0%, transparent 70%);
  }
  .who-visual-number {
    font-family: 'Playfair Display', serif;
    font-size: 3.8rem; font-weight: 900;
    color: rgba(244,123,32,0.2); line-height: 1;
    position: absolute; top: 1.2rem; right: 1.8rem;
    letter-spacing: -0.04em;
  }
  .who-visual-content p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem; font-style: italic;
    color: rgba(255,255,255,0.85); line-height: 1.6;
    position: relative; z-index: 1;
  }
  .who-visual-content p::before {
    content: '\201C';
    font-size: 3.5rem; line-height: 0.6;
    color: var(--orange); display: block; margin-bottom: 0.4rem;
    font-family: 'Playfair Display', serif;
  }
  .who-cities {
    display: flex; gap: 1rem; margin-top: 2rem; flex-wrap: wrap;
  }
  .who-city {
    font-size: 0.72rem; font-weight: 600; letter-spacing: 0.14em;
    text-transform: uppercase; color: var(--orange);
    border: 1px solid rgba(244,123,32,0.4);
    padding: 0.4rem 0.9rem;
    position: relative; z-index: 1;
  }

  /* ── SERVICES ── */
  .services { background: var(--cream); position: relative; }
  .services-grid {
    display: grid; 
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem; 
    margin-top: 4rem;
  }

  .service-card {
    background: #fff; 
    padding: 3rem 2.2rem;
    position: relative; 
    overflow: hidden;
    border-radius: 16px;
    border: 1px solid var(--border);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    cursor: default;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 20px rgba(26,45,107,0.03);
  }

  .service-card::before {
    content: '';
    position: absolute; 
    top: 0; 
    left: 0; 
    right: 0; 
    height: 4px;
    background: linear-gradient(to right, var(--orange), var(--orange-light));
    transform: scaleX(0); 
    transform-origin: left;
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  }

  .service-card:hover { 
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(26,45,107,0.1);
    border-color: rgba(244,123,32,0.2);
  }
  
  .service-card:hover::before { transform: scaleX(1); }

  .service-icon {
    width: 54px;
    height: 54px;
    background: rgba(244,123,32,0.06);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--orange);
    margin-bottom: 2rem;
    transition: all 0.5s ease;
  }

  .service-card:hover .service-icon {
    background: var(--orange);
    color: #fff;
    transform: rotateY(10deg) scale(1.1);
    box-shadow: 0 10px 20px rgba(244,123,32,0.2);
  }

  .service-icon svg {
    width: 28px;
    height: 28px;
  }

  .service-num {
    font-size: 0.8rem; 
    font-weight: 700; 
    letter-spacing: 0.2em;
    color: var(--muted); 
    opacity: 0.4; 
    margin-bottom: 0.5rem;
    font-family: 'Barlow', sans-serif;
  }
  
  .service-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.4rem, 2vw, 1.7rem); 
    font-weight: 800;
    line-height: 1.25; 
    margin-bottom: 1.2rem;
    color: var(--navy-dark);
    transition: color 0.3s ease;
  }

  .service-card:hover .service-title {
    color: var(--orange-dark);
  }

  .service-desc {
    font-size: 0.92rem; 
    line-height: 1.6;
    color: var(--muted); 
    font-family: 'Barlow', sans-serif; 
    font-weight: 300;
    margin-top: auto;
  }

  /* ── OUR WORK ── */
  .work { background: var(--navy-dark); padding: 7rem 5vw; }
  .work .section-tag { color: var(--orange-light); }
  .work .section-tag::before { background: var(--orange-light); }
  .work .section-title { color: #fff; }
  .work-sub {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    color: rgba(255,255,255,0.55); margin-top: 1rem;
    max-width: 580px; line-height: 1.7;
  }

  .work-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: 280px 280px;
    gap: 4px; margin-top: 3.5rem;
  }
  .work-item {
    overflow: hidden; position: relative;
    background: var(--navy);
    cursor: pointer;
  }
  .work-item:first-child { grid-row: 1 / 3; }

  .work-item-inner {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(5,10,30,0.65) 0%, rgba(5,10,30,0.15) 60%, transparent 100%);
    opacity: 0; transition: opacity 0.4s;
    pointer-events: none;
  }
  .work-item:hover .work-item-inner { opacity: 1; }

  .work-item-placeholder {
    position: absolute; inset: 0;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    transition: transform 0.5s;
  }
  .work-item:hover .work-item-placeholder { transform: scale(1.04); }

  .work-item-placeholder svg {
    width: 40px; height: 40px; color: rgba(244,123,32,0.4);
  }
  .work-item-placeholder span {
    font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase;
    color: rgba(255,255,255,0.25); font-weight: 600;
  }

  .work-item-inner h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem; color: #fff; font-weight: 700;
  }
  .work-item-inner p {
    font-size: 0.75rem; color: var(--orange-light);
    letter-spacing: 0.1em; text-transform: uppercase;
    font-weight: 600; margin-top: 0.3rem;
  }

  .work-cta {
    margin-top: 2.5rem; display: flex; justify-content: center;
  }

  /* ── CLIENTS ── */
  .clients { background: #fff; overflow: hidden; }
  .clients-sub {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem; color: var(--muted);
    margin-top: 0.8rem; max-width: 500px; line-height: 1.65;
  }
  .clients-marquee-wrap {
    margin-top: 3.5rem; position: relative;
  }
  .clients-marquee-wrap::before,
  .clients-marquee-wrap::after { display: none; }

  .marquee-track {
    display: flex; width: max-content;
    animation: marquee 40s linear infinite;
  }
  @media (hover: hover) {
    .marquee-track:hover { animation-play-state: paused; }
  }

  .client-chip {
    flex-shrink: 0;
    width: 190px; height: 190px;
    margin: 0 0.75rem;
    border: 1.5px solid var(--border);
    background: #fff;
    display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.6rem;
    position: relative; overflow: hidden;
    transition: border-color 0.25s, background 0.25s, box-shadow 0.25s;
    cursor: default;
  }
  .client-chip::before {
    content: '';
    position: absolute; inset: 0;
    background: none;
  }
  .client-chip img {
    position: relative; z-index: 1;
    max-width: 80%; max-height: 80%;
    object-fit: contain;
  }
  .client-chip svg { color: rgba(26,45,107,0.18); position: relative; z-index: 1; flex-shrink: 0; }
  .client-chip span {
    font-size: 0.62rem; letter-spacing: 0.1em; text-transform: uppercase;
    color: rgba(26,45,107,0.22); font-weight: 600; position: relative; z-index: 1;
  }
  .client-chip:hover {
    border-color: var(--orange); background: rgba(244,123,32,0.04);
    box-shadow: 0 4px 16px rgba(244,123,32,0.10);
  }

  .clients-tagline {
    text-align: center; margin-top: 3rem;
    font-family: 'Playfair Display', serif;
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    font-style: italic; color: var(--muted);
  }

  /* ── FOUNDER ── */
  .founder {
    background: var(--cream-dark);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
  }
  .founder-grid {
    display: grid; grid-template-columns: 1fr 1.5fr;
    gap: 5rem; align-items: start; margin-top: 3rem;
  }

  .founder-portrait {
    position: relative;
  }  .founder-portrait-frame {
    background: linear-gradient(145deg, var(--navy) 0%, var(--navy-dark) 100%);
    aspect-ratio: 3/4; position: relative;
    display: flex; align-items: center; justify-content: center;
    overflow: hidden;
  }
  .founder-portrait-frame::before {
    content: '';
    position: absolute; inset: -40px;
    background:
      radial-gradient(ellipse at 30% 30%, rgba(244,123,32,0.3) 0%, transparent 60%);
  }
  .founder-portrait-frame svg {
    width: 80px; height: 80px; color: rgba(255,255,255,0.15); position: relative; z-index: 1;
  }
  .founder-portrait-label {
    position: absolute; bottom: -1px; left: -1px; right: 0;
    background: var(--orange); padding: 1rem 1.5rem;
  }
  .founder-portrait-label h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem; color: #fff; font-weight: 700;
  }
  .founder-portrait-label p {
    font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase;
    color: rgba(255,255,255,0.8); margin-top: 0.2rem; font-weight: 600;
  }


  .founder-story p {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.05rem, 1.6vw, 1.3rem);
    font-weight: 400; line-height: 1.85;
    color: var(--muted); margin-bottom: 1.4rem;
  }
  .founder-story p strong { color: var(--navy); font-weight: 600; }

  .founder-timeline {
    display: flex; gap: 1.5rem; margin-top: 2rem; flex-wrap: nowrap;
  }
  .timeline-item {
    flex: 1; min-width: 0;
    border-left: 3px solid var(--orange);
    padding-left: 1rem;
  }
  .timeline-year {
    font-family: 'Playfair Display', serif;
    font-size: 2rem; font-weight: 900; color: var(--navy);
    line-height: 1;
  }
  .timeline-desc {
    font-size: 0.82rem; color: var(--muted); margin-top: 0.3rem; line-height: 1.4;
  }

  /* ── MANIFESTO ── */
  .manifesto {
    background: var(--navy-dark);
    padding: 10rem 5vw 9rem;
    text-align: center; overflow: hidden; position: relative;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    min-height: 60vh;
  }
  .manifesto::before {
    content: 'OOH';
    position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%);
    font-family: 'Playfair Display', serif;
    font-size: clamp(120px, 22vw, 320px);
    font-weight: 900; color: rgba(255,255,255,0.025);
    letter-spacing: 0.1em; pointer-events: none; user-select: none;
    line-height: 1; white-space: nowrap;
  }
  /* Pulsing vignette */
  .manifesto::after {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse 70% 70% at 50% 50%, transparent 40%, rgba(5,10,30,0.55) 100%);
    pointer-events: none;
  }
  .manifesto-eyebrow {
    font-size: 0.72rem; font-weight: 700; letter-spacing: 0.28em;
    text-transform: uppercase; color: rgba(244,123,32,0.7);
    margin-bottom: 3.5rem; position: relative; z-index: 1;
    display: flex; align-items: center; gap: 1.2rem;
    opacity: 0; transition: opacity 1s 0.2s;
  }
  .manifesto-eyebrow.in-view { opacity: 1; }
  .manifesto-eyebrow::before,
  .manifesto-eyebrow::after {
    content: ''; display: block;
    width: 40px; height: 1px; background: rgba(244,123,32,0.4);
  }

  /* Row 1: "Outdoor Ads Are" — fades up as a unit */
  .manifesto-intro {
    display: block; position: relative; z-index: 2;
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.2rem, 2.5vw, 2rem);
    font-weight: 300; font-style: italic;
    letter-spacing: 0.12em; color: rgba(255,255,255,0.35);
    overflow: hidden; margin-bottom: 1.2rem;
  }
  .manifesto-intro-inner {
    display: block;
    transform: translateY(100%);
    transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1);
  }
  .manifesto-intro.in-view .manifesto-intro-inner { transform: translateY(0); }

  /* Power word lines */
  .manifesto-power {
    display: flex; flex-direction: column; gap: 0.25rem;
    position: relative; z-index: 2;
  }
  .manifesto-power-row {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.8rem, 6.5vw, 7.5rem);
    font-weight: 900; line-height: 1.0;
    letter-spacing: -0.015em;
    display: block;
    overflow: hidden;
  }
  /* Each char is wrapped in a span via JS */
  .m-char {
    display: inline-block;
    opacity: 0;
    transform: translateY(60%) skewY(4deg);
    filter: blur(8px);
    transition:
      opacity 0.55s cubic-bezier(0.16,1,0.3,1),
      transform 0.55s cubic-bezier(0.16,1,0.3,1),
      filter 0.55s cubic-bezier(0.16,1,0.3,1);
  }
  .m-char.revealed {
    opacity: 1;
    transform: translateY(0) skewY(0deg);
    filter: blur(0);
  }

  /* All manifesto chars – always white */
  .manifesto-power-row .m-char { color: #fff; }
  .manifesto-power-row .m-char.revealed {
    text-shadow: 0 0 80px rgba(255,255,255,0.15);
  }

  /* Separator dots between words */
  .manifesto-sep {
    display: block; width: 5px; height: 5px;
    background: rgba(244,123,32,0.5); border-radius: 50%;
    margin: 0.6rem auto;
    opacity: 0; transform: scale(0);
    transition: opacity 0.5s, transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative; z-index: 2;
  }
  .manifesto-sep.revealed { opacity: 1; transform: scale(1); }

  @keyframes shimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
  }


  /* ── IMPACT ── */
  .impact { background: var(--cream); }
  .impact-grid {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 0; margin-top: 4rem;
    border: none;
  }
  .impact-item {
    padding: 3rem 2.5rem; border-right: none;
    position: relative; text-align: center; overflow: hidden;
  }
  .impact-item:last-child { border-right: none; }
  .impact-item::before {
    content: ''; position: absolute; inset: 0;
    background: rgba(244,123,32,0.04);
    transform: scaleY(0); transform-origin: bottom;
    transition: transform 0.4s;
  }
  .impact-item:hover::before { transform: scaleY(1); }

  .impact-num {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 4vw, 4rem);
    font-weight: 900; color: var(--navy-dark);
    line-height: 1;
  }
  .impact-num span { color: var(--orange); }
  .impact-label {
    font-size: 0.75rem; font-weight: 700; letter-spacing: 0.14em;
    text-transform: uppercase; color: var(--muted); margin-top: 0.8rem;
    line-height: 1.4;
  }

  /* ── CONTACT ── */
  .contact { background: #fff; }
  .contact-grid {
    display: grid; grid-template-columns: 1fr 1.2fr;
    gap: 5rem; margin-top: 3rem; align-items: start;
  }

  .contact-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem; font-weight: 700; color: var(--navy-dark);
    margin-bottom: 1.5rem;
  }
  .contact-detail {
    display: flex; gap: 1rem; align-items: flex-start;
    margin-bottom: 1.4rem; padding-bottom: 1.4rem;
    border-bottom: 1px solid var(--border);
  }
  .contact-detail:last-of-type { border-bottom: none; }
  .contact-detail svg { width: 20px; height: 20px; color: var(--orange); flex-shrink: 0; margin-top: 2px; }
  .contact-detail-text { font-size: 0.9rem; color: var(--muted); line-height: 1.65; }
  .contact-detail-text strong { display: block; color: var(--navy); font-weight: 600; font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 0.2rem; }

  .contact-form { display: flex; flex-direction: column; gap: 1.2rem; }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }

  .form-group { display: flex; flex-direction: column; gap: 0.4rem; }
  .form-group label {
    font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em;
    text-transform: uppercase; color: var(--navy);
  }
  .form-group input,
  .form-group textarea {
    border: 1.5px solid var(--border);
    padding: 0.9rem 1rem; font-family: 'Barlow', sans-serif;
    font-size: 0.95rem; color: var(--ink);
    background: var(--cream); transition: border-color 0.25s;
    outline: none; border-radius: 0;
    -webkit-appearance: none; appearance: none;
  }
  .form-group input:focus,
  .form-group textarea:focus { border-color: var(--orange); background: #fff; }
  .form-group textarea { resize: vertical; min-height: 120px; }

  /* ── FOOTER ── */
  footer { background: var(--navy-dark); padding: 3.5rem 5vw 0; border-top: 3px solid var(--orange); }
  .footer-main {
    display: grid; grid-template-columns: 1fr 1.6fr 1fr; gap: 3rem;
    padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,0.1); align-items: start;
  }
  .footer-logo img { height: 44px; filter: brightness(0) invert(1) sepia(1) saturate(5) hue-rotate(5deg); margin-bottom: 1rem; display: block; }
  .footer-tagline { font-family: 'Cormorant Garamond', serif; font-size: 1rem; color: rgba(255,255,255,0.45); line-height: 1.6; font-style: italic; }
  .footer-office h5, .footer-connect h5 {
    font-size: 0.68rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--orange); margin-bottom: 1rem; display: flex; align-items: center; gap: 0.6rem;
  }
  .footer-office h5::before, .footer-connect h5::before { content: ''; display: block; width: 18px; height: 2px; background: var(--orange); }
  .footer-office-name { font-family: 'Playfair Display', serif; font-size: 0.95rem; font-weight: 700; color: #fff; margin-bottom: 0.6rem; letter-spacing: 0.02em; }
  .footer-office-addr { font-size: 0.84rem; color: rgba(255,255,255,0.5); line-height: 1.7; margin-bottom: 1rem; }
  .footer-office-contacts { display: flex; flex-direction: column; gap: 0.3rem; }
  .footer-office-contacts a, .footer-office-contacts span {
    font-size: 0.82rem; color: rgba(255,255,255,0.5); text-decoration: none;
    transition: color 0.25s; display: flex; align-items: center; gap: 0.5rem;
  }
  .footer-office-contacts a:hover { color: var(--orange); }
  .footer-office-contacts .contact-label {
    font-size: 0.65rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase;
    color: var(--orange); min-width: 52px;
  }
  .footer-connect-links { display: flex; flex-direction: column; gap: 0.6rem; }
  .footer-connect-link {
    display: flex; align-items: center; gap: 0.8rem; font-size: 0.84rem;
    color: rgba(255,255,255,0.5); text-decoration: none;
    padding: 0.55rem 0.9rem; border: 1px solid rgba(255,255,255,0.08);
    transition: color 0.25s, border-color 0.25s, background 0.25s;
  }
  .footer-connect-link:hover { color: #fff; border-color: var(--orange); background: rgba(244,123,32,0.07); }
  .footer-connect-link svg { width: 15px; height: 15px; flex-shrink: 0; color: var(--orange); }
  .footer-connect-link span { font-weight: 500; }
  .footer-bottom {
    display: flex; justify-content: space-between; align-items: center;
    padding: 1.6rem 0; flex-wrap: wrap; gap: 1rem;
  }
  .footer-bottom p { font-size: 0.78rem; color: rgba(255,255,255,0.35); }
  .footer-links { display: flex; gap: 2rem; }
  .footer-links a { font-size: 0.78rem; color: rgba(255,255,255,0.35); text-decoration: none; transition: color 0.25s; }
  .footer-links a:hover { color: rgba(255,255,255,0.75); }

  /* ── ANIMATIONS ── */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
  }
  @keyframes scanLine {
    0% { left: -100%; right: 100%; }
    100% { left: 100%; right: -100%; }
  }
  @keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
  }

  .reveal {
    opacity: 0; transform: translateY(40px);
    transition: opacity 0.75s cubic-bezier(.4,0,.2,1), transform 0.75s cubic-bezier(.4,0,.2,1);
  }
  .reveal.visible { opacity: 1; transform: none; }
  .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; }

  /* ── DIVIDER ── */
  .divider {
    width: 60px; height: 3px; background: var(--orange);
    margin: 1.5rem 0;
  }

  /* ── RESPONSIVE ── */
  @media (max-width: 1024px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
    .impact-grid { grid-template-columns: repeat(2, 1fr); }
    .impact-item:nth-child(2) { border-right: none; }
    .impact-item:nth-child(3), .impact-item:nth-child(4) { border-top: none; }
    .work-grid {
      grid-template-columns: 1fr 1fr;
      grid-template-rows: 220px 220px 220px;
    }
    .work-item:first-child { grid-row: 1; grid-column: 1 / 3; }
    .footer-main { grid-template-columns: 1fr 1fr; }
  }

  @media (max-width: 768px) {
    nav { padding: 0 4vw; }
    .nav-links { display: none; }
    .nav-hamburger { display: flex; }

    section { padding: 5rem 5vw; }

    .hero-content { flex-direction: column; align-items: flex-start; gap: 2.5rem; }
    .hero-title { font-size: clamp(2.6rem, 11vw, 4.5rem); }
    .hero-since { font-size: clamp(1.6rem, 7vw, 3rem); }
    .hero-circles {
      width: 100%;
      height: 260px;
      align-self: center;
    }
    .hero-circle-big { width: 200px; height: 200px; top: 0; left: 50%; transform: translateX(-50%); }
    .hero-circle-small { width: 120px; height: 120px; bottom: 0; right: calc(50% - 140px); }
    .hero-circles::before { display: none; }

    .who-grid { grid-template-columns: 1fr; gap: 3rem; }
    .founder-grid { grid-template-columns: 1fr; }
    .founder-portrait { max-width: 320px; }
    .contact-grid { grid-template-columns: 1fr; }

    .services-grid { grid-template-columns: 1fr; gap: 1.5rem; }

    .work-grid {
      grid-template-columns: 1fr;
      grid-template-rows: repeat(5, 200px);
    }
    .work-item:first-child { grid-row: 1; grid-column: 1; }

    .impact-grid { grid-template-columns: 1fr 1fr; }
    .impact-item { padding: 2rem 1rem; border-right: none !important; }
    .impact-item:nth-child(even) { border-right: none !important; }
    .impact-item:nth-child(n+3) { border-top: none; }
    .impact-num { font-size: clamp(1.5rem, 6.5vw, 3rem); }
    .impact-label { font-size: 0.65rem; }

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

    .footer-main { grid-template-columns: 1fr; gap: 2.5rem; }
    .footer-bottom { flex-direction: column; align-items: flex-start; }

    .manifesto-power-row { font-size: clamp(1.5rem, 8.5vw, 4rem); white-space: nowrap; overflow: visible; }

    .founder-timeline { flex-direction: column; }
  }

/* ═══════════════════════════════════════════════
   PREMIUM ENHANCEMENTS
   ═══════════════════════════════════════════════ */

/* ── CUSTOM CURSOR ── */
.custom-cursor {
  position: fixed; width: 40px; height: 40px; border-radius: 50%;
  border: 1.5px solid rgba(244,123,32,0.5);
  pointer-events: none; z-index: 9999;
  transition: width 0.3s, height 0.3s, border-color 0.3s, background 0.3s;
  will-change: transform; top: 0; left: 0;
}
.custom-cursor.cursor-hover {
  width: 60px; height: 60px;
  border-color: rgba(244,123,32,0.8);
  background: rgba(244,123,32,0.06);
}
.cursor-dot {
  position: fixed; width: 8px; height: 8px; border-radius: 50%;
  background: var(--orange); pointer-events: none;
  z-index: 10000; will-change: transform; top: 0; left: 0;
}

/* ── FILM GRAIN OVERLAY ── */
.hero-overlay::before {
  content: ''; position: absolute; inset: 0; z-index: 2;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  pointer-events: none;
}

/* ── HERO VIDEO KEN BURNS ── */
.hero-video {
  animation: kenBurns 25s ease-in-out infinite;
  will-change: transform;
}
@keyframes kenBurns {
  0% { transform: scale(1); }
  50% { transform: scale(1.08) translate(-0.5%, -0.3%); }
  100% { transform: scale(1); }
}

/* ── HERO SINCE SHIMMER ── */
.hero-since {
  background: linear-gradient(90deg, var(--orange) 0%, #FFD700 25%, var(--orange) 50%, #FFD700 75%, var(--orange) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: fadeUp 0.9s 0.55s forwards, shimmerGold 4s 2s infinite linear;
}
@keyframes shimmerGold {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

/* ── HERO CIRCLES FLOATING ── */
.hero-circle-big {
  animation: floatBig 6s ease-in-out infinite;
  box-shadow: 0 20px 70px rgba(0,0,0,0.65), 0 0 40px rgba(244,123,32,0.1);
}
.hero-circle-small {
  animation: floatSmall 5s ease-in-out infinite 0.5s;
  box-shadow: 0 14px 48px rgba(0,0,0,0.7), 0 0 30px rgba(244,123,32,0.08);
}
@keyframes floatBig {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}
@keyframes floatSmall {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* ── HERO ACCENT DOT PULSE ── */
.hero-circles::before {
  animation: dotPulse 2.5s ease-in-out infinite;
}
@keyframes dotPulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(244,123,32,0.2), 0 0 20px rgba(244,123,32,0.15); }
  50% { box-shadow: 0 0 0 10px rgba(244,123,32,0.05), 0 0 30px rgba(244,123,32,0.25); }
}

/* ── ENHANCED REVEAL (blur to sharp) ── */
.reveal {
  filter: blur(6px);
  transition: opacity 0.75s cubic-bezier(.4,0,.2,1), transform 0.75s cubic-bezier(.4,0,.2,1), filter 0.75s cubic-bezier(.4,0,.2,1);
}
.reveal.visible { filter: blur(0); }

/* ── SERVICE CARD ENHANCEMENTS REMOVED (Handled in main block) ── */

/* ── WORK ITEM ENHANCED ── */
.work-item { transition: transform 0.4s ease; will-change: transform; }
.work-item::after {
  content: ''; position: absolute; inset: 0;
  border: 2px solid transparent; transition: border-color 0.4s;
  pointer-events: none; z-index: 5;
}
.work-item:hover::after { border-color: rgba(244,123,32,0.4); }

/* ── CLIENT MARQUEE EDGE FADES ── */
.clients-marquee-wrap { position: relative; }
.clients-marquee-wrap::before,
.clients-marquee-wrap::after {
  display: none !important;
}

/* ── CLIENT CHIP ENHANCED ── */
.client-chip {
  transition: border-color 0.25s, background 0.25s, box-shadow 0.3s, transform 0.3s;
}
.client-chip:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(244,123,32,0.15);
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
}

/* ── FOUNDER CORNER ACCENTS ── */
.founder-portrait { position: relative; }
.founder-portrait::before,
.founder-portrait::after {
  content: ''; position: absolute; width: 40px; height: 40px;
  border: 2px solid var(--orange); opacity: 0.4;
  transition: opacity 0.4s, width 0.4s, height 0.4s; z-index: 5;
}
.founder-portrait::before { top: -8px; left: -8px; border-right: none; border-bottom: none; }
.founder-portrait::after { bottom: -8px; right: -8px; border-left: none; border-top: none; }
.founder-portrait:hover::before,
.founder-portrait:hover::after { width: 60px; height: 60px; opacity: 0.7; }

/* ── MANIFESTO PARTICLES CANVAS ── */
#manifesto-particles {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
}

/* ── MANIFESTO ENHANCED GLOW ── */
.manifesto-power-row .m-char.revealed {
  text-shadow: 0 0 80px rgba(255,255,255,0.15), 0 0 120px rgba(244,123,32,0.08);
}

/* ── IMPACT PROGRESS RINGS ── */
.impact-item { transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1); }
.impact-item:hover { transform: scale(1.05); }
.impact-ring-wrap {
  position: relative; display: flex; flex-direction: column;
  align-items: center; margin-bottom: 0.5rem;
}
.progress-ring {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 130px; height: 130px; pointer-events: none;
}
.progress-ring-bg { fill: none; stroke: rgba(26,45,107,0.08); stroke-width: 2; }
.progress-ring-circle {
  fill: none; stroke: var(--orange); stroke-width: 2.5;
  stroke-linecap: round;
  transform: rotate(-90deg); transform-origin: 50% 50%;
  transition: stroke-dashoffset 2.2s cubic-bezier(0.4,0,0.2,1);
}

/* ── IMPACT DOT PATTERN BG ── */
.impact {
  background-image: radial-gradient(circle, rgba(26,45,107,0.06) 1px, transparent 1px);
  background-size: 24px 24px; background-color: var(--cream);
}

/* ── CONTACT FORM ENHANCEMENTS ── */
.form-group label { transition: color 0.25s, transform 0.25s; }
.form-group.focused label { color: var(--orange); transform: translateY(-2px); }
.form-group input:focus,
.form-group textarea:focus {
  box-shadow: 0 0 0 3px rgba(244,123,32,0.1);
}



/* ── SECTION DECORATIVE LINES ── */
.who::before, .services::before, .founder::before {
  content: ''; position: absolute; top: 0; left: 5vw; right: 5vw; height: 1px;
  background: linear-gradient(to right, transparent, var(--orange), transparent);
  opacity: 0.2;
}

/* ── ENHANCED SCROLL INDICATOR ── */
.hero-scroll-line::before {
  content: ''; position: absolute; left: 0; top: -2px;
  width: 6px; height: 6px; border-radius: 50%; background: var(--orange);
  animation: scrollDot 2s infinite ease-in-out;
}
@keyframes scrollDot {
  0%, 100% { left: 0; opacity: 1; }
  50% { left: 44px; opacity: 0.3; }
}

/* ── SECTION TITLE GLOW ── */
.section-title { transition: opacity 0.8s, transform 0.8s; }
.section-title.title-revealed { animation: titleGlow 1s forwards; }
@keyframes titleGlow {
  0% { text-shadow: none; }
  50% { text-shadow: 0 0 30px rgba(244,123,32,0.15); }
  100% { text-shadow: none; }
}

/* ── HAMBURGER ANIMATION ── */
.nav-hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-hamburger.active span:nth-child(2) { opacity: 0; }
.nav-hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ── ENHANCED RESPONSIVE (NEW EFFECTS) ── */
@media (max-width: 768px) {
  .preloader-overlay { display: none !important; }
  .custom-cursor, .cursor-dot { display: none !important; }
  .hero-circle-big { animation: none !important; }
  .hero-circle-small { animation: none !important; }
  .hero-video { animation: none !important; }
  .founder-portrait::before, .founder-portrait::after { display: none; }
  .progress-ring { width: 90px; height: 90px; }
  .impact-item:hover { transform: none; }
  .clients-marquee-wrap::before,
  .clients-marquee-wrap::after { display: none !important; }
  .reveal { filter: blur(3px); }
}

/* ── WHATSAPP BUTTON ── */
.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  color: #FFF;
  border-radius: 50px;
  text-align: center;
  font-size: 35px;
  box-shadow: 2px 2px 10px rgba(0,0,0,0.2);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s, box-shadow 0.3s;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 2px 2px 15px rgba(0,0,0,0.3);
  color: #FFF;
}
.whatsapp-float svg {
  width: 35px;
  height: 35px;
  fill: currentColor;
}
@media (max-width: 768px) {
  .whatsapp-float {
    width: 50px;
    height: 50px;
    bottom: 20px;
    right: 20px;
  }
  .whatsapp-float svg {
    width: 30px;
    height: 30px;
  }
}
