/* ─────────────────────────────────────────────────────────
   GABRIEL RINCON, MD — Medical Aesthetics
   Classic & Elegant · Emerald + Cream Palette
   Cormorant Garamond + Inter
───────────────────────────────────────────────────────── */

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

:root {
  --emerald-900: #064e3b;
  --emerald-800: #065f46;
  --emerald-700: #047857;
  --emerald-600: #059669;
  --cream-50:  #faf8f5;
  --cream-100: #f5f0ea;
  --cream-200: #ede5d9;
  --cream-300: #e0d5c4;
  --gold-400:  #d4a574;
  --gold-500:  #c49a6c;
  --gold-600:  #b08050;
  --text-900:  #1a1a1a;
  --text-700:  #3a3a3a;
  --text-500:  #6b6b6b;
  --text-400:  #999;
  --white:     #fff;
  --font-serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-sans:  'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.12);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-700);
  background: var(--cream-50);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

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

/* ─── TYPOGRAPHY ───────────────────────────────────────── */
.section-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-500);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--text-900);
  margin-bottom: 20px;
}

.section-lead {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--text-500);
  max-width: 600px;
}

.center { text-align: center; }
.center .section-lead { margin: 0 auto; }

/* ─── BUTTONS ──────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-emerald {
  background: var(--emerald-700);
  color: var(--white);
  border-color: var(--emerald-700);
}
.btn-emerald:hover {
  background: var(--emerald-800);
  border-color: var(--emerald-800);
  box-shadow: var(--shadow-md);
}

.btn-cream {
  background: var(--cream-100);
  color: var(--emerald-800);
  border-color: var(--cream-100);
}
.btn-cream:hover {
  background: var(--cream-200);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background: transparent;
  color: var(--text-700);
  border-color: var(--cream-300);
}
.btn-outline:hover {
  border-color: var(--emerald-700);
  color: var(--emerald-700);
}

.btn-outline-light {
  background: transparent;
  color: var(--cream-200);
  border-color: rgba(255,255,255,0.35);
}
.btn-outline-light:hover {
  border-color: var(--white);
  color: var(--white);
  background: rgba(255,255,255,0.08);
}

.btn-sm { padding: 10px 22px; font-size: 0.8125rem; }
.btn-full { width: 100%; }

/* ─── HEADER ───────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(250, 248, 245, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  transition: box-shadow var(--transition);
}

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

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

/* ─── LOGO ─────────────────────────────────────────────── */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-mark {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 600;
  font-style: italic;
  color: var(--emerald-700);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid var(--emerald-700);
  border-radius: var(--radius-sm);
  flex-shrink: 0;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.logo-name {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--text-900);
  letter-spacing: -0.01em;
}

.logo-tagline {
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-400);
}

/* ─── NAV ──────────────────────────────────────────────── */
.main-nav ul {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
}

.main-nav a {
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--text-500);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
}

.main-nav a:hover {
  color: var(--emerald-700);
  background: rgba(4, 120, 87, 0.06);
}

/* ─── MOBILE NAV TOGGLE ────────────────────────────────── */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle-bar {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--text-700);
  border-radius: 2px;
  transition: all var(--transition);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* ─── HERO ─────────────────────────────────────────────── */
.hero {
  padding-top: 72px;
  background: var(--cream-50);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  min-height: calc(100vh - 72px);
  padding: 60px 0 0;
}

.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-500);
  margin-bottom: 20px;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  font-weight: 400;
  line-height: 1.12;
  color: var(--text-900);
  margin-bottom: 28px;
}

.hero-accent {
  font-style: italic;
  color: var(--emerald-700);
}

.hero-body {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-500);
  margin-bottom: 36px;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 48px;
}

.hero-cred {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.cred-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-700);
}

.cred-icon {
  width: 16px;
  height: 16px;
  color: var(--gold-500);
  flex-shrink: 0;
}

/* ─── HERO IMAGE ───────────────────────────────────────── */
.hero-image-wrap {
  position: relative;
}

.hero-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

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

.hero-accent-block {
  position: absolute;
  bottom: -20px;
  right: -20px;
  opacity: 0.5;
}

.hero-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--cream-300), transparent);
  margin: 0;
}

/* ─── ABOUT ────────────────────────────────────────────── */
.about {
  padding: 120px 0;
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

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

.about-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 1;
}

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

