/* ============================================
   Travis Boyd MD - Plastic Surgery Website
   Renaissance-inspired luxury aesthetic
   ============================================ */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=Montserrat:wght@300;400;500;600&display=swap');

/* ---- CSS Variables ---- */
:root {
  --navy: #1a2744;
  --navy-dark: #0f1a2e;
  --navy-light: #2a3f66;
  --gold: #c9a96e;
  --gold-light: #d4bb8a;
  --gold-dark: #b08d4f;
  --cream: #f8f5f0;
  --cream-dark: #ede8e0;
  --white: #ffffff;
  --charcoal: #2c2c2c;
  --text-dark: #333333;
  --text-medium: #666666;
  --text-light: #999999;
  --warm-bg: #faf8f5;
  --border-light: rgba(201, 169, 110, 0.2);

  --font-display: 'Playfair Display', Georgia, serif;
  --font-elegant: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Montserrat', 'Helvetica Neue', sans-serif;

  --shadow-soft: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-medium: 0 8px 40px rgba(0,0,0,0.12);
  --shadow-strong: 0 12px 60px rgba(0,0,0,0.18);
  --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

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

body {
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }

/* ---- Typography ---- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.25;
  color: var(--navy);
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.2rem; }

.elegant-text {
  font-family: var(--font-elegant);
  font-weight: 300;
  font-style: italic;
  color: var(--gold);
  letter-spacing: 0.02em;
}

.section-label {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  display: block;
}

.gold-divider {
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin: 1.5rem 0;
}

.gold-divider.center { margin: 1.5rem auto; }

/* ---- Layout ---- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.container-wide {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

section { padding: 6rem 0; }

.bg-cream { background: var(--cream); }
.bg-navy { background: var(--navy); color: var(--white); }
.bg-navy h2, .bg-navy h3, .bg-navy h4 { color: var(--white); }
.bg-warm { background: var(--warm-bg); }

/* ---- Buttons ---- */
.btn {
  display: inline-block;
  padding: 14px 36px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
}

.btn-primary {
  background: var(--gold);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201, 169, 110, 0.35);
}

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

.btn-white {
  background: var(--white);
  color: var(--navy);
}
.btn-white:hover {
  background: var(--cream);
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
}

.btn-navy {
  background: var(--navy);
  color: var(--gold-light);
}
.btn-navy:hover {
  background: var(--navy-dark);
  transform: translateY(-2px);
}

/* ============================================
   HEADER / NAVIGATION
   ============================================ */
.top-bar {
  background: var(--navy-dark);
  padding: 8px 0;
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.7);
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-bar a {
  color: var(--gold-light);
}
.top-bar a:hover { color: var(--gold); }

.top-bar-left, .top-bar-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201, 169, 110, 0.15);
  transition: var(--transition);
}

header.scrolled {
  box-shadow: var(--shadow-soft);
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.logo-name {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--navy);
  letter-spacing: 0.02em;
  line-height: 1.1;
}

.logo-title {
  font-family: var(--font-elegant);
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--gold);
  font-style: italic;
  letter-spacing: 0.05em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.nav-links a {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dark);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.nav-links a:hover { color: var(--gold); }
.nav-links a.active { color: var(--gold); }

.nav-cta {
  padding: 10px 24px !important;
  background: var(--gold) !important;
  color: var(--white) !important;
  font-size: 0.75rem !important;
  letter-spacing: 0.15em !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover {
  background: var(--gold-dark) !important;
  transform: translateY(-1px);
}

/* Mobile Menu */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 10px;
  -webkit-tap-highlight-color: transparent;
}
.menu-toggle span {
  width: 26px;
  height: 2px;
  background: var(--navy);
  transition: var(--transition);
  transform-origin: center;
}

/* Hamburger to X animation */
.menu-toggle.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.menu-toggle.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.menu-toggle.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Lock body scroll when menu open */
body.menu-open {
  overflow: hidden;
  position: fixed;
  width: 100%;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy-dark);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 90vh;
  width: 100%;
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4rem 4rem 4rem 6rem;
  background: var(--navy);
  position: relative;
}

.hero-content::after {
  content: '';
  position: absolute;
  top: 0;
  right: -60px;
  width: 120px;
  height: 100%;
  background: linear-gradient(90deg, var(--navy), transparent);
  z-index: 2;
}

.hero-content h1 {
  color: var(--white);
  margin-bottom: 1.5rem;
  line-height: 1.15;
}

.hero-content h1 span {
  display: block;
  font-family: var(--font-elegant);
  font-weight: 300;
  font-style: italic;
  color: var(--gold-light);
  font-size: 0.6em;
  margin-bottom: 0.5rem;
}

.hero-content p {
  color: rgba(255,255,255,0.75);
  font-size: 1.05rem;
  max-width: 440px;
  margin-bottom: 2.5rem;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-image {
  position: relative;
  overflow: hidden;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.hero-badge {
  position: absolute;
  bottom: 3rem;
  right: 3rem;
  background: rgba(26, 39, 68, 0.9);
  backdrop-filter: blur(10px);
  padding: 1.5rem 2rem;
  border-left: 3px solid var(--gold);
  z-index: 3;
}

.hero-badge p {
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 400;
}
.hero-badge p strong {
  color: var(--gold-light);
  display: block;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
}

/* ============================================
   PAGE HERO (inner pages)
   ============================================ */
.page-hero {
  position: relative;
  height: 50vh;
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.35);
}

.page-hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
}

