/* =========================================================================
   Ionut Varodi Films: landing page
   Design tokens mirror the source design canvas (dark / bone / gold).
   ========================================================================= */

:root {
  /* Palette */
  --bg:          #0f0e0c;
  --bg-deep:     #0a0908;
  --ink:         #efe9dd;
  --ink-70:      rgba(239, 233, 221, .70);
  --ink-55:      rgba(239, 233, 221, .55);
  --ink-40:      rgba(239, 233, 221, .40);
  --gold:        #c9a45c;
  --gold-soft:   rgba(201, 164, 92, .40);
  --line:        rgba(239, 233, 221, .14);
  --line-soft:   rgba(239, 233, 221, .08);

  /* Type */
  --display: "Cormorant Garamond", "Times New Roman", Georgia, serif;
  --sans:    "Space Grotesk", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Helvetica, Arial, sans-serif;

  /* Metrics */
  --bar: 72px;                 /* letterbox bar = header height, so they align */
  --shell: 1440px;
  --gut: clamp(20px, 6.5vw, 96px);
  --section-y: clamp(72px, 9vw, 130px);

  --ease: cubic-bezier(.22, 1, .36, 1);
}

/* ---------------------------------------------------------------- base -- */

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  /* Renders native controls (date picker, checkbox, scrollbars) dark to match. */
  color-scheme: dark;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-tap-highlight-color: rgba(201, 164, 92, .18);
}

img, video, svg { max-width: 100%; display: block; }
img { height: auto; }

a { color: inherit; text-decoration: none; }

button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }

h1, h2, h3, h4 { margin: 0; font-weight: 500; text-wrap: balance; }
p { margin: 0; text-wrap: pretty; }

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 2px;
}

::selection { background: var(--gold); color: var(--bg); }

/* ----------------------------------------------------------- utilities -- */

.shell {
  width: 100%;
  max-width: var(--shell);
  margin-inline: auto;
  padding-inline: var(--gut);
}

.section { padding-block: var(--section-y); }

/* Offset in-page anchors so the fixed header never covers a heading. */
[id] { scroll-margin-top: calc(var(--bar) + 24px); }

.eyebrow {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 22px;
}

.center { text-align: center; }

/* Section headline that isn't the page's biggest: process, about, FAQ. */
.h-section {
  font-family: var(--display);
  font-size: clamp(30px, 3.6vw, 46px);
  line-height: 1.15;
  margin: 0 0 18px;
}

.display {
  font-family: var(--display);
  font-weight: 500;
  line-height: 1.15;
}
.display em { font-style: italic; color: var(--gold); }

.lead {
  font-size: clamp(15px, 1.6vw, 17px);
  line-height: 1.75;
  color: var(--ink-70);
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -100px;
  z-index: 200;
  padding: 12px 20px;
  background: var(--gold);
  color: var(--bg);
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: top .2s;
}
.skip-link:focus { top: 16px; }

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

/* Buttons ---------------------------------------------------------------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 48px;
  padding: 14px 30px;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  text-align: center;
  cursor: pointer;
  transition: background .35s var(--ease), color .35s var(--ease), border-color .35s var(--ease);
}
.btn:hover, .btn:focus-visible { background: var(--gold); color: var(--bg); }

.btn--ghost { border-color: rgba(239, 233, 221, .35); color: var(--ink); }
.btn--ghost:hover, .btn--ghost:focus-visible { background: transparent; color: var(--ink); border-color: var(--ink); }

.btn--sm { min-height: 42px; padding: 10px 22px; letter-spacing: 2.5px; }

.btn__play {
  width: 0; height: 0;
  border-left: 9px solid currentColor;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  flex: none;
}

.link-arrow {
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  white-space: nowrap;
  transition: opacity .3s;
}
.link-arrow:hover { opacity: .7; }

/* Scroll reveal ---------------------------------------------------------- */

/* Scoped to html.js so the page is never blank when scripting is off: and
   main.js clears a watchdog that strips .js if the script never arrives. */
html.js .reveal {
  opacity: 0;
  transform: translateY(38px);
  transition: opacity 1s var(--ease), transform 1s var(--ease);
}
html.js .reveal.is-in { opacity: 1; transform: none; }

/* ------------------------------------------------------------------ nav -- */

