:root {
  --gold: #c9a962;
  --gold-light: #e8d5a3;
  --gold-dark: #a08540;
  --dark: #0f1419;
  --dark-soft: #1a222d;
  --dark-card: #222b38;
  --text: #f0ede6;
  --text-muted: #9aa3b0;
  --white: #ffffff;
  --accent: #25d366;
  --shadow: 0 8px 40px rgba(0, 0, 0, 0.35);
  --radius: 12px;
  --radius-lg: 20px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Outfit', system-ui, sans-serif;
  color: var(--text);
  line-height: 1.65;
  background: var(--dark);
}

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Header */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(15, 20, 25, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201, 169, 98, 0.12);
}

.header-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 0;
  gap: 1.5rem;
}

.logo {
  flex-shrink: 0;
  text-decoration: none;
  line-height: 0;
}

.logo img {
  display: block;
  height: 44px;
  width: auto;
}

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

.nav-menu a {
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.92rem;
  transition: color 0.2s;
}

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

.nav-social {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(201, 169, 98, 0.25);
  color: var(--gold) !important;
}

.nav-social svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--accent);
  color: var(--white);
  text-decoration: none;
  padding: 0.6rem 1.2rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: transform 0.2s, box-shadow 0.2s;
}

.header-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
}

.header-cta svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
  background: transparent;
  border: 1px solid rgba(201, 169, 98, 0.25);
  border-radius: 8px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 90;
}

/* Hero */
.hero {
  position: relative;
  padding: 4rem 0 5rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 20%, rgba(201, 169, 98, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 10% 80%, rgba(201, 169, 98, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero-badge {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.hero h1 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 600;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 1.25rem;
}

.hero h1 em {
  font-style: italic;
  color: var(--gold-light);
}

.hero-lead {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 520px;
  margin-bottom: 2rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.75rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
  border: none;
  cursor: pointer;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--dark);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(201, 169, 98, 0.35);
}

.btn-primary svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1px solid rgba(201, 169, 98, 0.4);
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.btn-block {
  width: 100%;
}

.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(201, 169, 98, 0.15);
}

.stat strong {
  display: block;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1.2;
}

.stat span {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.3;
}

.hero-visual {
  display: flex;
  justify-content: center;
}

.hero-photo-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.hero-photo-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(201, 169, 98, 0.3);
  border-radius: var(--radius-lg);
  pointer-events: none;
  z-index: 1;
}

.hero-photo-wrap img {
  display: block;
  width: 100%;
  max-width: 420px;
  height: auto;
  object-fit: cover;
  aspect-ratio: 4 / 5;
}

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

.section-header--light h2 {
  color: var(--white);
}

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.section-header h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.section-header p {
  color: var(--text-muted);
  font-size: 1rem;
}

/* Specialties */
.specialties {
  padding: 5rem 0;
  background: var(--dark-soft);
}

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

.specialty-card {
  background: var(--dark-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(201, 169, 98, 0.1);
  transition: transform 0.25s, border-color 0.25s;
}

.specialty-card:hover {
  transform: translateY(-4px);
  border-color: rgba(201, 169, 98, 0.3);
}

.specialty-image {
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.specialty-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.specialty-card:hover .specialty-image img {
  transform: scale(1.05);
}

.specialty-body {
  padding: 1.5rem;
}

.specialty-body h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.4rem;
  color: var(--gold-light);
  margin-bottom: 0.5rem;
}

.specialty-body p {
  font-size: 0.92rem;
  color: var(--text-muted);
}

/* Treatments */
.treatments {
  padding: 5rem 0;
  background: var(--dark);
}

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

.treatment-item {
  padding: 1.75rem;
  background: var(--dark-soft);
  border-radius: var(--radius);
  border: 1px solid rgba(201, 169, 98, 0.08);
  transition: border-color 0.2s;
}

.treatment-item:hover {
  border-color: rgba(201, 169, 98, 0.25);
}

.treatment-num {
  display: block;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 2rem;
  font-weight: 700;
  color: rgba(201, 169, 98, 0.25);
  line-height: 1;
  margin-bottom: 0.75rem;
}

.treatment-item h3 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.treatment-item p {
  font-size: 0.88rem;
  color: var(--text-muted);
}

/* About */
.about {
  padding: 5rem 0;
  background: var(--dark-soft);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.about-text h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.8rem, 3vw, 2.3rem);
  color: var(--white);
  margin-bottom: 1.5rem;
}

