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

:root {
  --sand: #e9dcc9;
  --champagne: #d6c09b;
  --caramel: #b7925e;
  --bronze: #8b6333;
  --ink: #16110d;
  --text: #2f241b;
  --muted: #6d5841;
  --paper: rgba(255, 250, 244, 0.9);
  --line: rgba(87, 61, 31, 0.14);
  --shadow: 0 22px 50px rgba(24, 16, 8, 0.16);
  --mobile-shell: min(100% - 2rem, 30rem);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Manrope", sans-serif;
  color: var(--text);
  line-height: 1.65;
  background: linear-gradient(180deg, #f7f1e8 0%, #eadfce 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.85), transparent 34%),
    linear-gradient(180deg, rgba(248, 241, 231, 0.56), rgba(214, 192, 160, 0.72)),
    url("IMG_6006.JPG") center top / cover no-repeat;
  opacity: 0.34;
  z-index: -2;
  pointer-events: none;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(255, 255, 255, 0.28), transparent 24%),
    radial-gradient(circle at 85% 16%, rgba(183, 146, 94, 0.16), transparent 30%);
  z-index: -1;
  pointer-events: none;
}

.container {
  width: min(1140px, calc(100% - 2rem));
  margin: 0 auto;
}

.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  color: #fff7f8;
  background:
    linear-gradient(115deg, rgba(15, 11, 8, 0.88), rgba(81, 57, 31, 0.56)),
    url("IMG_6006.JPG") center center / cover no-repeat;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 18%, rgba(255, 255, 255, 0.08), transparent 22%),
    radial-gradient(circle at 88% 24%, rgba(214, 192, 155, 0.12), transparent 20%);
  pointer-events: none;
}

.page-hero {
  min-height: auto;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.4rem 0 0.8rem;
  position: relative;
  z-index: 2;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: inherit;
}

.nav-brand-copy {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.nav-logo {
  width: 160px;
  height: auto;
  display: block;
}

.nav-title,
.nav-subtitle,
.eyebrow,
.mini-title,
.card-badge,
.feature-kicker,
.treatment-tag,
.location-label,
.section-title span {
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.nav-title {
  font-size: 0.82rem;
  font-weight: 800;
  color: #e8d2af;
}

.nav-subtitle {
  font-size: 0.68rem;
  color: rgba(248, 240, 228, 0.68);
}

.nav-links {
  display: flex;
  gap: 1.1rem;
  list-style: none;
  padding: 0.8rem 1rem;
  border-radius: 999px;
  background: rgba(24, 17, 11, 0.4);
  border: 1px solid rgba(225, 205, 175, 0.18);
  box-shadow: 0 16px 34px rgba(8, 3, 5, 0.16);
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.28rem;
  width: 3rem;
  height: 3rem;
  border: 1px solid rgba(225, 205, 175, 0.24);
  border-radius: 50%;
  background: rgba(24, 17, 11, 0.52);
  box-shadow: 0 16px 34px rgba(8, 3, 5, 0.16);
  cursor: pointer;
  padding: 0;
}

.nav-toggle span {
  display: block;
  width: 1.1rem;
  height: 2px;
  border-radius: 999px;
  background: #fff6f5;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle.is-open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

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

.nav-toggle.is-open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.nav-links a {
  color: #fff6f5;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  white-space: nowrap;
}

.nav-links a.active {
  color: #1f160e;
  background: linear-gradient(135deg, #e7d2b1, #c8a36f);
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
}

.hero-content {
  position: relative;
  z-index: 1;
  min-height: calc(100vh - 88px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 0 4.5rem;
}

.hero-text {
  max-width: 760px;
  text-align: center;
}

.hero-split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.78fr);
  gap: 1.4rem;
  align-items: center;
}

.hero-card {
  padding: 1.8rem;
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255, 249, 240, 0.14), rgba(255, 249, 240, 0.06));
  border: 1px solid rgba(231, 212, 184, 0.16);
  box-shadow: 0 18px 40px rgba(12, 8, 5, 0.14);
  backdrop-filter: blur(6px);
}

.hero-card p {
  color: rgba(247, 240, 229, 0.88);
}

.eyebrow,
.mini-title,
.card-badge,
.feature-kicker,
.treatment-tag,
.location-label,
.section-title span {
  font-size: 0.74rem;
  font-weight: 800;
  color: #c9a66d;
}

.hero-text h1,
.section-title h2,
.story-copy h2,
.experience-band h2,
.contact-copy h2 {
  font-family: "Cormorant Garamond", serif;
  line-height: 0.96;
}

.hero-text h1 {
  max-width: 12ch;
  font-size: clamp(3.2rem, 7vw, 6rem);
  margin: 0.95rem auto 1.1rem;
}

.hero-text p {
  max-width: 58ch;
  color: rgba(247, 240, 229, 0.84);
  font-size: 1.02rem;
  margin: 0 auto;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-top: 1.8rem;
}

.meta-chip {
  padding: 0.65rem 0.95rem;
  border-radius: 999px;
  background: rgba(25, 18, 12, 0.36);
  border: 1px solid rgba(221, 198, 162, 0.16);
  color: #f3eadf;
  font-size: 0.92rem;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 2rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 999px;
  text-decoration: none;
  cursor: pointer;
  padding: 0.95rem 1.5rem;
  font: inherit;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 26px rgba(14, 5, 10, 0.18);
}

.btn-primary {
  color: #fffaf4;
  background: linear-gradient(135deg, #c8a36f, #8a6338);
}

.btn-secondary {
  color: #fff8ef;
  background: rgba(28, 20, 12, 0.28);
  border: 1px solid rgba(226, 205, 175, 0.2);
}

.feature-card,
.story-panel,
.treatment-card,
.location-card,
.contact-box,
.contact-action-card {
  border-radius: 28px;
}

.section {
  position: relative;
  padding: 5.5rem 0;
}

.intro-strip {
  margin-top: -2.8rem;
  padding-top: 0;
}

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

.feature-card {
  padding: 1.6rem;
  background:
    linear-gradient(180deg, rgba(255, 252, 246, 0.92), rgba(236, 223, 203, 0.96)),
    var(--paper);
  border: 1px solid rgba(133, 97, 56, 0.12);
  box-shadow: var(--shadow);
}

.feature-card h3,
.treatment-card h3,
.location-card h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  line-height: 1;
  margin: 0.55rem 0 0.8rem;
}

.story-section {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.78fr);
  gap: 1.4rem;
  align-items: start;
}

