  :root {
    --black: #000000;
    --white: #ffffff;
    --gray-900: #0d0d0d;
    --gray-800: #1a1a1a;
    --gray-700: #2a2a2a;
    --gray-500: #666666;
    --gray-400: #888888;
    --gray-200: #cccccc;
    --accent: #ffffff;
    --font-display: 'Bebas Neue', sans-serif;
    --font-cond: 'Barlow Condensed', sans-serif;
    --font-body: 'Barlow', sans-serif;
  }

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

  html { scroll-behavior: smooth; }

  body {
    background: var(--black);
    color: var(--white);
    font-family: var(--font-body);
    font-weight: 300;
    overflow-x: hidden;
    cursor: default;
  }

  /* ── SCROLLBAR ── */
  ::-webkit-scrollbar { width: 4px; }
  ::-webkit-scrollbar-track { background: var(--black); }
  ::-webkit-scrollbar-thumb { background: var(--gray-700); }

  /* ── NAV ── */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 3rem;
    background: rgba(0,0,0,0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    transition: padding .3s;
  }
  .nav-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
  }
  .nav-logo-img {
    height: 22px;
    width: auto;
    display: block;
    filter: brightness(0) invert(1);
  }
  .nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
  }
  .nav-links a {
    font-family: var(--font-cond);
    font-size: .85rem;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--gray-400);
    text-decoration: none;
    transition: color .25s;
  }
  .nav-links a:hover { color: var(--white); }
  .nav-cta {
    font-family: var(--font-cond);
    font-size: .8rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--black) !important;
    background: var(--white);
    padding: .55rem 1.4rem;
    text-decoration: none;
    transition: background .25s, color .25s !important;
  }
  .nav-cta:hover { background: var(--gray-200) !important; }

  /* ── HERO ── */
  .hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 8rem 3rem 4rem;
    overflow: hidden;
    background-image: url('https://images.pexels.com/photos/1763075/pexels-photo-1763075.jpeg?auto=compress&cs=tinysrgb&w=1920&q=80');
    background-size: cover;
    background-position: center 40%;
  }
  .hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.82);
    z-index: 0;
  }
  .hero > * { position: relative; z-index: 1; }

  /* Animated waveform background */
  .waveform-bg {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    gap: 3px;
    opacity: .06;
    pointer-events: none;
    width: 100%;
    justify-content: center;
  }
  .waveform-bg span {
    display: block;
    width: 3px;
    background: var(--white);
    border-radius: 2px;
    animation: waveBg 1.8s ease-in-out infinite alternate;
  }
  @keyframes waveBg {
    0%   { transform: scaleY(.3); }
    100% { transform: scaleY(1); }
  }

  .hero-waveform {
    display: flex;
    align-items: center;
    gap: 3px;
    margin-bottom: 2rem;
  }
  .hero-waveform span {
    display: block;
    width: 3px;
    background: var(--white);
    border-radius: 2px;
    animation: wave 1.4s ease-in-out infinite alternate;
  }
  @keyframes wave {
    0%   { transform: scaleY(.2); }
    100% { transform: scaleY(1); }
  }
  @keyframes waveEq {
    0%   { transform: scaleY(.15); }
    25%  { transform: scaleY(.8); }
    50%  { transform: scaleY(.3); }
    75%  { transform: scaleY(.95); }
    100% { transform: scaleY(1); }
  }

  .hero-logo {
    font-family: var(--font-display);
    font-size: clamp(4rem, 14vw, 12rem);
    letter-spacing: .04em;
    line-height: 1;
    text-align: center;
    position: relative;
    animation: fadeUp .9s ease both;
  }

  .hero-logo-img {
    width: clamp(280px, 55vw, 650px);
    height: auto;
    position: relative;
    display: block;
    filter: brightness(0) invert(1);
  }

  .hero-logo-wrap {
    position: relative;
    animation: fadeUp .9s ease both;
  }

  .hero-logo-wave {
    position: absolute;
    top: 7%;
    left: 5%;
    right: 5%;
    height: 18%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 2px;
    z-index: 2;
  }
  .hero-logo-wave span {
    display: block;
    width: 3px;
    background: var(--white);
    border-radius: 1px;
    animation: waveEq 0.6s steps(4, end) infinite alternate;
  }

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

  .hero-player {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin: 1.5rem 0;
    opacity: .5;
    animation: fadeUp 1s .15s ease both;
  }
  .hero-player-line {
    width: 120px;
    height: 1px;
    background: var(--white);
    position: relative;
  }
  .hero-player-line::after {
    content: '';
    position: absolute;
    top: 50%; left: 40%;
    transform: translate(-50%, -50%);
    width: 8px; height: 8px;
    background: var(--white);
    border-radius: 50%;
  }
  .player-icons {
    display: flex;
    gap: 1rem;
    font-size: 1.1rem;
  }

  .hero-tagline {
    font-family: var(--font-cond);
    font-size: clamp(1rem, 2.5vw, 1.5rem);
    font-weight: 300;
    letter-spacing: .12em;
    text-align: center;
    color: var(--gray-200);
    margin-bottom: .8rem;
    animation: fadeUp 1s .25s ease both;
  }
  .hero-sub {
    font-family: var(--font-cond);
    font-size: clamp(.8rem, 1.5vw, 1rem);
    letter-spacing: .15em;
    text-align: center;
    color: var(--gray-500);
    text-transform: uppercase;
    animation: fadeUp 1s .35s ease both;
  }

  .hero-pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    margin-top: 5rem;
    width: 100%;
    max-width: 900px;
    animation: fadeUp 1s .5s ease both;
  }
  .pillar {
    padding: 2rem 1.5rem;
    border: 1px solid rgba(255,255,255,.1);
    text-align: center;
    transition: border-color .3s, background .3s;
  }
  .pillar:hover { border-color: rgba(255,255,255,.3); background: rgba(255,255,255,.03); }
  .pillar-icon {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 3px;
    height: 28px;
    margin-bottom: 1rem;
  }
  .pillar-icon span {
    display: block;
    width: 4px;
    background: var(--white);
    border-radius: 2px;
  }
  .pillar p {
    font-family: var(--font-cond);
    font-size: .85rem;
    letter-spacing: .1em;
    color: var(--gray-400);
    line-height: 1.5;
  }

  .scroll-hint {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .5rem;
    animation: fadeUp 1s .8s ease both;
  }
  .scroll-hint span {
    font-family: var(--font-cond);
    font-size: .7rem;
    letter-spacing: .25em;
    text-transform: uppercase;
    color: var(--gray-500);
    padding-right: .25em;
  }
  .scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--gray-500), transparent);
    animation: scrollDown 1.8s ease-in-out infinite;
  }
  @keyframes scrollDown {
    0%   { transform: scaleY(0); transform-origin: top; }
    50%  { transform: scaleY(1); transform-origin: top; }
    51%  { transform: scaleY(1); transform-origin: bottom; }
    100% { transform: scaleY(0); transform-origin: bottom; }
  }

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

  /* ── SECTIONS ── */
  section { padding: 7rem 3rem; }
  .container { max-width: 1100px; margin: 0 auto; }

  .section-label {
    font-family: var(--font-cond);
    font-size: .7rem;
    letter-spacing: .35em;
    text-transform: uppercase;
    color: var(--gray-500);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
  }
  .section-label::before {
    content: '';
    display: block;
    width: 30px;
    height: 1px;
    background: var(--gray-500);
  }

  .section-title {
    font-family: var(--font-cond);
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: .01em;
    margin-bottom: 1.5rem;
  }
  .section-title em {
    font-style: italic;
    font-weight: 300;
    color: var(--gray-400);
  }

  /* ── ABOUT ── */
  .about { background: var(--gray-900); }
  .about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
  }
  .about-points { margin-top: 3rem; }
  .about-point {
    padding: 1.8rem 0;
    border-top: 1px solid var(--gray-800);
    display: grid;
    grid-template-columns: 1fr;
    gap: .5rem;
    transition: background .25s;
  }
  .about-point:last-child { border-bottom: 1px solid var(--gray-800); }
  .about-point h4 {
    font-family: var(--font-cond);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
  }
  .about-point p {
    font-size: .9rem;
    color: var(--gray-400);
    line-height: 1.7;
  }
  .about-right {
    padding-top: 4rem;
  }
  .about-quote {
    font-family: var(--font-cond);
    font-size: clamp(1.4rem, 3vw, 2.2rem);
    font-weight: 300;
    line-height: 1.4;
    color: var(--gray-200);
    border-left: 2px solid var(--white);
    padding-left: 2rem;
    margin-bottom: 3rem;
  }
  .about-quote strong { font-weight: 700; color: var(--white); }
  .about-stat-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: var(--gray-800);
    border: 1px solid var(--gray-800);
  }
  .about-stat {
    background: var(--gray-900);
    padding: 2rem;
  }
  .about-stat-n {
    font-family: var(--font-display);
    font-size: 3rem;
    line-height: 1;
    margin-bottom: .3rem;
  }
  .about-stat-l {
    font-family: var(--font-cond);
    font-size: .75rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--gray-500);
  }

  /* ── ABOUT PHOTO ── */
  .about-photo {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    object-position: center;
    filter: grayscale(20%);
    display: block;
    border: 1px solid var(--gray-800);
    margin-bottom: 2rem;
  }

  /* ── METHOD ── */
  .method { background: var(--black); }
  .method-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
    background: var(--gray-800);
    margin-top: 4rem;
  }
  .method-card {
    background: var(--black);
    padding: 3rem 2.5rem;
    position: relative;
    overflow: hidden;
    transition: background .3s;
  }
  .method-card:hover { background: #0a0a0a; }
  .method-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 3px; height: 100%;
    background: var(--white);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform .4s ease;
  }
  .method-card:hover::before { transform: scaleY(1); }
  .method-card h3 {
    font-family: var(--font-cond);
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    margin-bottom: 1rem;
  }
  .method-card p {
    font-size: .9rem;
    color: var(--gray-400);
    line-height: 1.7;
  }
  .method-footer {
    margin-top: 3rem;
    text-align: center;
    font-family: var(--font-cond);
    font-size: 1rem;
    color: var(--gray-400);
    letter-spacing: .05em;
  }
  .method-footer strong { color: var(--white); font-weight: 700; }

  /* ── SERVICES ── */
  .services { background: var(--gray-900); }
  .services-intro {
    font-family: var(--font-cond);
    font-size: 1rem;
    color: var(--gray-400);
    letter-spacing: .05em;
    margin-bottom: 4rem;
    max-width: 500px;
  }
  .services-list { display: flex; flex-direction: column; gap: 2px; }
  .service-item {
    display: grid;
    grid-template-columns: 60px 1fr auto;
    align-items: center;
    gap: 2rem;
    padding: 2rem 2.5rem;
    background: var(--black);
    border: 1px solid transparent;
    transition: border-color .3s, background .3s;
    cursor: default;
  }
  .service-item:hover {
    border-color: rgba(255,255,255,.15);
    background: #0a0a0a;
  }
  .service-n {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--gray-700);
    transition: color .3s;
    line-height: 1;
  }
  .service-item:hover .service-n { color: var(--gray-500); }
  .service-body h3 {
    font-family: var(--font-cond);
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-bottom: .4rem;
  }
  .service-body p {
    font-size: .85rem;
    color: var(--gray-400);
    line-height: 1.6;
  }
  .service-bars {
    display: flex;
    align-items: flex-end;
    gap: 3px;
    opacity: .4;
    transition: opacity .3s;
  }
  .service-item:hover .service-bars { opacity: 1; }
  .service-bars span {
    display: block;
    width: 4px;
    background: var(--white);
    border-radius: 2px;
    animation: barAnim 1.2s ease-in-out infinite alternate;
  }
  @keyframes barAnim {
    0%   { transform: scaleY(.3); }
    100% { transform: scaleY(1); }
  }

  /* ── TARGETS ── */
  .targets { background: var(--black); }
  .targets-intro {
    font-family: var(--font-cond);
    font-size: 1rem;
    color: var(--gray-400);
    letter-spacing: .05em;
    margin-bottom: 4rem;
  }
  .targets-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
    background: var(--gray-800);
  }
  .target-card {
    background: var(--black);
    padding: 4rem 3rem;
  }
  .target-card h3 {
    font-family: var(--font-cond);
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    margin-bottom: 2.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--gray-800);
  }
  .target-items { list-style: none; display: flex; flex-direction: column; gap: 1rem; }
  .target-items li {
    font-family: var(--font-cond);
    font-size: .95rem;
    color: var(--gray-300, #c0c0c0);
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    line-height: 1.5;
  }
  .target-items li::before {
    content: '▸';
    color: var(--gray-500);
    flex-shrink: 0;
    margin-top: .1rem;
  }

  /* ── PROCESS ── */
  .process { background: var(--gray-900); }
  .process-track {
    position: relative;
    margin-top: 5rem;
    padding-top: 3rem;
  }
  .process-line {
    position: absolute;
    top: 3rem;
    left: 0; right: 0;
    height: 1px;
    background: var(--gray-800);
  }
  .process-steps {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
    position: relative;
  }
  .process-step {
    padding: 0 1.5rem;
    position: relative;
  }
  .process-dot {
    width: 12px; height: 12px;
    border-radius: 50%;
    background: var(--gray-700);
    border: 2px solid var(--gray-700);
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
    transition: background .3s, border-color .3s;
  }
  .process-step:hover .process-dot {
    background: var(--white);
    border-color: var(--white);
  }
  .process-step-n {
    font-family: var(--font-display);
    font-size: .8rem;
    color: var(--gray-600, #555);
    letter-spacing: .1em;
    margin-bottom: .6rem;
  }
  .process-step h4 {
    font-family: var(--font-cond);
    font-size: .95rem;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    margin-bottom: .8rem;
    line-height: 1.3;
  }
  .process-step p {
    font-size: .8rem;
    color: var(--gray-400);
    line-height: 1.7;
  }

  /* ── WHY ── */
  .why { background: var(--black); }
  .why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    background: var(--gray-800);
    margin-top: 4rem;
  }
  .why-card {
    background: var(--black);
    padding: 2.5rem;
    transition: background .3s;
  }
  .why-card:hover { background: #080808; }
  .why-card h4 {
    font-family: var(--font-cond);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    margin-bottom: .8rem;
    color: var(--white);
  }
  .why-card p {
    font-size: .85rem;
    color: var(--gray-400);
    line-height: 1.7;
  }
  .why-footer {
    margin-top: 4rem;
    text-align: center;
    padding: 3rem;
    border: 1px solid var(--gray-800);
  }
  .why-footer p {
    font-family: var(--font-cond);
    font-size: clamp(1.1rem, 2.5vw, 1.6rem);
    font-weight: 300;
    color: var(--gray-400);
    letter-spacing: .05em;
  }
  .why-footer strong {
    font-weight: 700;
    color: var(--white);
    font-style: italic;
  }

  /* ── CTA ── */
  .cta {
    background: var(--white);
    padding: 8rem 3rem;
    text-align: center;
  }
  .cta .section-label { color: var(--gray-500); justify-content: center; }
  .cta .section-label::before { background: var(--gray-500); }
  .cta .section-title { color: var(--black); }
  .cta-bullets {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin: 2rem 0 4rem;
  }
  .cta-bullets span {
    font-family: var(--font-cond);
    font-size: .8rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--gray-500);
    display: flex;
    align-items: center;
    gap: .8rem;
  }
  .cta-bullets span::before {
    content: '';
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--gray-500);
  }
  .cta-contacts {
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
  }
  .cta-contact {
    text-align: left;
  }
  .cta-contact-name {
    font-family: var(--font-cond);
    font-size: .7rem;
    letter-spacing: .25em;
    text-transform: uppercase;
    color: var(--gray-500);
    margin-bottom: .3rem;
  }
  .cta-contact a {
    font-family: var(--font-cond);
    font-size: 1.3rem;
    font-weight: 600;
    letter-spacing: .05em;
    color: var(--black);
    text-decoration: none;
    transition: color .25s;
  }
  .cta-contact a:hover { color: var(--gray-500); }

  .cta-divider {
    width: 1px;
    background: #ddd;
    align-self: stretch;
    min-height: 50px;
  }

  /* ── FOOTER ── */
  footer {
    background: var(--black);
    padding: 2.5rem 3rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid var(--gray-800);
  }
  .footer-logo {
    font-family: var(--font-display);
    font-size: 1.2rem;
    letter-spacing: .15em;
    color: var(--gray-600, #555);
  }
  .footer-sub {
    font-family: var(--font-cond);
    font-size: .7rem;
    letter-spacing: .2em;
    color: var(--gray-700);
    text-transform: uppercase;
  }

  /* ── REVEAL ANIMATIONS ── */
  .reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity .8s ease, transform .8s ease;
  }
  .reveal.visible {
    opacity: 1;
    transform: translateY(0);
  }

  /* ── RESPONSIVE ── */
  /* responsive moved to end */

