:root {
  --color-black: #080706;
  --color-brown-900: #120d0a;
  --color-brown-800: #1e1510;
  --color-brown-700: #3a281d;
  --color-gold: #c6a16b;
  --color-gold-soft: #d5b785;
  --color-beige: #d9c8b5;
  --color-offwhite: #f5f0e8;
  --color-terracotta: #a76542;
  --font-serif: "Cormorant Garamond", Georgia, serif;
  --font-sans: "Inter", Arial, sans-serif;
  --header-height: 78px;
  --section-pad: clamp(40px, 4.8vw, 64px);
  --page-x: clamp(22px, 5.6vw, 96px);
  --radius-xl: 24px;
  --radius-md: 8px;
  --shadow-soft: 0 24px 80px rgba(0, 0, 0, 0.34);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--color-black);
  color: var(--color-offwhite);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.7;
}

body.menu-open {
  overflow: hidden;
}

.menu-open .site-header {
  background: rgba(8, 7, 6, 0.98);
  border-bottom: 1px solid rgba(198, 161, 107, 0.16);
  backdrop-filter: blur(18px);
}

img,
svg {
  display: block;
}

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

button,
input,
textarea {
  font: inherit;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px var(--page-x);
  background: linear-gradient(180deg, rgba(8, 7, 6, 0.88), rgba(8, 7, 6, 0));
  transition: background 220ms ease, border-color 220ms ease, height 220ms ease;
}

.site-header.is-scrolled {
  height: 64px;
  background: rgba(8, 7, 6, 0.84);
  border-bottom: 1px solid rgba(198, 161, 107, 0.12);
  backdrop-filter: blur(18px);
}

.brand {
  position: relative;
  z-index: 22;
  width: clamp(220px, 17.2vw, 286px);
  height: 42px;
  overflow: hidden;
}

.brand-frame {
  position: absolute;
  inset: 50% auto auto 50%;
  width: clamp(270px, 23vw, 330px);
  transform: translate(-50%, -50%);
}

.brand img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(26px, 4vw, 58px);
}

.nav-link {
  position: relative;
  padding: 10px 0 15px;
  color: rgba(245, 240, 232, 0.88);
  font-size: clamp(0.88rem, 0.92vw, 1rem);
  font-weight: 500;
}