.about-text blockquote {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.25rem;
  font-style: italic;
  color: var(--text);
  border-left: 3px solid var(--gold);
  padding-left: 1.25rem;
  margin-bottom: 1rem;
  line-height: 1.5;
}

.quote-author {
  font-size: 0.9rem;
  color: var(--gold);
  font-weight: 500;
}

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

.feature {
  display: flex;
  gap: 1rem;
  padding: 1.25rem;
  background: var(--dark-card);
  border-radius: var(--radius);
  border: 1px solid rgba(201, 169, 98, 0.08);
}

.feature-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(201, 169, 98, 0.12);
  border-radius: 10px;
  color: var(--gold);
}

.feature-icon svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.feature strong {
  display: block;
  font-size: 0.95rem;
  color: var(--white);
  margin-bottom: 0.25rem;
}

.feature span {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Testimonials */
.testimonials {
  padding: 5rem 0;
  background: var(--dark);
}

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

.testimonial {
  padding: 1.75rem;
  background: var(--dark-soft);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(201, 169, 98, 0.1);
}

.stars {
  color: var(--gold);
  font-size: 0.9rem;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}

.testimonial p {
  font-size: 0.95rem;
  color: var(--text-muted);
  font-style: italic;
  margin-bottom: 1.25rem;
  line-height: 1.6;
}

.testimonial footer {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gold);
  font-style: normal;
}

/* Contact */
.contact {
  padding: 5rem 0;
  background: var(--dark-soft);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  align-items: center;
}

.contact-info h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.8rem, 3vw, 2.3rem);
  color: var(--white);
  margin-bottom: 0.75rem;
}

.contact-info > p {
  color: var(--text-muted);
  margin-bottom: 2rem;
}

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

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

.contact-item svg {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  fill: var(--gold);
  margin-top: 2px;
}

.contact-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.2rem;
}

.contact-item a {
  color: var(--text);
  text-decoration: none;
  transition: color 0.2s;
}

.contact-item a:hover {
  color: var(--gold);
}

.contact-cta-card {
  padding: 2.5rem;
  background: linear-gradient(145deg, var(--dark-card) 0%, rgba(34, 43, 56, 0.8) 100%);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(201, 169, 98, 0.2);
  text-align: center;
}

.contact-cta-card h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.6rem;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.contact-cta-card p {
  color: var(--text-muted);
  margin-bottom: 1.75rem;
  font-size: 0.95rem;
}

/* Footer */
footer {
  padding: 2.5rem 0;
  background: var(--dark);
  border-top: 1px solid rgba(201, 169, 98, 0.1);
  text-align: center;
}

.footer-logo {
  height: 40px;
  width: auto;
  margin-bottom: 1rem;
  opacity: 0.9;
}

footer p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer-links {
  margin-top: 0.75rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 0.75rem;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.2s;
}

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

.footer-links span {
  color: rgba(201, 169, 98, 0.3);
}

/* WhatsApp float */
.whatsapp-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 200;
  width: 58px;
  height: 58px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.55);
}

.whatsapp-float svg {
  width: 30px;
  height: 30px;
  fill: var(--white);
}

/* Mobile menu */
@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: min(300px, 85vw);
    height: 100vh;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 5rem 1.5rem 2rem;
    background: var(--dark-soft);
    border-left: 1px solid rgba(201, 169, 98, 0.15);
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 95;
  }

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

  .nav-menu a {
    width: 100%;
    padding: 0.85rem 0;
    border-bottom: 1px solid rgba(201, 169, 98, 0.08);
  }

  .nav-social {
    margin-top: 1rem;
  }

  body.menu-open {
    overflow: hidden;
  }

  .header-cta-text {
    display: none;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hero-visual {
    order: -1;
  }

  .hero-photo-wrap img {
    max-width: 320px;
    margin: 0 auto;
  }

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

  .specialties-grid,
  .treatments-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 480px) {
  .hero-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }
}
