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

:root {
  --red: #CC1515;
  --black: #0d0d0d;
  --white: #ffffff;
  --cream: #f7f5f0;
  --gray: #888;
  --light-gray: #e8e6e1;
}

/* INTRO LOADER */

.intro-loader {
  position: fixed;
  inset: 0;
  background: #ffffff;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: opacity 1s ease, visibility 1s ease;
}

.intro-loader.hide {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.intro-content {
  display: flex;
  align-items: center;
  justify-content: center;
}

.intro-symbol {
 width: clamp(75px, 9vw, 140px);
  height: auto;
  opacity: 0;
  transform: scale(0.82) rotate(-4deg);
  animation: logoReveal 1.5s cubic-bezier(0.19, 1, 0.22, 1) forwards;
  filter: drop-shadow(0 20px 50px rgba(204,21,21,0.18));
}

@keyframes logoReveal {

  0% {
    opacity: 0;
    transform: scale(0.82) rotate(-4deg);
  }

  60% {
    opacity: 1;
    transform: scale(1.04) rotate(0deg);
  }

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

  html { scroll-behavior: smooth; }

  body {
    font-family: 'DM Sans', sans-serif;
    background: var(--white);
    color: var(--black);
    cursor: none;
    overflow-x: hidden;
  }

  /* Custom Cursor */
  .cursor {
    position: fixed;
    width: 10px; height: 10px;
    background: var(--red);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%,-50%);
    transition: transform 0.1s;
  }
  .cursor-ring {
    position: fixed;
    width: 36px; height: 36px;
    border: 1.5px solid var(--red);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%,-50%);
    transition: all 0.18s ease;
    opacity: 0.6;
  }
  body:hover .cursor { opacity: 1; }

  /* NAV */
  nav {
    position: fixed; top: 0; left: 0; right: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.4rem 4rem;
    mix-blend-mode: multiply;
  }

  .nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.nav-logo img {
  height: 42px;
  width: auto;
  display: block;
}

  .nav-logo span { color: var(--red); }
  .nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
  }
  .nav-links a {
    font-size: 0.8rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--black);
    font-weight: 500;
    transition: color 0.2s;
  }
  .nav-links a:hover { color: var(--red); }
  .nav-cta {
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.6rem 1.4rem;
    background: var(--red);
    color: white;
    border: none;
    text-decoration: none;
    font-weight: 500;
    transition: background 0.2s;
  }
  .nav-cta:hover { background: var(--black); }

  /* HERO */
  .hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 8rem 4rem 5rem;
    position: relative;
    background: var(--white);
    overflow: hidden;
  }
  .hero-bg-text {
    position: absolute;
    top: 50%; left: -2rem;
    transform: translateY(-50%);
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(10rem, 22vw, 22rem);
    color: transparent;
    -webkit-text-stroke: 1px var(--light-gray);
    white-space: nowrap;
    pointer-events: none;
    user-select: none;
    animation: driftLeft 20s linear infinite;
  }
  @keyframes driftLeft {
    0% { transform: translateY(-50%) translateX(0); }
    50% { transform: translateY(-50%) translateX(-40px); }
    100% { transform: translateY(-50%) translateX(0); }
  }
  .hero-eyebrow {
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gray);
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    animation: fadeUp 1s ease both;
  }
  .hero-eyebrow::before {
    content: '';
    width: 2rem; height: 1px;
    background: var(--red);
  }