.header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 60;
  height: var(--bar);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-inline: clamp(20px, 4vw, 56px);
  transition: background .4s var(--ease), border-color .4s var(--ease), backdrop-filter .4s;
  border-bottom: 1px solid transparent;
}
.header.is-scrolled {
  background: rgba(15, 14, 12, .78);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--line-soft);
}

.header__logo img { height: 30px; width: auto; }

.nav {
  display: flex;
  align-items: center;
  gap: clamp(20px, 2.6vw, 36px);
  font-size: 13px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
}
.nav a { transition: color .3s; }
.nav a:not(.btn):hover { color: var(--gold); }

.header__right {
  display: flex;
  align-items: center;
  gap: 18px;
}

/* RO / EN switch ---------------------------------------------------------- */

.langswitch {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  letter-spacing: 2px;
  color: var(--ink-40);
}
.langswitch button {
  padding: 8px 2px;
  color: var(--ink-55);
  letter-spacing: 2px;
  transition: color .3s;
}
.langswitch button:hover { color: var(--ink); }
.langswitch button.is-on { color: var(--gold); }

.nav__toggle {
  display: none;
  width: 46px; height: 46px;
  margin-right: -10px;
  align-items: center;
  justify-content: center;
}
.nav__toggle span {
  position: relative;
  display: block;
  width: 24px; height: 1.5px;
  background: var(--ink);
  transition: transform .35s var(--ease), background .2s;
}
.nav__toggle span::before,
.nav__toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 24px; height: 1.5px;
  background: var(--ink);
  transition: transform .35s var(--ease);
}
.nav__toggle span::before { top: -7px; }
.nav__toggle span::after  { top: 7px; }

body.menu-open .nav__toggle span { background: transparent; }
body.menu-open .nav__toggle span::before { transform: translateY(7px) rotate(45deg); }
body.menu-open .nav__toggle span::after  { transform: translateY(-7px) rotate(-45deg); }

/* --------------------------------------------------------------- hero --- */

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: center;
  justify-items: center;
  overflow: hidden;
  background: #000;
  isolation: isolate;
}

/* The dimming lives on the GROUP, not on the two layers. Fading the poster and
   the video individually left both partly transparent at once, so the video was
   composited over a static frame: visible as a ghosted, soft image. */
.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: .6;              /* the design canvas's video opacity, applied to the group */
  transform-origin: 50% 45%;
  will-change: transform;
}
.hero__media img,
.hero__media video {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 1;
}
/* The poster stays fully opaque underneath; the video fades in on top of it and
   then occludes it completely, so there is never a moment where both show. */
.hero__media video { opacity: 0; pointer-events: none; transition: opacity .9s ease; }
.hero__media.is-playing video { opacity: 1; }

/* Exactly the design canvas's scrim: a single soft radial, nothing more. */
.hero__scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: radial-gradient(85% 75% at 50% 45%, rgba(0, 0, 0, .1) 25%, rgba(15, 14, 12, .9) 100%);
}

.hero__grain {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  opacity: .06;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)'/%3E%3C/svg%3E");
}

.hero__bar {
  position: absolute;
  left: 0; right: 0;
  height: var(--bar);
  background: var(--bg-deep);
  z-index: 3;
}
.hero__bar--top    { top: 0; }
.hero__bar--bottom { bottom: 0; }

.hero__inner {
  position: relative;
  z-index: 4;
  /* width:100% keeps the centred grid item from sizing to its widest line,
     which is what pushes the headline off-screen on narrow phones. */
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: calc(var(--bar) + 24px) clamp(18px, 6vw, 140px);
  will-change: opacity;
}

.hero__mark { height: 58px; width: auto; margin-bottom: 30px; }

.hero h1 {
  font-family: var(--display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(31px, 7.4vw, 96px);
  line-height: 1.04;
  margin: 0;
  overflow-wrap: break-word;
}

.hero__kicker {
  margin: 0 0 20px;
  font-size: clamp(11px, 1.1vw, 13px);
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold);
}

.hero__sub {
  margin: 22px auto 0;
  max-width: 56ch;
  font-size: clamp(15px, 1.5vw, 17px);
  line-height: 1.7;
  color: var(--ink-70);
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  margin-top: 40px;
}

.hero__scroll {
  position: absolute;
  left: 50%;
  bottom: calc(var(--bar) + 22px);
  transform: translateX(-50%);
  z-index: 4;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--ink-55);
  animation: pulse 2.4s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: .5; transform: translateX(-50%) translateY(0); }
  50%      { opacity: 1;  transform: translateX(-50%) translateY(7px); }
}

