:root {
  --color-primary: #150c08;
  --color-accent: #e2622a;
  --color-bg: #150c08;
  --color-surface: #1a1414;
  --color-text: #f6ede4;
  --color-text-muted: #c2a48f;
  --font-heading: 'Helvetica Neue', Arial, sans-serif;
  --font-body: 'Helvetica Neue', Arial, sans-serif;
  --radius: 4px;
  --max-width: 1100px;
  --header-h: 74px;
}

section.mood-b { --mood-accent: #c76a3a; }
section.mood-c { --mood-accent: #b9552f; }

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
}

body {
  background-color: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  padding-top: var(--header-h);
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.2;
  margin-top: 0;
}

a {
  color: var(--color-accent);
  text-decoration: none;
  transition: color 0.2s ease, opacity 0.2s ease;
}

a:hover {
  text-decoration: underline;
}

img {
  max-width: 100%;
  display: block;
}

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

/* ---- Header / Nav (fixed) ---- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-h);
  background-color: var(--color-primary);
  box-shadow: 0 2px 14px rgba(0,0,0,0.4);
}

.site-header .container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.site-title {
  font-family: var(--font-heading);
  color: var(--color-text);
  font-size: 1.3rem;
  letter-spacing: 0.04em;
  margin: 0;
}

.site-title a { color: var(--color-text); }
.site-title a:hover { text-decoration: none; opacity: 0.85; }

.site-nav ul {
  list-style: none;
  display: flex;
  gap: 28px;
  margin: 0;
  padding: 0;
}

.site-nav a {
  position: relative;
  color: var(--color-text-muted);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding-bottom: 6px;
}

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

.site-nav a[aria-current="page"] {
  color: var(--color-accent);
  text-decoration: none;
}

.site-nav a[aria-current="page"]::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background-color: var(--color-accent);
}

/* ---- Full-bleed hero ---- */
.hero-full {
  position: relative;
  background-color: #0d0d0d;
}

.hero-full .hero-bg {
  width: 100%;
  height: 78vh;
  min-height: 420px;
  object-fit: cover;
  object-position: center 15%;
  display: block;
  opacity: 0.92;
}

.hero-full .hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(224,57,43,0.38) 0%, rgba(224,57,43,0) 45%),
    linear-gradient(180deg, rgba(13,13,13,0.05) 0%, rgba(13,13,13,0.6) 55%, rgba(13,13,13,0.94) 100%);
  display: flex;
  align-items: flex-end;
}

.hero-full .hero-content {
  padding: 0 48px 64px;
  max-width: 700px;
}

.hero-full .eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--color-accent);
  margin: 0 0 16px;
}

.hero-full h1 {
  font-size: 2.8rem;
  line-height: 1.05;
  margin: 0 0 16px;
}

.hero-full .tagline {
  font-size: 1.1rem;
  color: var(--color-text-muted);
  max-width: 520px;
  margin: 0 0 28px;
}

/* ---- Simple page header (non-home pages) ---- */
.page-header {
  padding: 56px 0 8px;
}

.page-header h1 {
  font-size: 2rem;
  margin: 0 0 8px;
}

.page-header p {
  color: var(--color-text-muted);
  margin: 0;
}

