:root {
  --bg: #f7f5f1;
  --bg-dark: #14110f;
  --fg: #1c1916;
  --fg-dark: #f0ebe3;
  --muted: #7a6f64;
  --accent: #b8946a;
  --accent-strong: #a07a4f;
  --serif: "Cormorant Garamond", "Times New Roman", serif;
  --sans: "Inter", system-ui, -apple-system, sans-serif;
  --max: 1200px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  color: var(--fg);
  background: var(--bg);
  line-height: 1.6;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent-strong); text-decoration: none; transition: color .2s; }
a:hover { color: var(--accent); }

.container { max-width: var(--max); margin: 0 auto; padding: 0 24px; }

/* Header */
.site-header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(20, 17, 15, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.brand {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: var(--fg-dark);
}
.brand:hover { color: var(--accent); }
.site-header nav { display: flex; gap: 28px; }
.site-header nav a {
  color: var(--fg-dark);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}
.site-header nav a:hover { color: var(--accent); }

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center;
  color: var(--fg-dark);
  background: var(--bg-dark);
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  filter: grayscale(20%) brightness(0.7);
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(20,17,15,0.45) 0%, rgba(20,17,15,0.85) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  padding: 120px 24px 60px;
  text-align: center;
}
.hero-content h1 {
  font-family: var(--serif);
  font-size: clamp(48px, 9vw, 96px);
  font-weight: 500;
  margin: 0 0 16px;
  letter-spacing: -1px;
  line-height: 1.05;
}
.hero-content .tagline {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(20px, 3vw, 28px);
  color: var(--accent);
  margin: 0 0 40px;
  letter-spacing: 1px;
}
.btn-primary {
  display: inline-block;
  padding: 14px 32px;
  background: transparent;
  color: var(--fg-dark);
  border: 1px solid var(--accent);
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all .25s;
  font-family: var(--sans);
  font-weight: 400;
}
.btn-primary:hover {
  background: var(--accent);
  color: var(--bg-dark);
}

/* Sections */
.section {
  padding: 100px 0;
}
.section-dark {
  background: var(--bg-dark);
  color: var(--fg-dark);
}
.section h2 {
  font-family: var(--serif);
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 500;
  margin: 0 0 48px;
  letter-spacing: -0.5px;
  position: relative;
  padding-bottom: 20px;
}
.section h2::after {
  content: "";
  position: absolute; left: 0; bottom: 0;
  width: 60px; height: 2px;
  background: var(--accent);
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
}
@media (max-width: 768px) {
  .two-col { grid-template-columns: 1fr; gap: 32px; }
  .section { padding: 64px 0; }
  .site-header nav { gap: 16px; }
  .site-header nav a { font-size: 12px; }
}

.col p { font-size: 17px; margin: 0 0 18px; }
.muted { color: var(--muted); }
.section-dark .muted { color: rgba(240, 235, 227, 0.55); }
.small { font-size: 13px; }

/* Data list */
.data-list { display: grid; grid-template-columns: max-content 1fr; gap: 12px 24px; margin: 0; }
.data-list dt {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--muted);
  font-weight: 500;
}
.data-list dd { margin: 0; font-size: 16px; }

/* Showreel */
.showreel {
  max-width: 960px;
  margin: 0 auto;
}
.video-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
}
.video-frame iframe,
.video-frame video,
.video-frame .plyr {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  border: 0;
}

/* Plyr theme — match site accent */
.plyr {
  --plyr-color-main: var(--accent);
  --plyr-video-control-color-hover: #fff;
  --plyr-tab-focus-color: var(--accent);
  --plyr-range-thumb-background: var(--accent);
  --plyr-range-fill-background: var(--accent);
  --plyr-video-progress-buffered-background: rgba(255,255,255,0.25);
  font-family: var(--sans);
}

/* Gallery */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 4px;
}
.gallery-item {
  display: block;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  background: #ddd;
  position: relative;
  cursor: zoom-in;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s;
}
.gallery-item:hover img { transform: scale(1.05); }

/* Videos grid */
.videos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
  gap: 32px;
}
@media (max-width: 480px) {
  .videos-grid { grid-template-columns: 1fr; }
}
.video-card h3 {
  font-family: var(--serif);
  font-size: 22px;
  margin: 16px 0 8px;
  font-weight: 500;
}

/* Contact form */
.contact-form { display: flex; flex-direction: column; gap: 16px; position: relative; }
.contact-form label {
  display: flex; flex-direction: column;
  font-size: 12px; text-transform: uppercase; letter-spacing: 1px; color: var(--muted);
}
.contact-form input,
.contact-form textarea {
  margin-top: 8px;
  padding: 12px 14px;
  border: 1px solid #d4cdc0;
  background: #fff;
  font-family: var(--sans); font-size: 15px;
  color: var(--fg);
}
.contact-form input:focus,
.contact-form textarea:focus { outline: none; border-color: var(--accent); }
.contact-form button { align-self: flex-start; margin-top: 8px; color: var(--fg); border-color: var(--accent-strong); }
.contact-form button:hover { background: var(--accent-strong); color: #fff; }

.contact-list { list-style: none; padding: 0; margin: 0 0 24px; font-size: 16px; }
.contact-list li { padding: 6px 0; }
.socials { display: flex; gap: 16px; }
.socials a {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding-bottom: 2px;
  border-bottom: 1px solid var(--accent);
}

.success-box {
  background: #e8f3e8;
  border-left: 3px solid #5a8a5a;
  padding: 12px 16px;
  margin-bottom: 24px;
  font-size: 14px;
  color: #2d5a2d;
}

/* Footer */
.site-footer {
  background: var(--bg-dark);
  color: var(--fg-dark);
  padding: 32px 0;
  text-align: center;
  font-size: 14px;
}
.site-footer p { margin: 4px 0; }
.site-footer a { color: rgba(240, 235, 227, 0.4); }
.site-footer a:hover { color: var(--accent); }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.95);
  display: none;
  align-items: center; justify-content: center;
  z-index: 1000;
  cursor: zoom-out;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 92vw; max-height: 92vh; object-fit: contain; }
.lightbox .lb-caption {
  position: absolute; bottom: 24px; left: 0; right: 0;
  text-align: center; color: #fff; font-size: 14px;
}
.lightbox .lb-close,
.lightbox .lb-prev,
.lightbox .lb-next {
  position: absolute; background: none; border: 0;
  color: #fff; font-size: 28px; cursor: pointer; padding: 12px;
}
.lightbox .lb-close { top: 16px; right: 16px; }
.lightbox .lb-prev { left: 16px; top: 50%; transform: translateY(-50%); }
.lightbox .lb-next { right: 16px; top: 50%; transform: translateY(-50%); }