/* ------------------------------------------------------------ marquee --- */

.marquee {
  border-block: 1px solid var(--line-soft);
  background: var(--bg-deep);
  overflow: hidden;
  padding-block: 18px;
}
.marquee__track {
  display: flex;
  width: max-content;
  gap: 0;
  animation: slide 42s linear infinite;
}
.marquee__group {
  display: flex;
  align-items: center;
  gap: 44px;
  padding-right: 44px;
  font-size: 12px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--ink-55);
  white-space: nowrap;
}
.marquee__group span::after {
  content: "·";
  margin-left: 44px;
  color: var(--gold);
}
.marquee:hover .marquee__track { animation-play-state: paused; }

@keyframes slide {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* -------------------------------------------------------------- about --- */

.about {
  display: grid;
  grid-template-columns: minmax(320px, 460px) 1fr;
  gap: clamp(40px, 7vw, 100px);
  align-items: center;
}

.about__figure {
  position: relative;
  margin: 0;
}
.about__figure img {
  width: 100%;
  height: clamp(420px, 46vw, 580px);
  object-fit: cover;
  object-position: 50% 35%;
}
.about__figure::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid var(--gold-soft);
  transform: translate(14px, 14px);
  pointer-events: none;
  z-index: -1;
}

.about h2 {
  font-size: clamp(30px, 3.6vw, 46px);
  line-height: 1.2;
  margin: 0 0 28px;
}
.about p + p { margin-top: 18px; }

.about__facts {
  list-style: none;
  margin: 34px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 28px;
}
.about__facts li {
  position: relative;
  padding-left: 22px;
  font-size: 14px;
  letter-spacing: .4px;
  color: var(--ink-70);
}
.about__facts li::before {
  content: "";
  position: absolute;
  left: 0; top: .62em;
  width: 9px; height: 1px;
  background: var(--gold);
}

/* --------------------------------------------------------------- work --- */

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 20px;
  border-top: 1px solid var(--line);
  padding-top: 34px;
  margin-bottom: 44px;
}
.section-head h2 {
  font-family: var(--display);
  font-size: clamp(32px, 4.2vw, 52px);
  line-height: 1.1;
  margin: 0;
}

.film {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  overflow: hidden;
  background: #000;
  aspect-ratio: 16 / 9;
  cursor: pointer;
  text-align: left;
}
.film img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: .8;
  transition: transform .8s var(--ease), opacity .4s;
}
.film:hover img,
.film:focus-visible img { transform: scale(1.06); opacity: 1; }

.film__badge {
  position: absolute;
  left: clamp(14px, 2vw, 28px);
  bottom: clamp(12px, 1.6vw, 22px);
  z-index: 3;
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(239, 233, 221, .85);
  pointer-events: none;
  text-shadow: 0 1px 12px rgba(0, 0, 0, .8);
}

.film__play {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: grid;
  place-items: center;
  pointer-events: none;
}
.film__play i {
  display: grid;
  place-items: center;
  width: 74px; height: 74px;
  border: 1px solid rgba(239, 233, 221, .6);
  border-radius: 50%;
  background: rgba(15, 14, 12, .3);
  backdrop-filter: blur(2px);
  transition: background .4s var(--ease), border-color .4s var(--ease), transform .4s var(--ease);
}
.film__play i::after {
  content: "";
  width: 0; height: 0;
  margin-left: 4px;
  border-left: 14px solid var(--ink);
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  transition: border-left-color .4s;
}
.film:hover .film__play i,
.film:focus-visible .film__play i { background: var(--gold); border-color: var(--gold); transform: scale(1.06); }
.film:hover .film__play i::after,
.film:focus-visible .film__play i::after { border-left-color: var(--bg); }

.film--feature { margin-bottom: 20px; }
.film--feature iframe {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  pointer-events: none;
  opacity: 0;
  transition: opacity .9s ease;
  z-index: 2;
}
/* Fully opaque, so the still thumbnail underneath never bleeds through it. */
.film--feature.is-previewing iframe { opacity: 1; }
.film--feature.is-previewing .film__play i { opacity: 0; }

