/* ============================================
   TaSama — Science-Based Skin Therapy
   Clean editorial design — Guendalina-inspired
   Open layout, no card borders, lots of air
   ============================================ */

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #F7F3EE;
  --bg-alt: #E7DED4;
  --bg-dark: #3B2F2A;
  --accent: #B8A89A;
  --accent-hover: #9E9183;
  --accent-pink: #E7B7B2;
  --accent-blue: #6E7FA3;
  --success: #7FA48A;
  --text: #1F1F1F;
  --text-mid: #4A4A4A;
  --text-light: #5E5550;
  --white: #FFFFFF;
  --border: #D8D2CB;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, sans-serif;

  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;
  --space-3xl: 8rem;

  --container: 1240px;
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --duration: 0.3s;
}

html { scroll-behavior: auto; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--text-mid);
  background: var(--bg);
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

/* --- Typography --- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.2;
  color: var(--text);
}

.section__eyebrow {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--text-light);
  margin-bottom: var(--space-sm);
}

.section__title {
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--text);
  margin-bottom: var(--space-md);
  font-weight: 700;
}

.section__intro {
  font-size: 1.05rem;
  color: var(--text-mid);
  max-width: 860px;
  margin-bottom: var(--space-xl);
  line-height: 1.9;
}

.section {
  padding-top: var(--space-3xl);
  padding-bottom: var(--space-3xl);
}

/* --- Buttons --- */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.9rem 2.4rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all var(--duration) var(--ease);
  text-align: center;
}

.btn--primary {
  background: var(--text);
  color: var(--white);
  border-color: var(--text);
}
.btn--primary:hover {
  background: var(--bg-dark);
  border-color: var(--bg-dark);
}

.btn--ghost {
  background: transparent;
  color: var(--text-mid);
  border-color: var(--border);
}
.btn--ghost:hover {
  color: var(--text);
  border-color: var(--text);
}

.btn--outline {
  background: transparent;
  color: var(--text);
  border-color: var(--text);
}
.btn--outline:hover {
  background: var(--text);
  color: var(--white);
}

.btn--sm { padding: 0.5rem 1.4rem; font-size: 0.72rem; }
.btn--lg { padding: 1rem 2.5rem; font-size: 0.85rem; width: 100%; max-width: 400px; }

/* --- Navigation --- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: var(--space-sm) 0 0;
  transition: all var(--duration) var(--ease);
  background: rgba(247, 243, 238, 0.97);
}

.nav--solid {
  backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--border);
  padding: 0.5rem 0 0;
}

.nav__inner {
  max-width: 1380px;
  margin: 0 auto;
  padding: 0 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

/* --- Logo row (centered) --- */
.nav__logo-row {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding-bottom: 0.4rem;
}
.nav__logo-mark {
  height: 80px;
  width: auto;
  display: block;
  margin-bottom: 12px;
  transition: height var(--duration), opacity var(--duration), margin var(--duration);
}
.nav--solid .nav__logo-mark {
  height: 0;
  opacity: 0;
  overflow: hidden;
  margin-bottom: 0;
}
.nav__logo-text {
  height: 50px;
  width: auto;
  display: block;
  overflow: visible;
  transition: height var(--duration);
}
.nav--solid .nav__logo-text {
  height: 42px;
}
.nav__logo {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 600;
  color: var(--text);
  transition: color var(--duration);
  letter-spacing: 0.02em;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
}

/* --- Menu row (centered links) --- */
.nav__menu-row {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  border-top: 1px solid var(--border);
  padding: 0.5rem 0;
  position: relative;
}

.nav__links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1rem, 2.5vw, 2.2rem);
  list-style: none;
}

.nav__links > li {
  position: relative;
}

.nav__links a {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-mid);
  transition: color var(--duration);
  letter-spacing: 0.04em;
  white-space: nowrap;
  line-height: 1.1;
  text-transform: uppercase;
  font-family: var(--font-body);
}
.nav__links a:hover { color: var(--text); }

/* Booking CTA buttons — positioned outside flow so text links stay centered */
.nav__book-group {
  display: flex;
  gap: 0.35rem;
  align-items: center;
  margin-left: auto;
}
.nav__links a.nav__cta {
  font-weight: 600;
  padding: 0.45rem 1rem;
  transition: all var(--duration);
  white-space: nowrap;
  font-size: 0.8rem;
  letter-spacing: 0.03em;
  border-radius: 100px;
}
.nav__links a.nav__cta--salon {
  color: var(--bg-dark);
  background: var(--accent);
}
.nav__links a.nav__cta--salon:hover {
  background: var(--accent-hover);
  color: var(--white);
}
.nav__links a.nav__cta--online {
  color: var(--accent);
  background: transparent;
  border: 1.5px solid var(--accent);
}
.nav__links a.nav__cta--online:hover {
  background: var(--accent);
  color: var(--bg-dark);
}

.nav__arrow {
  font-size: 0.6em;
  margin-left: 2px;
  opacity: 0.6;
}

/* --- Dropdown menus --- */
.nav__submenu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 240px;
  background: var(--white);
  box-shadow: 0 12px 40px rgba(59,47,42,0.12), 0 2px 8px rgba(59,47,42,0.06);
  border: 1px solid rgba(59,47,42,0.08);
  border-radius: 4px;
  padding: 0.6rem 0;
  padding-top: calc(0.6rem + 10px);
  z-index: 1001;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s;
  pointer-events: none;
}
/* Invisible hover bridge — fills gap between trigger and menu */
.nav__submenu::before {
  content: "";
  position: absolute;
  top: -10px;
  left: 0;
  right: 0;
  height: 10px;
}
.nav__dropdown:hover > .nav__submenu,
.nav__dropdown.open > .nav__submenu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.nav__submenu li {
  position: relative;
}
.nav__submenu a {
  display: block;
  padding: 0.6rem 1.4rem;
  font-size: 0.8rem;
  font-weight: 400;
  text-transform: none;
  color: var(--text-mid);
  letter-spacing: 0.02em;
  transition: background 0.2s ease, color 0.2s ease, padding-left 0.2s ease;
  border-left: 2px solid transparent;
}
.nav__submenu a:hover {
  background: rgba(184,160,137,0.08);
  color: var(--text);
  padding-left: 1.6rem;
  border-left-color: var(--accent);
}

/* --- Nested dropdown (opens right) --- */
.nav__submenu--nested {
  position: absolute;
  top: -0.6rem;
  left: 100%;
  min-width: 220px;
  background: var(--white);
  box-shadow: 0 12px 40px rgba(59,47,42,0.12), 0 2px 8px rgba(59,47,42,0.06);
  border: 1px solid rgba(59,47,42,0.08);
  border-radius: 4px;
  padding: 0.6rem 0;
  z-index: 1002;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s;
  pointer-events: none;
}
/* Invisible hover bridge — fills gap between parent item and nested menu */
.nav__submenu--nested::before {
  content: "";
  position: absolute;
  top: 0;
  left: -8px;
  width: 8px;
  height: 100%;
}
.nav__dropdown--nested:hover > .nav__submenu--nested,
.nav__dropdown--nested.open > .nav__submenu--nested {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.nav__dropdown--nested > a::after {
  content: "\203A";
  float: right;
  opacity: 0.35;
  font-size: 1.1em;
  line-height: 1;
  transition: opacity 0.2s, transform 0.2s;
}
.nav__dropdown--nested:hover > a::after {
  opacity: 0.7;
  transform: translateX(2px);
}

/* --- Burger menu --- */
.nav__burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
  position: absolute;
  right: 1.25rem;
  top: 50%;
  transform: translateY(-50%);
}
.nav__burger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--text);
  transition: all var(--duration);
}

/* --- Hero (Split Layout) --- */
.hero--split {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 0.94fr 1.06fr;
  align-items: center;
  background: var(--bg-alt);
  position: relative;
  overflow: hidden;
  padding: calc(var(--space-3xl) + 2.4rem) var(--space-lg) var(--space-3xl);
  max-width: var(--container);
  margin: 0 auto;
}

