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

:root {
  --ink: #10221f;
  --deep: #0b3d38;
  --teal: #1a7a6d;
  --mint: #7fd3c2;
  --foam: #e8f7f3;
  --paper: #fff8ef;
  --sand: #f3e4c8;
  --coral: #e85d4c;
  --amber: #f0a202;
  --gold: #f6c453;
  --mute: #4a5c58;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Outfit, "Avenir Next", sans-serif;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.55;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background:
    radial-gradient(900px 520px at 0% -10%, #ffd89a 0%, transparent 55%),
    radial-gradient(800px 480px at 100% 8%, #9ee8d8 0%, transparent 50%),
    radial-gradient(700px 500px at 80% 100%, #ffc4b8 0%, transparent 45%);
}
nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 1rem 4vw 0;
  padding: 0.7rem 1.1rem;
  background: var(--deep);
  color: #f6fff9;
  border-radius: 999px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: #f6fff9;
  font-weight: 600;
  letter-spacing: 0.03em;
}
.brand img { width: 32px; height: 26px; filter: invert(1) sepia(0.2) hue-rotate(80deg) saturate(0.4) brightness(1.3); }
nav .links { display: flex; gap: 1.15rem; }
nav .links a { color: #d7efe8; text-decoration: none; font-size: 0.92rem; font-weight: 500; }
nav .links a:hover { color: var(--gold); }
.hero {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2.5rem;
  align-items: center;
  padding: 7vh 6vw 6vh;
}
.hero-copy { max-width: 38rem; }
.kicker, .hero p.kicker {
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--coral);
  font-weight: 600;
  margin: 0 0 0.9rem;
}
h1, h2 {
  font-family: Fraunces, Georgia, serif;
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.08;
}
h1 { font-size: clamp(2.6rem, 6vw, 4.4rem); margin: 0 0 1.1rem; }
.lede { font-size: 1.18rem; color: var(--mute); max-width: 36rem; }
.cta {
  display: inline-block;
  margin-top: 1.6rem;
  background: var(--coral);
  color: #fff;
  padding: 0.9rem 1.35rem;
  text-decoration: none;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: 0 10px 24px rgba(232, 93, 76, 0.28);
}
.cta.ghost {
  background: transparent;
  color: var(--deep);
  border: 2px solid var(--deep);
  margin-left: 0.55rem;
  box-shadow: none;
}
.hero-panel {
  background: linear-gradient(160deg, var(--deep) 0%, #15685d 55%, #e85d4c 140%);
  color: #f4fffb;
  border-radius: 2rem 2rem 2rem 0.6rem;
  padding: 2rem 1.8rem;
  min-height: 280px;
  box-shadow: 18px 22px 0 var(--gold);
  transform: rotate(-1.5deg);
}
.hero-panel h3 { font-family: Fraunces, Georgia, serif; font-size: 1.7rem; margin: 0 0 0.7rem; }
.hero-panel p { margin: 0; color: #d5f3eb; }
section { padding: 4.2rem 6vw; }
section h2 { font-size: clamp(1.8rem, 3.5vw, 2.5rem); margin: 0 0 0.5rem; }
.grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 1.1rem; margin-top: 1.6rem; }
.card {
  grid-column: span 6;
  background: #fff;
  border: 0;
  padding: 1.5rem 1.55rem 1.6rem;
  border-radius: 1.4rem;
  box-shadow: 0 12px 30px rgba(16, 34, 31, 0.06);
}
.card h3 { margin: 0 0 0.45rem; font-family: Fraunces, Georgia, serif; font-size: 1.25rem; }
.card p { margin: 0; color: var(--mute); }
.card.wide { grid-column: span 12; }
.card.tall { grid-column: span 7; }
.card.narrow { grid-column: span 5; }
.tint-teal { background: var(--foam); }
.tint-sand { background: var(--sand); }
.tint-coral { background: #ffe4de; }
.tint-gold { background: #ffe9b0; }
.note { color: var(--mute); }
#start {
  background: var(--deep);
  color: #f4fffb;
  border-radius: 2.2rem 2.2rem 0 0;
  margin-top: 1rem;
}
#start h2 { color: #fff; }
#start .note { color: #cbe9e1; }
form { max-width: 30rem; display: grid; gap: 0.7rem; margin-top: 1.2rem; }
input, textarea {
  font: inherit;
  padding: 0.85rem 0.95rem;
  border: 0;
  border-radius: 0.9rem;
  background: #fff;
  color: var(--ink);
}
button {
  font: inherit;
  font-weight: 600;
  background: var(--amber);
  color: var(--ink);
  border: 0;
  padding: 0.9rem 1.2rem;
  border-radius: 999px;
  cursor: pointer;
}
footer {
  padding: 1.4rem 6vw 2.4rem;
  font-size: 0.85rem;
  color: var(--mute);
  display: flex;
  justify-content: space-between;
}
article.post { padding: 8vh 6vw 4rem; max-width: 42rem; }
article.post .kicker { color: var(--coral); }
article.post h1 { font-size: clamp(2.1rem, 5vw, 3.2rem); }
article.post p { font-size: 1.12rem; }
article.post p.meta { color: var(--mute); }
.blog-list { padding: 8vh 6vw 4rem; max-width: 50rem; }
.blog-list a.card { display: block; text-decoration: none; color: inherit; }
.blog-list a.card:hover { transform: translateY(-3px); transition: 0.2s ease; }
@media (max-width: 860px) {
  .hero { grid-template-columns: 1fr; }
  .hero-panel { transform: none; box-shadow: 10px 12px 0 var(--gold); }
  .card, .card.tall, .card.narrow, .card.wide { grid-column: span 12; }
  nav .links { display: none; }
  .cta.ghost { display: inline-block; margin: 0.8rem 0 0; }
}
