/* ===== CSS Variables ===== */
:root {
  --blush: #e8c4c4;
  --blush-dark: #d4a5a5;
  --cream: #fdf8f5;
  --warm-white: #faf6f3;
  --champagne: #f5e6d3;
  --rose-gold: #b76e79;
  --soft-brown: #8b7355;
  --charcoal: #3d3d3d;
  --text-dark: #2c2c2c;
  --shadow: rgba(139, 115, 85, 0.15);
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-script: 'Great Vibes', cursive;
  --font-sans: 'Montserrat', -apple-system, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font-sans);
  font-weight: 400;
  color: var(--text-dark);
  background: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
  padding-left: env(safe-area-inset-left);
  padding-right: env(safe-area-inset-right);
  padding-bottom: env(safe-area-inset-bottom);
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

/* Touch-friendly defaults */
a,
button,
.btn-book,
.site-nav__toggle,
.baby-gallery__item,
.creative-shot {
  -webkit-tap-highlight-color: transparent;
}

input,
select,
textarea {
  font-size: 16px; /* prevents iOS zoom on focus */
}

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

/* ===== Site Navigation ===== */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 1.5rem;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px var(--shadow);
}

.site-nav__brand {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--charcoal);
  text-decoration: none;
  white-space: nowrap;
}

.site-nav__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
}

.site-nav__toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 0 auto;
  background: var(--charcoal);
  border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}

.site-nav__links {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.site-nav__links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--charcoal);
  text-decoration: none;
  transition: color 0.2s;
}

.site-nav__links a:hover,
.site-nav__links a.is-active {
  color: var(--rose-gold);
}

.site-nav__cta {
  background: var(--rose-gold);
  color: white !important;
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  font-weight: 600 !important;
}

.site-nav__cta:hover {
  background: var(--blush-dark);
  color: white !important;
}

body.has-site-nav .hero--marquee {
  min-height: calc(100vh - 60px);
}

/* ===== Home Hub ===== */
.hub-hero {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1rem 1.25rem;
  background: linear-gradient(180deg, var(--cream) 0%, var(--warm-white) 100%);
}

.hub-hero--compact {
  min-height: auto;
}

.hub-hero__inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.hub-hero__eyebrow {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--rose-gold);
  margin-bottom: 0.5rem;
}

.hub-hero .brand-name {
  font-family: var(--font-script);
  font-size: clamp(2.25rem, 9vw, 3.75rem);
  color: var(--rose-gold);
  line-height: 1.05;
  margin-bottom: 0.25rem;
}

.hub-hero__title {
  font-family: var(--font-serif);
  font-size: clamp(1.25rem, 4vw, 1.85rem);
  color: var(--charcoal);
  margin-bottom: 0.5rem;
}

.hub-hero__tagline {
  font-size: 0.92rem;
  color: var(--soft-brown);
  max-width: 520px;
  margin: 0 auto 0.75rem;
  line-height: 1.65;
}

.hub-hero__meta {
  font-size: 0.68rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--soft-brown);
  line-height: 1.6;
}

.btn-book--dark {
  background: var(--charcoal) !important;
}

/* Hub photo showcase — mobile-first */
.hub-portfolio {
  padding: 0 0.75rem 2rem;
  background: var(--warm-white);
}

.hub-portfolio__header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 1rem;
  padding: 0 0.25rem;
}

.hub-portfolio__eyebrow {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--soft-brown);
  margin-bottom: 0.35rem;
}

.hub-portfolio__header .section-title {
  margin-bottom: 0;
  font-size: clamp(1.35rem, 4vw, 1.85rem);
}

.hub-portfolio__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.55rem;
  max-width: 1140px;
  margin: 0 auto;
}

.hub-portfolio__item {
  position: relative;
  display: block;
  aspect-ratio: 3 / 4;
  border-radius: 14px;
  overflow: hidden;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(139, 115, 85, 0.12);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hub-portfolio__item--feature {
  aspect-ratio: 4 / 5;
}

.hub-portfolio__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hub-portfolio__label {
  position: absolute;
  left: 0.55rem;
  bottom: 0.55rem;
  padding: 0.28rem 0.6rem;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: white;
  background: rgba(44, 44, 44, 0.55);
  backdrop-filter: blur(6px);
  border-radius: 999px;
}

.hub-portfolio__item--maternity .hub-portfolio__label {
  background: rgba(183, 110, 121, 0.8);
}

.hub-portfolio__item:active {
  transform: scale(0.98);
}

@media (min-width: 600px) {
  .hub-portfolio {
    padding: 0 1.25rem 2.5rem;
  }

  .hub-portfolio__grid {
    gap: 0.75rem;
  }

  .hub-portfolio__item {
    border-radius: 16px;
  }
}

@media (min-width: 900px) {
  .hub-hero {
    padding: 2.5rem 1.5rem 1.5rem;
  }

  .hub-hero__tagline {
    font-size: 1rem;
  }

  .hub-portfolio {
    padding: 0 1.5rem 3rem;
  }

  .hub-portfolio__header {
    margin-bottom: 1.5rem;
  }

  .hub-portfolio__grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
  }

  .hub-portfolio__item {
    aspect-ratio: 3 / 4;
    border-radius: 18px;
    box-shadow: 0 10px 36px rgba(139, 115, 85, 0.14);
  }

  .hub-portfolio__item--feature {
    grid-column: span 2;
    aspect-ratio: 16 / 10;
  }

  .hub-portfolio__item:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(139, 115, 85, 0.2);
    z-index: 2;
  }

  .hub-portfolio__item:hover img {
    transform: scale(1.04);
    transition: transform 0.45s ease;
  }

  .hub-portfolio__label {
    left: 0.85rem;
    bottom: 0.85rem;
    font-size: 0.68rem;
    padding: 0.35rem 0.75rem;
  }
}