.hero--split::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.88)),
    url("../img/tasama-ph21.jpg");
  background-position: center;
  background-size: cover;
  opacity: 0.34;
  filter: saturate(0.66) brightness(1.07);
  pointer-events: none;
}

.hero__text {
  padding-left: var(--space-xl);
  position: relative;
  z-index: 1;
}

.hero__eyebrow {
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: var(--space-md);
  opacity: 0;
  animation: fadeUp 0.8s var(--ease) 0.2s forwards;
}

.hero__title {
  font-size: clamp(3rem, 6vw, 4.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-sm);
  color: var(--text);
  opacity: 0;
  animation: fadeUp 0.8s var(--ease) 0.4s forwards;
}

.hero__subtitle {
  font-family: var(--font-display);
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  font-weight: 400;
  font-style: italic;
  color: var(--text-mid);
  margin-bottom: var(--space-sm);
}

.hero__tagline {
  font-size: 0.92rem;
  color: var(--text-mid);
  margin-bottom: var(--space-lg);
  line-height: 1.9;
}

.hero__actions {
  display: flex;
  gap: var(--space-sm);
  opacity: 0;
  animation: fadeUp 0.8s var(--ease) 1s forwards;
}

.hero__instagram-landing {
  margin-top: var(--space-md);
  border: 1px solid var(--border);
  background: #fff;
  padding: 12px 14px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease) 1.1s forwards;
}

.hero__instagram-landing p {
  margin: 0;
  color: var(--text-mid);
  font-size: 0.85rem;
}

.hero__portrait {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease) 0.6s forwards;
  position: relative;
  z-index: 1;
}

.hero__portrait img {
  width: 100%;
  max-width: 460px;
  height: auto;
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: center top;
  border: 1px solid var(--border);
  box-shadow: 0 14px 42px rgba(33, 33, 33, 0.08);
  opacity: 1;
}

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

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 0.7; }
}

/* --- Seasonal Special --- */
.winter-special,
.seasonal-special {
  padding: var(--space-2xl) var(--space-md);
  background: var(--bg);
}

.special-banner {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.special-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: var(--space-md);
}

.special-banner h2 {
  font-family: var(--font-display);
  color: var(--text);
  font-size: 2rem;
  margin-bottom: var(--space-sm);
  font-weight: 700;
}

.special-banner p {
  color: var(--text-mid);
  font-size: 0.95rem;
}

.special-banner ul {
  list-style: none;
  padding: 0;
  margin: var(--space-sm) 0;
}

.special-banner ul li {
  padding: 8px 0;
  color: var(--text-mid);
  font-size: 0.95rem;
}

.special-banner ul li::before {
  content: '\2014\00a0';
  color: var(--text-light);
}

.special-banner h4 {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
  margin-top: var(--space-md);
  margin-bottom: 0.25rem;
}

.special-price {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--text);
  margin: var(--space-lg) 0 var(--space-md);
}
.special-price--old {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--text-light);
  text-decoration: line-through;
}

.special-note {
  font-size: 0.82rem;
  color: var(--text-light);
  margin-top: var(--space-md);
  margin-bottom: var(--space-lg);
}

/* --- Service Cards --- */
.services { background: var(--bg); }

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl) var(--space-lg);
  align-items: stretch;
}

.service-card {
  text-align: center;
  position: relative;
  padding: var(--space-md) 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
}

.service-card__icon {
  width: 40px;
  height: 40px;
  margin: 0 auto var(--space-md);
  color: var(--text-light);
}

.service-card__title {
  font-size: 1.15rem;
  color: var(--text);
  margin-bottom: 6px;
}

.service-card__duration {
  font-size: 0.72rem;
  color: var(--text-light);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--space-sm);
}

.service-card__desc {
  font-size: 0.9rem;
  color: var(--text-mid);
  margin-bottom: var(--space-md);
  line-height: 1.8;
  max-width: 31ch;
  margin-left: auto;
  margin-right: auto;
  flex: 1 1 auto;
}

.service-card__price {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: var(--space-md);
  margin-top: auto;
}

.service-card__badge {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-light);
  margin-bottom: var(--space-sm);
  position: static;
}

.service-card__badge--premium {
  color: var(--text);
}

.services__note {
  text-align: center;
  margin-top: var(--space-2xl);
  color: var(--text-light);
  font-size: 0.88rem;
  line-height: 1.8;
}

/* Services intro quote */
.services__quote {
  text-align: center;
  margin: var(--space-xl) auto var(--space-lg);
  max-width: 560px;
  padding: var(--space-md) var(--space-lg);
  border-left: 3px solid var(--accent);
  background: var(--bg-alt);
  border-radius: 0 8px 8px 0;
}
.services__quote p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 0.5rem;
}
.services__quote cite {
  font-size: 0.8rem;
  color: var(--text-light);
  letter-spacing: 0.05em;
}

/* Bespoke experience bullet list */
.services__experience {
  max-width: 680px;
  margin: var(--space-xl) auto;
  padding: var(--space-lg) var(--space-xl);
  background: var(--bg-alt);
  border-radius: 12px;
}
.services__experience h3 {
  font-size: 1.05rem;
  color: var(--text);
  margin-bottom: var(--space-md);
}
.services__experience ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.services__experience ul li {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.8;
  padding: 0.35rem 0 0.35rem 1.5rem;
  position: relative;
  border-bottom: 1px solid var(--border);
}
.services__experience ul li:last-child { border-bottom: none; }
.services__experience ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-size: 0.85rem;
}

/* Services group headers */
.services__group { margin-top: var(--space-2xl); }
.services__group-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--text);
  margin-bottom: var(--space-sm);
  padding-bottom: var(--space-sm);
  border-bottom: 1px solid var(--border);
}
.services__group-intro {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.9;
  max-width: 680px;
  margin-bottom: var(--space-xl);
}

/* Perfect For Tourists block */
.services__tourists {
  background: var(--bg-alt);
  border-radius: 12px;
  padding: var(--space-xl);
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}
.services__tourists h3 {
  font-size: 1.1rem;
  color: var(--text);
  margin-bottom: var(--space-sm);
}
.services__tourists p {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: var(--space-md);
}
.services__tourist-options {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.services__tourist-options div {
  font-size: 0.88rem;
  color: var(--text-mid);
  padding: 0.4rem 0;
  border-bottom: 1px solid var(--border);
}
.services__tourist-options div:last-child { border-bottom: none; }
.services__tourist-options strong { color: var(--text); }

/* --- For Him --- */
.for-him {
  background: var(--bg);
}

.for-him__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
}

.for-him__text p {
  color: var(--text-mid);
  margin-bottom: var(--space-sm);
  font-size: 0.95rem;
  line-height: 1.9;
}

.for-him__services {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-sm);
  margin-top: var(--space-md);
}

.for-him__service-item {
  border: 1px solid var(--border);
  padding: var(--space-sm);
}

.for-him__service-item h3 {
  font-size: 1rem;
  margin-bottom: 4px;
}

.for-him__service-item p {
  font-size: 0.85rem;
  margin-bottom: var(--space-sm);
}

.for-him__image img {
  width: 100%;
  height: auto;
  aspect-ratio: 16/10;
  object-fit: cover;
  display: block;
  object-position: center center;
  border: 1px solid var(--border);
}

/* --- Brands --- */
.brands {
  background: var(--bg-alt);
}

.brands__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
}

.brand-card {
  background: var(--bg);
  border: 1px solid var(--border);
  padding: var(--space-lg);
}

.brand-card h3 {
  font-size: 1.5rem;
  margin-bottom: var(--space-sm);
}

.brand-card p {
  color: var(--text-mid);
  font-size: 0.92rem;
  line-height: 1.85;
}

.brand-card__list {
  list-style: disc;
  margin: var(--space-sm) 0 var(--space-md);
  padding-left: 18px;
}

.brand-card__list li {
  color: var(--text-mid);
  font-size: 0.9rem;
  margin-bottom: 8px;
}