/* ── EXTRA CLASSES (replaces inline styles removed for CSP) ── */
.play-icon { font-size: 1.4rem; }

.pi { display: block; width: 4px; background: var(--white); border-radius: 2px; }
.pi-1 { height: 10px; } .pi-2 { height: 18px; } .pi-3 { height: 24px; }
.pi-4 { height: 14px; } .pi-5 { height: 22px; } .pi-6 { height: 28px; }
.pi-7 { height: 8px;  } .pi-8 { height: 16px; } .pi-9 { height: 26px; }

.sb { display: block; width: 4px; background: var(--white); border-radius: 2px;
      animation: barAnim 1.2s ease-in-out infinite alternate; }
.sa-0 { animation-delay: .0s;  height: 12px; }
.sa-1 { animation-delay: .1s;  height: 22px; }
.sa-2 { animation-delay: .2s;  height: 30px; }
.sa-3 { animation-delay: .3s;  height: 38px; }
.sa-4 { animation-delay: .4s;  height: 14px; }

.why-card--icon { display: flex; align-items: center; justify-content: center; }
.why-icon-wrap  { text-align: center; }
.why-icon-bars  { display: flex; align-items: flex-end; gap: 3px;
                  justify-content: center; margin-bottom: 1rem; height: 40px; }
.wib { display: block; width: 5px; background: var(--gray-700); border-radius: 2px; }
.wib-1 { height: 12px; } .wib-2 { height: 24px; } .wib-3 { height: 36px; }
.wib-4 { height: 28px; } .wib-5 { height: 16px; }
.why-icon-label { font-family: var(--font-cond); font-size: .7rem;
                  letter-spacing: .2em; text-transform: uppercase; color: #555; }

.cta-label  { color: #999 !important; justify-content: center; }
.cta-title  { color: var(--black); text-align: center; }

/* ── CONTACT FORM ── */
.contact-form-section {
  background: var(--gray-900);
  padding: 7rem 3rem;
}

.cf-wrap {
  margin-top: 4rem;
  position: relative;
}

.cf {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.cf-honey { display: none; }

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

.cf-field {
  display: flex;
  flex-direction: column;
  gap: .6rem;
}

.cf-field--full { grid-column: 1 / -1; }

.cf-label {
  font-family: var(--font-cond);
  font-size: .72rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--gray-500);
}

.cf-req { color: var(--white); }

.cf-input,
.cf-select,
.cf-textarea {
  background: var(--black);
  border: 1px solid var(--gray-800);
  color: var(--white);
  font-family: var(--font-cond);
  font-size: 1rem;
  letter-spacing: .04em;
  padding: 1rem 1.2rem;
  outline: none;
  width: 100%;
  transition: border-color .25s;
  border-radius: 0;
  -webkit-appearance: none;
  appearance: none;
}

.cf-input::placeholder,
.cf-textarea::placeholder { color: var(--gray-700); }

.cf-input:focus,
.cf-select:focus,
.cf-textarea:focus { border-color: var(--white); }

.cf-input:valid:not(:placeholder-shown),
.cf-textarea:valid:not(:placeholder-shown) { border-color: var(--gray-500); }

/* Select custom */
.cf-select-wrap {
  position: relative;
}
.cf-select {
  cursor: pointer;
  color: var(--gray-700);
  padding-right: 2.5rem;
}
.cf-select.selected,
.cf-select:not([value=""]) { color: var(--white); }
option { background: var(--black); color: var(--white); }
option[value=""] { color: var(--gray-700); }

.cf-select-arrow {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gray-500);
  pointer-events: none;
  font-size: .7rem;
}

/* Textarea */
.cf-textarea {
  resize: vertical;
  min-height: 140px;
  line-height: 1.6;
}

/* Footer row */
.cf-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding-top: 1rem;
  border-top: 1px solid var(--gray-800);
  flex-wrap: wrap;
}