/* ---- Buttons ---- */
.btn {
  display: inline-block;
  background-color: var(--color-accent);
  color: #fff;
  padding: 13px 30px;
  border-radius: var(--radius);
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.btn:hover {
  opacity: 0.9;
  text-decoration: none;
  transform: translateY(-2px);
}

.btn-outline {
  background-color: transparent;
  border: 1px solid var(--color-accent);
  color: var(--color-accent);
}

/* ---- Sections ---- */
section { padding: 56px 0; }

/* Tonal identity system: each section gets a gentle, related-but-distinct
   background and its own accent echo, so long pages have rhythm instead
   of one flat repeated block. All three stay in the same warm dark-red
   family for cohesion. --mood-accent falls back to the global accent. */
section.mood-a {
  background: var(--color-bg);
  border-top: 1px solid rgba(224,57,43,0.12);
}

section.mood-b {
  background: linear-gradient(165deg, #1f1210 0%, #130b0a 100%);
  border-top: 1px solid rgba(194,82,58,0.16);
}

section.mood-c {
  background: linear-gradient(165deg, #1a0f16 0%, #110a0e 100%);
  border-top: 1px solid rgba(184,70,95,0.16);
}

section.alt { background-color: var(--color-surface); }

.section-title { text-align: center; margin-bottom: 40px; }

.section-title h2 {
  display: inline-block;
  position: relative;
  font-size: 1.7rem;
  padding-bottom: 16px;
}

.section-title h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 44px;
  height: 3px;
  background-color: var(--mood-accent, var(--color-accent));
}

.section-title p { color: var(--color-text-muted); }

.eyebrow {
  display: inline-block;
  color: var(--mood-accent, var(--color-accent));
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.8rem;
  font-weight: 700;
  margin: 0 0 12px;
}

.medium-heading {
  font-size: 1.2rem;
  margin: 0 0 20px;
  color: var(--mood-accent, var(--color-accent));
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ---- Video embed ---- */
.video-wrap {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  max-width: 800px;
  margin: 0 auto;
  border-radius: var(--radius);
  background-color: #000;
}

.video-wrap iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: 0;
}

/* ---- Gallery grid ---- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
}

.gallery-item {
  background-color: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 28px rgba(224,57,43,0.18);
}

.gallery-item img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  cursor: pointer;
}

.gallery-caption { padding: 14px 16px 18px; }

.gallery-caption h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 2px;
}

.gallery-caption p {
  color: var(--color-text-muted);
  font-size: 0.85rem;
  margin: 0;
}

/* ---- Lightbox ---- */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(8,6,6,0.94);
  align-items: center;
  justify-content: center;
  padding: 32px;
}

.lightbox.active { display: flex; }

.lightbox img {
  max-width: 92vw;
  max-height: 88vh;
  width: auto;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 24px 64px rgba(0,0,0,0.6);
}

.lightbox .lightbox-caption {
  position: absolute;
  bottom: 24px;
  left: 0;
  right: 0;
  text-align: center;
  color: var(--color-text-muted);
  font-size: 0.85rem;
}

.lightbox .lightbox-close {
  position: absolute;
  top: 20px;
  right: 28px;
  background: none;
  border: none;
  color: var(--color-text);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  padding: 4px 10px;
}

.lightbox .lightbox-close:hover { color: var(--color-accent); }

/* ---- About page ---- */
.about-grid {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 48px;
  align-items: start;
}

.about-grid img {
  border-radius: var(--radius);
  box-shadow: 0 16px 32px rgba(0,0,0,0.4);
}

.about-grid h2 { margin-top: 0; }

@media (max-width: 720px) {
  .about-grid { grid-template-columns: 1fr; }
}

.prose-block {
  max-width: 760px;
  margin: 0 auto;
}

/* ---- Contact page ---- */
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

@media (max-width: 720px) {
  .contact-wrap { grid-template-columns: 1fr; }
}

.contact-info h3 { margin-bottom: 4px; }
.contact-info p { margin-top: 0; color: var(--color-text-muted); }

form { display: flex; flex-direction: column; gap: 16px; }

label { font-size: 0.9rem; font-weight: bold; margin-bottom: -8px; }

input, textarea {
  font-family: var(--font-body);
  padding: 12px;
  border: 1px solid #3a2a28;
  border-radius: var(--radius);
  background-color: rgba(255,255,255,0.04);
  color: var(--color-text);
  font-size: 1rem;
}

input:focus, textarea:focus {
  border-color: var(--mood-accent, var(--color-accent));
  outline: none;
}

textarea { min-height: 140px; resize: vertical; }

/* ---- Footer ---- */
.site-footer {
  background-color: var(--color-primary);
  color: var(--color-text-muted);
  padding: 32px 0;
  margin-top: 0;
  text-align: center;
  font-size: 0.85rem;
}

.site-footer a { color: var(--color-text-muted); }