.brand-card__links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.brand-card__links a {
  color: var(--accent);
  font-size: 0.88rem;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.brands__story {
  margin-top: var(--space-lg);
  padding: var(--space-lg);
  border: 1px solid var(--border);
  background: #fbfcfc;
}

.brands__story h3 {
  margin-bottom: var(--space-sm);
  font-size: 1.2rem;
}

.brands__story p {
  font-size: 0.92rem;
  color: var(--text-mid);
  margin-bottom: var(--space-sm);
  line-height: 1.85;
}

.philosophy-card {
  border: 1px solid var(--border);
  padding: var(--space-md);
  background: #fff;
}

.philosophy-card h3 {
  font-size: 1.05rem;
  margin-bottom: var(--space-xs);
}

.philosophy-card p {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.8;
}

/* --- Philosophy Contrast (I believe / I don't believe) --- */
.philosophy-contrast {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  max-width: 740px;
}
.philosophy-contrast__col h3 {
  font-size: 1.15rem;
  margin-bottom: var(--space-sm);
}
.philosophy-contrast__list {
  list-style: none;
  padding: 0;
}
.philosophy-contrast__list li {
  padding: 0.5rem 0;
  padding-left: 1.8rem;
  position: relative;
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.7;
}
.philosophy-contrast__list--no li::before {
  content: '\2717';
  position: absolute;
  left: 0;
  color: #C17B7B;
  font-weight: 600;
}
.philosophy-contrast__list--yes li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: var(--success);
  font-weight: 600;
}
@media (max-width: 600px) {
  .philosophy-contrast { grid-template-columns: 1fr; }
}

/* --- Face Gallery --- */
.face-gallery {
  background: var(--bg-alt);
}
.face-gallery .section__eyebrow { color: var(--text-mid); }

.face-gallery__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.face-gallery__item {
  margin: 0;
  border: 1px solid var(--border);
  background: #fff;
}

.face-gallery__item img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  display: block;
}

.face-gallery__caption {
  font-size: 0.75rem;
  color: var(--text-light);
  padding: 7px 8px;
}

.face-gallery__actions {
  margin-top: var(--space-md);
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

/* --- Education --- */
.education {
  background: var(--bg);
}

.education__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-sm);
}

.education-card {
  border: 1px solid var(--border);
  padding: var(--space-md);
  background: #fff;
}

.education-card h3 {
  font-size: 1rem;
  margin-bottom: var(--space-xs);
}

.education-card p {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.75;
}

.education__cta {
  margin-top: var(--space-lg);
  text-align: center;
}

/* --- Neurotris --- */
.neurotris {
  position: relative;
  background:
    linear-gradient(rgba(20, 20, 20, 0.64), rgba(20, 20, 20, 0.64)),
    url("../img/tasama-ph21.jpg");
  background-size: cover;
  background-position: center;
  color: rgba(255, 255, 255, 0.9);
}

.neurotris .section__eyebrow,
.neurotris .section__title,
.neurotris .section__intro,
.neurotris h3,
.neurotris li,
.neurotris p {
  color: rgba(255, 255, 255, 0.93);
}

.neurotris__grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: var(--space-lg);
  align-items: start;
}

.neurotris__text h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
  margin-top: var(--space-sm);
}

.neurotris__list {
  list-style: disc;
  padding-left: 18px;
  margin-bottom: var(--space-md);
}

.neurotris__list li {
  margin-bottom: 8px;
  font-size: 0.9rem;
}

.neurotris__links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.neurotris__links a {
  color: #e5f2ff;
  text-decoration: underline;
  text-underline-offset: 3px;
  font-size: 0.88rem;
}

.neurotris__image img {
  width: 100%;
  height: auto;
  aspect-ratio: 3/4;
  object-fit: cover;
}

/* --- Photo Breaks --- */
.photo-break {
  position: relative;
  overflow: hidden;
  max-height: 460px;
}

.photo-break__img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  display: block;
  filter: saturate(0.9) brightness(1.04);
}

.photo-break--nature {
  max-height: 400px;
}

.photo-break--nature .photo-break__img {
  height: 400px;
}

.photo-break__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
}

.photo-break__text {
  color: var(--white);
  font-family: var(--font-display);
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  font-style: italic;
  text-align: center;
  max-width: 600px;
  padding: 0 var(--space-lg);
  line-height: 1.6;
}

/* --- About --- */
.about {
  background: var(--bg);
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: var(--space-2xl);
  align-items: center;
}

.about__photo {
  width: 100%;
  height: auto;
  aspect-ratio: 3/4;
  object-fit: cover;
  display: block;
}

.about__text p {
  color: var(--text-mid);
  margin-bottom: var(--space-sm);
  font-size: 0.95rem;
  line-height: 1.9;
}

.about__text .section__title {
  margin-bottom: var(--space-md);
}

.about__pillars {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin: var(--space-lg) 0;
}
.about__pillar {
  padding: var(--space-md);
  background: var(--bg-alt);
  border-radius: 8px;
  border-left: 3px solid var(--accent);
}
.about__pillar h4 {
  font-size: 0.95rem;
  color: var(--text);
  margin-bottom: 0.4rem;
}
.about__pillar p {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 0;
}

.about__usp {
  margin: var(--space-lg) 0;
  padding: var(--space-md) var(--space-lg);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.about__usp p {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--text);
  line-height: 1.7;
  text-align: center;
  margin-bottom: 0;
}

.about__for-whom h4 {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-light);
  margin-bottom: var(--space-sm);
}
.about__for-whom ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.about__for-whom ul li {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.8;
  padding: 0.2rem 0 0.2rem 1.5rem;
  position: relative;
}
.about__for-whom ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 600;
}

/* --- Schedule --- */
.schedule {
  text-align: center;
  background: var(--bg-alt);
}

.schedule .section__eyebrow { color: var(--text-mid); }
.schedule .section__title { color: var(--text); }

.schedule__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  margin-bottom: var(--space-xl);
}

.schedule__day {
  padding: var(--space-lg);
  transition: all var(--duration) var(--ease);
}
.schedule__day:hover {
  transform: translateY(-3px);
}

.schedule__icon {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-light);
  margin-bottom: var(--space-sm);
}

.schedule__day h3 {
  font-size: 1.1rem;
  margin-bottom: var(--space-xs);
  color: var(--text);
}

.schedule__time {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: var(--space-xs);
}

.schedule__note {
  font-size: 0.82rem;
  color: var(--text-light);
}

.schedule__cta {
  color: var(--text-mid);
  font-size: 0.9rem;
}
.schedule__cta a {
  color: var(--bg-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* --- Reviews --- */
.reviews {
  text-align: center;
  background: var(--bg);
}

.reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
  margin-bottom: var(--space-lg);
}

.review-card {
  text-align: left;
  padding: 0;
}

.review-card__stars {
  color: var(--text);
  font-size: 0.85rem;
  margin-bottom: var(--space-sm);
  letter-spacing: 2px;
}

.review-card p {
  font-size: 0.92rem;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: var(--space-sm);
  font-style: italic;
}

.review-card cite {
  font-style: normal;
  font-weight: 500;
  font-size: 0.82rem;
  color: var(--text);
}

.reviews__note {
  font-size: 0.72rem;
  color: var(--text-light);
}

/* --- Gift Cards --- */
.giftcards {
  background: var(--bg-alt);
}

.giftcards__grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: var(--space-lg);
  align-items: start;
}

.giftcards__text p {
  color: var(--text-mid);
  margin-bottom: var(--space-sm);
  font-size: 0.95rem;
  line-height: 1.9;
}

.giftcards__options {
  margin-top: var(--space-md);
}

.giftcard-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-sm) 0;
  border-bottom: 1px solid var(--border);
}

.giftcard-item strong {
  color: var(--text);
  font-size: 0.92rem;
}

.giftcard-item span {
  color: var(--text-mid);
  font-size: 0.92rem;
  font-weight: 500;
}

.giftcards__image {
  position: sticky;
  top: 6rem;
}