.services-section {
  padding: 2.5rem 1rem 3.5rem;
  background: linear-gradient(180deg, var(--warm-white) 0%, var(--cream) 100%);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 420px;
  border-radius: 24px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 12px 40px var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(139, 115, 85, 0.25);
}

.service-card__image {
  flex: 1;
  min-height: 240px;
  background-size: cover;
  background-position: center;
}

.service-card__body {
  padding: 1.75rem;
  background: white;
}

.service-card__label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--rose-gold);
  margin-bottom: 0.5rem;
}

.service-card h3 {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  color: var(--charcoal);
  margin-bottom: 0.75rem;
}

.service-card p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--soft-brown);
  margin-bottom: 1rem;
}

.service-card__link {
  font-weight: 600;
  color: var(--rose-gold);
}

.hub-highlights {
  padding: 4rem 1.5rem;
  background: linear-gradient(180deg, var(--cream) 0%, var(--champagne) 100%);
}

.hub-highlights__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
}

.hub-highlight {
  text-align: center;
  padding: 1.5rem 1rem;
  background: white;
  border-radius: 16px;
  box-shadow: 0 4px 20px var(--shadow);
}

.hub-highlight span {
  display: block;
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
}

.hub-highlight h3 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  margin-bottom: 0.35rem;
}

.hub-highlight p {
  font-size: 0.9rem;
  color: var(--soft-brown);
}

.package-badge.baby-badge { background: #8fb4c8; }

/* ===== Terms & Conditions ===== */
.terms-page {
  background: linear-gradient(180deg, var(--cream) 0%, var(--champagne) 100%);
}

.terms-main {
  padding: 3rem 1.5rem 4rem;
}

.terms-container {
  max-width: 820px;
  margin: 0 auto;
  background: white;
  border-radius: 20px;
  padding: 3rem;
  box-shadow: 0 8px 40px var(--shadow);
}

.terms-header {
  text-align: center;
  margin-bottom: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(139, 115, 85, 0.15);
}

.terms-eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--rose-gold);
  margin-bottom: 0.75rem;
}

.terms-header h1 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 2.75rem);
  color: var(--charcoal);
  margin-bottom: 1rem;
}

.terms-intro {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--soft-brown);
}

.terms-section {
  margin-bottom: 2rem;
}

.terms-section h2 {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  color: var(--rose-gold);
  margin-bottom: 0.85rem;
  padding-bottom: 0.4rem;
  border-bottom: 2px solid rgba(183, 110, 121, 0.25);
}

.terms-section h3 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--charcoal);
  margin: 1.25rem 0 0.5rem;
}

.terms-section p {
  font-size: 0.98rem;
  line-height: 1.85;
  color: var(--charcoal);
  margin-bottom: 0.85rem;
}

.terms-list {
  list-style: none;
  padding: 0;
  margin: 0.75rem 0 1rem;
}

.terms-list li {
  position: relative;
  padding: 0.45rem 0 0.45rem 1.4rem;
  font-size: 0.98rem;
  line-height: 1.7;
  color: var(--charcoal);
}

.terms-list li::before {
  content: "✦";
  position: absolute;
  left: 0;
  color: var(--rose-gold);
  font-size: 0.75rem;
  top: 0.65rem;
}

.terms-note {
  font-size: 0.9rem;
  color: var(--soft-brown);
  font-style: italic;
}

.terms-highlight {
  background: linear-gradient(135deg, rgba(232, 196, 196, 0.2) 0%, rgba(245, 230, 211, 0.3) 100%);
  border-left: 4px solid var(--rose-gold);
  padding: 1.25rem 1.5rem;
  margin: 1.25rem 0;
  border-radius: 0 12px 12px 0;
}

.terms-highlight p {
  margin-bottom: 0;
}

.terms-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(139, 115, 85, 0.15);
}

.terms-back {
  color: var(--rose-gold);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
}

.terms-back:hover {
  color: var(--blush-dark);
}

/* ===== About Us ===== */
.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.about-stat {
  text-align: center;
  padding: 1.25rem 0.75rem;
  background: linear-gradient(135deg, rgba(232, 196, 196, 0.15) 0%, rgba(245, 230, 211, 0.25) 100%);
  border-radius: 14px;
  border: 1px solid rgba(183, 110, 121, 0.15);
}

.about-stat__number {
  display: block;
  font-family: var(--font-serif);
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  font-weight: 600;
  color: var(--rose-gold);
  margin-bottom: 0.35rem;
}

.about-stat__label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--soft-brown);
}

.about-studios {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  margin: 1.5rem 0 1rem;
}

.about-studio-card {
  padding: 1.25rem 1.35rem;
  background: var(--warm-white);
  border-radius: 14px;
  border: 1px solid rgba(139, 115, 85, 0.12);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.about-studio-card:hover {
  box-shadow: 0 6px 24px var(--shadow);
  transform: translateY(-2px);
}

.about-studio-card__num {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--rose-gold);
  margin-bottom: 0.5rem;
}

.about-studio-card h3 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--charcoal);
  margin: 0 0 0.5rem;
}

.about-studio-card p {
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--soft-brown);
  margin: 0;
}

@media (max-width: 600px) {
  .about-stats {
    grid-template-columns: 1fr;
  }
}

