/* =========================================================
   WAVELOOM — Aerial Cinematography
   Luxury editorial design system · champagne gold on black
   ========================================================= */

/* ---------- Design tokens ---------- */
:root {
  /* Palette — warm cinematic dark */
  --bg:            #0a0a0b;
  --bg-2:          #0e0e10;
  --surface:       #141416;
  --surface-2:     #1b1b1f;
  --border:        rgba(240, 232, 214, 0.10);
  --border-strong: rgba(240, 232, 214, 0.20);
  --hair:          rgba(227, 190, 130, 0.22);

  --text:          #f1ece0;   /* warm ivory */
  --text-muted:    #a8a294;
  --text-dim:      #726d61;

  /* Brand accent — champagne → brass gold */
  --gold:          #e3be82;
  --gold-2:        #c69a4e;
  --gold-3:        #f0d3a0;
  --accent:        var(--gold);   /* alias so shared components inherit */
  --accent-2:      var(--gold-2);
  --accent-grad:   linear-gradient(120deg, #f0d3a0 0%, #e3be82 40%, #c69a4e 100%);
  --accent-soft:   rgba(227, 190, 130, 0.12);

  /* Type */
  --font-display: "Fraunces", "Georgia", "Times New Roman", serif;
  --font-body:    "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;

  /* Layout */
  --maxw:      1240px;
  --gutter:    clamp(22px, 5.5vw, 76px);
  --radius:    0px;   /* sharp editorial corners */
  --radius-sm: 0px;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  position: relative;
}
img, picture, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; }
button, input, textarea, select { font: inherit; color: inherit; }
::selection { background: var(--gold); color: #0a0a0b; }

/* Film-grain texture overlay across the whole site */
body::after {
  content: "";
  position: fixed; inset: 0; z-index: 9998; pointer-events: none;
  opacity: 0.045; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* Custom scrollbar */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: #2a2721; border: 2px solid var(--bg); }
::-webkit-scrollbar-thumb:hover { background: var(--gold-2); }

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.015em;
  font-optical-sizing: auto;
}
h1 { font-size: clamp(3rem, 8.5vw, 7rem); }
h2 { font-size: clamp(2.1rem, 5vw, 3.6rem); }
h3 { font-size: clamp(1.3rem, 2.2vw, 1.7rem); }
em, .italic { font-style: italic; }

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex; align-items: center; gap: 12px;
  margin-bottom: 22px;
}
.eyebrow::before {
  content: ""; width: 30px; height: 1px; background: var(--gold); opacity: 0.6;
}
.eyebrow.no-rule::before { display: none; }
.lead { font-size: clamp(1.05rem, 1.5vw, 1.28rem); color: var(--text-muted); line-height: 1.7; }
.text-grad {
  background: var(--accent-grad);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.serif-accent { font-family: var(--font-display); font-style: italic; color: var(--gold-3); }

/* ---------- Layout helpers ---------- */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(80px, 13vw, 160px); }
.section--tight { padding-block: clamp(56px, 9vw, 100px); }
.section-head { max-width: 680px; margin-bottom: 60px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.center .eyebrow { justify-content: center; }
.stack > * + * { margin-top: 1rem; }
.divider { height: 1px; background: var(--border); }

/* ---------- Buttons ---------- */
.btn {
  --pad-y: 15px; --pad-x: 30px;
  display: inline-flex; align-items: center; gap: 12px;
  padding: var(--pad-y) var(--pad-x);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.4s var(--ease), color 0.4s var(--ease), border-color 0.4s var(--ease), transform 0.4s var(--ease);
  position: relative;
}
.btn--primary {
  background: var(--gold); color: #0a0a0b; font-weight: 600;
}
.btn--primary:hover { background: var(--gold-3); }
.btn--ghost {
  background: transparent; border-color: var(--border-strong); color: var(--text);
}
.btn--ghost:hover { border-color: var(--gold); color: var(--gold); }
.btn--lg { --pad-y: 18px; --pad-x: 38px; font-size: 0.8rem; }
.btn .arrow { transition: transform 0.4s var(--ease); font-size: 1rem; letter-spacing: 0; }
.btn:hover .arrow { transform: translateX(5px); }

/* Text link with underline sweep */
.tlink {
  font-size: 0.78rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold);
  display: inline-flex; align-items: center; gap: 10px; padding-bottom: 4px;
  border-bottom: 1px solid var(--hair);
  transition: color 0.3s var(--ease), border-color 0.3s var(--ease);
}
.tlink:hover { color: var(--gold-3); border-color: var(--gold); }
.tlink .arrow { transition: transform 0.3s var(--ease); }
.tlink:hover .arrow { transform: translateX(4px); }

