/* === Reset & Base === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --primary: #6D785A;
  --primary-light: #8a9572;
  --primary-dark: #515c42;
  --accent: #DDC19F;
  --accent-light: #ebd7c1;
  --accent-dark: #c4a57e;
  --white: #FAFAF8;
  --off-white: #F5F3EF;
  --text: #2C2C2C;
  --text-light: #5A5A5A;
  --border: #E0DCD5;
  --shadow: rgba(44, 44, 44, 0.08);
  --radius: 8px;
  --max-width: 1200px;
  --transition: 0.3s ease;
}

html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--primary-dark); }

h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 600;
  line-height: 1.25;
  color: var(--text);
}
h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }

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

/* === Header / Nav === */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(250,250,248,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition);
}
.header.scrolled { box-shadow: 0 2px 20px var(--shadow); }

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}
.nav-logo img { height: 48px; width: auto; }
.nav-links { display: flex; gap: 32px; list-style: none; align-items: center; }
.nav-links a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-light);
  letter-spacing: 0.02em;
  position: relative;
  padding: 4px 0;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--primary);
  transition: width var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--primary); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links .btn { color: var(--white) !important; padding: 10px 24px; }
.nav-links .btn::after { display: none; }
.nav-links .btn:hover { color: var(--white) !important; }

/* Mobile nav */
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--text);
  margin: 6px 0;
  transition: var(--transition);
}
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 6px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -6px); }

/* === Buttons === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  transition: all var(--transition);
  border: none;
  cursor: pointer;
}
.btn-primary {
  background: var(--primary);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--primary-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(109,120,90,0.25);
}
.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}
.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-accent {
  background: var(--accent);
  color: var(--text);
}
.btn-accent:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(221,193,159,0.35);
}

/* === Hero === */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
}

/* Hero Slider */
.hero-slider {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.5s ease, transform 8s ease;
  transform: scale(1.05);
}
.hero-slide.active {
  opacity: 1;
  transform: scale(1);
}
.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-slider-nav {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 12px;
}
.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.7);
  background: transparent;
  cursor: pointer;
  transition: all var(--transition);
  padding: 0;
}
.slider-dot:hover {
  background: rgba(255,255,255,0.5);
}
.slider-dot.active {
  background: var(--accent);
  border-color: var(--accent);
  transform: scale(1.2);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(44,44,44,0.65) 0%, rgba(109,120,90,0.4) 100%);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  color: var(--white);
  padding: 120px 0 80px;
}
.hero-content h1 { color: var(--white); margin-bottom: 20px; }
.hero-content p {
  font-size: 1.15rem;
  line-height: 1.8;
  opacity: 0.92;
  margin-bottom: 36px;
}
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }

/* === Sections === */
.section { padding: 100px 0; }
.section-alt { background: var(--off-white); }
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}
.section-header p {
  margin-top: 16px;
  color: var(--text-light);
  font-size: 1.05rem;
}
.section-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 12px;
}

/* === Services Grid === */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 32px;
}
.service-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all var(--transition);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px var(--shadow);
  border-color: var(--primary-light);
}
.service-card-img {
  height: 240px;
  overflow: hidden;
}
.service-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.service-card:hover .service-card-img img { transform: scale(1.05); }
.service-card-body { padding: 28px; }
.service-card-body h3 { margin-bottom: 12px; }
.service-card-body p {
  color: var(--text-light);
  font-size: 0.95rem;
  margin-bottom: 20px;
}
.service-card-link {
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--primary);
}
.service-card-link:hover { gap: 10px; }

/* === About / Split Section === */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.split-img {
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.split-img img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.split-text h2 { margin-bottom: 20px; }
.split-text p {
  color: var(--text-light);
  margin-bottom: 16px;
  font-size: 1.02rem;
}

/* === Features / Benefits List === */
.benefits {
  list-style: none;
  display: grid;
  gap: 16px;
  margin: 24px 0;
}
.benefits li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 1rem;
}
.benefits li::before {
  content: '\2713';
  flex-shrink: 0;
  width: 28px; height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  font-size: 0.8rem;
  font-weight: 700;
  margin-top: 2px;
}