.hero-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3.5rem, 7.2vw, 7.0rem);
  line-height: 1.02;
  font-weight: 1200;
  max-width: 950px;
  animation: fadeUp 1s 0.15s ease both;
}

  .hero-headline .line-red { color: var(--red); }
  .hero-headline .line-italic { font-style: italic; }
 
  .hero-headline .highlight {
  background: var(--red);
  color: white;
  padding: 0.02em 0.18em;
  display: inline-block;
  line-height: 0.95;
}
  .hero-sub {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-top: 3rem;
    gap: 2rem;
    animation: fadeUp 1s 0.3s ease both;
  }
  .hero-desc {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #444;
    max-width: 380px;
    font-weight: 300;
  }
  .hero-cta-group {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 1rem;
  }
  .hero-cta {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--black);
    color: white;
    text-decoration: none;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 500;
    transition: all 0.3s;
  }
  .hero-cta:hover { background: var(--red); transform: translateY(-2px); }
  .hero-scroll {
    font-size: 0.72rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gray);
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  .scroll-line {
    width: 30px; height: 1px;
    background: var(--gray);
    animation: scaleX 2s ease infinite;
  }
  @keyframes scaleX {
    0%,100% { transform: scaleX(1); }
    50% { transform: scaleX(0.5); }
  }

  /* HERO RIGHT-SIDE FLOATING ANIMATION */
  .hero-headline,
  .hero-sub {
    position: relative;
    z-index: 2;
  }

  .hero-visuals {
    position: absolute;
    top: 50%;
    right: 12rem;
    transform: translateY(-50%);
    width: 400px;
    height: 520px;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
  }
  .hero-visuals::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, #e0e0e0 1px, transparent 1px);
    background-size: 22px 22px;
    opacity: .45;
  }

  .hv-gp {
    position: absolute;
    font-family: 'Playfair Display', serif;
    font-size: 420px;
    font-weight: 900;
    color: rgba(204,21,21,.04);
    right: -18px;
    top: 50%;
    transform: translateY(-50%);
    line-height: 1;
    pointer-events: none;
    user-select: none;
  }

  .hv-unit {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 11px;
    z-index: 2;
  }
  .hv-unit--1 {
    top: 52px;
    left: 22px;
    animation: hv-fa 4s ease-in-out infinite;
  }
  .hv-unit--2 {
    top: 50%;
    left: 50%;
    animation: hv-fb 5.5s ease-in-out infinite;
  }
  .hv-unit--3 {
    bottom: 50px;
    right: 18px;
    animation: hv-fc 4.5s ease-in-out infinite;
  }
  @keyframes hv-fa {
    0%,100% { transform: rotate(-5deg) translateY(0); }
    50% { transform: rotate(-5deg) translateY(-12px); }
  }
  @keyframes hv-fb {
    0%,100% { transform: translate(-50%,-52%) translateY(0); }
    50% { transform: translate(-50%,-52%) translateY(-15px); }
  }
  @keyframes hv-fc {
    0%,100% { transform: rotate(4deg) translateY(0); }
    50% { transform: rotate(4deg) translateY(-9px); }
  }

  .hv-frame {
    width: 98px;
    height: 98px;
    background: #fff;
    border: .5px solid rgba(13,13,13,.1);
    box-shadow: 0 12px 40px rgba(0,0,0,.06), 0 2px 6px rgba(0,0,0,.03);
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .hv-label {
    font-size: 8px;
    font-weight: 700;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: #0D0D0D;
  }

  .hv-ag {
    transform-box: fill-box;
    transform-origin: center;
    animation: hv-aspin 9s linear infinite;
  }
  @keyframes hv-aspin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
  }

  .hv-rng {
    transform-box: fill-box;
    transform-origin: center;
    animation: hv-rpulse 2.6s ease-out infinite;
  }
  .hv-rng--1 { animation-delay: 0s; }
  .hv-rng--2 { animation-delay: .87s; }
  .hv-rng--3 { animation-delay: 1.73s; }
  @keyframes hv-rpulse {
    0% { transform: scale(.1); opacity: 1; }
    60% { opacity: .5; }
    100% { transform: scale(1); opacity: 0; }
  }

  .hv-cn {
    transform-box: fill-box;
    transform-origin: center;
    animation: hv-cseek 6s ease-in-out infinite;
  }
  @keyframes hv-cseek {
    0% { transform: rotate(-135deg); }
    30% { transform: rotate(58deg); }
    45% { transform: rotate(40deg); }
    57% { transform: rotate(52deg); }
    68% { transform: rotate(44deg); }
    78%,100% { transform: rotate(45deg); }
  }

  .hv-cycle {
    position: absolute;
    top: 18px;
    right: 18px;
    z-index: 5;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 8px;
    font-weight: 700;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: #0D0D0D;
  }
  .hv-sl {
    width: 20px;
    height: 1px;
    background: #CC1515;
    animation: hv-sla 1s ease-in-out infinite alternate;
  }
  @keyframes hv-sla {
    from { width: 20px; }
    to { width: 34px; }
  }
  .hv-cw {
    display: none;
    animation: hv-cwi .35s ease;
  }
  .hv-cw--on {
    display: inline;
  }
  @keyframes hv-cwi {
    from { opacity: 0; transform: translateY(-3px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .hv-dot {
    position: absolute;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #CC1515;
    z-index: 3;
    animation: hv-dpulse 2s ease-in-out infinite;
  }
  @keyframes hv-dpulse {
    0%,100% { transform: scale(1); opacity: .65; }
    50% { transform: scale(2.2); opacity: .2; }
  }
  .hv-dot--1 { top: 41%; left: 26%; animation-delay: 0s; }
  .hv-dot--2 { top: 27%; left: 57%; animation-delay: .5s; }
  .hv-dot--3 { top: 66%; left: 63%; animation-delay: 1s; }

  .hv-conn {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
  }

  /* Hide floating animation on mobile / smaller screens */
  @media (max-width: 1024px) {
    .hero-visuals {
      display: none;
    }
  }

  /* MARQUEE */
  .marquee-strip {
    background: var(--black);
    padding: 1rem 0;
    overflow: hidden;
    white-space: nowrap;
  }
  .marquee-inner {
    display: inline-flex;
    animation: marqueeScroll 20s linear infinite;
  }

  .marquee-inner {
  display: flex;
  align-items: center;
  animation: marqueeScroll 20s linear infinite;
}

.marquee-inner span {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.25rem;
  letter-spacing: 0.15em;
  color: white;
  margin-right: 3rem;
  line-height: 1;
}

.marquee-inner span.dot {
  color: var(--red);
  font-size: 0.85rem;
  margin-right: 3rem;
  line-height: 1;
  transform: translateY(-1px);
}

  @keyframes marqueeScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
  }

  /* PHILOSOPHY SECTION */
  .philosophy {
    padding: 8rem 4rem;
    background: var(--cream);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
  }
  .philosophy-left {}
  .section-label {
    font-size: 0.72rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--red);
    font-weight: 500;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
  }
  .section-label::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--red);
    opacity: 0.4;
  }
  .philosophy h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 4vw, 4rem);
    line-height: 1.1;
    font-weight: 900;
  }
  .philosophy h2 em { font-style: italic; color: var(--red); }
  .philosophy-right {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
  }
  .philosophy-p {
    font-size: 1.05rem;
    line-height: 1.8;
    font-weight: 300;
    color: #444;
  }
  .philosophy-p strong { color: var(--black); font-weight: 500; }
  .metaphor-card {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: white;
    border-left: 3px solid var(--red);
  }
  .metaphor-icon { font-size: 2rem; flex-shrink: 0; }
  .metaphor-text h4 { font-size: 0.95rem; font-weight: 500; margin-bottom: 0.4rem; }
  .metaphor-text p { font-size: 0.88rem; color: var(--gray); line-height: 1.6; font-weight: 300; }

  /* SERVICES */
  .services {
    padding: 8rem 4rem;
    background: var(--white);
  }
  .services-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 5rem;
  }
  .services h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.8rem, 5vw, 5rem);
    font-weight: 900;
    line-height: 1.0;
  }
  .services h2 span { color: var(--red); font-style: italic; }
  .services-intro {
    max-width: 280px;
    font-size: 0.9rem;
    line-height: 1.7;
    color: #666;
    font-weight: 300;
  }
  .services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border: 1px solid var(--light-gray);
  }
  .service-item {
    padding: 2.5rem 2rem;
    border-right: 1px solid var(--light-gray);
    border-bottom: 1px solid var(--light-gray);
    position: relative;
    overflow: hidden;
    transition: background 0.3s;
    cursor: default;
  }
  .service-item:nth-child(3n) { border-right: none; }
  .service-item:nth-child(n+4) { border-bottom: none; }
  .service-item::before {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 100%; height: 0;
    background: var(--red);
    transition: height 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 0;
  }
  .service-item:hover::before { height: 100%; }
  .service-item:hover { color: white; }
  .service-item:hover .service-num,
  .service-item:hover .service-name,
  .service-item:hover .service-desc { color: white; }
  .service-item:hover .service-tag { background: rgba(255,255,255,0.2); color: white; }
  .service-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    color: var(--gray);
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
    transition: color 0.3s;
  }
  .service-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    line-height: 1.2;
    position: relative;
    z-index: 1;
    transition: color 0.3s;
  }
  .service-desc {
    font-size: 0.85rem;
    line-height: 1.7;
    color: #666;
    font-weight: 300;
    position: relative;
    z-index: 1;
    margin-bottom: 1.5rem;
    transition: color 0.3s;
  }
  .service-tag {
    display: inline-block;
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0.35rem 0.8rem;
    background: var(--cream);
    color: var(--gray);
    position: relative;
    z-index: 1;
    transition: all 0.3s;
  }

  .service-icon {
  margin-bottom: 1.2rem;
  position: relative;
  z-index: 1;
}

