/* Micka Badani — lactation consultant one-page site
   Palette: Rose Dust #C2706A · Blush #F9D5D3 · Warm Cream #FDF6EE
            Deep Teal #1A4A4A · Sage Green #6B8F71 */

:root {
  --rose: #C2706A;
  --blush: #F9D5D3;
  --cream: #FDF6EE;
  --teal: #1A4A4A;
  --sage: #6B8F71;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--cream);
  color: var(--teal);
  font-family: 'Rubik', sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

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

a {
  color: var(--teal);
  text-decoration: none;
}

a:hover {
  color: var(--rose);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@keyframes dot-pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.35); opacity: 0.75; }
}

/* Skip link */
.skip-link {
  position: absolute;
  top: -48px;
  right: 12px;
  z-index: 100;
  background: var(--teal);
  color: var(--cream);
  padding: 10px 18px;
  border-radius: 999px;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 12px;
  color: var(--cream);
}

/* ===== Wordmark (shared: nav + footer) ===== */
.wordmark {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--cream);
}

.wordmark .accent-c {
  position: relative;
  display: inline-block;
}

.wordmark .accent-c .dot {
  position: absolute;
  top: -0.14em;
  left: 50%;
  transform: translateX(-50%);
  width: 0.16em;
  height: 0.16em;
  border-radius: 50%;
  background: var(--rose);
}

/* ===== Nav ===== */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(253, 246, 238, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(194, 112, 106, 0.15);
}

.site-nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.site-nav .wordmark {
  font-size: 22px;
  color: var(--teal);
  white-space: nowrap;
}

.nav-links {
  display: flex;
  gap: 22px;
  align-items: center;
  overflow-x: auto;
  font-size: 15px;
  font-weight: 400;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.nav-links::-webkit-scrollbar {
  display: none;
}

.nav-links a {
  color: var(--teal);
  white-space: nowrap;
}

.nav-links a.nav-cta {
  color: var(--rose);
  font-weight: 500;
}

.nav-links a.nav-cta:hover {
  color: var(--teal);
}

/* ===== Section flow (soft overlapping arches) ===== */
.section {
  position: relative;
  padding: clamp(72px, 10vw, 120px) 24px;
  border-radius: 56px 56px 0 0;
  margin-top: -56px;
  scroll-margin-top: 64px;
}

.section-inner {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.section-inner--wide {
  max-width: 1100px;
  gap: 40px;
}

.section-title {
  margin: 0;
  font-size: clamp(28px, 4vw, 38px);
  font-weight: 500;
}

.section-title .dot {
  display: inline-block;
  width: 0.22em;
  height: 0.22em;
  border-radius: 50%;
  margin-inline-start: 0.18em;
}

/* ===== 1. Hero ===== */
.hero {
  background: var(--cream);
  padding: clamp(48px, 8vw, 96px) 24px clamp(96px, 12vw, 150px);
}

.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: clamp(40px, 6vw, 80px);
  justify-content: center;
}

.hero-copy {
  flex: 1 1 340px;
  max-width: 560px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-eyebrow .pulse-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--rose);
  animation: dot-pulse 3s ease-in-out infinite;
  flex-shrink: 0;
}

.hero-eyebrow span:last-child {
  font-size: 15px;
  letter-spacing: 0.06em;
  color: var(--rose);
  font-weight: 500;
}

.hero h1 {
  margin: 0;
  font-size: clamp(34px, 5vw, 54px);
  font-weight: 500;
  line-height: 1.25;
  text-wrap: pretty;
}

.hero p {
  margin: 0;
  font-size: clamp(17px, 2vw, 20px);
  font-weight: 300;
  line-height: 1.8;
  text-wrap: pretty;
}

.hero-cta-wrap {
  display: flex;
  margin-top: 8px;
}

.hero-portrait-wrap {
  flex: 0 1 380px;
  display: flex;
  justify-content: center;
  position: relative;
}

.hero-portrait-wrap .blob {
  position: absolute;
  inset: auto -24px -32px auto;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: var(--blush);
  z-index: 0;
}

.hero-portrait-wrap .accent-dot {
  position: absolute;
  top: 18px;
  right: -14px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--rose);
  z-index: 2;
}

.hero-portrait {
  position: relative;
  z-index: 1;
  width: min(380px, 82vw);
  aspect-ratio: 2 / 3;
  object-fit: cover;
  border-radius: 999px 999px 28px 28px;
}

/* ===== WhatsApp CTA button ===== */
.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--rose);
  color: var(--cream);
  font-size: 18px;
  font-weight: 500;
  padding: 16px 32px;
  border-radius: 999px;
  box-shadow: 0 8px 24px rgba(194, 112, 106, 0.35);
  transition: background 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
}

.btn-whatsapp:hover,
.btn-whatsapp:focus-visible {
  background: var(--teal);
  color: var(--cream);
  box-shadow: 0 8px 24px rgba(26, 74, 74, 0.3);
}

