
:root {
  --black: #080808;
  --black-soft: #111111;
  --white: #f7f7f5;
  --paper: #efefec;
  --gray: #a3a3a0;
  --line: rgba(255,255,255,.16);
  --dark-line: rgba(0,0,0,.14);
  --accent: #90a70b;
  --header-height: 82px;
  --radius: 4px;
  --shell: min(1220px, calc(100% - 64px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--white);
  color: #111;
  font-family: "Manrope", Arial, sans-serif;
  font-weight: 400;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img, video { display: block; max-width: 100%; }
button, input, textarea { font: inherit; }
button { color: inherit; }
.svg-filters { position: absolute; width: 0; height: 0; overflow: hidden; pointer-events: none; }

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
}

.skip-link {
  position: fixed; top: 8px; left: 8px; z-index: 200;
  background: #fff; color: #000; padding: 10px 14px;
  transform: translateY(-150%);
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 42px;
  color: #fff;
  transition: background .35s ease, color .35s ease, border-color .35s ease, height .35s ease;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  height: 68px;
  color: #111;
  background: rgba(247,247,245,.92);
  border-color: rgba(0,0,0,.08);
  backdrop-filter: blur(18px);
}
.brand {
  width: 205px;
  position: relative;
  z-index: 2;
}
.brand img {
  width: 100%;
  height: auto;
  filter: url(#logo-on-dark);
}
.site-header.scrolled .brand img { filter: none; }

.main-nav { display: flex; align-items: center; gap: 28px; font-size: 13px; }
.main-nav a { position: relative; opacity: .78; transition: opacity .2s ease; }
.main-nav a:hover, .main-nav a.active { opacity: 1; }
.nav-logo-link {
  display: inline-flex;
  align-items: center;
  width: 76px;
}
.nav-logo-link img { width: 100%; height: auto; filter: url(#logo-on-dark); }
.site-header.scrolled .nav-logo-link img { filter: none; }
.main-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -9px;
  left: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .25s ease;
}
.main-nav a:hover::after, .main-nav a.active::after {
  transform: scaleX(1);
  transform-origin: left;
}
.language-switch {
  border: 0; background: transparent; color: inherit; cursor: pointer;
  font-size: 12px; padding: 8px 0 8px 10px; border-left: 1px solid currentColor;
}
.menu-toggle { display: none; }

.hero {
  min-height: 100svh;
  position: relative;
  color: #fff;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-media {
  position: absolute; inset: 0;
  background-color: #161616;
  background-image: url("assets/media-web/hero-airbus.webp");
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
}
.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(0,0,0,.88) 0%, rgba(0,0,0,.58) 34%, rgba(0,0,0,.12) 70%),
    linear-gradient(0deg, rgba(0,0,0,.54), transparent 45%);
}
.hero-content {
  position: relative;
  z-index: 1;
  width: var(--shell);
  margin: auto;
  padding-top: var(--header-height);
}
.eyebrow {
  margin: 0 0 24px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
}
.hero h1 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(54px, 7.3vw, 110px);
  font-weight: 300;
  letter-spacing: -.055em;
  line-height: .96;
}
.hero-copy {
  max-width: 470px;
  margin: 32px 0 0;
  font-size: clamp(16px, 1.4vw, 21px);
  color: rgba(255,255,255,.82);
}
.hero-actions { display: flex; gap: 28px; align-items: center; margin-top: 40px; }
.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 52px;
  padding: 0 24px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .22s ease, background .22s ease, color .22s ease;
}
.button:hover { transform: translateY(-2px); }
.button-light { background: #fff; color: #000; }
.button-dark { background: #111; color: #fff; }
.text-link { font-size: 13px; border-bottom: 1px solid rgba(255,255,255,.5); padding-bottom: 6px; }
.text-link span { margin-left: 8px; }
.scroll-cue {
  position: absolute; z-index: 2; left: 50%; bottom: 28px;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  font-size: 9px; letter-spacing: .22em; text-transform: uppercase;
}
.scroll-cue i { width: 1px; height: 45px; background: rgba(255,255,255,.65); }

.section-shell { width: var(--shell); margin: auto; }
.dark-section { background: var(--black); color: #fff; }

.intro { padding: 140px 0 110px; }
.intro-grid {
  display: grid; grid-template-columns: 1.15fr .85fr;
  gap: 100px; align-items: end;
}
.intro h2, .agency-section h2, .projects-heading h2, .facts h2, .contact-section h2 {
  margin: 0;
  font-size: clamp(42px, 5vw, 76px);
  line-height: 1.06;
  letter-spacing: -.045em;
  font-weight: 300;
}
.intro-copy { font-size: 17px; color: rgba(255,255,255,.72); }
.intro-copy p { margin: 0 0 22px; }
.services-grid {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 1px;
  margin-top: 90px; border-top: 1px solid var(--line);
}
.services-grid article { padding: 34px 32px 20px 0; min-height: 210px; }
.services-grid article + article { border-left: 1px solid var(--line); padding-left: 32px; }
.service-number { color: var(--accent); font-size: 11px; letter-spacing: .16em; }
.services-grid h3 { margin: 38px 0 12px; font-size: 18px; font-weight: 500; }
.services-grid p { margin: 0; color: rgba(255,255,255,.58); font-size: 13px; }

.agency-section { padding: 140px 0; background: var(--paper); overflow: hidden; }
.agency-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 110px; align-items: center; }
.agency-visual { height: 570px; position: relative; }
.agency-card {
  position: absolute;
  width: 72%; aspect-ratio: .75;
  background: #111; color: #fff;
  padding: 38px;
  display: flex; flex-direction: column; justify-content: flex-end;
  box-shadow: 0 30px 80px rgba(0,0,0,.2);
}
.agency-card span { color: var(--accent); letter-spacing: .2em; font-size: 10px; }
.agency-card strong { font-size: 42px; line-height: 1; font-weight: 300; letter-spacing: -.04em; }
.card-back { left: 2%; top: 0; transform: rotate(-5deg); background: #d7d7d3; color: #111; }
.card-front { right: 0; bottom: 0; transform: rotate(4deg); }
.agency-content p:not(.eyebrow) { max-width: 560px; color: #555; font-size: 17px; }
.agency-content ul { list-style: none; padding: 0; margin: 34px 0; border-top: 1px solid var(--dark-line); }
.agency-content li { padding: 15px 0; border-bottom: 1px solid var(--dark-line); font-size: 14px; }

.projects-section { padding: 125px 0 0; background: var(--white); }
.projects-heading {
  display: grid; grid-template-columns: 1fr .55fr; gap: 60px; align-items: end;
  margin-bottom: 70px;
}
.projects-heading p:last-child { color: #666; font-size: 14px; margin: 0 0 10px; }
.project-grid {
  width: 100%;
  background: #fff;
}
.project-group { padding-bottom: 82px; }
.project-group-header {
  width: var(--shell); max-width: 1320px; margin: 0 auto 22px; padding-top: 18px;
  border-top: 1px solid var(--line);
  display: flex; align-items: flex-end; justify-content: space-between; gap: 30px;
}
.project-group-header h3 { margin: 0 0 5px; font-size: 25px; font-weight: 450; letter-spacing: -.02em; }
.project-group-header p { margin: 0; color: #6c6c68; font-size: 11px; letter-spacing: .11em; }
.project-group-header > span { color: #9b9b96; font-size: 10px; letter-spacing: .16em; }
.project-group-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 2px;
  background: #171717;
}
.project-error {
  margin: 0;
  padding: 80px 32px;
  color: #5f5f5b;
  text-align: center;
}
.project-card {
  grid-column: span 6;
  position: relative;
  min-height: 500px;
  overflow: hidden;
  background: #202020;
  color: #fff;
}
.project-group-grid.count-1 .project-card,
.project-group-grid.count-2 .project-card,
.project-group-grid .video-slot { min-height: 620px; }
.project-group-grid.count-3 .project-card { grid-column: span 4; min-height: 520px; }
.project-pattern {
  grid-column: span 6;
  position: relative;
  min-height: 620px;
  overflow: hidden;
  background:
    linear-gradient(142deg, transparent 0 42%, rgba(189,208,54,.94) 42.15% 42.45%, transparent 42.6%),
    repeating-linear-gradient(31deg, rgba(255,255,255,.075) 0 1px, transparent 1px 58px),
    #151515;
}
.project-group-grid.pattern-left .project-pattern { order: -1; }
.project-pattern::before {
  content: "";
  position: absolute; inset: -28% 10% 14% 32%;
  border: 1px solid rgba(255,255,255,.16);
  transform: rotate(30deg);
}
.project-pattern::after {
  content: "";
  position: absolute; width: 52%; aspect-ratio: 1; left: 24%; top: 15%;
  border: 1px solid rgba(189,208,54,.58);
  transform: rotate(30deg);
}
.project-pattern-lines {
  position: absolute; width: 330px; height: 290px; right: 10%; top: 43%;
  transform: translateY(-50%);
  background:
    linear-gradient(30deg, transparent 49.25%, rgba(255,255,255,.82) 49.5% 50.5%, transparent 50.75%),
    linear-gradient(90deg, transparent 24%, rgba(255,255,255,.72) 24.25% 25%, transparent 25.25% 74.5%, rgba(189,208,54,.96) 74.75% 75.5%, transparent 75.75%),
    linear-gradient(150deg, transparent 49%, rgba(255,255,255,.34) 49.35% 50.2%, transparent 50.55%);
  opacity: .82;
}
.project-pattern img {
  position: absolute; left: 32px; bottom: 30px; width: 178px; height: auto;
  filter: url(#logo-on-dark);
}
.project-media, .project-placeholder { position: absolute; inset: 0; width: 100%; height: 100%; }
.project-media { object-fit: cover; transition: transform .7s cubic-bezier(.2,.7,.2,1); }
.project-placeholder {
  display: grid; place-items: center;
  background: #d5d5d1;
  color: rgba(0,0,0,.48);
}
.project-card.video-slot .project-placeholder { background: #292929; color: rgba(255,255,255,.55); }
.play-marker {
  width: 66px; height: 66px; border: 1px solid currentColor; border-radius: 50%;
  display: grid; place-items: center; font-size: 18px;
}
.project-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(0,0,0,.72), transparent 48%);
  pointer-events: none;
}
.project-caption { position: absolute; left: 28px; bottom: 25px; z-index: 2; }
.project-caption h4 { margin: 0 0 5px; font-size: 20px; font-weight: 400; }
.project-caption p { margin: 0; font-size: 12px; opacity: .74; letter-spacing: .07em; }
.project-code {
  position: absolute; right: 22px; top: 22px; z-index: 2;
  font-size: 10px; letter-spacing: .14em; opacity: .58;
}

.facts { padding: 140px 0 125px; }
.facts-heading { max-width: 900px; }
.facts-brand-logo {
  width: 220px;
  height: auto;
  margin: 0 0 28px;
  filter: url(#logo-on-dark);
}
.facts-grid {
  display: grid; grid-template-columns: repeat(4,1fr); margin-top: 80px;
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.facts-grid article { padding: 42px 30px 42px 0; }
.facts-grid article + article { padding-left: 30px; border-left: 1px solid var(--line); }
.facts-grid strong { display: block; font-size: 44px; font-weight: 300; letter-spacing: -.05em; }
.facts-grid span { color: rgba(255,255,255,.55); font-size: 13px; }
.capability-strip {
  display: flex; flex-wrap: wrap; gap: 12px; margin-top: 60px;
}
.capability-strip span {
  border: 1px solid var(--line); border-radius: 999px;
  padding: 12px 20px; color: rgba(255,255,255,.82); font-size: 13px;
  letter-spacing: .08em; text-transform: uppercase;
}

.contact-section { padding: 140px 0; background: var(--paper); }
.contact-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 120px; }
.contact-copy > p:not(.eyebrow) { color: #60605e; max-width: 460px; font-size: 16px; }
address { font-style: normal; margin: 55px 0 30px; display: flex; flex-direction: column; gap: 5px; font-size: 13px; }
.contact-brand-logo { width: 225px; height: auto; margin-bottom: 12px; }
.contact-email { width: fit-content; margin-top: 9px; font-weight: 650; border-bottom: 1px solid currentColor; }
.instagram-link {
  display: flex; align-items: center; gap: 15px;
  padding: 20px 0; border-top: 1px solid var(--dark-line); border-bottom: 1px solid var(--dark-line);
}
.instagram-icon { width: 42px; height: 42px; flex: 0 0 42px; }
.instagram-link span:nth-child(2) { display: flex; flex-direction: column; flex: 1; }
.instagram-link small { color: #777; }
.instagram-link strong { font-size: 15px; }
.contact-form { background: #fff; padding: 48px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.contact-form label { display: block; margin-bottom: 24px; }
.contact-form label span { display: block; font-size: 11px; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 9px; }
.contact-form input, .contact-form textarea {
  width: 100%; border: 0; border-bottom: 1px solid #bdbdb9;
  background: transparent; border-radius: 0; padding: 11px 0; outline: none;
}
.contact-form textarea { resize: vertical; }
.contact-form input:focus, .contact-form textarea:focus { border-color: #111; }
.contact-form input:focus-visible, .contact-form textarea:focus-visible {
  outline: 0;
  box-shadow: 0 1px 0 #111;
}
.form-trap {
  position: absolute !important; left: -10000px !important; width: 1px !important;
  height: 1px !important; overflow: hidden !important;
}
.contact-form .form-consent {
  display: flex; align-items: flex-start; gap: 12px; margin: 4px 0 24px;
  color: #666; cursor: pointer;
}
.contact-form .form-consent input {
  width: 18px; height: 18px; flex: 0 0 18px; margin: 2px 0 0;
  accent-color: #111;
}
.contact-form .form-consent span {
  display: block; margin: 0; font-size: 11px; line-height: 1.55;
  letter-spacing: .02em; text-transform: none;
}
.submit-button { width: 100%; }
.submit-button:disabled { cursor: wait; opacity: .62; }
.form-status { min-height: 22px; font-size: 12px; color: #666; margin: 14px 0 0; }
.form-status[data-state="success"] { color: #2f6b32; }
.form-status[data-state="error"] { color: #9a2727; }

footer { background: #050505; color: #fff; padding: 48px 0; }
.footer-inner {
  width: var(--shell); margin: auto; display: grid;
  grid-template-columns: 1fr 1fr 1fr; align-items: center;
}
.footer-inner > img { width: 175px; filter: url(#logo-on-dark); }
.footer-inner p { text-align: center; font-size: 11px; color: rgba(255,255,255,.5); }
.footer-inner div { display: flex; justify-content: flex-end; gap: 24px; font-size: 11px; }
.footer-instagram-link { display: inline-flex; align-items: center; gap: 8px; }
.footer-instagram-link img { width: 22px; height: 22px; }

.reveal { opacity: 0; transform: translateY(30px); transition: opacity .8s ease, transform .8s ease; }
.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 980px) {
  :root { --shell: min(calc(100% - 40px), 760px); }
  .site-header { padding: 0 20px; }
  .brand { width: 155px; }
  .menu-toggle {
    display: flex; flex-direction: column; gap: 7px; background: transparent;
    align-items: flex-end; justify-content: center; width: 44px; height: 44px;
    border: 0; padding: 0; color: inherit; z-index: 3; cursor: pointer;
  }
  .menu-toggle span { display: block; width: 25px; height: 1px; background: currentColor; transition: transform .3s; }
  .menu-open .menu-toggle span:first-child { transform: translateY(4px) rotate(45deg); }
  .menu-open .menu-toggle span:last-child { transform: translateY(-4px) rotate(-45deg); }
  .main-nav {
    position: fixed; inset: 0; display: flex; flex-direction: column; justify-content: center;
    background: #0b0b0b; color: #fff; font-size: 28px; gap: 18px;
    opacity: 0; visibility: hidden; pointer-events: none;
    transition: opacity .25s, visibility 0s linear .25s;
  }
  .menu-open .site-header {
    color: #fff;
    background: transparent;
    border-color: transparent;
    backdrop-filter: none;
  }
  .menu-open .brand img, .menu-open .nav-logo-link img { filter: url(#logo-on-dark); }
  .menu-open .main-nav {
    opacity: 1; visibility: visible; pointer-events: auto;
    transition-delay: 0s;
  }
  .main-nav a::after { bottom: -4px; }
  .language-switch { border-left: 0; border-top: 1px solid rgba(255,255,255,.3); padding: 18px 0 0; color: #fff; }
  .intro-grid, .agency-grid, .projects-heading, .contact-grid { grid-template-columns: 1fr; gap: 50px; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .services-grid article:nth-child(3) { border-left: 0; padding-left: 0; border-top: 1px solid var(--line); }
  .services-grid article:nth-child(4) { border-top: 1px solid var(--line); }
  .agency-visual { height: 480px; max-width: 600px; }
  .facts-grid { grid-template-columns: 1fr 1fr; }
  .facts-grid article:nth-child(3) { border-left: 0; border-top: 1px solid var(--line); padding-left: 0; }
  .facts-grid article:nth-child(4) { border-top: 1px solid var(--line); }
  .project-pattern-lines { right: 2%; }
}

@media (max-width: 640px) {
  :root { --shell: calc(100% - 30px); }
  .hero-content { padding-top: 110px; }
  .hero h1 { font-size: clamp(44px, 13.5vw, 52px); }
  .hero-actions { align-items: flex-start; flex-direction: column; }
  .hero-overlay { background: linear-gradient(90deg, rgba(0,0,0,.82), rgba(0,0,0,.3)), linear-gradient(0deg, rgba(0,0,0,.65), transparent); }
  .intro, .agency-section, .facts, .contact-section { padding: 95px 0; }
  .services-grid { grid-template-columns: 1fr; }
  .services-grid article + article { border-left: 0; border-top: 1px solid var(--line); padding-left: 0; }
  .agency-visual { height: 380px; }
  .agency-card { padding: 25px; }
  .agency-card strong { font-size: 29px; }
  .project-group { padding-bottom: 62px; }
  .project-group-header { margin-bottom: 14px; padding-top: 14px; }
  .project-group-header h3 { font-size: 21px; }
  .project-group-grid .project-card,
  .project-group-grid.count-1 .project-card,
  .project-group-grid.count-2 .project-card,
  .project-group-grid.count-3 .project-card,
  .project-group-grid .video-slot,
  .project-pattern { grid-column: span 12; min-height: 420px; }
  .project-group-grid.pattern-left .project-pattern { order: initial; }
  .project-pattern-lines { width: 280px; height: 245px; right: 4%; }
  .project-pattern img { left: 22px; bottom: 22px; width: 155px; }
  .facts-grid { grid-template-columns: 1fr; }
  .facts-grid article + article, .facts-grid article:nth-child(3) {
    border-left: 0; border-top: 1px solid var(--line); padding-left: 0;
  }
  .contact-form { padding: 28px 20px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .footer-inner { grid-template-columns: 1fr; gap: 26px; text-align: center; }
  .footer-inner img { margin: auto; }
  .footer-inner p { margin: 0; }
  .footer-inner div { justify-content: center; }
}

@media (hover: hover) {
  .project-card:hover .project-media { transform: scale(1.035); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }
  .reveal { opacity: 1; transform: none; }
}
