@import url("https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,700&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400;1,500;1,600&family=Lato:ital,wght@0,300;0,400;0,700;0,900;1,400&family=Sacramento&display=swap");

:root {
  --matcha: #8fb78f;
  --matcha-deep: #6e9e73;
  --pistachio: #cbe6c7;
  --azure: #b4cccf;
  --indigo: #28536b;
  --indigo-deep: #1e4153;
  --orchid: #c77e5d;
  --peach: #ffc49b;
  --cream: #f7f5ef;
  --cream-2: #efece2;
  --panel: #ffffff;
  --text: #243f4d;
  --muted: #5c6b72;
  --line: rgba(36, 63, 77, 0.14);
  --line-soft: rgba(36, 63, 77, 0.08);
  --maxw: 1180px;
  --font-body: "Lato", Arial, sans-serif;
  --font-head: "Playfair Display", Georgia, serif;
  --font-brand: "Fraunces", Georgia, serif;
  --font-script: "Sacramento", cursive;
  --shadow-soft: 0 24px 54px -34px rgba(36, 63, 77, 0.28);
  --shadow-card: 0 32px 70px -42px rgba(36, 63, 77, 0.34);
  --ease: cubic-bezier(.2, .7, .2, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--text);
  line-height: 1.72;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(360px 360px at 8% 22%, rgba(180, 204, 207, 0.18), transparent 70%),
    radial-gradient(480px 480px at 92% 12%, rgba(255, 196, 155, 0.14), transparent 70%);
  z-index: -1;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color .22s var(--ease), border-color .22s var(--ease), background .22s var(--ease), transform .22s var(--ease), box-shadow .22s var(--ease);
}

a:focus-visible,
button:focus-visible,
input:focus-visible {
  outline: 3px solid rgba(143, 183, 143, 0.45);
  outline-offset: 3px;
}

img { display: block; max-width: 100%; }

.shell {
  width: min(var(--maxw), calc(100% - 40px));
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 40;
  background: color-mix(in srgb, var(--cream) 92%, transparent);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--line), 0 10px 30px -22px rgba(36, 63, 77, 0.4);
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 78px;
}

.brand {
  color: var(--ink);
}

.brand .name {
  font-family: var(--font-brand);
  font-weight: 700;
  font-size: 21px;
  line-height: .96;
  letter-spacing: .01em;
  text-transform: none;
  color: var(--ink);
  white-space: nowrap;
  display: flex;
  flex-direction: column;
  transition: color .35s var(--ease);
}

.brand:hover .name {
  color: var(--indigo);
}

.nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 24px;
}

.nav a {
  position: relative;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--ink-soft);
  padding-bottom: 3px;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 0;
  height: 1.5px;
  background: var(--peach);
  transition: right .24s var(--ease);
}

.nav a:hover {
  color: var(--indigo);
}

.nav a:hover::after,
.nav a:focus-visible::after {
  right: 0;
}

.hero {
  padding: 88px 0 34px;
}

.hero > .card {
  max-width: min(100%, 980px);
  margin-inline: auto;
}

.hero > .eyebrow,
.hero > h1,
.hero > .lede {
  text-align: center;
}

.hero > h1 {
  max-width: 16ch;
  margin-inline: auto;
}

.hero > .lede {
  max-width: 46rem;
  margin-inline: auto;
}

.eyebrow {
  margin: 0 0 14px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--matcha-deep);
}

h1, h2, h3 {
  font-family: var(--font-head);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -.01em;
  margin: 0 0 18px;
  color: var(--text);
  text-wrap: balance;
}

h1 { font-size: clamp(36px, 5.2vw, 60px); }
h2 { font-size: clamp(32px, 4.4vw, 54px); margin-top: 46px; }
h3 { font-size: clamp(24px, 2.6vw, 36px); margin-top: 30px; }

p, li {
  font-size: 18px;
  color: var(--text);
}

.lede {
  font-size: clamp(16px, 1.5vw, 19px);
  color: var(--muted);
  line-height: 1.7;
}

.card {
  position: relative;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line-soft);
  border-radius: 20px;
  padding: clamp(28px, 4vw, 52px);
  box-shadow: 0 30px 60px -40px rgba(36, 63, 77, 0.4);
}