.film__dots {
  position: absolute;
  right: clamp(14px, 2vw, 28px);
  bottom: clamp(14px, 1.8vw, 24px);
  z-index: 3;
  display: flex;
  gap: 8px;
}
.film__dots b {
  width: 22px; height: 3px;
  background: rgba(239, 233, 221, .3);
  transition: background .4s;
}
.film__dots b.is-on { background: var(--gold); }

.work__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* ----------------------------------------------------------- services --- */

.service {
  display: grid;
  grid-template-columns: 90px minmax(260px, 420px) 1fr;
  gap: clamp(24px, 4vw, 56px);
  padding-block: clamp(34px, 4vw, 52px);
  border-top: 1px solid var(--line);
  align-items: start;
}
.service__no {
  font-family: var(--display);
  font-style: italic;
  font-size: 22px;
  color: var(--gold);
}
.service h3 {
  font-family: var(--display);
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.15;
  margin: 0;
}
.service p { font-size: 15px; line-height: 1.75; color: var(--ink-70); }
.service__cta {
  display: inline-block;
  margin-top: 18px;
  font-size: 12px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  border-bottom: 1px solid var(--gold-soft);
  padding-bottom: 4px;
  transition: opacity .3s;
}
.service__cta:hover { opacity: .7; }

/* ------------------------------------------------------------ process --- */

.process { background: var(--bg-deep); border-block: 1px solid var(--line-soft); }

.process__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(24px, 3vw, 44px);
  margin-top: 44px;
}
.process__step { position: relative; padding-top: 26px; border-top: 1px solid var(--line); }
.process__step b {
  display: block;
  font-family: var(--display);
  font-style: italic;
  font-weight: 500;
  font-size: 20px;
  color: var(--gold);
  margin-bottom: 12px;
}
.process__step h3 {
  font-family: var(--display);
  font-size: 24px;
  margin: 0 0 10px;
}
.process__step p { font-size: 14.5px; line-height: 1.7; color: var(--ink-70); }

/* ------------------------------------------------------- testimonials --- */

.quotes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(36px, 4vw, 60px);
}
.quote { text-align: center; }
.quote__stars {
  color: var(--gold);
  letter-spacing: 4px;
  font-size: 14px;
  margin-bottom: 20px;
}
.quote blockquote {
  margin: 0 0 20px;
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(19px, 2vw, 21px);
  line-height: 1.5;
}
.quote figcaption {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--ink-55);
}

/* ---------------------------------------------------------------- faq --- */

.faq__grid {
  display: grid;
  grid-template-columns: minmax(260px, 380px) 1fr;
  gap: clamp(32px, 6vw, 80px);
  align-items: start;
}
.faq__item { border-top: 1px solid var(--line); }
.faq__item:last-child { border-bottom: 1px solid var(--line); }

.faq__item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 24px 0;
  cursor: pointer;
  list-style: none;
  font-size: clamp(16px, 1.8vw, 19px);
  font-weight: 500;
  transition: color .3s;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary:hover { color: var(--gold); }

.faq__item summary::after {
  content: "";
  flex: none;
  width: 12px; height: 12px;
  border-right: 1.5px solid var(--gold);
  border-bottom: 1.5px solid var(--gold);
  transform: rotate(45deg) translate(-3px, -3px);
  transition: transform .35s var(--ease);
}
.faq__item[open] summary::after { transform: rotate(225deg) translate(-2px, -2px); }

.faq__item p {
  padding: 0 0 26px;
  max-width: 68ch;
  font-size: 15px;
  line-height: 1.75;
  color: var(--ink-70);
}

/* ------------------------------------------------------------ contact --- */

.contact { border-top: 1px solid var(--line); text-align: center; }

.contact h2 {
  font-family: var(--display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(38px, 5.5vw, 78px);
  line-height: 1.05;
  margin: 0 0 20px;
}
.contact__intro { max-width: 54ch; margin: 0 auto 44px; }

.contact__grid {
  display: grid;
  grid-template-columns: 1fr minmax(300px, 440px);
  gap: clamp(36px, 6vw, 80px);
  text-align: left;
  align-items: start;
  margin-top: 8px;
}

.contact__direct dt {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--ink-55);
  margin-bottom: 6px;
}
.contact__direct dd { margin: 0 0 26px; font-size: clamp(18px, 2.2vw, 24px); }
.contact__direct dd.contact__place { font-size: 17px; color: var(--ink-70); line-height: 1.6; }
.eyebrow--tight { margin-bottom: 12px; }
.contact__direct dd a { color: var(--gold); border-bottom: 1px solid var(--gold-soft); padding-bottom: 3px; transition: opacity .3s; }
.contact__direct dd a:hover { opacity: .75; }