.cf-privacy {
  font-size: .75rem;
  color: var(--gray-600, #555);
  line-height: 1.6;
  max-width: 500px;
}

.cf-submit {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--white);
  color: var(--black);
  border: none;
  cursor: pointer;
  padding: 1rem 2rem;
  font-family: var(--font-cond);
  font-size: .85rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  transition: background .25s, opacity .25s;
  white-space: nowrap;
  flex-shrink: 0;
}
.cf-submit:hover { background: var(--gray-200); }
.cf-submit:disabled { opacity: .4; cursor: default; }

.cf-submit-icon { font-size: .7rem; }

/* Success message */
.cf-success {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 2.5rem 2rem;
  margin-bottom: 3rem;
  text-align: center;
  border: 1px solid rgba(255,255,255,.15);
  background: rgba(255,255,255,.03);
}
.cf-success.visible { display: flex; }

.cf-success-icon {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 50px;
}
.cf-success-icon .wib {
  animation: wave 1.4s ease-in-out infinite alternate;
}
.cf-success-icon .wib-1 { height: 14px; animation-delay: .0s; }
.cf-success-icon .wib-2 { height: 28px; animation-delay: .1s; }
.cf-success-icon .wib-3 { height: 44px; animation-delay: .2s; }

.cf-success h3 {
  font-family: var(--font-cond);
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: .08em;
}
.cf-success p {
  font-family: var(--font-cond);
  font-size: 1rem;
  color: var(--gray-500);
  letter-spacing: .1em;
}

