:root {
  --bg: #f6f1e8;
  --bg-soft: #fbf8f2;
  --card: rgba(255, 252, 247, 0.78);
  --green: #183f3a;
  --green-hover: #0f332f;
  --green-soft: #6d8981;
  --gold: #b79c64;
  --gold-soft: rgba(183, 156, 100, 0.22);
  --text: #2c2a27;
  --muted: #6c6963;
  --line: rgba(24, 63, 58, 0.12);
  --shadow: 0 24px 60px rgba(46, 45, 38, 0.08);
  --serif: "Playfair Display", Georgia, "Times New Roman", serif;
  --sans: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  min-height: 100vh;
  background:
    radial-gradient(circle at 15% 12%, rgba(183, 156, 100, 0.10), transparent 28%),
    radial-gradient(circle at 88% 82%, rgba(24, 63, 58, 0.08), transparent 26%),
    var(--bg);
  color: var(--text);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a {
  color: inherit;
}

.page-shell {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-rows: auto 1fr auto;
  width: min(1080px, calc(100% - 40px));
  min-height: 100vh;
  margin: 0 auto;
  overflow: hidden;
}

.site-header {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  padding: 32px 0 8px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
  border: 1px solid rgba(24, 63, 58, 0.10);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.38);
  color: var(--green);
  box-shadow: 0 10px 28px rgba(24, 63, 58, 0.04);
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(24, 63, 58, 0.12), rgba(183, 156, 100, 0.22));
  color: var(--green);
  font-size: 18px;
  line-height: 1;
}

.brand-copy {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.main-content {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  padding: 34px 0 56px;
}

.hero {
  width: min(100%, 780px);
  padding: clamp(28px, 4vw, 42px);
  border: 1px solid rgba(24, 63, 58, 0.10);
  border-radius: 34px;
  background: var(--card);
  box-shadow: var(--shadow);
  text-align: center;
  backdrop-filter: blur(10px);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--green-soft);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 18px;
  color: var(--green);
  font-family: var(--serif);
  font-size: clamp(48px, 7vw, 82px);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.lead {
  max-width: 520px;
  margin: 0 auto;
  color: var(--muted);
  font-size: clamp(17px, 2.1vw, 21px);
  line-height: 1.65;
}

.illustration-wrap {
  margin-top: clamp(28px, 5vw, 42px);
  padding-top: clamp(24px, 4vw, 30px);
  border-top: 1px solid var(--line);
}

.hero-illustration {
  display: block;
  width: min(100%, 520px);
  height: auto;
  margin: 0 auto;
  filter: drop-shadow(0 18px 28px rgba(24, 63, 58, 0.07));
}

.site-footer {
  position: relative;
  z-index: 2;
  padding: 18px 0 28px;
  color: rgba(44, 42, 39, 0.54);
  font-size: 12px;
  text-align: center;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: rgba(24, 63, 58, 0.7);
  font-weight: 600;
  text-decoration: none;
  transition: color 180ms ease;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--green);
}

.site-footer a:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
}

.background-orb {
  position: absolute;
  z-index: 1;
  border-radius: 50%;
  pointer-events: none;
}

.background-orb--one {
  top: 12%;
  right: -120px;
  width: 280px;
  height: 280px;
  border: 1px solid rgba(183, 156, 100, 0.16);
}

.background-orb--two {
  bottom: 10%;
  left: -92px;
  width: 210px;
  height: 210px;
  border: 1px solid rgba(24, 63, 58, 0.10);
}

@media (max-width: 640px) {
  .page-shell {
    width: min(100% - 24px, 560px);
  }

  .site-header {
    padding-top: 22px;
  }

  .brand {
    gap: 10px;
    padding: 9px 13px;
  }

  .brand-copy {
    font-size: 11px;
    letter-spacing: 0.10em;
  }

  .main-content {
    padding: 22px 0 42px;
  }

  .hero {
    padding: 24px 20px;
    border-radius: 26px;
  }

  h1 {
    font-size: clamp(40px, 14vw, 58px);
  }

  .lead {
    font-size: 16px;
    line-height: 1.6;
  }

  .illustration-wrap {
    margin-top: 24px;
    padding-top: 22px;
  }

  .site-footer {
    padding-bottom: 22px;
  }

  .background-orb--one {
    right: -150px;
    width: 230px;
    height: 230px;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
