/* ─── Design Tokens ─────────────────────────────────────── */
:root {
  --gold:    #F0C94C;
  --amber:   #E5A93C;
  --void:    #050505;
  --surface: #161616;
  --cream:   #FFFFFF;
  --muted:   #C8C8C8;
}

*, *::before, *::after { box-sizing: border-box; border-radius: 0 !important; }
html { scroll-behavior: smooth; }

body {
  background: var(--void);
  color: var(--cream);
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
}

/* ─── Loading Screen ─────────────────────────────────────── */
#loading {
  position: fixed; inset: 0; z-index: 999;
  background: var(--void);
  display: flex; align-items: center; justify-content: center;
  transition: opacity 1s ease;
}
#loading .line {
  width: 0; height: 1px; background: var(--gold);
  animation: expandLine 1.4s cubic-bezier(0.4,0,0.2,1) forwards 0.3s;
}
@keyframes expandLine { to { width: 200px; } }

/* ─── Navigation ─────────────────────────────────────────── */
#nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 20px 24px;
  transition: background 0.6s ease, border-color 0.6s ease;
  border-bottom: 1px solid transparent;
}
#nav.scrolled {
  background: rgba(5,5,5,0.96);
  border-bottom-color: #1c1c1c;
}
.nav-inner {
  max-width: 960px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center;
}
.nav-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 17px; font-weight: 600;
  color: var(--gold); text-decoration: none;
  letter-spacing: 5px; text-transform: uppercase;
}
.nav-brand sup { font-size: 9px; vertical-align: super; }

/* ─── Buttons ────────────────────────────────────────────── */
.btn-outline {
  display: inline-block;
  border: 1px solid var(--gold);
  color: var(--cream);
  padding: 12px 28px;
  font-family: 'Jost', sans-serif; font-size: 12px; font-weight: 400;
  text-transform: uppercase; letter-spacing: 3px;
  text-decoration: none; background: transparent;
  cursor: pointer;
  transition: background 0.35s ease, color 0.35s ease, box-shadow 0.35s ease;
}
.btn-outline:hover {
  background: var(--gold); color: var(--void);
  box-shadow: 0 4px 20px rgba(212,175,55,0.35);
}
.btn-solid {
  display: block; width: 100%;
  background: var(--gold); color: var(--void);
  padding: 18px 32px;
  font-family: 'Jost', sans-serif; font-size: 13px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 3px;
  border: none; cursor: pointer;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}
.btn-solid:hover {
  background: var(--amber);
  box-shadow: 0 4px 24px rgba(212,175,55,0.4);
}
.btn-solid:active { transform: scale(0.99); }

/* ─── Hero ───────────────────────────────────────────────── */
#hero {
  position: relative; height: 100dvh; min-height: 600px;
  overflow: hidden; display: flex; flex-direction: column;
}
#hero-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  transition: opacity 1.2s ease;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom,
    rgba(5,5,5,0.45) 0%,
    rgba(5,5,5,0.55) 50%,
    rgba(5,5,5,0.85) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  flex: 1; display: flex; flex-direction: column;
  justify-content: flex-end;
  padding: 80px 24px 56px;
  max-width: 960px; margin: 0 auto; width: 100%;
}
@media (min-width: 768px) {
  .hero-content { padding: 100px 48px 72px; }
}

/* ─── Sections ───────────────────────────────────────────── */
.section {
  padding: 80px 24px;
  max-width: 720px; margin: 0 auto;
}
@media (min-width: 768px) {
  .section { padding: 100px 48px; max-width: 960px; }
}

.section-label {
  display: block;
  font-family: 'Jost', sans-serif;
  font-size: 13px; font-weight: 500;
  text-transform: uppercase; letter-spacing: 4px;
  color: var(--gold); margin-bottom: 16px; text-align: center;
}

.gold-rule {
  width: 48px; height: 1px;
  background: var(--gold); margin: 20px auto 48px;
}

/* ─── Quote Block ────────────────────────────────────────── */
blockquote {
  border-left: 2px solid var(--gold);
  padding: 4px 0 4px 28px;
  margin: 48px 0;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic; font-size: 22px; line-height: 1.65;
}
@media (min-width: 768px) { blockquote { font-size: 26px; } }

/* ─── Portrait ───────────────────────────────────────────── */
.portrait {
  filter: grayscale(100%) brightness(0.75) contrast(1.05);
  transition: filter 0.8s ease;
  box-shadow: 8px 8px 40px rgba(212,175,55,0.08);
}
.portrait:hover {
  filter: grayscale(60%) brightness(0.85) sepia(25%) contrast(1.05);
}

/* ─── Service / Film-Strip Cards ─────────────────────────── */
.film-strip {
  position: relative;
  border-left: 1px dotted #3a3a3a;
  border-right: 1px dotted #3a3a3a;
  padding: 0 22px;
}
.perf-col {
  position: absolute; top: 0; bottom: 0; width: 18px;
  display: flex; flex-direction: column;
  justify-content: space-evenly; align-items: center;
}
.perf-col.left { left: 0; }
.perf-col.right { right: 0; }
.perf-hole {
  width: 7px; height: 10px;
  background: var(--void); border: 1px solid #3a3a3a;
}
.service-img {
  width: 100%; aspect-ratio: 16/9; object-fit: cover;
  display: block;
  filter: brightness(0.72) contrast(1.1) saturate(0.85);
}
.service-body {
  padding: 24px 0 28px;
  border-bottom: 1px solid #222;
}
.step-item {
  border-left: 2px solid var(--gold);
  padding-left: 24px; margin-bottom: 32px;
}

/* ─── Form ───────────────────────────────────────────────── */
.form-group { position: relative; margin-bottom: 36px; }
.form-label {
  position: absolute; top: 16px; left: 0;
  font-family: 'Jost', sans-serif;
  font-size: 12px; font-weight: 300;
  text-transform: uppercase; letter-spacing: 2px;
  color: var(--muted); pointer-events: none;
  transition: all 0.3s ease;
}
.form-group.active .form-label,
.form-group.filled .form-label {
  top: -10px; font-size: 10px; color: var(--gold);
}
.form-input {
  width: 100%; background: transparent;
  border: none; border-bottom: 1px solid #2e2e2e;
  padding: 14px 0; color: var(--cream);
  font-family: 'Jost', sans-serif; font-size: 16px; font-weight: 300;
  outline: none;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.form-input:focus {
  border-bottom-color: var(--gold);
  box-shadow: 0 2px 8px rgba(212,175,55,0.3);
}
textarea.form-input { resize: none; height: 100px; }

/* ─── Fade-in Animations ─────────────────────────────────── */
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity 1.2s ease, transform 1.2s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.15s; }
.reveal-delay-2 { transition-delay: 0.3s; }
.reveal-delay-3 { transition-delay: 0.45s; }

/* ─── Form Success State ─────────────────────────────────── */
#form-success {
  display: none; text-align: center; padding: 48px 0;
  animation: fadeIn 1.2s ease forwards;
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

/* ─── Divider / misc ─────────────────────────────────────── */
.gold-dot-line {
  display: block; text-align: center;
  font-size: 11px; letter-spacing: 6px;
  color: var(--gold); margin: 0 0 12px;
}
