:root {
  --white-rgb: 255, 255, 255;
  --ink-rgb: 24, 22, 24;
  --accent-rgb: 184, 22, 34;
  --accent-dark-rgb: 104, 9, 18;
  --accent-soft-rgb: 255, 228, 232;
  --success-rgb: 24, 98, 66;
  --whatsapp-rgb: 19, 141, 98;
  --bg: #f7f0f0;
  --bg-soft: rgba(var(--white-rgb), 0.62);
  --ink: #181618;
  --muted: #5f5558;
  --line: rgba(var(--ink-rgb), 0.12);
  --line-strong: rgba(var(--ink-rgb), 0.18);
  --accent: #b81622;
  --accent-dark: #680912;
  --accent-soft: #ffe4e8;
  --card: rgba(var(--white-rgb), 0.84);
  --card-strong: rgba(var(--white-rgb), 0.94);
  --shadow: 0 28px 80px rgba(var(--ink-rgb), 0.14);
  --shadow-soft: 0 18px 42px rgba(var(--ink-rgb), 0.1);
  --success: rgb(var(--success-rgb));
  --danger: #d62839;
  --sticky-banner-offset: 158px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(var(--accent-rgb), 0.18), transparent 28rem),
    radial-gradient(circle at 85% 15%, rgba(var(--ink-rgb), 0.08), transparent 26rem),
    linear-gradient(180deg, #ffffff 0%, #f4ebec 100%);
}

body.is-overlay-open {
  overflow: hidden;
}

.section-banner {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  padding: 0.85rem 1rem 0;
}

.section-banner__notice {
  width: min(1160px, 100%);
  margin: 0 auto 0.55rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.9rem;
  padding: 0.5rem 0.95rem;
  border-radius: 22px;
  background: linear-gradient(145deg, rgba(var(--accent-dark-rgb), 0.98), rgba(var(--accent-rgb), 0.92));
  box-shadow: var(--shadow-soft);
  color: #fff;
}

.section-banner__notice-copy {
  display: grid;
  gap: 0.2rem;
}

.section-banner__notice-copy span {
  color: #fff;
  font-size: 0.92rem;
  font-weight: 700;
}

.section-banner__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.72rem 1rem;
  border: 1px solid rgba(var(--white-rgb), 0.22);
  border-radius: 999px;
  background: rgba(var(--white-rgb), 0.14);
  color: #fff;
  font: inherit;
  font-size: 0.88rem;
  font-weight: 800;
  cursor: pointer;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.section-banner__cta:hover {
  transform: translateY(-1px);
  background: rgba(var(--white-rgb), 0.22);
  border-color: rgba(var(--white-rgb), 0.36);
}

.section-banner__inner {
  width: min(1160px, calc(100% - 0rem));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.8rem 0.95rem;
  border-radius: 24px;
  border: 1px solid rgba(var(--accent-rgb), 0.16);
  background: rgba(var(--white-rgb), 0.88);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(14px);
}

.section-banner__brand {
  display: grid;
  gap: 0.18rem;
  padding: 0;
  border: 0;
  background: transparent;
  color: #ffffff;
  text-align: left;
  cursor: pointer;
}

.section-banner__brand strong {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.7rem;
  line-height: 0.95;
}

.section-banner__brand span {
  font-size: 0.82rem;
  font-weight: 700;
}

.section-banner__nav {
  display: flex;
  gap: 0.55rem;
  overflow-x: auto;
  padding-bottom: 0.1rem;
}

.section-banner__link,
.site-footer__link-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.72rem 0.95rem;
  border-radius: 999px;
  border: 1px solid rgba(var(--accent-rgb), 0.12);
  background: white;
  color: #891721;
  font: inherit;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.section-banner__link:hover,
.site-footer__link-button:hover {
  transform: translateY(-1px);
  border-color: rgba(var(--accent-rgb), 0.28);
}

.section-banner__link.is-active {
  background: #7a000b;
  border-color: rgba(var(--accent-rgb), 0.4);
  color: #ffffff;
}

.team-banner {
  width: min(1160px, calc(100% - 0rem));
  margin: 0.55rem auto 0;
  padding: 0.5rem;
  border-radius: 24px;
  border: 1px solid rgba(var(--accent-rgb), 0.14);
  background: rgba(var(--white-rgb), 0.88);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(14px);
}

.team-banner__list {
  display: flex;
  flex-flow: row nowrap;
  gap: 0.7rem;
}