.story-copy h2,
.experience-band h2,
.contact-copy h2,
.section-title h2 {
  font-size: clamp(2.6rem, 5vw, 4.4rem);
  margin-top: 0.65rem;
}

.story-copy p + p {
  margin-top: 1rem;
}

.story-panel {
  background:
    linear-gradient(180deg, rgba(28, 20, 12, 0.96), rgba(65, 46, 24, 0.98)),
    #21170f;
  color: #f5ede2;
  padding: 1.65rem;
  box-shadow: var(--shadow);
}

.panel-line + .panel-line {
  margin-top: 1.15rem;
  padding-top: 1.15rem;
  border-top: 1px solid rgba(222, 201, 168, 0.16);
}

.panel-line strong,
.contact-action-card strong {
  display: block;
  margin-bottom: 0.2rem;
}

.panel-line a {
  color: #ddc090;
  text-decoration: none;
}

.section-title {
  text-align: center;
  margin-bottom: 2.3rem;
}

.section-title.align-left {
  text-align: left;
}

.section-title h2 {
  color: var(--text);
}

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

.treatment-card {
  background:
    linear-gradient(180deg, rgba(255, 252, 246, 0.92), rgba(237, 224, 204, 0.96)),
    var(--paper);
  border: 1px solid var(--line);
  padding: 1.8rem;
  box-shadow: var(--shadow);
}

.featured-treatment {
  background:
    linear-gradient(180deg, rgba(215, 194, 160, 0.62), rgba(255, 250, 244, 0.96)),
    var(--paper);
}

.treatment-list {
  list-style: none;
  margin-top: 1.1rem;
}

.treatment-list li {
  position: relative;
  padding: 0.72rem 0 0.72rem 1.35rem;
  border-bottom: 1px solid rgba(92, 67, 38, 0.1);
}

.treatment-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.22rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, #c8a26e, #7f5a32);
}

.treatment-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem;
  width: min(100%, 50rem);
  margin: 0 auto;
}

.gallery-shot {
  margin: 0;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: rgba(255, 250, 244, 0.7);
}

.gallery-shot img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 4.4;
  object-fit: cover;
}

.dark-band {
  background:
    linear-gradient(135deg, rgba(20, 14, 9, 0.98), rgba(82, 58, 31, 0.94)),
    linear-gradient(90deg, #16110d, #8b6333);
  color: #f6ede2;
}

.experience-band {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 2rem;
  align-items: start;
}

.experience-list {
  display: grid;
  gap: 1rem;
}

.experience-list p {
  padding: 1.05rem 1.15rem;
  border-left: 2px solid rgba(214, 192, 155, 0.34);
  background: rgba(255, 255, 255, 0.04);
  border-radius: 18px;
}

.location-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
}

