* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #050604;
  --panel: rgba(255, 255, 255, 0.055);
  --panel-strong: rgba(20, 22, 14, 0.92);
  --olive: #8b8650;
  --olive-light: #b9b174;
  --text: #f4f0df;
  --muted: #c8c4ad;
  --line: rgba(185, 177, 116, 0.32);
}

html {
  scroll-behavior: smooth;
}

body {
  background:
    radial-gradient(circle at top left, rgba(139, 134, 80, 0.28), transparent 28rem),
    radial-gradient(circle at top right, rgba(139, 134, 80, 0.15), transparent 30rem),
    var(--bg);
  color: var(--text);
  font-family: Impact, "Arial Narrow", Arial, sans-serif;
  letter-spacing: 0.02em;
}

p, li, input, select, textarea, button, a, span {
  font-family: Arial, Helvetica, sans-serif;
  letter-spacing: normal;
}

a {
  color: inherit;
  text-decoration: none;
}

.hero {
  min-height: 100vh;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(5, 6, 4, 0.96), rgba(5, 6, 4, 0.74)),
    radial-gradient(circle at 55% 45%, rgba(185, 177, 116, 0.14), transparent 26rem);
}

.nav {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1rem 4vw;
  background: rgba(5, 6, 4, 0.86);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(185, 177, 116, 0.13);
}

.brand img {
  width: 128px;
  max-height: 96px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  color: #f4f0df;
  text-transform: uppercase;
  font-size: 0.9rem;
  font-weight: 800;
}

.nav-links a {
  opacity: 0.9;
  transition: 0.2s;
}

.nav-links a:hover {
  color: var(--olive-light);
}

.book-btn, .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  border-radius: 8px;
  padding: 0 1.45rem;
  font-weight: 900;
  text-transform: uppercase;
  transition: 0.2s ease;
}

.book-btn, .primary {
  background: linear-gradient(180deg, var(--olive-light), var(--olive));
  color: #080904;
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.35);
}

.book-btn:hover, .primary:hover {
  transform: translateY(-2px);
  filter: brightness(1.08);
}

.ghost {
  border: 1px solid rgba(244, 240, 223, 0.45);
  color: var(--text);
  background: rgba(0, 0, 0, 0.18);
}

.hero-content {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3rem;
  align-items: center;
  padding: 3rem 4vw 4.5rem;
}

.hero-logo-wrap {
  display: flex;
  justify-content: center;
}

.hero-logo {
  width: min(100%, 680px);
  filter: drop-shadow(0 25px 45px rgba(0, 0, 0, 0.65));
  border-radius: 8px;
}

.eyebrow {
  color: var(--olive-light);
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: 0.14em;
  font-size: 0.86rem;
  margin-bottom: 0.9rem;
}

h1, h2, h3 {
  text-transform: uppercase;
  line-height: 0.95;
}

h1 {
  font-size: clamp(3.2rem, 7vw, 6rem);
  margin-bottom: 1.4rem;
}

h1 span {
  color: var(--olive-light);
  display: block;
}

.lead {
  max-width: 600px;
  color: var(--muted);
  font-size: 1.2rem;
  line-height: 1.55;
  margin-bottom: 2rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.7rem;
}

.feature-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}

.feature-row div {
  padding-top: 1rem;
  border-top: 2px solid rgba(185, 177, 116, 0.35);
}

.feature-row strong {
  color: var(--olive-light);
  text-transform: uppercase;
  font-size: 0.96rem;
}

.feature-row p {
  color: #ddd7bb;
  margin-top: 0.55rem;
  line-height: 1.35;
}

.section {
  padding: 5rem 4vw;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 2.5rem;
}

.section-heading.center {
  max-width: none;
  text-align: center;
}

h2 {
  font-size: clamp(2.4rem, 5vw, 4.5rem);
  margin-bottom: 1rem;
}

.section-heading p, .about-copy p, .mission p {
  color: var(--muted);
  line-height: 1.7;
  font-size: 1.04rem;
}

.cards {
  display: grid;
  gap: 1rem;
}

.three {
  grid-template-columns: repeat(3, 1fr);
}

.five {
  grid-template-columns: repeat(5, 1fr);
}

.card, .value-card, .booking-form, .mission {
  background: linear-gradient(145deg, rgba(185, 177, 116, 0.08), rgba(255, 255, 255, 0.025));
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.28);
}

.card {
  padding: 2rem;
}

.card h3, .value-card h3, .booking-form h3 {
  color: var(--olive-light);
  font-size: 1.6rem;
  margin-bottom: 1rem;
}

.card p, .value-card p {
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.card ul {
  list-style: none;
}

.card li {
  color: #f2edd5;
  margin: 0.7rem 0;
}

.card li::before {
  content: "✓";
  color: var(--olive-light);
  margin-right: 0.6rem;
  font-weight: 900;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  background: rgba(0, 0, 0, 0.22);
  border-top: 1px solid rgba(185, 177, 116, 0.18);
  border-bottom: 1px solid rgba(185, 177, 116, 0.18);
}

.about-copy p + p {
  margin-top: 1.25rem;
}

.about-image img {
  width: 100%;
  border-radius: 14px;
  border: 1px solid var(--line);
  box-shadow: 0 25px 55px rgba(0, 0, 0, 0.45);
}

.mission {
  margin: 3rem 4vw 0;
  padding: 2rem;
}

.values {
  padding-top: 3rem;
}

.value-card {
  padding: 1.5rem;
  text-align: center;
}

.value-card h3 {
  font-size: 1.28rem;
}

.addons {
  padding-top: 3rem;
}

.addon-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.9rem;
}

.addon-grid span {
  padding: 1rem;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.045);
  border-radius: 8px;
  color: #f2edd5;
  font-weight: 800;
}

.booking {
  padding: 2rem 4vw 5rem;
}

.booking-banner {
  display: grid;
  grid-template-columns: 1.4fr auto auto;
  gap: 1.5rem;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(139, 134, 80, 0.22), rgba(185, 177, 116, 0.11)),
    rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 1.7rem 2rem;
  margin-bottom: 2rem;
}

.booking-banner h2 {
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  margin: 0;
}

.contact-block {
  display: grid;
  gap: 0.2rem;
  color: var(--text);
}

.contact-block strong {
  font-size: 1.25rem;
}

.contact-block span {
  color: var(--muted);
}

.booking-form {
  max-width: 820px;
  margin: 0 auto;
  padding: 2rem;
}

.booking-form h3 {
  text-align: center;
  font-size: 2rem;
}

input, select, textarea {
  width: 100%;
  margin-bottom: 0.9rem;
  padding: 1rem;
  border-radius: 8px;
  border: 1px solid rgba(185, 177, 116, 0.35);
  background: rgba(0, 0, 0, 0.45);
  color: var(--text);
  font-size: 1rem;
}

textarea {
  min-height: 140px;
  resize: vertical;
}

.full {
  width: 100%;
  border: 0;
  cursor: pointer;
  font-size: 1rem;
}

footer {
  padding: 2rem 4vw;
  text-align: center;
  color: var(--muted);
  border-top: 1px solid rgba(185, 177, 116, 0.2);
}

@media (max-width: 1000px) {
  .nav {
    align-items: flex-start;
  }

  .nav-links {
    display: none;
  }

  .hero-content,
  .about-grid,
  .booking-banner {
    grid-template-columns: 1fr;
  }

  .three, .five, .addon-grid, .feature-row {
    grid-template-columns: 1fr;
  }

  .brand img {
    width: 100px;
  }

  .hero-content {
    padding-top: 1.5rem;
  }
}