/* ---------- Navbar ---------- */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  transition: background 0.5s var(--ease), border-color 0.5s var(--ease), backdrop-filter 0.5s var(--ease), padding 0.5s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(10, 10, 11, 0.82);
  backdrop-filter: blur(18px) saturate(130%);
  border-bottom-color: var(--border);
}
.nav__inner {
  max-width: var(--maxw); margin-inline: auto;
  padding: 22px var(--gutter);
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  transition: padding 0.5s var(--ease);
}
.nav.scrolled .nav__inner { padding-block: 15px; }
.brand { display: flex; align-items: center; gap: 12px; font-family: var(--font-display); font-weight: 500; font-size: 1.5rem; letter-spacing: 0.01em; color: var(--text); }
.brand__mark { width: 30px; height: 30px; flex: none; }
.nav__links { display: flex; align-items: center; gap: 38px; }
.nav__links a { font-size: 0.76rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--text-muted); position: relative; transition: color 0.3s var(--ease); }
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: -7px; height: 1px; width: 0;
  background: var(--gold); transition: width 0.4s var(--ease);
}
.nav__links a:hover, .nav__links a.active { color: var(--text); }
.nav__links a.active::after, .nav__links a:hover::after { width: 100%; }
.nav__actions { display: flex; align-items: center; gap: 16px; }