.btn-whatsapp--large {
  font-size: 18px;
  padding: 18px 38px;
  margin-top: 8px;
}

/* ===== 2. Short intro section ===== */
.intro {
  background: var(--blush);
  overflow: hidden;
}

.intro .section-inner {
  text-align: center;
  align-items: center;
  gap: 28px;
}

.intro-blob {
  position: absolute;
  top: -70px;
  right: 8%;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  background: rgba(253, 246, 238, 0.55);
  pointer-events: none;
}

.intro p {
  position: relative;
  margin: 0;
  font-size: clamp(21px, 3vw, 28px);
  font-weight: 400;
  line-height: 1.75;
  text-wrap: pretty;
}

/* ===== 3. Story ===== */
.story {
  background: var(--cream);
}

.story .section-title .dot {
  background: var(--rose);
}

.story-lede {
  margin: 0;
  font-size: clamp(19px, 2.4vw, 23px);
  font-weight: 400;
  line-height: 1.8;
  color: var(--rose);
  text-wrap: pretty;
}

.story p.body,
.story p.tail {
  margin: 0;
  font-size: 17px;
  font-weight: 300;
  line-height: 1.95;
  text-wrap: pretty;
}

.story-callout {
  position: relative;
  overflow: hidden;
  background: var(--blush);
  border-radius: 28px;
  padding: clamp(24px, 4vw, 40px);
}

.story-callout-blob {
  position: absolute;
  bottom: -60px;
  left: -60px;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  background: rgba(194, 112, 106, 0.14);
  pointer-events: none;
}

.story-callout p {
  position: relative;
  margin: 0;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.95;
  text-wrap: pretty;
}

/* ===== 4. Approach ===== */
.approach {
  background: var(--teal);
  color: var(--cream);
}

.approach .section-title {
  color: var(--cream);
}

.approach .section-title .dot {
  background: var(--blush);
}

.approach p {
  margin: 0;
  font-weight: 300;
  line-height: 1.95;
  color: var(--cream);
  text-wrap: pretty;
}

.approach p.body {
  font-size: clamp(17px, 2.2vw, 19px);
}

.approach p.closing {
  font-size: clamp(18px, 2.4vw, 21px);
  font-weight: 400;
  line-height: 1.9;
  color: var(--blush);
}

/* ===== 5. How I work ===== */
.how {
  background: var(--cream);
}

.how .section-title .dot {
  background: var(--rose);
}

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

.how-card {
  background: var(--blush);
  border-radius: 28px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.how-card .num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--rose);
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 500;
}

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

.how-card p {
  margin: 0;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.85;
  text-wrap: pretty;
}

/* ===== 6. Services ===== */
.services {
  background: var(--sage);
  color: var(--cream);
}

.services .section-title {
  color: var(--cream);
}

.services .section-title .dot {
  background: var(--cream);
}

.services .card-grid {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.service-card {
  background: var(--cream);
  color: var(--teal);
  border-radius: 28px;
  padding: clamp(28px, 4vw, 40px);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

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

.service-card p {
  margin: 0;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.85;
  text-wrap: pretty;
}

.service-card p.fit {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.8;
  color: var(--rose);
}

.services-footnote {
  margin: 0;
  text-align: center;
  font-size: 16px;
  font-weight: 400;
  color: var(--cream);
}

/* ===== 7. Contact / closing ===== */
.contact {
  background: var(--blush);
  overflow: hidden;
  padding-top: clamp(80px, 11vw, 130px);
  padding-bottom: clamp(80px, 11vw, 130px);
}

.contact-blob {
  position: absolute;
  top: -90px;
  left: 6%;
  width: 230px;
  height: 230px;
  border-radius: 50%;
  background: rgba(253, 246, 238, 0.5);
  pointer-events: none;
}

.contact .section-inner {
  max-width: 640px;
  text-align: center;
  align-items: center;
  gap: 24px;
}

.contact .section-title {
  position: relative;
  font-size: clamp(32px, 5vw, 46px);
}

.contact .section-title .dot {
  background: var(--rose);
}

.contact p {
  margin: 0;
  font-size: clamp(17px, 2.2vw, 20px);
  font-weight: 300;
  line-height: 1.85;
  text-wrap: pretty;
}

/* ===== Footer ===== */
.site-footer {
  background: var(--teal);
  border-radius: 56px 56px 0 0;
  margin-top: -56px;
  padding: 64px 24px 48px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.site-footer .wordmark {
  font-size: 26px;
}

.site-footer p {
  margin: 0;
  font-size: 15px;
  font-weight: 300;
  color: rgba(253, 246, 238, 0.85);
}

/* ===== Reduced motion ===== */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .hero-eyebrow .pulse-dot {
    animation: none;
  }
}
