
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
:root {
  --amber: #F5A623;
  --amber-light: #FFF8ED;
  --amber-dark: #C47E0F;
  --rust: #C25B2A;
  --forest: #3B5B3A;
  --forest-light: #EEF4EE;
  --cream: #FAF7F2;
  --warm-gray: #6B6560;
  --warm-dark: #2C2420;
  --card-bg: #FFFFFF;
  --border: rgba(44, 36, 32, 0.1);
  --shadow-soft: 0 10px 30px rgba(44, 36, 32, 0.08);
}
body {
  margin: 0;
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--warm-dark);
  line-height: 1.7;
  font-size: 16px;
}
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--amber);
  outline-offset: 3px;
}
img, video { max-width: 100%; height: auto; }
.skip-link {
  position: absolute;
  left: 1rem;
  top: -40px;
  background: var(--warm-dark);
  color: #fff;
  padding: 0.7rem 1rem;
  border-radius: 0.5rem;
  text-decoration: none;
  z-index: 10000;
}
.skip-link:focus { top: 1rem; }
.container { max-width: 900px; margin: 0 auto; }
.container-wide { max-width: 1200px; margin: 0 auto; }
main { display: block; }
section { padding: 4.5rem 2rem; }
.section-label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rust);
  margin-bottom: 0.5rem;
}
.section-title {
  font-family: 'Lora', serif;
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  font-weight: 600;
  line-height: 1.25;
  margin-bottom: 1rem;
  color: var(--warm-dark);
}
.section-desc {
  color: var(--warm-gray);
  max-width: 560px;
  margin-bottom: 2.5rem;
  font-size: 1rem;
}
nav.site-nav {
  background: var(--cream);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  min-height: 60px;
  padding: 0 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.nav-brand {
  font-family: 'Lora', serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--warm-dark);
  text-decoration: none;
}
.nav-toggle {
  display: none;
  border: 1px solid var(--border);
  background: #fff;
  color: var(--warm-dark);
  border-radius: 0.6rem;
  padding: 0.5rem 0.75rem;
  font: inherit;
  cursor: pointer;
}
.nav-menu { display: flex; align-items: center; }
.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--warm-gray);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color 0.2s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--rust); }
.hero {
  background: var(--warm-dark);
  color: #FAF7F2;
  padding: 5rem 2rem 4.5rem;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(45deg, transparent, transparent 60px, rgba(255,255,255,0.015) 60px, rgba(255,255,255,0.015) 61px);
}
.hero > * { position: relative; }
.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 1rem;
}
.hero h1 {
  font-family: 'Lora', serif;
  font-size: clamp(2.2rem, 6vw, 4rem);
  font-weight: 600;
  line-height: 1.15;
  margin: 0 0 1.25rem;
}
.hero-sub {
  font-size: 1.05rem;
  color: rgba(250, 247, 242, 0.65);
  max-width: 600px;
  margin: 0 auto 2.5rem;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.35rem;
  border-radius: 0.55rem;
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
}
.btn-primary, .btn-amber { background: var(--amber); color: var(--warm-dark); }
.btn-primary:hover, .btn-amber:hover { background: var(--amber-dark); color: #fff; }
.btn-outline {
  background: transparent;
  color: rgba(250,247,242,0.8);
  border: 1px solid rgba(250,247,242,0.25);
}
.btn-outline:hover { border-color: rgba(250,247,242,0.6); color: #FAF7F2; }
.btn-forest { background: var(--forest); color: #fff; }
.btn-forest:hover { background: #2a4229; }
.mt-sm { margin-top: 0.75rem; }
.mt-lg { margin-top: 1.1rem; }
.lightbox-image { cursor: zoom-in; }
.lightbox-modal,
.video-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.92);
  padding: 1rem;
}
.lightbox-modal.open,
.video-modal.open { display: flex; }
.lightbox-stage { position: relative; }
.lightbox-content,
.video-modal video {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: 12px;
  display: block;
}
.lightbox-caption { color: white; text-align: center; margin-top: 10px; }
.lightbox-close,
.lightbox-prev,
.lightbox-next,
.video-modal-close {
  position: absolute;
  color: white;
  background: rgba(0,0,0,0.5);
  border: none;
  font-size: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
}
.lightbox-close { top: 10px; right: 10px; }
.lightbox-prev { left: -60px; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: -60px; top: 50%; transform: translateY(-50%); }
.video-modal-close { top: 16px; right: 16px; position: fixed; z-index: 10000; }
.gallery-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
  display: block;
}
.is-hidden { display: none !important; }
.footer {
  background: var(--warm-dark);
  color: rgba(250,247,242,0.4);
  text-align: center;
  padding: 2rem;
  font-size: 0.8rem;
}
.footer a { color: var(--amber); text-decoration: none; }
@media (max-width: 768px) {
  .nav-toggle { display: inline-flex; }
  .nav-inner { flex-wrap: wrap; padding: 0.75rem 1rem; }
  .nav-menu { width: 100%; display: none; }
  .site-nav.menu-open .nav-menu { display: block; }
  .nav-links {
    gap: 0.75rem;
    flex-direction: column;
    align-items: flex-start;
    padding: 0.75rem 0 0.5rem;
  }
  .lightbox-prev { left: 10px; top: auto; bottom: -56px; transform: none; }
  .lightbox-next { right: 10px; top: auto; bottom: -56px; transform: none; }
}