.nav__toggle { display: none; background: none; border: 0; cursor: pointer; width: 44px; height: 44px; position: relative; }
.nav__toggle span { position: absolute; left: 9px; right: 9px; height: 1.5px; background: var(--text); transition: transform 0.3s var(--ease), opacity 0.2s var(--ease); }
.nav__toggle span:nth-child(1) { top: 15px; }
.nav__toggle span:nth-child(2) { top: 21px; }
.nav__toggle span:nth-child(3) { top: 27px; }
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero { position: relative; min-height: 100svh; display: flex; align-items: flex-end; isolation: isolate; overflow: hidden; }
.hero__media { position: absolute; inset: 0; z-index: -2; overflow: hidden; }
.hero__media img { width: 100%; height: 120%; object-fit: cover; will-change: transform; }
.hero__media::after {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(120% 80% at 50% 30%, transparent 0%, rgba(10,10,11,0.35) 60%, rgba(10,10,11,0.85) 100%),
    linear-gradient(180deg, rgba(10,10,11,0.55) 0%, rgba(10,10,11,0.15) 35%, rgba(10,10,11,0.7) 78%, var(--bg) 100%);
}
.hero__media.is-fallback { background: radial-gradient(130% 100% at 60% 15%, #3a2c17 0%, #1b1509 42%, var(--bg) 100%); }
.hero__inner { padding-block: 0 clamp(60px, 10vh, 120px); width: 100%; }
.hero .eyebrow { margin-bottom: 26px; }
.hero h1 { margin-bottom: 30px; max-width: 14ch; }
.hero .lead { max-width: 540px; margin-bottom: 40px; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 18px; align-items: center; }
.play-btn {
  display: inline-flex; align-items: center; gap: 14px; background: none; border: 0; cursor: pointer;
  color: var(--text); font-size: 0.78rem; letter-spacing: 0.18em; text-transform: uppercase;
}
.play-btn .ring {
  width: 52px; height: 52px; border: 1px solid var(--border-strong); border-radius: 50%;
  display: grid; place-items: center; transition: border-color 0.4s var(--ease), background 0.4s var(--ease);
}
.play-btn .ring svg { width: 15px; height: 15px; margin-left: 3px; color: var(--gold); }
.play-btn:hover .ring { border-color: var(--gold); background: var(--accent-soft); }

.hero__foot {
  position: absolute; bottom: 34px; left: 50%; transform: translateX(-50%); z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  color: var(--text-dim); font-size: 0.66rem; letter-spacing: 0.28em; text-transform: uppercase;
}
.hero__foot .line { width: 1px; height: 44px; background: linear-gradient(var(--gold), transparent); animation: linedrop 2s var(--ease) infinite; transform-origin: top; }
@keyframes linedrop { 0% { transform: scaleY(0); opacity: 0; } 40% { opacity: 1; } 100% { transform: scaleY(1); opacity: 0; } }

/* Corner meta on hero */
.hero__badges { position: absolute; top: 120px; right: var(--gutter); z-index: 2; text-align: right; display: grid; gap: 6px; }
.hero__badges span { font-size: 0.66rem; letter-spacing: 0.24em; text-transform: uppercase; color: var(--text-dim); }

/* ---------- Marquee ---------- */
.marquee { border-block: 1px solid var(--border); overflow: hidden; background: var(--bg-2); padding-block: 26px; }
.marquee__track { display: flex; gap: 44px; width: max-content; animation: marquee 40s linear infinite; }
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee span { font-family: var(--font-display); font-size: clamp(1.5rem, 3vw, 2.4rem); font-style: italic; color: var(--text); white-space: nowrap; }
.marquee i { color: var(--gold); font-style: normal; align-self: center; font-size: 1rem; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- Page header (interior pages) ---------- */
.page-hero { position: relative; padding-top: 190px; padding-bottom: 40px; isolation: isolate; overflow: hidden; }
.page-hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: radial-gradient(80% 120% at 85% -10%, rgba(227,190,130,0.09) 0%, transparent 55%);
}
.page-hero .lead { max-width: 640px; }
.breadcrumb { font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-dim); margin-bottom: 26px; }
.breadcrumb a:hover { color: var(--gold); }

/* ---------- Cards / grids ---------- */
.grid { display: grid; gap: 1px; background: var(--border); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid.gap { gap: 24px; background: transparent; }

.card {
  background: var(--bg);
  padding: 42px 38px;
  transition: background 0.5s var(--ease);
  position: relative; overflow: hidden;
}
.grid .card { background: var(--bg); }
.card:hover { background: var(--surface); }
.card__num { font-family: var(--font-display); font-size: 0.9rem; color: var(--gold); letter-spacing: 0.1em; margin-bottom: 26px; display: block; }
.card__icon {
  width: 46px; height: 46px; display: grid; place-items: center;
  color: var(--gold); margin-bottom: 24px;
}
.card__icon svg { width: 30px; height: 30px; }
.card h3 { margin-bottom: 12px; }
.card p { color: var(--text-muted); font-size: 0.96rem; }
.card__link { margin-top: 22px; display: inline-block; opacity: 0; transform: translateY(6px); transition: all 0.4s var(--ease); }
.card:hover .card__link { opacity: 1; transform: none; }

/* Discipline card with image */
.disc { position: relative; overflow: hidden; background: var(--bg-2); min-height: 420px; display: flex; flex-direction: column; justify-content: flex-end; padding: 36px; isolation: isolate; }
.disc__img { position: absolute; inset: 0; z-index: -2; }
.disc__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.9s var(--ease); filter: grayscale(0.3) brightness(0.6); }
.disc::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(10,10,11,0.15) 0%, rgba(10,10,11,0.55) 55%, rgba(10,10,11,0.94) 100%); transition: opacity 0.5s var(--ease); }
.disc:hover .disc__img img { transform: scale(1.06); filter: grayscale(0) brightness(0.75); }
.disc__num { font-family: var(--font-display); font-size: 0.85rem; color: var(--gold); letter-spacing: 0.15em; margin-bottom: auto; }
.disc h3 { margin: 0 0 10px; }
.disc p { color: var(--text-muted); font-size: 0.94rem; max-width: 42ch; }
.disc .tlink { margin-top: 20px; }

/* ---------- Portfolio gallery ---------- */
.filter { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 44px; }
.filter button {
  padding: 10px 22px; background: transparent; border: 1px solid var(--border); color: var(--text-muted); cursor: pointer;
  font-family: var(--font-body); font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase;
  transition: all 0.3s var(--ease);
}
.filter button:hover { border-color: var(--border-strong); color: var(--text); }
.filter button.active { background: var(--gold); color: #0a0a0b; border-color: var(--gold); font-weight: 600; }

.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.shot {
  position: relative; overflow: hidden; aspect-ratio: 4/3;
  background: linear-gradient(135deg, #2a2013, #14100a); cursor: pointer; isolation: isolate;
}
.shot:nth-child(4n+1) { aspect-ratio: 3/4; }
.shot img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.9s var(--ease), filter 0.6s var(--ease); filter: grayscale(0.2); }
.shot::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 45%, rgba(10,10,11,0.9) 100%); opacity: 0.65; transition: opacity 0.4s var(--ease); }
.shot:hover img { transform: scale(1.07); filter: grayscale(0); }
.shot:hover::after { opacity: 0.92; }
.shot__meta { position: absolute; left: 22px; bottom: 20px; z-index: 2; transform: translateY(10px); opacity: 0; transition: all 0.45s var(--ease); }
.shot:hover .shot__meta { transform: none; opacity: 1; }
.shot__meta .tag { font-size: 0.66rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); }
.shot__meta h4 { font-family: var(--font-display); font-size: 1.15rem; margin-top: 5px; font-weight: 400; }
.shot.is-hidden { display: none; }