.page-hero-content h1 {
  color: var(--white);
  margin-bottom: 0.5rem;
}

.page-hero-content .elegant-text {
  font-size: 1.3rem;
}

/* ============================================
   INTRO / WELCOME
   ============================================ */
.intro-section {
  padding: 7rem 0;
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.intro-image {
  position: relative;
}

.intro-image img {
  box-shadow: var(--shadow-strong);
}

.intro-image::before {
  content: '';
  position: absolute;
  top: -20px;
  left: -20px;
  width: 200px;
  height: 200px;
  border: 1px solid var(--gold);
  opacity: 0.3;
  z-index: -1;
}

.intro-text h2 {
  margin-bottom: 1.5rem;
}

.intro-text p {
  color: var(--text-medium);
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

/* ============================================
   SERVICES GRID
   ============================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.service-card {
  background: var(--white);
  padding: 3rem 2.5rem;
  border: 1px solid var(--border-light);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}

.service-card:hover::before { transform: scaleX(1); }

.service-card:hover {
  box-shadow: var(--shadow-medium);
  transform: translateY(-4px);
}

.service-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 1.5rem;
  color: var(--gold);
}

.service-card h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.service-card p {
  color: var(--text-medium);
  font-size: 0.92rem;
  margin-bottom: 1.5rem;
}

.service-link {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
}

.service-link:hover { color: var(--gold-dark); }

/* ============================================
   CREDENTIALS / TRUST
   ============================================ */
.credentials-strip {
  background: var(--navy);
  padding: 4rem 0;
}

.credentials-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.credential-item h3 {
  color: var(--gold-light);
  font-family: var(--font-display);
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.credential-item p {
  color: rgba(255,255,255,0.65);
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* ============================================
   ABOUT SECTION (Homepage)
   ============================================ */
.about-preview {
  padding: 7rem 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 4rem;
  align-items: center;
}

.about-image-wrap {
  position: relative;
}

.about-image-wrap img {
  box-shadow: var(--shadow-strong);
}

.about-image-accent {
  position: absolute;
  bottom: -15px;
  right: -15px;
  width: 180px;
  height: 120px;
  background: var(--gold);
  opacity: 0.15;
  z-index: -1;
}

.about-text h2 { margin-bottom: 1.5rem; }
.about-text p {
  color: var(--text-medium);
  margin-bottom: 1.5rem;
}

.about-credentials {
  display: flex;
  gap: 2rem;
  margin: 2rem 0;
  padding: 1.5rem 0;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.about-cred {
  display: flex;
  flex-direction: column;
}

.about-cred strong {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--navy);
}

.about-cred span {
  font-size: 0.82rem;
  color: var(--text-light);
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-section {
  background: var(--cream);
  padding: 7rem 0;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.testimonial-card {
  background: var(--white);
  padding: 2.5rem;
  border-top: 3px solid var(--gold);
  box-shadow: var(--shadow-soft);
}

.testimonial-stars {
  color: var(--gold);
  font-size: 1rem;
  margin-bottom: 1rem;
  letter-spacing: 0.1em;
}

.testimonial-card blockquote {
  font-family: var(--font-elegant);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--text-dark);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.testimonial-author {
  font-weight: 500;
  font-size: 0.85rem;
  color: var(--navy);
}

.testimonial-author span {
  display: block;
  font-weight: 300;
  color: var(--text-light);
  font-size: 0.8rem;
}

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
  position: relative;
  padding: 6rem 0;
  background: var(--navy);
  text-align: center;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('images/building.jpg') center/cover;
  opacity: 0.12;
}

.cta-banner .container { position: relative; z-index: 2; }

.cta-banner h2 {
  color: var(--white);
  margin-bottom: 1rem;
}

.cta-banner p {
  color: rgba(255,255,255,0.7);
  font-size: 1.05rem;
  max-width: 500px;
  margin: 0 auto 2.5rem;
}

/* ============================================
   GALLERY
   ============================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/3;
  background: var(--cream);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

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

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26, 39, 68, 0.8), transparent);
  opacity: 0;
  transition: var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
}

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

.gallery-overlay p {
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 500;
}

/* ============================================
   CONTACT
   ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-top: 3rem;
}

.contact-info-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
  align-items: flex-start;
}

.contact-info-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--cream);
  color: var(--gold);
  border-radius: 50%;
}

.contact-info-item h4 {
  margin-bottom: 0.25rem;
  font-size: 1rem;
}

.contact-info-item p {
  color: var(--text-medium);
  font-size: 0.92rem;
}

.contact-form {
  background: var(--white);
  padding: 3rem;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-soft);
}

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

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

.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #ddd;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 300;
  color: var(--text-dark);
  transition: var(--transition);
  background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 169, 110, 0.1);
}

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

/* ============================================
   FOOTER
   ============================================ */
footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.7);
  padding: 5rem 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand .logo-name { color: var(--white); font-size: 1.4rem; }
.footer-brand .logo-title { margin-bottom: 1rem; }

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 300px;
}

footer h4 {
  color: var(--gold-light);
  font-size: 0.85rem;
  font-family: var(--font-body);
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

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

.footer-links a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
}
.footer-links a:hover { color: var(--gold-light); }

.footer-bottom {
  padding: 2rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.footer-social a {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.6);
  border-radius: 50%;
  font-size: 0.85rem;
  transition: var(--transition);
}

.footer-social a:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201, 169, 110, 0.1);
}

/* ============================================
   ABOUT PAGE SPECIFICS
   ============================================ */
.bio-section {
  padding: 7rem 0;
}

.bio-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 4rem;
  align-items: start;
}

