:root {
  --green-dark: #062f1f;
  --green: #0b4a31;
  --green-soft: #123f2d;
  --cream: #f4efd9;
  --cream-light: #fbf7e9;
  --gold: #c4a35a;
  --gold-dark: #9d7d32;
  --text-dark: #18221c;
  --text-muted: #5f665f;
  --white: #ffffff;
  --shadow: 0 22px 60px rgba(6, 47, 31, 0.18);
  --radius-large: 28px;
  --radius-medium: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text-dark);
  background: var(--cream-light);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  background: rgba(6, 47, 31, 0.98);
  border-bottom: 4px solid var(--gold);
  position: sticky;
  top: 0;
  z-index: 20;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
}

.brand-mark {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), #f3d57a);
  color: var(--green-dark);
  display: grid;
  place-items: center;
  font-weight: 900;
  letter-spacing: -1px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.18);
}
.brand-logo {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--cream-light);
  border: 2px solid var(--gold);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.18);
}
.brand-name {
  margin: 0;
  font-weight: 800;
  font-size: 1.05rem;
  line-height: 1.1;
}

.brand-subtitle {
  margin: 2px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.85rem;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--white);
  font-weight: 700;
}

.main-nav a {
  opacity: 0.92;
}

.main-nav a:hover {
  opacity: 1;
}

.nav-button {
  background: var(--gold);
  color: var(--green-dark);
  padding: 11px 18px;
  border-radius: 999px;
}

.hero {
  background:
    radial-gradient(circle at top right, rgba(196, 163, 90, 0.22), transparent 34%),
    linear-gradient(135deg, var(--green-dark), var(--green));
  color: var(--white);
  padding: 92px 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

h1 {
  margin: 0;
  max-width: 820px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 8vw, 6.5rem);
  line-height: 0.95;
  letter-spacing: -0.06em;
}

.hero-subheadline {
  margin: 28px 0 0;
  font-size: clamp(1.25rem, 3vw, 2rem);
  font-weight: 800;
  color: #f7e7b2;
}

.hero-text {
  margin: 22px 0 0;
  max-width: 720px;
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.86);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 14px 24px;
  border-radius: 999px;
  font-weight: 900;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: linear-gradient(135deg, #f1d275, var(--gold));
  color: var(--green-dark);
  box-shadow: 0 12px 30px rgba(196, 163, 90, 0.28);
}

.button-secondary {
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.hero-card {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-large);
  padding: 34px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

.card-label {
  margin: 0 0 10px;
  color: var(--gold);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.75rem;
}

.hero-card h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 5vw, 3.8rem);
  line-height: 1;
}

.hero-card p {
  color: rgba(255, 255, 255, 0.84);
}

.hero-card-line {
  height: 1px;
  background: rgba(255, 255, 255, 0.22);
  margin: 24px 0;
}

.small-text {
  font-size: 0.95rem;
}

.section {
  padding: 84px 0;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 36px;
}

.section-heading h2,
.brand-grid h2,
.about-grid h2,
.booking-card h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  color: var(--green-dark);
  font-size: clamp(2.2rem, 5vw, 4.4rem);
  line-height: 1;
  letter-spacing: -0.045em;
}

.section-heading p,
.about-grid p,
.booking-card p {
  color: var(--text-muted);
  font-size: 1.08rem;
}

.program-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.program-card {
  background: var(--white);
  border: 1px solid rgba(6, 47, 31, 0.08);
  border-radius: var(--radius-medium);
  padding: 26px;
  box-shadow: 0 14px 40px rgba(6, 47, 31, 0.08);
}

.program-card h3 {
  margin: 0 0 12px;
  color: var(--green-dark);
  font-size: 1.28rem;
  line-height: 1.15;
}

.program-card p {
  margin: 0 0 22px;
  color: var(--text-muted);
}

.program-card a {
  color: var(--green);
  font-weight: 900;
  border-bottom: 2px solid var(--gold);
}

.wide-card {
  grid-column: span 2;
  background: linear-gradient(135deg, var(--green-dark), var(--green-soft));
  color: var(--white);
}

.wide-card h3,
.wide-card a {
  color: var(--white);
}

.wide-card p {
  color: rgba(255, 255, 255, 0.82);
}

.brand-section {
  padding: 84px 0;
  background: var(--cream);
  border-top: 1px solid rgba(6, 47, 31, 0.08);
  border-bottom: 1px solid rgba(6, 47, 31, 0.08);
}

.brand-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 42px;
  align-items: start;
}

.brand-points {
  display: grid;
  gap: 18px;
}

.brand-points div {
  background: var(--white);
  border-radius: var(--radius-medium);
  padding: 24px;
  border-left: 5px solid var(--gold);
}

.brand-points h3 {
  margin: 0 0 8px;
  color: var(--green-dark);
  font-size: 1.4rem;
}

.brand-points p {
  margin: 0;
  color: var(--text-muted);
}

.about-section {
  background: var(--cream-light);
}

.about-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 48px;
  align-items: start;
}

.about-grid p:first-child {
  margin-top: 0;
}

.booking-section {
  padding: 76px 0;
  background: var(--green-dark);
}

.booking-card {
  background:
    radial-gradient(circle at top right, rgba(196, 163, 90, 0.32), transparent 32%),
    linear-gradient(135deg, var(--cream-light), var(--cream));
  border-radius: var(--radius-large);
  padding: clamp(30px, 6vw, 64px);
  text-align: center;
  box-shadow: var(--shadow);
}

.booking-card p {
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

.site-footer {
  background: #041f15;
  color: var(--white);
  padding: 46px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
}

.site-footer h2 {
  margin: 0 0 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
}

.site-footer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

.footer-links {
  display: grid;
  gap: 10px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.84);
}

.footer-links a:hover {
  color: var(--gold);
}

@media (max-width: 900px) {
  .header-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .main-nav {
    width: 100%;
    flex-wrap: wrap;
    gap: 10px;
  }

  .main-nav a {
    padding: 8px 0;
  }

  .nav-button {
    padding: 10px 16px !important;
  }

  .hero {
    padding: 68px 0;
  }

  .hero-grid,
  .brand-grid,
  .about-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .program-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .wide-card {
    grid-column: span 2;
  }
}

@media (max-width: 620px) {
  .container {
    width: min(100% - 24px, 1120px);
  }

  .site-header {
    position: static;
  }

  .brand-mark {
    width: 44px;
    height: 44px;
  }

  .main-nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .main-nav a {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 999px;
    text-align: center;
    padding: 10px 12px;
    font-size: 0.92rem;
  }

  .nav-button {
    background: var(--gold) !important;
    color: var(--green-dark) !important;
  }

  h1 {
    font-size: clamp(2.8rem, 14vw, 4.6rem);
  }

  .hero-text {
    font-size: 1rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .hero-card {
    padding: 26px;
  }

  .section {
    padding: 64px 0;
  }

  .program-grid {
    grid-template-columns: 1fr;
  }

  .wide-card {
    grid-column: span 1;
  }

  .booking-card {
    text-align: left;
  }

  .booking-card .button {
    margin-top: 10px;
  }
}