.socials {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 6px;
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
}
.socials a { color: var(--ink-70); transition: color .3s; }
.socials a:hover { color: var(--gold); }

/* Form ------------------------------------------------------------------- */

.form { display: grid; gap: 18px; }
.form__row { display: grid; gap: 18px; grid-template-columns: 1fr 1fr; }

.field { display: grid; gap: 8px; }
.field > span {
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--ink-55);
}
.field abbr { margin-left: 4px; color: var(--gold); text-decoration: none; border: 0; }
.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 48px;
  padding: 13px 14px;
  background: rgba(239, 233, 221, .04);
  border: 1px solid var(--line);
  border-radius: 0;
  color: var(--ink);
  font: inherit;
  font-size: 15px;
  transition: border-color .3s, background .3s;
  -webkit-appearance: none;
  appearance: none;
}
.field textarea { min-height: 130px; resize: vertical; }
.field select {
  background-image: linear-gradient(45deg, transparent 50%, var(--gold) 50%), linear-gradient(135deg, var(--gold) 50%, transparent 50%);
  background-position: calc(100% - 20px) 21px, calc(100% - 14px) 21px;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}
.field select option { background: var(--bg-deep); color: var(--ink); }
.field input::placeholder,
.field textarea::placeholder { color: var(--ink-40); }
.field input:focus,
.field select:focus,
.field textarea:focus { outline: none; border-color: var(--gold); background: rgba(239, 233, 221, .07); }
.field input:user-invalid,
.field textarea:user-invalid { border-color: #b4553f; }

.consent {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 13px;
  line-height: 1.5;
  color: var(--ink-55);
}
.consent input {
  flex: none;
  width: 18px; height: 18px;
  margin-top: 2px;
  accent-color: var(--gold);
}

.form__note { font-size: 12.5px; line-height: 1.6; color: var(--ink-40); }
.form__note a { color: var(--gold); }

.form__status {
  font-size: 14px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  color: var(--ink-70);
}
.form__status[hidden] { display: none; }
.form__status.is-ok { border-color: var(--gold-soft); color: var(--gold); }

/* --------------------------------------------------------------- footer -- */

.footer {
  padding: 0 var(--gut) clamp(28px, 4vw, 44px);
  text-align: center;
}
.footer__mark { height: 24px; width: auto; opacity: .5; margin: 0 auto 26px; }

.footer__nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 30px;
  margin-bottom: 28px;
  font-size: 12px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--ink-55);
}
.footer__nav a:hover { color: var(--gold); }

.footer__bar {
  max-width: 1248px;
  margin-inline: auto;
  padding-top: 22px;
  border-top: 1px solid rgba(239, 233, 221, .1);
  display: flex;
  justify-content: space-between;
  gap: 10px;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ink-40);
}

/* ------------------------------------------------------------ lightbox -- */

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(16px, 5vw, 60px);
  background: rgba(5, 5, 8, .94);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0;
  animation: fade .3s var(--ease) forwards;
}
.lightbox[hidden] { display: none; }
@keyframes fade { to { opacity: 1; } }

.lightbox__frame {
  position: relative;
  width: min(1200px, 100%);
  aspect-ratio: 16 / 9;
  background: #000;
  box-shadow: 0 40px 120px rgba(0, 0, 0, .7);
}
.lightbox__frame iframe { width: 100%; height: 100%; border: 0; }

.lightbox__close {
  position: absolute;
  top: clamp(14px, 2.4vw, 26px);
  right: clamp(14px, 3vw, 38px);
  min-height: 44px;
  padding: 10px 14px;
  color: #fff;
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  transition: color .3s;
}
.lightbox__close:hover { color: var(--gold); }

/* --------------------------------------------------- mobile action bar -- */

.actionbar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 55;
  display: none;
  border-top: 1px solid var(--line-soft);
  background: rgba(10, 9, 8, .92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding-bottom: env(safe-area-inset-bottom);
  transform: translateY(110%);
  transition: transform .4s var(--ease);
}
.actionbar.is-visible { transform: none; }
.actionbar a {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 56px;
  font-size: 12px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
}
.actionbar a + a { border-left: 1px solid var(--line-soft); }
.actionbar a.is-primary { background: var(--gold); color: var(--bg); font-weight: 500; }

