:root {
  --bg: #f0f5f8;
  --bg-alt: #e4edf3;
  --white: #ffffff;
  --text: #1a2332;
  --muted: #64748b;
  --border: #dde6ef;
  --accent: #367040;
  --accent-dark: #274f2c;
  --accent-mid: #528a58;
  --accent-light: #e4f2e6;
  --radius: 16px;
  --shadow: 0 4px 24px rgba(26, 35, 50, 0.07);
  --shadow-lg: 0 12px 48px rgba(26, 35, 50, 0.13);
}

html {
  scroll-behavior: smooth;
}

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

[hidden] {
  display: none !important;
}

body {
  font-family: 'Times New Roman', Times, serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  overflow-x: hidden;
  overflow-x: clip;
}

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

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

button,
input,
textarea {
  font: inherit;
}

h1 em,
h2 em {
  font-style: italic;
  color: var(--accent);
  font-weight: normal;
}

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

/* ── Header ── */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 12px rgba(26,35,50,0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 0.65rem 0;
  justify-content: space-between;
}

.header-left {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.brand-logo {
  width: 140px;
  height: auto;
  flex-shrink: 0;
}

.main-nav {
  display: flex;
  gap: 1.75rem;
  justify-content: flex-start;
}

.main-nav a {
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--muted);
  letter-spacing: 0.01em;
  transition: color 0.2s;
}

.main-nav a:hover {
  color: var(--text);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-left: auto;
  flex-shrink: 0;
}

.header-actions .button {
  padding: 0.45rem 1.25rem;
  font-size: 0.85rem;
}

.header-phone--soon {
  font-size: 0.8rem;
  color: var(--muted);
  font-style: italic;
  white-space: nowrap;
}

.header-instagram {
  display: none;
  color: var(--text);
  transition: color 0.2s;
}

.header-instagram:hover {
  color: var(--accent);
}

.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.83rem;
  font-weight: 500;
  color: var(--muted);
  white-space: nowrap;
}

.header-phone-mobile {
  display: none;
  align-items: center;
  justify-content: center;
  color: var(--text);
  padding: 6px;
  border-radius: 8px;
  transition: color 0.2s, background 0.2s;
}

.header-phone-mobile:hover {
  color: var(--accent);
  background: var(--accent-light);
}

/* ── Buttons ── */

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.75rem;
  border-radius: 10px;
  border: 1.5px solid transparent;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.button-dark {
  background: linear-gradient(135deg, var(--accent-mid) 0%, var(--accent) 100%);
  color: var(--white);
  border-color: transparent;
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(54,112,64,0.35);
}

.button-dark::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -80%;
  width: 45%;
  height: 200%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.35),
    transparent
  );
  transform: skewX(-20deg);
  animation: buttonShine 4s ease-in-out infinite;
}

@keyframes buttonShine {
  0%   { left: -80%; }
  18%  { left: 130%; }
  100% { left: 130%; }
}

.button-dark:hover {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  border-color: transparent;
  box-shadow: 0 4px 18px rgba(54,112,64,0.45);
}

.button-white {
  background: var(--white);
  color: var(--text);
  border-color: var(--white);
}

.button-white:hover {
  background: #f0f0ee;
}

.button-outline {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}

.button-outline:hover {
  border-color: var(--muted);
  background: var(--bg-alt);
}

/* ── Mobile menu toggle ── */

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  transition: all 0.25s ease;
}

.menu-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Hero ── */

.hero {
  position: relative;
  background: var(--bg);
  background-image: radial-gradient(rgba(37,74,40,0.07) 1.5px, transparent 1.5px);
  background-size: 26px 26px;
  overflow: hidden;
}

.hero--centered .hero-inner {
  grid-template-columns: 1fr;
}

.hero--centered .hero-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}

.hero--centered .hero-actions {
  justify-content: center;
}

.hero--centered .hero-rating {
  justify-content: center;
}

.hero--centered .hero-sub {
  max-width: 100%;
}

.hero-logo-placeholder {
  width: 300px;
  height: auto;
  margin-bottom: 1.5rem;
}

.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
}

.hero-blob--1 {
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(61,112,66,0.18) 0%, transparent 70%);
  top: -160px;
  right: -100px;
  animation: blobDrift 20s ease-in-out infinite;
}

