/* ==========================================================================
   ShotByEsco — cinematic single-theme dark identity
   Palette: underexposed blue-black ground, tungsten amber accent,
   desaturated grading-teal for quiet secondary marks.
   One fixed photo sits behind the entire page; every section is a
   translucent "glass" panel that lets it show through continuously.
   ========================================================================== */

:root {
  --ground: #0d0f10;
  --ground-raised: #17191b;
  --ground-raised-2: #1e2123;
  --line: rgba(242, 239, 233, 0.10);
  --line-strong: rgba(242, 239, 233, 0.18);
  --ink: #f2efe9;
  --ink-dim: #9a9d9f;
  --ink-faint: #6b6e70;
  --accent: #e8934a;
  --accent-soft: rgba(232, 147, 74, 0.14);
  --accent-ink: #1a1206;
  --teal: #4c8f89;
  --dawn: #ffbd82;

  /* translucent "glass" surfaces — let the fixed background photo read through */
  --glass: rgba(23, 25, 27, 0.42);
  --glass-hover: rgba(30, 33, 35, 0.55);
  --glass-strong: rgba(13, 15, 16, 0.55);
  --glass-soft: rgba(23, 25, 27, 0.32);

  /* time-of-day scroll progress: 0 = top of page (dawn), 1 = bottom (deep night) — set by script.js */
  --tod: 0;
  /* background parallax drift, set by script.js as you scroll — stays within the slack built into .site-bg */
  --bg-shift: 0vh;

  --font-display: "Big Shoulders Display", "Arial Narrow", sans-serif;
  --font-body: "Work Sans", -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: "IBM Plex Mono", ui-monospace, "SFMono-Regular", monospace;

  color-scheme: dark;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
}

body {
  margin: 0;
  background: var(--ground);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ---------- fixed site-wide background photo ---------- */
/* One photo, pinned to the viewport, visible through every section on the page. */
.site-bg {
  position: fixed;
  top: -15vh; left: 0; right: 0; height: 130vh;
  z-index: -10;
  background:
    linear-gradient(180deg, rgba(13,15,16,0.55) 0%, rgba(13,15,16,0.16) 18%, rgba(13,15,16,0.3) 55%, rgba(13,15,16,0.62) 100%),
    url('images/photographer-bg.jpg');
  background-size: cover, cover;
  background-position: center, center 22%;
  background-repeat: no-repeat, no-repeat;
  transform: translateY(var(--bg-shift));
  will-change: transform;
}
.site-glow { position: fixed; inset: 0; z-index: -9; pointer-events: none; }
.site-glow-dawn {
  background: radial-gradient(ellipse 85% 55% at 75% 0%, rgba(255, 189, 130, 0.20), transparent 62%);
  opacity: calc(1 - var(--tod));
}
.site-glow-night {
  background: radial-gradient(ellipse 85% 55% at 75% 0%, rgba(76, 143, 137, 0.15), transparent 62%);
  opacity: var(--tod);
}
/* iOS/touch browsers handle fixed backgrounds poorly, and reduced-motion prefers a static page */
@media (hover: none) and (pointer: coarse) {
  .site-bg, .site-glow { position: absolute; }
  .site-bg { top: 0; height: 100vh; transform: none; }
}
@media (prefers-reduced-motion: reduce) {
  .site-bg, .site-glow { position: absolute; }
  .site-bg { top: 0; height: 100vh; transform: none; }
}

.wrap {
  max-width: 1180px;
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 48px);
}

a { color: inherit; }

h1, h2, h3 { margin: 0; text-wrap: balance; }

.display-xl {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.6rem, 7vw, 5.4rem);
  line-height: 0.98;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  text-shadow: 0 2px 24px rgba(0,0,0,0.55);
}

.display-lg {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 5vw, 3.4rem);
  line-height: 1.02;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin-bottom: 2.2rem;
  text-shadow: 0 2px 22px rgba(0,0,0,0.5);
}

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

.lede {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: var(--ink-dim);
  max-width: 42ch;
  text-shadow: 0 1px 10px rgba(0,0,0,0.5);
}

