/* ─── RESET & BASE ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --green-deep:   #0f3d25;
  --green:        #1a5c38;
  --green-light:  #2d7a50;
  --cream:        #fdf6e3;
  --cream-card:   #f5efe0;
  --gold:         #c9a843;
  --gold-dark:    #a8882e;
  --gold-pale:    #e8d5a0;
  --text:         #2c2c2c;
  --text-muted:   #6b6453;
  --border:       #ddd3b8;
  --shadow:       rgba(15, 61, 37, 0.12);

  --radius:       10px;
  --header-h:     68px;
  --max-w:        1100px;
}

html { scroll-behavior: smooth; }

body {
  font-family: system-ui, -apple-system, "Segoe UI", sans-serif;
  background: var(--cream);
  color: var(--text);
  line-height: 1.6;
  font-size: 16px;
}

/* ─── HEADER ─────────────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--header-h);
  background: var(--green-deep);
  border-bottom: 2px solid var(--gold);
  z-index: 100;
  box-shadow: 0 2px 16px rgba(0,0,0,0.25);
}

.header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.header-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}

.brand-icon { font-size: 1.6rem; line-height: 1; }

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.brand-title {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.02em;
}

.brand-sub {
  font-size: 0.7rem;
  color: var(--gold-pale);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-link {
  display: inline-block;
  padding: 6px 18px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold-pale);
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: 4px;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}

.nav-link:hover,
.nav-link.active {
  color: var(--gold);
  border-color: var(--gold);
  background: rgba(201, 168, 67, 0.08);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─── HERO ──────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: calc(var(--header-h) + 48px) 24px 80px;
  background:
    radial-gradient(ellipse at 30% 60%, rgba(45, 122, 80, 0.35) 0%, transparent 60%),
    radial-gradient(ellipse at 75% 30%, rgba(201, 168, 67, 0.08) 0%, transparent 50%),
    var(--green-deep);
  text-align: center;
  overflow: hidden;
}

/* Subtle texture overlay */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.hero-inner {
  position: relative;
  max-width: 680px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.hero-eyebrow {
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}

.hero-title {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.8rem, 8vw, 5rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.hero-tagline {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: var(--gold-pale);
  max-width: 520px;
  line-height: 1.7;
}

.btn-gold {
  display: inline-block;
  margin-top: 8px;
  padding: 14px 36px;
  background: var(--gold);
  color: var(--green-deep);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 4px;
  border: 2px solid var(--gold);
  transition: background 0.2s, color 0.2s, transform 0.15s;
}

.btn-gold:hover {
  background: transparent;
  color: var(--gold);
  transform: translateY(-2px);
}

.hero-scroll-hint {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.35);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: bob 2.5s ease-in-out infinite;
}

@keyframes bob {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

/* ─── SECTIONS ──────────────────────────────────────────────── */
.section {
  padding: 100px 24px;
}

.section-alt {
  background: var(--cream-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.section-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.section-heading {
  text-align: center;
  margin-bottom: 64px;
}

.section-heading h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 5vw, 2.8rem);
  color: var(--green-deep);
  margin-bottom: 16px;
}

.gold-rule {
  width: 60px;
  height: 3px;
  background: var(--gold);
  margin: 0 auto 20px;
  border-radius: 2px;
}

.section-sub {
  color: var(--text-muted);
  font-size: 1.05rem;
  font-style: italic;
  max-width: 480px;
  margin: 0 auto;
}

/* ─── TIMELINE ───────────────────────────────────────────────── */
.timeline {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* Center spine */
.timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--gold) 0%, rgba(201, 168, 67, 0.15) 100%);
  transform: translateX(-50%);
}

.timeline-item {
  position: relative;
  width: 50%;
  padding: 0 48px 48px 0;
  text-align: right;
}

/* Alternate sides */
.timeline-item:nth-child(even) {
  align-self: flex-end;
  padding: 0 0 48px 48px;
  text-align: left;
}

/* Dot on spine */
.timeline-dot {
  position: absolute;
  right: -7px;
  top: 14px;
  width: 14px;
  height: 14px;
  background: var(--gold);
  border: 3px solid var(--cream);
  border-radius: 50%;
  box-shadow: 0 0 0 2px var(--gold);
  z-index: 1;
}

.timeline-item:nth-child(even) .timeline-dot {
  right: auto;
  left: -7px;
}

/* Day card */
.day-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 28px;
  box-shadow: 0 4px 20px var(--shadow);
  transition: transform 0.2s, box-shadow 0.2s;
}

.day-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px var(--shadow);
}

.day-badge {
  display: inline-block;
  background: var(--green-deep);
  color: var(--gold);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 12px;
}

.day-title {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.25rem;
  color: var(--green-deep);
  margin-bottom: 6px;
}

.day-location {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 14px;
}

.day-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.day-list li {
  font-size: 0.92rem;
  line-height: 1.5;
  color: var(--text);
  padding-left: 18px;
  position: relative;
  text-align: left;
}

.day-list li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}

/* ─── CREW GRID ─────────────────────────────────────────────── */
.crew-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.crew-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 20px var(--shadow);
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex;
  flex-direction: column;
}

.crew-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 36px var(--shadow);
}

.crew-photo-wrap {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.crew-photo-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #d4c9a8, #c2b68a);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #8a7a56;
}

.crew-photo-placeholder svg { opacity: 0.6; }
.crew-photo-placeholder span { font-size: 0.78rem; letter-spacing: 0.06em; text-transform: uppercase; opacity: 0.7; }

.crew-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.crew-info {
  padding: 20px 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}

.crew-name {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.15rem;
  color: var(--green-deep);
}

.crew-meta {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--gold-dark);
}

.crew-bio {
  font-size: 0.88rem;
  line-height: 1.65;
  color: var(--text-muted);
  margin-top: 4px;
}

/* ─── FOOTER ─────────────────────────────────────────────────── */
.site-footer {
  background: var(--green-deep);
  border-top: 2px solid var(--gold);
  padding: 40px 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.site-footer p {
  color: var(--gold-pale);
  font-size: 0.9rem;
  letter-spacing: 0.04em;
}

.footer-sub {
  font-style: italic;
  color: rgba(232, 213, 160, 0.5) !important;
  font-size: 0.78rem !important;
}

/* ─── RESPONSIVE ─────────────────────────────────────────────── */

/* Tablet */
@media (max-width: 900px) {
  .crew-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */
@media (max-width: 640px) {
  :root { --header-h: 60px; }

  .hamburger { display: flex; }

  .brand-sub { display: none; }

  .site-nav {
    display: none;
    position: absolute;
    top: var(--header-h);
    left: 0; right: 0;
    background: var(--green-deep);
    border-bottom: 2px solid var(--gold);
    flex-direction: column;
    align-items: stretch;
    padding: 12px 16px 16px;
    gap: 4px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.3);
  }

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

  .nav-link {
    text-align: center;
    padding: 12px 18px;
    font-size: 0.9rem;
  }

  .section { padding: 72px 20px; }

  .section-heading { margin-bottom: 44px; }

  /* Timeline goes single column */
  .timeline::before {
    left: 20px;
    transform: none;
  }

  .timeline-item,
  .timeline-item:nth-child(even) {
    width: 100%;
    padding: 0 0 36px 52px;
    text-align: left;
    align-self: auto;
  }

  .timeline-dot,
  .timeline-item:nth-child(even) .timeline-dot {
    right: auto;
    left: 14px;
  }

  .crew-grid {
    grid-template-columns: 1fr;
    max-width: 380px;
    margin: 0 auto;
  }
}