.nav-link::after {
  position: absolute;
  left: 0;
  bottom: 4px;
  width: 100%;
  height: 2px;
  content: "";
  background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

.nav-link:is(:hover, .active) {
  color: var(--color-gold-soft);
}

.nav-link:is(:hover, .active)::after {
  transform: scaleX(1);
}

.menu-toggle {
  position: relative;
  z-index: 22;
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(198, 161, 107, 0.28);
  border-radius: var(--radius-md);
  background: rgba(22, 16, 12, 0.72);
  cursor: pointer;
}

.menu-toggle span {
  position: absolute;
  left: 12px;
  right: 12px;
  height: 2px;
  background: var(--color-gold-soft);
  transition: transform 180ms ease, top 180ms ease;
}

.menu-toggle span:first-child {
  top: 16px;
}

.menu-toggle span:last-child {
  top: 26px;
}

.menu-open .menu-toggle span:first-child {
  top: 21px;
  transform: rotate(42deg);
}

.menu-open .menu-toggle span:last-child {
  top: 21px;
  transform: rotate(-42deg);
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  padding: var(--header-height) var(--page-x) clamp(16px, 1.8vw, 24px);
  background:
    radial-gradient(circle at 81% 28%, rgba(166, 101, 66, 0.2), transparent 26%),
    linear-gradient(118deg, #080706 0%, #0c0907 38%, #1a120d 76%, #0b0806 100%);
}

.hero::after {
  position: absolute;
  inset: auto 0 0;
  height: 32%;
  content: "";
  pointer-events: none;
  background: linear-gradient(180deg, transparent, rgba(8, 7, 6, 0.82));
}

.hero-art {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.shape {
  position: absolute;
  display: block;
  border: 1px solid rgba(198, 161, 107, 0.08);
  background: linear-gradient(135deg, rgba(198, 161, 107, 0.18), rgba(58, 40, 29, 0.2));
  filter: blur(0.2px);
  opacity: 0.8;
}

.shape-one {
  top: 8%;
  right: -12%;
  width: min(54vw, 760px);
  height: min(39vw, 520px);
  border-radius: 54% 46% 56% 44% / 48% 43% 57% 52%;
  transform: rotate(-13deg);
  box-shadow: inset 0 0 110px rgba(198, 161, 107, 0.08);
}

.shape-two {
  right: -6%;
  bottom: 8%;
  width: min(39vw, 590px);
  height: min(20vw, 280px);
  border-radius: 68% 32% 72% 28% / 62% 28% 72% 38%;
  background: linear-gradient(120deg, rgba(198, 161, 107, 0.26), rgba(93, 61, 38, 0.12));
  transform: rotate(-18deg);
}

.shape-three {
  right: 20%;
  bottom: 20%;
  width: min(29vw, 440px);
  height: min(14vw, 200px);
  border-radius: 68% 32% 69% 31% / 74% 24% 76% 26%;
  background: linear-gradient(110deg, rgba(70, 45, 28, 0.08), rgba(198, 161, 107, 0.14));
  transform: rotate(22deg);
  opacity: 0.45;
}

.grain {
  position: absolute;
  inset: 0;
  opacity: 0.19;
  mix-blend-mode: soft-light;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.1) 0 1px, transparent 1px),
    radial-gradient(circle at 72% 62%, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px);
  background-size: 13px 13px, 17px 17px;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(420px, 1.18fr);
  align-items: center;
  min-height: calc(100svh - var(--header-height) - clamp(106px, 15svh, 136px) - 18px);
  gap: clamp(24px, 3.8vw, 58px);
}

.hero-copy {
  max-width: 500px;
  padding-top: clamp(8px, 1.8vw, 22px);
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--color-gold);
  font-size: clamp(0.68rem, 0.78vw, 0.84rem);
  font-weight: 600;
  line-height: 1.35;
  text-transform: uppercase;
  letter-spacing: 0;
}

.hero h1 {
  margin: 0;
  color: var(--color-offwhite);
  font-family: var(--font-serif);
  font-size: clamp(3.15rem, 4.9vw, 5.35rem);
  font-weight: 600;
  line-height: 0.9;
  text-wrap: balance;
}

.hero h1 span {
  display: block;
  color: var(--color-gold);
}

.title-rule {
  display: block;
  width: 82px;
  height: 2px;
  width: 72px;
  margin: clamp(18px, 2.4vw, 28px) 0 16px;
  background: linear-gradient(90deg, var(--color-gold), rgba(198, 161, 107, 0.08));
}

.hero-text {
  max-width: 400px;
  margin: 0 0 22px;
  color: rgba(245, 240, 232, 0.84);
  font-size: clamp(0.9rem, 0.98vw, 1rem);
  line-height: 1.55;
}

.cta-button,
.secondary-button,
.form-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 46px;
  border: 0;
  border-radius: 999px;
  color: #15100d;
  background: linear-gradient(135deg, #dfc79f, var(--color-gold));
  box-shadow: 0 18px 38px rgba(198, 161, 107, 0.16);
  cursor: pointer;
  font-weight: 600;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.cta-button {
  padding: 0 24px 0 28px;
  font-size: clamp(0.88rem, 0.96vw, 0.98rem);
}

.cta-button svg,
.secondary-button svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.cta-button:hover,
.secondary-button:hover,
.form-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 48px rgba(198, 161, 107, 0.22);
}

.hero-emblem {
  position: relative;
  display: grid;
  place-items: center;
  min-height: clamp(300px, 34vw, 470px);
  overflow: hidden;
}

.emblem-glow {
  position: absolute;
  width: min(33vw, 460px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(198, 161, 107, 0.24), transparent 64%);
  filter: blur(16px);
}

.hero-emblem img {
  position: relative;
  width: clamp(480px, 41vw, 640px);
  max-width: none;
  height: auto;
  object-fit: contain;
  filter: sepia(18%) saturate(112%) brightness(1.04) drop-shadow(0 24px 64px rgba(0, 0, 0, 0.34));
  opacity: 0.95;
}

