:root {
  --green-950: #02251f;
  --green-900: #06352d;
  --green-800: #0b4437;
  --gold: #c88a21;
  --gold-2: #f0c36a;
  --cream: #f4ead7;
  --white: #ffffff;
  --muted: #cfc7b6;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

/* RESET */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: var(--green-950);
  color: var(--cream);
  line-height: 1.6;
}

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

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

.container {
  width: min(1120px, 92%);
  margin: auto;
}

/* HEADER */
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(2, 37, 31, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(200, 138, 33, 0.35);
}

.nav {
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  gap: 12px;
  align-items: center;
}

.brand-mark {
  width: 46px;
  height: 46px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--gold-2);
  font-size: 24px;
  box-shadow: 0 0 18px rgba(200, 138, 33, 0.25);
}

.brand strong {
  display: block;
  font-family: Georgia, serif;
  font-size: 24px;
  letter-spacing: 1px;
}

.brand small {
  display: block;
  color: var(--gold-2);
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-links a {
  color: var(--cream);
  font-weight: 600;
}

.nav-links a:hover,
.nav-links .active {
  color: var(--gold-2);
}

.nav-cta {
  border: 1px solid var(--gold);
  border-radius: 999px;
  padding: 10px 18px;
}

.menu-toggle {
  display: none;
  background: none;
  color: var(--cream);
  border: 1px solid var(--gold);
  border-radius: 8px;
  font-size: 24px;
}

/* HERO */
.hero {
  padding: 90px 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(200, 138, 33, 0.2), transparent 32%),
    linear-gradient(135deg, var(--green-900), var(--green-950) 65%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 50px;
  align-items: center;
}

.eyebrow {
  color: var(--gold-2);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
  font-size: 13px;
}

.hero h1,
.page-hero h1 {
  font-family: Georgia, serif;
  font-size: clamp(42px, 6vw, 72px);
  line-height: 1.05;
  margin: 12px 0 20px;
}

.lead {
  font-size: 20px;
  color: #eee4d0;
  max-width: 760px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin: 32px 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 800;
}

.primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: #1c1305;
}

.secondary {
  border: 1px solid var(--gold);
  color: var(--gold-2);
}

/* SECTIONS */
.section {
  padding: 80px 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-heading h2,
.split-grid h2,
.two-col h2,
.contact-card h2 {
  font-family: Georgia, serif;
  font-size: 40px;
  line-height: 1.15;
  margin: 8px 0 14px;
}

/* CARDS */
.cards {
  display: grid;
  gap: 22px;
}

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

.card,
.review,
.highlight-box,
.contact-card,
.form {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(240, 195, 106, 0.22);
  border-radius: 24px;
  padding: 26px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
}

.card h3 {
  color: var(--gold-2);
  font-size: 22px;
  margin-top: 0;
}

/* GRID */
.split-grid,
.two-col,
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 38px;
}

/* FORM */
.form {
  display: grid;
  gap: 16px;
}

.form label {
  display: grid;
  gap: 7px;
  color: var(--gold-2);
  font-weight: 700;
}

.form input,
.form textarea,
.form select {
  width: 100%;
  border: 1px solid rgba(240, 195, 106, 0.35);
  background: rgba(0, 0, 0, 0.22);
  color: var(--white);
  padding: 13px;
  border-radius: 12px;
  font: inherit;
}

/* Disabled dropdown */
select:disabled {
  background: rgba(255, 255, 255, 0.08);
  color: var(--muted);
  cursor: not-allowed;
  opacity: 0.6;
}

/* Disabled button */
button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.form-note,
.note {
  font-size: 14px;
  color: var(--muted);
}

/* GALLERY */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.gallery-grid figure,
.placeholder {
  min-height: 230px;
  border: 1px solid rgba(240, 195, 106, 0.25);
  border-radius: 22px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.06);
  margin: 0;
}

.gallery-grid img {
  height: 230px;
  width: 100%;
  object-fit: cover;
}

.gallery-grid figcaption {
  padding: 12px;
  color: var(--gold-2);
}

/* FOOTER */
.site-footer {
  padding: 34px 0;
  border-top: 1px solid rgba(200, 138, 33, 0.3);
  background: #011b17;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 24px;
}

.footer-grid a {
  display: block;
  color: var(--gold-2);
  font-weight: 700;
}

/* MOBILE */
@media (max-width: 820px) {
  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 78px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    background: var(--green-950);
    padding: 22px;
    border-bottom: 1px solid var(--gold);
  }

  .nav-links.open {
    display: flex;
  }

  .hero-grid,
  .split-grid,
  .two-col,
  .contact-grid {
    grid-template-columns: 1fr;
  }

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

  .hero {
    padding: 60px 0;
  }

  .section {
    padding: 55px 0;
  }

  .footer-grid {
    flex-direction: column;
  }

  .brand strong {
    font-size: 20px;
  }
}