.professional-chip {
  display: grid;
  flex: 1 1 0;
  grid-template-columns: minmax(0, 1fr);
  align-items: center;
  gap: 0.1rem;
  min-width: 0;
  width: 100%;
  padding: 0.3rem 0.4rem;
  border: 1px solid rgba(var(--accent-rgb), 0.1);
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(var(--white-rgb), 0.96), rgba(var(--accent-rgb), 0.04));
  color: var(--ink);
  text-align: left;
  cursor: pointer;
  box-shadow: 0 14px 30px rgba(var(--ink-rgb), 0.08);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.professional-chip:hover {
  transform: translateY(-2px);
  border-color: rgba(var(--accent-rgb), 0.28);
  box-shadow: 0 18px 36px rgba(var(--ink-rgb), 0.1);
}

.professional-chip.is-active {
  border-color: rgba(var(--accent-rgb), 0.4);
  background: linear-gradient(135deg, rgba(var(--accent-rgb), 0.14), rgba(var(--white-rgb), 0.98));
  box-shadow: 0 18px 40px rgba(var(--accent-rgb), 0.14);
}

.professional-chip__main {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-width: 72px;
}

.professional-chip__avatar {
  width: 64px;
  height: 64px;
  border-radius: 999px;
  object-fit: cover;
  background: rgba(var(--accent-rgb), 0.08);
  border: 2px solid rgba(var(--white-rgb), 0.84);
  box-shadow: 0 8px 18px rgba(var(--ink-rgb), 0.12);
}

.professional-chip__identity {
  display: grid;
  gap: 0.2rem;
  min-width: 0;
  text-align: center;
}

.professional-chip__identity strong {
  display: block;
  font-size: 0.84rem;
  line-height: 1.15;
  color: var(--ink);
}

.professional-chip__role {
  align-self: center;
  justify-self: end;
  color: var(--accent-dark);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.3rem, 2.4vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  text-align: right;
  line-height: 0.92;
}

img {
  max-width: 100%;
}

.page-shell {
  width: min(1160px, calc(100% - 2rem));
  margin: 0 auto;
  padding: calc(var(--sticky-banner-offset) + 0.6rem) 0 5.5rem;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.95fr);
  gap: 1.25rem;
  align-items: stretch;
  min-height: 72vh;
  padding: 0.8rem 0 2rem;
}

.hero-copy,
.hero-panel,
.price-board,
.booking-form,
.summary-card,
.service-card,
.salon-photo-card,
.salon-copy {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 30px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.hero-copy {
  position: relative;
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}

.hero-copy::after {
  content: "";
  position: absolute;
  inset: auto -6rem -6rem auto;
  width: 16rem;
  height: 16rem;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(var(--accent-rgb), 0.18), transparent 70%);
  pointer-events: none;
}

.hero-copy h1,
.hero-copy h3,
.section-heading h2,
.section-heading h3,
.hero-panel h2,
.hero-panel h3,
.summary-card h3,
.booking-intro h3,
.booking-step__header h3,
.salon-copy h3,
.price-group__header h3 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  line-height: 0.96;
  letter-spacing: -0.04em;
  color: var(--ink);
}

.hero-copy h1 {
  font-size: clamp(2.8rem, 7vw, 5.6rem);
  max-width: 11ch;
}

.hero-copy h3,
.section-heading h3,
.hero-panel h3 {
  font-size: clamp(2.2rem, 5vw, 4rem);
}

.hero-copy .lead,
.hero-panel p,
.summary-card p,
.booking-form p,
.service-card p,
.price-row p,
.site-footer p,
.site-footer span,
.site-footer a,
.salon-copy p,
label span,
input,
select,
textarea {
  color: var(--muted);
}

.lead {
  max-width: 36rem;
  font-size: 1.04rem;
  line-height: 1.75;
  margin: 1.3rem 0 0;
}

.hero-actions,
.form-actions {
  display: flex;
  gap: 0.85rem;
  flex-wrap: wrap;
  margin-top: 1.8rem;
  align-items: center;
}

.hero-actions--compact {
  margin-top: 1.2rem;
}

.hero-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.6rem;
}

.highlight-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0.95rem;
  border-radius: 999px;
  border: 1px solid rgba(var(--accent-rgb), 0.16);
  background: rgba(var(--white-rgb), 0.8);
  color: var(--accent-dark);
  font-size: 0.84rem;
  font-weight: 700;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 1.45rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  border: 0;
  cursor: pointer;
  transition: transform 180ms ease, background-color 180ms ease, color 180ms ease, border-color 180ms ease, opacity 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button:disabled {
  opacity: 0.6;
  cursor: progress;
  transform: none;
}

