/* Maybes for Babies – Soft Modern Boutique Aesthetic */
@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,400;9..144,600;9..144,700&family=Nunito:wght@300;400;500;600;700&display=swap');

:root {
  --blush: #f4c4c2;
  --blush-deep: #e8a9a6;
  --sage: #b8c9b8;
  --sage-deep: #8fa88f;
  --cream: #fdf8f4;
  --ivory: #faf6f1;
  --warm-white: #fffefb;
  --charcoal: #3d3532;
  --soft-gray: #7a706a;
  --muted: #a89f97;
  --accent: #d4a5a0;
  --sky: #c5d4e0;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Nunito', system-ui, sans-serif;
  background: var(--cream);
  color: var(--charcoal);
  line-height: 1.7;
  overflow-x: hidden;
}

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

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

ul { list-style: none; }

h1, h2, h3, h4 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 600;
  line-height: 1.2;
  color: var(--charcoal);
}

h1 { font-size: clamp(2.4rem, 5.5vw, 3.8rem); }
h2 { font-size: clamp(1.9rem, 3.5vw, 2.75rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.55rem); }

.lead {
  font-size: 1.15rem;
  font-weight: 300;
  color: var(--soft-gray);
  max-width: 560px;
}

.container {
  width: min(1120px, 90%);
  margin-inline: auto;
}

.section {
  padding: 5.5rem 0;
}

.section-sm {
  padding: 3.5rem 0;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1.9rem;
  font-family: 'Nunito', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  border: none;
  cursor: pointer;
  border-radius: 50px;
  transition: all var(--transition);
}

.btn-primary {
  background: var(--charcoal);
  color: var(--warm-white);
}

.btn-primary:hover {
  background: #2a2421;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(61, 53, 50, 0.18);
}

.btn-soft {
  background: var(--blush);
  color: var(--charcoal);
}

.btn-soft:hover {
  background: var(--blush-deep);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--charcoal);
  border: 1.5px solid var(--charcoal);
}

.btn-outline:hover {
  background: var(--charcoal);
  color: var(--warm-white);
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.1rem 0;
  background: rgba(253, 248, 244, 0.85);
  backdrop-filter: blur(14px);
  transition: box-shadow var(--transition), padding var(--transition);
}

.site-header.scrolled {
  box-shadow: 0 4px 24px rgba(61, 53, 50, 0.06);
  padding: 0.75rem 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: 'Fraunces', serif;
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--charcoal);
  letter-spacing: -0.01em;
}

.logo span {
  color: var(--accent);
  font-weight: 400;
}

.nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--soft-gray);
  position: relative;
}

.nav a:hover,
.nav a.active {
  color: var(--charcoal);
}

.nav a.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--blush-deep);
  border-radius: 2px;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--charcoal);
  cursor: pointer;
}

/* Hero */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  padding-top: 5rem;
  background: linear-gradient(160deg, var(--ivory) 0%, var(--cream) 40%, #f8ebe8 100%);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 55%;
  height: 120%;
  background: radial-gradient(ellipse, rgba(244, 196, 194, 0.35) 0%, transparent 65%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3.5rem;
  align-items: center;
}

.hero-content h1 {
  margin-bottom: 1.25rem;
}

.hero-content .lead {
  margin-bottom: 2rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-visual {
  position: relative;
}

.hero-visual img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: 24px 24px 80px 24px;
  box-shadow: 0 30px 60px rgba(61, 53, 50, 0.12);
}

.hero-badge {
  position: absolute;
  bottom: 2rem;
  left: -1.5rem;
  background: var(--warm-white);
  padding: 1rem 1.4rem;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(61, 53, 50, 0.1);
  font-size: 0.9rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.hero-badge span {
  font-size: 1.4rem;
}

/* Soft cards section */
.collections {
  background: var(--warm-white);
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header .eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.6rem;
}

.section-header p {
  color: var(--soft-gray);
  max-width: 480px;
  margin: 0.8rem auto 0;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.card {
  background: var(--cream);
  border-radius: 20px;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(61, 53, 50, 0.08);
}

.card-img {
  height: 240px;
  overflow: hidden;
}

.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}

.card:hover .card-img img {
  transform: scale(1.06);
}

.card-body {
  padding: 1.5rem 1.4rem 1.6rem;
}

.card-body h3 {
  margin-bottom: 0.5rem;
}

.card-body p {
  font-size: 0.95rem;
  color: var(--soft-gray);
  margin-bottom: 1rem;
}

.card-link {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--accent);
}

.card-link:hover {
  color: var(--blush-deep);
}

/* Values / Why */
.why {
  background: var(--cream);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.75rem;
}

.why-item {
  text-align: center;
  padding: 2rem 1.25rem;
  background: var(--warm-white);
  border-radius: 18px;
  transition: transform var(--transition);
}

.why-item:hover {
  transform: translateY(-4px);
}

.why-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1.1rem;
  background: var(--blush);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.why-item h4 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
}

.why-item p {
  font-size: 0.9rem;
  color: var(--soft-gray);
}

