/* ═══════════════════════════════════════════════════
   KIDDIE CARE CONCIERGE — Main Stylesheet
   Aesthetic: Soft romantic luxury · Blush / Ivory / Sage
   Fonts: Cormorant Garamond (serif display) + Jost (body)
════════════════════════════════════════════════════ */

/* ─────────────────────────────────────
   CSS VARIABLES
───────────────────────────────────── */
:root {
  /* Palette */
  --ivory:        #faf7f2;
  --ivory-deep:   #f2ece0;
  --blush-light:  #f9e8e0;
  --blush-mid:    #e8a898;
  --blush-dark:   #c97060;
  --rose:         #b55a4a;
  --sage-light:   #e4ebe0;
  --sage-mid:     #8fa882;
  --sage-dark:    #5a7a52;
  --charcoal:     #2c2420;
  --text-main:    #3d2e28;
  --text-muted:   #7a6058;
  --text-light:   #b09585;
  --white:        #ffffff;

  /* Typography */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Jost', 'Helvetica Neue', sans-serif;

  /* Spacing */
  --section-gap:  clamp(5rem, 10vw, 9rem);
  --container:    1200px;
  --gutter:       clamp(1.25rem, 4vw, 2rem);

  /* Radius */
  --radius-sm:    6px;
  --radius-md:    14px;
  --radius-lg:    28px;
  --radius-pill:  999px;

  /* Shadows */
  --shadow-soft:  0 4px 24px rgba(180, 120, 100, 0.10);
  --shadow-card:  0 8px 40px rgba(180, 120, 100, 0.14);
  --shadow-lift:  0 16px 60px rgba(180, 120, 100, 0.18);

  /* Transitions */
  --ease:         cubic-bezier(0.4, 0, 0.2, 1);
  --ease-spring:  cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--text-main);
  background: var(--ivory);
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

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

ul { list-style: none; }

/* ─────────────────────────────────────
   TYPOGRAPHY SYSTEM
───────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.15;
  color: var(--charcoal);
}

h1 { font-size: clamp(2.6rem, 6vw, 5.2rem); }
h2 { font-size: clamp(2rem, 4.5vw, 3.6rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.75rem); }

em { font-style: italic; color: var(--blush-dark); }

p { margin-bottom: 1em; }
p:last-child { margin-bottom: 0; }

.section-eyebrow {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sage-dark);
  margin-bottom: 0.75rem;
}

.section-heading {
  margin-bottom: 1.25rem;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 56ch;
  margin: 0 auto;
}

/* ─────────────────────────────────────
   LAYOUT
───────────────────────────────────── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.section {
  padding: var(--section-gap) 0;
}

.section-header {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

/* ─────────────────────────────────────
   BUTTONS
───────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.85em 2.2em;
  border-radius: var(--radius-pill);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all 0.25s var(--ease);
  white-space: nowrap;
}

.btn--primary {
  background: var(--rose);
  color: var(--white);
  border-color: var(--rose);
}
.btn--primary:hover {
  background: var(--blush-dark);
  border-color: var(--blush-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(185, 90, 74, 0.35);
}

.btn--ghost {
  background: transparent;
  color: var(--text-main);
  border-color: var(--blush-mid);
}
.btn--ghost:hover {
  background: var(--blush-light);
  border-color: var(--blush-dark);
  transform: translateY(-2px);
}

.btn--large {
  font-size: 0.9rem;
  padding: 1.05em 2.8em;
}

.btn--full { width: 100%; }

/* ─────────────────────────────────────
   HEADER / NAV
───────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(250, 247, 242, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(180, 140, 120, 0.12);
  transition: box-shadow 0.3s var(--ease);
}

.site-header.scrolled {
  box-shadow: 0 4px 24px rgba(180, 120, 100, 0.1);
}

.header-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: opacity 0.2s;
}
.logo:hover { opacity: 0.75; }

.logo-icon {
  font-size: 1rem;
  color: var(--blush-dark);
}

.logo-text {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--charcoal);
  letter-spacing: 0.01em;
}
.logo-text em {
  color: var(--blush-dark);
}

/* Nav links */
.main-nav ul {
  display: flex;
  align-items: center;
  gap: clamp(1.25rem, 2.5vw, 2.25rem);
}

.main-nav a {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.2s;
  position: relative;
}
.main-nav a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--blush-dark);
  transform: scaleX(0);
  transition: transform 0.25s var(--ease);
}
.main-nav a:hover { color: var(--charcoal); }
.main-nav a:hover::after { transform: scaleX(1); }

.nav-cta {
  background: var(--blush-light) !important;
  color: var(--rose) !important;
  padding: 0.45em 1.2em;
  border-radius: var(--radius-pill);
  border: 1px solid var(--blush-mid);
  transition: all 0.25s var(--ease) !important;
}
.nav-cta:hover {
  background: var(--rose) !important;
  color: var(--white) !important;
  border-color: var(--rose) !important;
}
.nav-cta::after { display: none !important; }

