@font-face {
  font-family: 'Instrument Sans';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/instrument-sans-latin.woff2') format('woff2');
}

@font-face {
  font-family: 'Instrument Sans';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('../fonts/instrument-sans-latin.woff2') format('woff2');
}

@font-face {
  font-family: 'Instrument Sans';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../fonts/instrument-sans-latin.woff2') format('woff2');
}

@font-face {
  font-family: 'DM Mono';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url('../fonts/dm-mono-300-latin.woff2') format('woff2');
}

@font-face {
  font-family: 'DM Mono';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/dm-mono-400-latin.woff2') format('woff2');
}

@font-face {
  font-family: 'DM Mono';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('../fonts/dm-mono-500-latin.woff2') format('woff2');
}

@font-face {
  font-family: 'DM Serif Display';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/dm-serif-display-400-latin.woff2') format('woff2');
}

@font-face {
  font-family: 'DM Serif Display';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/dm-serif-display-400-italic-latin.woff2') format('woff2');
}

:root {
      --white: #fafaf8;
      --black: #0e0e0d;
      --ink: #1a1a18;
      --muted: #6b6b66;
      --border: #ddddd8;
      --accent: #c8372d;
      --accent-light: #f5ebe9;
      --pixel: #3a3a36;
    }

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

    html {
      scroll-behavior: smooth;
    }

body {
  font-family: 'Instrument Sans', sans-serif;
  background: var(--white);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

    /* Hide scrollbar for Chrome, Safari and Opera */
    *::-webkit-scrollbar {
      display: none;
    }

    /* Hide scrollbar for IE, Edge and Firefox */
    * {
      -ms-overflow-style: none;
      /* IE and Edge */
      scrollbar-width: none;
      /* Firefox */
    }



    /* NAV */
    nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 100;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 48px;
      height: 64px;
      background: rgba(250, 250, 248, 0.92);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid var(--border);
    }

    /* HAMBURGER */
    .nav-hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      background: none;
      border: none;
      padding: 4px;
      z-index: 110;
    }

    .nav-hamburger span {
      display: block;
      width: 22px;
      height: 2px;
      background: var(--ink);
      transition: all 0.25s ease;
      transform-origin: center;
    }

    .nav-hamburger.open span:nth-child(1) {
      transform: translateY(7px) rotate(45deg);
    }

    .nav-hamburger.open span:nth-child(2) {
      opacity: 0;
      transform: scaleX(0);
    }

    .nav-hamburger.open span:nth-child(3) {
      transform: translateY(-7px) rotate(-45deg);
    }

    /* MOBILE NAV DRAWER */
    .nav-drawer {
      display: none;
      position: fixed;
      top: 64px;
      left: 0;
      right: 0;
      background: rgba(250, 250, 248, 0.97);
      backdrop-filter: blur(16px);
      border-bottom: 1px solid var(--border);
      z-index: 99;
      flex-direction: column;
      padding: 24px 24px 32px;
      gap: 0;
    }

    .nav-drawer.open {
      display: flex;
    }

    .nav-drawer li {
      list-style: none;
      border-bottom: 1px solid var(--border);
    }

    .nav-drawer li:last-child {
      border-bottom: none;
    }

    .nav-drawer a {
      font-family: 'DM Mono', monospace;
      font-size: 13px;
      letter-spacing: 0.08em;
      color: var(--muted);
      text-decoration: none;
      text-transform: uppercase;
      display: block;
      padding: 16px 0;
      transition: color 0.2s;
    }

.nav-drawer a:hover {
  color: var(--ink);
}

