/* ============================================
   ACN Agency — LUXURY SPA Design #048
   Colors: Soft Sage #94a3b8 | Rose Gold #e2c7b8 | White #ffffff
   Font: Cormorant (headings) | DM Sans (body)
   ============================================ */

@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=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;1,9..40,300;1,9..40,400&display=swap');

:root {
  --sage: #94a3b8;
  --sage-light: #a8b5c4;
  --sage-dark: #7a8a9e;
  --sage-muted: rgba(148, 163, 184, 0.7);
  --rose-gold: #e2c7b8;
  --rose-gold-light: #edddd3;
  --rose-gold-dark: #d4b5a4;
  --white: #ffffff;
  --cream: #faf9f7;
  --cream-dark: #f0ede8;
  --bg-primary: #ffffff;
  --bg-secondary: #faf9f7;
  --bg-accent: rgba(226, 199, 184, 0.08);
  --text-primary: #94a3b8;
  --text-secondary: rgba(148, 163, 184, 0.65);
  --text-dark: #4a5568;
  --text-light: #ffffff;
}

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'DM Sans', sans-serif;
  background-color: var(--bg-primary);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ---- Typography ---- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(3rem, 8vw, 7rem); }
h2 { font-size: clamp(2.2rem, 5vw, 4.5rem); }
h3 { font-size: clamp(1.6rem, 3vw, 2.8rem); }
h4 { font-size: clamp(1.2rem, 2vw, 1.8rem); }

p {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  line-height: 1.75;
  color: var(--text-secondary);
}

a {
  color: var(--sage);
  text-decoration: none;
  transition: color 0.3s ease;
}
a:hover { color: var(--rose-gold); }

/* ---- Navigation ---- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.5rem 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(to bottom, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0) 100%);
  transition: background 0.4s ease, box-shadow 0.4s ease;
}
.nav.scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 40px rgba(148, 163, 184, 0.1);
}

.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--sage);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}
.nav-links a {
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-secondary);
  position: relative;
  padding-bottom: 4px;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 1px;
  background: var(--rose-gold);
  transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transform: translateX(-50%);
}
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.nav-links a:hover,
.nav-links a.active { color: var(--rose-gold); }

/* ---- Floating Elements ---- */
@keyframes floatGentle {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-15px) rotate(2deg); }
}

@keyframes floatSlow {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-25px); }
}

@keyframes pulseSoft {
  0%, 100% { opacity: 0.4; transform: scale(1); }
  50% { opacity: 0.7; transform: scale(1.05); }
}

@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

.floating {
  animation: floatGentle 6s ease-in-out infinite;
}

.floating-slow {
  animation: floatSlow 8s ease-in-out infinite;
}

.floating-delay-1 { animation-delay: 0s; }
.floating-delay-2 { animation-delay: 2s; }
.floating-delay-3 { animation-delay: 4s; }

/* ---- Reveal Animations ---- */
.reveal-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal-up.revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal-scale.revealed {
  opacity: 1;
  transform: scale(1);
}

.reveal-fade {
  opacity: 0;
  transition: opacity 1s ease;
}
.reveal-fade.revealed {
  opacity: 1;
}

/* Staggered children */
.stagger-children > * {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.stagger-children.revealed > *:nth-child(1) { transition-delay: 0.1s; opacity: 1; transform: translateY(0); }
.stagger-children.revealed > *:nth-child(2) { transition-delay: 0.2s; opacity: 1; transform: translateY(0); }
.stagger-children.revealed > *:nth-child(3) { transition-delay: 0.3s; opacity: 1; transform: translateY(0); }
.stagger-children.revealed > *:nth-child(4) { transition-delay: 0.4s; opacity: 1; transform: translateY(0); }
.stagger-children.revealed > *:nth-child(5) { transition-delay: 0.5s; opacity: 1; transform: translateY(0); }
.stagger-children.revealed > *:nth-child(6) { transition-delay: 0.6s; opacity: 1; transform: translateY(0); }

/* ---- Sections ---- */
.section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8rem 4rem;
  position: relative;
}

.section--white { background-color: var(--white); }
.section--cream { background-color: var(--cream); }
.section--sage-light { background-color: rgba(148, 163, 184, 0.05); }
.section--rose { background-color: rgba(226, 199, 184, 0.08); }

.container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}

.container--narrow {
  max-width: 800px;
}

.container--wide {
  max-width: 1400px;
}

/* ---- Rose Gold Divider ---- */
.rose-line {
  width: 60px;
  height: 1px;
  background: var(--rose-gold);
  margin: 1.5rem 0;
}