.button-small {
  padding: 0.78rem 1.15rem;
  font-size: 0.92rem;
}

.button-primary {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  color: #fff;
  box-shadow: 0 14px 30px rgba(var(--accent-rgb), 0.28);
}

.button-secondary {
  color: var(--ink);
  border: 1px solid var(--line-strong);
  background: rgba(var(--white-rgb), 0.72);
}

.hero-panel {
  padding: 1.8rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1rem;
  animation: drift-in 680ms ease;
}

.hero-panel h2 {
  font-size: clamp(2.15rem, 5vw, 3.65rem);
}

.hero-panel h3 {
  font-size: clamp(2rem, 4vw, 3rem);
}

.hero-panel__stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 0.75rem;
  margin: 0.4rem 0;
}

.hero-panel__stats article,
.hero-panel__callout,
.price-group,
.booking-intro,
.booking-step,
.product-card {
  border: 1px solid var(--line);
  background: rgba(var(--white-rgb), 0.76);
  box-shadow: var(--shadow-soft);
}

.hero-panel__stats article {
  padding: 1rem;
  border-radius: 18px;
}

.hero-panel__stats strong {
  display: block;
  font-size: 1.4rem;
  color: var(--accent-dark);
}

.hero-panel__callout {
  padding: 1.1rem;
  border-radius: 22px;
}

.hero-panel__callout strong {
  display: block;
  margin-top: 0.45rem;
  font-size: 1.05rem;
}

.panel-chip,
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.74rem;
  font-weight: 800;
}

.panel-chip {
  width: fit-content;
  padding: 0.55rem 0.8rem;
  border-radius: 999px;
  background: rgba(var(--accent-rgb), 0.1);
  color: var(--accent-dark);
}

.section {
  padding: 2.1rem 0;
}

.section-heading {
  max-width: 48rem;
  margin-bottom: 1.4rem;
}

.section-heading--with-action {
  max-width: none;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1rem;
  flex-wrap: wrap;
}

.section-heading h2 {
  font-size: clamp(2.1rem, 5vw, 3.7rem);
}

.section-heading h3 {
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.page-section[hidden] {
  display: none !important;
}

.page-section {
  scroll-margin-top: calc(var(--sticky-banner-offset) + 0.5rem);
}

.section-copy {
  max-width: 44rem;
  margin: 0.8rem 0 0;
  line-height: 1.75;
  color: var(--muted);
}

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

.service-card {
  padding: 1.45rem;
  transform: translateY(24px);
  opacity: 0;
  animation: reveal-up 620ms ease forwards;
}

.service-card--admin {
  display: grid;
  gap: 1.2rem;
  align-content: start;
}

.service-card h3 {
  font-size: 1.5rem;
}

.service-card__avatar-shell {
  display: flex;
  justify-content: center;
}

.service-card__avatar {
  width: 132px;
  height: 132px;
  border-radius: 999px;
  object-fit: cover;
  border: 4px solid rgba(var(--white-rgb), 0.82);
  box-shadow: 0 18px 36px rgba(var(--ink-rgb), 0.14);
  background: rgba(var(--accent-rgb), 0.08);
}

.service-card__body {
  display: grid;
  gap: 0.8rem;
}

.service-card__header,
.service-card__service-head,
.service-card__service-meta,
.product-card__meta,
.product-card__footer,
.price-board__meta,
.price-group__header {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  align-items: center;
}

.service-card__count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.45rem 0.72rem;
  border-radius: 999px;
  background: rgba(var(--accent-rgb), 0.08);
  color: var(--accent-dark);
  font-size: 0.82rem;
  font-weight: 700;
}

.service-card__hint {
  margin: 0.85rem 0 0;
  font-size: 0.96rem;
}

.service-card__role {
  margin: -0.25rem 0 0;
  color: var(--accent-dark);
  font-size: 1rem;
  font-weight: 700;
}

.service-card__list {
  display: grid;
  gap: 0.8rem;
  margin-top: 1rem;
}

.service-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.service-card__tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(var(--accent-rgb), 0.1);
  background: rgba(var(--white-rgb), 0.8);
  color: var(--ink);
  font-size: 0.84rem;
  font-weight: 600;
}

.service-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 0.4rem;
}

.service-card__row {
  padding-top: 0.85rem;
  border-top: 1px solid var(--line);
}

.service-card__service-head strong,
.price-row strong:first-child,
.product-card h3 {
  color: var(--ink);
}

