:root {
  --bg: #0a0a0c;
  --bg-soft: #111115;
  --panel: rgba(255, 255, 255, 0.04);
  --panel-strong: rgba(255, 255, 255, 0.06);
  --text: #f7f3ee;
  --muted: #b8b0a6;
  --line: rgba(255, 255, 255, 0.08);
  --accent: #f0e2cf;
  --accent-dark: #111111;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
  --radius: 22px;
  --radius-sm: 14px;
  --max-width: 1240px;
}

.film-card-link {
  display: block;
}

.page-background-video {
  position: fixed;
  inset: 0;
  z-index: -2;
  overflow: hidden;
  background: #000;
}

.page-background-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(12px);
  transform: scale(1.06);
}

.page-background-video::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 1;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top left, rgba(255,255,255,0.04), transparent 30%),
    linear-gradient(180deg, #0a0a0c 0%, #0d0d10 100%);
  color: var(--text);
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img,
video {
  display: block;
  width: 100%;
}

img {
  object-fit: cover;
}

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

button,
input,
textarea {
  font: inherit;
}

.container {
  width: min(calc(100% - 2rem), var(--max-width));
  margin: 0 auto;
}

.section {
  padding: 6rem 0;
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.72rem;
}

.section-heading {
  margin-bottom: 2.2rem;
}

.section-heading-inline {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 1rem;
  flex-wrap: wrap;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  line-height: 0.95;
  letter-spacing: -0.03em;
}

h1 {
  font-size: clamp(3.3rem, 8vw, 7rem);
  max-width: 10ch;
  margin-bottom: 1.25rem;
}

h2 {
  font-size: clamp(2.4rem, 4vw, 4.4rem);
}

h3 {
  font-size: 1.7rem;
}

p {
  margin-top: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(18px);
  background: rgba(10, 10, 12, 0.72);
  border-bottom: 1px solid var(--line);
}

.nav {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.75rem;
  letter-spacing: 0.04em;
}

.site-nav {
  display: flex;
  gap: 1.5rem;
}

.site-nav a {
  color: var(--muted);
  position: relative;
  transition: color 0.25s ease;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.35rem;
  width: 100%;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.site-nav a:hover {
  color: var(--text);
}

.site-nav a:hover::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  background: transparent;
  border: 0;
  padding: 0;
  width: 44px;
  height: 44px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--text);
  margin: 6px auto;
}

.hero {
  padding-top: 8rem;
  padding-bottom: 7rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2rem;
  align-items: center;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.hero-text,
.about-text,
.contact-copy {
  max-width: 58ch;
  color: var(--muted);
  font-size: 1.05rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 1.25rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  transition: transform 0.22s ease, background 0.22s ease, color 0.22s ease, border-color 0.22s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

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

.btn-secondary {
  background: transparent;
  color: var(--text);
}

.hero-image-card,
.featured-reel,
.film-card,
.photo-card,
.contact-form {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.hero-image-card {
  position: relative;
}

.hero-image-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.28) 100%);
  pointer-events: none;
}

.hero-image-card img {
  aspect-ratio: 4 / 5;
}

.featured-reel {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  margin-bottom: 1.5rem;
}

.video-frame video {
  aspect-ratio: 16 / 9;
  background: #000;
}

.reel-copy {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.scroll-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(220px, 1fr));
  gap: 1rem;
}

.film-card {
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.film-card:hover,
/* .photo-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255,255,255,0.16);
} */

.film-card img {
  aspect-ratio: 16 / 10;
}

.film-card-copy {
  padding: 1rem;
}

.filters {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.filter-btn {
  background: transparent;
  color: var(--muted);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.65rem 1rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.filter-btn:hover {
  color: var(--text);
  border-color: rgba(255,255,255,0.16);
}

.filter-btn.active {
  background: var(--accent);
  color: var(--accent-dark);
  border-color: transparent;
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.photo-card {
  position: relative;
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.photo-card img {
  aspect-ratio: 4 / 5;
}

.about-grid,
.contact-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2rem;
}

.about-lists {
  display: grid;
  gap: 1rem;
}

.about-lists > div {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 1.2rem 1.2rem 1rem;
}

.about-lists h3 {
  margin-bottom: 0.65rem;
}

.about-lists ul {
  margin: 0;
  padding-left: 1rem;
  color: var(--muted);
}

.response-time {
  color: var(--muted);
}

.contact-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 1.5rem;
}

.social-link {
  color: var(--muted);
  transition: color 0.2s ease;
}

.social-link:hover {
  color: var(--text);
}

.contact-form {
  padding: 1.5rem;
}

.contact-form label {
  display: block;
  margin-bottom: 0.45rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  margin-bottom: 1rem;
  background: rgba(255,255,255,0.03);
  color: var(--text);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0.95rem 1rem;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: rgba(240, 226, 207, 0.45);
  background: rgba(255,255,255,0.05);
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 1.2rem 0;
  background: rgba(255,255,255,0.02);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  color: var(--muted);
}

.hidden {
  display: none !important;
}

@media (max-width: 980px) {
  .hero-grid,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .featured-reel {
    grid-template-columns: 1fr;
  }

  .scroll-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .photo-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 760px) {
  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 78px;
    left: 0;
    right: 0;
    background: rgba(10, 10, 12, 0.98);
    border-bottom: 1px solid var(--line);
    display: none;
    flex-direction: column;
    padding: 1rem;
  }

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

  .scroll-row,
  .photo-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 4.25rem 0;
  }

  h1 {
    font-size: 3rem;
  }
}