/* ---------- Split / feature rows ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 7vw, 96px); align-items: center; }
.split__media { overflow: hidden; aspect-ratio: 4/5; background: linear-gradient(135deg, #2a2013, #14100a); position: relative; }
.split__media img { width: 100%; height: 100%; object-fit: cover; }
.split__media .frame-tag { position: absolute; bottom: 20px; left: 20px; font-size: 0.66rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); background: rgba(10,10,11,0.6); padding: 8px 14px; backdrop-filter: blur(6px); }
.checklist li { display: flex; gap: 14px; align-items: flex-start; padding: 11px 0; color: var(--text-muted); border-bottom: 1px solid var(--border); }
.checklist li:last-child { border-bottom: 0; }
.checklist svg { flex: none; width: 20px; height: 20px; color: var(--gold); margin-top: 3px; }

/* ---------- Process steps ---------- */
.steps { display: grid; gap: 1px; background: var(--border); }
.step { display: flex; gap: 26px; align-items: flex-start; padding: 34px; background: var(--bg); transition: background 0.4s var(--ease); }
.step:hover { background: var(--surface); }
.step__num { flex: none; font-family: var(--font-display); font-size: 1.6rem; color: var(--gold); font-weight: 400; min-width: 52px; }
.step h3 { margin-bottom: 8px; }
.step p { color: var(--text-muted); font-size: 0.95rem; }

/* ---------- Specs / equipment ---------- */
.specs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); }
.spec { background: var(--bg); padding: 40px 34px; }
.spec__val { font-family: var(--font-display); font-size: clamp(2.4rem, 4vw, 3.4rem); color: var(--text); line-height: 1; margin-bottom: 6px; }
.spec__val .u { font-size: 1.1rem; color: var(--gold); }
.spec h4 { font-family: var(--font-body); font-weight: 600; font-size: 0.74rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin: 18px 0 10px; }
.spec p { color: var(--text-muted); font-size: 0.92rem; }

/* ---------- Pricing ---------- */
.price-card { display: flex; flex-direction: column; background: var(--bg); }
.price-card.featured { background: var(--surface); outline: 1px solid var(--gold); outline-offset: -1px; }
.price-card .badge { align-self: flex-start; font-size: 0.64rem; letter-spacing: 0.2em; text-transform: uppercase; color: #0a0a0b; background: var(--gold); padding: 6px 13px; margin-bottom: 20px; font-weight: 600; }
.price { font-family: var(--font-display); font-size: 2.8rem; font-weight: 400; margin: 8px 0 4px; }
.price small { font-size: 0.9rem; color: var(--text-muted); }
.price-card ul { margin: 24px 0 30px; }
.price-card li { display: flex; gap: 12px; padding: 8px 0; color: var(--text-muted); font-size: 0.93rem; }
.price-card li svg { flex: none; width: 17px; height: 17px; color: var(--gold); margin-top: 4px; }
.price-card .btn { margin-top: auto; justify-content: center; }

/* ---------- Stats band ---------- */
.band { background: var(--bg-2); border-block: 1px solid var(--border); }
.band .grid--4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--border); text-align: center; }
.band .statcell { background: var(--bg-2); padding: 48px 20px; }
.band .stat__num { font-family: var(--font-display); font-size: clamp(2.4rem, 4vw, 3.4rem); color: var(--gold); line-height: 1; }
.band .stat__label { font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--text-muted); margin-top: 12px; }

/* Hero stat row */
.hero__stats { display: flex; flex-wrap: wrap; gap: clamp(30px,5vw,68px); margin-top: 56px; padding-top: 34px; border-top: 1px solid var(--border); }
.stat__num { font-family: var(--font-display); font-size: clamp(1.9rem, 3vw, 2.6rem); font-weight: 400; }
.stat__label { font-size: 0.7rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--text-muted); margin-top: 4px; }

