:root {
  --forest-950: #082f26;
  --forest-900: #0b3b30;
  --forest-800: #164f3f;
  --cream: #f5eddd;
  --paper: #fbfaf6;
  --ink: #18231f;
  --muted: #65716b;
  --line: #dce3dd;
  --gold: #c7a35a;
  --soft-green: #e8f0eb;
  color-scheme: light;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}
a { color: inherit; }
a:focus-visible { outline: 3px solid var(--gold); outline-offset: 4px; border-radius: 3px; }
.skip-link { position: fixed; z-index: 100; top: 10px; left: 10px; transform: translateY(-150%); padding: 8px 12px; background: white; color: var(--forest-950); }
.skip-link:focus { transform: none; }

.site-header {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 26px 0;
}
.brand { font-family: Georgia, "Times New Roman", serif; font-size: 28px; font-weight: 700; letter-spacing: -.04em; text-decoration: none; }
.brand-dot { color: var(--gold); }
.site-nav { display: flex; align-items: center; gap: 28px; font-size: 14px; }
.site-nav a { text-decoration: none; }
.site-nav a:not(.nav-cta):hover { text-decoration: underline; text-underline-offset: 5px; }
.nav-cta, .button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid var(--forest-900);
  border-radius: 999px;
  background: var(--forest-900);
  color: white;
  font-weight: 700;
  text-decoration: none;
  transition: transform .2s ease, background .2s ease;
}
.nav-cta:hover, .button:hover { transform: translateY(-2px); background: var(--forest-800); }
.button.secondary { border-color: rgba(255,255,255,.4); background: transparent; }
.button.secondary:hover { background: rgba(255,255,255,.08); }