.hero-blob--2 {
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(37,74,40,0.13) 0%, transparent 70%);
  bottom: -120px;
  left: -80px;
  animation: blobDrift 26s ease-in-out infinite reverse;
  animation-delay: -8s;
}

@keyframes blobDrift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25%       { transform: translate(18px, -22px) scale(1.05); }
  50%       { transform: translate(-12px, 14px) scale(0.96); }
  75%       { transform: translate(22px, 18px) scale(1.03); }
}

.hero-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 540px;
}

.hero-side {
  position: relative;
  align-self: stretch;
  overflow: visible;
}

@keyframes sideFloat {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  33%       { transform: translateY(-8px) rotate(0.6deg); }
  66%       { transform: translateY(5px) rotate(-0.4deg); }
}

@keyframes sideFloatAlt {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  33%       { transform: translateY(6px) rotate(-0.5deg); }
  66%       { transform: translateY(-7px) rotate(0.5deg); }
}

.hero-side--left .hero-img-card { animation: sideFloat 7s ease-in-out infinite; }
.hero-side--right .hero-img-card { animation: sideFloatAlt 8s ease-in-out infinite; animation-delay: 1s; }

.hero-float-label--1, .hero-float-label--3 { animation: sideFloat 7s ease-in-out infinite; animation-delay: 0.3s; }
.hero-float-label--2, .hero-float-label--4 { animation: sideFloatAlt 8s ease-in-out infinite; animation-delay: 0.8s; }

.hero-side--left {
  margin-left: 0;
}

.hero-side--right {
  margin-right: 0;
}

.hero-side .hero-img-card {
  position: absolute;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(26, 35, 50, 0.28), 0 4px 16px rgba(26, 35, 50, 0.14);
}

.hero-side--left .hero-img-card {
  top: 20px;
  left: 0;
  width: 100%;
  height: 82%;
}

.hero-side--right .hero-img-card {
  bottom: 20px;
  right: 0;
  width: 88%;
  height: 62%;
}

.hero-side .hero-img-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-side-badge {
  position: absolute;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(6px);
  padding: 0.3rem 0.85rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text);
  white-space: nowrap;
  box-shadow: var(--shadow);
  z-index: 2;
}

.hero-side-badge--tl {
  top: 1.5rem;
  left: 1rem;
}

.hero-side-badge--bl {
  bottom: 2.5rem;
  left: 0.5rem;
}

.hero-side-badge--tr {
  top: 2rem;
  right: 1rem;
}

.hero-float-label {
  position: absolute;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  border-radius: 999px;
  padding: 0.45rem 1.1rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text);
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(26,35,50,0.12);
  z-index: 3;
}

/* left image: label 1 near bottom-right edge, label 2 just below image */
.hero-float-label--1 { bottom: 22%; right: 8px; }
.hero-float-label--2 { bottom: 5%; left: 12%; }

/* right image: label 3 above image top-left, label 4 near bottom-left edge */
.hero-float-label--3 { top: 30%; left: 8px; }
.hero-float-label--4 { bottom: 12%; left: 8px; }

.hero-h1-hidden { display: none; }
.hero-rating-hidden { display: none; }
.hero-mobile-img { display: none; }

.hero-coming-soon {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #fff;
  border: 1px solid #e2e8e2;
  border-radius: 999px;
  padding: 0.4rem 1rem 0.4rem 0.75rem;
  font-size: 0.82rem;
  color: var(--text);
  font-weight: 500;
  margin-bottom: 1.75rem;
  box-shadow: 0 2px 10px rgba(0,0,0,0.07);
}

.hero-coming-soon svg {
  color: #d4900a;
  flex-shrink: 0;
}

.hero-coming-soon__tag {
  background: var(--accent-light);
  color: var(--accent-dark);
  font-weight: 600;
  font-size: 0.78rem;
  padding: 0.15rem 0.65rem;
  border-radius: 999px;
}

.hero-eyebrow {
  display: inline-block;
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-light);
  padding: 0.4rem 1rem;
  border-radius: 999px;
  margin-bottom: 1.5rem;
}

.hero h1 {
  font-size: clamp(2.4rem, 4vw, 3.8rem);
  font-weight: 700;
  font-style: italic;
  line-height: 1.1;
  color: var(--text);
  letter-spacing: -0.025em;
  margin-bottom: 1.25rem;
}