.service-icon svg {
  width: 34px;
  height: 34px;
  stroke-width: 1.8;
  color: var(--black);
  transition: 0.3s ease;
}

.service-item:hover .service-icon svg {
  color: white;
}

  /* CHOICE SECTION */
  .choice-section {
    padding: 8rem 4rem;
    background: var(--black);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  .choice-section::before {
    content: 'CHOOSE';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(8rem, 18vw, 18rem);
    color: transparent;
    -webkit-text-stroke: 1px rgba(255,255,255,0.06);
    pointer-events: none;
    white-space: nowrap;
  }
  .choice-section .section-label { color: var(--red); justify-content: center; }
  .choice-section .section-label::after { display: none; }
  .choice-headline {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 4rem);
    font-weight: 900;
    margin: 1rem 0 4rem;
    line-height: 1.1;
  }
  .choice-headline span { color: var(--red); font-style: italic; }
  .choice-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
  }
  .choice-card {
    padding: 2.5rem 2rem;
    text-align: left;
    border: 1px solid rgba(255,255,255,0.1);
  }
  .choice-card.good { border-color: var(--red); }
  .choice-card h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8rem;
    letter-spacing: 0.08em;
    margin-bottom: 1.5rem;
  }
  .choice-card.good h3 { color: var(--red); }
  .choice-card.bad h3 { color: rgba(255,255,255,0.4); }
  .choice-list { list-style: none; }
  .choice-list li {
    font-size: 0.88rem;
    line-height: 1.6;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    font-weight: 300;
    display: flex;
    align-items: center;
    gap: 0.8rem;
  }
  .choice-list li::before { content: '→'; font-size: 0.8rem; color: var(--red); flex-shrink: 0; }
  .choice-card.bad .choice-list li::before { color: rgba(255,255,255,0.3); }
  .choice-card.bad .choice-list li { color: rgba(255,255,255,0.4); }
  .choice-vs {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3rem;
    color: rgba(255,255,255,0.15);
    text-align: center;
  }

  /* WORK SECTION / RESULTS */
  .results {
    padding: 8rem 4rem;
    background: var(--cream);
  }
  .results-header { margin-bottom: 5rem; }
  .results h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 5vw, 5rem);
    font-weight: 900;
    line-height: 1.0;
    margin-top: 1rem;
  }
  .results h2 em { font-style: italic; color: var(--red); }
  .stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 5rem;
  }
  .stat-block {
    padding: 2.5rem 1.5rem;
    background: white;
    border-bottom: 3px solid var(--red);
  }
  .stat-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 4rem;
    color: var(--black);
    line-height: 1;
    margin-bottom: 0.5rem;
  }
  .stat-num span { color: var(--red); }
  .stat-label { font-size: 0.82rem; color: var(--gray); text-transform: uppercase; letter-spacing: 0.1em; font-weight: 400; line-height: 1.4; }
  .testimonial-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  .testimonial-card {
    background: white;
    padding: 2.5rem;
    position: relative;
  }
  .testimonial-card::before {
    content: '"';
    font-family: 'Playfair Display', serif;
    font-size: 5rem;
    color: var(--red);
    opacity: 0.2;
    position: absolute;
    top: 1rem; left: 1.5rem;
    line-height: 1;
  }
  .testimonial-text {
    font-size: 1rem;
    line-height: 1.8;
    font-weight: 300;
    color: #444;
    margin-bottom: 1.5rem;
    padding-top: 1.5rem;
  }
  .testimonial-author { font-size: 0.82rem; font-weight: 500; letter-spacing: 0.05em; }
  .testimonial-role { font-size: 0.75rem; color: var(--gray); margin-top: 0.2rem; font-weight: 300; }

  /* CONTACT */
  .contact {
    padding: 8rem 4rem;
    background: var(--white);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
  }
  .contact-left {}
  .contact h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 5vw, 5rem);
    font-weight: 900;
    line-height: 1.0;
    margin: 1rem 0 2rem;
  }
  .contact h2 em { font-style: italic; color: var(--red); }
  .contact-desc {
    font-size: 1rem;
    line-height: 1.8;
    color: #555;
    font-weight: 300;
    margin-bottom: 3rem;
  }
  .contact-links {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
  }
  .contact-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    color: var(--black);
    font-size: 0.95rem;
    font-weight: 400;
    padding-bottom: 1.2rem;
    border-bottom: 1px solid var(--light-gray);
    transition: color 0.2s;
  }
  .contact-link:hover { color: var(--red); }
  .contact-link-icon {
    width: 40px; height: 40px;
    background: var(--cream);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
  }
  .contact-right {}
  .contact-form { display: flex; flex-direction: column; gap: 1.5rem; }
  .form-group { display: flex; flex-direction: column; gap: 0.5rem; }
  .form-group label {
    font-size: 0.72rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gray);
    font-weight: 500;
  }
  .form-group input,
  .form-group select,
  .form-group textarea {
    background: var(--cream);
    border: none;
    border-bottom: 1.5px solid var(--light-gray);
    padding: 0.9rem 0;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.95rem;
    font-weight: 300;
    color: var(--black);
    outline: none;
    transition: border-color 0.2s;
    -webkit-appearance: none;
    width: 100%;
  }
  .form-group input:focus,
  .form-group select:focus,
  .form-group textarea:focus { border-bottom-color: var(--red); }
  .form-group textarea { height: 100px; resize: none; }
  .form-group select { cursor: pointer; }
  .submit-btn {
    align-self: flex-start;
    padding: 1rem 2.5rem;
    background: var(--red);
    color: white;
    border: none;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.85rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
  }
  .submit-btn:hover { background: var(--black); transform: translateY(-2px); }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }

  /* FOOTER */
  footer {
    background: var(--black);
    color: white;
    padding: 3rem 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
.footer-brand img {
  width: 220px;
  max-width: 100%;
  height: auto;
  display: block;
}

  .footer-tagline {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.4);
    margin-top: 0.3rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }
  .footer-right { text-align: right; }
  .footer-right p { font-size: 0.8rem; color: rgba(255,255,255,0.4); line-height: 1.8; }
  .footer-right a { color: rgba(255,255,255,0.6); text-decoration: none; }
  .footer-right a:hover { color: var(--red); }

  /* ANIMATIONS */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
  }
  .reveal.visible {
    opacity: 1;
    transform: translateY(0);
  }

  /* RESPONSIVE */
 /* =========================================
   LARGE LAPTOPS
========================================= */

