@import url('https://fonts.googleapis.com/css2?family=Cormorant:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500&family=Karla:ital,wght@0,300;0,400;0,500;1,300;1,400&display=swap');

/* ═══════════════════════════════════════
   RESET & BASE
   ═══════════════════════════════════════ */

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

:root {
  --cream: #FAF6F0;
  --cream-deep: #F0E8DB;
  --sand: #E8DDD0;
  --caramel: #C09E7B;
  --caramel-light: #D4BC9A;
  --caramel-dark: #A88560;
  --honey: #D4A85C;
  --chocolate: #3B302B;
  --chocolate-mid: #5A4A40;
  --chocolate-light: #7A6A5E;
  --warm-white: #FDFBF8;
  --blush: #E8D5C4;
  --sage: #B8C4A8;

  --font-display: 'Cormorant', Georgia, 'Times New Roman', serif;
  --font-body: 'Karla', 'Helvetica Neue', Arial, sans-serif;

  --nav-height: 60px;
  --section-gap: clamp(80px, 12vw, 160px);
  --container: min(1080px, 90vw);
  --container-narrow: min(720px, 88vw);
}

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

body {
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--chocolate);
  background: var(--cream);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

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

ul, ol { list-style: none; }

/* ═══════════════════════════════════════
   BILINGUAL SYSTEM
   ═══════════════════════════════════════ */

[lang="es"] .en { display: none !important; }
[lang="en"] .es { display: none !important; }

.lang-switch {
  display: flex;
  align-items: center;
  gap: 2px;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.lang-switch button {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--chocolate-light);
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  padding: 4px 6px;
  transition: color 0.3s ease;
}

.lang-switch button.active {
  color: var(--chocolate);
}

.lang-switch button:hover {
  color: var(--caramel-dark);
}

.lang-switch span {
  color: var(--sand);
  user-select: none;
}


/* ═══════════════════════════════════════
   TYPOGRAPHY
   ═══════════════════════════════════════ */

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 300;
  line-height: 1.15;
}

h1 {
  font-size: clamp(2.8rem, 6vw, 5rem);
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  letter-spacing: -0.01em;
}

h3 {
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  font-weight: 400;
}

h4 {
  font-size: clamp(1.1rem, 1.8vw, 1.35rem);
  font-weight: 500;
}

.text-sm {
  font-size: 0.85rem;
}

.text-xs {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 400;
}

.text-light {
  color: var(--chocolate-light);
}

.text-center { text-align: center; }

.italic {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
}


/* ═══════════════════════════════════════
   LAYOUT
   ═══════════════════════════════════════ */

.container {
  width: var(--container);
  margin: 0 auto;
}

.container--narrow {
  width: var(--container-narrow);
  margin: 0 auto;
}

section {
  padding: var(--section-gap) 0;
}

.divider {
  width: 40px;
  height: 1px;
  background: var(--caramel);
  margin: 0 auto;
}

.divider--left {
  margin: 0;
}

.spacer { height: clamp(40px, 6vw, 80px); }
.spacer--sm { height: clamp(20px, 3vw, 40px); }
.spacer--lg { height: clamp(60px, 10vw, 120px); }


/* ═══════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════ */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-height);
  background: var(--cream);
  transition: background 0.4s ease, box-shadow 0.4s ease;
}

.nav.scrolled {
  background: rgba(250, 246, 240, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--sand);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 40px);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.15rem;
  letter-spacing: 0.06em;
  color: var(--chocolate);
  text-decoration: none;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(16px, 3vw, 32px);
}

.nav-links a {
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--chocolate-light);
  transition: color 0.3s ease;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--caramel);
  transition: width 0.3s ease;
}