.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-dim);
  display: flex;
  align-items: center;
  gap: 0.6em;
  margin: 0 0 0.9rem;
  text-shadow: 0 1px 8px rgba(0,0,0,0.5);
}
.mono-label { margin-bottom: 0.9rem; }

.rec-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
  flex: none;
}

/* ---------- scroll reveal (fade text in, then back out) ---------- */
.reveal {
  opacity: 0;
  transform: translateY(56px) scale(0.97);
  transition: opacity 1.1s cubic-bezier(.19,1,.22,1), transform 1.1s cubic-bezier(.19,1,.22,1);
}
.reveal.is-visible { opacity: 1; transform: translateY(0) scale(1); }
.portfolio-grid .reel-card.reveal:nth-child(2) { transition-delay: 0.06s; }
.portfolio-grid .reel-card.reveal:nth-child(3) { transition-delay: 0.12s; }
.portfolio-grid .reel-card.reveal:nth-child(4) { transition-delay: 0.18s; }
.portfolio-grid .reel-card.reveal:nth-child(5) { transition-delay: 0.24s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; }
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.95em 1.6em;
  border-radius: 3px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease, border-color 0.15s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }

.btn-accent { background: var(--accent); color: var(--accent-ink); font-weight: 600; }
.btn-accent:hover { background: #f0a562; }

.btn-outline { border-color: var(--line-strong); color: var(--ink); background: rgba(13,15,16,0.25); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); }
.btn-outline:hover { border-color: var(--accent); color: var(--accent); }

.btn-sm { padding: 0.6em 1.2em; font-size: 0.75rem; white-space: nowrap; }
.nav-cta-mobile { display: none; }
.btn-full { width: 100%; }

.btn-row { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-top: 2.2rem; }

/* ---------- grain overlay ---------- */
.grain {
  position: fixed; inset: 0; z-index: 999; pointer-events: none;
  opacity: 0.05; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='120' height='120'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

/* ---------- header ---------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background 0.25s ease, border-color 0.25s ease;
}
.site-header.scrolled {
  background: rgba(13, 15, 16, 0.5);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
}
.header-row {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.2rem; padding-block: 1.1rem;
}
.logo {
  font-family: var(--font-display);
  font-weight: 700; font-size: 1.5rem; text-transform: uppercase;
  text-decoration: none; letter-spacing: 0.01em;
  text-shadow: 0 1px 10px rgba(0,0,0,0.5);
}
.main-nav { display: flex; gap: 2rem; margin-left: auto; margin-right: 2rem; }
.main-nav a {
  text-decoration: none; font-size: 0.9rem; color: var(--ink-dim);
  font-family: var(--font-mono); letter-spacing: 0.04em;
  transition: color 0.15s ease;
  text-shadow: 0 1px 8px rgba(0,0,0,0.5);
}
.main-nav a:hover { color: var(--ink); }

.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 8px;
  margin-left: 0.8rem;
}
.nav-toggle span { width: 22px; height: 2px; background: var(--ink); display: block; box-shadow: 0 1px 6px rgba(0,0,0,0.5); }

/* ---------- hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-block: clamp(6.5rem, 15vw, 8.5rem) clamp(5.5rem, 11vw, 7.5rem);
  overflow: hidden;
}
.hero-scrim {
  /* soft scrim behind the headline only, so the photo stays open toward the edges/corners */
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: radial-gradient(ellipse 62% 68% at 26% 48%, rgba(10,12,13,0.55), rgba(10,12,13,0) 72%);
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 420px);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  width: 100%;
}
.hero-inner { position: relative; }

/* eyebrow tag row: "Video × Websites × Content × Strategy" */
.tag-row { gap: 0.55em; flex-wrap: wrap; }
.tag-x { color: var(--ink-faint); }