.hero-text {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 3rem 2rem;
}

.hero-sub {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 2rem;
  max-width: 400px;
}

.hero-actions {
  display: flex;
  gap: 0.85rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
  justify-content: center;
}

.hero-rating {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.hero-rating .stars {
  font-size: 0.95rem;
  color: #d4a843;
  letter-spacing: 0.05em;
  margin-bottom: 0;
}

.hero-rating-text {
  font-size: 0.82rem;
  color: var(--muted);
  font-weight: 500;
}

.hero-cycle {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
  line-height: 1.1;
}

.hero-cycle em {
  display: block;
}

.hero-cycle em.cycle-out {
  animation: cycleSlideOut 0.35s ease forwards;
}

.hero-cycle em.cycle-in {
  animation: cycleSlideIn 0.35s ease forwards;
}

@keyframes cycleSlideOut {
  from { transform: translateY(0);     opacity: 1; }
  to   { transform: translateY(-120%); opacity: 0; }
}

@keyframes cycleSlideIn {
  from { transform: translateY(120%);  opacity: 0; }
  to   { transform: translateY(0);     opacity: 1; }
}

@keyframes heroFloat {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-12px); }
}

@keyframes heroFloatAlt {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(10px); }
}

.hero-images {
  position: relative;
  height: 480px;
}

.hero-img-card {
  position: absolute;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.hero-img-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-img-label {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(6px);
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text);
  white-space: nowrap;
}

.hero-img-card--main {
  width: 62%;
  height: 410px;
  top: 0;
  right: 0;
  animation: heroFloat 6s ease-in-out infinite;
}

.hero-img-card--secondary {
  width: 48%;
  height: 295px;
  bottom: 0;
  left: 0;
  animation: heroFloatAlt 7s ease-in-out infinite;
  animation-delay: 0.8s;
}

@media (prefers-reduced-motion: reduce) {
  .hero-img-card--main,
  .hero-img-card--secondary { animation: none; }
}

/* ── Eyebrow ── */

.eyebrow {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

/* ── Pillars ── */

.pillars {
  background: var(--white);
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border);
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.pillar {
  padding: 0 2.5rem 0 0;
  border-right: 1px solid var(--border);
}

.pillar:last-child {
  border-right: none;
  padding-left: 2.5rem;
  padding-right: 0;
}

.pillar:nth-child(2) {
  padding-left: 2.5rem;
}

.pillar-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 1rem;
  flex-shrink: 0;
}

.pillar h3 {
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 0.6rem;
}

.pillar p {
  font-size: 0.91rem;
  color: var(--muted);
  line-height: 1.75;
}

/* ── Treatments rope ── */

.treatments-rope {
  background: var(--bg);
  background-image: radial-gradient(rgba(37,74,40,0.07) 1.5px, transparent 1.5px);
  background-size: 26px 26px;
  padding: 3.5rem 0 4.5rem;
  border-top: 1px solid var(--border);
  overflow: hidden;
}

.treatments-rope-header {
  margin-bottom: 2rem;
  text-align: center;
}

.treatments-rope-header h2 {
  font-size: clamp(1.6rem, 2.8vw, 2.4rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 0.5rem;
  color: var(--text);
}

.treatments-rope-header p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.6;
}

.rope-cards-row--all {
  display: flex;
  padding-left: 0;
  justify-content: center;
}

@media (min-width: 841px) {
  .rope-cards-row--all {
    transform: none !important;
  }
}

.rope-cards-row--all .rope-card-wrap {
  flex: 0 0 33.333%;
  width: 33.333%;
  max-width: 360px;
}

.treatments-mobile-nav { display: none; }

/* Rope scene */

.rope-scene {
  position: relative;
  padding-top: 50px;
  overflow: hidden;
}

.rope-line {
  position: absolute;
  top: 0;
  left: -5%;
  width: 110%;
  height: 50px;
  pointer-events: none;
  filter: drop-shadow(0 2px 4px rgba(26,35,50,0.1));
}