.service-card__service-head span,
.price-row strong:last-child,
.product-card__footer strong {
  color: var(--accent-dark);
  font-weight: 800;
}

.service-card__service-meta {
  margin-top: 0.45rem;
  font-size: 0.88rem;
  color: var(--muted);
}

.salon-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 1rem;
  align-items: stretch;
}

.salon-photo-card {
  position: relative;
  padding: 0;
  overflow: hidden;
  min-height: 420px;
}

.salon-photo-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(var(--ink-rgb), 0.04), rgba(var(--ink-rgb), 0.46));
  pointer-events: none;
}

.salon-carousel {
  display: grid;
  align-items: stretch;
}

.salon-photo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background:
    linear-gradient(145deg, rgba(var(--accent-rgb), 0.14), rgba(var(--ink-rgb), 0.08)),
    rgba(var(--white-rgb), 0.82);
}

.salon-carousel__nav {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 3rem;
  height: 3rem;
  border: 1px solid rgba(var(--white-rgb), 0.32);
  border-radius: 999px;
  background: rgba(var(--white-rgb), 0.18);
  color: #fff;
  font-size: 1.8rem;
  line-height: 1;
  transform: translateY(-50%);
  cursor: pointer;
  backdrop-filter: blur(10px);
  transition: transform 180ms ease, background-color 180ms ease, opacity 180ms ease;
}

.salon-carousel__nav:hover {
  transform: translateY(-50%) scale(1.03);
  background: rgba(var(--white-rgb), 0.26);
}

.salon-carousel__nav:disabled {
  opacity: 0.45;
  cursor: default;
}

#salon-carousel-prev {
  left: 1rem;
}

#salon-carousel-next {
  right: 1rem;
}

.salon-carousel__caption {
  position: absolute;
  right: 1rem;
  bottom: 3.2rem;
  left: 1rem;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 0.8rem;
  padding: 1rem 1.05rem;
  border-radius: 20px;
  background: linear-gradient(145deg, rgba(var(--ink-rgb), 0.36), rgba(var(--ink-rgb), 0.12));
  color: #fff;
  backdrop-filter: blur(10px);
}

.salon-carousel__caption strong,
.salon-carousel__caption span {
  color: #fff;
}

.salon-carousel__caption strong {
  font-size: 1.05rem;
}

.salon-carousel__caption span {
  font-size: 0.9rem;
  font-weight: 700;
  opacity: 0.92;
}

.salon-carousel__dots {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  left: 1rem;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
}