.bio-image {
  position: sticky;
  top: 120px;
}

.bio-image img {
  box-shadow: var(--shadow-strong);
}

.bio-text h2 { margin-bottom: 1rem; }
.bio-text h3 {
  font-family: var(--font-elegant);
  font-weight: 300;
  font-style: italic;
  color: var(--gold);
  font-size: 1.3rem;
  margin-bottom: 2rem;
}

.bio-text p {
  color: var(--text-medium);
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

.training-list {
  margin: 2rem 0;
  padding: 2rem;
  background: var(--cream);
}

.training-list h4 {
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.training-list li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  color: var(--text-medium);
  font-size: 0.95rem;
}

.training-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 6px;
  height: 6px;
  background: var(--gold);
  transform: translateY(-50%) rotate(45deg);
}

/* ============================================
   SERVICES PAGE SPECIFICS
   ============================================ */
.service-detail-grid {
  display: grid;
  gap: 4rem;
  margin-top: 3rem;
}

.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  padding: 3rem;
  background: var(--white);
  border: 1px solid var(--border-light);
}

.service-detail:nth-child(even) {
  direction: rtl;
}
.service-detail:nth-child(even) > * {
  direction: ltr;
}

.service-detail-image {
  overflow: hidden;
  aspect-ratio: 4/3;
}

.service-detail-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-detail h3 { margin-bottom: 1rem; }
.service-detail p {
  color: var(--text-medium);
  margin-bottom: 1rem;
}

.procedure-list {
  margin: 1rem 0;
}

.procedure-list li {
  padding: 0.4rem 0 0.4rem 1.2rem;
  position: relative;
  color: var(--text-medium);
  font-size: 0.92rem;
}

.procedure-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gold);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; min-height: auto; }
  .hero-content { padding: 4rem 3rem; order: 2; }
  .hero-content::after { display: none; }
  .hero-image { height: 50vh; order: 1; }
  .intro-grid, .about-grid, .bio-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .credentials-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .service-detail { grid-template-columns: 1fr; }
  .service-detail:nth-child(even) { direction: ltr; }
  .testimonial-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .top-bar { display: none; }

  /* Mobile Navigation */
  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--white);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0;
    z-index: 999;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding: 5rem 2rem;
  }
  .nav-links.open { display: flex; }
  .nav-links a {
    font-size: 1.15rem;
    font-weight: 400;
    padding: 1rem 2rem;
    width: 100%;
    text-align: center;
    border-bottom: 1px solid var(--border-light);
    letter-spacing: 0.12em;
  }
  .nav-links a:last-child {
    border-bottom: none;
  }
  .nav-links a.active {
    color: var(--gold);
    font-weight: 500;
  }
  .nav-links a::after { display: none; }

  /* Schedule Now button in mobile menu */
  .nav-links .nav-cta {
    margin-top: 1.5rem;
    padding: 16px 32px !important;
    width: auto;
    border-bottom: none;
    font-size: 0.85rem !important;
  }

  .menu-toggle { display: flex; z-index: 1001; }

  /* Hero */
  .hero-content { padding: 3rem 2rem; }
  .hero-content h1 { font-size: 2rem; }
  .hero-badge {
    bottom: 1.5rem;
    right: 1.5rem;
    padding: 1rem 1.25rem;
  }

  /* Grids */
  .services-grid { grid-template-columns: 1fr; }
  .credentials-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }

  /* Spacing */
  section { padding: 4rem 0; }
  .intro-section { padding: 4rem 0; }
  .about-preview { padding: 4rem 0; }
  .bio-section { padding: 4rem 0; }
  .testimonials-section { padding: 4rem 0; }

  /* Improve readability */
  body { font-weight: 400; }
  .intro-text p, .about-text p, .bio-text p { font-size: 0.95rem; }

  /* Bigger touch targets for buttons */
  .btn { padding: 16px 32px; font-size: 0.82rem; }

  /* Contact form */
  .contact-form { padding: 2rem 1.5rem; }

  /* Footer */
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }

  /* Page hero */
  .page-hero { min-height: 280px; height: 40vh; }
}

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

.animate-in {
  animation: fadeUp 0.8s ease forwards;
}

/* ---- Scrollbar ---- */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold-dark); }