.hero-headline { margin: 0 0 1rem; }
.headline-line { display: block; }
.marker-accent {
  font-family: "Permanent Marker", cursive;
  font-weight: 400;
  color: var(--accent);
  font-size: 1.12em;
  letter-spacing: 0.01em;
  text-shadow: 0 2px 20px rgba(232,147,74,0.35), 0 2px 24px rgba(0,0,0,0.55);
}

.hero-tagline {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-dim);
  margin: 0.5rem 0 0;
  text-shadow: 0 1px 8px rgba(0,0,0,0.5);
}

.hero-btn-row { margin-top: 1.8rem; }

.hero-location {
  margin-top: clamp(2.4rem, 6vw, 4rem);
  padding-left: 1rem;
  border-left: 2px solid var(--line-strong);
}
.hero-location p {
  margin: 0;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.7;
  color: var(--ink-faint);
  text-shadow: 0 1px 8px rgba(0,0,0,0.5);
}

/* right-side services panel, merged into the hero */
.hero-services {
  display: flex;
  flex-direction: column;
  background: var(--glass-strong);
  border: 1px solid var(--line);
  border-radius: 10px;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  overflow: hidden;
}
.hsi {
  position: relative;
  display: grid;
  grid-template-columns: auto auto 1fr auto;
  align-items: center;
  gap: 0.9rem;
  padding: 1.05rem 1.2rem;
  text-decoration: none;
  color: inherit;
  border-top: 1px solid var(--line);
  overflow: hidden;
  transition: background 0.25s ease;
}
.hero-services .hsi:first-child { border-top: none; }
/* sliding accent bar on the left edge */
.hsi::before {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--accent);
  transform: scaleY(0);
  transform-origin: center;
  transition: transform 0.3s cubic-bezier(.19,1,.22,1);
}
.hsi:hover { background: rgba(232, 147, 74, 0.07); }
.hsi:hover::before { transform: scaleY(1); }
.hsi:hover .hsi-arrow { transform: translateX(4px); color: var(--accent); }
.hsi:hover .hsi-text strong { transform: translateX(3px); }
.hsi:active { background: rgba(232, 147, 74, 0.12); }
.hsi-index {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.05em;
  color: var(--accent);
  display: inline-block;
  transition: transform 0.3s cubic-bezier(.34,1.56,.64,1);
}
.hsi:hover .hsi-index { transform: scale(1.25); }
.hsi-icon {
  width: 20px; height: 20px;
  padding: 7px;
  box-sizing: content-box;
  border: 1px solid var(--line-strong);
  border-radius: 6px;
  color: var(--accent);
  flex: none;
  transition: transform 0.3s cubic-bezier(.34,1.56,.64,1), border-color 0.25s ease, background 0.25s ease;
}
.hsi:hover .hsi-icon {
  transform: scale(1.12) rotate(-6deg);
  border-color: var(--accent);
  background: var(--accent-soft);
}
.hsi-text { display: flex; flex-direction: column; gap: 0.22rem; min-width: 0; }
.hsi-text strong {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.01em;
  color: var(--ink);
  display: inline-block;
  transition: transform 0.25s ease;
}
.hsi-text em {
  font-style: normal;
  font-family: var(--font-body);
  font-size: 0.76rem;
  line-height: 1.35;
  color: var(--ink-dim);
}
.hsi-arrow {
  font-family: var(--font-mono);
  color: var(--ink-faint);
  transition: transform 0.2s ease, color 0.2s ease;
}
@media (prefers-reduced-motion: reduce) {
  .hsi::before, .hsi-index, .hsi-icon, .hsi-text strong, .hsi-arrow { transition: none; }
}

/* scroll indicator */
.scroll-indicator {
  position: absolute;
  left: 50%;
  bottom: clamp(1.2rem, 3vw, 2.2rem);
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
}
.scroll-mouse {
  width: 22px; height: 34px;
  border: 2px solid var(--line-strong);
  border-radius: 12px;
  position: relative;
  display: block;
}
.scroll-dot {
  position: absolute;
  top: 6px; left: 50%;
  width: 4px; height: 8px;
  border-radius: 2px;
  background: var(--accent);
  transform: translateX(-50%);
  animation: scrollDot 1.8s ease-in-out infinite;
}
@keyframes scrollDot {
  0% { opacity: 1; top: 6px; }
  70% { opacity: 0; top: 18px; }
  100% { opacity: 0; top: 6px; }
}
.scroll-indicator p {
  margin: 0;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-faint);
  text-shadow: 0 1px 8px rgba(0,0,0,0.5);
}
@media (prefers-reduced-motion: reduce) {
  .scroll-dot { animation: none; }
}
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
}

