:root {
  --cream: #faf8f5;
  --warm-white: #f5f2ed;
  --stone: #e8e2d9;
  --taupe: #c4b8a8;
  --mink: #9e9089;
  --bark: #6b5d52;
  --espresso: #3a2e28;
  --sage: #8a9e8c;
  --sage-light: #b8c9b9;
  --sage-dark: #5a7a5c;
  --gold: #c9a96e;
  --gold-light: #e8d5a8;
  --text: #2c2420;
  --text-light: #6b5d52;
  --wa-green: #25D366;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Jost', sans-serif;
  background: var(--cream);
  color: var(--text);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}

.topbar {
  background: var(--espresso);
  color: var(--stone);
  font-size: 12px;
  letter-spacing: 0.08em;
  padding: 8px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 400;
}

.topbar a {
  color: var(--sage-light);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s;
}

.topbar a:hover {
  color: white;
}

nav {
  background: var(--cream);
  padding: 0 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--stone);
  position: sticky;
  top: 0;
  z-index: 100;
  height: 72px;
}

.nav-brand {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  cursor: pointer;
}

.nav-brand .name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 500;
  color: var(--espresso);
  letter-spacing: 0.03em;
}

.nav-brand .tagline {
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--mink);
  text-transform: uppercase;
  font-weight: 400;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 0;
  align-items: center;
}

.nav-links li {
  position: relative;
}

.nav-links>li>a {
  display: block;
  padding: 0 11px;
  height: 72px;
  line-height: 72px;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--bark);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
  white-space: nowrap;
}

.nav-links>li>a:hover {
  color: var(--espresso);
}

.nav-links li:hover .dropdown {
  display: block;
}

.dropdown {
  display: none;
  position: absolute;
  top: 72px;
  left: 0;
  background: white;
  min-width: 220px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  border-top: 2px solid var(--sage);
  z-index: 200;
}

.dropdown a {
  display: block;
  padding: 12px 20px;
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--bark);
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 400;
  transition: all 0.2s;
  border-bottom: 1px solid var(--stone);
}

.dropdown a:hover {
  background: var(--warm-white);
  color: var(--espresso);
  padding-left: 26px;
}

.nav-cta {
  background: var(--sage-dark) !important;
  color: white !important;
  padding: 10px 20px !important;
  height: auto !important;
  line-height: 1 !important;
  border-radius: 2px;
  margin-left: 8px;
}

.nav-cta:hover {
  background: var(--espresso) !important;
}

.page {
  display: none;
}

.page.active {
  display: block;
}

.hero {
  position: relative;
  height: calc(100vh - 104px);
  min-height: 580px;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-image: url('fotos/background.png');
}


.vicky-overlay {
  position: absolute;
  right: 20px;
  bottom: 0px;
  height: 80%;
  width: auto;
  object-fit: contain;
  object-position: bottom right;
  z-index: 1;
  pointer-events: none;
}

@media (max-width: 900px) {
  .vicky-overlay {
    height: 65%;
    width: auto;
    object-fit: contain;
    object-position: center bottom;
  }
}


.hero-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(58, 46, 40, 0.75) 0%, rgba(58, 46, 40, 0.38) 55%, transparent 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 80px;
  max-width: 680px;
  animation: fadeUp 1s ease both;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-eyebrow {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sage-light);
  font-weight: 500;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-eyebrow::after {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--sage-light);
}

.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(42px, 5vw, 68px);
  font-weight: 400;
  color: white;
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}

.hero h1 em {
  font-style: italic;
  color: var(--gold-light);
}

.hero-sub {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 36px;
  font-weight: 300;
  max-width: 480px;
  line-height: 1.7;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--sage-dark);
  color: white;
  padding: 14px 30px;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
  text-decoration: none;
  font-family: 'Jost', sans-serif;
  border-radius: 2px;
  transition: all 0.25s;
  cursor: pointer;
  border: none;
}

