:root {
  --brand-navy: #325c70;
  --brand-pink: #eec1cb;
  --brand-offwhite: #f6f6f6;
  --brand-black: #000;
  --navy-dark: #22404f;
  --navy-hover: #284a5a;
  --surface: #fff;
  --text-muted: rgba(0, 0, 0, .57);
  --font-heading: "Poppins", sans-serif;
  --font-body: "Poppins", sans-serif;
  --shadow-md: 0 3px 10px rgba(46, 43, 37, .16);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--brand-offwhite);
  color: var(--brand-black);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; }

h1, h2, h3, p { margin-top: 0; }

h1, h2, h3 {
  font-family: var(--font-heading);
  letter-spacing: -.015em;
  line-height: 1.12;
}

h2 { font-size: 32px; font-weight: 500; }

::selection { background: color-mix(in srgb, var(--brand-navy) 30%, transparent); }

:focus-visible {
  outline: 2px solid var(--brand-navy);
  outline-offset: 4px;
}

.site-shell {
  min-height: 100vh;
  overflow: hidden;
  position: relative;
}

.nav {
  align-items: center;
  display: flex;
  gap: 18px;
  margin: 0 auto;
  max-width: 1040px;
  padding: 13px 18px;
  position: relative;
  z-index: 2;
}

.nav-brand {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 400;
  margin-right: auto;
  text-decoration: none;
  transition: color .2s ease;
}

.nav-brand:hover { color: var(--brand-navy); }

.btn {
  align-items: center;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  display: inline-flex;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 500;
  justify-content: center;
  line-height: 1.2;
  padding: 9px 16px;
  text-decoration: none;
}

.btn-primary {
  background: var(--brand-navy);
  color: var(--brand-offwhite);
  font-size: 16px;
  padding: 14px 28px;
}

.btn-primary:hover { background: var(--navy-hover); }
.btn-primary:active { background: var(--navy-dark); }

.btn-secondary { border-color: rgba(0, 0, 0, .16); }
.btn-secondary:hover { background: rgba(0, 0, 0, .06); color: var(--brand-navy); }

.cta-btn { transition: background .2s ease, transform .25s ease; }
.cta-btn:hover { transform: scale(1.04); }
.cta-btn:active { transform: scale(.98); }

.hero, .mission, .services { margin: 0 auto; position: relative; z-index: 1; }

.hero {
  max-width: 760px;
  padding: 64px 24px 56px;
}

.hero h1 {
  font-family: "Abril Fatface", var(--font-heading);
  font-size: clamp(44px, 9vw, 72px);
  font-weight: 400;
  margin: 20px 0 14px;
}

.hero-subhead {
  color: var(--navy-dark);
  font-size: clamp(20px, 3.4vw, 26px);
  font-weight: 500;
  margin-bottom: 18px;
}

.hero-copy {
  font-size: 17px;
  max-width: 56ch;
  opacity: .85;
}

.tag {
  align-items: center;
  border-radius: 999px;
  display: inline-flex;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .02em;
  padding: 3px 10px;
}

.tag-accent { background: color-mix(in srgb, var(--brand-navy) 12%, white); }
.tag-pink { background: color-mix(in srgb, var(--brand-pink) 35%, white); }

.cta-row {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 28px;
}

.email-link {
  color: var(--text-muted);
  font-size: 14px;
  text-decoration-color: transparent;
  text-underline-offset: 4px;
  transition: color .2s ease, text-decoration-color .2s ease;
}

.email-link:hover { color: var(--brand-navy); text-decoration-color: currentColor; }

.mission { max-width: 760px; padding: 32px 24px 64px; }
.mission h2 { margin: 16px 0 9px; max-width: 20ch; }
.section-copy { font-size: 16px; max-width: 58ch; opacity: .85; }

.services { max-width: 1040px; padding: 32px 24px 72px; }
.services > h2 { margin-bottom: 32px; }

.service-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.card {
  background: var(--surface);
  border-radius: 32px;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  gap: 9px;
  min-height: 240px;
  padding: 28px;
  transition: box-shadow .35s ease, transform .35s cubic-bezier(.2, .7, .3, 1);
}

.card:hover { box-shadow: 0 12px 32px rgba(46, 43, 37, .18); transform: translateY(-6px); }

.card-icon {
  fill: none;
  height: 30px;
  margin-bottom: 5px;
  stroke: var(--brand-navy);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.25;
  width: 30px;
}

.card-kicker {
  color: var(--brand-navy);
  font-size: 10px;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.card h3 { font-size: 17px; font-weight: 500; margin: 0; }

.card ul {
  flex: 1;
  font-size: 13px;
  margin: 0;
  opacity: .8;
  padding-left: 18px;
}

.card li + li { margin-top: 3px; }

.contact {
  background: var(--surface);
  padding: 72px 24px;
  position: relative;
  z-index: 1;
}

.contact-inner { margin: 0 auto; max-width: 640px; }
.contact h2 { margin-bottom: 13px; }
.contact p { font-size: 16px; max-width: 52ch; opacity: .85; }
.contact .cta-row { margin-top: 8px; }

footer { color: var(--text-muted); font-size: 12px; padding: 28px 24px; text-align: center; }

.blob {
  border-radius: 50%;
  filter: blur(2px);
  opacity: .5;
  pointer-events: none;
  position: absolute;
}

.blob-pink { background: color-mix(in srgb, var(--brand-pink) 55%, white); height: 260px; right: -80px; top: -80px; width: 260px; }
.blob-blue { background: color-mix(in srgb, var(--brand-navy) 20%, white); height: 180px; left: -60px; top: 420px; width: 180px; }

.reveal { opacity: 0; transform: translateY(22px); }
.reveal.is-visible { animation: reveal-in .8s cubic-bezier(.2, .7, .3, 1) both; }
.card:nth-child(2) { animation-delay: .1s; }
.card:nth-child(3) { animation-delay: .2s; }

@keyframes reveal-in { to { opacity: 1; transform: none; } }

@media (max-width: 640px) {
  .hide-mobile { display: none; }
  .hero { padding-top: 54px; }
  .card { min-height: 0; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal, .reveal.is-visible { animation: none; opacity: 1; transform: none; }
  .card, .cta-btn { transition: none; }
}