.nav-accent-link {
  color: var(--accent) !important;
}

    .logo {
      font-family: 'DM Mono', monospace;
      font-weight: 500;
      font-size: 15px;
      letter-spacing: 0.08em;
      color: var(--ink);
      text-decoration: none;
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .logo-mark {
      width: 24px;
      height: 24px;
      background: var(--accent);
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      grid-template-rows: repeat(4, 1fr);
      gap: 2px;
      padding: 3px;
    }

    .logo-mark span {
      background: var(--white);
      display: block;
    }

    .logo-mark span:nth-child(2),
    .logo-mark span:nth-child(5),
    .logo-mark span:nth-child(8),
    .logo-mark span:nth-child(11),
    .logo-mark span:nth-child(3),
    .logo-mark span:nth-child(14) {
      background: transparent;
    }

    nav ul {
      display: flex;
      gap: 36px;
      list-style: none;
    }

    nav a {
      font-family: 'DM Mono', monospace;
      font-size: 12px;
      letter-spacing: 0.06em;
      color: var(--muted);
      text-decoration: none;
      text-transform: uppercase;
      transition: color 0.2s;
    }

nav a:hover {
  color: var(--ink);
}

nav a.is-active {
  color: var(--ink);
}

    .nav-cta {
      font-family: 'DM Mono', monospace;
      font-size: 12px;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      padding: 8px 20px;
      background: var(--ink);
      color: var(--white) !important;
      border: none;
      cursor: pointer;
      text-decoration: none;
      transition: background 0.2s;
    }

    .nav-cta:hover {
      background: var(--accent) !important;
      color: var(--white) !important;
    }

    /* HERO */
    .hero {
      --hero-art-scale: 1;
      --hero-pigeon-top: 110px;
      position: relative;
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      padding-top: 64px;
      overflow: hidden;
      background: var(--white);
    }

    .hero-top {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      padding: 100px 80px 0;
      /* Reduced from 144px */
      position: relative;
      z-index: 2;
      max-width: 800px;
      width: 100%;
    }

    .hero-bottom {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      padding: 0 80px 56px;
      position: relative;
      z-index: 2;
      max-width: 720px;
      width: 100%;
    }

    .hero-eyebrow {
      font-family: 'DM Mono', monospace;
      font-size: 11px;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--accent);
      margin-bottom: 24px;
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .hero-eyebrow::before,
    .hero-eyebrow::after {
      content: '';
      display: block;
      width: 32px;
      height: 1px;
      background: var(--accent);
    }

    h1 {
      font-family: 'DM Serif Display', serif;
      font-size: clamp(48px, 5.5vw, 76px);
      line-height: 1.08;
      letter-spacing: -0.02em;
      color: var(--ink);
      margin-bottom: 12px;
    }

    h1 em {
      font-style: italic;
      color: var(--accent);
    }

    .hero-sub {
      font-size: 17px;
      color: var(--muted);
      max-width: 580px;
      /* Widened for better line measure */
      line-height: 1.7;
      margin-bottom: 48px;
      /* Increased to separate CTAs */
      margin-top: 0;
    }

    .hero-actions {
      display: flex;
      gap: 16px;
      align-items: center;
      justify-content: center;
    }

    .btn-primary {
      font-family: 'DM Mono', monospace;
      font-size: 12px;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      padding: 14px 32px;
      background: var(--ink);
      color: var(--white);
      border: 2px solid var(--ink);
      cursor: pointer;
      text-decoration: none;
      transition: all 0.2s;
      display: inline-block;
    }

    .btn-primary:hover {
      background: var(--accent);
      border-color: var(--accent);
    }

    .btn-ghost {
      font-family: 'DM Mono', monospace;
      font-size: 12px;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      padding: 14px 32px;
      background: transparent;
      color: var(--ink);
      border: 2px solid var(--border);
      cursor: pointer;
      text-decoration: none;
      transition: all 0.2s;
      display: inline-block;
    }

    .btn-ghost:hover {
      border-color: var(--ink);
    }

    /* Ghost "AI" watermark — bottom right, pulled slightly in from edge */
    /*
    .hero-bg-text {
      position: absolute;
      bottom: 0;
      right: 40px;
      font-size: clamp(90px, 12vw, 160px);
      font-family: 'DM Serif Display', serif;
      color: transparent;
      -webkit-text-stroke: 1.5px var(--border);
      line-height: 1;
      user-select: none;
      pointer-events: none;
      z-index: 0;
      white-space: nowrap;
    }

    .hero-bg-text::after {
      content: attr(data-text);
      position: absolute;
      top: 0;
      left: 0;
      color: transparent;
      -webkit-text-stroke: 1.5px var(--accent);
      -webkit-mask-image: linear-gradient(180deg, transparent 0%, transparent 45%, black 50%, transparent 55%, transparent 100%);
      -webkit-mask-size: 100% 300%;
      mask-image: linear-gradient(180deg, transparent 0%, transparent 45%, black 50%, transparent 55%, transparent 100%);
      mask-size: 100% 300%;
      animation: textHueDrop 4s linear infinite;
    }
    */

    /* Split hands flanking the hero heading */
    .hero-hands {
      width: 100%;
      position: absolute;
      top: 64px;
      left: 0;
      right: 0;
      bottom: 0;
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      pointer-events: none;
      z-index: 1;
      overflow: hidden;
    }

    /* Hands: smaller (28%) and pushed down so fingertips align with the h1 */
    .hero-hand {
      width: 30%;
      /* Slightly increased for impact */
      max-width: 380px;
      height: auto;
      object-fit: contain;
      animation: floatUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) both;
      margin-top: 80px;
      /* Increased to align with heading */
    }

    .hero-hand-left {
      object-position: left top;
      animation-delay: 0.05s;
    }

    .hero-hand-right {
      object-position: right top;
      animation-delay: 0.12s;
    }

    @keyframes floatUp {
      from {
        opacity: 0;
        transform: translateY(30px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @keyframes pigeonFloatUp {
      from {
        opacity: 0;
        transform: translateX(-50%) translateY(30px) scale(var(--hero-art-scale));
      }

      to {
        opacity: 1;
        transform: translateX(-50%) translateY(0) scale(var(--hero-art-scale));
      }
    }

    .hero-pigeon {
      position: absolute;
      top: var(--hero-pigeon-top);
      /* Lowered to bridge gap */
      left: 50%;
      transform: translateX(-50%) scale(var(--hero-art-scale));
      transform-origin: top center;
      height: 140px;
      width: auto;
      object-fit: contain;
      z-index: 2;
      pointer-events: none;
      animation: pigeonFloatUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.08s both;
    }    /* SCROLL INDICATOR */
    .scroll-indicator {
      position: absolute;
      bottom: 40px;
      left: 50%;
      transform: translateX(-50%);
      display: grid;
      place-items: center;
      width: 88px;
      height: 72px;
      z-index: 10;
      padding: 0;
      border: 0;
      background: transparent;
      cursor: pointer;
      animation: fadeIn 1s ease 1s both;
    }

    .scroll-indicator:focus-visible {
      outline: 2px solid var(--accent);
      outline-offset: 8px;
    }

.scroll-chevron {
      --chevron-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 40 16'%3E%3Cpolyline points='2 2 20 14 38 2' fill='none' stroke='black' stroke-width='2.1' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
      position: relative;
      width: 40px;
      height: 16px;
      overflow: hidden;
      -webkit-mask-image: var(--chevron-mask);
      mask-image: var(--chevron-mask);
      -webkit-mask-repeat: no-repeat;
      mask-repeat: no-repeat;
      -webkit-mask-position: center;
      mask-position: center;
      -webkit-mask-size: contain;
      mask-size: contain;
      background: rgba(0, 0, 0, 0.12);
    }

    .scroll-chevron-glow {
      position: absolute;
      left: -18%;
      width: 136%;
      top: -140%;
      height: 280%;
      background: linear-gradient(180deg,
          transparent 18%,
          rgba(200, 55, 45, 0) 38%,
          rgba(200, 55, 45, 0.95) 50%,
          rgba(200, 55, 45, 0) 62%,
          transparent 82%);
      transform: translateY(-70%);
      opacity: 0;
      will-change: transform, opacity;
      animation: chevronHueDrop 2.5s cubic-bezier(0.4, 0, 0.2, 1) infinite;
    }

    @keyframes chevronHueDrop {
      0% {
        transform: translateY(-70%);
        opacity: 0;
      }

      24% {
        opacity: 0;
      }

      36% {
        opacity: 0.95;
      }

      62% {
        transform: translateY(18%);
        opacity: 0.95;
      }

      100% {
        transform: translateY(95%);
        opacity: 0;
      }
    }

    /* STATS BAR */
    .stats-bar {
      position: relative;
      z-index: 1;
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      background: var(--white);
    }

    .stat-item {
      padding: 32px 48px;
      border-right: 1px solid var(--border);
      animation: fadeIn 0.6s ease both;
    }

    .stat-item:last-child {
      border-right: none;
    }

    .stat-num {
      font-family: 'DM Serif Display', serif;
      font-size: 40px;
      color: var(--ink);
      line-height: 1;
      margin-bottom: 6px;
    }

    .stat-num span {
      color: var(--accent);
    }

    .stat-label {
      font-family: 'DM Mono', monospace;
      font-size: 11px;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--muted);
    }

    /* SECTION COMMON */
    section {
      position: relative;
      z-index: 1;
    }

    .section-label {
      font-family: 'DM Mono', monospace;
      font-size: 11px;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--accent);
      margin-bottom: 20px;
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .section-label::before {
      content: '';
      display: block;
      width: 24px;
      height: 1px;
      background: var(--accent);
    }

    h2 {
      font-family: 'DM Serif Display', serif;
      font-size: clamp(36px, 4vw, 52px);
      line-height: 1.1;
      letter-spacing: -0.02em;
      margin-bottom: 20px;
    }

    h2 em {
      font-style: italic;
      color: var(--accent);
    }

    /* ABOUT / MISSION */
    .mission {
      border-top: 1px solid var(--border);
      display: grid;
      grid-template-columns: 1fr 1fr;
      min-height: 500px;
    }

    .mission-text {
      padding: 80px 80px;
      border-right: 1px solid var(--border);
    }

    .mission-text p {
      color: var(--muted);
      font-size: 16px;
      line-height: 1.8;
      max-width: 460px;
    }

    .mission-text p+p {
      margin-top: 20px;
    }

    .mission-visual {
      display: flex;
      align-items: flex-end;
      justify-content: center;
      padding: 0;
      background: var(--accent-light);
      position: relative;
      overflow: hidden;
      min-height: 500px;
    }

    /* PROCESS IMAGE — absolutely positioned bottom-left of the label column */
    .process-image-wrap {
      display: none;
    }

    .process-img-inline {
      position: absolute;
      bottom: 0;
      left: -20px;
      width: 260px;
      height: auto;
      object-fit: contain;
      object-position: left bottom;
      display: block;
      animation: fadeIn 0.9s ease both;
      animation-delay: 0.4s;
      pointer-events: none;
      z-index: 0;
    }

    /* EU SECTION */
    .eu-section {
      padding: 72px 80px;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
      max-width: 1200px;
      margin: 0 auto;
      width: 100%;
    }

    .eu-img-wrap {
      display: flex;
      align-items: flex-end;
      justify-content: flex-start;
      align-self: end;
      padding-top: 0;
      padding-right: 0;
    }

    .eu-img-wrap picture {
      display: block;
      width: 100%;
      max-width: 517px;
      max-height: 540px;
      transform: translateX(18px);
    }

    .eu-cert-img {
      width: 100%;
      max-width: none;
      height: auto;
      max-height: 540px;
      object-fit: contain;
      display: block;
      animation: fadeIn 0.9s ease both;
      transform: none;
    }

    .contact-band {
      position: relative;
      overflow: hidden;
      background: var(--ink);
    }

    .contact-band::before {
      content: "";
      position: absolute;
      inset: 0;
      background: none;
      pointer-events: none;
      z-index: 0;
    }

    /* CONTACT BG image */
    .contact-bg-img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center top;
      opacity: 0.34;
      pointer-events: none;
      z-index: 0;
    }

.mission-img {
  width: 100%;
  max-width: none;
      height: auto;
      min-height: 80%;
      object-fit: cover;
      object-position: bottom center;
      display: block;
      animation: fadeIn 0.8s ease both;
      position: absolute;
      bottom: 0;
      left: 0;
  right: 0;
}

.service-card-link {
  text-decoration: none;
  color: inherit;
}

    @keyframes fadeIn {
      from {
        opacity: 0;
      }

      to {
        opacity: 1;
      }
    }

    /* SERVICES */
    .services {
      padding: 72px 80px;
      border-top: 1px solid var(--border);
    }

    .services-header {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 48px;
      margin-bottom: 64px;
    }

    .services-intro {
      color: var(--muted);
      font-size: 16px;
      line-height: 1.8;
      padding-top: 24px;
    }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 0;
      border: 1px solid var(--border);
    }

    .service-card {
      padding: 44px 40px 36px;
      border-right: 1px solid var(--border);
      transition: background 0.25s, box-shadow 0.25s;
      position: relative;
      overflow: hidden;
      display: flex;
      flex-direction: column;
    }

    /* Accent bar sweeps in on hover */
    .service-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 3px;
      background: var(--accent);
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.3s ease;
    }

    .service-card:hover::before {
      transform: scaleX(1);
    }

    .service-card:last-child {
      border-right: none;
    }

    .service-card:hover {
      background: var(--accent-light);
      box-shadow: inset 0 0 0 1px rgba(200, 55, 45, 0.12);
    }

    .service-card-icon {
      width: 160px;
      height: 160px;
      margin: 0 auto 28px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .service-card-icon svg,
    .service-card-icon img {
      width: 100%;
      height: 100%;
      object-fit: contain;
    }

    .service-num {
      font-family: 'DM Mono', monospace;
      font-size: 11px;
      letter-spacing: 0.1em;
      color: var(--accent);
      margin-bottom: 18px;
      opacity: 0.8;
    }

    .service-card h3 {
      font-family: 'DM Serif Display', serif;
      font-size: 23px;
      margin-bottom: 14px;
      color: var(--ink);
    }

    .service-card p {
      font-size: 15px;
      color: var(--muted);
      line-height: 1.75;
      flex: 1;
    }

    .service-footer {
      margin-top: 28px;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 12px;
    }

    .service-tag {
      font-family: 'DM Mono', monospace;
      font-size: 10px;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      padding: 5px 10px;
      border: 1px solid var(--border);
      color: var(--muted);
    }

    .service-link {
      font-family: 'DM Mono', monospace;
      font-size: 11px;
      letter-spacing: 0.06em;
      color: var(--accent);
      text-decoration: none;
      display: flex;
      align-items: center;
      gap: 6px;
      white-space: nowrap;
      transition: gap 0.2s;
    }

    .service-link:hover {
      gap: 10px;
    }

    /* HOW IT WORKS */
    .process {
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
      display: grid;
      grid-template-columns: calc((100% + 80px) / 3) 1fr;
    }

    .process-label-col {
      padding: 72px 80px;
      border-right: 1px solid var(--border);
      display: flex;
      flex-direction: column;
      justify-content: center;
      position: relative;
      overflow: hidden;
    }

    .process-steps {
      padding: 80px;
    }

    .step {
      display: grid;
      grid-template-columns: 96px 1fr;
      gap: 32px;
      padding: 36px 0;
      border-bottom: 1px solid var(--border);
      align-items: center;
    }

    .step:last-child {
      border-bottom: none;
    }

    .step-num {
      font-family: 'DM Mono', monospace;
      font-size: 13px;
      color: var(--accent);
      padding-top: 3px;
    }

    .step-icon {
      width: 96px;
      height: 96px;
      display: flex;
      align-items: flex-start;
      flex-shrink: 0;
    }

    .step-icon img {
      width: 100%;
      height: auto;
      object-fit: contain;
    }

.step h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 20px;
  margin-bottom: 8px;
}

    .step p {
      font-size: 14px;
      color: var(--muted);
      line-height: 1.7;
    }

    /* EU / GDPR SECTION — overridden above in .mission-visual block */

    .eu-badges {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 32px;
    }

    .badge {
      font-family: 'DM Mono', monospace;
      font-size: 10px;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      padding: 6px 14px;
      border: 1px solid var(--border);
      color: var(--muted);
      background: var(--white);
    }

    .badge.active {
      border-color: var(--accent);
      color: var(--accent);
      background: var(--accent-light);
    }

    /* CONTACT */
    .contact {
      border-top: 1px solid var(--border);
      background: transparent;
      color: var(--white);
      padding: 72px 80px;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
      position: relative;
      overflow: hidden;
    }



    .contact .section-label {
      color: #c8372d;
    }

    .contact .section-label::before {
      background: #c8372d;
    }

    .contact h2 {
      color: var(--white);
    }

    .contact p {
      color: rgba(255, 255, 255, 0.72);
      font-size: 16px;
      line-height: 1.8;
      margin-top: 16px;
    }

    .contact-form {
      position: relative;
      z-index: 1;
      display: flex;
      flex-direction: column;
      gap: 16px;
    }

    .contact-form input,
    .contact-form textarea {
      background: rgba(29, 38, 45, 0.32);
      border: 1px solid rgba(255, 255, 255, 0.16);
      color: var(--white);
      padding: 14px 18px;
      font-family: 'Instrument Sans', sans-serif;
      font-size: 15px;
      outline: none;
      transition: border-color 0.2s;
      width: 100%;
    }

    .contact-form input::placeholder,
    .contact-form textarea::placeholder {
      color: rgba(255, 255, 255, 0.5);
    }

    .contact-form input:focus,
    .contact-form textarea:focus {
      border-color: rgba(255, 255, 255, 0.42);
    }

    .contact-form textarea {
      height: 120px;
      resize: none;
    }

    .btn-submit {
      font-family: 'DM Mono', monospace;
      font-size: 12px;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      padding: 14px 32px;
      background: var(--accent);
      color: var(--white);
      border: none;
      cursor: pointer;
      transition: all 0.2s;
      align-self: flex-start;
    }

    .btn-submit:hover {
      background: #a82b22;
    }

    /* FOOTER */
    footer {
      background: transparent;
      border-top: none;
      padding: 32px 80px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      position: relative;
      z-index: 1;
    }

