/* ================= RESET ================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ================= BASE ================= */
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background: #f8f4ef;
  color: #2a1e1a;
  line-height: 1.65;
}

h1, h2, h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 300;
}

/* ================= HEADER ================= */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(248, 244, 239, 0.96);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(124, 74, 44, 0.15);
  z-index: 1000;
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px 8%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-wrap {
  background: #f3eee8;
  padding: 10px 14px;
  border-radius: 6px;
  display: inline-flex;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

.logo {
  height: 40px;
  display: block;
}

/* Header CTA */
.header-cta {
  background: #7c4a2c;
  color: #fff;
  text-decoration: none;
  padding: 10px 18px;
  font-size: 14px;
  border-radius: 999px;
  transition: 0.3s ease;
}

.header-cta:hover {
  background: #6a3e25;
  transform: translateY(-1px);
}

/* ================= HERO ================= */
.hero {
  position: relative;
  height: 90vh;
  margin-top: 84px; /* pushes hero below header */
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.78);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(42,30,26,0.12),
    rgba(42,30,26,0.45)
  );
}

.hero-content {
  position: relative;
  text-align: center;
  color: #fff;
  padding: 0 6%;
}

.hero h1 {
  font-size: 72px;
  margin-bottom: 14px;
}

.hero p {
  font-size: 20px;
  opacity: 0.9;
  background: rgba(0,0,0,0.25);
  display: inline-block;
  padding: 6px 14px;
  border-radius: 4px;
}

/* ================= SECTIONS ================= */
section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 72px 8%;
}

section h2 {
  font-size: 44px;
  text-align: center;
  margin-bottom: 20px;
}

section p {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  font-size: 18px;
  color: rgba(42,30,26,0.75);
}

/* ================= HOSTS ================= */
.hosts-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-top: 40px;
}

.host-card {
  background: rgba(255,255,255,0.7);
  border: 1px solid rgba(124,74,44,0.2);
  padding: 44px 32px;
  text-align: center;
  transition: 0.3s ease;
}

.host-card:hover {
  background: rgba(255,255,255,0.9);
  transform: translateY(-3px);
}

/* ================= GALLERY ================= */
.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 40px;
}

.gallery img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  filter: grayscale(20%);
  transition: 0.4s ease;
}

.gallery img:hover {
  filter: grayscale(0%);
  transform: scale(1.05);
}

/* ================= WAITLIST ================= */
.waitlist {
  text-align: center;
  background: rgba(124,74,44,0.06);
  border-top: 1px solid rgba(124,74,44,0.2);
  border-bottom: 1px solid rgba(124,74,44,0.2);
}

.btn {
  display: inline-block;
  margin-top: 24px;
  padding: 16px 44px;
  background: #7c4a2c;
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  transition: 0.3s ease;
}

.btn:hover {
  background: #6a3e25;
  transform: translateY(-2px);
}

/* ================= CONTACT ================= */
.contact-links {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-top: 32px;
}

.contact-links a {
  padding: 14px 32px;
  border: 1px solid rgba(124,74,44,0.3);
  text-decoration: none;
  color: #2a1e1a;
  transition: 0.3s ease;
}

.contact-links a:hover {
  background: rgba(124,74,44,0.08);
}

/* ================= FOOTER ================= */
footer {
  text-align: center;
  padding: 36px 8%;
  background: #f3eee8;
  color: rgba(42,30,26,0.5);
  font-size: 13px;
  border-top: 1px solid rgba(124,74,44,0.15);
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {

  .header-inner {
    padding: 12px 5%;
  }

  .logo {
    height: 34px;
  }

  .header-cta {
    font-size: 13px;
    padding: 8px 14px;
  }

  .hero {
    height: 80vh;
    margin-top: 72px;
  }

  .hero h1 {
    font-size: 40px;
  }

  .hero p {
    font-size: 16px;
  }

  section {
    padding: 52px 5%;
  }

  .hosts-grid {
    grid-template-columns: 1fr;
  }

  .gallery {
    grid-template-columns: 1fr;
  }

  .contact-links {
    flex-direction: column;
  }
}