.rope-cards-row {
  display: flex;
  flex-wrap: nowrap;
  width: 100%;
  gap: 0;
  align-items: start;
  padding-left: 10%;
  box-sizing: border-box;
  transition: transform 0.42s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

.rope-card-wrap {
  flex: 0 0 80%;
  width: 80%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 1.5rem 1.5rem;
}

.rope-peg {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--accent-mid);
  border: 3px solid var(--white);
  box-shadow: 0 2px 6px rgba(26,35,50,0.18);
  position: relative;
  z-index: 1;
  margin-top: -7px;
  flex-shrink: 0;
}

.rope-string {
  width: 2px;
  height: 30px;
  background: linear-gradient(to bottom, rgba(65,95,68,0.7), rgba(65,95,68,0.35));
  flex-shrink: 0;
}

.rope-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.6rem;
  box-shadow: 0 8px 28px rgba(26,35,50,0.1), 0 2px 6px rgba(26,35,50,0.06);
  transform: rotate(var(--card-tilt, 0deg));
  transform-origin: top center;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  width: 100%;
  max-width: 520px;
}

.rope-card:hover {
  box-shadow: 0 14px 40px rgba(26,35,50,0.14), 0 3px 10px rgba(26,35,50,0.08);
  transform: rotate(calc(var(--card-tilt, 0deg) * 0.5));
}

.rope-card-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 1rem;
}

.rope-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 0.5rem;
}

.badge-soon {
  display: inline-flex;
  align-items: center;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-light);
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  white-space: nowrap;
  margin-bottom: 1rem;
}

.rope-card-benefits {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.45rem;
  border-top: 1px solid var(--border);
  padding-top: 0.9rem;
  margin-top: 0.4rem;
}

.rope-card-benefits li {
  font-size: 0.84rem;
  color: var(--muted);
  line-height: 1.5;
  padding-left: 1.1rem;
  position: relative;
}

.rope-card-benefits li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent-mid);
}

/* Rope hang animation */

.rope-hang {
  opacity: 0;
  transform: translateY(-70px);
  transition:
    transform 0.7s cubic-bezier(0.34, 1.56, 0.64, 1),
    opacity   0.35s ease;
}

.rope-hang.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Face Guide ── */

.face-guide {
  background: var(--bg-alt);
  background-image: radial-gradient(rgba(37,74,40,0.065) 1.5px, transparent 1.5px);
  background-size: 26px 26px;
  padding: 2rem 0;
  border-top: 1px solid var(--border);
}

/* Guide trigger button */

.guide-trigger-wrap {
  display: flex;
  justify-content: center;
  padding-top: 2.5rem;
}

.guide-trigger-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  background: var(--white);
  border: 1.5px solid var(--accent);
  border-radius: 16px;
  padding: 0.85rem 1.2rem 0.85rem 0.85rem;
  cursor: pointer;
  text-align: left;
  transition: background 0.2s, box-shadow 0.2s;
  box-shadow: var(--shadow);
  max-width: 400px;
  width: 100%;
}

.guide-trigger-btn:hover {
  background: var(--accent-light);
  box-shadow: var(--shadow-lg);
}

.guide-trigger-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}

.guide-trigger-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.guide-trigger-main {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
}

.guide-trigger-sub {
  font-size: 0.79rem;
  color: var(--accent);
  font-weight: 500;
}

.guide-trigger-chevron {
  flex-shrink: 0;
  color: var(--accent);
  transition: transform 0.35s ease;
}

.guide-trigger-btn[aria-expanded="true"] .guide-trigger-chevron {
  transform: rotate(180deg);
}

/* Guide collapse wrapper */

