@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;1,300;1,400&family=DM+Sans:wght@300;400;500&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-weight: 300;
  background: #f0ebe2;
  color: #0e0e0d;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 64px;
  background: rgba(5, 71, 42, 0.97);
  backdrop-filter: blur(12px);
  transition: background 0.3s;
}

nav.light {
  background: rgba(240, 235, 226, 0.96);
  border-bottom: 1px solid #ddd6ca;
}

.nav-logo {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 19px;
  font-weight: 400;
  letter-spacing: 0.03em;
  color: #f5f0e8;
  text-decoration: none;
  transition: color 0.3s;
}

nav.light .nav-logo { color: #0e0e0d; }

.nav-logo span { opacity: 0.65; }

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.7);
  text-decoration: none;
  transition: color 0.2s;
}

nav.light .nav-links a { color: #8a8070; }

.nav-links a:hover,
.nav-links a.active { color: #f5f0e8; }

nav.light .nav-links a:hover,
nav.light .nav-links a.active { color: #0e0e0d; }

/* ── HERO (evergreen bg, used on all pages) ── */
.hero-band {
  background: #05472A;
  padding: 140px 64px 100px;
  position: relative;
  overflow: hidden;
}

.hero-band::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: 48px;
  background: #f0ebe2;
  clip-path: ellipse(55% 100% at 50% 100%);
}

.hero-band .overline {
  color: rgba(245, 240, 232, 0.5);
  margin-bottom: 20px;
}

.hero-band h1 {
  color: #f5f0e8;
  max-width: 680px;
}

.hero-band h1 em {
  font-style: italic;
  color: rgba(245, 240, 232, 0.55);
}

.hero-band p {
  font-size: 17px;
  font-weight: 300;
  color: rgba(245, 240, 232, 0.65);
  max-width: 520px;
  line-height: 1.85;
  margin-top: 24px;
}

.hero-band .hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 44px;
}

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  padding: 13px 32px;
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid;
  cursor: pointer;
  transition: all 0.22s;
}

.btn-light {
  background: #f5f0e8;
  color: #05472A;
  border-color: #f5f0e8;
}
.btn-light:hover {
  background: transparent;
  color: #f5f0e8;
  border-color: rgba(245,240,232,0.6);
}

.btn-outline-light {
  background: transparent;
  color: rgba(245,240,232,0.8);
  border-color: rgba(245,240,232,0.35);
}
.btn-outline-light:hover {
  background: rgba(245,240,232,0.08);
  color: #f5f0e8;
  border-color: rgba(245,240,232,0.7);
}

.btn-dark {
  background: #0e0e0d;
  color: #f5f0e8;
  border-color: #0e0e0d;
}
.btn-dark:hover {
  background: #05472A;
  border-color: #05472A;
}

.btn-green {
  background: #05472A;
  color: #f5f0e8;
  border-color: #05472A;
}
.btn-green:hover {
  background: #033d23;
  border-color: #033d23;
}

/* ── TYPOGRAPHY ── */
h1, h2, h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 300;
  line-height: 1.12;
}

h1 { font-size: clamp(44px, 5.5vw, 72px); }
h2 { font-size: clamp(32px, 3.8vw, 52px); }
h3 { font-size: clamp(20px, 2.2vw, 28px); }

.overline {
  font-family: 'DM Sans', sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #05472A;
  display: block;
  margin-bottom: 18px;
}

.divider {
  width: 40px;
  height: 1px;
  background: #05472A;
  margin: 28px 0;
}

/* ── LAYOUT ── */
.page { padding-top: 64px; }

section { padding: 96px 64px; }

.container {
  max-width: 1100px;
  margin: 0 auto;
}

/* ── FOOTER ── */
footer {
  background: #0e0e0d;
  padding: 52px 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-logo {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 17px;
  font-weight: 400;
  color: rgba(245,240,232,0.75);
  text-decoration: none;
}

.footer-links {
  display: flex;
  gap: 28px;
  list-style: none;
}

.footer-links a {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.4);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover { color: rgba(245,240,232,0.8); }

.footer-copy {
  font-size: 11px;
  color: rgba(245,240,232,0.25);
}

/* ── MOBILE ── */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.nav-toggle span {
  width: 22px;
  height: 1.5px;
  background: #f5f0e8;
  display: block;
  transition: all 0.25s;
}

nav.light .nav-toggle span { background: #0e0e0d; }

.mobile-menu {
  display: none;
  position: fixed;
  top: 64px; left: 0; right: 0;
  background: #05472A;
  padding: 32px 64px;
  flex-direction: column;
  gap: 0;
  z-index: 99;
}

.mobile-menu.open { display: flex; }

.mobile-menu a {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.75);
  text-decoration: none;
  padding: 16px 0;
  border-bottom: 1px solid rgba(245,240,232,0.1);
  transition: color 0.2s;
}

.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu a:hover { color: #f5f0e8; }

@media (max-width: 768px) {
  nav { padding: 20px 24px; }
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .mobile-menu { padding: 24px; top: 60px; }
  section { padding: 72px 24px; }
  .hero-band { padding: 110px 24px 88px; }
  footer { padding: 40px 24px; flex-direction: column; align-items: flex-start; gap: 24px; }
}
