/* ============================================
   SHARP MOM CO. — Design System
   Brand palette preserved from sharpmom.co
   ============================================ */

:root {
  /* Core brand palette */
  --pink:        #f6bdd3;
  --pink-light:  #fce8f1;
  --pink-mid:    #e7b4c8;
  --orange:      #D4832A;
  --orange-mid:  #B86E1A;
  --orange-light:#FAE9D4;
  --orange-pale: #FDF4EB;
  --teal:        #abe4e3;
  --teal-mid:    #9ccecd;
  --teal-light:  #e6f8f8;
  --blue-soft:   #a4bbd9;

  /* Neutral */
  --ink:         #1a1a1a;
  --ink-mid:     #3d3d3d;
  --ink-light:   #6b6b6b;
  --cream:       #fdf7f9;
  --white:       #ffffff;
  --divider:     rgba(26,26,26,0.10);

  /* Semantic */
  --bg:          var(--cream);
  --surface:     var(--white);
  --accent:      var(--pink-mid);
  --accent-2:    var(--teal);
  --accent-3:    var(--lavender);

  /* Typography */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;
  --font-label:   'Inter', system-ui, sans-serif;

  /* Spacing */
  --section-pad: clamp(60px, 8vw, 100px);
  --container:   1100px;
  --radius:      12px;
  --radius-lg:   20px;
}

/* ─── Reset ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  font-size: 16px;
}
img { max-width: 100%; display: block; }
a { color: inherit; }

/* ─── Typography ─── */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.2;
  color: var(--ink);
}
h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
p  { color: var(--ink-mid); line-height: 1.75; }

/* ─── Layout helpers ─── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 60px);
}
.section { padding: var(--section-pad) 0; }
.section--tinted { background: var(--pink-light); }
.section--warm { background: var(--orange-pale); }
.section--teal { background: var(--teal-light); }

/* ─── NAV ─── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--divider);
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--ink);
}
.nav__logo img { height: 42px; width: auto; }
.nav__links {
  display: flex;
  gap: 32px;
  list-style: none;
}
.nav__links a {
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--ink-mid);
  letter-spacing: 0.03em;
  transition: color 0.2s;
}
.nav__links a:hover { color: var(--ink); }
.nav__links a.active { color: var(--ink); border-bottom: 2px solid var(--pink-mid); padding-bottom: 2px; }
.nav__cta {
  background: var(--ink);
  color: var(--white) !important;
  padding: 9px 20px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  transition: background 0.2s, transform 0.15s;
}
.nav__cta:hover { background: var(--ink-mid); transform: translateY(-1px); }
.nav__hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.nav__hamburger span { display: block; width: 24px; height: 2px; background: var(--ink); border-radius: 2px; transition: all 0.3s; }

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.15s, box-shadow 0.15s;
  cursor: pointer;
  border: none;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,0.12); }
.btn--dark { background: var(--ink); color: var(--white); }
.btn--pink { background: var(--pink-mid); color: var(--ink); }
.btn--outline { background: transparent; color: var(--ink); border: 2px solid var(--ink); }
.btn--teal { background: var(--teal); color: var(--ink); }

/* ─── HERO ─── */
.hero {
  background: var(--white);
  padding: clamp(60px, 8vw, 100px) 0 clamp(40px, 6vw, 70px);
  overflow: hidden;
  position: relative;
}
.hero::before {
  content: '';
  position: absolute;
  top: -60px; right: -80px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, #f6bdd360 0%, transparent 70%);
  pointer-events: none;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero__eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-light);
  margin-bottom: 16px;
}
.hero__headline { margin-bottom: 20px; }
.hero__headline em {
  font-style: normal;
  background: linear-gradient(135deg, var(--pink-mid), var(--orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero__sub {
  font-size: 1.05rem;
  color: var(--ink-mid);
  margin-bottom: 32px;
  max-width: 480px;
}
.hero__ctas { display: flex; gap: 14px; flex-wrap: wrap; }
.hero__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--divider);
}
.hero__pill {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--bg);
  border: 1px solid var(--divider);
  border-radius: 50px;
  padding: 8px 16px;
  font-size: 0.83rem;
  font-weight: 500;
  color: var(--ink-mid);
}
.hero__pill-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.hero__visual {
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero__card-stack {
  position: relative;
  width: 340px;
  height: 360px;
}
.hero__card {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
  border: 1px solid var(--divider);
}
.hero__card--main {
  width: 300px;
  top: 20px; left: 20px;
  z-index: 2;
}
.hero__card--back {
  width: 280px;
  top: 0; left: 40px;
  z-index: 1;
  background: var(--orange-light);
  transform: rotate(3deg);
}
.price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid var(--divider);
  font-size: 0.9rem;
}
.price-row:last-child { border-bottom: none; }
.price-row__label { color: var(--ink-mid); }
.price-row__price { font-weight: 700; color: var(--ink); font-family: var(--font-display); }
.price-row__tag {
  font-size: 0.7rem;
  background: var(--teal);
  color: var(--ink);
  padding: 2px 8px;
  border-radius: 50px;
  font-weight: 600;
}
.hero__card-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-light);
  margin-bottom: 12px;
}