/* ---------- Reel ---------- */
.reel { position: relative; overflow: hidden; aspect-ratio: 21/9; isolation: isolate; cursor: pointer; background: #14100a; }
.reel img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(0.25) brightness(0.7); transition: transform 1s var(--ease), filter 0.6s var(--ease); }
.reel:hover img { transform: scale(1.04); filter: grayscale(0) brightness(0.8); }
.reel::after { content: ""; position: absolute; inset: 0; background: radial-gradient(60% 80% at 50% 50%, transparent, rgba(10,10,11,0.5)); }
.reel__play { position: absolute; inset: 0; z-index: 2; display: grid; place-items: center; }
.reel__play .ring { width: 96px; height: 96px; border: 1px solid var(--gold); border-radius: 50%; display: grid; place-items: center; background: rgba(10,10,11,0.35); backdrop-filter: blur(4px); transition: transform 0.4s var(--ease), background 0.4s var(--ease); }
.reel:hover .reel__play .ring { transform: scale(1.08); background: rgba(227,190,130,0.18); }
.reel__play svg { width: 26px; height: 26px; margin-left: 4px; color: var(--gold); }
.reel__cap { position: absolute; bottom: 26px; left: 30px; z-index: 2; font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-muted); }

/* ---------- Testimonials ---------- */
.quote { background: var(--bg); border: 1px solid var(--border); padding: 40px 36px; position: relative; }
.quote__mark { font-family: var(--font-display); font-size: 4rem; line-height: 0.4; color: var(--gold); opacity: 0.5; height: 30px; }
.quote p { font-family: var(--font-display); font-size: 1.15rem; font-weight: 400; line-height: 1.5; color: var(--text); margin-bottom: 26px; }
.quote__who { display: flex; align-items: center; gap: 14px; }
.quote__avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--accent-grad); display: grid; place-items: center; font-family: var(--font-display); font-weight: 500; color: #0a0a0b; }
.quote__who strong { display: block; font-size: 0.92rem; font-weight: 600; }
.quote__who span { font-size: 0.78rem; letter-spacing: 0.05em; color: var(--text-dim); }

/* ---------- CTA ---------- */
.cta { position: relative; overflow: hidden; text-align: center; padding: clamp(56px, 9vw, 110px) var(--gutter); background: var(--bg-2); border: 1px solid var(--border); isolation: isolate; }
.cta::before { content: ""; position: absolute; inset: 0; z-index: -1; background: radial-gradient(60% 120% at 50% 0%, rgba(227,190,130,0.14), transparent 60%); }
.cta h2 { margin-bottom: 20px; }
.cta .lead { margin-inline: auto; max-width: 540px; margin-bottom: 36px; }
.cta__actions { display: flex; gap: 18px; justify-content: center; flex-wrap: wrap; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 6vw, 80px); align-items: start; }
.info-item { display: flex; gap: 18px; padding: 22px 0; border-bottom: 1px solid var(--border); }
.info-item:first-child { padding-top: 0; }
.info-item .ic { width: 42px; height: 42px; flex: none; border: 1px solid var(--border); color: var(--gold); display: grid; place-items: center; }
.info-item h4 { font-family: var(--font-body); font-weight: 600; font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--text-dim); margin-bottom: 5px; }
.info-item p, .info-item a { color: var(--text); font-size: 1rem; }
.info-item a:hover { color: var(--gold); }