/* === CTA Section === */
.cta-section {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  color: var(--white);
  text-align: center;
  padding: 80px 0;
}
.cta-section h2 { color: var(--white); margin-bottom: 16px; }
.cta-section p { opacity: 0.9; margin-bottom: 32px; max-width: 560px; margin-left: auto; margin-right: auto; }

/* === Contact Form === */
.contact-form {
  background: var(--white);
  border-radius: 12px;
  padding: 40px;
  max-width: 600px;
  margin: 0 auto;
  box-shadow: 0 8px 32px var(--shadow);
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 6px;
  color: var(--text);
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 1rem;
  font-family: inherit;
  color: var(--text);
  background: var(--off-white);
  transition: border-color var(--transition);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(109,120,90,0.12);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* === Service Detail Page === */
.page-hero {
  position: relative;
  height: 50vh;
  min-height: 400px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.page-hero-tall {
  height: 65vh;
  min-height: 500px;
}
.page-hero .hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.page-hero .hero-overlay {
  background: linear-gradient(to top, rgba(44,44,44,0.75) 0%, rgba(44,44,44,0.1) 100%);
}
.page-hero-content {
  position: relative;
  z-index: 2;
  padding-bottom: 48px;
  color: var(--white);
}
.page-hero-content h1 { color: var(--white); margin-bottom: 12px; }
.page-hero-content p { font-size: 1.1rem; opacity: 0.9; max-width: 600px; }

.service-content { padding: 80px 0; }
.service-content .content-block { max-width: 800px; margin: 0 auto 60px; }
.service-content .content-block h2 { margin-bottom: 16px; }
.service-content .content-block p {
  color: var(--text-light);
  font-size: 1.02rem;
  margin-bottom: 14px;
}

.image-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin: 40px 0;
}
.image-gallery img {
  border-radius: 12px;
  width: 100%;
  aspect-ratio: 3/2;
  object-fit: cover;
}

/* === Footer === */
.footer {
  background: var(--text);
  color: rgba(255,255,255,0.7);
  padding: 60px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-brand img { height: 40px; margin-bottom: 16px; filter: invert(1) brightness(1.1); }
.footer-brand p { font-size: 0.9rem; line-height: 1.6; max-width: 300px; }
.footer h4 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 16px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: rgba(255,255,255,0.6); font-size: 0.9rem; }
.footer-links a:hover { color: var(--accent); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  text-align: center;
  font-size: 0.85rem;
}
.footer-bottom a { color: rgba(255,255,255,0.5); }

/* =============================================
   VITAL AESTHETICS PAGE STYLES
   ============================================= */

/* VA Introduction */
.va-intro {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}
.va-intro-text h2 { margin-bottom: 24px; }
.va-intro-text p {
  color: var(--text-light);
  font-size: 1.05rem;
  margin-bottom: 16px;
  line-height: 1.8;
}
.va-intro-text p strong {
  color: var(--primary);
  font-weight: 600;
}
.va-intro-img {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(44,44,44,0.12);
  position: relative;
}
.va-intro-img::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 16px;
  border: 1px solid rgba(109,120,90,0.15);
}
.va-intro-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4/3;
}

/* VA Treatment Accordion */
.va-treatments {
  max-width: 960px;
  margin: 0 auto;
}
.va-treatment-item {
  background: var(--white);
  border-radius: 16px;
  margin-bottom: 16px;
  border: 1px solid var(--border);
  overflow: hidden;
  transition: all var(--transition);
}
.va-treatment-item:hover {
  border-color: var(--primary-light);
  box-shadow: 0 4px 20px var(--shadow);
}
.va-treatment-item.active {
  border-color: var(--primary);
  box-shadow: 0 8px 32px var(--shadow);
}
.va-treatment-header {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px 28px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  transition: background var(--transition);
}
.va-treatment-header:hover {
  background: rgba(109,120,90,0.04);
}
.va-treatment-number {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--accent);
  flex-shrink: 0;
  width: 48px;
}
.va-treatment-title {
  flex: 1;
}
.va-treatment-title h3 {
  margin-bottom: 4px;
  font-size: 1.25rem;
  transition: color var(--transition);
}
.va-treatment-item.active .va-treatment-title h3 {
  color: var(--primary);
}
.va-treatment-title p {
  font-size: 0.9rem;
  color: var(--text-light);
  margin: 0;
}
.va-treatment-toggle {
  width: 28px;
  height: 28px;
  position: relative;
  flex-shrink: 0;
}
.va-treatment-toggle span {
  position: absolute;
  background: var(--primary);
  border-radius: 2px;
  transition: all var(--transition);
}
.va-treatment-toggle span:first-child {
  width: 16px; height: 2px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}