.salon-carousel__dot {
  width: 0.85rem;
  height: 0.85rem;
  padding: 0;
  border: 1px solid rgba(var(--white-rgb), 0.65);
  border-radius: 999px;
  background: rgba(var(--white-rgb), 0.42);
  cursor: pointer;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.salon-carousel__dot:hover {
  transform: scale(1.08);
}

.salon-carousel__dot.is-active {
  background: #fff;
  border-color: #fff;
}

.salon-copy {
  padding: 1.8rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.salon-copy h3 {
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.salon-points,
.summary-list {
  margin: 1rem 0 0;
  padding-left: 1rem;
  color: var(--ink);
  display: grid;
  gap: 0.45rem;
}

.price-board {
  padding: 1.5rem;
}

.price-board__meta {
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.price-board__badge {
  display: flex;
  align-items: flex-start;
}

.price-board__badge span {
  display: inline-flex;
  padding: 0.65rem 0.9rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(var(--white-rgb), 0.74);
  color: var(--ink);
  font-weight: 700;
}

.price-board__list {
  display: grid;
  gap: 1rem;
}

.price-service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
}

.price-service-card {
  display: grid;
  gap: 0.8rem;
  width: 100%;
  padding: 1.15rem;
  border: 1px solid rgba(var(--accent-rgb), 0.12);
  border-radius: 22px;
  background: rgba(var(--white-rgb), 0.9);
  color: var(--ink);
  text-align: left;
  cursor: pointer;
  box-shadow: 0 18px 36px rgba(var(--ink-rgb), 0.08);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.price-service-card:hover {
  transform: translateY(-2px);
  border-color: rgba(var(--accent-rgb), 0.3);
  box-shadow: 0 22px 42px rgba(var(--ink-rgb), 0.12);
}

.price-service-card__eyebrow,
.service-overlay__eyebrow {
  margin: 0;
  color: var(--accent-dark);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.price-service-card__top,
.price-service-card__meta,
.service-overlay__price-line,
.service-overlay__actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.price-service-card__top {
  align-items: flex-start;
}

.price-service-card__top strong {
  flex: 1;
  font-size: 1.05rem;
  line-height: 1.2;
}

.price-service-card__price,
.service-overlay__price-line strong {
  color: var(--accent-dark);
  font-size: 1.1rem;
  font-weight: 800;
}

.price-service-card__price {
  white-space: nowrap;
}

.price-service-card__meta,
.price-service-card__hint,
.service-overlay__area,
.service-overlay__description,
.service-overlay__note,
.service-overlay__status,
.service-overlay__price-line span {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.price-service-card__meta {
  flex-wrap: wrap;
}

.price-service-card__hint {
  font-size: 0.84rem;
}

.service-overlay {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: 1rem;
}

.service-overlay[hidden] {
  display: none !important;
}

.service-overlay__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(var(--ink-rgb), 0.56);
  backdrop-filter: blur(8px);
}

.service-overlay__panel {
  position: relative;
  z-index: 1;
  width: min(980px, 100%);
  max-height: min(88vh, 920px);
  overflow: auto;
  padding: 1.2rem;
  border-radius: 28px;
  background: rgba(var(--white-rgb), 0.96);
  box-shadow: 0 32px 90px rgba(var(--ink-rgb), 0.28);
}

.service-overlay__close {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  width: 2.7rem;
  height: 2.7rem;
  border: 0;
  border-radius: 999px;
  background: rgba(var(--ink-rgb), 0.08);
  color: var(--ink);
  font-size: 1.7rem;
  line-height: 1;
  cursor: pointer;
}

.service-overlay__body,
.service-overlay__layout,
.service-overlay__content {
  display: grid;
  gap: 1rem;
}

.service-overlay__layout {
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  align-items: start;
}

.service-overlay__media {
  display: grid;
  gap: 0.85rem;
}

.service-overlay__carousel {
  position: relative;
  min-height: 380px;
  overflow: hidden;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(var(--accent-rgb), 0.14), rgba(var(--ink-rgb), 0.08));
}

.service-overlay__image {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 380px;
  object-fit: cover;
}

.service-overlay__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 2.85rem;
  height: 2.85rem;
  border: 0;
  border-radius: 999px;
  background: rgba(var(--white-rgb), 0.82);
  color: var(--accent-dark);
  font-size: 1.8rem;
  cursor: pointer;
  box-shadow: 0 16px 30px rgba(var(--ink-rgb), 0.18);
}

.service-overlay__nav[data-overlay-action="prev-image"] {
  left: 0.85rem;
}

.service-overlay__nav[data-overlay-action="next-image"] {
  right: 0.85rem;
}

.service-overlay__dots {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.service-overlay__dot {
  width: 0.8rem;
  height: 0.8rem;
  border: 0;
  border-radius: 999px;
  background: rgba(var(--ink-rgb), 0.2);
  cursor: pointer;
}

.service-overlay__dot.is-active {
  background: var(--accent);
}

.service-overlay__placeholder {
  min-height: 380px;
  display: grid;
  place-items: center;
  gap: 0.8rem;
  padding: 1.5rem;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(var(--accent-rgb), 0.12), rgba(var(--ink-rgb), 0.05));
  text-align: center;
}

.service-overlay__placeholder span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 92px;
  height: 92px;
  border-radius: 28px;
  background: rgba(var(--white-rgb), 0.7);
  color: var(--accent-dark);
  font-family: "Cormorant Garamond", serif;
  font-size: 2.2rem;
  font-weight: 700;
}

.service-overlay__content {
  padding: 0.45rem 0.2rem 0;
}

.service-overlay__content h3 {
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  line-height: 0.95;
}

.service-overlay__price-line {
  justify-content: flex-start;
  flex-wrap: wrap;
}

.service-overlay__actions {
  justify-content: flex-start;
  flex-wrap: wrap;
  margin-top: 0.35rem;
}

.service-overlay__status {
  color: var(--accent-dark);
  font-weight: 700;
}

.price-group {
  padding: 1.1rem;
  border-radius: 24px;
}

.price-group__header {
  align-items: flex-end;
  margin-bottom: 0.9rem;
  flex-wrap: wrap;
}

.price-group__header h3 {
  font-size: 2rem;
}

.price-group__header span {
  display: inline-flex;
  padding: 0.45rem 0.72rem;
  border-radius: 999px;
  background: rgba(var(--accent-rgb), 0.08);
  color: var(--accent-dark);
  font-size: 0.85rem;
  font-weight: 700;
}

.price-row {
  display: grid;
  grid-template-columns: 1.2fr 0.7fr auto;
  gap: 0.75rem;
  align-items: center;
  padding: 1rem;
  border-radius: 18px;
  background: rgba(var(--white-rgb), 0.86);
  border: 1px solid var(--line);
}

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

.product-card {
  overflow: hidden;
  border-radius: 24px;
}

.product-card__image {
  display: block;
  width: 100%;
  height: 250px;
  object-fit: cover;
  background: linear-gradient(135deg, rgba(var(--accent-rgb), 0.16), rgba(var(--ink-rgb), 0.08));
}

.product-card__image--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-card__image--placeholder span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 88px;
  height: 88px;
  border-radius: 28px;
  border: 1px solid rgba(var(--white-rgb), 0.42);
  background: rgba(var(--white-rgb), 0.26);
  color: var(--accent-dark);
  font-family: "Cormorant Garamond", serif;
  font-size: 2.2rem;
  font-weight: 700;
}

.product-card__body {
  display: grid;
  gap: 0.85rem;
  padding: 1.2rem;
}

.product-card__brand,
.product-card__description,
.product-card__footer span {
  margin: 0;
}

.product-card__stock {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.45rem 0.72rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(var(--white-rgb), 0.7);
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 700;
}

.product-card__stock.is-low {
  background: rgba(var(--accent-rgb), 0.1);
  color: var(--accent-dark);
}

.product-card__stock.is-out {
  background: rgba(var(--accent-rgb), 0.16);
  color: #7f0b16;
}

.booking-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1rem;
  align-items: start;
}

