/* ─────────────────────────────────────────
   For Kicks and Giggles — fkg-styles.css
   In-Home Ultrasounds & Gender Reveals
───────────────────────────────────────── */

/* ─── RESET & BASE ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Palette */
  --white:        #FFF9F7;
  --cream:        #FFF1EC;
  --cream-dark:   #FFE6DE;
  --blush:        #F9D8D0;
  --rose-soft:    #F6BEB1;
  --rose-mid:     #E5927E;
  --rose:         #D06F5B;
  --rose-deep:    #B55649;
  --charcoal:     #2B2320;
  --charcoal-2:   #3D2D28;
  --warm-gray:    #756560;
  --light-gray:   #C8B2AA;
  --border:       rgba(208, 111, 91, 0.20);
  --border-light: rgba(208, 111, 91, 0.12);

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

  /* Spacing */
  --section-py:   96px;
  --container:    1140px;

  /* Radii */
  --radius-sm:    10px;
  --radius-md:    20px;
  --radius-lg:    30px;

  /* Shadows */
  --shadow-card:  0 4px 32px rgba(43, 35, 32, 0.08);
  --shadow-soft:  0 2px 16px rgba(43, 35, 32, 0.06);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--charcoal);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }

img, svg { display: block; }

/* ─── CONTAINER ─── */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}

/* ─── SECTION ─── */
.section { padding: var(--section-py) 0; }

.section-header {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 60px;
}

.section-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
}
.section-label.light { color: rgba(242, 200, 188, 0.8); }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 400;
  line-height: 1.18;
  color: var(--charcoal);
  margin-bottom: 18px;
}
.section-title em {
  font-style: italic;
  color: var(--rose-deep);
}

.section-desc {
  font-size: 15.5px;
  font-weight: 300;
  color: var(--warm-gray);
  line-height: 1.7;
}

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 60px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.03em;
  cursor: pointer;
  transition: all 0.22s ease;
  white-space: nowrap;
  border: none;
}

.btn-primary {
  background: var(--rose-deep);
  color: white;
  box-shadow: 0 10px 24px rgba(181, 86, 73, 0.28);
}
.btn-primary:hover {
  background: var(--charcoal);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(43, 35, 32, 0.2);
}

.btn-ghost {
  background: transparent;
  color: var(--charcoal);
  position: relative;
  padding-left: 4px;
  padding-right: 4px;
}
.btn-ghost::after {
  content: '';
  position: absolute;
  bottom: 7px;
  left: 4px;
  right: 4px;
  height: 1.5px;
  background: var(--rose-mid);
  transform-origin: left;
  transform: scaleX(0.35);
  transition: transform 0.22s;
}
.btn-ghost:hover::after { transform: scaleX(1); }

.btn-card {
  display: block;
  text-align: center;
  background: var(--cream);
  color: var(--rose-deep);
  border: 1.5px solid var(--border);
  padding: 11px 20px;
  border-radius: 60px;
  font-size: 13px;
  font-weight: 600;
  transition: all 0.22s;
}
.btn-card:hover {
  background: var(--rose-deep);
  color: white;
  border-color: var(--rose-deep);
  transform: translateY(-1px);
}

.btn-card-featured {
  display: block;
  text-align: center;
  background: white;
  color: var(--rose-deep);
  padding: 11px 20px;
  border-radius: 60px;
  font-size: 13px;
  font-weight: 600;
  transition: all 0.22s;
  border: none;
}
.btn-card-featured:hover {
  background: var(--rose-soft);
  transform: translateY(-1px);
}

.btn-light {
  background: white;
  color: var(--charcoal);
}
.btn-light:hover {
  background: var(--cream);
  transform: translateY(-2px);
}

.btn-outline-light {
  background: transparent;
  color: white;
  border: 1.5px solid rgba(255,255,255,0.35);
}
.btn-outline-light:hover {
  border-color: white;
  background: rgba(255,255,255,0.1);
  transform: translateY(-2px);
}