.face-guide-collapse {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.65s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Guide close button */

.guide-close-btn {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--text);
  border: none;
  border-radius: 999px;
  padding: 0.55rem 1.2rem;
  cursor: pointer;
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  white-space: nowrap;
  transition: background 0.2s, transform 0.15s;
  margin-top: 0.75rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.guide-close-btn svg {
  stroke: #fff;
}

.guide-close-btn:hover {
  background: var(--accent-dark);
  transform: scale(1.03);
}

/* Face guide header (flex with close button) */

.face-guide-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.face-guide-header-text {
  max-width: 540px;
}

.face-guide-header h2 {
  font-size: clamp(1.3rem, 2vw, 1.7rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 0.35rem;
}

.face-guide-header p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.6;
}

.face-guide-body {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 2.5rem;
  align-items: start;
}

.face-diagram-wrap {
  position: sticky;
  top: 90px;
}

.face-svg {
  width: 100%;
  height: auto;
  display: block;
}

.face-dot {
  cursor: pointer;
  outline: none;
}

.face-dot:focus-visible .dot-core {
  stroke-width: 3.5px;
}

.face-dot:hover .dot-core,
.face-dot.active .dot-core {
  fill: var(--accent-dark);
}

.dot-ring {
  transform-box: fill-box;
  transform-origin: center;
  animation: dotPulse 2.5s ease-out infinite;
  animation-delay: var(--dot-delay, 0s);
}

.face-dot.active .dot-ring,
.face-dot:hover .dot-ring {
  animation: none;
  opacity: 0;
}

@keyframes dotPulse {
  0%   { transform: scale(1); opacity: 0.6; }
  70%  { opacity: 0; }
  100% { transform: scale(3.2); opacity: 0; }
}

.face-hint {
  text-align: center;
  font-size: 0.8rem;
  color: var(--muted);
  letter-spacing: 0.03em;
  margin-bottom: 0.75rem;
  opacity: 0.65;
}

.face-info-panel {
  padding: 1.5rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  align-self: start;
}

.face-info-default {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 1rem;
  color: var(--muted);
}

.face-info-default svg {
  color: var(--accent);
  opacity: 0.4;
}

.face-info-default p {
  font-size: 0.92rem;
  line-height: 1.7;
  max-width: 280px;
}

.face-info-content {
  animation: infoFadeIn 0.3s ease;
}

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

.face-info-content h3 {
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 0.4rem;
}

.face-info-content > p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 1rem;
}

.face-treatment-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.1rem 1.4rem;
  margin-bottom: 0.75rem;
}

.face-treatment-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.5rem;
}

.face-treatment-name {
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--text);
}

.face-treatment-detail {
  font-size: 0.87rem;
  color: var(--muted);
  line-height: 1.7;
  margin: 0;
}

.face-info-cta {
  display: inline-flex;
  margin-top: 1.5rem;
}

/* ── About ── */

.about {
  background: var(--white);
  padding: 3.5rem 0 3.5rem;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.about-header {
  margin-bottom: 2.5rem;
}

.about-header h2 {
  font-size: clamp(1.8rem, 2.8vw, 2.6rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.18;
}

/* Practitioner carousel */
.practitioners-carousel-wrap {
  overflow: hidden;
}

.practitioners-carousel {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.practitioners-carousel::-webkit-scrollbar { display: none; }

.practitioner-card {
  flex-shrink: 0;
  width: 100%;
  scroll-snap-align: start;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  padding: 0 max(2rem, calc((100% - 1200px) / 2)) 3.5rem;
}

.practitioner-text .eyebrow {
  display: block;
  margin-bottom: 1rem;
}

.practitioner-text h2,
.practitioner-text h3 {
  font-size: clamp(1.7rem, 2.5vw, 2.4rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
  line-height: 1.18;
}

.practitioner-text p {
  color: var(--muted);
  font-size: 0.93rem;
  line-height: 1.8;
  margin-bottom: 0.85rem;
}

.practitioner-img img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  object-position: center 100%;
  border-radius: var(--radius);
  box-shadow: 0 20px 60px rgba(26, 35, 50, 0.28), 0 4px 16px rgba(26, 35, 50, 0.14);
}

.about-title {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.02em;
  margin-bottom: 1rem !important;
}

/* ── Hitta hit ── */

.location-section {
  background: var(--white);
  padding: 2.5rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.location-standalone-header {
  text-align: center;
  margin-bottom: 1.5rem;
}

.location-standalone-header h2 {
  font-size: clamp(1.4rem, 2vw, 1.9rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 0.4rem;
}

.location-standalone-header p {
  font-size: 0.88rem;
  color: var(--muted);
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.6;
}

.location-standalone-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  align-items: stretch;
}

.location-standalone-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
  display: block;
  max-height: 340px;
}

.location-map {
  border-radius: var(--radius);
  overflow: hidden;
}

.location-map iframe {
  height: 340px;
  display: block;
}

.about-location-wrap {
  padding: 0 max(2rem, calc((100% - 1200px) / 2));
}

.location-header {
  padding-top: 0;
  margin-bottom: 2rem;
}

.location-header h2 {
  font-size: clamp(1.8rem, 2.8vw, 2.6rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.18;
}

/* ── Location block ── */

.about-map-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.75rem;
}

.location-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 1rem;
}

.location-map iframe {
  width: 100%;
  height: 320px;
  display: block;
  border: 1px solid var(--border);
  filter: grayscale(15%);
  border-radius: var(--radius);
}

.location-gallery {
  position: relative;
  overflow: hidden;
  height: 320px;
  background: var(--border);
  border-radius: var(--radius);
}

.gallery-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.7s ease;
}

.gallery-slide.active {
  opacity: 1;
}

.gallery-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.88);
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
  transition: background 0.2s;
  color: var(--text);
}

