@import url("https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,600;9..144,700;9..144,800&family=Manrope:wght@400;500;600;700;800&display=swap");

:root {
  --cream: #f6efe5;
  --paper: #fbf7ef;
  --ink: #1c1917;
  --muted: #57534e;
  --line: rgba(28, 25, 23, 0.12);
  --orange: #e87f54;
  --green: #78b7a3;
  --yellow: #f6d35f;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Manrope, ui-sans-serif, system-ui, sans-serif;
  background:
    radial-gradient(circle at 12% 8%, rgba(232, 127, 84, 0.28), transparent 28%),
    radial-gradient(circle at 90% 10%, rgba(120, 183, 163, 0.34), transparent 30%),
    radial-gradient(circle at 52% 100%, rgba(246, 211, 95, 0.36), transparent 32%),
    var(--cream);
  color: var(--ink);
}
a { color: inherit; }
.shell { width: min(1180px, calc(100% - 32px)); margin: 0 auto; padding: 28px 0 76px; }
.nav { display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 16px 0 42px; }
.brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; font-size: 19px; font-weight: 900; letter-spacing: -0.03em; }
.brand-mark { width: 44px; height: 44px; border-radius: 17px; display: inline-flex; align-items: center; justify-content: center; background: var(--ink); color: var(--yellow); box-shadow: 5px 5px 0 var(--orange); }
.nav-links { display: flex; flex-wrap: wrap; gap: 10px; font-size: 14px; font-weight: 900; }
.nav-links a { text-decoration: none; border: 1px solid var(--line); background: rgba(255,255,255,0.55); border-radius: 999px; padding: 10px 14px; }
.hero { border: 2px solid var(--ink); border-radius: 34px; background: var(--paper); padding: clamp(30px, 6vw, 58px); box-shadow: 12px 12px 0 var(--green); }
.eyebrow { margin: 0 0 14px; color: #a64b2a; font-size: 12px; font-weight: 900; letter-spacing: 0.22em; text-transform: uppercase; }
h1, h2, h3 { font-family: Fraunces, Georgia, serif; letter-spacing: -0.045em; }
h1 { margin: 0; font-size: clamp(44px, 7vw, 82px); line-height: 0.95; }
.lead { margin: 24px 0 0; max-width: 820px; color: var(--muted); font-size: clamp(17px, 2vw, 20px); line-height: 1.78; }
.button-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.button { display: inline-flex; justify-content: center; border-radius: 999px; background: var(--ink); color: #fff; text-decoration: none; font-size: 14px; font-weight: 900; padding: 13px 20px; box-shadow: 5px 5px 0 var(--orange); }
.button.secondary { background: rgba(255,255,255,.62); color: var(--ink); border: 1px solid var(--line); box-shadow: none; }
.section { margin-top: 64px; }
.section-head { display: flex; align-items: end; justify-content: space-between; gap: 20px; margin-bottom: 22px; }
.section-head h2 { margin: 0; max-width: 760px; font-size: clamp(34px, 5vw, 58px); line-height: 1; }
.section-head p { max-width: 420px; color: var(--muted); line-height: 1.75; }
.grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.card { display: flex; flex-direction: column; min-height: 245px; border: 2px solid var(--ink); border-radius: 28px; background: var(--paper); padding: 24px; text-decoration: none; box-shadow: 9px 9px 0 var(--green); }
.card:nth-child(2n) { box-shadow: 9px 9px 0 var(--orange); }
.card small { color: #a64b2a; font-size: 12px; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
.card h3 { margin: 16px 0 10px; font-size: 30px; line-height: 1.05; }
.card p { margin: 0; color: var(--muted); line-height: 1.7; }
.card span { margin-top: auto; padding-top: 20px; font-weight: 900; }
.feature-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.feature-item { border: 1px solid var(--line); border-radius: 24px; background: rgba(255,255,255,.62); padding: 22px; }
.feature-item h3 { margin: 0 0 8px; font-size: 26px; }
.feature-item p { margin: 0; color: var(--muted); line-height: 1.75; }
.footer { margin-top: 70px; padding-top: 26px; border-top: 1px solid var(--line); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 18px; color: #78716c; font-size: 13px; font-weight: 700; }
@media (max-width: 920px) { .grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } .section-head { display: block; } }
@media (max-width: 640px) { .shell { width: min(100% - 24px, 1180px); padding-top: 18px; } .nav { align-items: flex-start; flex-direction: column; } .grid, .feature-list { grid-template-columns: 1fr; } .hero, .card { box-shadow: 7px 7px 0 var(--green); border-radius: 26px; } }
