:root {
  --ink: #3f2339;
  --muted: #725e69;
  --paper: #fffaf4;
  --terracotta: #c96f52;
  --blush: #e8b8ae;
  --sage: #738b79;
  --line: #ead9cc;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: radial-gradient(circle at 85% 8%, rgb(232 184 174 / 28%), transparent 24rem), var(--paper); font-family: Inter, ui-sans-serif, system-ui, sans-serif; }
a { color: inherit; }
.site-header { width: min(1180px, calc(100% - 40px)); margin: auto; padding: 26px 0; display: flex; align-items: center; justify-content: space-between; }
.brand { display: inline-flex; align-items: center; gap: 11px; text-decoration: none; font-size: 14px; font-weight: 800; }
.brand-mark { width: 34px; height: 34px; display: grid; place-items: center; border-radius: 50%; background: var(--ink); color: white; font-family: Georgia, serif; font-size: 22px; }
.header-link { text-decoration: none; font-size: 13px; font-weight: 700; border-bottom: 1px solid currentColor; padding-bottom: 3px; }
.hero { width: min(1180px, calc(100% - 40px)); min-height: 750px; margin: 18px auto 90px; display: grid; grid-template-columns: 1.05fr .8fr; align-items: center; gap: clamp(50px, 8vw, 120px); }
.eyebrow { margin: 0 0 18px; color: var(--terracotta); font-size: 12px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
h1, h2, h3, p { margin-top: 0; }
h1, h2 { font-family: Georgia, serif; font-weight: 600; letter-spacing: -.035em; }
h1 { max-width: 680px; margin-bottom: 26px; font-size: clamp(58px, 7vw, 102px); line-height: .9; }
.lede { max-width: 620px; margin-bottom: 34px; color: var(--muted); font-size: clamp(17px, 2vw, 21px); line-height: 1.65; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.button { min-height: 52px; display: inline-flex; align-items: center; justify-content: center; padding: 0 22px; border-radius: 100px; text-decoration: none; font-size: 13px; font-weight: 800; transition: transform 180ms ease, box-shadow 180ms ease; }
.button:hover { transform: translateY(-2px); }
.button:focus-visible { outline: 3px solid var(--sage); outline-offset: 3px; }
.button-primary { background: var(--ink); color: white; box-shadow: 0 14px 30px rgb(63 35 57 / 18%); }
.button-secondary { border: 1px solid var(--line); background: rgb(255 255 255 / 65%); }
.button-light { background: white; color: var(--ink); }
.trust-line { margin: 18px 0 0; color: var(--muted); font-size: 12px; }
.hero-visual { position: relative; margin: 0; padding: 18px 18px 28px; }
.hero-visual::before { content: ""; position: absolute; inset: 10% -8% -2% 12%; border-radius: 46% 54% 42% 58%; background: var(--blush); opacity: .42; transform: rotate(5deg); }
.visual-card { position: relative; overflow: hidden; border: 10px solid white; border-radius: 210px 210px 28px 28px; box-shadow: 0 30px 70px rgb(63 35 57 / 18%); transform: rotate(1.8deg); }
.visual-card img { display: block; width: 100%; height: auto; }
.hero-visual figcaption { position: absolute; right: -6px; bottom: 8px; padding: 10px 14px; background: var(--sage); color: white; border-radius: 8px; font-size: 11px; font-weight: 800; transform: rotate(-3deg); }
.inside { padding: 100px max(20px, calc((100vw - 1180px) / 2)); background: white; }
.section-heading { max-width: 700px; }
h2 { margin-bottom: 42px; font-size: clamp(44px, 5vw, 70px); line-height: .98; }
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.feature-grid article { min-height: 245px; padding: 30px; border: 1px solid var(--line); border-radius: 22px; background: var(--paper); }
.feature-grid span { color: var(--terracotta); font-size: 11px; font-weight: 800; }
.feature-grid h3 { margin: 58px 0 12px; font-family: Georgia, serif; font-size: 28px; }
.feature-grid p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.65; }
.community { width: min(1180px, calc(100% - 40px)); margin: 90px auto; padding: clamp(40px, 7vw, 86px); display: flex; align-items: flex-end; justify-content: space-between; gap: 50px; border-radius: 30px; background: var(--ink); color: white; }
.community > div { max-width: 680px; }
.community h2 { margin-bottom: 22px; }
.community p:not(.eyebrow) { margin: 0; color: #eadfe5; line-height: 1.75; }
footer { width: min(1180px, calc(100% - 40px)); margin: auto; padding: 28px 0 38px; display: flex; justify-content: space-between; gap: 20px; border-top: 1px solid var(--line); color: var(--muted); font-size: 11px; }
@media (max-width: 820px) { .hero { grid-template-columns: 1fr; margin-top: 50px; } .hero-visual { width: min(480px, 100%); margin: auto; } .feature-grid { grid-template-columns: 1fr; } .community { align-items: flex-start; flex-direction: column; } }
@media (max-width: 520px) { .header-link { font-size: 0; } .header-link span { font-size: 16px; } h1 { font-size: 54px; } .hero { width: min(100% - 28px, 1180px); gap: 54px; } .hero-actions .button { width: 100%; } footer { flex-direction: column; } }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } .button { transition: none; } }