.booking-form {
  padding: 1.6rem;
}

.booking-form--enhanced {
  display: grid;
  gap: 1.35rem;
}

.booking-step {
  padding: 1.2rem;
  border-radius: 24px;
}

.booking-step__header h3 {
  font-size: clamp(1.85rem, 4vw, 2.5rem);
}

.booking-step-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1rem;
}

.booking-step:first-child {
  grid-column: auto;
}

.booking-step__header p:last-child {
  margin: 0.45rem 0 0;
}

.day-picker {
  display: flex;
  gap: 0.7rem;
  margin-top: 1rem;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  padding-bottom: 0.45rem;
  scroll-snap-type: inline proximity;
  scrollbar-width: thin;
}

.time-picker {
  display: flex;
  gap: 0.7rem;
  margin-top: 1rem;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  padding-bottom: 0.45rem;
  scroll-snap-type: inline proximity;
  scrollbar-width: thin;
}

.day-picker .schedule-chip {
  flex: 0 0 112px;
  scroll-snap-align: start;
}

.time-picker .time-chip {
  flex: 0 0 138px;
  scroll-snap-align: start;
}

.schedule-chip,
.time-chip {
  width: 100%;
  padding: 0.95rem 0.85rem;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(var(--white-rgb), 0.88);
  color: var(--ink);
  text-align: left;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background-color 180ms ease, box-shadow 180ms ease, opacity 180ms ease;
}

.schedule-chip:hover,
.time-chip:hover {
  transform: translateY(-2px);
  border-color: rgba(var(--accent-rgb), 0.35);
}

.schedule-chip:disabled,
.time-chip:disabled {
  cursor: not-allowed;
}

.schedule-chip.is-selected,
.time-chip.is-selected {
  border-color: rgba(var(--accent-rgb), 0.54);
  background: linear-gradient(180deg, rgba(var(--accent-rgb), 0.12), rgba(var(--white-rgb), 0.94));
  box-shadow: 0 12px 24px rgba(var(--accent-rgb), 0.16);
}

.schedule-chip.is-disabled,
.time-chip.is-disabled {
  opacity: 0.56;
  background: rgba(var(--ink-rgb), 0.04);
  box-shadow: none;
}

.schedule-chip__day,
.schedule-chip__month,
.schedule-chip__meta,
.time-chip span {
  display: block;
  font-size: 0.82rem;
  color: var(--muted);
}

.schedule-chip__date,
.time-chip strong {
  display: block;
  margin: 0.2rem 0;
  font-size: 1.2rem;
  color: var(--ink);
}

.availability-note {
  margin: 0.9rem 0 0;
  color: var(--muted);
  line-height: 1.55;
}

.booking-summary {
  display: grid;
  gap: 1rem;
}

.summary-card {
  padding: 1.4rem;
  background: var(--card-strong);
}

.summary-card h3 {
  font-size: 1.95rem;
}