/* Hamburger */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.menu-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--charcoal);
  transition: all 0.25s var(--ease);
}

/* Mobile nav */
.mobile-nav {
  display: none;
  position: absolute;
  top: 68px;
  left: 0;
  right: 0;
  background: var(--ivory);
  border-bottom: 1px solid rgba(180, 140, 120, 0.15);
  padding: 1.5rem var(--gutter) 2rem;
  transform: translateY(-8px);
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s var(--ease);
}
.mobile-nav.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}
.mobile-nav ul { display: flex; flex-direction: column; gap: 1rem; }
.mobile-nav a {
  font-size: 1.1rem;
  font-family: var(--font-display);
  color: var(--charcoal);
}

/* ─────────────────────────────────────
   HERO
───────────────────────────────────── */
.hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: 8rem var(--gutter) 5rem;
  background: linear-gradient(160deg, var(--ivory) 0%, var(--blush-light) 55%, var(--ivory-deep) 100%);
}

/* Decorative petal blobs */
.hero-bg { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }

.hero-petal {
  position: absolute;
  border-radius: 60% 40% 70% 30% / 50% 60% 40% 50%;
  opacity: 0.18;
  animation: petaldrift 18s ease-in-out infinite alternate;
}
.hero-petal--1 { width: 520px; height: 520px; background: var(--blush-mid); top: -12%; left: -10%; animation-delay: 0s; }
.hero-petal--2 { width: 380px; height: 380px; background: var(--sage-mid); top: 30%; right: -8%; animation-delay: -4s; border-radius: 40% 60% 30% 70% / 60% 40% 70% 30%; }
.hero-petal--3 { width: 280px; height: 280px; background: var(--blush-light); bottom: 5%; left: 5%; animation-delay: -8s; border-radius: 70% 30% 50% 50% / 40% 60% 30% 70%; }
.hero-petal--4 { width: 200px; height: 200px; background: var(--rose); top: 10%; right: 20%; opacity: 0.10; animation-delay: -12s; }
.hero-petal--5 { width: 450px; height: 300px; background: var(--ivory-deep); bottom: -5%; right: 10%; opacity: 0.25; animation-delay: -6s; }

@keyframes petaldrift {
  0%   { transform: translate(0, 0) rotate(0deg) scale(1); }
  100% { transform: translate(30px, -25px) rotate(8deg) scale(1.05); }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
  animation: fadeUp 1s var(--ease) both;
}

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

.hero-eyebrow {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--sage-dark);
  margin-bottom: 1.25rem;
  animation: fadeUp 1s 0.15s var(--ease) both;
}

.hero-heading {
  font-size: clamp(3rem, 7.5vw, 6.5rem);
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
  animation: fadeUp 1s 0.25s var(--ease) both;
}
.hero-heading span {
  display: block;
  font-size: 0.65em;
  font-weight: 300;
  color: var(--text-muted);
  letter-spacing: 0;
}

.hero-sub {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: var(--text-muted);
  max-width: 50ch;
  margin: 0 auto 2.5rem;
  animation: fadeUp 1s 0.35s var(--ease) both;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 3rem;
  animation: fadeUp 1s 0.45s var(--ease) both;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 2.5rem;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-light);
  animation: fadeUp 1s 0.55s var(--ease) both;
}

/* Scroll hint */
.hero-scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-light);
  animation: fadeUp 1s 0.8s var(--ease) both;
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--blush-mid), transparent);
  animation: scrollpulse 2s ease-in-out infinite;
}
@keyframes scrollpulse {
  0%, 100% { opacity: 0.4; transform: scaleY(0.8); }
  50%       { opacity: 1;   transform: scaleY(1); }
}

/* ─────────────────────────────────────
   RIBBON
───────────────────────────────────── */
.ribbon {
  background: var(--charcoal);
  padding: 1rem 0;
  overflow: hidden;
}

.ribbon-inner {
  display: flex;
  gap: 2rem;
  align-items: center;
  animation: marquee 28s linear infinite;
  white-space: nowrap;
  width: max-content;
}

.ribbon-inner span {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 300;
  font-style: italic;
  color: var(--ivory-deep);
  letter-spacing: 0.04em;
}

.ribbon-dot {
  color: var(--blush-mid) !important;
  font-style: normal !important;
  font-size: 0.7rem !important;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ─────────────────────────────────────
   ABOUT
───────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
}

.about-visual { position: relative; }

.about-frame {
  position: relative;
  display: flex;
  justify-content: center;
}