.btn-primary:hover {
  background: var(--espresso);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(58, 46, 40, 0.25);
}

.btn-sage {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--sage-dark);
  color: white;
  padding: 13px 28px;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
  text-decoration: none;
  font-family: 'Jost', sans-serif;
  border-radius: 2px;
  transition: all 0.25s;
  cursor: pointer;
  border: none;
}

.btn-sage:hover {
  background: var(--espresso);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(58, 46, 40, 0.25);
}

.services {
  background: var(--warm-white);
  padding: 80px 60px;
}

.section-eyebrow {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sage-dark);
  font-weight: 500;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.section-eyebrow::before {
  content: '';
  display: block;
  width: 30px;
  height: 1px;
  background: var(--sage-dark);
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 400;
  color: var(--espresso);
  line-height: 1.15;
  margin-bottom: 50px;
}

.section-title em {
  font-style: italic;
  color: var(--bark);
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.card {
  background: white;
  padding: 40px 36px;
  border-bottom: 3px solid var(--sage);
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
}

.card-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 52px;
  color: var(--stone);
  font-weight: 300;
  line-height: 1;
  margin-bottom: 16px;
}

.card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 500;
  color: var(--espresso);
  margin-bottom: 14px;
  line-height: 1.2;
}

.card p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.75;
  margin-bottom: 24px;
}

.card-link {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sage-dark);
  text-decoration: none;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  background: none;
  border: none;
  font-family: 'Jost', sans-serif;
  transition: gap 0.2s;
}

.card-link:hover {
  gap: 14px;
}

section {
  padding: 80px 60px;
}

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

.about-img-wrap {
  position: relative;
}

.about-img-wrap img {
  width: 100%;
  height: 680px;
  object-fit: cover;
  object-position: center 10%;
  display: block;
}

.about-img-wrap::after {
  display: none;
}

.about-text {
  padding: 20px 0;
}

.about-text p {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.85;
  margin-bottom: 18px;
}

.credentials {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.credential {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 13px;
  color: var(--bark);
  font-weight: 400;
}

.credential::before {
  content: '—';
  color: var(--sage-dark);
  flex-shrink: 0;
  font-weight: 300;
}

.page-hero {
  background: var(--espresso);
  padding: 70px 60px 60px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(138, 158, 140, 0.12);
}

.page-hero-eyebrow {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sage-light);
  font-weight: 500;
  margin-bottom: 12px;
}

.page-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 4vw, 58px);
  font-weight: 400;
  color: white;
  line-height: 1.1;
  margin-bottom: 16px;
  max-width: 700px;
}

.page-hero p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.72);
  max-width: 600px;
  line-height: 1.75;
  font-weight: 300;
}

.breadcrumb {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}

.breadcrumb a {
  color: var(--sage-light);
  text-decoration: none;
  cursor: pointer;
}

.breadcrumb span {
  margin: 0 8px;
}

.two-col {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 70px;
  align-items: start;
  max-width: 1100px;
  margin: 0 auto;
}

.corporal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: start;
  max-width: 1100px;
  margin: 0 auto;
}

.corporal-content .treatments-list {
  grid-template-columns: 1fr;
}

.btn-corporal-mobile {
  display: none;
}

.corporal-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 44px;
}

.corporal-images img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.corporal-images img:nth-child(3) {
  grid-column: 1 / -1;
  height: 260px;
}

.content-img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  display: block;
}

.content-block h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  font-weight: 500;
  color: var(--espresso);
  margin-bottom: 16px;
  line-height: 1.2;
}

.content-block h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 500;
  color: var(--espresso);
  margin-bottom: 12px;
}

.content-block p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.85;
  margin-bottom: 16px;
}

.content-block ul {
  list-style: none;
  margin-bottom: 20px;
}

.content-block ul li {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.75;
  padding: 6px 0 6px 20px;
  position: relative;
  border-bottom: 1px solid var(--stone);
}