/* ─── SERVICE AREA BANNER ─── */
.area-banner {
  background: var(--ink);
  color: var(--white);
  padding: 14px 0;
  text-align: center;
  font-size: 0.85rem;
  letter-spacing: 0.02em;
}
.area-banner span { opacity: 0.6; margin: 0 10px; }

/* ─── CARDS / SERVICES ─── */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 48px;
}
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--divider);
  transition: transform 0.2s, box-shadow 0.2s;
}
.card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.08); }
.card__icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
}
.card__title { font-size: 1.15rem; margin-bottom: 10px; }
.card__desc { font-size: 0.9rem; color: var(--ink-light); line-height: 1.65; }
.card__from {
  margin-top: 16px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink);
}

/* ─── HOW IT WORKS ─── */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 32px; margin-top: 48px; }
.step { text-align: center; }
.step__num {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--pink-light);
  border: 2px solid var(--pink-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0 auto 16px;
  color: var(--ink);
}
.step__title { font-size: 1rem; margin-bottom: 8px; }
.step__desc { font-size: 0.88rem; color: var(--ink-light); }

/* ─── SECTION HEADERS ─── */
.section-header { text-align: center; max-width: 620px; margin: 0 auto; }
.section-header p { margin-top: 14px; font-size: 1.05rem; }
.eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-light);
  margin-bottom: 12px;
}

/* ─── PRICING PAGE ─── */
.pricing-tabs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 40px 0 32px;
}
.pricing-tab {
  padding: 10px 22px;
  border-radius: 50px;
  border: 2px solid var(--divider);
  background: var(--white);
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  color: var(--ink-mid);
}
.pricing-tab.active, .pricing-tab:hover {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}
.pricing-panel { display: none; }
.pricing-panel.active { display: block; }
.pricing-table {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--divider);
  margin-bottom: 32px;
}
.pricing-table__header {
  padding: 20px 28px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.pricing-table__title { font-size: 1rem; font-weight: 700; }
.pricing-table__badge {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 50px;
  background: var(--teal);
  color: var(--ink);
}
.pricing-table__badge--commercial { background: var(--orange-light); color: var(--orange-mid); }
.pricing-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 28px;
  border-top: 1px solid var(--divider);
  gap: 16px;
}
.pricing-row:hover { background: var(--bg); }
.pricing-row__name { font-size: 0.95rem; color: var(--ink-mid); flex: 1; }
.pricing-row__note { font-size: 0.78rem; color: var(--ink-light); margin-top: 2px; }
.pricing-row__price {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--ink);
  white-space: nowrap;
}
.pricing-row__unit { font-size: 0.7rem; color: var(--ink-light); margin-top: 2px; text-align: right; }
.pricing-note {
  background: var(--pink-light);
  border-left: 3px solid var(--pink-mid);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 16px 20px;
  font-size: 0.88rem;
  color: var(--ink-mid);
  margin-bottom: 24px;
}
.pricing-note strong { color: var(--ink); }

/* ─── SCHEDULE PAGE ─── */
.schedule-intro {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--divider);
  padding: 28px 32px;
  margin-bottom: 36px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
}
.schedule-intro__icon { font-size: 2rem; flex-shrink: 0; }
.route-clusters { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; margin-bottom: 48px; }
.route-cluster {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--divider);
  overflow: hidden;
}
.route-cluster__header {
  padding: 18px 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.route-cluster__badge {
  width: 32px; height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  flex-shrink: 0;
}
.route-cluster__name { font-weight: 700; font-size: 0.95rem; }
.route-cluster__cities { font-size: 0.82rem; color: var(--ink-light); }
.route-slot {
  padding: 14px 24px;
  border-top: 1px solid var(--divider);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.route-slot__day { font-size: 0.85rem; font-weight: 600; color: var(--ink); }
.route-slot__dates { font-size: 0.78rem; color: var(--ink-light); }
.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  margin-top: 32px;
}
.cal-header {
  text-align: center;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-light);
  padding: 8px 0;
}
.cal-day {
  background: var(--white);
  border-radius: 8px;
  border: 1px solid var(--divider);
  padding: 10px 8px;
  text-align: center;
  min-height: 72px;
}
.cal-day--empty { background: transparent; border-color: transparent; }
.cal-day__num { font-size: 0.85rem; font-weight: 700; margin-bottom: 4px; }
.cal-day__city { font-size: 0.65rem; color: var(--ink-light); line-height: 1.3; }
.cal-day--service { border-color: var(--pink-mid); }
.cal-day--service .cal-day__num { color: var(--ink); }