.gallery-nav:hover {
  background: white;
}

.gallery-nav.prev { left: 0.75rem; }
.gallery-nav.next { right: 0.75rem; }

.gallery-dots {
  position: absolute;
  bottom: 0.75rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.45rem;
  z-index: 2;
}

.gallery-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer;
  padding: 0;
  transition: background 0.2s;
}

.gallery-dot.active {
  background: rgba(255, 255, 255, 0.95);
}

/* ── Testimonials ── */

.testimonials {
  background: var(--bg-alt);
  background-image: radial-gradient(rgba(37,74,40,0.065) 1.5px, transparent 1.5px);
  background-size: 26px 26px;
  padding: 3.5rem 0 4.5rem;
  overflow: visible;
}

.testimonials-header {
  margin-bottom: 3.5rem;
  text-align: center;
}

.testimonials-header h2 {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 0;
}

.testimonials-header h2 em {
  font-style: italic;
  font-weight: 600;
  color: var(--accent);
}

.testimonials-header .eyebrow {
  display: block;
  margin-bottom: 0.75rem;
}

.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 1.75rem;
  border-radius: var(--radius);
  box-shadow: 0 8px 28px rgba(26,35,50,0.1), 0 2px 6px rgba(26,35,50,0.06);
  transform: rotate(var(--card-tilt, 0deg));
  transform-origin: top center;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  width: 100%;
  max-width: 520px;
}

.rope-card-wrap:hover .testimonial-card {
  box-shadow: 0 14px 40px rgba(26,35,50,0.14), 0 3px 10px rgba(26,35,50,0.08);
  transform: rotate(calc(var(--card-tilt, 0deg) * 0.5));
}

.stars {
  font-size: 1rem;
  color: #d4a843;
  letter-spacing: 0.1em;
  margin-bottom: 0.85rem;
}

.testimonial-card p {
  font-size: 0.93rem;
  color: var(--muted);
  line-height: 1.85;
  margin-bottom: 1.25rem;
  font-style: italic;
}

.testimonial-card span {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text);
}

/* ── Safety ── */

