:root {
  --rose: #c98673;
  --rose-deep: #8c4a3f;
  --clay: #b96e59;
  --blush: #f1d5ca;
  --sand: #f9efe7;
  --cream: #fffaf4;
  --gold: #b98218;
  --ink: #2d211c;
  --muted: #765f57;
  --line: rgba(140, 74, 63, 0.18);
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Nunito Sans', Arial, sans-serif;
  --shadow-soft: 0 22px 58px rgba(85, 42, 33, 0.18);
  --transition: 0.25s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

.container {
  width: min(100%, 1160px);
  margin: 0 auto;
  padding: 0 1.1rem;
}

.navbar {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  transition: background var(--transition), box-shadow var(--transition), backdrop-filter var(--transition);
}

.navbar.scrolled {
  background: rgba(255, 250, 244, 0.94);
  box-shadow: 0 1px 0 var(--line);
  backdrop-filter: blur(16px);
}

.nav-container {
  width: min(100%, 1160px);
  margin: 0 auto;
  padding: 0.75rem 1.1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.nav-logo,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0;
  transition: color var(--transition);
}

.nav-logo img,
.footer-brand img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.navbar.scrolled .nav-logo {
  color: var(--rose-deep);
}

.mobile-menu-btn {
  width: 44px;
  height: 44px;
  display: grid;
  place-content: center;
  gap: 7px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
}

.mobile-menu-btn span {
  width: 21px;
  height: 2px;
  display: block;
  background: #fff;
  transition: transform var(--transition), background var(--transition);
}

.mobile-menu-btn.active span:first-child {
  transform: translateY(4.5px) rotate(45deg);
}

.mobile-menu-btn.active span:last-child {
  transform: translateY(-4.5px) rotate(-45deg);
}

.navbar.scrolled .mobile-menu-btn {
  border-color: var(--line);
  background: var(--cream);
}

.navbar.scrolled .mobile-menu-btn span {
  background: var(--rose-deep);
}

.nav-links {
  position: absolute;
  top: calc(100% + 0.4rem);
  right: 1rem;
  width: min(250px, calc(100vw - 2rem));
  padding: 0.65rem;
  display: none;
  flex-direction: column;
  gap: 0.2rem;
  border: 1px solid var(--line);
  background: rgba(255, 250, 244, 0.97);
  box-shadow: var(--shadow-soft);
}

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

.nav-links a {
  display: block;
  padding: 0.75rem 0.85rem;
  color: var(--rose-deep);
  font-weight: 800;
  font-size: 0.9rem;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  align-items: end;
  padding: 7rem 1.1rem 3.5rem;
  overflow: hidden;
  background: var(--rose-deep);
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  background-image: url('https://images.unsplash.com/photo-1600334129128-685c5582fd35?auto=format&fit=crop&w=1800&q=85');
  background-size: cover;
  background-position: center;
  filter: saturate(0.95);
  transform: scale(1.03);
}

.hero-overlay {
  background:
    linear-gradient(180deg, rgba(45, 33, 28, 0.36) 0%, rgba(70, 34, 29, 0.34) 40%, rgba(45, 33, 28, 0.82) 100%),
    linear-gradient(90deg, rgba(45, 33, 28, 0.8) 0%, rgba(45, 33, 28, 0.24) 68%, rgba(45, 33, 28, 0.5) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 650px;
  color: #fff;
}

.hero-kicker,
.section-kicker {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero h1,
.section-title {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0;
  line-height: 0.96;
}

.hero h1 {
  margin: 0.7rem 0 1rem;
  font-size: clamp(3.25rem, 17vw, 6.8rem);
  max-width: 8ch;
}

.hero p:not(.hero-kicker) {
  max-width: 34rem;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.08rem;
}

.hero-actions,
.contact-actions {
  margin-top: 1.6rem;
  display: grid;
  gap: 0.75rem;
}

.primary-btn,
.ghost-btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.1rem;
  font-weight: 900;
  border: 1px solid transparent;
  transition: transform var(--transition), background var(--transition), color var(--transition), border-color var(--transition);
}

.primary-btn {
  color: #fff;
  background: var(--rose);
  box-shadow: 0 12px 30px rgba(201, 134, 115, 0.28);
}

.ghost-btn {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.08);
}

.ghost-btn.dark {
  color: var(--rose-deep);
  border-color: var(--line);
  background: transparent;
}

.primary-btn:hover,
.ghost-btn:hover {
  transform: translateY(-2px);
}

.intro,
.therapies,
.julieta,
.sessions,
.contact {
  padding: 4.3rem 0;
}

.intro {
  background: var(--sand);
}

.intro-grid,
.julieta-grid,
.sessions-grid,
.contact-grid {
  display: grid;
  gap: 2rem;
}

.section-title {
  margin-top: 0.45rem;
  font-size: clamp(2.5rem, 10vw, 4.7rem);
  color: var(--ink);
}

.intro-copy {
  display: grid;
  gap: 1rem;
  color: var(--muted);
  font-size: 1.04rem;
}

.therapies {
  background: var(--cream);
}

.section-head {
  max-width: 760px;
  margin-bottom: 2rem;
}

.therapy-flow {
  display: grid;
  gap: 1.2rem;
}

.therapy-row {
  display: grid;
  gap: 0;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: 0 12px 32px rgba(85, 42, 33, 0.08);
}

.therapy-image {
  min-height: 250px;
  background-size: cover;
  background-position: center;
}

.ayurveda-img {
  background-image: url('https://images.unsplash.com/photo-1544161515-4ab6ce6db874?auto=format&fit=crop&w=1200&q=82');
}

.reiki-img {
  background-image: url('https://images.unsplash.com/photo-1506126613408-eca07ce68773?auto=format&fit=crop&w=1200&q=82');
}

.face-img {
  background-image: url('https://images.unsplash.com/photo-1540555700478-4be289fbecef?auto=format&fit=crop&w=1200&q=82');
}

.therapy-content {
  padding: 1.35rem;
}

.therapy-number {
  display: inline-block;
  margin-bottom: 0.6rem;
  color: var(--gold);
  font-weight: 900;
  font-size: 0.8rem;
}

.therapy-content h3 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 8vw, 3.2rem);
  line-height: 0.98;
  color: var(--rose-deep);
}