.about-image-accent {
  position: absolute;
  top: -16px;
  left: -16px;
  width: 100%;
  height: 100%;
  border: 1.5px solid var(--gold-400);
  border-radius: var(--radius-lg);
  z-index: 0;
}

.about-content .section-lead {
  margin-bottom: 20px;
}

.about-content p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-500);
  margin-bottom: 16px;
}

.about-signature {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--emerald-700);
  line-height: 1.6;
  padding-left: 20px;
  border-left: 2px solid var(--gold-400);
  margin-top: 24px;
  margin-bottom: 40px;
}

.about-stats {
  display: flex;
  align-items: center;
  gap: 0;
  background: var(--cream-50);
  border-radius: var(--radius-md);
  padding: 28px 32px;
}

.stat {
  flex: 1;
  text-align: center;
}

.stat-number {
  display: block;
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 500;
  color: var(--emerald-700);
  line-height: 1;
  margin-bottom: 6px;
}

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

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--cream-300);
}

/* ─── SERVICES ─────────────────────────────────────────── */
.services {
  padding: 120px 0;
  background: var(--cream-50);
}

.section-header {
  margin-bottom: 64px;
}

.section-header .section-lead {
  margin-bottom: 0;
}

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

.service-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  border: 1px solid var(--cream-200);
  transition: all var(--transition);
}

.service-card:hover {
  border-color: var(--emerald-600);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.service-icon {
  width: 48px;
  height: 48px;
  color: var(--emerald-700);
  margin-bottom: 20px;
}

.service-icon svg {
  width: 100%;
  height: 100%;
}

.service-title {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--text-900);
  margin-bottom: 12px;
}

.service-desc {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--text-500);
  margin-bottom: 20px;
}

.service-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.service-list li {
  font-size: 0.875rem;
  color: var(--text-700);
  padding-left: 16px;
  position: relative;
}

.service-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 5px;
  height: 5px;
  background: var(--gold-400);
  border-radius: 50%;
}

/* ─── APPROACH ─────────────────────────────────────────── */
.approach {
  padding: 120px 0;
  background: var(--white);
}

.approach-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.approach-steps {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-top: 48px;
}

.approach-step {
  display: flex;
  gap: 24px;
}

.step-number {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--cream-300);
  line-height: 1;
  flex-shrink: 0;
  width: 48px;
}

.step-title {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--text-900);
  margin-bottom: 8px;
}

.step-desc {
  font-size: 0.9375rem;
  line-height: 1.75;
  color: var(--text-500);
}

.approach-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  margin-bottom: 32px;
}

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

.approach-quote {
  position: relative;
  padding: 32px;
  background: var(--cream-50);
  border-radius: var(--radius-md);
  border-left: 3px solid var(--gold-400);
}

.quote-mark {
  width: 28px;
  height: 28px;
  color: var(--gold-400);
  margin-bottom: 12px;
}

.approach-quote blockquote {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-style: italic;
  line-height: 1.65;
  color: var(--text-700);
  margin-bottom: 12px;
}

.approach-quote cite {
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  font-style: normal;
  font-weight: 500;
  color: var(--text-400);
  letter-spacing: 0.04em;
}

/* ─── GALLERY ──────────────────────────────────────────── */
.gallery {
  padding: 120px 0 100px;
  background: var(--cream-50);
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 64px;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: default;
}

.gallery-item--wide {
  grid-column: 1 / -1;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px 20px 16px;
  background: linear-gradient(to top, rgba(0,0,0,0.5), transparent);
  color: var(--white);
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-style: italic;
  opacity: 0;
  transition: opacity var(--transition);
}

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

/* ─── CTA BANNER ───────────────────────────────────────── */
.cta-banner {
  padding: 100px 0;
  background: var(--emerald-900);
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: rgba(255,255,255,0.03);
  pointer-events: none;
}

.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(255,255,255,0.02);
  pointer-events: none;
}

.cta-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.cta-eyebrow {
  color: var(--gold-400);
  margin-bottom: 20px;
}

.cta-title {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--white);
  margin-bottom: 20px;
}

.cta-body {
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.65);
  margin-bottom: 40px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

/* ─── CONTACT ──────────────────────────────────────────── */
.contact {
  padding: 120px 0;
  background: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin: 40px 0;
}

.contact-item {
  display: flex;
  gap: 16px;
}

.contact-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--cream-50);
  border-radius: var(--radius-sm);
  color: var(--emerald-700);
}