.about-img-placeholder {
  width: 100%;
  max-width: 420px;
  aspect-ratio: 3/4;
  background: linear-gradient(145deg, var(--blush-light), var(--ivory-deep));
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(180, 140, 120, 0.2);
  overflow: hidden;
  position: relative;
}

.about-img-placeholder::before {
  content: '';
  position: absolute;
  inset: 16px;
  border: 1px dashed rgba(180, 140, 120, 0.3);
  border-radius: calc(var(--radius-lg) - 8px);
}

.img-ornament {
  width: 180px;
  color: var(--blush-mid);
}

.about-badge {
  position: absolute;
  bottom: -1.5rem;
  right: -1rem;
  background: var(--charcoal);
  color: var(--ivory);
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: var(--shadow-card);
  min-width: 100px;
}
.badge-num {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 300;
  line-height: 1;
  color: var(--blush-mid);
}
.badge-label {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-top: 0.25rem;
}

.about-copy p {
  color: var(--text-muted);
  margin-bottom: 1.2em;
}

.about-credentials {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--ivory-deep);
}

.credential {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
}
.credential-icon { font-size: 1.25rem; margin-top: 2px; }
.credential strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
  color: var(--charcoal);
}
.credential span {
  font-size: 0.85rem;
  color: var(--text-light);
}

/* ─────────────────────────────────────
   SERVICES
───────────────────────────────────── */
.services {
  background: linear-gradient(180deg, var(--ivory) 0%, var(--sage-light) 50%, var(--ivory) 100%);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.service-card {
  background: var(--white);
  border: 1px solid rgba(180, 140, 120, 0.14);
  border-radius: var(--radius-md);
  padding: 2rem 1.75rem;
  position: relative;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blush-mid), var(--rose));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease);
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lift);
}
.service-card:hover::before { transform: scaleX(1); }

.service-num {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-family: var(--font-display);
  font-size: 0.85rem;
  color: var(--ivory-deep);
  font-weight: 400;
}

.service-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

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

.service-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0;
}

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─────────────────────────────────────
   WHY US
───────────────────────────────────── */
.why-us {
  position: relative;
  overflow: hidden;
}

.why-us-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--ivory-deep) 0%, var(--blush-light) 100%);
}

.why-us-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
}

.why-list {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.why-list li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.why-marker {
  flex-shrink: 0;
  font-size: 0.7rem;
  color: var(--blush-dark);
  margin-top: 0.4rem;
}

.why-list strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 0.25rem;
}

.why-list p {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.65;
}

/* Stat stack */
.stat-stack {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.stat-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(180, 140, 120, 0.12);
  transition: transform 0.3s var(--ease);
}
.stat-card:hover { transform: translateY(-4px); }

.stat-card--large {
  grid-column: 1 / -1;
  padding: 2rem;
}

.stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 300;
  color: var(--rose);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.stat-icon {
  display: block;
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.stat-card--accent {
  background: var(--charcoal);
  border-color: transparent;
}

.stat-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--blush-light);
  line-height: 1.4;
}

/* ─────────────────────────────────────
   TESTIMONIALS
───────────────────────────────────── */
.testimonials {
  background: var(--charcoal);
}
.testimonials .section-eyebrow { color: var(--blush-mid); }
.testimonials .section-heading { color: var(--ivory); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  transition: background 0.3s var(--ease), transform 0.3s var(--ease);
}
.testimonial-card:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-4px);
}

.testimonial-stars {
  font-size: 0.85rem;
  color: var(--blush-mid);
  letter-spacing: 0.1em;
}

.testimonial-card blockquote {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-style: italic;
  font-weight: 300;
  color: var(--ivory-deep);
  line-height: 1.65;
  flex: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blush-dark), var(--rose));
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.testimonial-author strong {
  display: block;
  color: var(--ivory);
  font-size: 0.9rem;
  font-weight: 500;
}
.testimonial-author span {
  font-size: 0.75rem;
  color: var(--text-light);
}

/* ─────────────────────────────────────
   CTA BAND
───────────────────────────────────── */
.cta-band {
  position: relative;
  overflow: hidden;
  padding: var(--section-gap) 0;
  background: linear-gradient(135deg, var(--blush-dark) 0%, var(--rose) 100%);
  text-align: center;
}

.cta-band-bg { position: absolute; inset: 0; pointer-events: none; }

.cta-petal {
  position: absolute;
  border-radius: 60% 40% 70% 30% / 50% 60% 40% 50%;
  opacity: 0.12;
  background: var(--white);
}
.cta-petal--1 { width: 400px; height: 400px; top: -20%; left: -5%; }
.cta-petal--2 { width: 350px; height: 350px; bottom: -20%; right: -5%; }

.cta-band-inner {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.cta-band h2 {
  color: var(--white);
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  margin-bottom: 1rem;
}
.cta-band h2 em { color: var(--ivory-deep); }

.cta-band p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1rem;
  margin-bottom: 2.5rem;
}