/* ─── HEADER ─── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255, 252, 251, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.site-header.scrolled {
  border-color: var(--border-light);
  box-shadow: 0 2px 20px rgba(43, 35, 32, 0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  height: 70px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.logo-heart { width: 22px; height: 20px; }
.logo-text {
  display: flex;
  align-items: baseline;
  gap: 5px;
}
.logo-main {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 500;
  color: var(--charcoal);
  letter-spacing: -0.01em;
}
.logo-amp {
  font-family: var(--font-display);
  font-size: 15px;
  font-style: italic;
  color: var(--rose);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
}
.main-nav a {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--warm-gray);
  transition: color 0.18s;
}
.main-nav a:hover { color: var(--charcoal); }

.header-cta { margin-left: 8px; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--charcoal);
  transition: all 0.22s ease;
  transform-origin: center;
}
.nav-toggle.active span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ─── HERO ─── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 110px 0 72px;
  position: relative;
  background: var(--cream);
  overflow: hidden;
}

.hero-deco-tl {
  position: absolute;
  top: -60px;
  left: -60px;
  width: 300px;
  height: 300px;
  opacity: 0.5;
  pointer-events: none;
}
.hero-deco-br {
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 220px;
  height: 220px;
  opacity: 0.4;
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 20px;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(38px, 5.5vw, 62px);
  font-weight: 500;
  line-height: 1.12;
  color: var(--charcoal);
  margin-bottom: 22px;
  letter-spacing: -0.01em;
}
.hero-headline em {
  font-style: italic;
  color: var(--rose-deep);
}

.hero-sub {
  font-size: 16px;
  font-weight: 300;
  color: var(--warm-gray);
  max-width: 440px;
  margin-bottom: 36px;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

/* Hero Card */
.hero-visual {
  display: flex;
  justify-content: center;
}


.hero-contact-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}
.hero-contact-item {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
  border-radius: 16px;
  padding: 12px 16px;
  min-width: 190px;
}
.hero-contact-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--rose-deep);
  margin-bottom: 3px;
}
.hero-contact-value {
  display: block;
  color: var(--charcoal);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
}

.hero-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  max-width: 360px;
  width: 100%;
  box-shadow: var(--shadow-card);
  position: relative;
}

.heartbeat-line {
  background: var(--cream-dark);
  padding: 16px 24px 12px;
  border-bottom: 1px solid var(--border-light);
}
.heartbeat-line svg { width: 100%; height: 44px; }

.hb-path {
  stroke-dasharray: 600;
  stroke-dashoffset: 600;
  animation: drawLine 2.4s ease forwards 0.5s;
}
@keyframes drawLine {
  to { stroke-dashoffset: 0; }
}

.hero-card-body {
  padding: 28px 32px 24px;
  text-align: center;
}

.hero-card-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 16px;
}
.hero-card-icon svg { width: 100%; height: 100%; }

.hero-card-brand {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 8px;
}
.hero-card-tagline {
  font-size: 13px;
  font-weight: 300;
  color: var(--warm-gray);
  margin-bottom: 18px;
  line-height: 1.5;
}

.hero-card-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  justify-content: center;
  margin-bottom: 4px;
}
.hero-card-pills span {
  background: var(--cream-dark);
  color: var(--rose-deep);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 5px 12px;
  border-radius: 20px;
  border: 1px solid var(--border);
}

.footprints-deco {
  padding: 12px 0 16px;
  display: flex;
  justify-content: center;
  opacity: 0.7;
}
.footprints-deco svg { width: 80px; height: 40px; }

/* ─── PACKAGES ─── */
.packages {
  background:
    radial-gradient(circle at top left, rgba(246, 190, 177, 0.16), transparent 26%),
    linear-gradient(180deg, #fff4ef 0%, #fff9f7 100%);
  position: relative;
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 24px;
  margin-bottom: 52px;
  align-items: stretch;
}

.pkg-card {
  grid-column: span 4;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--border);
  border-radius: 26px;
  padding: 28px 24px 24px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.22s, transform 0.22s, border-color 0.22s;
  box-shadow: 0 12px 28px rgba(43, 35, 32, 0.06);
  min-height: 100%;
}

.pkg-card::before {
  content: '';
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, var(--rose-soft), var(--rose), var(--rose-deep));
  opacity: 0.95;
}

.pkg-card:hover {
  box-shadow: 0 18px 40px rgba(43, 35, 32, 0.12);
  transform: translateY(-5px);
  border-color: rgba(208, 111, 91, 0.36);
}

