/* ── Design tokens ── */
:root {
  --color-bg: #FDFAF7;
  --color-primary: #C4674A;
  --color-primary-hover: #B05A3F;
  --color-text: #1E1E2E;
  --color-text-muted: #6B6B80;
  --color-accent: #7A9E8E;
  --color-surface: #F4EFE9;

  --font-heading: 'Plus Jakarta Sans', sans-serif;
  --font-body: 'DM Sans', sans-serif;

  --max-width: 1080px;
  --spacing-section: 80px;
}

/* ── Reset ── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

/* ── Announcement Bar ── */
.announcement-bar {
  background-color: var(--color-primary);
  color: #fff;
  padding: 10px 0;
  position: sticky;
  top: 0;
  z-index: 100;
}

.announcement-bar .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  position: relative;
}

.announcement-bar__text {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  text-align: center;
}

.announcement-bar__close {
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  font-size: 14px;
  line-height: 1;
  opacity: 0.8;
  padding: 4px;
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  transition: opacity 0.2s;
}

.announcement-bar__close:hover {
  opacity: 1;
}

.announcement-bar.hidden {
  display: none;
}

/* ── Navigation ── */
.nav {
  background-color: var(--color-bg);
  border-bottom: 1px solid rgba(30, 30, 46, 0.08);
  position: sticky;
  top: var(--nav-top, 0px);
  z-index: 99;
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.nav__wordmark {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.04em;
  color: var(--color-text);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav__link {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text-muted);
  transition: color 0.2s;
}

.nav__link:hover {
  color: var(--color-text);
}

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  width: 32px;
}

.nav__hamburger span {
  display: block;
  height: 2px;
  width: 100%;
  background-color: var(--color-text);
  border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}

/* Mobile */
@media (max-width: 767px) {
  .nav__hamburger {
    display: flex;
  }

  .nav__links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--color-bg);
    border-bottom: 1px solid rgba(30, 30, 46, 0.08);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 0;
  }

  .nav__links.open {
    display: flex;
  }

  .nav__link {
    padding: 14px 24px;
    font-size: 15px;
  }
}

/* ── Hero ── */
.hero {
  padding: var(--spacing-section) 0;
  text-align: center;
  scroll-margin-top: 120px;
}

.hero__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.hero__headline {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.2;
  max-width: 720px;
  color: var(--color-text);
}

.hero__subline {
  font-family: var(--font-body);
  font-size: clamp(16px, 2vw, 20px);
  color: var(--color-text-muted);
  max-width: 560px;
}

.hero__subscribe {
  margin-top: 4px;
  width: 100%;
  max-width: 480px;
}

.hero__subscribe iframe {
  width: 100%;
  display: block;
}

/* ── Mom Club ── */
.mom-club {
  background-color: var(--color-surface);
  padding: var(--spacing-section) 0;
  scroll-margin-top: 120px;
}

.mom-club__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
}

.mom-club__label {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-accent);
}

.mom-club__headline {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(24px, 3.5vw, 40px);
  line-height: 1.2;
  color: var(--color-text);
  max-width: 600px;
}

.mom-club__body {
  font-size: clamp(15px, 1.8vw, 18px);
  color: var(--color-text-muted);
  max-width: 640px;
  line-height: 1.7;
}

.mom-club__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  width: 100%;
  margin-top: 12px;
}

.mom-club__card {
  background: var(--color-bg);
  border-radius: 12px;
  padding: 28px 24px;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mom-club__card-icon {
  font-size: 24px;
}

.mom-club__card-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 16px;
  color: var(--color-text);
}

.mom-club__card-text {
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.6;
}

.mom-club__cta {
  font-size: 15px;
  color: var(--color-text-muted);
  margin-top: 8px;
}

.mom-club__cta-link {
  color: var(--color-primary);
  font-weight: 500;
  transition: color 0.2s;
}

.mom-club__cta-link:hover {
  color: var(--color-primary-hover);
}

@media (max-width: 767px) {
  .mom-club__cards {
    grid-template-columns: 1fr;
  }
}

/* ── Footer ── */
.footer {
  background-color: var(--color-text);
  color: #fff;
  padding: 40px 0;
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.footer__wordmark {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.04em;
  color: #fff;
}

.footer__copy {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  text-align: center;
}

.footer__link {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
  transition: color 0.2s;
}

.footer__link:hover {
  color: #fff;
}

@media (max-width: 767px) {
  .footer__inner {
    flex-direction: column;
    text-align: center;
  }
}

/* ── Utility ── */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}