.content-block ul li::before {
  content: '·';
  position: absolute;
  left: 4px;
  color: var(--sage-dark);
  font-size: 20px;
  line-height: 1.4;
}

.highlight-box {
  background: var(--warm-white);
  border-left: 3px solid var(--sage-dark);
  padding: 24px 28px;
  margin: 20px 0;
}

.highlight-box h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  color: var(--espresso);
  margin-bottom: 10px;
  font-weight: 500;
}

.highlight-box p {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.8;
  margin: 0;
}

.photo-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  height: 460px;
}

.photo-pair img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.treatments-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--stone);
  margin: 30px 0;
}

.treatment-item {
  background: var(--warm-white);
  padding: 24px 28px;
  font-size: 13px;
  color: var(--bark);
  font-weight: 400;
}

.treatment-item strong {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  color: var(--espresso);
  margin-bottom: 6px;
  font-weight: 500;
}

.motivos-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
}

.motivos-table tr {
  border-bottom: 1px solid var(--stone);
  cursor: pointer;
  transition: background 0.15s;
}

.motivos-table tr:hover {
  background: var(--warm-white);
}

.motivos-table td {
  padding: 16px 20px;
  font-size: 14px;
  color: var(--bark);
}

.motivos-table td.link {
  color: var(--sage-dark);
  font-size: 12px;
  letter-spacing: 0.08em;
  font-weight: 500;
  text-transform: uppercase;
  text-align: right;
}

.motivos-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--stone);
  margin: 40px 0;
}

.motivo-item {
  background: white;
  padding: 28px 32px;
}

.tech-section {
  background: var(--espresso);
  padding: 70px 60px;
  color: white;
}

.tech-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.tech-section h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  font-weight: 400;
  color: white;
  margin-bottom: 16px;
  line-height: 1.2;
}

.tech-section p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.85;
  margin-bottom: 14px;
}

.tech-section img {
  width: 100%;
  max-height: 640px;
  object-fit: contain;
}

.tech-eyebrow {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--espresso);
  font-weight: 600;
  background: var(--gold-light);
  padding: 5px 14px;
  border-radius: 2px;
  margin-bottom: 16px;
}

.cta-banner {
  background: linear-gradient(135deg, var(--sage-dark) 0%, #3d5e40 100%);
  padding: 60px;
  text-align: center;
  color: white;
}

.cta-banner h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 40px;
  font-weight: 400;
  margin-bottom: 14px;
}

.cta-banner p {
  font-size: 15px;
  opacity: 0.85;
  margin-bottom: 28px;
}

.maps-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-bottom: 40px;
}

.map-block h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  color: var(--espresso);
  margin-bottom: 14px;
  font-weight: 500;
}

.map-container {
  height: 320px;
  overflow: hidden;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 1100px;
  margin: 0 auto;
}

.contact-info h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  color: var(--espresso);
  margin-bottom: 24px;
  font-weight: 500;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 18px;
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.6;
}

.contact-icon {
  width: 36px;
  height: 36px;
  background: var(--warm-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 16px;
}

.social-row {
  display: flex;
  gap: 12px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border: 1.5px solid var(--stone);
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--bark);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.2s;
  border-radius: 2px;
}

.social-btn:hover {
  border-color: var(--espresso);
  color: var(--espresso);
}

.ig-strip {
  background: var(--warm-white);
  padding: 60px;
  text-align: center;
}

.ig-strip .section-eyebrow {
  justify-content: center;
}

.ig-strip .section-eyebrow::before {
  display: none;
}

.ig-strip h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  color: var(--espresso);
  margin-bottom: 8px;
  font-weight: 400;
}

.ig-strip p {
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 24px;
}

.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  height: 58px;
  background: var(--wa-green);
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 20px 0 16px;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  text-decoration: none;
  transition: all 0.25s;
  animation: pulse 2.5s infinite;
  white-space: nowrap;
}

.wa-float:hover {
  transform: scale(1.04);
}