.therapy-content p {
  margin-top: 0.85rem;
  color: var(--muted);
}

.therapy-row.compact {
  background: var(--rose-deep);
}

.therapy-row.compact .therapy-content {
  padding: 1.6rem;
}

.therapy-row.compact h3,
.therapy-row.compact p {
  color: #fff;
}

.julieta {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(43, 29, 25, 0.98) 0%, rgba(72, 36, 31, 0.98) 48%, rgba(140, 74, 63, 0.96) 100%);
}

.julieta::after {
  content: "";
  position: absolute;
  right: -6rem;
  bottom: -5rem;
  width: min(380px, 84vw);
  aspect-ratio: 1;
  background: url('Logo.png') center / contain no-repeat;
  opacity: 0.08;
  pointer-events: none;
}

.julieta-grid {
  position: relative;
  z-index: 1;
}

.julieta-card {
  padding-left: 1.1rem;
  border-left: 1px solid rgba(255, 250, 244, 0.18);
  background: transparent;
  backdrop-filter: none;
}

.julieta-card img {
  width: min(132px, 38vw);
  margin: 0 0 1.2rem;
}

.julieta-card p {
  max-width: 19rem;
  color: rgba(255, 250, 244, 0.68);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.55;
}

.julieta-copy {
  align-self: center;
  color: rgba(255, 250, 244, 0.76);
}

.julieta-copy .section-kicker {
  color: var(--gold);
}

.julieta-copy .section-title {
  color: #fff;
}

.julieta-copy p:not(.section-kicker) {
  margin-top: 1rem;
  color: rgba(255, 250, 244, 0.76);
}

.sessions {
  background: var(--sand);
  color: var(--ink);
}

.sessions .section-title,
.sessions p {
  color: var(--ink);
}

.sessions p:not(.section-kicker) {
  color: var(--muted);
}

.schedule-panel {
  display: grid;
  border: 1px solid var(--line);
  background: rgba(255, 250, 244, 0.72);
  box-shadow: 0 14px 34px rgba(85, 42, 33, 0.08);
}

.schedule-panel div {
  padding: 1.2rem;
  border-bottom: 1px solid var(--line);
}

.schedule-panel div:last-child {
  border-bottom: 0;
}

.schedule-panel span {
  display: block;
  color: var(--gold);
  font-weight: 900;
  font-size: 0.78rem;
  text-transform: uppercase;
}

.schedule-panel strong {
  display: block;
  margin-top: 0.25rem;
  font-size: 1.15rem;
}

.contact {
  background: var(--rose-deep);
  color: #fff;
}

.contact-copy {
  align-self: center;
}

.contact-copy > p:not(.section-kicker) {
  margin-top: 1rem;
  color: rgba(255, 255, 255, 0.78);
}

.contact .section-title {
  color: #fff;
}

.contact .ghost-btn.dark {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.28);
}

.contact-list {
  margin-top: 1.7rem;
  display: grid;
  gap: 0.8rem;
}