/* form responsive moved to end */

/* ── NO TEXT SELECTION ── */
* {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Eccezione: campi del form restano selezionabili/digitabili */
input, textarea, select {
  -webkit-user-select: text;
  -moz-user-select: text;
  -ms-user-select: text;
  user-select: text;
}

/* ── IMAGE GALLERY ── */
.gallery {
  background: var(--black);
  padding: 0;
  overflow: hidden;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 340px 340px;
  gap: 2px;
  width: 100%;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  display: block;
}

.gallery-item--tall {
  grid-column: 1;
  grid-row: 1 / span 2;
}

.gallery-item img {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: grayscale(20%) brightness(.88);
  transition: filter .5s ease, transform .6s ease;
  display: block;
}

.gallery-item:hover img {
  filter: grayscale(0%) brightness(1);
  transform: scale(1.05);
}

.gallery-item-label {
  position: absolute;
  bottom: 1.2rem;
  left: 1.2rem;
  z-index: 2;
  font-family: var(--font-cond);
  font-size: .7rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: rgba(255,255,255,.85);
  background: rgba(0,0,0,.55);
  padding: .3rem .8rem;
  pointer-events: none;
  backdrop-filter: blur(4px);
}

/* gallery responsive moved to end */


/* ═══════════════════════════════════════════════════════
   RESPONSIVE — MOBILE FIRST COMPLETE OVERHAUL
   ═══════════════════════════════════════════════════════ */

/* ── HAMBURGER MENU ── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: .4rem;
  background: none;
  border: none;
  z-index: 200;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: transform .3s, opacity .3s, width .3s;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; width: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav drawer */
.nav-mobile-drawer {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,.97);
  z-index: 150;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
}
.nav-mobile-drawer.open { display: flex; }
.nav-mobile-drawer a {
  font-family: var(--font-cond);
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gray-400);
  text-decoration: none;
  transition: color .2s;
}
.nav-mobile-drawer a:hover { color: var(--white); }
.nav-mobile-drawer .nav-mobile-cta {
  color: var(--black) !important;
  background: var(--white);
  padding: .8rem 2.5rem;
  font-size: 1rem;
}