.summary-emphasis {
  color: var(--accent-dark);
  font-weight: 800;
}

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

.form-grid--compact {
  margin-top: 1rem;
}

.field-wide {
  grid-column: 1 / -1;
}

label {
  display: grid;
  gap: 0.45rem;
  font-size: 0.93rem;
  font-weight: 700;
}

input,
select,
textarea {
  width: 100%;
  padding: 0.92rem 1rem;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: rgba(var(--white-rgb), 0.9);
  font: inherit;
}

input:focus,
select:focus,
textarea:focus,
.schedule-chip:focus-visible,
.time-chip:focus-visible,
.whatsapp-float:focus-visible {
  outline: 2px solid rgba(var(--accent-rgb), 0.22);
  outline-offset: 2px;
  border-color: rgba(var(--accent-rgb), 0.45);
}

textarea {
  resize: vertical;
  min-height: 120px;
}

.form-message {
  margin: 0;
  min-height: 1.3rem;
  font-size: 0.95rem;
}

.form-message.is-success {
  color: var(--success);
}

.form-message.is-error {
  color: var(--danger);
}

.empty-state {
  padding: 1.1rem;
  border: 1px dashed var(--line);
  border-radius: 18px;
  color: var(--muted);
  background: rgba(var(--white-rgb), 0.56);
}

.site-footer {
  display: grid;
  grid-template-columns: 1.25fr repeat(3, minmax(0, 1fr));
  gap: 0.8rem 1.2rem;
  margin-top: 1.25rem;
  padding: 1.2rem 1.4rem;
  border-radius: 24px;
  background:
    radial-gradient(circle at top left, rgba(var(--white-rgb), 0.12), transparent 22rem),
    linear-gradient(145deg, rgba(var(--accent-dark-rgb), 1), rgba(52, 5, 11, 0.98));
  color: #fff;
  box-shadow: 0 28px 64px rgba(var(--accent-dark-rgb), 0.32);
}

.site-footer__brand,
.site-footer__column {
  display: grid;
  align-content: start;
  gap: 0.35rem;
}

.site-footer .eyebrow,
.site-footer p,
.site-footer span {
  color: rgba(var(--white-rgb), 0.82);
}

.site-footer__brand h3,
.site-footer__column h3 {
  margin: 0;
  color: #fff;
  font-family: "Cormorant Garamond", serif;
  line-height: 0.98;
  letter-spacing: -0.03em;
}

.site-footer__brand h3 {
  font-size: clamp(1.45rem, 3vw, 2rem);
}

.site-footer__column h3 {
  font-size: 1.3rem;
}

.site-footer__column a {
  color: rgba(var(--white-rgb), 0.92);
  text-decoration: none;
}

.site-footer__column a:hover {
  color: #fff;
  text-decoration: underline;
}

.site-footer__link-button {
  justify-content: flex-start;
  width: fit-content;
  background: rgba(var(--white-rgb), 0.08);
  border-color: rgba(var(--white-rgb), 0.18);
  color: rgba(var(--white-rgb), 0.92);
}

.site-footer__link-button.is-active {
  background: rgba(var(--white-rgb), 0.16);
  border-color: rgba(var(--white-rgb), 0.3);
  color: #fff;
}

.site-footer__legal {
  grid-column: 1 / -1;
  padding-top: 0.7rem;
  border-top: 1px solid rgba(var(--white-rgb), 0.18);
}

.visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.whatsapp-float {
  position: fixed;
  right: 1.2rem;
  bottom: 1.2rem;
  z-index: 40;
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  max-width: min(320px, calc(100vw - 2rem));
  padding: 0.9rem 1rem;
  border-radius: 22px;
  border: 1px solid rgba(var(--white-rgb), 0.18);
  background: linear-gradient(145deg, rgba(var(--whatsapp-rgb), 0.98), rgba(8, 86, 58, 0.98));
  color: #fff;
  text-decoration: none;
  box-shadow: 0 20px 44px rgba(8, 86, 58, 0.28);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.whatsapp-float:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 52px rgba(8, 86, 58, 0.34);
}

.whatsapp-float__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 2.7rem;
  height: 2.7rem;
  border-radius: 16px;
  background: rgba(var(--white-rgb), 0.16);
  font-size: 1.2rem;
}

.whatsapp-float__copy {
  display: grid;
  gap: 0.15rem;
}

.whatsapp-float__copy strong {
  font-size: 0.98rem;
}

.whatsapp-float__copy span {
  font-size: 0.84rem;
  opacity: 0.92;
}

