/* ===== 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);
}

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

/* ===== 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;
}

.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;
  will-change: transform;
}

.photo-wrap {
  display: flex;
  gap: 1rem;
  padding: 0.75rem 0;
  align-items: center;
}

/* Curved row: alternate images slightly up/down for TinyFoot-style wave */
.photo-wrap .hero-image:nth-child(odd) {
  transform: translateY(-8px);
}

.photo-wrap .hero-image:nth-child(even) {
  transform: translateY(8px);
}

.photo-wrap .hero-image {
  width: 220px;
  height: 293px;
  object-fit: cover;
  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(-50%, 0, 0); }
}

.photo-marquee {
  animation: marquee-scroll 28s linear infinite;
}

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

.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;
}

/* ===== 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 {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

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

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

.cta-banner > p {
  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-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 ===== */
.footer {
  padding: 3rem 2rem;
  text-align: center;
  background: var(--charcoal);
}

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

/* ===== 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;
  }
  
  .photo-wrap .hero-image {
    width: 170px;
    height: 227px;
  }

  .photo-wrap .hero-image:nth-child(odd) {
    transform: translateY(-6px);
  }

  .photo-wrap .hero-image:nth-child(even) {
    transform: translateY(6px);
  }

  .photo-marquee {
    animation-duration: 22s;
  }

  .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: repeat(2, 1fr);
    gap: 1rem;
  }
  
  .feature-card {
    min-height: 280px;
  }
  
  .feature-image {
    height: 140px;
  }
  
  .feature-content {
    padding: 1rem;
  }
  
  .feature-card h3 {
    font-size: 0.95rem;
  }
  
  /* Packages - phone-friendly: 2 cards per row */
  .packages {
    padding: 3rem 1rem;
  }
  
  .packages-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    max-width: 100%;
    margin: 0 auto 2rem;
  }
  
  .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 {
    font-size: 1.25rem;
  }
  
  .cta-banner > p {
    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;
  }

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

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

  .photo-wrap .hero-image:nth-child(odd) {
    transform: translateY(-4px);
  }

  .photo-wrap .hero-image:nth-child(even) {
    transform: translateY(4px);
  }

  .photo-marquee {
    animation-duration: 16s;
  }

  .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 {
    font-size: 1.1rem;
    line-height: 1.4;
  }

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

  .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;
  }
}

/* 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;
  }
}
