/* ============================================================
   MATERNITY PHOTOSHOOT .CO.IN — MASTER STYLESHEET
   Design: Luxury Editorial — warm, soft, premium
   Palette: Dusty Rose, Warm Cream, Sage, Gold
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500&family=Outfit:wght@300;400;500;600;700&family=JetBrains+Mono:wght@400&display=swap');

/* --- CSS VARIABLES --- */
:root {
  /* Core palette */
  --cream: #FBF7F2;
  --cream-dark: #F3EDE5;
  --blush: #D4A59A;
  --blush-light: #F0DDD8;
  --blush-deep: #B87E73;
  --rose: #C4847A;
  --sage: #8BA888;
  --sage-light: #E4EDE2;
  --sage-deep: #6B8B68;
  --gold: #C5A55A;
  --gold-light: #F5EDDA;

  /* Neutrals */
  --text-primary: #2C2420;
  --text-secondary: #6B5E56;
  --text-muted: #9B8E85;
  --white: #FFFFFF;
  --border: #E8DFD6;
  --border-light: #F0EAE3;
  --shadow-soft: 0 2px 20px rgba(44, 36, 32, 0.06);
  --shadow-medium: 0 4px 30px rgba(44, 36, 32, 0.10);
  --shadow-hover: 0 8px 40px rgba(44, 36, 32, 0.14);

  /* Typography */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Outfit', system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  /* Spacing */
  --section-gap: 100px;
  --container-width: 1200px;
  --container-narrow: 800px;
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 20px;
}

/* --- RESET & BASE --- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--text-primary);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul, ol { list-style: none; }

/* --- CONTAINER --- */
.container { max-width: var(--container-width); margin: 0 auto; padding: 0 24px; }
.container--narrow { max-width: var(--container-narrow); margin: 0 auto; padding: 0 24px; }

/* --- TYPOGRAPHY --- */
h1, h2, h3, h4, h5 { font-family: var(--font-display); font-weight: 500; line-height: 1.2; }
h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(2rem, 4vw, 3rem); letter-spacing: -0.01em; }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: 1.3rem; }
p { font-size: 1rem; color: var(--text-secondary); margin-bottom: 1rem; }
.text-muted { color: var(--text-muted); }
.text-center { text-align: center; }

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--blush-deep);
  margin-bottom: 12px;
  display: block;
}

.section-intro {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 300;
  color: var(--text-secondary);
  max-width: 600px;
  line-height: 1.6;
}
.section-intro.centered { margin: 0 auto; text-align: center; }

/* --- BUTTONS --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 36px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  border-radius: 50px;
  transition: all 0.3s ease;
  white-space: nowrap;
}
.btn--primary {
  background: var(--text-primary);
  color: var(--white);
}
.btn--primary:hover {
  background: var(--blush-deep);
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}
.btn--secondary {
  background: transparent;
  color: var(--text-primary);
  border: 1.5px solid var(--text-primary);
}
.btn--secondary:hover {
  background: var(--text-primary);
  color: var(--white);
  transform: translateY(-2px);
}
.btn--blush {
  background: var(--blush);
  color: var(--white);
}
.btn--blush:hover {
  background: var(--blush-deep);
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}
.btn--sm { padding: 10px 24px; font-size: 0.85rem; }
.btn--lg { padding: 20px 48px; font-size: 1rem; }
.btn-group { display: flex; gap: 12px; flex-wrap: wrap; }

/* --- NAVIGATION --- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(251, 247, 242, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-light);
  transition: all 0.3s ease;
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}
.nav__logo {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}
.nav__logo span { color: var(--blush-deep); }
.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav__link {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color 0.2s;
  position: relative;
}
.nav__link:hover { color: var(--text-primary); }
.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--blush);
  transition: width 0.3s;
}
.nav__link:hover::after { width: 100%; }
.nav__cta {
  background: var(--text-primary);
  color: var(--white);
  padding: 10px 24px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  transition: all 0.3s;
}
.nav__cta:hover { background: var(--blush-deep); transform: translateY(-1px); }

/* Mobile nav */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}
.nav__hamburger span {
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  transition: all 0.3s;
}

