
:root {
  --green-900: #143b24;
  --green-800: #1d4d31;
  --green-700: #2b6340;
  --green-100: #eef5ef;
  --gold-500: #c9a646;
  --gold-300: #e4cd84;
  --cream: #faf7f0;
  --text: #1e241f;
  --muted: #5b665c;
  --white: #ffffff;
  --shadow: 0 18px 40px rgba(20, 59, 36, 0.12);
  --radius: 22px;
  --max-width: 1160px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.65;
}

img { max-width: 100%; }

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

.container {
  width: min(calc(100% - 2rem), var(--max-width));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(20, 59, 36, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(228, 205, 132, 0.18);
}

.nav-wrap {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.site-title {
  display: flex;
  flex-direction: column;
  color: var(--white);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.4rem, 2vw, 2rem);
  line-height: 1;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.72rem;
  font-family: "Inter", sans-serif;
  margin-bottom: 0.45rem;
  color: var(--gold-300);
}

.gold { color: var(--gold-500); }

.main-nav {
  display: flex;
  gap: 1.2rem;
  align-items: center;
}

.main-nav a {
  color: var(--white);
  font-weight: 500;
  position: relative;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.35rem;
  width: 100%;
  height: 2px;
  transform: scaleX(0);
  transform-origin: center;
  background: var(--gold-500);
  transition: transform 0.25s ease;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after { transform: scaleX(1); }

.nav-toggle {
  display: none;
  font-size: 1.6rem;
  background: transparent;
  color: var(--white);
  border: 0;
}

.hero {
  background:
    linear-gradient(rgba(20, 59, 36, 0.82), rgba(20, 59, 36, 0.78)),
    radial-gradient(circle at top right, rgba(228,205,132,0.18), transparent 30%);
  color: var(--white);
  padding: 5.5rem 0 4.5rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr;
  gap: 2rem;
  align-items: center;
}

.hero h1, h1, h2, h3 {
  font-family: "Cormorant Garamond", serif;
  line-height: 1.05;
  margin-top: 0;
}

.hero h1 {
  font-size: clamp(3rem, 6vw, 5.1rem);
  margin-bottom: 1rem;
}

.lead {
  font-size: 1.1rem;
  max-width: 62ch;
  color: rgba(255, 255, 255, 0.94);
}

.hero-card,
.card,
.contact-form,
.post {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-card {
  color: var(--text);
  padding: 1.5rem;
  border: 1px solid rgba(201, 166, 70, 0.28);
}

.schedule-item + .schedule-item {
  border-top: 1px solid rgba(20, 59, 36, 0.1);
  margin-top: 1rem;
  padding-top: 1rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--gold-500);
  color: var(--green-900);
  padding: 0.95rem 1.35rem;
  border-radius: 999px;
  font-weight: 700;
  border: 2px solid var(--gold-500);
  transition: transform 0.2s ease, background 0.2s ease;
}

.button:hover { transform: translateY(-2px); }

.button-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.75);
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.6rem;
}

.welcome-band {
  background: linear-gradient(90deg, var(--gold-500), #e9d598);
  color: var(--green-900);
  font-weight: 600;
  padding: 1rem 0;
}

.section { padding: 5rem 0; }

.section-soft {
  background: var(--green-100);
}

.section-label {
  color: var(--green-700);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.76rem;
  font-weight: 700;
}

.two-column {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2rem;
}

.cards {
  display: grid;
  gap: 1.4rem;
  margin-top: 2rem;
}

.three-up { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.two-up { grid-template-columns: repeat(2, minmax(0, 1fr)); }

.card {
  padding: 1.5rem;
  border: 1px solid rgba(20, 59, 36, 0.08);
}

.card h3, .card h2 {
  margin-bottom: 0.75rem;
}

.muted { color: var(--muted); }

.blog-preview-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
}

.text-link {
  color: var(--green-800);
  font-weight: 700;
}

.section-contact {
  background: linear-gradient(180deg, rgba(20,59,36,0.03), rgba(20,59,36,0.08));
}

.contact-list p { margin: 0 0 0.6rem; }

.contact-form {
  padding: 1.5rem;
  display: grid;
  gap: 1rem;
}

.contact-form label {
  display: grid;
  gap: 0.45rem;
  font-weight: 600;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  border-radius: 14px;
  border: 1px solid rgba(20, 59, 36, 0.16);
  font: inherit;
  background: #fffefb;
}

.small-note {
  color: var(--muted);
  font-size: 0.92rem;
}

.post {
  padding: 2rem;
  max-width: 850px;
}

.post p {
  font-size: 1.06rem;
}

.site-footer {
  background: var(--green-900);
  color: var(--white);
  padding: 2rem 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 0.6fr;
  gap: 1rem;
  align-items: start;
}

.footer-grid a {
  display: block;
  margin-bottom: 0.4rem;
  color: var(--gold-300);
}

.footer-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.6rem;
  margin: 0 0 0.35rem;
}

@media (max-width: 900px) {
  .hero-grid,
  .two-column,
  .three-up,
  .two-up,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .main-nav {
    position: absolute;
    top: 82px;
    right: 1rem;
    left: 1rem;
    background: var(--green-900);
    border: 1px solid rgba(228, 205, 132, 0.18);
    border-radius: 18px;
    padding: 1rem;
    display: none;
    flex-direction: column;
    align-items: flex-start;
  }

  .main-nav.open { display: flex; }
  .nav-toggle { display: block; }
}

@media (max-width: 640px) {
  .section { padding: 4rem 0; }
  .hero { padding: 4.25rem 0 3.5rem; }
  .hero h1 { font-size: 2.6rem; }
}