.nav-links a:hover {
  color: var(--chocolate);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-links a.active {
  color: var(--chocolate);
}

.nav-links a.active::after {
  width: 100%;
}

.nav-cta {
  font-family: var(--font-body) !important;
  font-size: 0.7rem !important;
  letter-spacing: 0.12em !important;
  text-transform: uppercase !important;
  padding: 10px 20px !important;
  border: 1px solid var(--caramel) !important;
  color: var(--chocolate) !important;
  transition: all 0.3s ease !important;
}

.nav-cta:hover {
  background: var(--caramel) !important;
  color: var(--warm-white) !important;
}

.nav-cta::after {
  display: none !important;
}

/* Mobile nav */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 28px;
  height: 20px;
  position: relative;
  z-index: 110;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 1px;
  background: var(--chocolate);
  position: absolute;
  left: 0;
  transition: all 0.3s ease;
}

.nav-toggle span:nth-child(1) { top: 0; }
.nav-toggle span:nth-child(2) { top: 50%; }
.nav-toggle span:nth-child(3) { top: 100%; }

.nav-toggle.open span:nth-child(1) {
  top: 50%;
  transform: rotate(45deg);
}

.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.open span:nth-child(3) {
  top: 50%;
  transform: rotate(-45deg);
}


/* ═══════════════════════════════════════
   HERO
   ═══════════════════════════════════════ */

.hero {
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: var(--nav-height) 0 0;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

/* Layered gradient evoking balayage color blending */
.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 25% 40%, #D4BC9A44 0%, transparent 70%),
    radial-gradient(ellipse 60% 80% at 75% 60%, #C09E7B33 0%, transparent 60%),
    radial-gradient(ellipse 100% 50% at 50% 100%, #E8DDD044 0%, transparent 50%),
    linear-gradient(175deg, var(--cream) 0%, var(--cream-deep) 40%, var(--blush) 70%, var(--sand) 100%);
}

/* Soft noise texture overlay */
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.3;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.08'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 clamp(24px, 5vw, 60px);
  max-width: 800px;
}

.hero-label {
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-weight: 400;
  color: var(--caramel-dark);
  margin-bottom: clamp(16px, 3vw, 28px);
  opacity: 0;
  animation: fadeUp 1s ease 0.3s forwards;
}

.hero h1 {
  color: var(--chocolate);
  margin-bottom: clamp(16px, 3vw, 24px);
  opacity: 0;
  animation: fadeUp 1s ease 0.5s forwards;
}

.hero-tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  color: var(--chocolate-mid);
  line-height: 1.6;
  max-width: 520px;
  margin: 0 auto clamp(28px, 5vw, 48px);
  opacity: 0;
  animation: fadeUp 1s ease 0.7s forwards;
}

.hero-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 0.8rem;
  color: var(--chocolate-light);
  opacity: 0;
  animation: fadeUp 1s ease 0.9s forwards;
}

.hero-rating .stars {
  color: var(--honey);
  letter-spacing: 2px;
  font-size: 0.9rem;
}

.hero-actions {
  margin-top: clamp(32px, 5vw, 48px);
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  opacity: 0;
  animation: fadeUp 1s ease 1.1s forwards;
}

/* Decorative swash below hero */
.hero-swash {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to bottom, transparent, var(--cream));
  z-index: 1;
}


/* ═══════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════ */

.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 14px 32px;
  border: 1px solid var(--caramel);
  color: var(--chocolate);
  background: transparent;
  cursor: pointer;
  transition: all 0.35s ease;
  text-decoration: none;
}

.btn:hover {
  background: var(--caramel);
  color: var(--warm-white);
  border-color: var(--caramel);
}

.btn--filled {
  background: var(--caramel);
  color: var(--warm-white);
  border-color: var(--caramel);
}

.btn--filled:hover {
  background: var(--caramel-dark);
  border-color: var(--caramel-dark);
}

.btn--ghost {
  border-color: var(--chocolate-light);
}

.btn--ghost:hover {
  background: var(--chocolate);
  color: var(--cream);
  border-color: var(--chocolate);
}

.btn--sm {
  padding: 10px 22px;
  font-size: 0.68rem;
}


/* ═══════════════════════════════════════
   SECTIONS — SERVICES OVERVIEW
   ═══════════════════════════════════════ */

.services-intro {
  text-align: center;
  margin-bottom: clamp(40px, 7vw, 80px);
}

.services-intro h2 {
  margin-bottom: 16px;
}