/* --- HERO --- */
.hero {
  min-height: 92vh;
  display: flex;
  align-items: center;
  position: relative;
  padding-top: 72px;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--cream) 0%, var(--blush-light) 50%, var(--cream-dark) 100%);
  z-index: 0;
}
.hero__bg::after {
  content: '';
  position: absolute;
  top: 20%;
  right: -10%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,165,154,0.15) 0%, transparent 70%);
}
.hero__content {
  position: relative;
  z-index: 1;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 60px 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero__text { max-width: 560px; }
.hero__title {
  font-size: clamp(2.6rem, 5.5vw, 4.2rem);
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 24px;
  color: var(--text-primary);
}
.hero__title em {
  font-style: italic;
  color: var(--blush-deep);
}
.hero__subtitle {
  font-size: 1.15rem;
  color: var(--text-secondary);
  font-weight: 300;
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 480px;
}

/* City Search */
.hero__search {
  display: flex;
  align-items: center;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 60px;
  padding: 6px 6px 6px 28px;
  box-shadow: var(--shadow-soft);
  max-width: 480px;
  transition: box-shadow 0.3s;
}
.hero__search:focus-within {
  box-shadow: var(--shadow-medium);
  border-color: var(--blush);
}
.hero__search input {
  flex: 1;
  border: none;
  outline: none;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text-primary);
  background: transparent;
}
.hero__search input::placeholder { color: var(--text-muted); }
.hero__search button {
  background: var(--text-primary);
  color: var(--white);
  border: none;
  border-radius: 50px;
  padding: 14px 28px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s;
}
.hero__search button:hover { background: var(--blush-deep); }

.hero__trust {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 28px;
  font-size: 0.85rem;
  color: var(--text-muted);
}
.hero__trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Hero image placeholder */
.hero__visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero__image-frame {
  width: 100%;
  max-width: 480px;
  aspect-ratio: 3/4;
  border-radius: var(--radius-lg);
  background: linear-gradient(160deg, var(--blush-light), var(--sage-light));
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-medium);
}
.hero__image-frame::after {
  content: 'Your hero image here — a stunning maternity photoshoot';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-style: italic;
  color: var(--text-muted);
}
.hero__float-card {
  position: absolute;
  bottom: -20px;
  left: -30px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 20px 24px;
  box-shadow: var(--shadow-medium);
  display: flex;
  align-items: center;
  gap: 14px;
}
.hero__float-card .stars { color: var(--gold); font-size: 1rem; letter-spacing: 2px; }
.hero__float-card .rating-text { font-size: 0.85rem; font-weight: 600; }
.hero__float-card .rating-sub { font-size: 0.75rem; color: var(--text-muted); }

/* --- SECTIONS --- */
.section { padding: var(--section-gap) 0; }
.section--cream { background: var(--cream); }
.section--white { background: var(--white); }
.section--blush { background: var(--blush-light); }
.section--sage { background: var(--sage-light); }
.section__header {
  text-align: center;
  margin-bottom: 56px;
}
.section__header h2 { margin-bottom: 16px; }

/* --- HOW IT WORKS --- */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 48px;
}
.step {
  text-align: center;
  padding: 32px 20px;
  position: relative;
}
.step__number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 300;
  color: var(--blush-light);
  margin-bottom: 16px;
  line-height: 1;
}
.step__icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--blush-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 1.4rem;
}
.step h4 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin-bottom: 8px;
}
.step p { font-size: 0.9rem; color: var(--text-muted); }