.treatments-panel {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(14px, 1.6vw, 24px);
  margin: 0 auto;
  padding: clamp(16px, 1.8vw, 24px) clamp(18px, 2.4vw, 38px);
  border: 1px solid rgba(217, 200, 181, 0.12);
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, rgba(30, 21, 16, 0.82), rgba(18, 13, 10, 0.72));
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(20px);
}

.treatment-card {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  align-items: center;
  min-width: 0;
}

.line-icon {
  width: 40px;
  height: 40px;
  fill: none;
  stroke: var(--color-gold);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.treatment-card h2 {
  margin: 0 0 4px;
  color: var(--color-offwhite);
  font-size: clamp(0.82rem, 0.84vw, 0.9rem);
  font-weight: 500;
  line-height: 1.3;
}

.treatment-card p {
  margin: 0;
  color: rgba(245, 240, 232, 0.76);
  font-size: clamp(0.75rem, 0.78vw, 0.84rem);
  line-height: 1.42;
}

.content-section {
  position: relative;
  padding: var(--section-pad) var(--page-x);
  background:
    radial-gradient(circle at 12% 14%, rgba(198, 161, 107, 0.08), transparent 30%),
    linear-gradient(180deg, #080706, #110c09);
}

.content-section + .content-section {
  border-top: 1px solid rgba(198, 161, 107, 0.1);
}

.section-shell {
  width: min(100%, 1280px);
  margin: 0 auto;
}

.two-columns,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(320px, 1fr);
  gap: clamp(24px, 4vw, 64px);
  align-items: start;
}

.section-kicker {
  margin-bottom: 18px;
}

.content-section h2 {
  margin: 0;
  color: var(--color-offwhite);
  font-family: var(--font-serif);
  font-size: clamp(1.95rem, 2.8vw, 3rem);
  font-weight: 600;
  line-height: 0.98;
  text-wrap: balance;
}

.section-copy {
  display: grid;
  gap: 14px;
  color: rgba(245, 240, 232, 0.78);
  font-size: clamp(0.92rem, 1vw, 1rem);
}

.section-copy p {
  margin: 0;
}

.location-card,
.whatsapp-card {
  border: 1px solid rgba(217, 200, 181, 0.12);
  border-radius: var(--radius-xl);
  background: rgba(30, 21, 16, 0.7);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(18px);
}

.location-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: clamp(20px, 2.4vw, 32px);
}

.location-card p {
  max-width: 610px;
  margin: 12px 0 0;
  color: rgba(245, 240, 232, 0.76);
}

.secondary-button {
  flex: 0 0 auto;
  min-height: 44px;
  padding: 0 24px;
  font-size: 0.96rem;
}

.contact-list {
  display: grid;
  gap: 12px;
  margin-top: 22px;
  color: rgba(245, 240, 232, 0.78);
}

.contact-list a {
  width: fit-content;
  border-bottom: 1px solid rgba(198, 161, 107, 0.32);
  transition: color 180ms ease, border-color 180ms ease;
}

.contact-list a:hover {
  color: var(--color-gold-soft);
  border-color: var(--color-gold-soft);
}

.whatsapp-card {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 22px;
  padding: clamp(18px, 2.1vw, 28px);
}

.whatsapp-card p {
  margin: 0;
  color: rgba(245, 240, 232, 0.78);
  font-size: clamp(0.94rem, 1vw, 1.02rem);
  line-height: 1.55;
}

.form-button {
  width: fit-content;
  min-height: 44px;
  padding: 0 26px;
}

@media (max-width: 1180px) {
  .hero {
    min-height: auto;
  }

  .hero-inner {
    grid-template-columns: minmax(320px, 0.95fr) minmax(340px, 1.05fr);
    min-height: clamp(360px, calc(100svh - var(--header-height) - 196px), 500px);
  }

  .hero h1 {
    font-size: clamp(2.95rem, 5vw, 4.55rem);
  }

  .hero-emblem {
    min-height: clamp(280px, 36vw, 400px);
  }

  .hero-emblem img {
    width: clamp(430px, 48vw, 560px);
  }

  .treatments-panel {
    grid-template-columns: repeat(2, 1fr);
    max-width: 980px;
  }
}