.site-footer {
  text-align: center;
  padding: 1.5rem;
  background: var(--warm-white);
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.site-footer p {
  font-size: 0.85rem;
  color: var(--soft-brown);
  margin-bottom: 0.35rem;
}

.site-footer a {
  color: var(--rose-gold);
  text-decoration: none;
  font-weight: 500;
}

.site-footer a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .terms-main {
    padding: 2rem 1rem 3rem;
  }

  .terms-container {
    padding: 2rem 1.25rem;
  }

  .terms-section h2 {
    font-size: 1.25rem;
  }

  .site-nav__toggle {
    display: flex;
  }

  .site-nav__links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem 1.5rem 1.25rem;
    background: white;
    box-shadow: 0 12px 30px var(--shadow);
  }

  .site-nav__links.is-open {
    display: flex;
  }

  .site-nav__links a {
    padding: 0.65rem 0;
    min-height: 44px;
    display: flex;
    align-items: center;
  }

  .site-nav__cta {
    text-align: center;
    justify-content: center;
    min-height: 44px;
    display: flex;
    align-items: center;
  }

  .site-nav {
    position: sticky;
    top: 0;
    flex-wrap: nowrap;
    padding: 0.65rem 1rem;
    padding-top: max(0.65rem, env(safe-area-inset-top));
  }

  .site-nav__brand {
    font-size: 1.15rem;
    max-width: calc(100% - 52px);
    overflow: hidden;
    text-overflow: ellipsis;
  }
}

/* ===== Hero Section ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: linear-gradient(135deg, var(--cream) 0%, var(--champagne) 50%, var(--blush) 100%);
  background-image: 
    linear-gradient(135deg, rgba(253, 248, 245, 0.95) 0%, rgba(245, 230, 211, 0.9) 50%, rgba(232, 196, 196, 0.85) 100%),
    url('https://images.unsplash.com/photo-1606811971618-4486d14f3f99?w=1920') center/cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(253, 248, 245, 0.3) 0%, rgba(253, 248, 245, 0.8) 100%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  padding: 2rem;
  text-align: center;
}

/* TinyFoot-style hero: text + photo marquee */
.hero-content--marquee {
  max-width: 1100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.hero-text {
  text-align: center;
}

.hero-text .brand-name {
  margin-bottom: 0.25rem;
}

.hero-text .hero-title {
  margin-bottom: 0.25rem;
}

.hero-photo-wrap {
  width: 100%;
  max-width: 1000px;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
  min-height: 317px;
}

.top-ellipse,
.low-ellipse {
  position: absolute;
  left: 0;
  right: 0;
  height: 64px;
  pointer-events: none;
  z-index: 2;
}

.top-ellipse {
  top: 0;
  background: radial-gradient(ellipse 120% 100% at 50% 0%, var(--cream) 0%, transparent 70%);
}

.low-ellipse {
  bottom: 0;
  background: radial-gradient(ellipse 120% 100% at 50% 100%, var(--cream) 0%, transparent 70%);
}

.photo-marquee {
  display: flex;
  width: max-content;
  --marquee-gap: 1rem;
  gap: var(--marquee-gap);
  will-change: transform;
  animation: marquee-scroll 40s linear infinite;
}

.photo-marquee:hover {
  animation-play-state: paused;
}

.photo-wrap {
  display: flex;
  gap: var(--marquee-gap, 1rem);
  padding: 0.75rem 0;
  align-items: center;
  flex-shrink: 0;
}

.photo-wrap .hero-image {
  display: block;
  width: 220px;
  height: 293px;
  object-fit: cover;
  object-position: center;
  border-radius: 24px;
  flex-shrink: 0;
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.14);
}

@keyframes marquee-scroll {
  0% { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(calc(-50% - var(--marquee-gap) / 2), 0, 0); }
}

.brand-name {
  font-family: var(--font-script);
  font-size: clamp(4rem, 12vw, 7.5rem);
  font-weight: 400;
  color: var(--rose-gold);
  margin-bottom: 0.25rem;
  letter-spacing: 0.02em;
  text-shadow: 0 2px 20px rgba(183, 110, 121, 0.2);
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 0.5rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hero-tagline {
  font-size: 1.1rem;
  color: var(--soft-brown);
  margin-bottom: 2rem;
  font-weight: 500;
}

.hero-desc {
  font-size: 1rem;
  color: var(--charcoal);
  line-height: 1.8;
  font-weight: 400;
  text-align: center;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  overflow-wrap: break-word;
}

/* ===== Section Titles ===== */
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  text-align: center;
  color: var(--charcoal);
  margin-bottom: 3rem;
  letter-spacing: 0.05em;
}

/* ===== Video Gallery ===== */
.gallery {
  padding: 5rem 2rem;
  background: var(--warm-white);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 300px));
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  justify-content: center;
}

.video-card {
  position: relative;
  aspect-ratio: 9/16;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 40px var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(139, 115, 85, 0.25);
}

.video-card video,
.video-placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-placeholder {
  background-size: cover;
  background-position: center;
}

/* ===== Baby Gallery (Bento) ===== */
.baby-gallery {
  padding: 5rem 1.5rem;
  background:
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(245, 230, 211, 0.5) 0%, transparent 70%),
    linear-gradient(180deg, var(--cream) 0%, var(--warm-white) 100%);
}

.baby-gallery__header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3rem;
}

.baby-gallery__eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--soft-brown);
  margin-bottom: 0.5rem;
}

.baby-gallery__subtitle {
  margin-top: 0.75rem;
  font-size: 1rem;
  line-height: 1.75;
  color: var(--soft-brown);
}

.baby-gallery__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 110px;
  gap: 1rem;
  max-width: 1100px;
  margin: 0 auto;
}

.baby-gallery__item {
  position: relative;
  padding: 0;
  border: none;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  background: var(--champagne);
  box-shadow: 0 12px 40px rgba(139, 115, 85, 0.12);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s ease;
  grid-column: span 4;
  grid-row: span 2;
}

.baby-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.baby-gallery__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, rgba(44, 44, 44, 0) 40%, rgba(44, 44, 44, 0.45) 100%);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.baby-gallery__view {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: white;
  padding: 0.6rem 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 999px;
  backdrop-filter: blur(6px);
  transform: translateY(8px);
  transition: transform 0.35s ease;
}