footer .logo {
  color: rgba(255, 255, 255, 0.96);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.45);
}

.footer-copy {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.88);
  letter-spacing: 0.06em;
  line-height: 1.7;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.45);
}

    .footer-links {
      display: flex;
      gap: 28px;
      list-style: none;
    }

.footer-links a {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.92);
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.2s;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.45);
}

.footer-links a:hover {
  color: rgba(255, 255, 255, 1);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-kicker {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.86);
  margin-top: 16px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.45);
}

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

.section-copy {
  color: var(--muted);
  line-height: 1.8;
}

.process-intro {
  font-size: 15px;
  margin-top: 20px;
}

.eu-copy {
  font-size: 16px;
  margin-top: 0;
  margin-bottom: 0;
}

.contact-layer {
  position: relative;
  z-index: 1;
}

.page-hero {
  min-height: 60vh;
  padding-top: 120px;
}

.page-hero .hero-top,
.page-hero .hero-bottom {
  align-items: center;
  text-align: center;
}

.page-hero .hero-bottom {
  padding-top: 20px;
}

.page-hero .hero-sub {
  font-size: 18px;
  max-width: 800px;
}

.page-hero .hero-actions {
  margin-top: 30px;
}

.page-hero h1 {
  font-size: clamp(42px, 5vw, 60px);
  margin-bottom: 0;
}

    /* SCROLL ANIMATIONS */
    .reveal {
      opacity: 0;
      transform: translateY(24px);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }

    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }

    /* HERO ANIMATION */
    .hero-top>*,
    .hero-bottom>* {
      opacity: 0;
      transform: translateY(20px);
      animation: slideUp 0.7s cubic-bezier(0.16, 1, 0.3, 1) both;
    }

    .hero-eyebrow {
      animation-delay: 0.1s;
    }

    h1 {
      animation-delay: 0.2s;
    }

    .hero-sub {
      animation-delay: 0.3s;
    }

    .hero-actions {
      animation-delay: 0.45s;
    }

    @keyframes textHueDrop {
      0% {
        -webkit-mask-position: 0 100%;
        mask-position: 0 100%;
      }

      100% {
        -webkit-mask-position: 0 0%;
        mask-position: 0 0%;
      }
    }

    @keyframes slideUp {
      from {
        opacity: 0;
        transform: translateY(20px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    /* =============================================
     RESPONSIVE — TABLET  ≤ 900px
     ============================================= */
    @media (max-width: 1350px) and (min-width: 901px) {
      .hero-top {
        padding: 88px 56px 0;
        max-width: 700px;
      }

      .hero-bottom {
        padding: 0 56px 56px;
        max-width: 620px;
      }

      h1 {
        font-size: clamp(52px, 5vw, 68px);
      }

      .hero-sub {
        max-width: 540px;
      }

      .hero-hands {
        top: 76px;
      }

      .hero-hand {
        width: 24%;
        max-width: 300px;
        margin-top: 76px;
        opacity: 0.48;
      }

      .hero-hand-left {
        margin-left: -24px;
      }

      .hero-hand-right {
        margin-right: -24px;
      }

      .hero {
        --hero-art-scale: 0.857;
        --hero-pigeon-top: 104px;
      }
    }

    @media (max-width: 900px) {

      /* NAV */
      nav {
        padding: 0 24px;
      }

      nav ul {
        display: none;
      }

      .nav-hamburger {
        display: flex;
      }

      /* Hide desktop CTA in nav on mobile, show it in drawer */
      .nav-cta.desktop-only {
        display: none;
      }

      /* HERO */
      .hero {
        min-height: 100svh;
      }

      .hero-top {
        padding: 56px 24px 0;
        max-width: 100%;
      }

      .hero-bottom {
        padding: 0 24px 48px;
        max-width: 100%;
      }

      /* Hero hands — scale down and pull to edges so they don't obscure text */
      .hero-hand {
        width: 22%;
        margin-top: 70px;
        opacity: 0.55;
      }

      /* Pigeon — scale for tablet */
      .hero {
        --hero-art-scale: 0.786;
        --hero-pigeon-top: 90px;
      }

      /* STATS */
      .stats-bar {
        grid-template-columns: 1fr 1fr;
      }

      .stat-item {
        border-right: 1px solid var(--border);
        border-bottom: 1px solid var(--border);
        padding: 24px 32px;
      }

      .stat-item:nth-child(2n) {
        border-right: none;
      }

      .stat-item:last-child {
        grid-column: span 2;
        border-right: none;
      }

      /* MISSION */
      .mission {
        grid-template-columns: 1fr;
      }

      .mission-text {
        padding: 60px 32px;
        border-right: none;
        border-bottom: 1px solid var(--border);
      }

      .mission-visual {
        min-height: 360px;
        padding: 0;
      }

      .mission-img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: top center;
      }

      /* SERVICES */
      .services {
        padding: 60px 32px;
      }

      .services-header {
        grid-template-columns: 1fr;
        gap: 16px;
      }

      .services-intro {
        padding-top: 8px;
      }

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

      .service-card {
        border-right: none;
        border-bottom: 1px solid var(--border);
      }

      .service-card:last-child {
        border-bottom: none;
      }

      /* PROCESS */
      .process {
        grid-template-columns: 1fr;
      }

      .process-label-col {
        padding: 60px 32px 40px;
        border-right: none;
        border-bottom: 1px solid var(--border);
      }

      .process-steps {
        padding: 40px 32px 60px;
      }

      .process-img-inline {
        display: none;
      }

      /* EU SECTION */
      .eu-section {
        grid-template-columns: 1fr;
        padding: 60px 32px;
        gap: 40px;
      }

      .eu-img-wrap {
        order: 0;
        justify-content: center;
        align-self: auto;
        padding-top: 0;
      }

      .eu-img-wrap picture {
        max-width: 352px;
        max-height: 352px;
        transform: none;
      }

      .eu-cert-img {
        max-height: 352px;
        transform: none;
      }

      /* CONTACT */
      .contact {
        grid-template-columns: 1fr;
        padding: 60px 32px;
        gap: 40px;
      }

      /* FOOTER */
      footer {
        flex-direction: column;
        gap: 20px;
        text-align: center;
        padding: 32px 24px;
      }

      .footer-links {
        flex-wrap: wrap;
        justify-content: center;
      }
    }

    /* =============================================
     RESPONSIVE — MOBILE  ≤ 600px
     ============================================= */
    @media (max-width: 600px) {

      /* NAV */
      nav {
        padding: 0 16px;
      }

      /* HERO — stack layout, restore hands up top */
      .hero {
        min-height: auto;
        padding-bottom: 48px;
      }

      .hero-top {
        padding: 176px 20px 0;
        z-index: 2;
      }

      .hero-bottom {
        padding: 0 20px 24px;
        z-index: 2;
      }

      .hero-eyebrow {
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px;
        margin-bottom: 16px;
      }

      .hero-eyebrow::before,
      .hero-eyebrow::after {
        width: 20px;
      }

      /* Hero Hands – smaller and faded so pigeon is the star */
      .hero-hands {
        top: 64px;
        bottom: auto;
        height: 176px;
        align-items: flex-start;
      }

      .hero-hand {
        width: 40%;
        max-width: 160px;
        margin-top: 18px;
        opacity: 0.3;
        z-index: 0;
      }

      .hero-hand-left {
        margin-left: -28px;
      }

      .hero-hand-right {
        margin-right: 0;
      }

      /* Pigeon — scale down for phones */
      .hero {
        --hero-art-scale: 0.586;
        --hero-pigeon-top: 72px;
      }

      /* Hide scroll indicator on small screens */
      .scroll-indicator {
        display: none;
      }

      /* Buttons — stack vertically on very small screens */
      .hero-actions {
        flex-direction: column;
        width: 100%;
      }

      .hero-actions .btn-primary,
      .hero-actions .btn-ghost {
        width: 100%;
        text-align: center;
      }

      /* h1 */
      h1 {
        font-size: clamp(34px, 10vw, 48px);
        line-height: 1.03;
      }

      h2 {
        font-size: clamp(28px, 7vw, 40px);
      }

      .hero-sub {
        font-size: 16px;
        line-height: 1.6;
        margin-bottom: 32px;
      }

      /* STATS */
      .stats-bar {
        grid-template-columns: 1fr;
      }

      .stat-item {
        border-right: none;
        border-bottom: 1px solid var(--border);
        padding: 24px 20px;
      }

      .stat-item:last-child {
        border-bottom: none;
      }

      /* MISSION */
      .mission-text {
        padding: 48px 20px;
      }

      .mission-visual {
        min-height: 280px;
      }

      /* SERVICES */
      .services {
        padding: 48px 20px;
      }

      .services-header {
        margin-bottom: 32px;
      }

      /* PROCESS */
      .process-label-col {
        padding: 48px 20px 32px;
      }

      .process-steps {
        padding: 32px 20px 48px;
      }

      .step {
        grid-template-columns: 72px 1fr;
        gap: 20px;
        padding: 24px 0;
      }

      .step-icon {
        width: 72px;
        height: 72px;
      }

      /* EU SECTION */
      .eu-section {
        padding: 48px 20px;
      }

      .eu-img-wrap picture {
        max-width: 100%;
        max-height: 308px;
        transform: none;
      }

      .eu-cert-img {
        max-height: 308px;
      }

      /* CONTACT */
      .contact {
        padding: 48px 20px;
      }

      .btn-submit {
        width: 100%;
        text-align: center;
      }

      /* FOOTER */
      footer {
        padding: 28px 20px;
      }
    }
