:root {
  --pink: #FEB2B8;
  --blue: #99D8FF;
  --orange: #AF5500;
  --cream: #FDFFFE;
  --ink: #241D1C;
  --muted: #6B625F;
  --paper: #FFF8F2;
  --line: rgba(36,29,28,.14);
  --shadow: 0 18px 50px rgba(36,29,28,.10);
  --radius: 28px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 10% 8%, rgba(254,178,184,.42), transparent 26rem),
    radial-gradient(circle at 92% 16%, rgba(153,216,255,.38), transparent 30rem),
    linear-gradient(180deg, var(--cream) 0%, #fff 42%, var(--paper) 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

a { color: inherit; }
a:focus-visible, button:focus-visible { outline: 3px solid var(--blue); outline-offset: 4px; }

.site-shell { min-height: 100vh; overflow: hidden; position: relative; }
.site-shell::before,
.site-shell::after {
  content: "";
  position: fixed;
  z-index: -1;
  border-radius: 999px;
  filter: blur(1px);
  opacity: .42;
}
.site-shell::before { width: 210px; height: 210px; background: var(--pink); left: -80px; top: 34vh; }
.site-shell::after { width: 160px; height: 160px; background: var(--blue); right: -60px; top: 58vh; }

.wrap { width: min(1120px, calc(100% - 40px)); margin: 0 auto; }

header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 0;
}

.brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; font-weight: 900; letter-spacing: -.03em; }
.brand-mark {
  width: 44px;
  height: 44px;
  border: 2px solid var(--ink);
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--orange), #d67b2e);
  color: white;
  box-shadow: 5px 5px 0 var(--pink);
  font-family: Georgia, serif;
  font-size: 24px;
  font-weight: 900;
}

nav { display: flex; align-items: center; flex-wrap: wrap; justify-content: flex-end; gap: 7px; }
nav a { text-decoration: none; font-weight: 700; font-size: .92rem; padding: 9px 12px; border-radius: 999px; }
nav a:hover { background: rgba(255,255,255,.74); }

.hero {
  padding: 72px 0 54px;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, .75fr);
  gap: 54px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.75);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 12px;
  font-weight: 850;
  font-size: .83rem;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.eyebrow::before { content: ""; width: 9px; height: 9px; border-radius: 50%; background: var(--orange); }

h1, h2, h3 { margin: 0; line-height: 1.03; letter-spacing: -.05em; }
h1 { font-family: Georgia, "Times New Roman", serif; font-size: clamp(3.5rem, 8.5vw, 7.5rem); margin-top: 20px; max-width: 920px; }
h1 .at { color: var(--orange); }
h2 { font-family: Georgia, "Times New Roman", serif; font-size: clamp(2.2rem, 5vw, 4.2rem); }
h3 { font-size: 1.22rem; letter-spacing: -.025em; }

.lede { font-size: clamp(1.1rem, 2vw, 1.35rem); color: #4a413e; max-width: 720px; margin: 24px 0 0; }

.actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 12px 18px;
  border-radius: 15px;
  border: 2px solid var(--ink);
  text-decoration: none;
  font-weight: 900;
  box-shadow: 4px 4px 0 var(--ink);
  transition: transform .15s ease, box-shadow .15s ease;
}
.btn:hover { transform: translate(2px,2px); box-shadow: 2px 2px 0 var(--ink); }
.btn-primary { background: var(--orange); color: white; }
.btn-secondary { background: var(--cream); }
.btn-blue { background: var(--blue); }