.pkg-card.featured {
  background: linear-gradient(180deg, #c96f5e 0%, #b55649 100%);
  border-color: transparent;
  color: white;
  box-shadow: 0 18px 42px rgba(181, 86, 73, 0.25);
}
.pkg-card.featured::before {
  background: linear-gradient(90deg, rgba(255,255,255,0.24), rgba(255,255,255,0.65), rgba(255,255,255,0.24));
}
.pkg-card.featured .pkg-name,
.pkg-card.featured .pkg-price { color: white; }
.pkg-card.featured .price-dollar { color: rgba(255,255,255,0.72); }
.pkg-card.featured .pkg-features li { color: rgba(255,255,255,0.94); }

.pkg-card.premium {
  background: linear-gradient(180deg, rgba(255,242,239,0.9) 0%, rgba(255,255,255,0.95) 100%);
}

.pkg-card:nth-child(4),
.pkg-card:nth-child(5) {
  grid-column: span 6;
}

.pkg-ribbon {
  display: inline-flex;
  align-self: flex-start;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--rose-deep);
  margin-bottom: 16px;
  padding: 8px 11px;
  border-radius: 999px;
  background: rgba(214, 111, 91, 0.08);
  border: 1px solid rgba(214, 111, 91, 0.12);
}
.featured-ribbon {
  color: white;
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.22);
}
.premium-ribbon { color: var(--rose-deep); }

.pkg-top {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: start;
  margin-bottom: 18px;
  gap: 14px;
}

.pkg-name {
  font-family: var(--font-display);
  font-size: 31px;
  font-weight: 500;
  color: var(--charcoal);
  line-height: 1.05;
  max-width: 11ch;
  letter-spacing: -0.02em;
}

.pkg-price {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 700;
  color: var(--rose-deep);
  line-height: 1;
  white-space: nowrap;
  display: inline-flex;
  align-items: flex-start;
  justify-content: center;
  min-width: 88px;
  padding: 14px 14px 12px;
  border-radius: 18px;
  background: rgba(246, 190, 177, 0.18);
  border: 1px solid rgba(214, 111, 91, 0.16);
}

.price-dollar {
  font-size: 20px;
  font-weight: 400;
  vertical-align: top;
  margin-top: 5px;
  display: inline-block;
  color: var(--rose-mid);
}

.pkg-features {
  list-style: none;
  margin-bottom: 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.pkg-features li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 14px;
  font-weight: 600;
  color: var(--warm-gray);
  line-height: 1.45;
}

.feat-heart {
  width: 12px;
  height: 11px;
  flex-shrink: 0;
  margin-top: 4px;
}

.pkg-card .btn-card,
.pkg-card .btn-card-featured {
  margin-top: auto;
}

/* Add-ons */
.addons {
  background: var(--cream-dark);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 36px 40px;
}

.addons-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.addons-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 40px;
}

.addon-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border-light);
  gap: 12px;
}
.addon-name {
  font-size: 14px;
  color: var(--charcoal);
  font-weight: 400;
}
.addon-price {
  font-size: 14px;
  font-weight: 600;
  color: var(--rose-deep);
  white-space: nowrap;
}

/* ─── ABOUT ─── */
.about { background: var(--cream); }

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.about-visual { position: relative; }

.about-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 44px 36px;
  text-align: center;
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.about-deco-ring {
  position: absolute;
  top: -30px;
  right: -30px;
  width: 140px;
  height: 140px;
  opacity: 0.5;
  pointer-events: none;
}

.about-icon-cluster {
  width: 120px;
  height: 120px;
  margin: 0 auto 20px;
}
.about-main-svg { width: 100%; height: 100%; }

.about-card-label {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 6px;
}
.about-card-sub {
  font-size: 13px;
  color: var(--light-gray);
  letter-spacing: 0.06em;
}

.about-content p {
  font-size: 15.5px;
  font-weight: 300;
  color: var(--warm-gray);
  margin-bottom: 18px;
  line-height: 1.78;
}

.about-values {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 24px 0 28px;
}

.about-value {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  color: var(--charcoal);
}

/* ─── FAQ ─── */
.faq { background: var(--white); }

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px 60px;
}

.faq-group-title {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1.5px solid var(--blush);
  display: flex;
  align-items: center;
  gap: 8px;
}
.faq-group-title::before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  background: var(--rose);
  border-radius: 50%;
  flex-shrink: 0;
}