.va-treatment-toggle span:last-child {
  width: 2px; height: 16px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}
.va-treatment-item.active .va-treatment-toggle span:last-child {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}

.va-treatment-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease;
}
.va-treatment-item.active .va-treatment-content {
  max-height: 600px;
}
.va-treatment-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 32px;
  padding: 0 28px 28px;
  align-items: start;
}
.va-treatment-text p {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 16px;
}
.va-treatment-img {
  border-radius: 12px;
  overflow: hidden;
}
.va-treatment-img img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.va-feature-list {
  list-style: none;
  display: grid;
  gap: 10px;
  margin-top: 16px;
}
.va-feature-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text);
}
.va-feature-list li::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
  flex-shrink: 0;
}

/* VA Stats Grid */
.va-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.va-stat-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px 24px;
  text-align: center;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.va-stat-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s ease;
}
.va-stat-card:hover::before {
  transform: scaleX(1);
}
.va-stat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px var(--shadow);
}
.va-stat-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 16px;
  color: var(--primary);
}
.va-stat-icon svg {
  width: 100%;
  height: 100%;
}
.va-stat-number {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
  display: inline;
}
.va-stat-unit {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--primary-light);
  display: inline;
  margin-left: 2px;
}
.va-stat-card p {
  margin-top: 12px;
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.5;
}

/* VA Timeline */
.va-timeline {
  max-width: 720px;
  margin: 0 auto;
  position: relative;
}
.va-timeline-line {
  position: absolute;
  left: 28px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--primary), var(--accent));
}
.va-timeline-item {
  display: flex;
  gap: 32px;
  margin-bottom: 32px;
  position: relative;
}
.va-timeline-item:last-child { margin-bottom: 0; }
.va-timeline-marker {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.2rem;
  font-weight: 700;
  flex-shrink: 0;
  z-index: 2;
  box-shadow: 0 4px 16px rgba(109,120,90,0.25);
}
.va-timeline-card {
  background: var(--white);
  border-radius: 12px;
  padding: 28px;
  border: 1px solid var(--border);
  flex: 1;
  transition: all var(--transition);
}
.va-timeline-card:hover {
  box-shadow: 0 8px 32px var(--shadow);
  border-color: var(--primary-light);
}
.va-timeline-card h3 {
  margin-bottom: 12px;
  color: var(--primary-dark);
}
.va-timeline-card p {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* VA Gallery */
.va-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 16px;
}
.va-gallery-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
}
.va-gallery-wide {
  grid-column: 1 / 3;
}
.va-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 1/1;
  transition: transform 0.6s ease;
}
.va-gallery-wide img {
  aspect-ratio: 2/1;
}
.va-gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(44,44,44,0.7) 0%, transparent 50%);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity var(--transition);
}
.va-gallery-item:hover .va-gallery-overlay {
  opacity: 1;
}
.va-gallery-item:hover img {
  transform: scale(1.05);
}
.va-gallery-overlay span {
  color: var(--white);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
}

/* VA FAQ */
.va-faq {
  max-width: 800px;
  margin: 0 auto;
}
.va-faq-item {
  border-bottom: 1px solid var(--border);
}
.va-faq-item:last-child {
  border-bottom: none;
}
.va-faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 24px 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  text-align: left;
}
.va-faq-question span {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text);
  transition: color var(--transition);
}
.va-faq-item.active .va-faq-question span {
  color: var(--primary);
}
.va-faq-icon {
  width: 24px;
  height: 24px;
  position: relative;
  flex-shrink: 0;
}
.va-faq-icon span {
  position: absolute;
  background: var(--primary);
  border-radius: 2px;
  transition: all var(--transition);
}
.va-faq-icon span:first-child {
  width: 14px; height: 2px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}