.safety {
  background: var(--white);
  padding: 3.5rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.safety-inner {
  max-width: 720px;
}

.safety-inner .eyebrow {
  display: block;
  margin-bottom: 1rem;
}

.safety-inner h2 {
  font-size: clamp(1.7rem, 2.5vw, 2.3rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
  line-height: 1.2;
}

.safety-inner h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin: 1.75rem 0 0.6rem;
}

.safety-inner p {
  color: var(--muted);
  font-size: 0.93rem;
  line-height: 1.85;
  margin-bottom: 0.85rem;
}

/* ── CTA Booking ── */

.cta-booking {
  background: var(--accent);
  padding: 1.5rem 0;
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  flex-wrap: wrap;
}

.cta-inner h2 {
  font-size: clamp(1.7rem, 2.5vw, 2.3rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.cta-inner h2 em {
  color: rgba(255, 255, 255, 0.82);
}

.cta-inner p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  max-width: 480px;
}

/* ── Contact ── */

.contact {
  background: var(--white);
  padding: 3.5rem 0;
  border-top: 1px solid var(--border);
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 5rem;
  align-items: start;
}

.contact-info .eyebrow {
  display: block;
  margin-bottom: 1rem;
}

.contact-info h2 {
  font-size: clamp(1.7rem, 2.5vw, 2.3rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.contact-info > p {
  color: var(--muted);
  font-size: 0.93rem;
  margin-bottom: 2.5rem;
  line-height: 1.75;
}

.contact-list {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 1.75rem;
}

.contact-list li {
  display: grid;
  gap: 0.25rem;
}

.contact-list strong {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  font-weight: 700;
}

.contact-list a,
.contact-list span {
  font-size: 0.97rem;
  color: var(--text);
  font-weight: 500;
}

.contact-list a:hover {
  color: var(--accent);
}

.contact-form .form-group {
  display: grid;
  gap: 0.4rem;
  margin-bottom: 1.25rem;
}

.contact-form label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1.5px solid var(--border);
  border-radius: 12px;
  padding: 0.9rem 1rem;
  background: var(--bg);
  color: var(--text);
  transition: border-color 0.2s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--accent);
}

.contact-form .button {
  width: 100%;
  margin-top: 0.5rem;
}

/* ── Footer ── */

.site-footer {
  background: #111f13;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3.5rem;
  padding: 3.5rem 0 2.5rem;
}

.footer-logo {
  width: 160px;
  margin-bottom: 1.25rem;
}

.footer-brand p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.75;
  max-width: 280px;
}

.footer-social {
  margin-top: 1.25rem;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.85rem;
  font-weight: 500;
  transition: color 0.2s;
}

.social-link:hover {
  color: rgba(255, 255, 255, 0.9);
}

.social-link svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.footer-col h4 {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 1.25rem;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 0.75rem;
}

.footer-col ul li {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
}

.footer-col ul a {
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.2s;
}

.footer-col ul a:hover {
  color: rgba(255, 255, 255, 0.9);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding: 1.5rem 0;
}

.footer-bottom p {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.3);
}