.slate-corners { position: absolute; inset: clamp(16px, 3vw, 32px); pointer-events: none; z-index: 1; }
.corner { position: absolute; width: 22px; height: 22px; border-color: var(--line-strong); border-style: solid; border-width: 0; }
.corner.tl { top: 0; left: 0; border-top-width: 1px; border-left-width: 1px; }
.corner.tr { top: 0; right: 0; border-top-width: 1px; border-right-width: 1px; }
.corner.bl { bottom: 0; left: 0; border-bottom-width: 1px; border-left-width: 1px; }
.corner.br { bottom: 0; right: 0; border-bottom-width: 1px; border-right-width: 1px; }

.timecode {
  position: absolute; bottom: clamp(20px, 3vw, 36px); right: clamp(20px, 4vw, 40px);
  font-family: var(--font-mono); font-size: 0.8rem; color: var(--ink-faint);
  letter-spacing: 0.08em; margin: 0; z-index: 1;
  text-shadow: 0 1px 8px rgba(0,0,0,0.6);
}

/* ---------- marquee ---------- */
.marquee {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--glass-soft);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  overflow: hidden;
  white-space: nowrap;
  padding-block: 0.9rem;
}
.marquee-track {
  display: inline-flex;
  align-items: center;
  gap: 0.9em;
  font-family: var(--font-display);
  text-transform: uppercase;
  font-weight: 700;
  font-size: clamp(1.1rem, 2.4vw, 1.6rem);
  letter-spacing: 0.02em;
  color: var(--ink-dim);
  animation: marquee 26s linear infinite;
  width: max-content;
  text-shadow: 0 1px 8px rgba(0,0,0,0.5);
}
.marquee-track .dot { color: var(--accent); font-size: 0.7em; }
.marquee:hover .marquee-track { animation-play-state: paused; }

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

@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; }
  .marquee { overflow-x: auto; }
}

/* ---------- services ---------- */
.services { padding-block: clamp(4.5rem, 10vw, 7rem); border-top: 1px solid var(--line); text-align: center; }
.services .eyebrow { justify-content: center; }

.card-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(2.2rem, 6vw, 3.6rem);
  padding-block: clamp(1rem, 4vw, 2rem);
}
.card {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  background: none;
  padding: 0;
  position: relative;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  transition: transform 0.2s ease;
}
.card:hover .card-arrow { transform: translateX(4px); color: var(--accent); }
.card-index {
  font-family: var(--font-mono); color: var(--ink-faint);
  font-size: 0.85rem; letter-spacing: 0.08em;
  text-shadow: 0 1px 6px rgba(0,0,0,0.5);
  flex: none;
}
.card-icon { width: 38px; height: 38px; color: var(--accent); display: block; flex: none; filter: drop-shadow(0 1px 6px rgba(0,0,0,0.4)); }
.card h3 { font-family: var(--font-display); text-transform: uppercase; font-size: clamp(1.4rem, 3vw, 1.9rem); font-weight: 700; letter-spacing: 0.01em; text-shadow: 0 1px 10px rgba(0,0,0,0.4); }
.card-arrow {
  font-family: var(--font-mono); color: var(--ink-faint); font-size: 1.1rem;
  flex: none; transition: transform 0.2s ease, color 0.2s ease;
}
.card p { color: var(--ink-dim); margin: 0; max-width: 40ch; text-shadow: 0 1px 8px rgba(0,0,0,0.4); }