/* ── TABLET (≤900px) ── */
@media (max-width: 900px) {

  nav { padding: 1.1rem 1.5rem; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }

  section { padding: 5rem 1.5rem; }
  .contact-form-section { padding: 5rem 1.5rem; }

  /* Hero */
  .hero { padding: 8rem 1.5rem 5rem; }
  .hero-player-line { width: 60px; }
  .hero-pillars {
    grid-template-columns: 1fr;
    gap: 2px;
    margin-top: 3rem;
  }

  /* About */
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-right { padding-top: 0; }
  .about-photo { max-height: 280px; }

  /* Method */
  .method-grid { grid-template-columns: 1fr; }

  /* Services */
  .service-item { grid-template-columns: 48px 1fr; gap: 1.2rem; padding: 1.5rem 1.2rem; }
  .service-bars { display: none; }

  /* Targets */
  .targets-grid { grid-template-columns: 1fr; }

  /* Process */
  .process-track { margin-top: 3rem; padding-top: 0; }
  .process-line { display: none; }
  .process-steps { grid-template-columns: 1fr 1fr; gap: 2.5rem 1.5rem; }
  .process-dot { margin-bottom: 1rem; }

  /* Why */
  .why-grid { grid-template-columns: 1fr 1fr; }

  /* CTA */
  .cta { padding: 6rem 1.5rem; }
  .cta-bullets { flex-direction: column; align-items: center; gap: 1rem; }
  .cta-contacts { flex-direction: column; align-items: center; text-align: center; gap: 2rem; }
  .cta-divider { display: none; }
  .cta-contact { text-align: center; }

  /* Gallery */
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 220px 220px 220px;
  }
  .gallery-item--tall {
    grid-column: 1;
    grid-row: 1 / span 2;
  }

  /* Form */
  .cf-row { grid-template-columns: 1fr 1fr; gap: 1rem; }
}