.giftcards__image img {
  width: 100%;
  height: auto;
  aspect-ratio: 3/4;
  object-fit: cover;
  display: block;
  border-radius: 12px;
}

.giftcards__buy {
  margin-top: var(--space-lg);
  padding-top: var(--space-md);
  border-top: 1px solid var(--border);
}

.giftcards__buy h3 {
  font-size: 1.15rem;
  margin-bottom: var(--space-sm);
}

.giftcard-form {
  text-align: left;
}

.giftcard-form .btn {
  width: 100%;
  margin-top: var(--space-sm);
}

.giftcard-form__status {
  margin-top: var(--space-sm);
  min-height: 1.2em;
  color: var(--text-mid);
  font-size: 0.88rem;
}

/* --- FAQ --- */
.faq {
  text-align: left;
  background: var(--bg);
}

.faq__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  max-width: 700px;
  margin: 0 auto;
  text-align: left;
}

.faq-item {
  padding: var(--space-md) 0;
  cursor: pointer;
  border-bottom: 1px solid var(--border);
}
.faq-item:first-child {
  border-top: 1px solid var(--border);
}

.faq-item summary {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--text-light);
  flex-shrink: 0;
  margin-left: var(--space-sm);
  transition: transform var(--duration);
}
.faq-item[open] summary::after {
  content: '\2212';
}

.faq-item p {
  margin-top: var(--space-sm);
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.8;
}

/* --- Subscribe --- */
.subscribe {
  background: var(--bg);
  text-align: center;
}

.subscribe .section__title {
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
}

.subscribe-form {
  max-width: 620px;
  margin: 0 auto;
  text-align: left;
}

.subscribe-form .btn {
  margin-top: var(--space-sm);
  width: 100%;
}

.subscribe__status {
  margin-top: var(--space-sm);
  min-height: 1.2em;
  color: var(--text-mid);
  font-size: 0.9rem;
}

/* --- Consultation Intake --- */
.consultation-intake {
  background: var(--bg-alt);
  text-align: center;
}

.consultation-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
}

.consultation-step {
  background: var(--bg);
  border: 1px solid var(--border);
  padding: var(--space-md);
  text-align: left;
}

.consultation-step h3 {
  font-size: 1.05rem;
  margin-bottom: 6px;
}

.consultation-step p {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.75;
}

.consultation-actions {
  display: flex;
  justify-content: center;
  margin-bottom: var(--space-md);
}

.consultation-details {
  max-width: 760px;
  margin: 0 auto var(--space-md);
  text-align: left;
}

.consultation-details summary {
  cursor: pointer;
  padding: var(--space-sm) var(--space-md);
  border: 1px solid var(--border);
  background: var(--bg);
  font-weight: 500;
  color: var(--text);
}

.consultation-details[open] summary {
  border-bottom: none;
}

.consultation-details .consultation-form {
  max-width: none;
  border: 1px solid var(--border);
  border-top: none;
  padding: var(--space-md);
  background: var(--bg);
}

.consultation-form {
  max-width: 760px;
  margin: 0 auto;
  text-align: left;
}

.consultation-form__section {
  background: var(--bg);
  border: 1px solid var(--border);
  padding: var(--space-md);
  margin-bottom: var(--space-md);
}

details.consultation-form__collapsible > summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
details.consultation-form__collapsible > summary::-webkit-details-marker { display: none; }
details.consultation-form__collapsible > summary::before {
  content: '\25B6';
  font-size: 0.65rem;
  color: var(--text-light);
  transition: transform var(--duration) var(--ease);
}
details.consultation-form__collapsible[open] > summary::before {
  transform: rotate(90deg);
}
details.consultation-form__collapsible > summary h3 {
  margin-bottom: 0;
}
details.consultation-form__collapsible[open] > summary {
  margin-bottom: var(--space-sm);
}

.consultation-form__section h3 {
  font-size: 1rem;
  font-family: var(--font-body);
  margin-bottom: var(--space-sm);
  font-weight: 600;
}

.consultation-form__subhead {
  font-size: 0.88rem;
  font-family: var(--font-body);
  font-weight: 600;
  color: var(--text);
  margin: var(--space-sm) 0;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.consultation-form__note {
  margin-top: var(--space-xs);
  font-size: 0.78rem;
  color: var(--text-light);
}

.consultation-checkboxes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 14px;
  margin-bottom: var(--space-md);
}

.consultation-checkboxes label {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.88rem;
  color: var(--text-mid);
}

.consultation-checkboxes input {
  margin-top: 3px;
}

.consultation-radio-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
}

.consultation-radio-row label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  color: var(--text-mid);
}

.consultation-form__section--consent {
  border: none;
  background: transparent;
  padding: 0;
}

.consultation-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text-mid);
  margin-bottom: var(--space-sm);
}

.consultation-consent input {
  margin-top: 3px;
}

.consultation-success {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  background: var(--bg);
  border: 1px solid var(--border);
  padding: var(--space-lg);
}

.consultation-success h3 {
  font-size: 1.4rem;
  margin-bottom: var(--space-sm);
}

.consultation-success p {
  color: var(--text-mid);
  margin-bottom: var(--space-sm);
}

/* --- Booking Form --- */
.booking {
  background: var(--bg);
  text-align: center;
}

.booking-form {
  max-width: 600px;
  margin: 0 auto;
  text-align: left;
}

.booking-step {
  margin-bottom: var(--space-xl);
}

.booking-step__title {
  font-size: 1rem;
  color: var(--text);
  margin-bottom: var(--space-md);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: var(--text);
  color: var(--white);
  border-radius: 50%;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  flex-shrink: 0;
}

/* Service radio cards */
.booking-services {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.booking-service { cursor: pointer; }
.booking-service input { position: absolute; opacity: 0; pointer-events: none; }

.booking-service__card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px 14px;
  background: var(--bg);
  transition: all var(--duration) var(--ease);
}
.booking-service__card:hover {
  color: var(--text);
  border-color: #d0d0d0;
}
.booking-service input:checked + .booking-service__card {
  border-color: var(--text);
  background: var(--bg-alt);
  box-shadow: inset 0 0 0 1px var(--text);
}

.booking-service__card strong {
  font-size: 0.92rem;
  color: var(--text);
}

.booking-service input:checked + .booking-service__card strong {
  font-weight: 700;
}

.booking-service__card span {
  font-size: 0.85rem;
  color: var(--text-mid);
  font-weight: 400;
}

/* Spring special highlight */
.booking-service--special .booking-service__card {
  border-color: var(--accent);
  background: linear-gradient(135deg, rgba(184,160,137,0.06), rgba(184,160,137,0.12));
}
.booking-service--special .promo-label {
  font-size: 0.75em;
  font-weight: 400;
  color: var(--accent);
}
.booking-service--special .booking-service__card span s {
  color: var(--text-light);
  font-size: 0.85em;
}

/* Date pills */
.booking-dates {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xs);
  margin-bottom: var(--space-md);
}

.date-pill {
  background: var(--bg);
  border: 1px solid var(--border);
  padding: 10px 16px;
  cursor: pointer;
  text-align: center;
  transition: all var(--duration) var(--ease);
  min-width: 80px;
}
.date-pill:hover { border-color: var(--text); }
.date-pill.active {
  border-color: var(--text);
  background: var(--text);
  color: var(--white);
}
.date-pill.active .date-pill__day,
.date-pill.active .date-pill__date { color: var(--white); }

.date-pill__day {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-light);
  font-weight: 500;
}

.date-pill__date {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
}

/* Time slots */
.booking-times {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xs);
}

.time-slot {
  background: var(--bg);
  border: 1px solid var(--border);
  padding: 8px 16px;
  cursor: pointer;
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--text);
  transition: all var(--duration) var(--ease);
}
.time-slot:hover { border-color: var(--text); }
.time-slot.active {
  border-color: var(--text);
  background: var(--text);
  color: var(--white);
}
.time-slot.booked {
  opacity: 0.3;
  cursor: not-allowed;
  text-decoration: line-through;
}