/* Featured strip */
.featured {
  background: linear-gradient(135deg, #f8ebe8 0%, #eef2ee 100%);
  padding: 5rem 0;
}

.featured-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.featured-text h2 {
  margin-bottom: 1.2rem;
}

.featured-text p {
  color: var(--soft-gray);
  margin-bottom: 1.1rem;
}

.featured-img {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(61, 53, 50, 0.1);
}

.featured-img img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

/* Testimonials */
.testimonials {
  background: var(--warm-white);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.testimonial {
  background: var(--cream);
  padding: 1.75rem;
  border-radius: 18px;
}

.testimonial p {
  font-size: 1.05rem;
  font-style: italic;
  color: var(--charcoal);
  margin-bottom: 1.25rem;
  font-family: 'Fraunces', serif;
  line-height: 1.55;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.testimonial-author img {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
}

.author-info strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
}

.author-info span {
  font-size: 0.8rem;
  color: var(--muted);
}

/* CTA */
.cta {
  background: var(--charcoal);
  color: var(--warm-white);
  text-align: center;
  padding: 5rem 0;
}

.cta h2 {
  color: var(--warm-white);
  margin-bottom: 1rem;
}

.cta p {
  color: rgba(255,255,255,0.75);
  max-width: 460px;
  margin: 0 auto 1.75rem;
}

.cta .btn-primary {
  background: var(--blush);
  color: var(--charcoal);
}

.cta .btn-primary:hover {
  background: var(--blush-deep);
}

/* Footer */
.site-footer {
  background: #2f2926;
  color: rgba(255,255,255,0.7);
  padding: 4rem 0 1.75rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}

.footer-brand .logo {
  color: var(--warm-white);
  margin-bottom: 1rem;
  display: inline-block;
}

.footer-brand p {
  font-size: 0.95rem;
  max-width: 260px;
  line-height: 1.6;
}

.footer-col h4 {
  font-family: 'Nunito', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blush);
  margin-bottom: 1.1rem;
}

.footer-col ul li {
  margin-bottom: 0.55rem;
}

.footer-col a {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.65);
}

.footer-col a:hover {
  color: var(--warm-white);
}

.footer-address {
  font-size: 0.9rem;
  line-height: 1.65;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 0.85rem;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* Page hero */
.page-hero {
  padding: 9rem 0 4rem;
  background: linear-gradient(160deg, var(--ivory) 0%, #f8ebe8 100%);
  text-align: center;
}

.page-hero h1 {
  margin-bottom: 0.75rem;
}

.page-hero .lead {
  margin: 0 auto;
}

/* About */
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3.5rem;
  align-items: start;
}

.about-text p {
  color: var(--soft-gray);
  margin-bottom: 1.25rem;
}

.about-text h3 {
  margin: 2rem 0 0.9rem;
  color: var(--charcoal);
}

.values-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-top: 1.75rem;
}

.value-box {
  background: var(--warm-white);
  padding: 1.35rem;
  border-radius: 14px;
}

.value-box h4 {
  font-size: 1.05rem;
  margin-bottom: 0.4rem;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
}

.value-box p {
  font-size: 0.9rem;
  margin: 0;
  color: var(--soft-gray);
}

.about-side img {
  border-radius: 20px;
  margin-bottom: 1.25rem;
  box-shadow: 0 15px 35px rgba(61, 53, 50, 0.08);
}

/* Shop / Collections page */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.product-card {
  background: var(--warm-white);
  border-radius: 18px;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 36px rgba(61, 53, 50, 0.08);
}

.product-img {
  height: 260px;
  overflow: hidden;
  background: var(--ivory);
}

.product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-card:hover .product-img img {
  transform: scale(1.05);
}

.product-body {
  padding: 1.35rem 1.25rem 1.5rem;
}

.product-body h3 {
  font-size: 1.15rem;
  margin-bottom: 0.35rem;
}

.product-body p {
  font-size: 0.9rem;
  color: var(--soft-gray);
  margin-bottom: 0.75rem;
}

.product-price {
  font-weight: 700;
  color: var(--charcoal);
  font-size: 1.05rem;
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 3.5rem;
}

.contact-info h3 {
  margin-bottom: 1.1rem;
}

.contact-info p {
  color: var(--soft-gray);
  margin-bottom: 1.5rem;
}

.contact-details {
  margin-top: 1.75rem;
}

.contact-item {
  margin-bottom: 1.35rem;
}

.contact-item strong {
  display: block;
  font-weight: 600;
  margin-bottom: 0.2rem;
}

.contact-item span,
.contact-item a {
  color: var(--soft-gray);
  font-size: 0.95rem;
}

.contact-form {
  background: var(--warm-white);
  padding: 2.25rem;
  border-radius: 20px;
  box-shadow: 0 12px 30px rgba(61, 53, 50, 0.05);
}

.form-group {
  margin-bottom: 1.2rem;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--soft-gray);
  margin-bottom: 0.4rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  background: var(--cream);
  border: 1.5px solid transparent;
  border-radius: 12px;
  font-family: inherit;
  font-size: 1rem;
  color: var(--charcoal);
  transition: border-color var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--blush-deep);
}

.form-group textarea {
  min-height: 130px;
  resize: vertical;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

/* Responsive */
@media (max-width: 960px) {
  .hero-grid,
  .about-grid,
  .featured-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual img {
    height: 380px;
  }

  .cards,
  .product-grid,
  .testimonial-grid {
    grid-template-columns: 1fr 1fr;
  }

  .why-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--warm-white);
    flex-direction: column;
    padding: 1.25rem 1.5rem;
    gap: 1rem;
    box-shadow: 0 12px 24px rgba(61, 53, 50, 0.08);
  }

  .nav.open {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }

  .cards,
  .product-grid,
  .testimonial-grid,
  .why-grid,
  .footer-grid,
  .form-row,
  .values-list {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    flex-direction: column;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}