/* ── MOBILE (≤600px) ── */
@media (max-width: 600px) {

  nav { padding: 1rem 1.2rem; }
  .nav-logo-img { height: 18px; }

  section { padding: 4rem 1.2rem; }
  .contact-form-section { padding: 4rem 1.2rem; }

  /* Hero */
  .hero { padding: 7rem 1.2rem 5rem; background-position: center center; }
  .hero-logo-wrap { margin-top: 0; }
  .hero-player { gap: 1rem; }
  .hero-player-line { width: 40px; }
  .player-icons { gap: .6rem; font-size: .9rem; }
  .hero-pillars { margin-top: 2.5rem; }
  .pillar { padding: 1.2rem 1rem; }

  /* Section labels & titles */
  .section-label { font-size: .65rem; }

  /* About */
  .about-stat-grid { grid-template-columns: 1fr 1fr; }
  .about-stat-n { font-size: 2.2rem; }

  /* Process */
  .process-steps { grid-template-columns: 1fr; gap: 2rem; }
  .process-step { padding: 0; }

  /* Why */
  .why-grid { grid-template-columns: 1fr; }
  .why-card--icon { display: none; }
  .why-footer { padding: 2rem 1.2rem; }

  /* Gallery — single column */
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(5, 220px);
  }
  .gallery-item--tall {
    grid-column: 1;
    grid-row: auto;
  }

  /* Form */
  .cf-row { grid-template-columns: 1fr; gap: 1.2rem; }
  .cf-footer { flex-direction: column; align-items: stretch; gap: 1.5rem; }
  .cf-submit { justify-content: center; }
  .cf-input, .cf-select, .cf-textarea { font-size: .95rem; padding: .85rem 1rem; }
}

/* ── VERY SMALL (≤380px) ── */
@media (max-width: 380px) {
  .hero-player { display: none; }
  .about-stat-grid { grid-template-columns: 1fr; }
  .about-stat { padding: 1.2rem; }
  .service-item { grid-template-columns: 36px 1fr; padding: 1.2rem 1rem; }
  .service-n { font-size: 1.4rem; }
}