.form { background: var(--bg); border: 1px solid var(--border); padding: clamp(28px, 4vw, 46px); }
.field { margin-bottom: 22px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field label { display: block; font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 10px; color: var(--text-muted); }
.field input, .field select, .field textarea {
  width: 100%; background: var(--bg-2); border: 1px solid var(--border); border-radius: 0;
  padding: 14px 16px; color: var(--text); transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
}
.field input::placeholder, .field textarea::placeholder { color: var(--text-dim); }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--gold); background: var(--surface); }
.field textarea { resize: vertical; min-height: 130px; }
.field.invalid input, .field.invalid select, .field.invalid textarea { border-color: #d47a6a; }
.field .err { display: none; color: #e0917f; font-size: 0.78rem; margin-top: 7px; letter-spacing: 0.02em; }
.field.invalid .err { display: block; }
.form-note { font-size: 0.78rem; color: var(--text-dim); margin-top: 6px; }
.form__success { display: none; text-align: center; padding: 26px; background: var(--accent-soft); border: 1px solid var(--gold); color: var(--text); margin-top: 8px; }
.form__success.show { display: block; }
.form__success strong { font-family: var(--font-display); font-size: 1.3rem; font-weight: 400; }

/* ---------- Showreel modal ---------- */
.modal { position: fixed; inset: 0; z-index: 9999; display: none; align-items: center; justify-content: center; padding: 5vw; }
.modal.open { display: flex; }
.modal__backdrop { position: absolute; inset: 0; background: rgba(6,6,7,0.9); backdrop-filter: blur(10px); animation: fade 0.4s var(--ease); }
.modal__frame { position: relative; width: min(1100px, 100%); aspect-ratio: 16/9; background: #000; border: 1px solid var(--border-strong); animation: rise 0.5s var(--ease); z-index: 1; }
.modal__frame iframe, .modal__frame video { width: 100%; height: 100%; border: 0; }
.modal__placeholder { width: 100%; height: 100%; display: grid; place-items: center; text-align: center; background: radial-gradient(80% 100% at 50% 20%, #241b0e, #0a0a0b); gap: 12px; padding: 30px; }
.modal__placeholder .eyebrow { justify-content: center; }
.modal__placeholder p { color: var(--text-muted); max-width: 40ch; margin-inline: auto; }
.modal__close { position: absolute; top: -46px; right: 0; background: none; border: 0; color: var(--text-muted); font-size: 1.6rem; cursor: pointer; width: 40px; height: 40px; transition: color 0.3s var(--ease); }
.modal__close:hover { color: var(--gold); }
@keyframes fade { from { opacity: 0; } }
@keyframes rise { from { opacity: 0; transform: translateY(20px); } }

/* ---------- Footer ---------- */
.footer { border-top: 1px solid var(--border); background: var(--bg-2); padding-block: 80px 36px; }
.footer__top { display: grid; grid-template-columns: 1.7fr 1fr 1fr 1.2fr; gap: 48px; }
.footer p { color: var(--text-muted); font-size: 0.92rem; max-width: 40ch; margin-top: 20px; line-height: 1.7; }
.footer h5 { font-family: var(--font-body); font-weight: 600; font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-dim); margin-bottom: 20px; }
.footer__links a { display: block; padding: 7px 0; color: var(--text-muted); font-size: 0.92rem; transition: color 0.3s var(--ease); }
.footer__links a:hover { color: var(--gold); }
.socials { display: flex; gap: 12px; margin-top: 24px; }
.socials a { width: 42px; height: 42px; border: 1px solid var(--border); display: grid; place-items: center; color: var(--text-muted); transition: all 0.3s var(--ease); }
.socials a:hover { color: var(--gold); border-color: var(--gold); }
.footer__bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; margin-top: 60px; padding-top: 28px; border-top: 1px solid var(--border); color: var(--text-dim); font-size: 0.78rem; letter-spacing: 0.05em; }

/* ---------- Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: 0.1s; }
.reveal[data-delay="2"] { transition-delay: 0.2s; }
.reveal[data-delay="3"] { transition-delay: 0.3s; }
.reveal[data-delay="4"] { transition-delay: 0.4s; }

/* ---------- Responsive ---------- */
@media (max-width: 940px) {
  .nav__links, .nav__actions .btn { display: none; }
  .nav__toggle { display: block; }
  .nav.open { background: var(--bg); border-bottom-color: var(--border); }
  .nav.open .nav__links {
    display: flex; flex-direction: column; align-items: flex-start; gap: 0;
    position: absolute; top: 100%; left: 0; right: 0;
    padding: 14px var(--gutter) 34px;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 30px 40px -20px rgba(0,0,0,0.9);
  }
  .nav.open .nav__links a { padding: 16px 0; width: 100%; border-bottom: 1px solid var(--border); font-size: 0.9rem; }
  .nav.open .nav__actions { display: block; }
  .nav.open .nav__actions .btn { display: inline-flex; margin-top: 18px; }
  .grid--3, .band .grid--4, .specs { grid-template-columns: repeat(2, 1fr); }
  .split, .contact-grid { grid-template-columns: 1fr; }
  .split__media { order: -1; aspect-ratio: 16/10; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .footer__top { grid-template-columns: 1fr 1fr; }
  .hero__badges { display: none; }
}
@media (max-width: 580px) {
  .grid--3, .grid--2, .band .grid--4, .gallery, .footer__top, .specs, .field-row { grid-template-columns: 1fr; }
  .shot:nth-child(4n+1) { aspect-ratio: 4/3; }
  .hero { align-items: center; }
  .reel { aspect-ratio: 4/3; }
}

@media (max-height: 700px) {
  .hero__foot { display: none; }
}

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