/* ─── GALLERY PLACEHOLDER ─── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 40px;
}
.gallery-item {
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--pink-light), var(--lavender));
  border-radius: var(--radius-lg);
  border: 2px dashed var(--lavender-mid);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--ink-light);
  font-size: 0.85rem;
  text-align: center;
  padding: 20px;
  transition: border-color 0.2s;
}
.gallery-item__icon { font-size: 2rem; opacity: 0.5; }
.gallery-item__label { font-weight: 600; color: var(--ink-mid); }
.gallery-item__sub { font-size: 0.78rem; }

/* ─── TESTIMONIALS ─── */
.testimonials { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; margin-top: 40px; }
.testimonial {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid var(--divider);
}
.testimonial__stars { color: #f59e0b; margin-bottom: 14px; font-size: 0.9rem; }
.testimonial__text { font-size: 0.92rem; color: var(--ink-mid); line-height: 1.7; margin-bottom: 18px; font-style: italic; }
.testimonial__author { font-weight: 700; font-size: 0.88rem; }
.testimonial__role { font-size: 0.78rem; color: var(--ink-light); }

/* ─── ABOUT ─── */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-img {
  background: linear-gradient(135deg, var(--pink-light), var(--lavender));
  border-radius: var(--radius-lg);
  aspect-ratio: 4/5;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
}
.about-content p { margin-bottom: 16px; }

/* ─── CTA BLOCK ─── */
.cta-block {
  background: var(--ink);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: clamp(40px, 6vw, 70px) clamp(30px, 5vw, 60px);
  text-align: center;
  margin: var(--section-pad) 0;
}
.cta-block h2 { color: var(--white); margin-bottom: 14px; }
.cta-block p { color: rgba(255,255,255,0.7); margin-bottom: 32px; font-size: 1.05rem; }
.cta-block .btn--pink { background: var(--pink); }

/* ─── FOOTER ─── */
.footer {
  background: var(--ink);
  color: rgba(255,255,255,0.6);
  padding: 48px 0 28px;
}
.footer__inner { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px; margin-bottom: 40px; }
.footer__brand p { font-size: 0.88rem; margin-top: 12px; line-height: 1.7; max-width: 280px; }
.footer__logo { font-family: var(--font-display); font-size: 1.2rem; color: var(--white); font-weight: 700; }
.footer__col h4 { color: var(--white); font-size: 0.85rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 16px; font-family: var(--font-body); }
.footer__col ul { list-style: none; }
.footer__col ul li { margin-bottom: 10px; }
.footer__col ul li a { color: rgba(255,255,255,0.6); text-decoration: none; font-size: 0.88rem; transition: color 0.2s; }
.footer__col ul li a:hover { color: var(--white); }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  flex-wrap: wrap;
  gap: 12px;
}
.footer__bottom a { color: rgba(255,255,255,0.5); text-decoration: none; }
.footer__bottom a:hover { color: var(--white); }

/* ─── PAGE HERO (inner pages) ─── */
.page-hero {
  background: var(--white);
  padding: clamp(48px, 7vw, 80px) 0 clamp(32px, 5vw, 56px);
  border-bottom: 1px solid var(--divider);
}
.page-hero .eyebrow { display: block; margin-bottom: 12px; }

/* ─── LEGAL PAGES ─── */
.legal-content {
  max-width: 760px;
  margin: 0 auto;
}
.legal-content h2 { font-size: 1.3rem; margin: 40px 0 14px; }
.legal-content h3 { font-size: 1.05rem; margin: 28px 0 10px; }
.legal-content p { margin-bottom: 14px; font-size: 0.95rem; }
.legal-content ul { padding-left: 24px; margin-bottom: 14px; }
.legal-content ul li { margin-bottom: 8px; font-size: 0.95rem; color: var(--ink-mid); }
.legal-updated {
  font-size: 0.82rem;
  color: var(--ink-light);
  background: var(--bg);
  display: inline-block;
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 32px;
}

/* ─── NOTICE PILL ─── */
.notice {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--pink-light);
  border-radius: var(--radius);
  padding: 18px 22px;
  margin: 20px 0;
  font-size: 0.9rem;
  color: var(--ink-mid);
}
.notice__icon { font-size: 1.2rem; flex-shrink: 0; }

/* ─── MOBILE NAV ─── */
@media (max-width: 768px) {
  .nav__links { display: none; }
  .nav__hamburger { display: flex; }
  .nav__links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 68px;
    left: 0; right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--divider);
    padding: 20px 24px;
    gap: 16px;
    z-index: 99;
  }
  .nav__cta { display: none; }

  .hero__inner { grid-template-columns: 1fr; }
  .hero__visual { display: none; }
  .about-grid { grid-template-columns: 1fr; }
  .about-img { display: none; }
  .footer__inner { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .hero__ctas { flex-direction: column; }
  .btn { width: 100%; justify-content: center; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
}