.rose-line--center {
  margin: 1.5rem auto;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2.5rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--sage);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--sage-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(148, 163, 184, 0.3);
}

.btn-outline {
  background: transparent;
  color: var(--sage);
  border: 1px solid var(--sage);
}
.btn-outline:hover {
  background: var(--sage);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-rose {
  background: var(--rose-gold);
  color: var(--text-dark);
}
.btn-rose:hover {
  background: var(--rose-gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(226, 199, 184, 0.3);
}

.btn-ghost {
  background: transparent;
  color: var(--sage);
  border: 1px solid rgba(148, 163, 184, 0.3);
}
.btn-ghost:hover {
  border-color: var(--sage);
  background: var(--sage);
  color: var(--white);
  transform: translateY(-2px);
}

/* ---- Hero Section ---- */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  background: var(--white);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse at 30% 40%, rgba(226, 199, 184, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 60%, rgba(148, 163, 184, 0.1) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 80%, rgba(226, 199, 184, 0.08) 0%, transparent 40%);
}

.hero-decorative {
  position: absolute;
  border-radius: 50%;
  opacity: 0.5;
}

.hero-decorative--1 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(226, 199, 184, 0.2) 0%, transparent 70%);
  top: 10%;
  left: -5%;
  animation: floatGentle 10s ease-in-out infinite;
}

.hero-decorative--2 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(148, 163, 184, 0.15) 0%, transparent 70%);
  bottom: 20%;
  right: 5%;
  animation: floatGentle 12s ease-in-out infinite;
  animation-delay: 3s;
}

.hero-decorative--3 {
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(226, 199, 184, 0.25) 0%, transparent 70%);
  top: 40%;
  right: 15%;
  animation: pulseSoft 8s ease-in-out infinite;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 0 2rem;
}

.hero-eyebrow {
  font-size: 0.8rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--rose-gold);
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.hero h1 {
  color: var(--sage);
  margin-bottom: 1.5rem;
}

.hero-sub {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto 3rem;
  line-height: 1.8;
}

.hero-cta {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-secondary);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  animation: floatGentle 2s ease-in-out infinite;
}

.scroll-indicator-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--rose-gold), transparent);
}

/* ---- Feature Cards ---- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 4rem;
}

.feature-card {
  background: var(--white);
  border: 1px solid rgba(148, 163, 184, 0.12);
  padding: 3rem 2.5rem;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(to right, var(--rose-gold-light), var(--rose-gold), var(--rose-gold-light));
  opacity: 0;
  transition: opacity 0.4s ease;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(148, 163, 184, 0.15);
}

.feature-card:hover::before { opacity: 1; }

.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  display: block;
}

.feature-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  color: var(--sage);
  margin-bottom: 1rem;
}

.feature-card p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ---- Split Section ---- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.split-text h2 {
  color: var(--sage);
  margin-bottom: 1.5rem;
}

.split-text p {
  margin-bottom: 1.5rem;
}

.split-visual {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.visual-frame {
  width: 100%;
  height: 500px;
  border: 1px solid rgba(226, 199, 184, 0.3);
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(226, 199, 184, 0.1) 0%, rgba(148, 163, 184, 0.1) 100%);
}

.visual-frame::before {
  content: '';
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(226, 199, 184, 0.2);
}

/* ---- Service Cards ---- */
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 4rem;
}

.service-card {
  background: var(--white);
  border-radius: 2px;
  overflow: hidden;
  transition: all 0.4s ease;
  box-shadow: 0 4px 20px rgba(148, 163, 184, 0.08);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(148, 163, 184, 0.15);
}

.service-image {
  height: 220px;
  background: linear-gradient(135deg, var(--rose-gold-light) 0%, var(--sage-light) 100%);
  position: relative;
  overflow: hidden;
}

.service-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(148, 163, 184, 0.1);
  transition: opacity 0.4s ease;
}

.service-card:hover .service-image::after {
  opacity: 0;
}

.service-content {
  padding: 2rem;
}

.service-content h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  color: var(--sage);
  margin-bottom: 0.75rem;
}

.service-content p {
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.service-price {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid rgba(148, 163, 184, 0.1);
}

.price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  color: var(--rose-gold);
  font-weight: 600;
}

.price-duration {
  font-size: 0.8rem;
  color: var(--text-secondary);
}