.baby-gallery__item:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 50px rgba(139, 115, 85, 0.22);
}

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

.baby-gallery__item:hover .baby-gallery__overlay {
  opacity: 1;
}

.baby-gallery__item:hover .baby-gallery__view {
  transform: translateY(0);
}

.baby-gallery__item--hero {
  grid-column: span 7;
  grid-row: span 4;
  border-radius: 24px;
}

.baby-gallery__item--tall {
  grid-column: span 5;
  grid-row: span 4;
}

.baby-gallery__item--wide {
  grid-column: span 6;
  grid-row: span 2;
}

.baby-gallery__cta {
  text-align: center;
  margin-top: 2.5rem;
}

/* Maternity catalog — portrait-friendly (faces visible) */
.maternity-gallery .baby-gallery__grid {
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: auto;
  gap: 1rem;
}

.maternity-gallery .baby-gallery__item,
.maternity-gallery .baby-gallery__item--hero,
.maternity-gallery .baby-gallery__item--tall,
.maternity-gallery .baby-gallery__item--wide {
  grid-column: span 1;
  grid-row: span 1;
  aspect-ratio: 4 / 5;
  min-height: 0;
}

.maternity-gallery .baby-gallery__item img {
  object-fit: cover;
  object-position: center 18%;
}

.maternity-gallery .baby-gallery__item:hover img {
  transform: scale(1.03);
}

@media (max-width: 900px) {
  .maternity-gallery .baby-gallery__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 520px) {
  .maternity-gallery .baby-gallery__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.65rem;
  }

  .maternity-gallery .baby-gallery__item,
  .maternity-gallery .baby-gallery__item--hero,
  .maternity-gallery .baby-gallery__item--tall,
  .maternity-gallery .baby-gallery__item--wide {
    aspect-ratio: 3 / 4;
    border-radius: 14px;
  }

  .maternity-gallery .baby-gallery__item img {
    object-position: center 15%;
  }
}

.baby-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
}

.baby-lightbox.is-open {
  display: block;
}

.baby-lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(20, 18, 16, 0.88);
  backdrop-filter: blur(12px);
}

.baby-lightbox__dialog {
  position: relative;
  z-index: 1;
  height: 100%;
  display: grid;
  place-items: center;
  padding: 2rem 1rem;
}

.baby-lightbox__img {
  max-width: min(920px, 94vw);
  max-height: min(82vh, 760px);
  border-radius: 16px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
  object-fit: contain;
}

.baby-lightbox__close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.35);
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  line-height: 1;
}

@media (max-width: 900px) {
  .baby-gallery__grid {
    grid-template-columns: repeat(6, 1fr);
    grid-auto-rows: 100px;
  }

  .baby-gallery__item {
    grid-column: span 3;
    grid-row: span 2;
  }

  .baby-gallery__item--hero {
    grid-column: span 6;
    grid-row: span 3;
  }

  .baby-gallery__item--tall {
    grid-column: span 3;
    grid-row: span 3;
  }

  .baby-gallery__item--wide {
    grid-column: span 6;
    grid-row: span 2;
  }
}

@media (max-width: 520px) {
  .baby-gallery {
    padding: 3rem 1rem;
  }

  .baby-gallery__grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 140px;
    gap: 0.65rem;
  }

  .baby-gallery__item,
  .baby-gallery__item--hero,
  .baby-gallery__item--tall,
  .baby-gallery__item--wide {
    grid-column: span 1;
    grid-row: span 1;
    border-radius: 14px;
  }

  .baby-gallery__item--hero,
  .baby-gallery__item--wide {
    grid-column: span 2;
    grid-row: span 2;
  }
}

/* ===== Why Us ===== */
.why-us {
  padding: 5rem 2rem;
  background: linear-gradient(180deg, var(--cream) 0%, var(--champagne) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  justify-content: center;
}

.feature-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 20px var(--shadow);
  transition: all 0.3s ease;
  border: 1px solid rgba(232, 196, 196, 0.3);
  display: flex;
  flex-direction: column;
  position: relative;
  min-height: 300px;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.15);
  border-color: var(--blush);
}

.feature-image {
  width: 100%;
  height: 200px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

.feature-image::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,0.3) 100%);
}

.feature-content {
  padding: 1.5rem;
  text-align: center;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: white;
}

.feature-card.highlight {
  border: 2px solid var(--rose-gold);
}

.feature-card.highlight .feature-content {
  background: linear-gradient(135deg, var(--rose-gold), var(--blush-dark));
  color: white;
}

.feature-icon {
  display: block;
  font-size: 1.8rem;
  color: var(--rose-gold);
  margin-bottom: 0.75rem;
}

.feature-card.highlight .feature-icon {
  color: white;
}

.feature-card h3 {
  font-family: var(--font-sans);
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0;
  line-height: 1.4;
}

.feature-description {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  line-height: 1.6;
  color: var(--charcoal);
  margin-top: 0.75rem;
  text-align: left;
  opacity: 0.9;
}

.feature-card.highlight .feature-description {
  color: rgba(255, 255, 255, 0.95);
}

.feature-link {
  display: inline-block;
  margin-top: 0.75rem;
  color: var(--rose-gold);
  text-decoration: none;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 600;
  transition: all 0.3s ease;
  border-bottom: 2px solid transparent;
}

.feature-link:hover {
  color: var(--blush-dark);
  border-bottom-color: var(--blush-dark);
  transform: translateX(4px);
}

.feature-card.highlight .feature-link {
  color: white;
  border-bottom-color: rgba(255, 255, 255, 0.5);
}

.feature-card.highlight .feature-link:hover {
  color: white;
  border-bottom-color: white;
}