@media (max-width: 1400px) {

  .hero-headline {
    font-size: clamp(3rem, 6vw, 6.5rem);
  }

}


/* =========================================
   LAPTOPS & TABLETS
========================================= */

@media (max-width: 1200px) {

  nav {
    padding: 1.2rem 2rem;
  }

  .hero {
    padding: 8rem 2rem 5rem;
  }

  .hero-headline {
    font-size: clamp(3rem, 7vw, 5.8rem);
    max-width: 850px;
  }

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

  .stats-row {
    grid-template-columns: repeat(2, 1fr);
  }

}


/* =========================================
   TABLETS
========================================= */

@media (max-width: 900px) {

  body {
    cursor: auto;
  }

  .cursor,
  .cursor-ring {
    display: none;
  }

  nav {
    padding: 1rem 1.3rem;
    background: rgba(255,255,255,0.96);
    backdrop-filter: blur(12px);
    mix-blend-mode: normal;
  }

  .nav-logo img {
    height: 34px;
  }

  .nav-links {
    display: flex;
    gap: 1rem;
  }

  .nav-links a {
    font-size: 0.62rem;
    letter-spacing: 0.08em;
  }

  .nav-cta {
    display: none;
  }

  .hero {
    min-height: auto;
    padding: 8rem 1.8rem 4rem;
  }

  .hero-bg-text {
    font-size: 28vw;
    left: -1rem;
  }

  .hero-eyebrow {
    margin-bottom: 1.5rem;
  }

  .hero-headline {
    font-size: clamp(2.8rem, 11vw, 5rem);
    line-height: 0.96;
    max-width: 100%;
  }

  .hero-headline .highlight {
    padding: 0.03em 0.14em;
  }

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

  .hero-desc {
    max-width: 100%;
    font-size: 1rem;
    line-height: 1.7;
  }

  .hero-cta-group {
    align-items: flex-start;
  }

  .hero-cta {
    padding: 0.95rem 2rem;
  }

  .marquee-inner span {
    font-size: 0.9rem;
    margin-right: 2rem;
  }

  .marquee-inner span.dot {
    margin-right: 2rem;
  }

  .philosophy,
  .contact {
    grid-template-columns: 1fr;
    gap: 3rem;
    padding: 5rem 1.8rem;
  }

  .services,
  .results,
  .choice-section {
    padding: 5rem 1.8rem;
  }

  .services-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }

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

  .service-item {
    border-right: none !important;
  }

  .choice-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .choice-vs {
    display: none;
  }

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

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

  .contact-form {
    width: 100%;
  }

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

  footer {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
    padding: 2.5rem 1.8rem;
  }

  .footer-right {
    text-align: center;
  }

}


