* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #0d0f0f;
  color: #f5f1e8;
  font-family: 'Inter', sans-serif;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 20;

  display: flex;
  justify-content: space-between;
  align-items: center;

  padding: 24px 40px;
  background: linear-gradient(to bottom, rgba(0,0,0,0.65), rgba(0,0,0,0));
}

.brand {
  font-size: 0.85rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
}

nav {
  display: flex;
  gap: 24px;
}

nav a {
  color: #f5f1e8;
  text-decoration: none;
  font-size: 0.85rem;
  opacity: 0.8;
}

nav a:hover {
  opacity: 1;
}

.hero {
  height: 100vh;
  background-image: url('assets/packwood-01.jpg');
  background-size: cover;
  background-position: center;
  position: relative;
}

.hero-overlay {
  position: absolute;
  inset: 0;

  background:
    linear-gradient(to bottom, rgba(0,0,0,0.35), rgba(0,0,0,0.75)),
    rgba(0,0,0,0.15);

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  text-align: center;
  padding: 40px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  color: #c9b98f;
  font-weight: 600;
}

.hero h1 {
  font-size: clamp(3.5rem, 9vw, 8rem);
  line-height: 0.92;
  margin: 0;
  letter-spacing: -0.06em;
}

.hero-subtitle {
  max-width: 760px;
  margin: 28px auto 0;
  font-size: clamp(1rem, 2vw, 1.35rem);
  line-height: 1.6;
  opacity: 0.9;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  margin-top: 36px;
  flex-wrap: wrap;
  justify-content: center;
}

.button {
  display: inline-block;
  padding: 14px 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
}

.button.primary {
  background: #f5f1e8;
  color: #101010;
}

.button.secondary {
  border: 1px solid rgba(245,241,232,0.45);
  color: #f5f1e8;
}

.content-section {
  padding: 100px 40px;
  max-width: 1400px;
  margin: auto;
}

.content-section h2 {
  margin: 0 0 26px;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1;
  letter-spacing: -0.04em;
}

.content-section p {
  max-width: 850px;
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(245,241,232,0.72);
}

.intro {
  max-width: 1100px;
}

.responsive-embed {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  overflow: hidden;
  border-radius: 18px;
  background: #000;
}

.responsive-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

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

.gallery-grid img:first-child {
  grid-column: span 2;
}

.gallery-grid img:nth-child(2) {
  grid-column: span 3;
}

.gallery-grid img:nth-child(3),
.gallery-grid img:nth-child(4),
.gallery-grid img:nth-child(5) {
  grid-column: span 1;
}

.map-placeholder {
  margin-top: 34px;
  min-height: 360px;
  border: 1px solid rgba(245,241,232,0.16);
  border-radius: 18px;

  display: flex;
  align-items: center;
  justify-content: center;

  color: rgba(245,241,232,0.55);
  background: rgba(255,255,255,0.035);
}

.contact-card {
  margin-top: 34px;
  padding: 34px;
  border-radius: 18px;
  border: 1px solid rgba(245,241,232,0.16);
  background: rgba(255,255,255,0.045);
}

.contact-card h3 {
  margin-top: 0;
}

footer {
  padding: 50px 40px;
  text-align: center;
  color: rgba(245,241,232,0.5);
  border-top: 1px solid rgba(245,241,232,0.09);
}

@media (max-width: 800px) {
  .site-header {
    padding: 20px;
  }

  nav {
    display: none;
  }

  .content-section {
    padding: 72px 22px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid img,
  .gallery-grid img:first-child,
  .gallery-grid img:nth-child(2),
  .gallery-grid img:nth-child(3),
  .gallery-grid img:nth-child(4),
  .gallery-grid img:nth-child(5) {
    grid-column: span 1;
    height: auto;
  }
}