/* ------------------------------------------------------------ responsive */

@media (max-width: 1080px) {
  .about { grid-template-columns: 1fr; gap: 44px; }
  .about__figure img { height: clamp(360px, 60vw, 480px); }
  .process__grid { grid-template-columns: repeat(2, 1fr); row-gap: 36px; }
  .faq__grid { grid-template-columns: 1fr; }
  .contact__grid { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
  :root { --bar: 60px; }

  .nav__toggle { display: flex; }

  /* Without JS the toggle can't work, so leave the links in the flow. */
  html:not(.js) .nav__toggle { display: none; }
  html:not(.js) .nav { position: static; flex-direction: row; flex-wrap: wrap; justify-content: flex-end; gap: 14px; padding: 0; background: none; opacity: 1; visibility: visible; transform: none; font-size: 11px; letter-spacing: 1.5px; }
  html:not(.js) .header { height: auto; padding-block: 10px; position: sticky; }

  .nav {
    position: fixed;
    inset: 0;
    flex-direction: column;
    justify-content: center;
    gap: 30px;
    padding: var(--bar) 24px 40px;
    background: rgba(10, 9, 8, .97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    font-size: 15px;
    letter-spacing: 3px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: opacity .35s var(--ease), transform .35s var(--ease), visibility .35s;
  }
  body.menu-open .nav { opacity: 1; visibility: visible; transform: none; }
  .nav .btn { margin-top: 10px; }

  .header__logo { position: relative; z-index: 2; }

  .hero__mark { height: 42px; margin-bottom: 24px; }
  .hero__cta { flex-direction: column; align-items: stretch; width: min(340px, 84vw); gap: 14px; }
  .hero__cta .btn { width: 100%; }
  .hero__scroll { display: none; }

  .section-head { flex-direction: column; align-items: flex-start; gap: 14px; }
  .work__grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }

  .service { grid-template-columns: 1fr; gap: 12px; }
  .service__no { font-size: 18px; }

  .quotes { grid-template-columns: 1fr; gap: 44px; }

  .footer__bar { flex-direction: column; align-items: center; }

  .actionbar { display: flex; }
  body { padding-bottom: 0; }
  .footer { padding-bottom: 96px; }

  /* Touch targets: grow the small text links to a comfortable tap area. */
  .header__logo { display: flex; align-items: center; align-self: stretch; }
  .nav a:not(.btn) { padding: 10px 14px; }
  .header__right { position: relative; z-index: 2; gap: 10px; }
  .langswitch button { padding: 12px 4px; }
  .link-arrow { display: inline-block; padding-block: 12px; }
  .service__cta { padding: 12px 0 10px; }
  .contact__direct dd a { display: inline-block; padding-block: 8px; }
  .socials a,
  .footer__nav a { display: inline-block; padding-block: 12px; }
  .footer__nav { gap: 0 26px; margin-bottom: 16px; }
  .consent input { width: 22px; height: 22px; }
  .quote blockquote { text-wrap: pretty; }
}

@media (max-width: 620px) {
  :root { --section-y: clamp(60px, 12vw, 88px); }
  .about__facts { grid-template-columns: 1fr; }
  .process__grid { grid-template-columns: 1fr; }
  .work__grid { grid-template-columns: 1fr; }
  .form__row { grid-template-columns: 1fr; }
  .marquee__group { gap: 28px; padding-right: 28px; letter-spacing: 3px; }
  .marquee__group span::after { margin-left: 28px; }
  .film__play i { width: 58px; height: 58px; }
  .film__play i::after { border-left-width: 11px; border-top-width: 7px; border-bottom-width: 7px; }
  .about__figure::after { transform: translate(8px, 8px); }
}

/* Devices where hover is unreliable: keep the reveal, drop hover-only polish */
@media (hover: none) {
  .film:hover img { transform: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  html.js .reveal { opacity: 1; transform: none; }
  .marquee__track { animation: none; flex-wrap: wrap; width: 100%; justify-content: center; }
  .hero__scroll { animation: none; opacity: .7; }
}

@media print {
  .header, .nav, .actionbar, .hero__media, .marquee, .lightbox { display: none !important; }
  body { background: #fff; color: #000; }
}