@media (max-width: 860px) {
  :root {
    --header-height: 70px;
    --section-pad: clamp(36px, 8vw, 54px);
  }

  .site-header {
    height: var(--header-height);
  }

  .brand {
    width: 204px;
    height: 40px;
  }

  .brand-frame {
    width: 252px;
  }

  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: fixed;
    inset: var(--header-height) 0 0;
    z-index: 21;
    display: grid;
    align-content: start;
    justify-items: center;
    gap: 10px;
    height: calc(100dvh - var(--header-height));
    padding: 28px var(--page-x) 34px;
    background:
      radial-gradient(circle at 72% 4%, rgba(198, 161, 107, 0.16), transparent 30%),
      linear-gradient(180deg, rgba(8, 7, 6, 0.99), rgba(18, 13, 10, 0.99));
    border-top: 1px solid rgba(198, 161, 107, 0.1);
    box-shadow: 0 26px 70px rgba(0, 0, 0, 0.46);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .menu-open .main-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-link {
    width: min(100%, 340px);
    padding: 13px 0;
    text-align: center;
    font-size: 1.08rem;
  }

  .nav-link::after {
    bottom: 6px;
  }

  .hero {
    padding-top: var(--header-height);
  }

  .hero-inner {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 18px;
    gap: 10px;
  }

  .hero-copy {
    max-width: 640px;
    padding-top: 0;
  }

  .hero h1 {
    font-size: clamp(2.85rem, 10.8vw, 4.35rem);
  }

  .hero-emblem {
    width: 100%;
    min-height: clamp(270px, 46vw, 350px);
    margin: 8px auto 0;
    overflow: visible;
  }

  .hero-emblem img {
    width: min(410px, 86vw);
  }

  .shape-one {
    top: 24%;
    right: -38%;
    width: 118vw;
    height: 78vw;
  }

  .shape-two {
    right: -36%;
    bottom: 18%;
    width: 94vw;
    height: 48vw;
  }

  .shape-three {
    right: 12%;
    bottom: 34%;
    width: 72vw;
    height: 34vw;
  }

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

  .location-card {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 620px) {
  :root {
    --page-x: 18px;
    --section-pad: 34px;
  }

  .hero {
    padding-bottom: 20px;
  }

  .eyebrow,
  .section-kicker {
    letter-spacing: 0;
  }

  .hero h1 {
    font-size: clamp(2.55rem, 12.4vw, 3.55rem);
    line-height: 0.9;
  }

  .hero-text {
    font-size: 1rem;
  }

  .cta-button {
    width: 100%;
    min-height: 46px;
    padding: 0 20px;
  }

  .hero-emblem {
    min-height: clamp(282px, 82vw, 330px);
    margin: 10px auto 2px;
  }

  .hero-emblem img {
    width: min(330px, 86vw);
  }

  .treatments-panel {
    grid-template-columns: 1fr;
    border-radius: 18px;
  }

  .treatment-card {
    grid-template-columns: 40px 1fr;
    gap: 12px;
  }

  .line-icon {
    width: 38px;
    height: 38px;
  }

  .content-section h2 {
    font-size: clamp(1.9rem, 9.5vw, 2.75rem);
  }

  .location-card,
  .whatsapp-card {
    border-radius: 18px;
  }

  .secondary-button,
  .form-button {
    width: 100%;
  }
}

@media (min-width: 861px) and (max-height: 760px) {
  :root {
    --header-height: 68px;
    --section-pad: 36px;
  }

  .brand {
    width: 206px;
    height: 38px;
  }

  .brand-frame {
    width: 248px;
  }

  .hero-inner {
    min-height: calc(100svh - var(--header-height) - 122px);
  }

  .hero h1 {
    font-size: clamp(2.9rem, 4.4vw, 4.6rem);
  }

  .title-rule {
    margin: 16px 0 14px;
  }

  .hero-text {
    margin-bottom: 18px;
  }

  .hero-emblem {
    min-height: 300px;
  }

  .hero-emblem img {
    width: clamp(440px, 37vw, 560px);
  }

  .treatments-panel {
    padding: 14px 28px;
  }
}
