:root {
  --bg: #fffaf5;
  --bg-soft: #fff1e6;
  --surface: rgba(255, 255, 255, 0.88);
  --surface-strong: rgba(255, 255, 255, 0.96);
  --text: #3f2d26;
  --muted: #6f5a50;
  --accent: #e987a2;
  --accent-2: #69b7b0;
  --border: rgba(181, 134, 112, 0.2);
  --shadow: 0 18px 50px rgba(185, 145, 123, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Inter', system-ui, sans-serif;
  background:
    radial-gradient(circle at top, rgba(233, 135, 162, 0.22), transparent 32%),
    radial-gradient(circle at right, rgba(105, 183, 176, 0.18), transparent 28%),
    linear-gradient(180deg, #fffdf9 0%, #fff6ee 52%, #fdf0e6 100%);
  color: var(--text);
  line-height: 1.6;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(12px);
  background: rgba(255, 248, 242, 0.88);
  border-bottom: 1px solid var(--border);
}

.nav-wrap {
  padding: 1rem 0;
}

.nav-top,
.nav-primary,
.nav-secondary,
.two-column,
.footer-grid,
.cta-card,
.hero-media,
.hero-actions {
  display: flex;
  gap: 1rem;
}

.nav-top {
  align-items: center;
  justify-content: space-between;
}

.nav-primary,
.nav-secondary {
  flex-wrap: wrap;
}

.nav-secondary {
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--border);
}

.brand {
  font-weight: 800;
  letter-spacing: 0.02em;
  font-size: 1.15rem;
}

.hero {
  padding: 5rem 0 3rem;
}

.hero-stack,
.two-column,
.footer-grid,
.intro-grid {
  display: grid;
  gap: 2rem;
}

.hero-stack {
  grid-template-columns: 1fr;
}

.hero-top-grid {
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  align-items: start;
}

.two-column,
.footer-grid,
.intro-grid {
  grid-template-columns: 1fr 1fr;
}

.eyebrow,
.card-label {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent-2);
  font-size: 0.8rem;
  font-weight: 700;
}

h1,
h2,
h3,
h4,
p,
ul,
ol,
blockquote {
  margin-top: 0;
}

h1 {
  font-size: clamp(2.5rem, 6vw, 4.8rem);
  line-height: 0.95;
  margin-bottom: 1rem;
}

.hero-copy {
  max-width: 760px;
}

.hero-copy h1,
.hero-copy .lead {
  max-width: 20ch;
}

.hero-media-top {
  align-self: start;
}

h2 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.05;
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.25rem;
}

.lead,
.prose p,
.prose li {
  color: var(--muted);
  font-size: 1.05rem;
}

.lead {
  max-width: 60ch;
  font-size: 1.125rem;
}

.section-tight {
  padding-top: 1.25rem;
}

.quick-facts {
  align-items: stretch;
}

.soft-card {
  background: rgba(255, 255, 255, 0.66);
}

.section {
  padding: 4rem 0;
}

.section-alt {
  background: rgba(255, 244, 236, 0.7);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.page-header {
  padding-top: 3rem;
}

.card,
.notice,
.quote {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.card {
  padding: 1.5rem;
}

.card-link {
  display: block;
  transition: transform 0.15s ease, border-color 0.15s ease;
}

.card-link:hover {
  transform: translateY(-2px);
  border-color: rgba(34, 211, 238, 0.35);
}

.notice,
.quote {
  padding: 1.25rem 1.5rem;
}

.highlight-card {
  background: linear-gradient(180deg, rgba(233, 135, 162, 0.24), rgba(105, 183, 176, 0.14));
}

.hero-media {
  display: block;
}

.hero-image {
  display: block;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center 30%;
  border-radius: 28px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

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

.feature-list,
.link-list,
.prose ul {
  padding-left: 1.2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.85rem 1.2rem;
  font-weight: 700;
  transition: transform 0.15s ease, opacity 0.15s ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  background: linear-gradient(90deg, var(--accent), #f2a774);
  color: white;
}

.button-secondary {
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.7);
}

.hero-actions,
.cta-actions {
  gap: 0.75rem;
  flex-wrap: wrap;
}

.prose {
  max-width: 75ch;
}

.prose h2 {
  margin-top: 2rem;
  font-size: 1.6rem;
}

.prose a,
.site-footer a,
.nav-primary a,
.nav-secondary a,
.subtle-link {
  color: #9d5f7a;
}

.prose a:hover,
.site-footer a:hover,
.nav-primary a:hover,
.nav-secondary a:hover,
.subtle-link:hover {
  color: #6f3f54;
}

.subtle-link {
  font-size: 0.95rem;
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.site-footer {
  padding: 2.5rem 0 4rem;
}

.site-footer p {
  color: var(--muted);
}

@media (max-width: 900px) {
  .two-column,
  .footer-grid,
  .cards-grid,
  .cards-grid-2,
  .intro-grid,
  .hero-top-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy h1,
  .hero-copy .lead {
    max-width: none;
  }

  .hero-image {
    aspect-ratio: 4 / 3;
  }
}

@media (max-width: 800px) {
  .nav-top {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero {
    padding-top: 3rem;
  }
}