/* ── Reveal animations ── */

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal-left {
  opacity: 0;
  transform: translateX(-28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-right {
  opacity: 0;
  transform: translateX(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible,
.reveal-left.visible,
.reveal-right.visible {
  opacity: 1;
  transform: translate(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .reveal-left,
  .reveal-right {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .dot-ring,
  .hero-blob {
    animation: none;
  }

  .rope-hang {
    opacity: 1;
    transform: translateY(0);
    transition: none;
  }
}

/* ── Responsive ── */

@media (max-width: 1024px) {
  .practitioner-card,
  .contact-inner {
    gap: 3.5rem;
  }

  .footer-inner {
    gap: 2.5rem;
  }

  .hero-inner {
    gap: 2.5rem;
  }

  .hero-images {
    height: 400px;
  }

  .hero-img-card--main {
    height: 320px;
  }

  .hero-img-card--secondary {
    height: 240px;
  }
}

.rope-mobile-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  padding: 1rem 0 0.25rem;
}

.rope-nav-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
  flex-shrink: 0;
}

.rope-nav-btn:hover {
  background: var(--accent-light);
  border-color: var(--accent-mid);
  color: var(--accent);
}

.rope-nav-btn:active {
  background: var(--accent-light);
  border-color: var(--accent-mid);
  color: var(--accent);
}

.rope-nav-dots {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.rope-nav-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: var(--border);
  cursor: pointer;
  padding: 0;
  transition: background 0.25s, transform 0.25s;
}

.rope-nav-dot.active {
  background: var(--accent);
  transform: scale(1.35);
}

@media (max-width: 840px) {
  .container {
    width: min(1160px, calc(100% - 2rem));
  }

  /* Nav — compact dropdown */
  .main-nav {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex: unset;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 8px 24px rgba(26,35,50,0.1);
    padding: 0.25rem 1.5rem 0.75rem;
    z-index: 99;
    opacity: 0;
    transform: translateY(-6px);
    pointer-events: none;
    transition: opacity 0.18s ease, transform 0.18s ease;
  }

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

  .main-nav a {
    font-size: 1rem;
    font-weight: 600;
    padding: 0.85rem 0;
    width: 100%;
    border-bottom: 1px solid var(--border);
  }

  .main-nav a:last-child {
    border-bottom: none;
    padding-bottom: 0.25rem;
  }

  .header-inner {
    position: relative;
  }

  .brand {
    position: static;
    left: auto;
    transform: none;
  }

  .header-left {
    flex: 1;
  }

  .header-actions {
    margin-left: 0;
    gap: 0.75rem;
  }

  .header-phone-mobile {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .header-phone {
    display: none;
  }

  .header-phone-mobile {
    display: flex;
  }

  .header-actions .button {
    display: none;
  }

  .header-instagram {
    display: flex;
    align-items: center;
  }

  /* Hero */
  .hero {
    padding: 1.5rem 0 2rem;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .hero-side { display: none; }

  .hero-text {
    padding: 0 1rem;
  }

  .hero-logo-img {
    width: 220px !important;
  }

  .hero-h1-hidden {
    display: none !important;
  }

  .hero-rating-hidden {
    display: flex !important;
  }

  .hero-mobile-img {
    display: block;
    position: relative;
    margin: 1.25rem 0;
    border-radius: 18px;
    overflow: hidden;
    height: 280px;
  }

  .hero-mobile-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .hero-float-label-mobile-1 {
    position: absolute;
    top: 1rem;
    left: 1rem;
  }

  .hero-float-label-mobile-2 {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .hero-actions .button {
    width: 100%;
    justify-content: center;
    text-align: center;
    padding: 0.85rem 1.5rem;
  }

  .hero-images {
    height: 320px;
  }

  .hero-img-card--main {
    width: 60%;
    height: 280px;
  }

  .hero-img-card--secondary {
    width: 48%;
    height: 210px;
  }

  /* Sections */
  .pillars,
  .about,
  .testimonials,
  .safety,
  .contact {
    padding: 3rem 0;
  }

  .cta-booking {
    padding: 3rem 0;
  }

  /* Pillars */
  .pillars-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .pillar {
    border-right: none;
    border-bottom: 1px solid var(--border);
    padding: 2rem 0;
  }

  .pillar:first-child {
    padding-top: 0;
  }

  .pillar:last-child {
    border-bottom: none;
    padding-left: 0;
    padding-right: 0;
    padding-bottom: 0;
  }

  .pillar:nth-child(2) {
    padding-left: 0;
  }

  /* Treatments rope — mobile overrides */
  .rope-line { display: none; }

  .rope-scene {
    padding-top: 0;
  }

  .rope-card-wrap {
    padding: 0.5rem 1.5rem 1.5rem;
  }

  .rope-cards-row--all {
    padding: 0 1rem;
    justify-content: flex-start;
    transform: none;
  }

  .rope-cards-row--all .rope-card-wrap {
    flex: 0 0 100%;
    width: 100%;
    max-width: none;
  }

  .treatments-mobile-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.25rem;
    padding: 1rem 0 0.25rem;
  }

  .rope-peg,
  .rope-string { display: none; }

  .rope-card { transform: none !important; }

  /* About / Practitioners */
  .practitioner-card {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding-bottom: 3rem;
  }

  .practitioner-img img {
    height: 420px;
  }

  /* Location */
  .location-block {
    grid-template-columns: 1fr;
    margin-top: 1rem;
  }

  .location-standalone-body {
    grid-template-columns: 1fr;
  }

  .location-map iframe,
  .location-gallery {
    height: 260px;
  }

  /* Contact */
  .contact-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  /* CTA */
  .cta-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .cta-inner .button {
    width: 100%;
    justify-content: center;
  }

  /* Face guide */
  .face-guide-body {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .face-diagram-wrap {
    position: static;
    width: min(260px, 100%);
    margin: 0 auto;
  }

  .face-hint {
    font-size: 0.75rem;
  }

  .face-info-panel {
    padding: 1.25rem;
    max-width: min(380px, 100%);
    margin: 0 auto;
    box-sizing: border-box;
  }

  .face-treatment-header {
    flex-wrap: wrap;
    gap: 0.4rem;
  }

  .face-info-cta {
    width: 100%;
    justify-content: center;
  }

  /* Footer */
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding: 3rem 0 2.5rem;
  }
}

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

  .hero-sub {
    font-size: 0.95rem;
  }

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

  .hero-actions .button {
    width: 100%;
    justify-content: center;
  }

  .hero-images {
    height: 260px;
  }

  .hero-img-card--main {
    height: 220px;
    width: 62%;
  }

  .hero-img-card--secondary {
    height: 170px;
    width: 50%;
  }

  .treatment-soon-card img {
    height: 180px;
  }

  .testimonial-card,
  .price-item {
    padding: 1.25rem;
  }

  .contact-form .button {
    width: 100%;
  }
}