.whatsapp-float[data-mode="fallback"] {
  background: linear-gradient(145deg, rgba(25, 122, 92, 0.98), rgba(11, 72, 54, 0.98));
}

@keyframes reveal-up {
  from {
    transform: translateY(24px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes drift-in {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1100px) {
  .services-grid,
  .products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .section-banner__notice {
    padding: 0.72rem 0.85rem;
  }

  .section-banner__inner {
    width: min(1160px, calc(100% - 0rem));
    padding: 0.75rem 0.85rem;
  }

  .hero,
  .salon-layout,
  .booking-layout {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-copy,
  .hero-panel,
  .booking-form,
  .summary-card,
  .price-board,
  .salon-copy {
    padding: 1.45rem;
  }
}

@media (max-width: 760px) {
  .page-shell {
    width: min(100% - 1rem, 1160px);
  }

  .section-banner {
    padding: 0.7rem 0.5rem 0;
  }

  .section-banner__notice {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 0.45rem;
  }

  .section-banner__inner {
    align-items: flex-start;
  }

  .page-shell {
    padding-bottom: 6rem;
  }

  .services-grid,
  .price-service-grid,
  .products-grid,
  .hero-panel__stats,
  .form-grid,
  .booking-step-grid,
  .price-row {
    grid-template-columns: 1fr;
  }

  .booking-step:first-child {
    grid-column: auto;
  }

  .section-banner__inner,
  .section-heading--with-action,
  .price-board__meta,
  .product-card__meta,
  .product-card__footer,
  .price-group__header,
  .service-card__actions,
  .service-card__header,
  .service-card__service-head,
  .service-card__service-meta {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-copy h1 {
    max-width: none;
  }

  .section-banner__nav {
    width: 100%;
  }

  .site-footer {
    grid-template-columns: 1fr 1fr;
  }

  .salon-carousel__caption {
    flex-direction: column;
    align-items: flex-start;
    bottom: 3.5rem;
  }

  .service-overlay__layout {
    grid-template-columns: 1fr;
  }

  .service-overlay__panel {
    padding: 1rem;
  }

  .service-overlay__carousel,
  .service-overlay__image,
  .service-overlay__placeholder {
    min-height: 300px;
  }
}

@media (max-width: 540px) {
  .page-shell {
    width: calc(100% - 0.85rem);
  }

  .section-banner__notice {
    padding: 0.72rem 0.8rem;
  }

  .section-banner__notice-copy span {
    font-size: 0.84rem;
  }

  .section-banner__cta {
    width: 100%;
  }

  .hero-copy,
  .hero-panel,
  .booking-form,
  .summary-card,
  .price-board,
  .service-overlay__panel,
  .salon-copy,
  .team-banner,
  .site-footer {
    border-radius: 24px;
  }

  .button {
    width: 100%;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .salon-photo-card {
    min-height: 320px;
  }

  .salon-carousel__nav {
    width: 2.6rem;
    height: 2.6rem;
    font-size: 1.55rem;
  }

  .salon-carousel__caption {
    right: 0.75rem;
    bottom: 3.2rem;
    left: 0.75rem;
    padding: 0.85rem 0.9rem;
  }

  .salon-carousel__dots {
    right: 0.75rem;
    bottom: 0.75rem;
    left: 0.75rem;
  }

  .site-footer {
    grid-template-columns: 1fr;
    padding: 1rem;
  }

  .section-banner__link,
  .site-footer__link-button {
    padding-inline: 0.85rem;
  }

  .professional-chip {
    padding: 0.25rem;
    border-radius: 16px;
  }

  .professional-chip__main {
    gap: 0.25rem;
    min-width: 0;
  }

  .professional-chip__avatar {
    width: clamp(32px, 10vw, 48px);
    height: clamp(32px, 10vw, 48px);
  }

  .professional-chip__role {
    min-width: 0;
    overflow-wrap: anywhere;
    font-size: clamp(0.72rem, 3.1vw, 1rem);
    line-height: 1;
    text-align: center;
  }

  .service-overlay {
    padding: 0.75rem;
  }

  .service-overlay__close {
    top: 0.6rem;
    right: 0.6rem;
  }

  .service-overlay__actions,
  .service-overlay__price-line {
    flex-direction: column;
    align-items: flex-start;
  }

  .whatsapp-float {
    right: 0.75rem;
    bottom: 0.75rem;
    padding: 0.8rem 0.9rem;
    border-radius: 18px;
  }

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