/* ===== Countdown ===== */
.countdown-section {
  padding: 3rem 2rem;
  text-align: center;
  background: linear-gradient(135deg, var(--rose-gold), var(--blush-dark));
  color: white;
}

.countdown-label {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  letter-spacing: 0.2em;
  margin-bottom: 1rem;
  opacity: 0.95;
}

.countdown {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.countdown-item {
  display: flex;
  align-items: baseline;
}

.countdown-num {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 700;
  line-height: 1;
}

.countdown-sep {
  font-size: clamp(2rem, 5vw, 3rem);
  margin: 0 0.25rem;
  opacity: 0.9;
}

/* ===== Packages ===== */
.packages {
  padding: 5rem 2rem;
  background: var(--cream);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto 3rem;
  width: 100%;
  min-width: 0;
}

.packages-row-2 {
  grid-column: 1 / -1;
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  min-width: 0;
}

.packages-row-2 .package-card {
  flex: 1 1 280px;
  max-width: 380px;
}

.package-card {
  background: white;
  border-radius: 20px;
  padding: 2rem;
  position: relative;
  box-shadow: 0 8px 30px var(--shadow);
  border: 2px solid transparent;
  transition: all 0.3s ease;
  min-width: 0;
  overflow-wrap: break-word;
}

.package-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px var(--shadow);
  border-color: var(--blush);
}

.package-card.best-price {
  border-color: var(--rose-gold);
  background: linear-gradient(180deg, white 0%, rgba(232, 196, 196, 0.1) 100%);
}

.package-card.platinum {
  border-color: var(--soft-brown);
  background: linear-gradient(180deg, white 0%, rgba(245, 230, 211, 0.3) 100%);
}

.package-badge {
  position: absolute;
  top: -12px;
  right: 20px;
  background: var(--rose-gold);
  color: white;
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
}

.package-badge.standard { background: var(--soft-brown); }
.package-badge.trendy { background: var(--blush-dark); }
.package-badge.gold { background: #c9a227; }
.package-badge.platinum-badge { background: #5a5a5a; }
.package-badge.newborn-badge { background: #7eb8b8; }
.package-card.newborn-pkg { border-color: rgba(126, 184, 184, 0.5); }

.package-card h3 {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 1rem;
  padding-right: 100px;
}

.package-price {
  margin-bottom: 1.5rem;
  display: flex;
  align-items: baseline;
  gap: 1rem;
}

.package-price .original {
  text-decoration: line-through;
  color: #999;
  font-size: 0.95rem;
}

.package-price .discount {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--rose-gold);
}

.package-features {
  list-style: none;
}

.package-features li {
  padding: 0.4rem 0;
  font-size: 0.9rem;
  color: var(--charcoal);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.package-features li:last-child {
  border-bottom: none;
}

.package-dress-note {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  font-size: 0.9rem;
  color: var(--soft-brown);
  font-style: italic;
}

.package-note {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  font-size: 0.95rem;
  color: var(--soft-brown);
}

/* ===== CTA Banner ===== */
.cta-banner {
  padding: 4rem 2rem;
  text-align: center;
  background: linear-gradient(135deg, var(--charcoal) 0%, #5a4a3a 100%);
  color: white;
}

.cta-banner h2,
.cta-banner__title {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.cta-banner h2 a,
.cta-banner__title a {
  color: #e8c4c4;
  text-decoration: none;
  transition: color 0.2s;
}

.cta-banner h2 a:hover,
.cta-banner__title a:hover {
  color: white;
}

.cta-banner > p,
.cta-banner__meta {
  font-size: 0.95rem;
  opacity: 0.9;
  margin-bottom: 2rem;
}

.btn-book {
  display: inline-block;
  background: var(--rose-gold);
  color: white !important;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.15em;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.btn-book:hover {
  background: white;
  color: var(--rose-gold) !important;
  border-color: var(--rose-gold);
}

.cta-note {
  margin-top: 1.5rem !important;
  font-size: 0.85rem !important;
  opacity: 0.8 !important;
}

/* ===== Info Sections ===== */
.info-sections {
  padding: 5rem 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.info-card {
  background: white;
  padding: 2.5rem;
  border-radius: 16px;
  margin-bottom: 2rem;
  box-shadow: 0 4px 20px var(--shadow);
  border-left: 4px solid var(--blush);
}

.info-card h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 1rem;
}

.info-card p {
  color: var(--charcoal);
  font-size: 0.95rem;
  line-height: 1.8;
}

.info-card a {
  color: var(--rose-gold);
  text-decoration: none;
  font-weight: 600;
}

.info-card a:hover {
  text-decoration: underline;
}

.info-card.contact {
  text-align: center;
  border-left-color: var(--rose-gold);
}

.contact-note {
  font-size: 0.85rem !important;
  color: var(--soft-brown) !important;
  margin: 0.5rem 0 1.5rem !important;
}

/* ===== Reviews ===== */
.reviews {
  padding: 5rem 2rem;
  background: linear-gradient(180deg, var(--champagne) 0%, var(--cream) 100%);
}

.reviews-subtitle {
  text-align: center;
  max-width: 560px;
  margin: -1.5rem auto 2.5rem;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--soft-brown);
}

.reviews-page {
  min-height: calc(100vh - 60px);
  padding-top: 4rem;
}

.reviews-page--neutral {
  background: var(--warm-white);
}

.reviews-page--neutral .review-card::before {
  color: var(--champagne);
  opacity: 0.9;
}

.reviews-page--neutral .review-author {
  color: var(--charcoal);
}

.reviews-page--neutral .review-card {
  border: 1px solid rgba(139, 115, 85, 0.12);
}

.reviews--neutral {
  background: var(--warm-white);
}

.reviews--neutral .review-card::before {
  color: var(--champagne);
  opacity: 0.9;
}

.reviews--neutral .review-author {
  color: var(--charcoal);
}

.reviews--neutral .review-card {
  border: 1px solid rgba(139, 115, 85, 0.12);
  box-shadow: 0 6px 24px rgba(139, 115, 85, 0.08);
}

.reviews-page__actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  margin-top: 3rem;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.review-card {
  background: white;
  padding: 2.5rem;
  border-radius: 16px;
  box-shadow: 0 8px 30px var(--shadow);
  position: relative;
}

.review-card::before {
  content: '"';
  position: absolute;
  top: 1rem;
  left: 1.5rem;
  font-family: var(--font-serif);
  font-size: 4rem;
  color: var(--blush);
  opacity: 0.5;
  line-height: 1;
}

.review-text {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--charcoal);
  margin-bottom: 1.5rem;
  padding-left: 1rem;
}

.review-author {
  font-weight: 600;
  color: var(--rose-gold);
  font-size: 0.9rem;
}

/* ===== Footer ===== */
.terms-preview {
  padding: 4rem 1.5rem;
  background: white;
}

.terms-preview--compact {
  padding: 1.25rem 1rem;
  background: var(--warm-white);
  text-align: center;
  border-top: 1px solid rgba(139, 115, 85, 0.1);
}

.terms-preview--compact p {
  font-size: 0.82rem;
  line-height: 1.6;
  color: var(--soft-brown);
  margin: 0;
}

.terms-preview--compact a {
  color: var(--rose-gold);
  font-weight: 600;
  text-decoration: none;
}

.terms-preview--compact a:hover {
  text-decoration: underline;
}

.terms-preview__inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.terms-preview__inner p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--soft-brown);
}

.footer .site-footer {
  margin-top: 1.5rem;
  padding-top: 0;
  background: transparent;
  border: none;
}

.footer .site-footer p,
.footer .site-footer a {
  color: rgba(255, 255, 255, 0.85);
}

.form-terms {
  font-size: 0.85rem;
  color: var(--soft-brown);
  line-height: 1.6;
}

.form-terms a {
  color: var(--rose-gold);
  font-weight: 600;
  text-decoration: none;
}

.form-terms a:hover {
  text-decoration: underline;
}

.book-footer span {
  color: var(--soft-brown);
}

.footer {
  padding: 3rem 2rem;
  text-align: center;
  background: var(--charcoal);
}

.footer .btn-book {
  background: var(--rose-gold);
}

/* ===== Home page footer ===== */
.footer--home {
  position: relative;
  padding: 0;
  text-align: left;
  overflow: hidden;
  background: linear-gradient(165deg, #2a2a2a 0%, var(--charcoal) 45%, #4a3d45 100%);
}

.home-footer__inner--compact {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  max-width: 1140px;
  margin: 0 auto;
  padding: 1.75rem 1.5rem;
}

.home-footer__inner--compact .home-footer__brand {
  flex: 1;
  min-width: 0;
}

.home-footer__inner--compact .home-footer__contact {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}

.home-footer__name {
  font-family: var(--font-script);
  font-size: clamp(1.5rem, 4vw, 2rem);
  color: #e8c4c4;
  line-height: 1.1;
  margin-bottom: 0.25rem;
}

.home-footer__tagline {
  font-size: 0.78rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.65);
  margin: 0;
}

.home-footer__phone {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 3vw, 1.35rem);
  font-weight: 600;
  color: white;
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.2s ease;
}

.home-footer__phone:hover {
  color: #e8c4c4;
}

.home-footer__cta {
  display: inline-block;
  padding: 0.65rem 1.25rem;
  font-size: 0.85rem;
  white-space: nowrap;
}

.home-footer__bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0.85rem 1.5rem 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.home-footer__bottom p {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.45);
  margin: 0;
}