/* Form fields */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-sm);
}

.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group--full { grid-column: 1 / -1; }

.form-group label {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text);
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.form-group input,
.form-group textarea,
.form-group select {
  background: var(--bg);
  border: 1px solid var(--border);
  padding: 12px 14px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text);
  transition: border-color var(--duration);
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--text);
  outline: 2px solid var(--accent);
  outline-offset: 1px;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-light);
}

.form-group__hint {
  margin-top: 2px;
  color: var(--text-light);
  font-size: 0.74rem;
  letter-spacing: 0.03em;
}

.booking-summary {
  background: var(--bg-alt);
  padding: var(--space-md);
  margin-bottom: var(--space-md);
  font-size: 0.9rem;
  display: none;
}
.booking-summary.visible { display: block; }

.booking-form .btn--lg {
  display: block;
  margin: 0 auto;
}

/* Success */
.booking-success {
  text-align: center;
  padding: var(--space-xl) 0;
}

.booking-success__icon {
  width: 64px;
  height: 64px;
  background: var(--text);
  color: var(--white);
  font-size: 1.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-md);
  animation: scaleIn 0.5s var(--ease);
}

@keyframes scaleIn {
  from { transform: scale(0); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.booking-success h3 {
  font-size: 1.5rem;
  color: var(--text);
  margin-bottom: var(--space-sm);
}

.booking-success p {
  color: var(--text-mid);
  margin-bottom: var(--space-sm);
}

.booking-success__details {
  background: var(--bg-alt);
  padding: var(--space-md);
  margin: var(--space-md) auto;
  max-width: 400px;
  text-align: left;
  font-size: 0.9rem;
}

/* --- Location --- */
.location {
  background: var(--bg);
}

.location__grid {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(0, 1.2fr);
  gap: var(--space-2xl);
  align-items: stretch;
}

.location__address,
.location__transport,
.location__contact {
  margin-bottom: var(--space-md);
}

.location__info p {
  color: var(--text-mid);
  font-size: 0.92rem;
  margin-bottom: 4px;
}

.location__info strong {
  color: var(--text);
}

.location__info a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.location__map {
  background: #fff;
  border: 1px solid var(--border);
  padding: 8px;
}

.location__map iframe {
  box-shadow: none;
  width: 100%;
  height: 420px;
  border: 0;
  display: block;
}

/* --- Footer --- */
.footer {
  background: var(--bg-dark);
  color: rgba(255,255,255,0.92);
  padding: var(--space-xl) 0 var(--space-lg);
}
.footer a {
  color: rgba(255,255,255,0.88);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: var(--space-lg);
  margin-bottom: var(--space-xl);
}

.footer__logo {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: var(--space-xs);
}

.footer h4 {
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: var(--space-sm);
  font-weight: 500;
}

.footer ul li {
  margin-bottom: 6px;
  font-size: 0.85rem;
}

.footer__links ul {
  columns: 2;
  column-gap: var(--space-md);
}
.footer__links ul li {
  break-inside: avoid;
}

.footer a:hover { color: var(--white); }

.social-link {
  display: inline-flex;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.1);
  margin-right: 6px;
  transition: all var(--duration);
}
.social-link:hover {
  border-color: rgba(255,255,255,0.3);
  color: var(--white);
}
.social-link svg { width: 16px; height: 16px; }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: var(--space-md);
  padding-bottom: 60px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 0.75rem;
}

.footer__privacy a {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.footer__byline {
  margin-left: auto;
  padding-right: 48px;
  text-align: right;
  white-space: nowrap;
}

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

.footer__credit a {
  color: rgba(255,255,255,0.82);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.footer__credit a:hover {
  color: #fff;
}


.floating-book-now {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 1100;
  background: var(--text);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  padding: 10px 16px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 12px 28px rgba(51, 51, 51, 0.2);
  transition: transform var(--duration) var(--ease), background var(--duration) var(--ease);
}

.floating-book-now:hover {
  transform: translateY(-1px);
  background: var(--bg-dark);
}

body.nav-open .floating-book-now {
  display: none;
}

/* --- Treatment Packages --- */
.packages { margin-top: var(--space-2xl); max-width: 700px; margin-left: auto; margin-right: auto; text-align: center; }
.packages__title { font-family: var(--font-display); font-size: 1.5rem; color: var(--text); margin-bottom: var(--space-sm); }
.packages__subtitle { color: var(--text-light); margin-bottom: var(--space-lg); font-size: 0.88rem; }
.packages__list { text-align: left; }
.packages__row { padding: var(--space-md) 0; border-bottom: 1px solid var(--border); display: flex; justify-content: space-between; align-items: center; gap: var(--space-sm); }
.packages__info strong { color: var(--text); font-size: 0.95rem; }
.packages__info span { font-size: 0.85rem; color: var(--text-mid); }
.packages__price { text-align: right; white-space: nowrap; }
.packages__price-old { font-size: 0.78rem; color: var(--text-light); text-decoration: line-through; }
.packages__price-new { font-size: 1.2rem; color: var(--text); font-family: var(--font-display); font-weight: 700; }
.packages__note { margin-top: var(--space-md); font-size: 0.82rem; color: var(--text-light); }

/* --- Animations (scroll reveal) – disabled, content visible immediately --- */
[data-aos] {
  opacity: 1;
}

/* --- Accessibility --- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

.btn:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }
.form-group input:focus-visible,
.form-group select:focus-visible,
.form-group textarea:focus-visible { outline: 2px solid var(--accent); outline-offset: 1px; }
.nav__links a:focus-visible,
.social-link:focus-visible,
.cookie-consent__btn:focus-visible,
.scroll-top:focus-visible,
.date-pill:focus-visible,
.time-slot:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }

/* --- Form Inline Errors --- */
.form-error {
  color: #c0392b;
  font-size: 0.82rem;
  margin-top: var(--space-xs);
  padding: var(--space-xs) var(--space-sm);
  background: #fdf0ef;
  border-radius: 4px;
  display: none;
}
.form-error.visible { display: block; }

/* --- Responsive --- */
@media (max-width: 900px) {
  .container { padding: 0 var(--space-md); }
  .section { padding-top: var(--space-2xl); padding-bottom: var(--space-2xl); }
  .hero--split { grid-template-columns: 1fr; text-align: center; padding-top: calc(var(--space-3xl) + 1rem); min-height: auto; padding-left: var(--space-md); padding-right: var(--space-md); }
  .hero__text { padding-left: 0; padding-right: 0; }
  .hero__portrait { order: -1; justify-content: center; margin-top: var(--space-lg); }
  .hero__actions { justify-content: center; }
  .hero__portrait img { max-width: 280px; margin: 0 auto; }

  .services__grid { grid-template-columns: 1fr 1fr; max-width: none; }
  .schedule__grid,
  .reviews__grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
  .packages__row { flex-wrap: wrap; }
  .faq__grid { grid-template-columns: 1fr; }
  .about__grid { grid-template-columns: 1fr; }
  .about__image { order: -1; max-width: 400px; margin: 0 auto; }
  .for-him__grid { grid-template-columns: 1fr; }
  .for-him__image { order: -1; max-width: 400px; margin: 0 auto; }
  .for-him__services { grid-template-columns: 1fr; }
  .brands__grid { grid-template-columns: 1fr; }
  .education__grid { grid-template-columns: 1fr 1fr; }
  .face-gallery__grid { grid-template-columns: repeat(3, 1fr); }
  .neurotris__grid { grid-template-columns: 1fr; }
  .consultation-steps { grid-template-columns: 1fr; }
  .giftcards__grid { grid-template-columns: 1fr; }
  .giftcards__image { order: -1; max-width: 400px; margin: 0 auto; position: static; }
  .location__grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: var(--space-md); }
  .floating-book-now {
    right: 14px;
    bottom: 14px;
  }
}

@media (max-width: 700px) {
  .nav__inner { position: relative; }
  .nav__menu-row { display: contents; }
  .nav__logo-row { justify-content: center; padding: 0.25rem 0; }
  .nav__logo-mark { height: 50px; }
  .nav--solid .nav__logo-mark { height: 0; opacity: 0; overflow: hidden; }
  .nav__logo-text { height: 42px; }
  .nav--solid .nav__logo-text { height: 36px; }

  .nav__links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: var(--bg-dark);
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    gap: 0;
    padding-top: 4.5rem;
    padding-bottom: 2rem;
    overflow-y: auto;
    transition: right 0.4s var(--ease);
    box-shadow: -10px 0 30px rgba(0,0,0,0.2);
  }
  .nav__links.open { right: 0; }
  .nav__links > li { border-bottom: 1px solid rgba(255,255,255,0.08); }

  .nav .nav__links a {
    color: var(--white);
    font-size: 0.92rem;
    text-transform: none;
    padding: 0.85rem 1.5rem;
    display: block;
  }
  .nav .nav__links a:hover { background: rgba(255,255,255,0.06); }

  /* Booking CTA buttons in mobile menu */
  .nav .nav__book-group {
    position: static;
    transform: none;
    flex-direction: column;
    gap: 0;
    margin: 0.5rem 0;
  }
  .nav .nav__links a.nav__cta {
    text-align: center;
    margin: 0.3rem 1.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-size: 0.85rem;
  }
  .nav .nav__links a.nav__cta--salon {
    background: var(--white);
    color: var(--bg-dark);
  }
  .nav .nav__links a.nav__cta--online {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
  }
  .nav .nav__links a.nav__cta:hover {
    background: var(--accent);
    color: var(--white);
  }

  /* Mobile dropdowns - accordion style */
  .nav__submenu,
  .nav__submenu--nested {
    position: static;
    transform: none;
    box-shadow: none;
    border: none;
    border-radius: 0;
    background: rgba(0,0,0,0.15);
    min-width: 0;
    padding: 0;
    opacity: 1;
    visibility: hidden;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, visibility 0.3s;
    pointer-events: auto;
  }
  .nav__dropdown.open > .nav__submenu,
  .nav__dropdown--nested.open > .nav__submenu--nested {
    visibility: visible;
    max-height: 600px;
  }
  /* Don't show on hover in mobile */
  .nav__dropdown:hover > .nav__submenu,
  .nav__dropdown--nested:hover > .nav__submenu--nested {
    visibility: hidden;
    max-height: 0;
  }
  .nav__dropdown.open:hover > .nav__submenu,
  .nav__dropdown--nested.open:hover > .nav__submenu--nested {
    visibility: visible;
    max-height: 600px;
  }
  .nav__submenu a,
  .nav__submenu--nested a {
    color: rgba(255,255,255,0.8) !important;
    padding-left: 2.5rem;
    font-size: 0.85rem;
    border-left: none;
  }
  .nav__submenu a:hover {
    padding-left: 2.5rem;
    border-left: none;
    background: rgba(255,255,255,0.06);
  }
  .nav__submenu--nested a {
    padding-left: 3.5rem !important;
  }
  .nav__dropdown--nested > a::after { content: none; }
  .nav__arrow { transition: transform var(--duration); }
  .nav__dropdown.open > a .nav__arrow,
  .nav__dropdown--nested.open > a .nav__arrow {
    transform: rotate(180deg);
    display: inline-block;
  }

  .nav__burger { display: flex; top: 0.8rem; right: 1rem; transform: none; z-index: 1010; }
  .nav__burger.active span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
  .nav__burger.active span:nth-child(2) { opacity: 0; }
  .nav__burger.active span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

  .photo-break__img { height: 300px; }
  .photo-break--nature .photo-break__img { height: 250px; }
  .hero__title { font-size: clamp(2.5rem, 12vw, 4rem); }
  .hero__actions { flex-direction: column; align-items: center; }
  .hero__instagram-landing {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }

  .container { padding: 0 var(--space-sm); }
  .form-grid { grid-template-columns: 1fr; }
  .consultation-checkboxes { grid-template-columns: 1fr; }
  .brand-card__links { flex-direction: column; gap: 8px; }
  .education__grid { grid-template-columns: 1fr; }
  .face-gallery__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__links ul { columns: 1; }
  .footer__bottom { flex-direction: column; gap: 8px; text-align: center; align-items: center; padding-bottom: var(--space-md); }
  .footer__byline { margin-left: 0; text-align: center; white-space: normal; padding-right: 0; }
  .floating-book-now {
    right: 12px;
    bottom: 12px;
    font-size: 0.72rem;
    padding: 9px 13px;
  }
}