.services-intro p {
  max-width: 500px;
  margin: 0 auto;
  color: var(--chocolate-light);
  font-size: 0.95rem;
}

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

.service-item {
  padding: clamp(28px, 4vw, 48px) 0;
  border-top: 1px solid var(--sand);
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: clamp(20px, 4vw, 48px);
  align-items: start;
}

.service-item:last-child {
  border-bottom: 1px solid var(--sand);
}

.service-name {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.3rem, 2.2vw, 1.7rem);
  line-height: 1.3;
}

.service-desc {
  font-size: 0.92rem;
  color: var(--chocolate-mid);
  line-height: 1.75;
}


/* ═══════════════════════════════════════
   TREATMENT PAGE — DETAILED CARDS
   ═══════════════════════════════════════ */

.treatment-section {
  padding: clamp(48px, 8vw, 100px) 0;
}

.treatment-section:nth-child(even) {
  background: var(--cream-deep);
}

.treatment-header {
  margin-bottom: clamp(20px, 3vw, 32px);
}

.treatment-header .text-xs {
  color: var(--caramel-dark);
  margin-bottom: 8px;
}

.treatment-body {
  max-width: 600px;
}

.treatment-body p {
  font-size: 0.95rem;
  color: var(--chocolate-mid);
  line-height: 1.8;
  margin-bottom: 1em;
}

.treatment-body p:last-child {
  margin-bottom: 0;
}

.treatment-detail {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--caramel-dark);
  margin-top: clamp(16px, 2vw, 24px);
}


/* ═══════════════════════════════════════
   RATING / SOCIAL PROOF
   ═══════════════════════════════════════ */

.rating-section {
  background: var(--cream-deep);
  text-align: center;
}

.rating-big {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(4rem, 10vw, 7rem);
  line-height: 1;
  color: var(--chocolate);
  margin-bottom: 8px;
}

.rating-stars {
  color: var(--honey);
  font-size: 1.4rem;
  letter-spacing: 4px;
  margin-bottom: 12px;
}

.rating-label {
  font-size: 0.85rem;
  color: var(--chocolate-light);
}

.rating-label a {
  border-bottom: 1px solid var(--sand);
  transition: border-color 0.3s ease;
}

.rating-label a:hover {
  border-color: var(--caramel);
}


/* ═══════════════════════════════════════
   QUOTE / TESTIMONIAL
   ═══════════════════════════════════════ */

.quote-section {
  background: var(--chocolate);
  color: var(--cream);
  text-align: center;
}

.quote-text {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.5rem, 3.5vw, 2.6rem);
  line-height: 1.4;
  max-width: 700px;
  margin: 0 auto clamp(16px, 3vw, 28px);
}

.quote-attr {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--caramel-light);
}


/* ═══════════════════════════════════════
   HOURS & INFO
   ═══════════════════════════════════════ */

.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}

.hours-list {
  margin-top: 16px;
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--sand);
  font-size: 0.88rem;
}

.hours-list .day {
  font-weight: 400;
}

.hours-list .time {
  color: var(--chocolate-light);
}

.hours-list .closed {
  color: var(--caramel-dark);
  font-style: italic;
  font-family: var(--font-display);
}

.info-block h3 {
  margin-bottom: 4px;
}

.info-block p {
  font-size: 0.9rem;
  color: var(--chocolate-mid);
  line-height: 1.7;
  margin-top: 16px;
}

.info-block a.map-link {
  display: inline-block;
  margin-top: 12px;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 400;
  border-bottom: 1px solid var(--caramel);
  padding-bottom: 2px;
  transition: border-color 0.3s ease;
}

.info-block a.map-link:hover {
  border-color: var(--chocolate);
}


/* ═══════════════════════════════════════
   CONTACT PAGE
   ═══════════════════════════════════════ */

.contact-hero {
  padding: calc(var(--nav-height) + clamp(60px, 10vw, 120px)) 0 clamp(40px, 6vw, 80px);
  text-align: center;
  background: var(--cream-deep);
}

.contact-hero h1 {
  margin-bottom: 12px;
}

.contact-hero p {
  color: var(--chocolate-light);
  font-size: 0.95rem;
  max-width: 460px;
  margin: 0 auto;
}