.hero-card {
  position: relative;
  background: rgba(255,255,255,.86);
  border: 2px solid var(--ink);
  border-radius: 32px;
  padding: 28px;
  box-shadow: 10px 10px 0 var(--pink), var(--shadow);
  transform: rotate(1.25deg);
}
.hero-card .mini-title { font-family: Georgia, serif; font-weight: 900; font-size: 2rem; line-height: 1.05; }
.hero-card p { color: #554b47; }
.stamp { display: inline-block; background: var(--blue); border: 2px solid var(--ink); border-radius: 999px; padding: 7px 11px; font-weight: 900; font-size: .8rem; transform: rotate(-3deg); }

.section { padding: 72px 0; }
.section-copy { max-width: 740px; color: #554b47; margin: 18px 0 0; font-size: 1.08rem; }

.card-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 32px; }
.card {
  background: rgba(255,255,255,.82);
  border: 1.5px solid var(--ink);
  border-radius: 22px;
  padding: 22px;
  box-shadow: 5px 5px 0 rgba(36,29,28,.09);
}
.card:nth-child(2n) { background: rgba(153,216,255,.25); }
.card:nth-child(3n) { background: rgba(254,178,184,.25); }
.card p { color: #5c514d; margin-bottom: 0; }
.icon {
  width: 42px; height: 42px; border-radius: 13px; display: grid; place-items: center; margin-bottom: 18px;
  background: var(--cream); border: 1.5px solid var(--ink); font-weight: 950; font-size: 1.2rem;
}

.panel {
  background: var(--ink);
  color: var(--cream);
  border-radius: 34px;
  padding: clamp(28px, 5vw, 52px);
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 36px;
  align-items: center;
  box-shadow: var(--shadow);
}
.panel p { color: #f1e9e5; max-width: 700px; }
.panel .btn { border-color: var(--cream); box-shadow: 4px 4px 0 var(--cream); }
.panel .btn:hover { box-shadow: 2px 2px 0 var(--cream); }

.fact-list { margin: 0; padding: 0; list-style: none; display: grid; gap: 12px; }
.fact-list li { display: flex; gap: 11px; align-items: flex-start; }
.fact-list li::before { content: "✓"; flex: 0 0 auto; width: 26px; height: 26px; border-radius: 50%; background: var(--blue); color: var(--ink); display: grid; place-items: center; font-weight: 950; }

.page-hero { padding: 58px 0 34px; max-width: 860px; }
.page-hero h1 { font-size: clamp(3rem, 7vw, 6rem); }
.page-hero p { font-size: 1.14rem; color: #554b47; max-width: 760px; }

.prose {
  max-width: 860px;
  margin: 18px auto 72px;
  background: rgba(255,255,255,.90);
  border: 1.5px solid var(--ink);
  border-radius: 28px;
  padding: clamp(24px, 5vw, 48px);
  box-shadow: var(--shadow);
}
.prose h2 { font-size: clamp(1.65rem, 4vw, 2.45rem); margin: 38px 0 13px; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { margin-top: 28px; }
.prose p, .prose li { color: #4f4642; }
.prose ul, .prose ol { padding-left: 1.25rem; }
.prose a { color: #7a3b08; font-weight: 800; }
.note { background: rgba(153,216,255,.22); border: 1px solid rgba(36,29,28,.24); border-radius: 16px; padding: 16px 18px; }
.warning { background: rgba(254,178,184,.26); }

.badge-row { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 24px; }
.badge { border: 1.5px solid var(--ink); border-radius: 999px; padding: 8px 11px; font-weight: 800; font-size: .85rem; background: rgba(255,255,255,.72); }

footer { border-top: 1px solid var(--line); margin-top: 42px; }
.footer-inner { padding: 30px 0 46px; display: grid; grid-template-columns: 1fr auto; gap: 20px; align-items: start; }
.footer-links { display: flex; gap: 14px; flex-wrap: wrap; justify-content: flex-end; }
.footer-links a { font-weight: 750; color: #5b504c; }
.small { color: #746a66; font-size: .88rem; }

@media (max-width: 900px) {
  header { align-items: flex-start; }
  nav { max-width: 60%; }
  .hero { grid-template-columns: 1fr; padding-top: 44px; }
  .hero-card { max-width: 620px; transform: none; }
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .panel { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .wrap { width: min(100% - 26px, 1120px); }
  header { display: grid; }
  nav { max-width: none; justify-content: flex-start; margin-left: -8px; }
  nav a { font-size: .84rem; padding: 8px; }
  .hero { gap: 34px; }
  .card-grid { grid-template-columns: 1fr; }
  .actions .btn { width: 100%; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-links { justify-content: flex-start; }
}
.panel .btn-secondary { color: var(--ink); }
.panel .btn-blue { color: var(--ink); }