.cta-band .btn--primary {
  background: var(--white);
  color: var(--rose);
  border-color: var(--white);
}
.cta-band .btn--primary:hover {
  background: var(--ivory);
  color: var(--blush-dark);
}

/* ─────────────────────────────────────
   FOOTER
───────────────────────────────────── */
.site-footer {
  background: var(--charcoal);
  color: var(--text-light);
  padding-top: clamp(3.5rem, 7vw, 6rem);
}

.footer-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter) 3rem;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
}

.footer-brand .logo-text { color: var(--ivory-deep); font-size: 1.3rem; }
.footer-brand .logo-icon { color: var(--blush-mid); }

.footer-tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--text-light);
  margin-top: 0.75rem;
  line-height: 1.5;
  max-width: 30ch;
}

.footer-links h4,
.footer-contact h4 {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--blush-mid);
  margin-bottom: 1rem;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-links a {
  font-size: 0.88rem;
  color: var(--text-light);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--ivory); }

.footer-contact p {
  font-size: 0.88rem;
  color: var(--text-light);
  margin-bottom: 0.4rem;
}

.footer-cta {
  display: inline-block;
  margin-top: 1rem;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blush-mid);
  border: 1px solid var(--blush-dark);
  padding: 0.5em 1.25em;
  border-radius: var(--radius-pill);
  transition: all 0.25s var(--ease);
}
.footer-cta:hover {
  background: var(--blush-dark);
  color: var(--white);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  max-width: var(--container);
  margin: 0 auto;
  padding: 1.5rem var(--gutter);
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 2rem;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.3);
  margin: 0;
}

.footer-credentials {
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.25) !important;
}

/* ─────────────────────────────────────
   CONTACT PAGE
───────────────────────────────────── */
.contact-hero {
  padding: 9rem var(--gutter) 3rem;
  text-align: center;
  background: linear-gradient(160deg, var(--ivory) 0%, var(--blush-light) 100%);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

/* Form */
.contact-form-wrap h2 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  margin-bottom: 0.4rem;
}

.form-note {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.form-group input,
.form-group textarea {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--charcoal);
  background: var(--white);
  border: 1.5px solid rgba(180, 140, 120, 0.22);
  border-radius: var(--radius-sm);
  padding: 0.7em 1em;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-light); }

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--blush-mid);
  box-shadow: 0 0 0 3px rgba(232, 168, 152, 0.18);
}

/* Sidebar */
.sidebar-card {
  background: var(--white);
  border: 1px solid rgba(180, 140, 120, 0.15);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  margin-bottom: 1.25rem;
}
.sidebar-card--soft {
  background: var(--blush-light);
  border-color: rgba(180, 140, 120, 0.12);
}

.sidebar-card h3 {
  font-size: 1.2rem;
  margin-bottom: 1.25rem;
}

.expect-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.expect-list li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.step-num {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--blush-light);
  color: var(--rose);
  font-size: 0.72rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.expect-list strong { display: block; font-family: var(--font-display); font-size: 1rem; }
.expect-list p { font-size: 0.85rem; color: var(--text-muted); margin-top: 0.2rem; }

.contact-details-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.contact-details-list li {
  display: flex;
  gap: 0.75rem;
  font-size: 0.88rem;
  align-items: flex-start;
  color: var(--text-muted);
}
.contact-details-list em {
  font-style: italic;
  color: var(--text-light);
}

/* ─────────────────────────────────────
   THANK YOU PAGE
───────────────────────────────────── */
.thankyou-section {
  min-height: 80vh;
  display: flex;
  align-items: center;
}

.thankyou-inner {
  text-align: center;
  max-width: 540px;
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.thankyou-icon {
  font-size: 3rem;
  color: var(--blush-dark);
  margin-bottom: 1.5rem;
  animation: spin-in 0.8s var(--ease-spring) both;
}

@keyframes spin-in {
  from { opacity: 0; transform: scale(0.5) rotate(-30deg); }
  to   { opacity: 1; transform: scale(1) rotate(0deg); }
}

.thankyou-inner h1 { margin-bottom: 1rem; }
.thankyou-inner p { color: var(--text-muted); }

.thankyou-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 2rem;
  flex-wrap: wrap;
}

/* ─────────────────────────────────────
   RESPONSIVE
───────────────────────────────────── */
@media (max-width: 900px) {
  .services-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; }
  .about-grid { grid-template-columns: 1fr; }
  .about-visual { display: none; }
  .why-us-grid { grid-template-columns: 1fr; }
  .stat-stack { grid-template-columns: 1fr 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .main-nav { display: none; }
  .menu-toggle { display: flex; }
  .mobile-nav { display: block; }

  .services-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .hero-heading { font-size: clamp(2.5rem, 11vw, 4rem); }
}