.faq-item { border-bottom: 1px solid var(--border-light); }

.faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  padding: 13px 32px 13px 0;
  font-family: var(--font-body);
  font-size: 14.5px;
  font-weight: 500;
  color: var(--charcoal);
  position: relative;
  transition: color 0.18s;
}
.faq-q::after {
  content: '+';
  position: absolute;
  right: 4px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 18px;
  font-weight: 300;
  color: var(--rose);
  line-height: 1;
  transition: transform 0.22s;
}
.faq-item.open .faq-q::after {
  content: '−';
  transform: translateY(-50%);
}
.faq-q:hover { color: var(--rose-deep); }

.faq-a {
  font-size: 14px;
  font-weight: 300;
  color: var(--warm-gray);
  padding: 0 32px 14px 0;
  line-height: 1.65;
  display: none;
}
.faq-item.open .faq-a { display: block; }

/* ─── PREP ─── */
.prep { background: var(--cream); }

.prep-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.prep-item {
  background: var(--cream);
  padding: 36px 30px;
  transition: background 0.2s;
}
.prep-item:hover { background: white; }

.prep-num {
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 300;
  color: var(--rose-soft);
  line-height: 1;
  margin-bottom: 14px;
}

.prep-item h4 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 10px;
}
.prep-item p {
  font-size: 14px;
  font-weight: 300;
  color: var(--warm-gray);
  line-height: 1.65;
}

/* ─── SERVICE AREA ─── */
.service-area { background: var(--white); }

.area-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.area-desc {
  font-size: 15.5px;
  font-weight: 300;
  color: var(--warm-gray);
  margin-bottom: 12px;
  line-height: 1.75;
}
.area-note {
  font-size: 14px;
  color: var(--light-gray);
  margin-bottom: 28px;
}

.area-cities {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.city-card {
  background: var(--cream-dark);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 10px 18px;
  font-size: 14px;
  font-weight: 500;
  color: var(--charcoal);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: background 0.18s, border-color 0.18s;
}
.city-card:hover {
  background: var(--blush);
  border-color: var(--rose-soft);
}
.city-card-more {
  background: var(--rose-soft);
  border-color: var(--rose-mid);
  color: var(--rose-deep);
}

/* ─── FINAL CTA ─── */
.cta-section {
  position: relative;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(140deg, var(--rose-deep) 0%, #8B3F30 100%);
}
.cta-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 70% at 85% 50%, rgba(242, 200, 188, 0.12) 0%, transparent 65%);
}

.cta-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

.cta-hearts {
  margin-bottom: 8px;
}
.cta-hearts-svg { width: 100%; max-width: 360px; height: 64px; margin: 0 auto; }

.cta-title {
  font-family: var(--font-display);
  font-size: clamp(34px, 5vw, 54px);
  font-weight: 400;
  color: white;
  margin-bottom: 20px;
  line-height: 1.15;
}
.cta-title em {
  font-style: italic;
  color: var(--rose-soft);
}

.cta-sub {
  font-size: 15.5px;
  font-weight: 300;
  color: rgba(255,255,255,0.7);
  margin-bottom: 40px;
  line-height: 1.7;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

/* ─── CONTACT ─── */
.contact { background: var(--cream); }

.contact-card {
  box-shadow: var(--shadow-card);
  max-width: 560px;
  margin: 0 auto;
}

.contact-placeholder {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  text-align: center;
  box-shadow: var(--shadow-soft);
}

.contact-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
}

.contact-placeholder h3 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 6px;
}
.contact-placeholder > p {
  font-size: 14px;
  color: var(--light-gray);
  margin-bottom: 28px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 28px;
  text-align: left;
}

.contact-row {
  display: flex;
  gap: 12px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border-light);
  align-items: baseline;
}
.contact-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--light-gray);
  min-width: 100px;
  flex-shrink: 0;
}
.contact-value {
  font-size: 14.5px;
  color: var(--charcoal);
  font-weight: 400;
}
.placeholder-text {
  color: var(--light-gray);
  font-style: italic;
  font-size: 13.5px;
}

.contact-deposit-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 500;
  color: var(--rose-deep);
  background: var(--cream-dark);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 18px;
}

/* ─── FOOTER ─── */
.site-footer {
  background: var(--charcoal);
}