.hero {
  overflow: hidden;
  margin-top: -96px;
  padding: 190px 0 112px;
  background:
    radial-gradient(circle at 82% 26%, rgba(199,163,90,.24), transparent 24%),
    linear-gradient(135deg, var(--forest-950), #064e3b 70%, #0b3b30);
  color: white;
}
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(50px, 8vw, 110px); align-items: center; width: min(1180px, calc(100% - 40px)); margin: 0 auto; }
.eyebrow { margin: 0 0 20px; color: #dcc48f; font-size: 12px; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; }
.hero h1 { max-width: 750px; margin: 0; font-family: Georgia, "Times New Roman", serif; font-size: clamp(58px, 8vw, 112px); font-weight: 500; letter-spacing: -.065em; line-height: .9; }
.hero h1 span { color: var(--cream); }
.hero-copy { max-width: 590px; margin: 30px 0 0; color: rgba(255,255,255,.76); font-size: clamp(17px, 2vw, 20px); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.envelope-stage { position: relative; min-height: 430px; }
.envelope-stage::before, .envelope-stage::after { content: ""; position: absolute; border: 1px solid rgba(218,190,128,.5); }
.envelope-stage::before { inset: 0 11% 15% 2%; border-radius: 50% 50% 8px 8px; }
.envelope-stage::after { width: 70%; height: 70%; top: -14%; right: -10%; transform: rotate(12deg); }
.envelope {
  position: absolute;
  right: 0;
  bottom: 5%;
  width: min(470px, 94%);
  aspect-ratio: 1.45;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.42);
  border-radius: 6px;
  background: linear-gradient(145deg, #f7efdF, #e6d5b4);
  box-shadow: 0 35px 90px rgba(0,0,0,.28);
  transform: rotate(-3deg);
}
.envelope::before, .envelope::after { content: ""; position: absolute; inset: 0; }
.envelope::before { background: linear-gradient(33deg, transparent 49.5%, #ddc9a6 50%), linear-gradient(-33deg, transparent 49.5%, #eadbbf 50%); }
.envelope::after { top: -50%; transform: rotate(45deg); background: #fff8e9; border: 1px solid #d9c39f; }

.section { padding: 100px 0; }
.section-inner { width: min(1080px, calc(100% - 40px)); margin: 0 auto; }
.section-heading { display: grid; grid-template-columns: .75fr 1.25fr; gap: 60px; align-items: start; }
.section-heading h2 { margin: 0; font-family: Georgia, "Times New Roman", serif; font-size: clamp(38px, 5vw, 64px); font-weight: 500; letter-spacing: -.045em; line-height: 1.05; }
.section-heading p { max-width: 620px; margin: 7px 0 0; color: var(--muted); font-size: 18px; }
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 58px; }
.feature-card { min-height: 250px; padding: 30px; border: 1px solid var(--line); border-radius: 20px; background: white; }
.feature-number { display: grid; width: 38px; height: 38px; place-items: center; border-radius: 50%; background: var(--soft-green); color: var(--forest-800); font-family: Georgia, serif; }
.feature-card h3 { margin: 45px 0 10px; font-family: Georgia, serif; font-size: 25px; font-weight: 500; }
.feature-card p { margin: 0; color: var(--muted); font-size: 15px; }
.privacy-band { background: var(--cream); }
.privacy-band .section-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.privacy-band h2 { margin: 0; font-family: Georgia, serif; font-size: clamp(40px, 5vw, 68px); font-weight: 500; letter-spacing: -.045em; line-height: 1; }
.privacy-band p { color: #65645e; }
.text-link { color: var(--forest-800); font-weight: 750; text-underline-offset: 4px; }

.site-footer { padding: 52px 0; border-top: 1px solid var(--line); background: #f2f3ef; }
.footer-inner { display: flex; align-items: flex-end; justify-content: space-between; gap: 30px; width: min(1180px, calc(100% - 40px)); margin: 0 auto; }
.footer-copy { margin: 10px 0 0; color: var(--muted); font-size: 13px; }
.footer-links { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 20px; font-size: 13px; }
.footer-links a { text-underline-offset: 4px; }

.legal-hero { padding: 78px 0 66px; border-top: 1px solid var(--line); background: linear-gradient(160deg, #f4eddf, #fbfaf6 60%); }
.legal-wrap { width: min(820px, calc(100% - 40px)); margin: 0 auto; }
.legal-hero h1 { margin: 0; font-family: Georgia, serif; font-size: clamp(46px, 7vw, 78px); font-weight: 500; letter-spacing: -.05em; line-height: 1; }
.legal-hero p { margin: 20px 0 0; color: var(--muted); font-size: 17px; }
.legal-content { padding: 68px 0 100px; }
.legal-content h2 { margin: 54px 0 12px; font-family: Georgia, serif; font-size: 28px; font-weight: 500; letter-spacing: -.02em; }
.legal-content h2:first-child { margin-top: 0; }
.legal-content h3 { margin: 30px 0 8px; font-size: 16px; }
.legal-content p, .legal-content li { color: #4f5d56; }
.legal-content ul { padding-left: 22px; }
.legal-content li + li { margin-top: 8px; }
.legal-callout { margin: 35px 0; padding: 24px; border-left: 3px solid var(--gold); background: #f7f2e8; }
.legal-callout p { margin: 0; }
.updated { font-size: 13px !important; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; }
.not-found { display: grid; min-height: calc(100vh - 180px); place-items: center; padding: 80px 20px; text-align: center; }
.not-found h1 { margin: 0; font-family: Georgia, serif; font-size: 72px; }
.not-found p { color: var(--muted); }

@media (max-width: 800px) {
  .site-header { padding-block: 20px; }
  .site-nav > a:not(.nav-cta) { display: none; }
  .hero { padding-top: 155px; padding-bottom: 80px; }
  .hero-grid, .section-heading, .privacy-band .section-inner { grid-template-columns: 1fr; }
  .envelope-stage { min-height: 320px; }
  .feature-grid { grid-template-columns: 1fr; }
  .feature-card { min-height: 210px; }
  .section { padding: 72px 0; }
  .footer-inner { align-items: flex-start; flex-direction: column; }
  .footer-links { justify-content: flex-start; }
}

@media (max-width: 480px) {
  .site-header, .hero-grid, .section-inner, .footer-inner, .legal-wrap { width: min(100% - 28px, 1180px); }
  .nav-cta { min-height: 40px; padding-inline: 14px; }
  .hero h1 { font-size: 56px; }
  .envelope-stage { min-height: 255px; }
  .feature-card { padding: 24px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; }
}