@media (max-width: 480px) {
  .section { padding-top: var(--space-xl); padding-bottom: var(--space-xl); }
  .services__grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .booking-services { grid-template-columns: 1fr; }
  .hero__title { font-size: clamp(2.2rem, 10vw, 3.5rem); }
  .hero__portrait img { max-width: 220px; }
  .packages__row { flex-direction: column; text-align: center; gap: var(--space-xs); }
  .packages__price { text-align: center; }
  .face-gallery__grid { grid-template-columns: 1fr; }
  .section__title { font-size: clamp(1.6rem, 7vw, 2rem); }
  .date-pill { min-width: 68px; padding: 8px 10px; }
  .date-pill__date { font-size: 0.9rem; }
  .time-slot { padding: 7px 12px; font-size: 0.82rem; }
  .booking-service__card { padding: 10px 12px; }
  .booking-service__card strong { font-size: 0.85rem; }
  .booking-service__card span { font-size: 0.78rem; }
  .nav__links { width: 260px; }
  .form-group label { font-size: 0.85rem; }
  .form-group input, .form-group textarea, .form-group select { font-size: 0.9rem; }
}

/* --- Utility Classes --- */
.mt-md { margin-top: var(--space-md); }
.mt-2xl { margin-top: var(--space-2xl); }
.pt-page-header { padding-top: calc(var(--space-3xl) + 3rem); }
.text-center { text-align: center; }
.text-sm { font-size: 0.9rem; }
.brand-subtitle { color: var(--text-light); font-weight: 400; margin-top: 0.25rem; }

.contact-link {
  color: var(--accent);
  text-decoration: none;
}

.contact-link--muted {
  color: var(--text-mid);
  text-decoration: none;
}

.hero__contact-row {
  margin: 1.5rem 0;
  font-size: 0.88rem;
  color: var(--text-light);
}

.schedule__day-link {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

.giftcards__validity {
  margin-top: var(--space-md);
  font-size: 0.85rem;
  color: var(--text-light);
}

.location__map-link {
  margin-top: var(--space-sm);
  text-align: center;
  font-size: 0.85rem;
}

.location__map-link a {
  color: var(--accent);
  text-decoration: underline;
}

/* --- Treatment Intro Cards (Home) --- */
.treatment-intro__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  margin-top: var(--space-xl);
}
a.treatment-intro__card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}
.treatment-intro__card {
  display: flex;
  flex-direction: column;
  padding: var(--space-lg);
  background: var(--bg-alt);
  border-radius: 8px;
  text-align: center;
  transition: box-shadow var(--duration), transform var(--duration);
}
.treatment-intro__card:hover {
  box-shadow: 0 4px 20px rgba(0,0,0,.08);
  transform: translateY(-2px);
}
.treatment-intro__card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: var(--space-sm);
}
.treatment-intro__card p {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: var(--space-md);
}
.treatment-intro__price {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
  margin-top: auto;
}

/* --- About Teaser (Home) --- */
.about-teaser { background: var(--bg-alt); }
.about-teaser__grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: var(--space-2xl);
  align-items: center;
}
.about-teaser__image img {
  width: 100%;
  max-width: 420px;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 4px;
}

/* --- Hero Quote --- */
.hero__quote {
  margin: var(--space-md) 0;
  padding: var(--space-sm) 0 var(--space-sm) var(--space-md);
  border-left: 3px solid var(--accent-pink);
}
.hero__quote p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.92rem;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 0.3rem;
}
.hero__quote cite {
  font-size: 0.78rem;
  font-style: normal;
  color: var(--text-light);
}