.map-card {
  margin-top: 1.2rem;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.map-card iframe {
  display: block;
  width: 100%;
  height: 380px;
  border: 0;
  filter: saturate(0.8) contrast(1.02);
}

.location-card {
  padding: 1.75rem;
  background:
    linear-gradient(180deg, rgba(255, 252, 246, 0.92), rgba(236, 223, 203, 0.96)),
    var(--paper);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.accent-card {
  background:
    linear-gradient(180deg, rgba(31, 22, 14, 0.96), rgba(84, 60, 34, 0.98)),
    #261b12;
  color: #fbf4ea;
}

.accent-card p {
  color: rgba(248, 239, 226, 0.82);
}

.text-link {
  color: var(--bronze);
  font-weight: 700;
  text-decoration: none;
}

.contact-section {
  padding-top: 1rem;
}

.contact-box {
  padding: 2rem;
  background:
    linear-gradient(140deg, rgba(23, 16, 10, 0.96), rgba(76, 54, 30, 0.94)),
    #251a11;
  color: #fcf4ea;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 1.4rem;
  box-shadow: var(--shadow);
  border: 1px solid rgba(219, 197, 164, 0.14);
}

.contact-copy p {
  color: rgba(247, 239, 228, 0.84);
  max-width: 54ch;
}

.contact-list {
  display: grid;
  gap: 0.45rem;
  margin-top: 1.4rem;
}

.contact-list a {
  color: #e3c998;
  text-decoration: none;
  font-weight: 700;
}

.contact-actions {
  display: grid;
  gap: 1rem;
}

.contact-action-card {
  display: block;
  padding: 1.3rem 1.35rem;
  text-decoration: none;
  color: inherit;
  background: rgba(255, 247, 236, 0.06);
  border: 1px solid rgba(220, 198, 166, 0.12);
}

.contact-action-card span {
  color: rgba(247, 239, 228, 0.78);
}

.page-section {
  padding-top: 1rem;
}

.page-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem;
}

.info-card {
  padding: 1.7rem;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 252, 246, 0.92), rgba(236, 223, 203, 0.96)),
    var(--paper);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.info-card h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  line-height: 1;
  margin: 0.45rem 0 0.75rem;
}

.info-card ul {
  list-style: none;
  margin-top: 1rem;
}

.info-card li {
  position: relative;
  padding: 0.7rem 0 0.7rem 1.35rem;
  border-bottom: 1px solid rgba(92, 67, 38, 0.1);
}

.info-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.18rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, #c8a26e, #7f5a32);
}

.cta-panel {
  padding: 2rem;
  border-radius: 32px;
  background:
    linear-gradient(140deg, rgba(23, 16, 10, 0.96), rgba(76, 54, 30, 0.94)),
    #251a11;
  color: #fcf4ea;
  box-shadow: var(--shadow);
  border: 1px solid rgba(219, 197, 164, 0.14);
}

.cta-panel p {
  color: rgba(247, 239, 228, 0.82);
  max-width: 52ch;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.3rem;
}

.footer-link {
  color: inherit;
  text-decoration: none;
  font-weight: 700;
}

.contact-action-card strong,
.contact-action-card span,
.location-card p,
.feature-card p,
.story-copy p,
.experience-list p,
.contact-copy p {
  overflow-wrap: anywhere;
}

.footer {
  padding: 1.35rem 0 2rem;
  color: #4c3a28;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.whatsapp-float {
  position: fixed;
  right: 1.2rem;
  bottom: 1.2rem;
  z-index: 30;
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.9rem 1rem;
  border-radius: 999px;
  background: #25d366;
  color: #fff;
  text-decoration: none;
  font-weight: 800;
  box-shadow: 0 18px 32px rgba(20, 20, 20, 0.22);
}

.whatsapp-float svg {
  width: 1.35rem;
  height: 1.35rem;
  flex: 0 0 auto;
}

@media (max-width: 980px) {
  .hero-content,
  .hero-split,
  .feature-grid,
  .story-section,
  .treatments-grid,
  .treatment-gallery,
  .experience-band,
  .location-grid,
  .contact-box,
  .page-grid {
    grid-template-columns: 1fr;
  }

  .hero-content {
    min-height: auto;
    gap: 1.8rem;
    padding: 1.6rem 0 3.2rem;
  }

  .hero-text h1 {
    max-width: 100%;
  }

  .intro-strip {
    margin-top: 0;
    padding-top: 4rem;
  }

  .map-card iframe {
    height: 320px;
  }
}