.contact-methods {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: clamp(24px, 4vw, 40px);
}

.contact-card {
  padding: clamp(28px, 4vw, 40px);
  background: var(--warm-white);
  border: 1px solid var(--sand);
  text-align: center;
}

.contact-card h3 {
  margin-bottom: 8px;
}

.contact-card p {
  font-size: 0.88rem;
  color: var(--chocolate-light);
  margin-bottom: 20px;
  line-height: 1.6;
}

.contact-card .btn {
  width: 100%;
  text-align: center;
}


/* ═══════════════════════════════════════
   PAGE HEADERS (sub-pages)
   ═══════════════════════════════════════ */

.page-header {
  padding: calc(var(--nav-height) + clamp(60px, 10vw, 120px)) 0 clamp(40px, 6vw, 80px);
  text-align: center;
  position: relative;
  background: var(--cream-deep);
}

.page-header h1 {
  margin-bottom: 12px;
}

.page-header p {
  color: var(--chocolate-light);
  font-size: 0.95rem;
  max-width: 480px;
  margin: 0 auto;
  font-family: var(--font-display);
  font-style: italic;
}


/* ═══════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════ */

.footer {
  background: var(--chocolate);
  color: var(--cream-deep);
  padding: clamp(40px, 6vw, 60px) 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: clamp(32px, 5vw, 60px);
  align-items: start;
}

.footer-brand {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.15rem;
  letter-spacing: 0.06em;
  margin-bottom: 12px;
}

.footer-tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.88rem;
  color: var(--chocolate-light);
  line-height: 1.5;
}

.footer h4 {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--caramel-light);
  margin-bottom: 14px;
}

.footer ul li {
  margin-bottom: 8px;
}

.footer ul li a {
  font-size: 0.85rem;
  color: var(--cream-deep);
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.footer ul li a:hover {
  opacity: 1;
}

.footer-bottom {
  margin-top: clamp(28px, 4vw, 40px);
  padding-top: 20px;
  border-top: 1px solid rgba(250, 246, 240, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.72rem;
  color: var(--chocolate-light);
}


/* ═══════════════════════════════════════
   ANIMATIONS
   ═══════════════════════════════════════ */

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.fade-in {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}


/* ═══════════════════════════════════════
   DECORATIVE — HORIZONTAL RULE
   ═══════════════════════════════════════ */

.ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: clamp(20px, 4vw, 40px) 0;
}

.ornament::before,
.ornament::after {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--sand);
}

.ornament-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--caramel);
}


/* ═══════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════ */

@media (max-width: 860px) {
  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--cream);
    flex-direction: column;
    justify-content: center;
    gap: 28px;
    z-index: 99;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    font-size: 1rem;
    letter-spacing: 0.15em;
  }

  .nav-toggle {
    display: block;
  }

  .service-item {
    grid-template-columns: 1fr;
    gap: 8px;
  }

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

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 2.4rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
    text-align: center;
  }

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


/* ═══════════════════════════════════════
   SCROLL INDICATOR
   ═══════════════════════════════════════ */

.scroll-hint {
  position: absolute;
  bottom: clamp(24px, 4vw, 40px);
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  opacity: 0;
  animation: fadeIn 1s ease 1.5s forwards;
}

.scroll-hint span {
  display: block;
  width: 1px;
  height: 32px;
  background: var(--caramel);
  margin: 0 auto;
  animation: scrollPulse 2s ease infinite;
}

@keyframes scrollPulse {
  0%, 100% { transform: scaleY(1); opacity: 0.4; }
  50% { transform: scaleY(1.5); opacity: 1; }
}


/* ═══════════════════════════════════════
   INSTAGRAM CALLOUT
   ═══════════════════════════════════════ */

.ig-callout {
  text-align: center;
}

.ig-callout a {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 400;
  color: var(--chocolate-light);
  border-bottom: 1px solid var(--sand);
  padding-bottom: 2px;
  transition: all 0.3s ease;
}

.ig-callout a:hover {
  color: var(--chocolate);
  border-color: var(--caramel);
}