/* --- Quick Navigation (Treatments page) --- */
.quick-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
.quick-nav__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 12px 16px;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 8px;
  text-decoration: none;
  color: var(--text);
  transition: border-color 0.2s, box-shadow 0.2s;
  position: relative;
  min-width: 120px;
  text-align: center;
}
.quick-nav__item:hover {
  border-color: var(--accent);
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.quick-nav__item--popular {
  border-color: var(--accent);
  border-width: 2px;
  background: var(--accent);
  color: var(--bg-dark);
  box-shadow: 0 4px 16px rgba(184, 168, 154, 0.4);
}
.quick-nav__item--popular .quick-nav__name {
  color: var(--bg-dark);
}
.quick-nav__item--popular .quick-nav__info {
  color: var(--text-mid);
}
.quick-nav__badge {
  font-size: 0.6rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--bg-dark);
  margin-top: 4px;
}
.quick-nav__name {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  line-height: 1.3;
}
.quick-nav__info {
  font-size: 0.72rem;
  color: var(--text-mid);
  margin-top: 2px;
}
@media (max-width: 480px) {
  .quick-nav { gap: 6px; }
  .quick-nav__item { min-width: 0; flex: 1 1 calc(50% - 6px); padding: 10px 8px; }
  .quick-nav__name { font-size: 0.78rem; }
}

/* --- Treatment Catalog Cards (Treatments overview page) --- */
.treatment-card {
  padding: var(--space-md);
  margin-bottom: var(--space-md);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  transition: box-shadow 0.2s, border-color 0.2s;
}
.treatment-card:hover {
  border-color: var(--accent);
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}
.treatment-card--popular {
  border-color: var(--accent-pink);
  border-width: 2px;
  background: linear-gradient(135deg, #fff 0%, #faf5f4 100%);
  box-shadow: 0 4px 16px rgba(231, 183, 178, 0.25);
}
.treatment-card__header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: var(--space-xs);
  gap: var(--space-sm);
}
.treatment-card__header h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
}
.treatment-card__header h3 a {
  color: var(--text);
  text-decoration: none;
}
.treatment-card__header h3 a:hover {
  color: var(--accent-hover);
}
.treatment-card p {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.6;
  margin-bottom: var(--space-sm);
}
.treatment-card__actions {
  display: flex;
  gap: var(--space-xs);
}
@media (max-width: 600px) {
  .treatment-card__header {
    flex-direction: column;
    gap: 2px;
  }
}

/* --- Treatment Detail Cards (Treatments page) --- */
.treatment-detail {
  padding: var(--space-lg) 0;
  border-bottom: 1px solid var(--border);
}
.treatment-detail:last-of-type { border-bottom: none; }
.treatment-detail__header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: var(--space-sm);
  gap: var(--space-sm);
}
.treatment-detail__header h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text);
}
.treatment-detail__meta {
  font-size: 0.82rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  white-space: nowrap;
}
.treatment-detail__badge {
  display: inline-block;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent-pink);
  font-weight: 500;
  margin-bottom: var(--space-xs);
}
.treatment-detail__badge--premium {
  color: var(--accent-blue);
}
.treatment-detail__summary {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: var(--space-sm);
}
.treatment-detail__expand {
  margin-bottom: var(--space-md);
}
.treatment-detail__expand summary {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text);
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.treatment-detail__body {
  margin-top: var(--space-sm);
  padding: var(--space-md);
  background: var(--white);
  border-radius: 8px;
}
.treatment-detail__body p,
.treatment-detail__body li {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.8;
}
.treatment-detail__body p { margin-bottom: var(--space-sm); }
.treatment-detail__body p:last-child { margin-bottom: 0; }
.treatment-detail__body ul {
  padding-left: 1.2rem;
  margin-bottom: var(--space-sm);
}
.treatment-detail__body li { margin-bottom: 0.3rem; }

/* --- Treatment Note / Callout --- */
.treatment-note {
  background: var(--white);
  border-left: 3px solid var(--accent-pink);
  padding: var(--space-md) var(--space-lg);
  border-radius: 0 8px 8px 0;
  margin: var(--space-lg) 0;
}
.treatment-note h4 {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: var(--space-xs);
}
.treatment-note p {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.8;
}

/* --- Massage Detail Structure --- */
.massage-detail__structure h5 {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-light);
  margin: var(--space-sm) 0 var(--space-xs);
  font-weight: 500;
}
.massage-detail__structure h5:first-child { margin-top: 0; }

/* --- Philosophy Grid (About page) --- */
.philosophy-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
  margin-top: var(--space-xl);
}
.philosophy-card {
  padding: var(--space-lg);
  background: var(--bg-alt);
  border-radius: 8px;
}
.philosophy-card h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: var(--space-sm);
}
.philosophy-card p {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.8;
}

/* --- Differentiators (About page) --- */
.differentiators {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
  margin-top: var(--space-xl);
}
.differentiator {
  padding-left: var(--space-md);
  border-left: 3px solid var(--accent-pink);
}
.differentiator h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: var(--space-xs);
}
.differentiator p {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.8;
}

/* --- Nav Active State --- */
.nav__link--active {
  color: var(--text) !important;
  font-weight: 500;
}

/* --- Responsive: New Components at 900px --- */
@media (max-width: 900px) {
  .treatment-intro__cards { grid-template-columns: 1fr 1fr; }
  .about-teaser__grid { grid-template-columns: 1fr; }
  .about-teaser__image { order: -1; text-align: center; }
  .about-teaser__image img { max-width: 320px; margin: 0 auto; }
  .treatment-detail__header { flex-direction: column; gap: var(--space-xs); }
  .philosophy-grid { grid-template-columns: 1fr; }
  .differentiators { grid-template-columns: 1fr; }
}

/* --- Responsive: New Components at 480px --- */
@media (max-width: 480px) {
  .treatment-intro__cards { grid-template-columns: 1fr; }
}

/* --- Cookie Consent Banner --- */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--bg-dark);
  color: rgba(255,255,255,0.9);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.85rem;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
  transform: translateY(100%);
  transition: transform 0.4s var(--ease);
}
.cookie-consent.visible { transform: translateY(0); }
.cookie-consent p { margin: 0; max-width: 600px; line-height: 1.6; }
.cookie-consent a { color: var(--accent); text-decoration: underline; text-underline-offset: 2px; }
.cookie-consent__actions { display: flex; gap: 8px; flex-shrink: 0; }
.cookie-consent__btn {
  padding: 8px 18px;
  border: 1px solid rgba(255,255,255,0.2);
  background: transparent;
  color: #fff;
  font-size: 0.78rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: all var(--duration);
  font-family: var(--font-body);
}
.cookie-consent__btn--accept {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--bg-dark);
}
.cookie-consent__btn:hover { opacity: 0.85; }

/* Breadcrumbs are defined in the Treatment Detail section below */

/* --- Scroll-to-Top --- */
.scroll-top {
  position: fixed;
  right: 16px;
  bottom: 80px;
  z-index: 1050;
  width: 40px;
  height: 40px;
  background: var(--bg-dark);
  color: #fff;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.3s, visibility 0.3s, transform 0.3s;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
.scroll-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.scroll-top:hover { background: var(--accent-hover); }
.scroll-top svg { width: 18px; height: 18px; }

/* --- Brand Logos Strip --- */
.brand-logos {
  background: var(--bg);
  text-align: center;
}
.brand-logos__grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2xl);
  flex-wrap: wrap;
}
.brand-logos__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0.85;
  transition: opacity var(--duration);
}
.brand-logos__item:hover { opacity: 1; }
.brand-logos__item svg { height: 48px; width: auto; }
.brand-logos__item span {
  font-size: 0.72rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

/* --- Instagram CTA Section --- */
.instagram-feed {
  background: var(--bg-alt);
  text-align: center;
}
.instagram-feed__cta-block {
  max-width: 500px;
  margin: 0 auto;
  padding: var(--space-lg);
  border: 1px solid var(--border);
  background: var(--bg);
  border-radius: 8px;
}
.instagram-feed__cta-block .instagram-feed__icon {
  margin-bottom: var(--space-md);
}
.instagram-feed__cta-block .instagram-feed__icon svg {
  width: 48px;
  height: 48px;
  color: var(--text-mid);
}
.instagram-feed__handle {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--text);
  margin-bottom: var(--space-xs);
}
.instagram-feed__desc {
  font-size: 0.9rem;
  color: var(--text-mid);
  margin-bottom: var(--space-md);
}

