:root {
  --bg: #f2f2ec;
  --text: #272a1f;
  --primary: #617209;
  --accent: #b37736;
  --surface: #e9e8e1;
  --border: #d7d8d2;
  --muted: #5c5f53;
  --shadow: 0 24px 70px rgba(39, 42, 31, 0.14);
  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Cormorant Garamond', Georgia, serif;
  --font-label: 'Epilogue', sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: clamp(16px, 1.55vw, 19px);
  line-height: 1.75;
}

h1, h2, h3 {
  font-family: var(--font-heading);
  line-height: 1.1;
  margin: 0 0 0.5em;
  font-weight: 500;
}

h1 { font-size: clamp(46px, 7.2vw, 76px); }
h2 { font-size: clamp(34px, 4.8vw, 58px); }
h3 { font-size: clamp(22px, 2.6vw, 28px); margin-bottom: 0.3em; }

p { margin: 0 0 1em; }

a { color: inherit; }

.eyebrow {
  font-family: var(--font-label);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 13px;
  color: var(--accent);
  margin: 0 0 0.6em;
}

.muted-small {
  font-family: var(--font-label);
  font-size: 14px;
  color: var(--muted);
  margin: 0 0 0.3em;
}

/* Nav */
.mw-nav {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: clamp(18px, 5vw, 28px) clamp(20px, 7vw, 68px);
  background: rgba(242, 242, 236, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}

.mw-nav__brand {
  font-family: var(--font-heading);
  font-size: 22px;
  text-decoration: none;
  color: var(--text);
}

.mw-nav__menu {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.5vw, 32px);
  font-family: var(--font-label);
  font-size: 15px;
}

.mw-nav__menu a { text-decoration: none; }

.mw-book,
.mw-nav__menu .mw-book {
  background: var(--primary);
  color: #fff;
  padding: 10px 20px;
  border-radius: 999px;
}

.mw-nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 8px;
}

.mw-nav__toggle span {
  width: 22px;
  height: 2px;
  background: var(--text);
}

/* Buttons */
.button {
  display: inline-block;
  font-family: var(--font-label);
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  padding: 14px 28px;
  border-radius: 999px;
  background: var(--primary);
  color: #fff;
  border: 1px solid var(--primary);
}

.button.secondary {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}

/* Layout sections */
.section {
  padding: clamp(52px, 8vw, 108px) clamp(20px, 7vw, 88px);
  max-width: 1100px;
  margin: 0 auto;
}

.section--alt {
  max-width: none;
  background: var(--surface);
}

.section--alt > * {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

.section__lead {
  max-width: 640px;
  color: var(--muted);
}

.hero {
  padding: clamp(64px, 12vw, 140px) clamp(20px, 7vw, 88px);
  max-width: 900px;
}

.hero__sub {
  max-width: 560px;
  color: var(--muted);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 28px;
}

/* Cards */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin: 36px 0;
}

.pathway-tile {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 28px;
  box-shadow: var(--shadow);
}

.price {
  font-family: var(--font-label);
  font-size: 22px;
  color: var(--primary);
  margin: 0;
}

.price span {
  font-size: 13px;
  color: var(--muted);
}

/* Inquiry form */
.inquiry-form {
  max-width: 480px;
  display: grid;
  gap: 18px;
  margin-top: 28px;
}

.form-row { display: grid; gap: 6px; }

.form-row label {
  font-family: var(--font-label);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted);
}

.form-row input,
.form-row select {
  font-family: var(--font-body);
  font-size: 16px;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: #fff;
  color: var(--text);
}

.cta-band { text-align: center; }
.cta-band .hero__actions { justify-content: center; }

.mw-footer {
  padding: 40px clamp(20px, 7vw, 88px);
  font-family: var(--font-label);
  font-size: 14px;
  color: var(--muted);
  border-top: 1px solid var(--border);
}

.mw-footer a { text-decoration: none; }

@media (max-width: 720px) {
  .mw-nav__toggle { display: flex; }
  .mw-nav__menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    padding: 20px;
    display: none;
  }
  .mw-nav__menu.is-open { display: flex; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}