.services-link { display: inline-flex; align-items: center; gap: 0.5em; margin-top: clamp(1.5rem, 4vw, 2.5rem); }
.service-detail-list .services-link { margin-top: 0; }
.services-btn-row { flex-direction: column; align-items: center; justify-content: center; margin-top: clamp(1.5rem, 4vw, 2.5rem); }
.services-btn-row .btn { width: min(280px, 100%); text-align: center; }

/* ---------- parallax band ---------- */
/* Just a taller window onto the same fixed site background — no image of its own. */
.parallax {
  position: relative;
  min-height: clamp(440px, 78vh, 780px);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.parallax-content {
  text-align: center;
  padding-block: 3rem;
  position: relative;
}
.parallax-content::before {
  /* soft radial scrim behind just the text, so the photo stays open everywhere else */
  content: "";
  position: absolute;
  inset: -2rem -3rem;
  z-index: -1;
  background: radial-gradient(ellipse 70% 75% at center, rgba(10,12,13,0.55), rgba(10,12,13,0) 72%);
}
.parallax-content .display-lg { margin-bottom: 0; }
.parallax-content .eyebrow { justify-content: center; }

/* ---------- secondary page hero (services.html) ---------- */
.page-hero {
  position: relative;
  padding-block: clamp(6.5rem, 14vw, 9rem) clamp(3rem, 7vw, 4.5rem);
  overflow: hidden;
}
.page-hero-scrim {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background: radial-gradient(ellipse 60% 65% at 22% 40%, rgba(10,12,13,0.55), rgba(10,12,13,0) 72%);
}
.page-hero-inner { position: relative; z-index: 1; }
.back-link {
  font-family: var(--font-mono); font-size: 0.8rem; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--ink-dim); text-decoration: none; display: inline-flex; align-items: center; gap: 0.5em;
  margin-bottom: 1.6rem; text-shadow: 0 1px 8px rgba(0,0,0,0.5);
  transition: color 0.15s ease;
}
.back-link:hover { color: var(--accent); }

/* ---------- service detail list (services.html) ---------- */
.service-detail-list {
  display: flex; flex-direction: column; align-items: center;
  gap: clamp(2.2rem, 6vw, 3.6rem);
  padding-block: clamp(2rem, 5vw, 3rem) clamp(4.5rem, 10vw, 7rem);
  text-align: center;
}
.service-detail {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 1.2rem;
}
.service-detail-icon {
  width: 38px; height: 38px; color: var(--accent); flex: none;
  filter: drop-shadow(0 1px 8px rgba(0,0,0,0.4));
}
.service-detail-index {
  font-family: var(--font-mono); color: var(--ink-faint); font-size: 0.85rem; letter-spacing: 0.08em;
  text-shadow: 0 1px 6px rgba(0,0,0,0.5); flex: none;
}
.service-detail h2 {
  font-family: var(--font-display); text-transform: uppercase; font-weight: 700;
  font-size: clamp(1.4rem, 3vw, 1.9rem); letter-spacing: 0.01em; line-height: 1.05;
  margin: 0; text-shadow: 0 1px 10px rgba(0,0,0,0.4);
}

/* ---------- word-by-word scroll reveal ---------- */
.word-fade .word { color: var(--ink-faint); opacity: 0.4; transition: color 0.25s ease, opacity 0.25s ease; }
.word-fade .word.active { color: var(--ink); opacity: 1; }
/* keep accent-italic words their own color — word-fade only dims/lights them via opacity */
.word-fade .accent-italic .word { color: var(--accent); }
@media (prefers-reduced-motion: reduce) {
  .word-fade .word { color: var(--ink); opacity: 1; }
}

/* ---------- portfolio ---------- */
.portfolio { padding-block: clamp(4.5rem, 10vw, 7rem); border-top: 1px solid var(--line); }