/* ---- Gallery Grid ---- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 4rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--rose-gold-light) 0%, var(--sage-light) 100%);
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gallery-item:hover img { transform: scale(1.08); }

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(148, 163, 184, 0.85) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 2rem;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.gallery-item:hover .gallery-overlay { opacity: 1; }

.gallery-overlay h4 {
  color: var(--white);
  font-size: 1.2rem;
}

.gallery-overlay p {
  font-size: 0.85rem;
  color: var(--rose-gold-light);
  margin-top: 0.25rem;
}

/* ---- Pricing Tables ---- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 4rem;
}

.pricing-card {
  background: var(--white);
  border: 1px solid rgba(148, 163, 184, 0.15);
  padding: 3rem 2.5rem;
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
}

.pricing-card.featured {
  border-color: var(--rose-gold);
  box-shadow: 0 20px 60px rgba(226, 199, 184, 0.2);
  transform: scale(1.02);
}

.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(148, 163, 184, 0.15);
}

.pricing-card.featured:hover {
  transform: scale(1.02) translateY(-6px);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--rose-gold);
  color: var(--text-dark);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.5rem 1.5rem;
  font-weight: 500;
}

.pricing-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  color: var(--sage);
  margin-bottom: 0.5rem;
}

.pricing-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem;
  color: var(--rose-gold);
  font-weight: 600;
  line-height: 1;
  margin: 1.5rem 0;
}

.pricing-price span {
  font-size: 1rem;
  color: var(--text-secondary);
  font-weight: 400;
}

.pricing-features {
  list-style: none;
  margin: 2rem 0;
  text-align: left;
}

.pricing-features li {
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(148, 163, 184, 0.08);
  color: var(--text-secondary);
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.pricing-features li::before {
  content: '✓';
  color: var(--rose-gold);
  font-weight: 600;
}

.pricing-card .btn {
  width: 100%;
  justify-content: center;
  margin-top: 1rem;
}

/* ---- Contact Form ---- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 6rem;
  margin-top: 4rem;
}

.contact-info h3 {
  font-family: 'Cormorant Garamond', serif;
  color: var(--sage);
  margin-bottom: 1.5rem;
}

.contact-info p {
  margin-bottom: 2rem;
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.contact-detail strong {
  color: var(--rose-gold);
  font-weight: 500;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 0.6rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 1rem 1.25rem;
  background: rgba(148, 163, 184, 0.04);
  border: 1px solid rgba(148, 163, 184, 0.2);
  color: var(--text-dark);
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  transition: border-color 0.3s ease, background 0.3s ease;
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--rose-gold);
  background: rgba(226, 199, 184, 0.05);
}

.form-group textarea { min-height: 150px; resize: vertical; }

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

/* ---- Footer ---- */
.footer {
  background: var(--sage);
  padding: 5rem 4rem 2rem;
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

.footer-brand .nav-logo {
  margin-bottom: 1.5rem;
  display: inline-block;
  color: var(--white);
}

.footer-brand p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  max-width: 300px;
}

.footer-col h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 0.75rem;
}

.footer-col ul li a {
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer-col ul li a:hover { color: var(--rose-gold); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
}

/* ---- Stats Bar ---- */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  padding: 4rem;
  background: var(--sage);
  color: var(--white);
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem;
  color: var(--rose-gold);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
}

/* ---- Testimonials ---- */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 4rem;
}

.testimonial-card {
  background: var(--white);
  padding: 3rem;
  border: 1px solid rgba(148, 163, 184, 0.1);
  transition: all 0.4s ease;
}

.testimonial-card:hover {
  box-shadow: 0 20px 60px rgba(148, 163, 184, 0.12);
}

.testimonial-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-style: italic;
  color: var(--sage);
  line-height: 1.6;
  margin-bottom: 2rem;
}

.testimonial-quote::before {
  content: '"';
  font-size: 3rem;
  color: var(--rose-gold);
  line-height: 0;
  display: block;
  margin-bottom: 0.5rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--rose-gold-light), var(--sage-light));
}

.testimonial-name {
  font-weight: 500;
  color: var(--sage);
}

.testimonial-title {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

/* ---- Section Header ---- */
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem;
}

.section-header h2 {
  color: var(--sage);
  margin-bottom: 1rem;
}

.section-header p {
  color: var(--text-secondary);
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .nav { padding: 1.25rem 2rem; }
  .nav-links { gap: 1.5rem; }
  .section { padding: 6rem 2rem; }
  .split { grid-template-columns: 1fr; gap: 3rem; }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 3rem; }
  .stats-bar { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .gallery-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .stats-bar { grid-template-columns: repeat(2, 1fr); padding: 3rem 1.5rem; }
  h1 { font-size: clamp(2.5rem, 10vw, 4rem); }
  .pricing-card.featured { transform: scale(1); }
  .testimonial-grid { grid-template-columns: 1fr; }
}