@keyframes pulse {

  0%,
  100% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  }

  50% {
    box-shadow: 0 4px 30px rgba(37, 211, 102, 0.7), 0 0 0 8px rgba(37, 211, 102, 0.1);
  }
}

.wa-float svg {
  width: 26px;
  height: 26px;
  fill: white;
  flex-shrink: 0;
}

.wa-label {
  color: white;
  font-family: 'Jost', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.03em;
}

.cta-context {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.65);
  margin-top: 10px;
  font-family: 'Jost', sans-serif;
  letter-spacing: 0.04em;
}

.cta-context-dark {
  font-size: 12px;
  color: var(--mink);
  margin-top: 10px;
  font-family: 'Jost', sans-serif;
  letter-spacing: 0.04em;
}

.mid-cta {
  text-align: center;
  padding: 48px 0 24px;
}

.mid-cta p {
  font-size: 13px;
  color: var(--mink);
  margin-top: 10px;
}

/* Before & After Section */
.ba-strip {
  padding: 72px 60px;
  background: var(--warm-white);
}

.ba-subtitle {
  text-align: center;
  font-size: 14px;
  color: var(--mink);
  margin-bottom: 48px;
}

.ba-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1100px;
  margin: 0 auto;
}

.ba-card {}

.ba-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  margin-bottom: 12px;
}

.ba-frame {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--cream);
}

.ba-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ba-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: var(--text-light);
  text-align: center;
  background: #ede9e3;
  font-family: 'Jost', sans-serif;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.ba-placeholder.after {
  background: #dde8de;
  color: var(--sage-dark);
}

.ba-tag {
  position: absolute;
  bottom: 8px;
  left: 8px;
  font-family: 'Jost', sans-serif;
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: rgba(58, 46, 40, 0.75);
  color: white;
  padding: 3px 8px;
  border-radius: 2px;
}

.ba-tag.after {
  background: rgba(90, 122, 92, 0.85);
}

.ba-label {
  font-size: 12px;
  color: var(--mink);
  text-align: center;
  font-family: 'Jost', sans-serif;
  letter-spacing: 0.05em;
}

.ba-disclaimer {
  text-align: center;
  font-size: 11px;
  color: var(--text-light);
  margin-top: 32px;
  font-style: italic;
}

/* Improved Contact Page */
.contact-hero-cta {
  background: var(--sage-dark);
  padding: 60px;
  text-align: center;
  color: white;
}

.contact-hero-cta h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 42px;
  font-weight: 400;
  color: white;
  margin-bottom: 12px;
}

.contact-hero-cta p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 32px;
}

.contact-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin: 60px 0 40px;
}

.contact-step {
  text-align: center;
  padding: 40px 30px;
  border-right: 1px solid var(--border);
}

.contact-step:last-child {
  border-right: none;
}

.step-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px;
  font-weight: 400;
  color: var(--sage-light);
  margin-bottom: 12px;
}

.step-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  color: var(--espresso);
  margin-bottom: 8px;
}

.step-desc {
  font-size: 13px;
  color: var(--mink);
  line-height: 1.7;
}

@media (max-width: 768px) {
  .ba-grid {
    grid-template-columns: 1fr;
    max-width: 360px;
    margin: 0 auto;
  }

  .ba-strip {
    padding: 48px 24px;
  }

  .contact-steps {
    grid-template-columns: 1fr;
  }

  .contact-step {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }

  .contact-step:last-child {
    border-bottom: none;
  }
}

@media (max-width: 600px) {
  .wa-label {
    display: none;
  }

  .wa-float {
    width: 58px;
    height: 58px;
    padding: 0;
    border-radius: 50%;
    justify-content: center;
  }
}

footer {
  background: var(--espresso);
  color: rgba(255, 255, 255, 0.7);
  padding: 50px 60px 30px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 50px;
  margin-bottom: 40px;
}

