:root {
  --cream: #faf7f0;
  --paper: #fffdf8;
  --blush: #edbfbf;
  --sky: #b4d9e2;
  --sage: #557855;
  --forest: #1e301e;
  --gold: #c8a050;
  --warm: #f2e8cb;
  --rose: #c49090;
  --teal: #4a98a8;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--forest);
  background:
    radial-gradient(circle at 8% 8%, rgba(237, 191, 191, .42), transparent 28rem),
    radial-gradient(circle at 92% 20%, rgba(180, 217, 226, .45), transparent 26rem),
    var(--cream);
  font-family: "Inter", sans-serif;
  line-height: 1.7;
}

a { color: var(--sage); text-underline-offset: 3px; }
a:hover { color: var(--teal); }

.site-nav {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  padding: 14px clamp(20px, 5vw, 56px);
  border-bottom: 1px solid rgba(30, 48, 30, .08);
  background: rgba(250, 247, 240, .84);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.site-nav img { display: block; width: auto; height: 28px; }
.nav-back { font-size: 14px; font-weight: 600; text-decoration: none; }

.page-shell { width: min(100% - 36px, 820px); margin: 0 auto; padding: 72px 0 96px; }

.page-hero { margin-bottom: 42px; text-align: center; }
.eyebrow {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  margin-bottom: 18px;
  padding: 6px 14px;
  border: 1px solid rgba(196, 144, 144, .28);
  border-radius: 999px;
  background: rgba(255, 255, 255, .62);
  color: var(--rose);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

h1, h2 { font-family: "Fraunces", serif; }
h1 { margin: 0 0 14px; font-size: clamp(42px, 7vw, 68px); line-height: 1.03; }
.lede { max-width: 650px; margin: 0 auto; color: rgba(30, 48, 30, .72); font-size: 18px; }
.updated { margin-top: 16px; color: rgba(30, 48, 30, .55); font-size: 13px; }

.content-card {
  padding: clamp(28px, 6vw, 58px);
  border: 1px solid rgba(30, 48, 30, .08);
  border-radius: 28px;
  background: rgba(255, 253, 248, .9);
  box-shadow: 0 22px 70px rgba(30, 48, 30, .08);
}

.content-card h2 { margin: 42px 0 10px; font-size: 28px; line-height: 1.2; }
.content-card h2:first-child { margin-top: 0; }
.content-card p { margin: 0 0 17px; }
.content-card ul { margin: 10px 0 20px; padding-left: 22px; }
.content-card li { margin: 8px 0; }
.content-card strong { font-weight: 650; }
.content-card hr { margin: 38px 0 24px; border: 0; border-top: 1px solid rgba(30, 48, 30, .12); }

.support-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; margin-top: 24px; }
.support-card {
  padding: 25px;
  border: 1px solid rgba(30, 48, 30, .08);
  border-radius: 22px;
  background: rgba(255, 255, 255, .67);
}
.support-card.wide { grid-column: 1 / -1; }
.support-icon {
  display: grid;
  width: 42px;
  height: 42px;
  margin-bottom: 16px;
  place-items: center;
  border-radius: 14px;
  background: var(--warm);
  font-size: 21px;
}
.support-card h2 { margin: 0 0 7px; font-size: 22px; }
.support-card p { margin: 0; color: rgba(30, 48, 30, .7); font-size: 14px; }
.support-card a { font-weight: 650; }

.email-panel {
  position: relative;
  overflow: hidden;
  margin-bottom: 22px;
  padding: clamp(28px, 6vw, 48px);
  border-radius: 28px;
  color: white;
  background: var(--forest);
  box-shadow: 0 22px 70px rgba(30, 48, 30, .16);
}
.email-panel::after {
  position: absolute;
  right: -70px;
  bottom: -100px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: rgba(180, 217, 226, .15);
  content: "";
}
.email-panel h2 { position: relative; margin: 0 0 8px; font-size: clamp(28px, 5vw, 38px); }
.email-panel p { position: relative; max-width: 570px; margin: 0 0 23px; color: rgba(255, 255, 255, .75); }
.email-button {
  position: relative;
  z-index: 1;
  display: inline-flex;
  padding: 13px 21px;
  border-radius: 999px;
  color: var(--forest);
  background: var(--warm);
  font-weight: 700;
  text-decoration: none;
}
.email-button:hover { color: var(--forest); background: white; }

.page-footer { padding: 28px 20px 40px; color: rgba(30, 48, 30, .58); text-align: center; font-size: 13px; }
.page-footer nav { display: flex; justify-content: center; gap: 20px; margin-bottom: 8px; }
.page-footer a { color: inherit; }

@media (max-width: 640px) {
  .page-shell { padding-top: 50px; }
  .support-grid { grid-template-columns: 1fr; }
  .support-card.wide { grid-column: auto; }
  .site-nav { min-height: 64px; }
  .site-nav img { height: 24px; }
  .nav-back { font-size: 13px; }
}