.contact-icon svg {
  width: 20px;
  height: 20px;
}

.contact-label {
  display: block;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-400);
  margin-bottom: 4px;
}

.contact-item address,
.contact-item p {
  font-style: normal;
  font-size: 0.9375rem;
  color: var(--text-700);
  line-height: 1.6;
}

.contact-item a {
  color: var(--emerald-700);
  transition: color var(--transition);
}

.contact-item a:hover {
  color: var(--emerald-600);
  text-decoration: underline;
}

.contact-hours {
  padding: 24px;
  background: var(--cream-50);
  border-radius: var(--radius-md);
}

.contact-hours .contact-label {
  margin-bottom: 12px;
}

.contact-hours p {
  font-size: 0.9375rem;
  color: var(--text-500);
  line-height: 1.8;
}

/* ─── CONTACT FORM ─────────────────────────────────────── */
.contact-form-wrap {
  background: var(--cream-50);
  border-radius: var(--radius-lg);
  padding: 40px;
  border: 1px solid var(--cream-200);
}

.form-title {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--text-900);
  margin-bottom: 6px;
}

.form-note {
  font-size: 0.875rem;
  color: var(--text-400);
  margin-bottom: 28px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}

.form-group label {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-700);
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  color: var(--text-900);
  background: var(--white);
  border: 1px solid var(--cream-300);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
  width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--emerald-600);
  box-shadow: 0 0 0 3px rgba(4, 120, 87, 0.1);
}

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

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

.form-success {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
  padding: 16px 20px;
  background: rgba(4, 120, 87, 0.08);
  border: 1px solid rgba(4, 120, 87, 0.2);
  border-radius: var(--radius-sm);
  color: var(--emerald-700);
  font-size: 0.9375rem;
}

.form-success svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* ─── FOOTER ───────────────────────────────────────────── */
.site-footer {
  background: var(--text-900);
  color: rgba(255,255,255,0.6);
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 60px;
}

.footer-logo .logo-name { color: var(--white); }
.footer-logo .logo-tagline { color: rgba(255,255,255,0.4); }
.footer-logo .logo-mark {
  border-color: var(--gold-400);
  color: var(--gold-400);
}

.footer-desc {
  font-size: 0.9375rem;
  line-height: 1.75;
  margin-top: 16px;
  max-width: 280px;
}

.footer-nav-label,
.footer-hours .footer-nav-label {
  display: block;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 16px;
}

.footer-nav ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-nav a {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
}

.footer-nav a:hover { color: var(--gold-400); }

.footer-contact address {
  font-style: normal;
  font-size: 0.9375rem;
  line-height: 1.7;
  margin-bottom: 12px;
}

.footer-contact p {
  font-size: 0.9375rem;
  margin-bottom: 6px;
}

.footer-contact a {
  color: var(--gold-400);
  transition: color var(--transition);
}

.footer-contact a:hover { color: var(--cream-200); }

.footer-hours p {
  font-size: 0.9375rem;
  line-height: 1.8;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 0;
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.35);
}

.footer-disclaimer {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.25);
  max-width: 500px;
  text-align: right;
  line-height: 1.6;
}

/* ─── SCROLL ANIMATIONS ────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── RESPONSIVE ───────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-grid,
  .about-grid,
  .approach-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hero-image-wrap { order: -1; }
  .hero-image { max-height: 500px; }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav-toggle { display: flex; }

  .main-nav {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(250, 248, 245, 0.98);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 32px 24px;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
  }

  .main-nav.open { transform: translateX(0); }

  .main-nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
  }

  .main-nav a {
    display: block;
    font-size: 1.1rem;
    padding: 14px 16px;
  }

  .main-nav .btn {
    margin-top: 16px;
    text-align: center;
  }

  .hero-grid { padding-top: 40px; min-height: auto; }
  .hero-title { font-size: clamp(1.8rem, 7vw, 2.6rem); }
  .hero-cred { gap: 12px; }

  .services-grid { grid-template-columns: 1fr; }

  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item--wide { grid-column: auto; }

  .about-stats { flex-direction: column; gap: 20px; }
  .stat-divider { width: 40px; height: 1px; }

  .form-row { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
  .footer-disclaimer { text-align: center; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .cta-actions { flex-direction: column; align-items: center; }
  .cta-actions .btn { width: 100%; max-width: 300px; }
  .contact-form-wrap { padding: 24px; }
}