/* --- Contact Form --- */
.contact-section {
  background: var(--bg-alt);
  border-radius: 12px;
  padding: var(--space-xl);
  margin-top: var(--space-xl);
}
.contact-section h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--text);
  margin-bottom: var(--space-md);
}
.contact-form__status {
  margin-top: var(--space-sm);
  min-height: 1.2em;
  color: var(--text-mid);
  font-size: 0.88rem;
}

/* --- Before/After Gallery --- */
.before-after__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  margin-top: var(--space-lg);
}
.before-after__card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
}
.before-after__images {
  background: var(--border);
}
.before-after__images img {
  width: 100%;
  display: block;
  object-fit: cover;
}
.before-after__info {
  padding: var(--space-md);
}
.before-after__info h4 {
  font-size: 1rem;
  margin-bottom: var(--space-xs);
}
.before-after__info p {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.7;
}
.before-after__disclaimer {
  margin-top: var(--space-lg);
  font-size: 0.78rem;
  color: var(--text-light);
  text-align: center;
  font-style: italic;
}

/* --- Responsive: New Components --- */
@media (max-width: 900px) {
  .brand-logos__grid { gap: var(--space-lg); }
  .before-after__grid { grid-template-columns: 1fr; }
}

@media (max-width: 700px) {
  .cookie-consent { flex-direction: column; text-align: center; padding: 14px 16px; }
  .scroll-top { right: 12px; bottom: 72px; width: 36px; height: 36px; }
  .scroll-top svg { width: 16px; height: 16px; }
}

@media (max-width: 480px) {
}

/* === Treatment Page Utility Classes === */
.tp__article { padding-top: var(--space-lg); }
.tp__cta-section { text-align: center; background: var(--bg-alt); padding: var(--space-2xl) 0; }
.tp__cta-section .btn + .btn { margin-left: 1rem; }

/* === Breadcrumbs === */
.breadcrumbs {
  margin-top: 120px;
  padding: 0.6rem 0;
}
.breadcrumbs__list {
  display: inline-flex;
  align-items: center;
  list-style: none;
  padding: 0.45rem 1.1rem;
  margin: 0;
  font-size: 0.75rem;
  color: var(--text-light);
  background: var(--bg-alt);
  border-radius: 100px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 500;
}
.breadcrumbs__list a {
  color: var(--text-mid);
  text-decoration: none;
  transition: color var(--duration) var(--ease);
}
.breadcrumbs__list a:hover { color: var(--text); }
.breadcrumbs__sep {
  padding: 0 0.4rem;
  font-size: 0;
  user-select: none;
  display: inline-flex;
  align-items: center;
}
.breadcrumbs__sep::before {
  content: '\203A';
  font-size: 0.95rem;
  line-height: 1;
  color: var(--accent);
}
@media (max-width: 700px) {
  .breadcrumbs { margin-top: 80px; padding: 0.4rem 0; }
  .breadcrumbs__list { font-size: 0.7rem; padding: 0.4rem 0.9rem; }
}

/* === Treatment Detail Pages (tp__) === */

.tp__header { margin-bottom: var(--space-xl); }
.tp__meta {
  display: flex;
  gap: var(--space-md);
  margin-top: var(--space-sm);
  font-size: 1rem;
}
.tp__duration, .tp__price {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.4rem 1rem;
  background: var(--bg-alt);
  border-radius: 4px;
  font-weight: 500;
  color: var(--text);
}
.tp__price { font-family: var(--font-display); font-size: 1.15rem; font-weight: 700; }
.tp__badge, .tp__booking-badge {
  display: inline-block;
  background: var(--accent);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.25rem 0.75rem;
  border-radius: 3px;
  margin-bottom: var(--space-xs);
}
.tp__badge--premium { background: var(--accent-blue); }

.tp__grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: var(--space-xl);
  align-items: start;
}

.tp__section { margin-bottom: var(--space-xl); }
.tp__section h2 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin-bottom: var(--space-sm);
  color: var(--text);
}
.tp__section p {
  font-size: 0.95rem;
  line-height: 1.85;
  color: var(--text-mid);
  margin-bottom: var(--space-sm);
}

.tp__list, .tp__steps {
  padding-left: 0;
  list-style: none;
}
.tp__list li, .tp__steps li {
  position: relative;
  padding: 0.4rem 0 0.4rem 1.6rem;
  font-size: 0.93rem;
  line-height: 1.7;
  color: var(--text-mid);
}
.tp__list li::before {
  content: '\2022';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
  font-size: 1.1rem;
}
.tp__list--check li::before {
  content: '\2713';
  color: var(--success);
  font-weight: 600;
}
.tp__steps { counter-reset: step; }
.tp__steps li { counter-increment: step; }
.tp__steps li::before {
  content: counter(step) '.';
  position: absolute;
  left: 0;
  font-weight: 600;
  color: var(--accent);
}

.tp__section--notice {
  background: #FFF8F0;
  border-left: 3px solid var(--accent);
  padding: var(--space-md);
  border-radius: 0 4px 4px 0;
}
.tp__section--notice h2 { font-size: 1.1rem; }

/* Sidebar */
.tp__sidebar { position: sticky; top: 100px; }
.tp__booking-card {
  background: var(--white);
  border: 1px solid var(--border);
  padding: var(--space-lg);
  margin-bottom: var(--space-md);
  text-align: center;
}
.tp__booking-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin-bottom: var(--space-sm);
}
.tp__booking-meta {
  font-size: 0.9rem;
  color: var(--text-mid);
  margin-bottom: 0.3rem;
}
.tp__booking-card .btn { width: 100%; margin-top: var(--space-sm); }
.tp__booking-note {
  font-size: 0.82rem;
  color: var(--text-light);
  margin-top: var(--space-sm);
}
.tp__booking-note a { color: var(--text-mid); text-decoration: underline; }
.tp__booking-badge {
  display: inline-block;
  margin-bottom: var(--space-xs);
}

.tp__related, .tp__package-hint {
  background: var(--white);
  border: 1px solid var(--border);
  padding: var(--space-md);
  margin-bottom: var(--space-md);
}
.tp__related h4, .tp__package-hint h4 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  margin-bottom: var(--space-sm);
}
.tp__related ul { list-style: none; padding: 0; }
.tp__related li { padding: 0.35rem 0; border-bottom: 1px solid var(--bg-alt); font-size: 0.88rem; }
.tp__related li:last-child { border-bottom: none; }
.tp__related a { color: var(--text-mid); }
.tp__related a:hover { color: var(--text); text-decoration: underline; }

.tp__package-hint p { font-size: 0.88rem; color: var(--text-mid); line-height: 1.7; margin-bottom: var(--space-xs); }
.tp__package-hint a { color: var(--accent-hover); font-weight: 500; font-size: 0.88rem; }
.tp__package-hint a:hover { text-decoration: underline; }

/* Treatment page responsiveness */
@media (max-width: 900px) {
  .tp__grid { grid-template-columns: 1fr; }
  .tp__sidebar { position: static; display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-md); }
}
@media (max-width: 600px) {
  .tp__sidebar { grid-template-columns: 1fr; }
  .tp__meta { flex-wrap: wrap; }
}

/* --- Print --- */
@media print {
  .nav, .hero__scroll, .btn, .booking-form, .footer__social, .cookie-consent, .scroll-top { display: none; }
  .hero { min-height: auto; padding: 2rem; }
  .section { padding-top: 1.5rem; padding-bottom: 1.5rem; }
}