.footer-brand .name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 500;
  color: white;
  margin-bottom: 6px;
}

.footer-brand .tagline {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--sage-light);
  margin-bottom: 18px;
}

.footer-brand p {
  font-size: 13px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.6);
}

footer h4 {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sage-light);
  margin-bottom: 16px;
  font-weight: 500;
}

footer ul {
  list-style: none;
}

footer ul li {
  font-size: 13px;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  transition: color 0.2s;
}

footer ul li:hover {
  color: white;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  display: flex;
  justify-content: space-between;
  align-items: center;
  letter-spacing: 0.06em;
}

/* ── Hamburger ── */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 8px;
  z-index: 200;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--espresso);
  border-radius: 2px;
  transition: all 0.3s;
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ── Nav active state ── */
.nav-links>li>a.active {
  color: var(--espresso);
  border-bottom: 2px solid var(--sage-dark);
}

/* ── Page transitions ── */
.page.active {
  animation: pageIn 0.35s ease both;
}

@keyframes pageIn {
  from {
    opacity: 0;
    transform: translateY(14px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}





@media (max-width: 900px) {
  .hero {
    align-items: flex-start;
    padding-top: 60px;
  }

  .hamburger {
    display: flex;
  }

  .nav-links {
    display: none;
    position: fixed;
    top: 104px;
    left: 0;
    right: 0;
    background: var(--cream);
    flex-direction: column;
    align-items: stretch;
    border-top: 2px solid var(--sage);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
    z-index: 150;
    max-height: calc(100vh - 104px);
    overflow-y: auto;
    gap: 0;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links>li>a {
    height: auto;
    line-height: 1;
    padding: 16px 24px;
    border-bottom: 1px solid var(--stone);
    font-size: 13px;
    text-align: left;
  }

  .nav-cta {
    margin: 12px 24px;
    border-radius: 2px;
  }

  .dropdown {
    display: flex !important;
    flex-direction: column;
    position: static;
    box-shadow: none;
    border-top: none;
    min-width: unset;
    background: transparent;
  }

  .dropdown a {
    padding: 12px 24px 12px 48px;
    border-bottom: 1px solid var(--stone);
    text-align: left;
  }

  .nav-links li.has-dropdown>a::after {
    content: none;
  }

  .topbar {
    padding: 8px 20px;
    font-size: 11px;
  }

  nav {
    padding: 0 20px;
  }

  .hero-content {
    padding: 0 28px;
  }

  .hero h1 {
    font-size: clamp(32px, 8vw, 52px);
  }

  .services {
    padding: 60px 24px;
  }

  .cards-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  section {
    padding: 60px 24px;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-img-wrap img {
    height: 100%;
  }

  .two-col {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .corporal-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .btn-corporal-desktop {
    display: none !important;
  }

  .btn-corporal-mobile {
    display: inline-flex !important;
  }

  .corporal-images {
    margin-top: 0;
  }

  .photo-pair {
    grid-template-columns: 1fr;
    height: auto;
  }

  .photo-pair img {
    height: 260px;
  }

  .treatments-list {
    grid-template-columns: 1fr 1fr;
  }

  .motivos-grid {
    grid-template-columns: 1fr;
  }

  .tech-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .maps-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  footer {
    padding: 40px 24px 24px;
  }

  .page-hero {
    padding: 50px 24px 40px;
  }

  .cta-banner {
    padding: 48px 24px;
  }

  .ig-strip {
    padding: 48px 24px;
  }

  .tech-section {
    padding: 50px 24px;
  }
}

@media (max-width: 600px) {
  .topbar span {
    display: none;
  }

  .hero {
    min-height: 520px;
    height: calc(100svh - 104px);
  }

  .hero-content {
    padding: 0 20px;
  }

  .treatments-list {
    grid-template-columns: 1fr;
  }

  .social-row {
    flex-direction: column;
  }

  .btn-primary,
  .btn-sage {
    width: 55%;
    justify-content: center;
  }
}