/* --- PACKAGE CARDS --- */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.package-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}
.package-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}
.package-card--featured {
  border: 2px solid var(--blush);
  background: linear-gradient(180deg, var(--white) 0%, #FFF9F7 100%);
}
.package-card--featured::before {
  content: 'MOST POPULAR';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: var(--blush);
  color: var(--white);
  text-align: center;
  padding: 8px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2px;
}
.package-card--featured { padding-top: 56px; }
.package-card__name {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 500;
  margin-bottom: 4px;
}
.package-card__tag {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}
.package-card__price {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 4px;
}
.package-card__price span {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--text-muted);
}
.package-card__divider {
  height: 1px;
  background: var(--border);
  margin: 24px 0;
}
.package-card__features {
  margin-bottom: 28px;
}
.package-card__feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 0;
  font-size: 0.92rem;
  color: var(--text-secondary);
}
.package-card__feature::before {
  content: '✓';
  color: var(--sage);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}
.package-card .btn { width: 100%; }

/* --- CITY CARDS --- */
.city-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.city-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.3s;
  cursor: pointer;
}
.city-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-medium);
}
.city-card__image {
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--blush-light), var(--sage-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-style: italic;
  color: var(--text-muted);
  font-size: 0.9rem;
}
.city-card__body { padding: 20px; }
.city-card__name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 4px;
}
.city-card__meta {
  font-size: 0.82rem;
  color: var(--text-muted);
}
.city-card__price {
  margin-top: 8px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--blush-deep);
}

/* --- VENDOR CARDS --- */
.vendor-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.vendor-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.3s;
}
.vendor-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-medium);
}
.vendor-card__gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}
.vendor-card__img {
  aspect-ratio: 1;
  background: linear-gradient(135deg, var(--blush-light), var(--cream-dark));
}
.vendor-card__img:first-child {
  grid-column: 1 / -1;
  aspect-ratio: 16/9;
}
.vendor-card__body { padding: 20px; }
.vendor-card__name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 2px;
}
.vendor-card__specialty {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.vendor-card__rating {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  margin-bottom: 12px;
}
.vendor-card__rating .stars { color: var(--gold); }
.vendor-card__price {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--blush-deep);
}
.vendor-card__tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-top: 12px;
}
.vendor-tag {
  font-size: 0.72rem;
  font-weight: 500;
  padding: 4px 10px;
  border-radius: 20px;
  background: var(--cream);
  color: var(--text-muted);
}

/* --- GALLERY --- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 6px;
}
.gallery-item {
  aspect-ratio: 1;
  background: linear-gradient(135deg, var(--blush-light), var(--sage-light));
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s;
}
.gallery-item:hover { transform: scale(1.03); }
.gallery-item--wide { grid-column: span 2; aspect-ratio: 2/1; }
.gallery-item--tall { grid-row: span 2; aspect-ratio: 1/2; }

/* --- TESTIMONIALS --- */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.testimonial {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
}
.testimonial__stars {
  color: var(--gold);
  font-size: 0.9rem;
  letter-spacing: 3px;
  margin-bottom: 16px;
}
.testimonial__text {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 400;
  font-style: italic;
  line-height: 1.6;
  color: var(--text-primary);
  margin-bottom: 20px;
}
.testimonial__author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--blush-light);
}
.testimonial__name { font-weight: 600; font-size: 0.9rem; }
.testimonial__meta { font-size: 0.8rem; color: var(--text-muted); }

/* --- CTA BANNER --- */
.cta-banner {
  background: var(--text-primary);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 64px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(196, 132, 122, 0.15);
}
.cta-banner h2 { color: var(--white); margin-bottom: 16px; }
.cta-banner p { color: rgba(255,255,255,0.7); max-width: 500px; margin: 0 auto 32px; }
.cta-banner .btn--blush { background: var(--blush); }
.cta-banner .btn--blush:hover { background: var(--rose); }

