:root {
  --bg: #f7f2ee;
  --card: rgba(255, 255, 255, 0.92);
  --text: #2f2a28;
  --muted: #6f625b;
  --accent: #b18476;
  --accent-dark: #8e665a;
  --line: rgba(120, 94, 84, 0.16);
  --shadow: 0 18px 40px rgba(58, 38, 30, 0.10);
  --radius: 24px;
  --max: 1100px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
}

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

.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 247, 242, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 1rem 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.brand,
.nav-links a {
  text-decoration: none;
  color: var(--text);
  font-weight: 600;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero {
  position: relative;
  min-height: 85vh;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.hero-slideshow {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 2.5s ease-in-out;
}

.slide.active {
  opacity: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.18), rgba(0,0,0,0.42));
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  color: white;
  padding: 2rem;
  max-width: 750px;
}

.hero h1 {
  font-size: clamp(3rem, 7vw, 5.5rem);
  margin-bottom: 0.5rem;
}

.hero-date,
.hero-subtitle,
.eyebrow {
  margin: 0.75rem 0;
}

.primary-btn,
.secondary-btn,
button {
  display: inline-block;
  padding: 0.85rem 1.3rem;
  border: none;
  border-radius: 999px;
  background: var(--accent);
  color: white;
  text-decoration: none;
  cursor: pointer;
  font-size: 1rem;
}

main.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 2rem 1.25rem 4rem;
}

.card {
  background: white;
  margin-bottom: 1.5rem;
  padding: 1.5rem;
  border-radius: 18px;
  box-shadow: var(--shadow);
}

form {
  display: grid;
  gap: 0.75rem;
}

input, select, textarea, button {
  padding: 0.75rem;
  font-size: 1rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.gallery-grid img {
  height: 260px;
  width: 100%;
  object-fit: cover;
  border-radius: 14px;
}

.site-footer {
  text-align: center;
  padding: 2rem 1rem 3rem;
  color: var(--muted);
}

@media (max-width: 768px) {
  .nav-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero {
    min-height: 72vh;
  }
}