.portfolio-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1.6rem;
}
.reel-card { display: flex; flex-direction: column; gap: 0.7rem; }
.reel-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #000;
  border: 1px solid var(--line-strong);
  border-radius: 4px;
  overflow: hidden;
}
.reel-frame video { width: 100%; height: 100%; display: block; object-fit: cover; background: #000; }
.reel-frame iframe.reel-embed { width: 100%; height: 100%; display: block; border: 0; }
.reel-tag {
  font-family: var(--font-mono); font-size: 0.75rem; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--teal); margin: 0;
  text-shadow: 0 1px 8px rgba(0,0,0,0.5);
}
.reel-card h3 { font-family: var(--font-display); font-weight: 700; font-size: 1.2rem; text-transform: uppercase; letter-spacing: 0.01em; text-shadow: 0 1px 10px rgba(0,0,0,0.4); }

/* ---------- contact ---------- */
.contact { padding-block: clamp(4.5rem, 10vw, 7rem); }
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2.5rem, 6vw, 5rem);
  align-items: start;
}
.info-list { margin: 2rem 0 0; display: flex; flex-direction: column; gap: 1.1rem; }
.info-list > div { display: flex; flex-direction: column; gap: 0.2rem; }
.info-list dt {
  font-family: var(--font-mono); font-size: 0.75rem; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--ink-faint); margin: 0;
  text-shadow: 0 1px 6px rgba(0,0,0,0.5);
}
.info-list dd { margin: 0; font-size: 1.05rem; text-shadow: 0 1px 8px rgba(0,0,0,0.4); }
.info-list a { text-decoration: none; border-bottom: 1px solid var(--line-strong); }
.info-list a:hover { color: var(--accent); border-color: var(--accent); }

.social-row { display: flex; gap: 0.7rem; margin-top: 2rem; }
.social-row a {
  width: 38px; height: 38px; display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid var(--line-strong); border-radius: 3px; text-decoration: none;
  font-family: var(--font-mono); font-size: 0.7rem; letter-spacing: 0.04em;
  color: var(--ink-dim); transition: color 0.15s ease, border-color 0.15s ease;
  background: rgba(13,15,16,0.3); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
}
.social-row a:hover { color: var(--accent); border-color: var(--accent); }

.contact-form {
  display: flex; flex-direction: column; gap: 1.2rem;
  background: var(--glass);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--line);
  padding: clamp(1.6rem, 3vw, 2.4rem);
  border-radius: 4px;
}
.field { display: flex; flex-direction: column; gap: 0.5rem; }
.field label { font-family: var(--font-mono); font-size: 0.78rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink-dim); }
.req { color: var(--accent); }
.field input, .field select, .field textarea {
  background: rgba(13, 15, 16, 0.45);
  border: 1px solid var(--line-strong);
  border-radius: 3px;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 0.75em 0.9em;
  resize: vertical;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--accent);
}
.form-note { font-size: 0.85rem; color: var(--ink-faint); margin: 0; text-align: center; text-shadow: 0 1px 6px rgba(0,0,0,0.5); }

/* ---------- footer ---------- */
.site-footer { border-top: 1px solid var(--line); padding-block: 2rem; }
.footer-row {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 1rem;
}
.footer-row p { margin: 0; color: var(--ink-faint); font-size: 0.85rem; font-family: var(--font-mono); text-shadow: 0 1px 6px rgba(0,0,0,0.5); }
.footer-row .social-row { margin-top: 0; }
.footer-row .social-row a { width: 32px; height: 32px; }

/* ---------- responsive ---------- */
@media (max-width: 860px) {
  .main-nav { display: none; }
  .nav-toggle { display: flex; }
  .card-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .header-cta { display: none; }
  .nav-cta-mobile {
    display: inline-block; margin-top: 0.6rem;
    color: var(--accent) !important; font-weight: 600;
  }
}

@media (max-width: 860px) {
  .main-nav.open {
    display: flex; flex-direction: column; gap: 0;
    position: absolute; top: 100%; left: 0; right: 0;
    background: rgba(13, 15, 16, 0.85);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--line);
    padding: 0.5rem clamp(20px, 5vw, 48px) 1.2rem;
    margin: 0;
  }
  .main-nav.open a { padding: 0.8rem 0; border-bottom: 1px solid var(--line); }
}