.card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(203, 230, 199, 0.18), transparent 68%);
  pointer-events: none;
}

.card > * {
  position: relative;
  z-index: 1;
}

.card p + p,
.card p + ul,
.card ul + p,
.card p + .cta,
.card ul + .cta {
  margin-top: 18px;
}

.card > :first-child {
  margin-top: 0;
}

.card h2 + p,
.card h3 + p {
  max-width: 42rem;
}

.grid {
  display: grid;
  gap: 20px;
}

.two-col {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

ul {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 16px 0 0;
  list-style: none;
}

li {
  position: relative;
  padding: 18px 22px 18px 56px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid var(--line-soft);
}

li::before {
  content: "";
  position: absolute;
  left: 22px;
  top: 23px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--matcha), var(--peach));
  box-shadow: 0 0 0 6px rgba(143, 183, 143, 0.12);
}

.cta {
  margin-top: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 16px 28px;
  border-radius: 999px;
  background: var(--peach);
  border: 1.5px solid transparent;
  color: var(--indigo);
  font-size: 13px;
  font-weight: 700;
  font-family: var(--font-body);
  letter-spacing: .12em;
  text-transform: uppercase;
  box-shadow: 0 12px 26px -14px rgba(255, 196, 155, 0.9);
}

.cta:hover {
  background: #ffd3b3;
  transform: translateY(-2px);
  box-shadow: 0 18px 34px -12px rgba(255, 196, 155, 0.85);
}

.list {
  display: grid;
  gap: 20px;
  margin: 34px 0 0;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.list a {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 26px 26px 24px;
  background: #fff;
  border: 1px solid var(--line-soft);
  border-radius: 18px;
  box-shadow: 0 30px 50px -32px rgba(36, 63, 77, 0.2);
}

.list a::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 130px;
  height: 130px;
  background: radial-gradient(circle, rgba(203, 230, 199, 0.24), transparent 70%);
  pointer-events: none;
}

.list a:hover {
  transform: translateY(-4px);
  border-color: var(--line);
  box-shadow: 0 30px 50px -32px rgba(36, 63, 77, 0.45);
}

.list strong,
.list small {
  position: relative;
  z-index: 1;
}

.list strong {
  font-family: var(--font-head);
  font-size: clamp(26px, 2.6vw, 36px);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -.01em;
  color: var(--text);
  text-wrap: balance;
}

.list small {
  display: block;
  margin-top: 12px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

.footer {
  margin-top: 74px;
  padding: 30px 0 52px;
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 14px;
}

.footer a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--indigo);
  font-weight: 700;
  letter-spacing: .04em;
}

.footer a:hover {
  color: var(--indigo-deep);
  transform: translateX(3px);
}

@media (max-width: 980px) {
  .hero > h1 { max-width: 100%; }
  .topbar-inner { gap: 18px; }
  .nav { gap: 12px 16px; font-size: 12px; }
  .brand .name { font-size: 19px; }
  .list strong { font-size: clamp(24px, 3.5vw, 30px); }
}

@media (max-width: 720px) {
  .shell { width: min(var(--maxw), calc(100% - 24px)); }
  .topbar-inner {
    min-height: 68px;
    align-items: flex-start;
    padding: 14px 0;
  }
  .brand .name { font-size: 18px; }
  .nav {
    gap: 10px 14px;
    font-size: 11px;
    letter-spacing: 0.06em;
  }
  .hero { padding: 56px 0 20px; }
  h1 { font-size: clamp(36px, 10vw, 52px); }
  h2 { font-size: clamp(28px, 6vw, 36px); margin-top: 36px; }
  p, li { font-size: 17px; }
  .lede { font-size: 16px; }
  .card {
    border-radius: 18px;
    padding: 24px 20px;
  }
  li { padding: 16px 18px 16px 50px; }
  li::before { left: 18px; top: 21px; }
  .list { grid-template-columns: 1fr; }
  .list a { padding: 22px 20px; border-radius: 16px; }
  .list strong { font-size: clamp(24px, 7vw, 30px); }
  .cta {
    width: 100%;
    min-height: 54px;
    padding-inline: 18px;
    text-align: center;
  }
}