.va-faq-icon span:last-child {
  width: 2px; height: 14px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}
.va-faq-item.active .va-faq-icon span:last-child {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}
.va-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}
.va-faq-item.active .va-faq-answer {
  max-height: 300px;
  padding-bottom: 24px;
}
.va-faq-answer p {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.8;
}

/* VA CTA Section */
.va-cta-section {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 60%, var(--primary-light) 100%);
  color: var(--white);
  text-align: center;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.va-cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: rgba(221,193,159,0.08);
}
.va-cta-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
}
.va-cta-content {
  position: relative;
  z-index: 2;
}
.va-cta-content h2 {
  color: var(--white);
  margin-bottom: 16px;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
}
.va-cta-content p {
  opacity: 0.9;
  margin-bottom: 36px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.1rem;
  line-height: 1.7;
}

/* === Responsive === */
@media (max-width: 900px) {
  .split { grid-template-columns: 1fr; gap: 32px; }
  .split-img { order: -1; }
  .footer-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }

  /* VA Responsive */
  .va-intro { grid-template-columns: 1fr; gap: 32px; }
  .va-intro-img { order: -1; }
  .va-treatment-inner { grid-template-columns: 1fr; }
  .va-treatment-img { order: -1; }
  .va-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .va-gallery { grid-template-columns: repeat(2, 1fr); }
  .va-gallery-wide { grid-column: 1 / 3; }
  .va-timeline-line { left: 20px; }
  .va-timeline-marker { width: 40px; height: 40px; font-size: 1rem; }
  .va-timeline-item { gap: 20px; }
}

@media (max-width: 768px) {
  .nav { height: 64px; }
  .nav-logo img { height: 36px; }
  .nav-links {
    position: fixed;
    top: 64px; left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 24px;
    gap: 20px;
    border-bottom: 1px solid var(--border);
    transform: translateY(-120%);
    transition: transform var(--transition);
    box-shadow: 0 8px 32px var(--shadow);
    z-index: 100;
  }
  .nav-links.open { transform: translateY(0); }
  .nav-toggle { display: block; }
  .hero-content { padding: 80px 0 60px; }
  .section { padding: 64px 0; }
  .page-hero { height: 40vh; min-height: 300px; }
  .page-hero-tall { height: 50vh; min-height: 360px; }
  .contact-form { padding: 24px; }

  /* VA Mobile */
  .va-stats-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .va-stat-card { padding: 24px 16px; }
  .va-stat-number { font-size: 2.2rem; }
  .va-gallery { grid-template-columns: 1fr; }
  .va-gallery-wide { grid-column: 1; }
  .va-gallery-wide img { aspect-ratio: 3/2; }
  .va-gallery-item img { aspect-ratio: 3/2; }
  .va-gallery-overlay { opacity: 1; }
  .va-treatment-header { padding: 18px 20px; gap: 12px; }
  .va-treatment-number { font-size: 1.4rem; width: 36px; }
  .va-treatment-inner { padding: 0 20px 20px; }
  .va-treatment-title p { display: none; }
  .va-timeline { padding-left: 0; }
  .va-timeline-line { display: none; }
  .va-timeline-marker { width: 36px; height: 36px; font-size: 0.9rem; }
  .va-timeline-item { gap: 14px; }
  .va-timeline-card { padding: 20px; }
  .va-cta-section { padding: 64px 0; }
  .hero-slider-nav { bottom: 24px; }
}

@media (max-width: 480px) {
  .va-stats-grid { grid-template-columns: 1fr; }
  .va-stat-card { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 4px; padding: 20px; }
  .va-stat-icon { width: 36px; height: 36px; margin: 0 0 8px; flex-basis: 100%; }
  .va-stat-number { font-size: 2rem; }
}

/* === Animations === */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