@media (max-width: 720px) {
  body {
    line-height: 1.55;
  }

  .hero-mobile-hide {
    display: none;
  }

  .container {
    width: var(--mobile-shell);
  }

  .hero {
    min-height: auto;
  }

  .navbar {
    align-items: center;
    flex-wrap: wrap;
    gap: 0.55rem;
    padding-top: 1rem;
    padding-inline: 0.15rem;
  }

  .nav-toggle {
    display: inline-flex;
    margin-left: auto;
    z-index: 3;
  }

  .nav-links {
    display: none;
    width: 100%;
    flex-direction: column;
    gap: 0.4rem;
    padding: 0.65rem;
    border-radius: 22px;
    overflow: hidden;
    background: rgba(28, 20, 12, 0.92);
    box-shadow: 0 18px 34px rgba(16, 10, 6, 0.2);
  }

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

  .nav-links a {
    display: block;
    width: 100%;
    padding: 0.8rem 0.95rem;
    border-radius: 16px;
    background: rgba(255, 250, 244, 0.06);
    font-size: 0.82rem;
    text-align: left;
  }

  .nav-links a.active {
    padding: 0.8rem 0.95rem;
    border-radius: 16px;
  }

  .hero-content {
    gap: 0.9rem;
    padding: 0.95rem 0 2rem;
  }

  .hero-text h1 {
    font-size: clamp(2.1rem, 11vw, 3rem);
    line-height: 0.94;
    margin: 0.45rem auto 0.65rem;
  }

  .hero-text p {
    max-width: 36ch;
    font-size: 0.9rem;
  }

  .hero-text,
  .story-panel,
  .treatment-card,
  .location-card,
  .contact-box {
    box-shadow: 0 12px 26px rgba(24, 16, 8, 0.1);
  }

  .hero-meta {
    gap: 0.45rem;
    margin-top: 0.9rem;
  }

  .meta-chip {
    width: auto;
    padding: 0.5rem 0.7rem;
    font-size: 0.8rem;
  }

  .hero-buttons {
    gap: 0.6rem;
    margin-top: 1rem;
  }

  .hero-buttons .btn,
  .location-card .btn {
    width: 100%;
    padding: 0.82rem 1rem;
    font-size: 0.9rem;
  }

  .section {
    padding: 2.8rem 0;
  }

  .story-section,
  .treatments-grid,
  .location-grid,
  .contact-box,
  .experience-band {
    gap: 0.9rem;
  }

  .intro-strip {
    display: none;
  }

  .section-title,
  .section-title.align-left {
    text-align: left;
    margin-bottom: 1rem;
  }

  .section-title h2,
  .story-copy h2,
  .experience-band h2,
  .contact-copy h2 {
    font-size: clamp(1.8rem, 8vw, 2.4rem);
    line-height: 0.98;
  }

  .feature-card,
  .story-panel,
  .treatment-card,
  .location-card,
  .contact-box,
  .contact-action-card,
  .info-card,
  .cta-panel,
  .hero-card {
    padding: 1rem;
    border-radius: 24px;
  }

  .feature-card h3,
  .treatment-card h3,
  .location-card h3 {
    font-size: 1.35rem;
    margin: 0.35rem 0 0.55rem;
  }

  .treatment-list li {
    padding: 0.62rem 0 0.62rem 1rem;
  }

  .contact-box {
    gap: 0.8rem;
  }

  .cta-actions {
    flex-direction: column;
  }

  .footer-inner {
    flex-direction: column;
    width: var(--mobile-shell);
    margin: 0 auto;
  }

  .whatsapp-float {
    right: max(1rem, calc((100vw - var(--mobile-shell)) / 2));
    bottom: calc(1rem + env(safe-area-inset-bottom));
    padding: 0.85rem;
  }

  .whatsapp-float span {
    display: none;
  }
}

@media (max-width: 480px) {
  .container {
    width: min(100% - 1.4rem, 100%);
  }

  .nav-brand {
    gap: 0.45rem;
  }

  .nav-logo {
    width: 110px;
  }

  .hero-text h1 {
    font-size: clamp(1.9rem, 10vw, 2.6rem);
  }

  .hero-text p {
    font-size: 0.88rem;
  }

  .eyebrow,
  .mini-title,
  .card-badge,
  .feature-kicker,
  .treatment-tag,
  .location-label,
  .section-title span {
    font-size: 0.68rem;
    letter-spacing: 0.13em;
  }

  .story-panel,
  .treatment-card,
  .location-card,
  .contact-box,
  .contact-action-card,
  .map-card,
  .gallery-shot,
  .info-card,
  .cta-panel,
  .hero-card {
    border-radius: 22px;
  }

  .hero-buttons .btn,
  .location-card .btn {
    width: 100%;
  }

  .map-card iframe {
    height: 220px;
  }

  .whatsapp-float {
    right: 0.9rem;
    bottom: calc(0.9rem + env(safe-area-inset-bottom));
  }
}