/* --- OUTFIT / RENTAL --- */
.outfit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.outfit-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--border);
  transition: all 0.3s;
}
.outfit-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-medium);
}
.outfit-card__image {
  aspect-ratio: 3/4;
  background: linear-gradient(160deg, var(--blush-light), var(--cream-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-style: italic;
  color: var(--text-muted);
  font-size: 0.85rem;
  text-align: center;
  padding: 20px;
}
.outfit-card__body { padding: 16px; }
.outfit-card__name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 4px;
}
.outfit-card__price { font-size: 0.9rem; font-weight: 600; color: var(--blush-deep); }
.outfit-card__rental { font-size: 0.78rem; color: var(--text-muted); }

/* --- BLOG --- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.blog-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.3s;
}
.blog-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-medium); }
.blog-card__image {
  aspect-ratio: 16/10;
  background: linear-gradient(135deg, var(--blush-light), var(--sage-light));
}
.blog-card__body { padding: 24px; }
.blog-card__tag {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--blush-deep);
  margin-bottom: 8px;
}
.blog-card__title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 1.3;
  margin-bottom: 8px;
}
.blog-card__excerpt {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Blog article */
.article { padding-top: 120px; }
.article__header {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 48px;
}
.article__category {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--blush-deep);
  margin-bottom: 12px;
}
.article__title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 16px;
}
.article__meta {
  font-size: 0.88rem;
  color: var(--text-muted);
}
.article__hero-image {
  max-width: 900px;
  margin: 0 auto 48px;
  aspect-ratio: 16/9;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--blush-light), var(--sage-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-style: italic;
  color: var(--text-muted);
  font-size: 1.1rem;
}
.article__body {
  max-width: 720px;
  margin: 0 auto;
}
.article__body h2 {
  font-size: 1.8rem;
  margin: 48px 0 16px;
}
.article__body h3 {
  font-size: 1.35rem;
  margin: 32px 0 12px;
}
.article__body p {
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 1.2rem;
}
.article__body ul, .article__body ol {
  margin: 16px 0 24px 24px;
}
.article__body li {
  list-style: disc;
  font-size: 1.02rem;
  color: var(--text-secondary);
  margin-bottom: 8px;
  line-height: 1.7;
}
.article__body ol li { list-style: decimal; }

/* Article CTA inline */
.article-cta {
  background: linear-gradient(135deg, var(--blush-light), #FFF8F4);
  border: 1px solid var(--blush);
  border-radius: var(--radius);
  padding: 32px;
  margin: 36px 0;
  text-align: center;
}
.article-cta h4 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  margin-bottom: 8px;
}
.article-cta p { font-size: 0.92rem; margin-bottom: 16px; }

/* --- FOOTER --- */
.footer {
  background: var(--text-primary);
  color: rgba(255,255,255,0.7);
  padding: 64px 0 32px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer__brand {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 12px;
}
.footer__brand span { color: var(--blush); }
.footer__desc { font-size: 0.88rem; line-height: 1.6; max-width: 320px; }
.footer h5 {
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.footer__link {
  display: block;
  font-size: 0.88rem;
  padding: 4px 0;
  transition: color 0.2s;
}
.footer__link:hover { color: var(--blush); }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
}

/* --- ANIMATIONS --- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.animate { opacity: 0; animation: fadeUp 0.7s ease forwards; }
.animate--d1 { animation-delay: 0.1s; }
.animate--d2 { animation-delay: 0.2s; }
.animate--d3 { animation-delay: 0.3s; }
.animate--d4 { animation-delay: 0.4s; }
.animate--d5 { animation-delay: 0.5s; }

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
  .hero__content { grid-template-columns: 1fr; gap: 40px; }
  .hero__visual { display: none; }
  .packages-grid { grid-template-columns: 1fr 1fr; }
  .city-grid { grid-template-columns: repeat(3, 1fr); }
  .vendor-grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: repeat(2, 1fr); }
  .outfit-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  :root { --section-gap: 64px; }
  .nav__links { display: none; }
  .nav__hamburger { display: flex; }
  .hero { min-height: 80vh; }
  .hero__title { font-size: 2.4rem; }
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .packages-grid { grid-template-columns: 1fr; max-width: 420px; margin-left: auto; margin-right: auto; }
  .city-grid { grid-template-columns: repeat(2, 1fr); }
  .vendor-grid { grid-template-columns: 1fr; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; gap: 8px; }
  .cta-banner { padding: 40px 24px; }
  .outfit-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .steps-grid { grid-template-columns: 1fr; }
  .city-grid { grid-template-columns: 1fr; }
}