.contact-list li {
  padding-bottom: 0.8rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.contact-list span {
  display: block;
  color: var(--gold);
  font-weight: 900;
  font-size: 0.78rem;
  text-transform: uppercase;
}

.contact-list p {
  margin-top: 0.2rem;
  color: #fff;
  font-weight: 800;
}

.map-wrap {
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  background: #fff;
}

.map-wrap iframe {
  display: block;
}

.footer {
  padding: 2rem 0 1.2rem;
  background: #2b1d19;
  color: #fff;
}

.footer-grid {
  display: grid;
  gap: 1rem;
}

.footer-brand {
  color: #fff;
}

.footer p {
  color: rgba(255, 255, 255, 0.72);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.footer-links a {
  color: var(--blush);
  font-weight: 900;
}

.whatsapp-float {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 999;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  box-shadow: 0 14px 34px rgba(37, 211, 102, 0.34);
}

.whatsapp-float svg {
  width: 31px;
  height: 31px;
  fill: currentColor;
}

@media (min-width: 700px) {
  .container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .hero {
    padding-left: 0;
    padding-right: 0;
  }

  .hero-content {
    margin-left: 1.5rem;
  }

  .hero-actions,
  .contact-actions {
    display: flex;
    flex-wrap: wrap;
  }

  .intro-grid,
  .julieta-grid,
  .sessions-grid,
  .contact-grid {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }

  .therapy-row {
    grid-template-columns: minmax(260px, 0.92fr) minmax(0, 1fr);
  }

  .therapy-row.reverse {
    grid-template-columns: minmax(0, 1fr) minmax(260px, 0.92fr);
  }

  .therapy-row.reverse .therapy-image {
    order: 2;
  }

  .therapy-content {
    padding: 2rem;
  }

  .therapy-image {
    min-height: 360px;
  }

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

  .footer-grid {
    grid-template-columns: auto 1fr auto;
    align-items: center;
  }
}

@media (min-width: 980px) {
  .mobile-menu-btn {
    display: none;
  }

  .nav-links {
    position: static;
    display: flex;
    flex-direction: row;
    align-items: center;
    width: auto;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .nav-links a {
    color: #fff;
    padding: 0.55rem 0.7rem;
  }

  .navbar.scrolled .nav-links a {
    color: var(--rose-deep);
  }

  .hero {
    min-height: 94vh;
  }

  .hero-content {
    margin-left: calc((100vw - min(100vw, 1160px)) / 2 + 1.5rem);
  }

  .intro,
  .therapies,
  .julieta,
  .sessions,
  .contact {
    padding: 6rem 0;
  }

  .therapy-flow {
    gap: 1.5rem;
  }

  .julieta {
    min-height: 620px;
    display: grid;
    align-items: center;
    background:
      linear-gradient(135deg, rgba(43, 29, 25, 0.98) 0%, rgba(72, 36, 31, 0.98) 46%, rgba(140, 74, 63, 0.96) 100%);
    overflow: hidden;
  }

  .julieta::before {
    content: "";
    position: absolute;
    inset: 1.4rem;
    border: 1px solid rgba(255, 250, 244, 0.1);
    pointer-events: none;
  }

  .julieta::after {
    right: max(-2rem, calc((100vw - 1160px) / 2 - 3rem));
    top: 50%;
    width: min(520px, 38vw);
    transform: translateY(-50%);
  }

  .julieta-grid {
    position: relative;
    z-index: 1;
    grid-template-columns: minmax(220px, 0.42fr) minmax(0, 1fr);
    gap: clamp(4rem, 9vw, 8rem);
    align-items: center;
  }

  .julieta-card {
    align-self: center;
    min-height: 0;
    padding: 0 0 0 1.35rem;
    display: block;
    border: 0;
    border-left: 1px solid rgba(255, 250, 244, 0.2);
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
  }

  .julieta-card img {
    width: 112px;
    margin: 0 0 2rem;
    opacity: 0.9;
  }

  .julieta-card p {
    padding: 0;
    max-width: 18rem;
    color: rgba(255, 250, 244, 0.68);
    font-family: var(--font-body);
    font-size: 1.02rem;
    font-weight: 700;
    line-height: 1.55;
    text-shadow: none;
  }

  .julieta-copy {
    max-width: 820px;
    padding: 0;
    color: rgba(255, 250, 244, 0.76);
  }

  .julieta-copy .section-kicker {
    color: var(--gold);
  }

  .julieta-copy .section-title {
    color: #fff;
    max-width: 11ch;
    font-size: clamp(4.2rem, 7vw, 7.6rem);
    line-height: 0.86;
  }

  .julieta-copy p:not(.section-kicker) {
    max-width: 48rem;
    color: rgba(255, 250, 244, 0.76);
    font-size: 1.12rem;
    line-height: 1.78;
  }

  .julieta-copy p:not(.section-kicker):first-of-type {
    margin-top: 1.6rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 250, 244, 0.16);
  }
}

@media (max-width: 420px) {
  .nav-logo span {
    font-size: 1.2rem;
  }

  .nav-logo img {
    width: 38px;
    height: 38px;
  }

  .hero h1 {
    font-size: clamp(3rem, 16vw, 4.2rem);
  }
}