/* =========================================
   MOBILE DEVICES
========================================= */

@media (max-width: 600px) {

  nav {
    padding: 0.9rem 1rem;
  }

  .nav-logo img {
    height: 30px;
  }

  .nav-links {
    gap: 0.7rem;
  }

  .nav-links a {
    font-size: 0.52rem;
    letter-spacing: 0.06em;
  }

  .hero {
    padding: 7rem 1.2rem 3rem;
  }

  .hero-bg-text {
    font-size: 34vw;
  }

  .hero-eyebrow {
    font-size: 0.6rem;
    gap: 0.7rem;
  }

  .hero-eyebrow::before {
    width: 1.4rem;
  }

  .hero-headline {
    font-size: clamp(2.3rem, 13vw, 4rem);
    line-height: 0.94;
  }

  .hero-headline .highlight {
    padding: 0.04em 0.12em;
  }

  .hero-desc {
    font-size: 0.95rem;
    line-height: 1.7;
  }

  .hero-cta {
    width: 100%;
    text-align: center;
  }

  .hero-scroll {
    font-size: 0.62rem;
  }

  .services,
  .results,
  .choice-section,
  .philosophy,
  .contact {
    padding-left: 1.2rem;
    padding-right: 1.2rem;
  }

  .service-item,
  .testimonial-card,
  .choice-card,
  .stat-block {
    padding: 2rem 1.3rem;
  }

  .service-name {
    font-size: 1.2rem;
  }

  .service-desc {
    font-size: 0.82rem;
  }

  .choice-headline,
  .results h2,
  .contact h2,
  .philosophy h2,
  .services h2 {
    line-height: 1.05;
  }

  .footer-brand img {
    width: 180px;
  }

  .footer-right p {
    font-size: 0.72rem;
  }

}


/* =========================================
   SMALL PHONES
========================================= */

@media (max-width: 420px) {

  .hero-headline {
    font-size: clamp(2rem, 12vw, 3.4rem);
  }

  .hero-desc {
    font-size: 0.9rem;
  }

  .nav-links a {
    font-size: 0.48rem;
  }

  .hero-cta {
    font-size: 0.72rem;
  }

}