.home-footer__legal {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.home-footer__legal a {
  color: rgba(232, 196, 196, 0.75);
  text-decoration: none;
  font-size: 0.72rem;
  font-weight: 500;
  transition: color 0.2s ease;
}

.home-footer__legal a:hover {
  color: white;
}

.home-footer__legal span {
  color: rgba(255, 255, 255, 0.25);
  font-size: 0.72rem;
}

@media (max-width: 600px) {
  .home-footer__inner--compact {
    flex-direction: column;
    align-items: flex-start;
    padding: 1.5rem 1rem;
    gap: 1rem;
  }

  .home-footer__inner--compact .home-footer__contact {
    width: 100%;
    justify-content: space-between;
  }

  .home-footer__bottom {
    flex-direction: column;
    align-items: flex-start;
    padding: 0.85rem 1rem 1.25rem;
    padding-bottom: calc(1.25rem + env(safe-area-inset-bottom));
  }
}

/* ===== Responsive - Mobile First Audience ===== */
@media (max-width: 768px) {
  .hero {
    min-height: auto;
    padding: 2rem 0.75rem 3rem;
  }
  
  .hero-content,
  .hero-content--marquee {
    padding: 0 0.75rem;
    gap: 1.25rem;
  }
  
  .hero-photo-wrap {
    min-height: 251px;
  }

  .photo-wrap .hero-image {
    width: 170px;
    height: 227px;
  }

  .photo-marquee {
    --marquee-gap: 0.75rem;
    animation-duration: 32s;
  }

  .top-ellipse,
  .low-ellipse {
    height: 48px;
  }

  .hero-desc {
    width: 100%;
    padding: 0 0.5rem;
    font-size: 0.95rem;
    line-height: 1.7;
  }
  
  .gallery,
  .why-us,
  .packages,
  .info-sections,
  .reviews {
    padding-left: 1rem;
    padding-right: 1rem;
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
  
  .section-title {
    margin-bottom: 2rem;
    font-size: 1.75rem;
  }
  
  .video-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    min-width: 0;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .feature-card {
    min-height: 280px;
  }
  
  .feature-image {
    height: 140px;
  }
  
  .feature-content {
    padding: 1rem;
  }
  
  .feature-card h3 {
    font-size: 0.95rem;
  }
  
  /* Packages - single column on phones & tablets */
  .packages {
    padding: 3rem 1rem;
  }

  .packages-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  
  .package-card {
    padding: 1.25rem;
  }
  
  .package-card h3 {
    padding-right: 0;
    font-size: 1.1rem;
  }
  
  .package-price .discount {
    font-size: 1.35rem;
  }
  
  .package-features li {
    font-size: 0.85rem;
    padding: 0.35rem 0;
  }
  
  .package-dress-note {
    font-size: 0.8rem;
    margin-top: 0.75rem;
    padding-top: 0.75rem;
  }
  
  .package-note {
    font-size: 0.9rem;
    padding: 0 0.5rem;
  }
  
  .cta-banner {
    padding: 2.5rem 1rem;
  }
  
  .cta-banner h2,
  .cta-banner__title {
    font-size: 1.25rem;
  }

  .cta-banner > p,
  .cta-banner__meta {
    font-size: 0.85rem;
  }
  
  .btn-book {
    padding: 0.9rem 1.5rem;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
  }
  
  .info-card {
    padding: 1.5rem;
  }
  
  .info-card h3 {
    font-size: 1.25rem;
  }
  
  .reviews-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .review-card {
    padding: 1.5rem;
  }
  
  .review-text {
    font-size: 0.9rem;
  }
}

/* Phone-optimized (main audience) */
@media (max-width: 480px) {
  .hero {
    padding: 1.5rem 0.5rem 2.5rem;
    min-height: 0;
  }

  .hero-content,
  .hero-content--marquee {
    padding: 0 0.5rem;
    gap: 1rem;
  }

  .hero-text .brand-name {
    font-size: clamp(2.5rem, 11vw, 3.25rem);
    line-height: 1.1;
  }

  .hero-text .hero-title {
    font-size: 1.25rem;
  }

  .hero-tagline {
    font-size: 0.95rem;
    margin-bottom: 0;
  }

  .hero-desc {
    width: 100%;
    max-width: 100%;
    padding: 0 0.25rem;
    font-size: 0.9rem;
    line-height: 1.7;
    text-align: center;
  }

  .hero-photo-wrap {
    margin: 0 -0.5rem;
    max-width: none;
    min-height: 177px;
  }

  .photo-wrap {
    padding: 0.5rem 0;
  }

  .photo-wrap .hero-image {
    width: 115px;
    height: 153px;
    border-radius: 16px;
  }

  .photo-marquee {
    --marquee-gap: 0.6rem;
    animation-duration: 24s;
  }

  .top-ellipse,
  .low-ellipse {
    height: 28px;
  }

  .gallery,
  .why-us,
  .packages,
  .info-sections,
  .reviews {
    padding: 2rem 0.75rem;
  }

  .section-title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .video-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .feature-card {
    min-height: 240px;
  }

  .feature-image {
    height: 140px;
  }

  .feature-card h3 {
    font-size: 1rem;
  }

  .packages-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
  }

  .package-card {
    padding: 1rem;
  }

  .package-card h3 {
    font-size: 1rem;
  }

  .package-features li {
    font-size: 0.8rem;
  }

  .package-dress-note {
    font-size: 0.8rem;
  }

  .cta-banner {
    padding: 2rem 0.75rem;
  }

  .cta-banner h2,
  .cta-banner__title {
    font-size: 1.1rem;
    line-height: 1.4;
  }

  .cta-banner > p,
  .cta-banner__meta {
    font-size: 0.8rem;
  }

  .cta-banner h2 a,
  .cta-banner__title a {
    white-space: nowrap;
  }

  .btn-book {
    display: block;
    padding: 1rem 1.25rem;
    font-size: 0.85rem;
    min-height: 48px;
    margin: 0 auto;
  }

  .info-card {
    padding: 1.25rem;
    margin-bottom: 1.25rem;
  }

  .info-card h3 {
    font-size: 1.1rem;
  }

  .info-card p {
    font-size: 0.9rem;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .review-card {
    padding: 1.25rem;
  }

  .review-text {
    font-size: 0.9rem;
  }

  .footer {
    padding: 2rem 0.75rem;
  }

  .countdown-num {
    font-size: 1.75rem;
  }

  .countdown-sep {
    font-size: 1.25rem;
  }
}

.hero-desc--short {
  display: none;
}

/* ===== Maternity page mobile ===== */
@media (max-width: 768px) {
  body.page-maternity.has-site-nav .hero--marquee {
    min-height: auto;
  }

  body.page-maternity .hero-content--marquee {
    width: 100%;
    max-width: 100%;
  }

  body.page-maternity .hero-desc--full {
    display: none;
  }

  body.page-maternity .hero-desc--short {
    display: block;
    font-size: 0.92rem;
    line-height: 1.65;
    padding: 0 0.25rem;
  }

  body.page-maternity .baby-gallery,
  body.page-maternity .why-us,
  body.page-maternity .reviews,
  body.page-maternity .packages,
  body.page-maternity .info-sections {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  body.page-maternity .video-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.65rem;
    width: 100%;
    max-width: 100%;
  }

  body.page-maternity .video-card {
    border-radius: 10px;
  }

  body.page-maternity .features-grid {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }

  body.page-maternity .feature-card {
    min-height: auto;
  }

  body.page-maternity .feature-image {
    height: 160px;
  }

  body.page-maternity .feature-link {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.35rem 0;
  }

  body.page-maternity .reviews-subtitle {
    margin: -0.5rem auto 1.5rem;
    font-size: 0.88rem;
    line-height: 1.6;
    padding: 0 0.25rem;
  }

  body.page-maternity .review-card {
    padding: 1.35rem 1.15rem;
  }

  body.page-maternity .review-card::before {
    font-size: 2.75rem;
    top: 0.35rem;
    left: 0.85rem;
  }

  body.page-maternity .review-text {
    padding-left: 0.25rem;
    margin-bottom: 0.85rem;
    font-size: 0.88rem;
    line-height: 1.65;
  }

  body.page-maternity .review-author {
    font-size: 0.82rem;
  }

  body.page-maternity .packages-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  body.page-maternity .package-card {
    padding: 1.15rem;
    padding-top: 1.75rem;
  }

  body.page-maternity .package-card h3 {
    padding-right: 0;
    font-size: 1.05rem;
    line-height: 1.35;
  }

  body.page-maternity .package-badge {
    top: 0.65rem;
    right: 0.65rem;
    font-size: 0.62rem;
    padding: 0.28rem 0.6rem;
  }

  body.page-maternity .package-price {
    flex-wrap: wrap;
    gap: 0.5rem;
  }

  body.page-maternity .package-features li {
    font-size: 0.82rem;
    line-height: 1.45;
  }

  body.page-maternity .info-card {
    padding: 1.15rem;
  }

  body.page-maternity .info-card p {
    font-size: 0.88rem;
    line-height: 1.65;
  }

  body.page-maternity .info-card.contact .btn-book {
    display: block;
    width: 100%;
    text-align: center;
    min-height: 48px;
  }

  body.page-maternity .footer .btn-book {
    width: 100%;
    max-width: 100%;
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  body.page-maternity .cta-banner__title {
    font-size: 1.15rem;
    line-height: 1.4;
    word-break: break-word;
  }

  body.page-maternity .cta-banner__meta {
    font-size: 0.72rem;
    letter-spacing: 0.04em;
    line-height: 1.5;
  }
}

@media (max-width: 480px) {
  body.page-maternity .hero-text .brand-name {
    font-size: clamp(2rem, 10vw, 2.75rem);
  }

  body.page-maternity .hero-text .hero-title {
    font-size: 1.1rem;
  }

  body.page-maternity .section-title {
    font-size: 1.35rem;
    margin-bottom: 1.25rem;
  }

  body.page-maternity .baby-gallery,
  body.page-maternity .why-us,
  body.page-maternity .reviews,
  body.page-maternity .packages,
  body.page-maternity .info-sections {
    padding: 2rem 0.65rem;
  }

  body.page-maternity .video-grid {
    gap: 0.5rem;
  }

  body.page-maternity .feature-image {
    height: 140px;
  }

  body.page-maternity .reviews-grid {
    gap: 0.85rem;
  }

  body.page-maternity .review-card {
    padding: 1.15rem 1rem;
  }

  body.page-maternity .package-card h3 {
    font-size: 0.98rem;
  }

  body.page-maternity .package-price .discount {
    font-size: 1.2rem;
  }

  body.page-maternity .cta-banner {
    padding: 1.75rem 0.65rem;
  }

  body.page-maternity .cta-banner .btn-book {
    width: 100%;
    max-width: 100%;
  }
}

@media (max-width: 360px) {
  body.page-maternity .photo-wrap .hero-image {
    width: 100px;
    height: 133px;
  }

  body.page-maternity .hero-photo-wrap {
    min-height: 157px;
  }
}

/* Very small phones */
@media (max-width: 360px) {
  .photo-wrap .hero-image {
    width: 100px;
    height: 133px;
  }

  .hero-text .brand-name {
    font-size: 2.25rem;
  }

  .section-title {
    font-size: 1.35rem;
  }
}

/* ===== Global mobile polish (primary audience) ===== */
@media (max-width: 768px) {
  .hub-hero {
    padding: 1.5rem 1rem 1rem;
  }

  .hub-portfolio {
    padding: 0 0.65rem 1.75rem;
  }

  .services-section,
  .hub-highlights,
  .terms-preview,
  .baby-gallery {
    padding: 2.5rem 1rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .service-card {
    min-height: auto;
  }

  .service-card__image {
    min-height: 200px;
  }

  .hub-highlights__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .hub-highlight {
    padding: 1.25rem 0.75rem;
  }

  .packages-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .feature-card {
    min-height: auto;
  }

  .feature-link {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .review-card {
    padding: 1.5rem;
  }

  .terms-main {
    padding: 1.5rem 0.75rem 2.5rem;
  }

  .terms-container {
    padding: 1.75rem 1.25rem;
    border-radius: 16px;
  }

  .terms-actions .btn-book {
    width: 100%;
    text-align: center;
  }

  .baby-gallery__cta .btn-book {
    width: 100%;
    max-width: 320px;
  }

  .baby-gallery__item:hover {
    transform: none;
  }

  .baby-gallery__item:active {
    transform: scale(0.98);
  }

  .cta-banner h2 {
    font-size: 1.15rem;
    line-height: 1.45;
    word-break: break-word;
  }

  .cta-banner h2 a {
    white-space: nowrap;
  }
}

@media (max-width: 480px) {
  .hub-highlights__grid {
    grid-template-columns: 1fr;
  }

  .hub-portfolio__grid {
    gap: 0.45rem;
  }

  .hub-portfolio__item {
    border-radius: 12px;
  }

  .site-nav__links {
    padding: 0.75rem 1rem 1rem;
    max-height: calc(100vh - 60px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .package-badge {
    font-size: 0.65rem;
    padding: 0.3rem 0.6rem;
  }

  .package-card h3 {
    font-size: 0.95rem;
    line-height: 1.35;
  }

  .btn-send {
    width: 100%;
    align-self: stretch;
    min-height: 48px;
  }
}
