/* ============================
   Milk + Lily Landing Pages
   Google Ads Campaign Pages
   ============================ */

@import url('https://fonts.googleapis.com/css2?family=Italiana&family=Lato:wght@300;400;700&display=swap');

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

:root {
  --cream: #F4F1ED;
  --cream-light: #FAF8F5;
  --taupe: #6B6254;
  --taupe-light: #8A7E72;
  --taupe-dark: #4A4239;
  --charcoal: #2C2824;
  --white: #FFFFFF;
  --gold: #C4A265;
  --gold-light: #D4B87A;
  --font-heading: 'Italiana', serif;
  --font-body: 'Lato', sans-serif;
}

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--charcoal);
  background: var(--cream-light);
  line-height: 1.6;
  font-size: 16px;
}

/* ---- HERO ---- */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 25%;
  z-index: 0;
}

/* Per-page hero focal points */
.hero__bg--newborn { background-position: center 20%; }
.hero__bg--maternity { background-position: center 55%; }
.hero__bg--family { background-position: center 25%; }
.hero__bg--babies { background-position: center 30%; }
.hero__bg--headshots { background-position: center 70%; }

.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(44, 40, 36, 0.4) 0%,
    rgba(44, 40, 36, 0.6) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  padding: 2rem;
}

.hero__badge {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white);
  background: rgba(196, 162, 101, 0.85);
  border: 1px solid rgba(212, 184, 122, 0.7);
  padding: 0.5rem 1.5rem;
  margin-bottom: 1.5rem;
}

.hero__title {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 0.75rem;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
}

.hero__subtitle {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 0.5rem;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.4);
}

.hero__hook {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  color: var(--white);
  margin-bottom: 2rem;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.4);
  font-style: italic;
}

.hero__cta {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--charcoal);
  background: var(--white);
  padding: 1rem 2.5rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.hero__cta:hover {
  background: var(--gold-light);
  color: var(--white);
}

/* ---- VALUE PROPS ---- */
.value-props {
  background: var(--white);
  padding: clamp(3rem, 6vw, 5rem) 1.5rem;
}

.value-props__inner {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  text-align: center;
}

.value-prop__icon {
  font-size: 1.75rem;
  margin-bottom: 0.75rem;
  color: var(--gold);
}

.value-prop__title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--charcoal);
  margin-bottom: 0.5rem;
}

.value-prop__text {
  font-size: 0.9rem;
  color: var(--taupe);
  line-height: 1.6;
}

/* ---- GALLERY ---- */
.gallery {
  padding: clamp(2rem, 4vw, 3rem) 0;
  background: var(--cream);
  overflow: hidden;
}

.gallery__title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2rem);
  text-align: center;
  color: var(--charcoal);
  margin-bottom: 2rem;
  padding: 0 1.5rem;
}

.gallery__strip {
  display: flex;
  gap: 0.75rem;
  overflow-x: auto;
  padding: 0 1.5rem 1rem;
  scrollbar-width: none;
  scroll-snap-type: x mandatory;
}

.gallery__strip::-webkit-scrollbar { display: none; }

.gallery__img {
  flex: 0 0 auto;
  width: clamp(260px, 30vw, 380px);
  height: clamp(320px, 40vw, 480px);
  object-fit: cover;
  object-position: center 20%;
  scroll-snap-align: start;
  border-radius: 2px;
}

/* ---- ABOUT ---- */
.about {
  padding: clamp(3rem, 6vw, 5rem) 1.5rem;
  background: var(--cream-light);
}

.about__inner {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.about__img {
  width: 100%;
  height: auto;
  max-height: 500px;
  object-fit: cover;
  object-position: center 20%;
  border-radius: 2px;
}

.about__label {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.about__heading {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  color: var(--charcoal);
  margin-bottom: 1rem;
  line-height: 1.15;
}

.about__text {
  font-size: 0.95rem;
  color: var(--taupe);
  line-height: 1.7;
  margin-bottom: 1rem;
}

/* ---- PRICING ---- */
.pricing {
  padding: clamp(3rem, 6vw, 5rem) 1.5rem;
  background: var(--white);
}

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

.pricing__label {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.pricing__title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  color: var(--charcoal);
  margin-bottom: 0.5rem;
}

.pricing__subtitle {
  font-size: 0.95rem;
  color: var(--taupe);
}

.pricing__grid {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.pricing-card {
  border: 1px solid rgba(107, 98, 84, 0.15);
  padding: 2rem;
  text-align: center;
  background: var(--cream-light);
  transition: border-color 0.3s ease;
}

.pricing-card--featured {
  border-color: var(--gold);
  position: relative;
}

.pricing-card--featured::before {
  content: 'Most Popular';
  position: absolute;
  top: -0.75rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.3rem 1rem;
}

.pricing-card:hover { border-color: var(--gold); }

.pricing-card__name {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--charcoal);
  margin-bottom: 0.5rem;
}

.pricing-card__price {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  color: var(--charcoal);
  margin-bottom: 0.25rem;
}

.pricing-card__per {
  font-size: 0.8rem;
  color: var(--taupe);
  margin-bottom: 1rem;
}

.pricing-card__features {
  list-style: none;
  text-align: left;
  margin-bottom: 1.5rem;
}

.pricing-card__features li {
  font-size: 0.85rem;
  color: var(--taupe);
  padding: 0.4rem 0;
  border-bottom: 1px solid rgba(107, 98, 84, 0.08);
  padding-left: 1.25rem;
  position: relative;
}

.pricing-card__features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}

/* ---- CTA BANNER ---- */
.cta-banner {
  background: var(--charcoal);
  padding: clamp(3rem, 6vw, 4.5rem) 1.5rem;
  text-align: center;
}

.cta-banner__title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  color: var(--white);
  margin-bottom: 0.75rem;
}

.cta-banner__text {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 550px;
  margin: 0 auto 2rem;
}

.cta-banner__btn {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--charcoal);
  background: var(--gold-light);
  padding: 1rem 2.5rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.cta-banner__btn:hover {
  background: var(--white);
}

/* ---- DETAILS ---- */
.details {
  padding: clamp(2rem, 4vw, 3rem) 1.5rem;
  background: var(--cream);
}

.details__inner {
  max-width: 700px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.detail-item {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}

.detail-item__icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  background: var(--gold);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  border-radius: 50%;
}

.detail-item__text strong {
  display: block;
  font-size: 0.85rem;
  color: var(--charcoal);
  margin-bottom: 0.15rem;
}

.detail-item__text span {
  font-size: 0.8rem;
  color: var(--taupe);
}

/* ---- FOOTER ---- */
.footer {
  padding: 2rem 1.5rem;
  background: var(--charcoal);
  text-align: center;
}

.footer__logo {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.footer__text {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
}

.footer__phone {
  font-size: 0.85rem;
  color: var(--gold-light);
  text-decoration: none;
  display: inline-block;
  margin-top: 0.5rem;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 768px) {
  .value-props__inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .about__inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .pricing__grid {
    grid-template-columns: 1fr;
    max-width: 400px;
  }
  
  .details__inner {
    grid-template-columns: 1fr;
  }
  
  .hero { min-height: 80vh; }
  
  .gallery__img {
    width: 260px;
    height: 340px;
  }
}