.footer-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  padding: 52px 28px;
  max-width: var(--container);
  margin: 0 auto;
}

.footer-brand {
  display: flex;
  flex-direction: column;
}
.footer-logo-text {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 500;
  color: white;
  display: inline;
}

.footer-tagline {
  font-size: 13px;
  font-weight: 300;
  color: rgba(255,255,255,0.4);
  margin-top: 8px;
  line-height: 1.6;
}

.footer-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  align-items: flex-start;
}
.footer-links a {
  font-size: 13.5px;
  color: rgba(255,255,255,0.45);
  transition: color 0.18s;
}
.footer-links a:hover { color: var(--rose-soft); }

.footer-bottom {
  text-align: center;
  padding: 18px 28px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-bottom p {
  font-size: 12px;
  color: rgba(255,255,255,0.22);
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .packages-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
  .pkg-card:nth-child(1),
  .pkg-card:nth-child(2),
  .pkg-card:nth-child(3),
  .pkg-card:nth-child(4),
  .pkg-card:nth-child(5) {
    grid-column: span 1 !important;
  }
  .pkg-name {
    font-size: 28px;
    max-width: none;
  }
  .faq-grid { grid-template-columns: 1fr; }
  .prep-grid { grid-template-columns: repeat(2, 1fr); }
  .area-inner { gap: 48px; }
  .about-inner { gap: 48px; }
}

@media (max-width: 768px) {
  :root { --section-py: 68px; }

  /* Nav mobile */
  .main-nav {
    position: fixed;
    top: 70px; left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 18px 24px 24px;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 8px 28px rgba(43,35,32,0.1);
    transform: translateY(-110%);
    opacity: 0;
    transition: transform 0.26s ease, opacity 0.26s ease;
    pointer-events: none;
  }
  .main-nav.open { transform: translateY(0); opacity: 1; pointer-events: all; }
  .main-nav a {
    font-size: 16px;
    padding: 12px 0;
    width: 100%;
    border-bottom: 1px solid var(--border-light);
    color: var(--charcoal);
  }
  .main-nav a:last-child { border-bottom: none; }
  .nav-toggle { display: flex; }
  .header-cta { display: none; }

  /* Hero */
  .hero { padding: 100px 0 56px; min-height: auto; }
  .hero-inner { grid-template-columns: 1fr; gap: 44px; }
  .hero-visual { order: -1; }
  .hero-card { max-width: 320px; margin: 0 auto; }
  .hero-contact-strip { width: 100%; }
  .hero-contact-item { width: 100%; }

  /* Layout sections */
  .about-inner,
  .area-inner { grid-template-columns: 1fr; gap: 40px; }
  .packages-grid { grid-template-columns: 1fr !important; }
  .pkg-card:nth-child(n) { grid-column: span 1 !important; }
  .pkg-name { font-size: 26px; }
  .pkg-price { font-size: 32px; min-width: 82px; }
  .prep-grid { grid-template-columns: 1fr; }
  .addons-grid { grid-template-columns: 1fr; }

  /* Footer */
  .footer-inner {
    flex-direction: column;
    gap: 28px;
    padding: 40px 24px;
  }
  .footer-links { gap: 16px; }
}

@media (max-width: 480px) {
  .container { padding: 0 18px; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .cta-actions { flex-direction: column; align-items: center; }
  .cta-actions .btn { width: 100%; max-width: 300px; justify-content: center; }
  .contact-placeholder { padding: 36px 24px; }
  .contact-row { flex-direction: column; gap: 4px; }
  .addons { padding: 28px 22px; }
}

/* ─── ANIMATIONS ─── */
@media (prefers-reduced-motion: no-preference) {
  .hero-content { animation: fadeUp 0.7s ease both; }
  .hero-visual { animation: fadeUp 0.7s 0.2s ease both; }
  .pkg-card {
    animation: fadeUp 0.5s ease both;
  }
  .pkg-card:nth-child(1) { animation-delay: 0.05s; }
  .pkg-card:nth-child(2) { animation-delay: 0.10s; }
  .pkg-card:nth-child(3) { animation-delay: 0.15s; }
  .pkg-card:nth-child(4) { animation-delay: 0.20s; }
  .pkg-card:nth-child(5) { animation-delay: 0.25s; }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}
