:root {
  --bg: #f4ebe3;
  --dark: #241006;
  --accent: #c79b63;
  --accent-2: #8b3f0b;
  --accent-3: #e3c58f;
  --text: #2f1a11;
  --card: #ffffff;
  --muted: #7f6f67;
  --line: rgba(44, 24, 16, 0.13);
  --soft-gold: rgba(201, 169, 110, 0.18);
  --shadow: 0 24px 60px rgba(44, 24, 16, 0.12);
  --img-spa-room: url("https://images.unsplash.com/photo-1540555700478-4be289fbecef?auto=format&fit=crop&w=1800&q=82");
  --img-massage: url("https://images.unsplash.com/photo-1544161515-4ab6ce6db874?auto=format&fit=crop&w=1400&q=82");
  --img-body: url("https://images.unsplash.com/photo-1600334129128-685c5582fd35?auto=format&fit=crop&w=1400&q=82");
  --img-facial: url("https://images.unsplash.com/photo-1570172619644-dfd03ed5d881?auto=format&fit=crop&w=1400&q=82");
  --img-products: url("https://images.unsplash.com/photo-1519823551278-64ac92734fb1?auto=format&fit=crop&w=1400&q=82");
  --img-wellness: url("https://images.unsplash.com/photo-1515377905703-c4788e51af15?auto=format&fit=crop&w=1400&q=82");
  --img-testimonials: url("/images/media/testimonials-bg.jpeg");
  --img-portrait-1: url("https://images.unsplash.com/photo-1551836022-d5d88e9218df?auto=format&fit=crop&w=700&q=82");
  --img-portrait-2: url("https://images.unsplash.com/photo-1559839734-2b71ea197ec2?auto=format&fit=crop&w=700&q=82");
  --img-portrait-3: url("https://images.unsplash.com/photo-1582750433449-648ed127bb54?auto=format&fit=crop&w=700&q=82");
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "DM Sans", Arial, sans-serif;
  line-height: 1.6;
}

body.nav-open {
  overflow: hidden;
}

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

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

.site-header {
  --header-height: 92px;
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 30;
  transition:
    background 180ms ease,
    box-shadow 180ms ease,
    padding 180ms ease;
}

.site-header.is-solid,
.site-header.is-open {
  background: rgba(26, 20, 16, 0.96);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.14);
}

.nav-wrap {
  position: relative;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.brand {
  display: inline-flex;
  align-items: center;
  color: #fff;
  line-height: 1;
  letter-spacing: 0.08em;
  padding-top: 8px;
}

.brand-logo {
  display: block;
  width: clamp(74px, 6.8vw, 92px);
  max-height: 76px;
  height: auto;
  object-fit: contain;
  transform: translateY(1px);
}

.brand-main {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.brand-sub {
  margin-top: 4px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.32em;
}

.nav-links {
  position: static;
  margin-left: clamp(112px, 12vw, 192px);
  margin-right: auto;
  transform: none;
  display: flex;
  align-items: center;
  gap: clamp(18px, 2vw, 28px);
  color: rgba(255, 255, 255, 0.84);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.nav-links a {
  transition: color 160ms ease;
}

.nav-links a:hover {
  color: var(--accent);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.btn,
.btn-book {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border: 1px solid rgba(227, 197, 143, 0.72);
  border-radius: 999px;
  padding: 13px 24px;
  background: transparent;
  color: inherit;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition:
    background 180ms ease,
    color 180ms ease,
    transform 180ms ease,
    box-shadow 180ms ease;
}

.btn:hover,
.btn-book:hover {
  transform: translateY(-1px);
}

.btn-gold {
  border-color: rgba(235, 210, 168, 0.92);
  background:
    linear-gradient(135deg, #f5e8d2 0%, #e1bc83 56%, #c99455 100%);
  color: #2c1810;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.45),
    0 12px 24px rgba(132, 83, 58, 0.16);
}

.btn-gold:hover {
  background:
    linear-gradient(135deg, #fff0d7 0%, #e8c995 56%, #d1a06a 100%);
}

.btn-outline-light {
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.55);
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: #fff;
}

.btn-outline {
  border-color: rgba(132, 83, 58, 0.22);
  color: var(--text);
}

.nav-wrap > .btn-book {
  min-height: 48px;
  padding: 14px 30px;
  color: #1f1008;
  flex: 0 0 auto;
}

.hero .btn-book {
  min-width: 280px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.24),
    0 14px 32px rgba(36, 16, 6, 0.18);
}

.section {
  padding: 110px 0;
}

.section + .section {
  border-top: 1px solid rgba(132, 83, 58, 0.1);
}

.section-divider {
  width: min(1180px, calc(100% - 40px));
  height: 1px;
  margin: 0 auto;
  background: linear-gradient(90deg, transparent, rgba(201, 148, 85, 0.34), transparent);
}

.photo-band {
  background:
    linear-gradient(rgba(244, 235, 227, 0.72), rgba(244, 235, 227, 0.78)),
    var(--img-body) center / cover fixed;
}

.section-tight {
  padding: 86px 0;
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.section-kicker {
  margin: 0 0 12px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.section-title,
.page-title {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(40px, 5vw, 68px);
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0;
}

.section-subtitle {
  max-width: 710px;
  margin: 18px auto 0;
  color: var(--muted);
  font-size: 18px;
}

.center {
  text-align: center;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 70% 50%, rgba(139, 63, 11, 0.16), transparent 42%),
    linear-gradient(90deg, rgba(36, 16, 6, 0.78) 0%, rgba(36, 16, 6, 0.62) 48%, rgba(36, 16, 6, 0.44) 100%),
    var(--img-spa-room) center / cover;
  color: #fff;
  text-align: center;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at 70% 50%, rgba(139, 63, 11, 0.16), transparent 42%),
    linear-gradient(90deg, rgba(36, 16, 6, 0.8) 0%, rgba(36, 16, 6, 0.62) 48%, rgba(36, 16, 6, 0.44) 100%);
  pointer-events: none;
}

.hero::after,
.page-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 38%;
  z-index: 1;
  background: linear-gradient(transparent, rgba(26, 20, 16, 0.34));
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(900px, calc(100% - 40px));
  padding-top: 70px;
}

.hero-cta {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 16px;
}

.hero-cta .btn {
  width: min(520px, 100%);
}

.hero-kicker {
  margin: 0 0 12px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.36em;
}

.hero h1 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(70px, 12vw, 128px);
  font-weight: 600;
  line-height: 0.86;
  letter-spacing: 0.04em;
}

.hero-subbrand {
  margin: 24px 0 0;
  font-size: clamp(16px, 2vw, 22px);
  letter-spacing: 0.34em;
}

.gold-line {
  width: 88px;
  height: 1px;
  margin: 28px auto;
  background: var(--accent);
}

.hero-tagline {
  margin: 0 0 34px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(26px, 3.5vw, 44px);
  font-style: italic;
  line-height: 1.15;
}

.memberships {
  background: #f4ebe3;
  color: var(--text);
}

.memberships.section {
  padding: 88px 0;
}

.memberships .section-title,
.memberships .section-subtitle {
  color: var(--text);
}

.memberships .section-subtitle {
  opacity: 0.78;
}

.memberships .section-kicker {
  display: inline-flex;
  padding: 7px 13px;
  border: 1px solid rgba(132, 83, 58, 0.18);
  border-radius: 999px;
  background: rgba(255, 253, 249, 0.62);
  color: #8b4d22;
  backdrop-filter: blur(12px);
}

.membership-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  width: min(1180px, 100%);
  margin: 46px auto 0;
}

.membership-card,
.service-card,
.price-card,
.blog-card {
  position: relative;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 44px rgba(44, 24, 16, 0.07);
}

.membership-card {
  padding: 14px;
  display: flex;
  min-height: 390px;
  flex-direction: column;
  gap: 13px;
}

.membership-card.featured {
  border-color: rgba(201, 169, 110, 0.74);
  box-shadow: 0 28px 70px rgba(201, 169, 110, 0.18);
}

.membership-card.membership-visual {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 14px;
  background: rgba(255, 253, 249, 0.76);
  color: var(--text);
  box-shadow: 0 18px 46px rgba(44, 24, 16, 0.1);
  backdrop-filter: blur(20px);
}

.membership-card.membership-visual:nth-child(1) {
  background: rgba(255, 249, 241, 0.82);
}

.membership-card.membership-visual:nth-child(2) {
  background: rgba(250, 238, 222, 0.82);
}

.membership-card.membership-visual:nth-child(3) {
  background: rgba(242, 224, 199, 0.84);
}

.membership-card.gold-plan {
  background: rgba(228, 203, 166, 0.86);
  color: var(--text);
}

.membership-card.gold-plan h3 {
  color: #241006;
}

.membership-image {
  position: relative;
  min-height: 104px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 7px;
}

.membership-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(36, 16, 6, 0.08), rgba(36, 16, 6, 0.22));
}

.membership-image span {
  position: relative;
  z-index: 1;
  width: auto;
  min-width: 126px;
  padding: 9px 18px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 7px;
  background: rgba(36, 16, 6, 0.2);
  color: #fff;
  text-align: center;
  font-size: clamp(23px, 2vw, 34px);
  font-weight: 300;
  letter-spacing: 0.14em;
  backdrop-filter: blur(9px);
}

.badge {
  position: absolute;
  top: -10px;
  left: 50%;
  right: auto;
  z-index: 3;
  padding: 4px 12px;
  border-radius: 999px;
  background: #0d403b;
  color: #fff8ef;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.1em;
  line-height: 1;
  backdrop-filter: blur(10px);
  transform: translateX(-50%);
}

.membership-card h3,
.service-card h3,
.price-card h3 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 34px;
  line-height: 1;
}

.membership-card.membership-visual h3 {
  padding: 0;
  border-radius: 0;
  background: transparent;
  font-family: "DM Sans", Arial, sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.price {
  color: var(--accent);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 34px;
  font-weight: 700;
}

.membership-card ul,
.service-list,
.price-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.membership-card li,
.price-list li {
  padding: 12px 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}

.membership-card.membership-visual li {
  position: relative;
  padding: 6px 0 6px 22px;
  border-top: 0;
  color: currentColor;
  font-size: 13px;
  line-height: 1.35;
}

.membership-card.membership-visual li::before {
  content: "✓";
  position: absolute;
  top: 8px;
  left: 0;
  width: 14px;
  height: 14px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #e7c99d;
  color: #fff;
  font-size: 9px;
  font-weight: 800;
}

.membership-card.gold-plan li::before {
  background: #9a4c12;
}

.membership-card.membership-visual:nth-child(2) li::before {
  background: #ddb977;
}

.membership-card.membership-visual:nth-child(3) li::before {
  background: #c79554;
}

.membership-card.membership-visual li span {
  display: block;
  margin-top: 2px;
  color: rgba(47, 26, 17, 0.42);
  font-weight: 400;
}

.membership-card.gold-plan li span {
  color: rgba(47, 26, 17, 0.48);
}

.membership-card .btn-book {
  margin-top: auto;
}

.membership-card.membership-visual .btn-book {
  min-height: 38px;
  border-radius: 999px;
  background: linear-gradient(135deg, #fff2dc 0%, #e7c594 62%, #d2a05f 100%);
  font-size: 10px;
  letter-spacing: 0.12em;
  box-shadow: 0 8px 18px rgba(132, 83, 58, 0.1);
}

.about-grid,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
  gap: 64px;
  align-items: center;
}

.carousel {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.carousel-track {
  display: flex;
  transition: transform 500ms ease;
}

.carousel-slide {
  min-width: 100%;
}

.placeholder-landscape,
.placeholder-square,
.placeholder-portrait,
.placeholder-team {
  background:
    linear-gradient(rgba(201, 169, 110, 0.18), rgba(201, 169, 110, 0.18)),
    url("/images/placeholder.svg") center / cover;
}

.photo-spa-room {
  background:
    linear-gradient(rgba(44, 24, 16, 0.08), rgba(44, 24, 16, 0.08)),
    var(--img-spa-room) center / cover;
}

.photo-massage {
  background:
    linear-gradient(rgba(44, 24, 16, 0.06), rgba(44, 24, 16, 0.06)),
    var(--img-massage) center / cover;
}

.photo-body {
  background:
    linear-gradient(rgba(44, 24, 16, 0.08), rgba(44, 24, 16, 0.08)),
    var(--img-body) center / cover;
}

.photo-facial {
  background:
    linear-gradient(rgba(44, 24, 16, 0.06), rgba(44, 24, 16, 0.06)),
    var(--img-facial) center / cover;
}

.photo-products {
  background:
    linear-gradient(rgba(44, 24, 16, 0.08), rgba(44, 24, 16, 0.08)),
    var(--img-products) center / cover;
}

.photo-wellness {
  background:
    linear-gradient(rgba(44, 24, 16, 0.12), rgba(44, 24, 16, 0.12)),
    var(--img-wellness) center / cover;
}

.placeholder-landscape {
  aspect-ratio: 16 / 9;
}

.placeholder-square {
  aspect-ratio: 1 / 1;
}

.placeholder-portrait {
  aspect-ratio: 3 / 4;
}

.placeholder-team {
  width: 172px;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  margin: 0 auto 20px;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: rgba(26, 20, 16, 0.48);
  color: #fff;
  font-size: 22px;
  transform: translateY(-50%);
  cursor: pointer;
}

.carousel-btn.prev {
  left: 18px;
}

.carousel-btn.next {
  right: 18px;
}

.carousel-dots {
  position: absolute;
  right: 0;
  bottom: 18px;
  left: 0;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.carousel-dots button {
  width: 8px;
  height: 8px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.48);
  cursor: pointer;
}

.carousel-dots button.is-active {
  background: var(--accent);
}

.about-copy p {
  color: var(--muted);
  font-size: 18px;
}

.treatments {
  background: linear-gradient(180deg, var(--bg) 0%, #efe2d7 100%);
}

.treatment-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.treatment-card {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  border-radius: 8px;
  background: var(--dark);
  color: #fff;
  box-shadow: var(--shadow);
}

.treatment-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(201, 169, 110, 0.2), rgba(26, 20, 16, 0.78)),
    var(--img-massage) center / cover;
  transition: transform 450ms ease;
}

.treatment-card.photo-body-card::before {
  background:
    linear-gradient(rgba(201, 169, 110, 0.2), rgba(26, 20, 16, 0.78)),
    var(--img-body) center / cover;
}

.treatment-card.photo-facial-card::before {
  background:
    linear-gradient(rgba(201, 169, 110, 0.2), rgba(26, 20, 16, 0.78)),
    var(--img-facial) center / cover;
}

.treatment-card:hover::before {
  transform: scale(1.05);
}

.treatment-content {
  position: relative;
  z-index: 1;
  padding: 32px;
}

.treatment-content h3 {
  margin: 0 0 14px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(34px, 4vw, 48px);
  line-height: 0.98;
}

.treatment-content p {
  margin: 0 0 24px;
  color: rgba(255, 255, 255, 0.8);
}

.testimonials {
  background:
    linear-gradient(rgba(244, 235, 227, 0.72), rgba(244, 235, 227, 0.84)),
    var(--img-testimonials) center / cover fixed;
  overflow: hidden;
}

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

.google-review-link {
  display: inline-flex;
  margin-top: 18px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.testimonial-carousel-shell {
  position: relative;
  margin-top: 54px;
}

.testimonial-carousel {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 48px) / 3);
  gap: 24px;
  overflow-x: auto;
  padding: 8px 0 34px;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

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

.testimonial-card {
  min-height: 360px;
  display: flex;
  flex-direction: column;
  padding: 30px;
  border: 1px solid rgba(201, 169, 110, 0.14);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 18px 42px rgba(44, 24, 16, 0.09);
  backdrop-filter: blur(14px);
  scroll-snap-align: start;
}

.stars {
  color: var(--accent);
  font-size: 15px;
  letter-spacing: 0.14em;
}

.testimonial-card p {
  margin: 24px 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(24px, 2vw, 32px);
  line-height: 1.14;
}

.testimonial-card cite {
  margin-top: auto;
  color: var(--muted);
  font-style: normal;
  font-size: 15px;
}

.testimonial-arrow {
  position: absolute;
  top: 45%;
  z-index: 2;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(201, 169, 110, 0.4);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.74);
  color: #84533a;
  font-size: 30px;
  line-height: 1;
  transform: translateY(-50%);
  cursor: pointer;
  box-shadow: 0 12px 24px rgba(44, 24, 16, 0.1);
}

.testimonial-arrow.prev {
  left: -58px;
}

.testimonial-arrow.next {
  right: -58px;
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 11px;
  margin-top: 10px;
}

.testimonial-dots span {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(132, 83, 58, 0.18);
}

.testimonial-dots span.is-active {
  width: 44px;
  background: #c99455;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 26px;
  margin-top: 54px;
}

.team-member {
  text-align: center;
}

.team-member:nth-child(1) .placeholder-team,
.team-member:nth-child(4) .placeholder-team {
  background:
    linear-gradient(rgba(201, 169, 110, 0.08), rgba(201, 169, 110, 0.08)),
    var(--img-portrait-1) center / cover;
}

.team-member:nth-child(2) .placeholder-team,
.team-member:nth-child(5) .placeholder-team {
  background:
    linear-gradient(rgba(201, 169, 110, 0.08), rgba(201, 169, 110, 0.08)),
    var(--img-portrait-2) center / cover;
}

.team-member:nth-child(3) .placeholder-team {
  background:
    linear-gradient(rgba(201, 169, 110, 0.08), rgba(201, 169, 110, 0.08)),
    var(--img-portrait-3) center / cover;
}

.team-member h3 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 30px;
}

.team-member p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.contact {
  background: var(--dark);
  color: #fff;
}

.contact .section-title,
.contact .section-kicker {
  color: #fff;
}

.contact .section-kicker {
  color: var(--accent);
}

.contact p,
.contact li {
  color: rgba(255, 255, 255, 0.74);
}

.contact-list {
  margin: 24px 0;
  padding: 0;
  list-style: none;
}

.contact-list li {
  margin-bottom: 13px;
}

.map-embed {
  min-height: 420px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.map-embed iframe {
  width: 100%;
  min-height: 420px;
  display: block;
  border: 0;
  filter: saturate(0.78) contrast(0.96);
}

.map-embed a {
  display: block;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.88);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-align: center;
  text-transform: uppercase;
}

.site-footer {
  padding: 46px 0 24px;
  background: #120e0b;
  color: rgba(255, 255, 255, 0.72);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  gap: 28px;
  align-items: start;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.powered {
  margin-top: 28px;
  color: rgba(255, 255, 255, 0.38);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.page-hero {
  position: relative;
  min-height: 72vh;
  display: grid;
  place-items: center;
  background:
    linear-gradient(90deg, rgba(36, 16, 6, 0.78), rgba(36, 16, 6, 0.5)),
    var(--img-spa-room) center / cover;
  color: #fff;
  text-align: center;
}

.page-hero.hero-massage {
  background:
    linear-gradient(90deg, rgba(36, 16, 6, 0.78), rgba(36, 16, 6, 0.5)),
    var(--img-massage) center / cover;
}

.page-hero.hero-body {
  background:
    linear-gradient(90deg, rgba(36, 16, 6, 0.78), rgba(36, 16, 6, 0.5)),
    var(--img-body) center / cover;
}

.page-hero.hero-facial {
  background:
    linear-gradient(90deg, rgba(36, 16, 6, 0.78), rgba(36, 16, 6, 0.5)),
    var(--img-facial) center / cover;
}

.page-hero.hero-blog {
  background:
    linear-gradient(90deg, rgba(36, 16, 6, 0.78), rgba(36, 16, 6, 0.5)),
    var(--img-wellness) center / cover;
}

.page-hero .container {
  position: relative;
  z-index: 2;
  padding-top: 80px;
}

.page-title {
  color: #fff;
  font-size: clamp(54px, 8vw, 104px);
  font-weight: 600;
  letter-spacing: 0.03em;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 48px;
}

.treatment-showcase {
  position: relative;
  background: linear-gradient(180deg, #f7ece2 0%, #f2e5da 100%);
  overflow: hidden;
}

.treatment-showcase .section-title {
  color: #3a2217;
  font-size: clamp(40px, 5vw, 60px);
  font-weight: 600;
  letter-spacing: 0.035em;
}

.showcase-intro {
  max-width: 860px;
  margin: 22px auto 0;
  color: #84756f;
  font-size: clamp(20px, 2.4vw, 30px);
  line-height: 1.32;
}

.showcase-prompt {
  margin: 26px 0 0;
  color: #b56a35;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(28px, 3vw, 38px);
}

.service-carousel-shell {
  position: relative;
  margin-top: 76px;
}

.service-carousel {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 52px) / 3);
  gap: 26px;
  overflow-x: auto;
  padding: 4px 0 34px;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

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

.treatment-service-card {
  min-height: 560px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 20px 42px rgba(44, 24, 16, 0.15);
  text-align: center;
  scroll-snap-align: start;
}

.service-card-image {
  min-height: 240px;
  background:
    linear-gradient(rgba(44, 24, 16, 0.06), rgba(44, 24, 16, 0.06)),
    var(--img-massage) center / cover;
}

.service-card-image.body {
  background:
    linear-gradient(rgba(44, 24, 16, 0.06), rgba(44, 24, 16, 0.06)),
    var(--img-body) center / cover;
}

.service-card-image.facial {
  background:
    linear-gradient(rgba(44, 24, 16, 0.06), rgba(44, 24, 16, 0.06)),
    var(--img-facial) center / cover;
}

.service-card-image.products {
  background:
    linear-gradient(rgba(44, 24, 16, 0.06), rgba(44, 24, 16, 0.06)),
    var(--img-products) center / cover;
}

.service-card-image.wellness {
  background:
    linear-gradient(rgba(44, 24, 16, 0.06), rgba(44, 24, 16, 0.06)),
    var(--img-wellness) center / cover;
}

.service-card-video {
  width: 100%;
  height: 240px;
  object-fit: cover;
  background: #d8c2ae;
}

.treatment-service-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: center;
  padding: 34px 32px 30px;
}

.treatment-service-card h3 {
  margin: 0;
  color: #3d2519;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(28px, 2.5vw, 38px);
  font-weight: 600;
  line-height: 1.03;
  letter-spacing: 0.025em;
  text-transform: uppercase;
}

.treatment-service-card .duration {
  display: block;
  margin: 14px 0 26px;
  color: #8d7b72;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 27px;
  line-height: 1.05;
}

.treatment-service-card p {
  margin: 0 0 28px;
  color: #7c746f;
  font-size: 18px;
  line-height: 1.45;
}

.offer-service-shell {
  padding-top: 8px;
}

.offer-service-grid {
  grid-auto-flow: row;
  grid-auto-columns: unset;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  overflow: visible;
  padding-bottom: 0;
  scroll-snap-type: none;
}

.offer-service-grid .treatment-service-card {
  min-height: 330px;
  display: grid;
  grid-template-columns: minmax(220px, 44%) 1fr;
  text-align: left;
  scroll-snap-align: none;
}

.offer-service-grid .service-card-video {
  height: 100%;
  min-height: 330px;
}

.offer-service-grid .treatment-service-card-body {
  align-items: flex-start;
  justify-content: center;
  padding: 28px 30px;
}

.offer-service-grid .treatment-service-card h3 {
  font-size: clamp(27px, 2vw, 34px);
}

.offer-service-grid .treatment-service-card .duration {
  margin: 12px 0 18px;
  font-size: 25px;
}

.offer-service-grid .treatment-service-card p {
  margin-bottom: 24px;
  font-size: 17px;
}

.treatment-service-card .btn-book {
  margin-top: auto;
  border-color: rgba(226, 190, 136, 0.86);
  background: linear-gradient(135deg, #f7e8cf 0%, #e4bd82 58%, #c99455 100%);
  color: #2c1810;
  box-shadow: 0 10px 22px rgba(132, 83, 58, 0.13);
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 52px;
  height: 52px;
  border: 2px solid #84533a;
  border-radius: 50%;
  background: rgba(247, 236, 226, 0.8);
  color: #84533a;
  font-size: 34px;
  line-height: 1;
  transform: translateY(-50%);
  cursor: pointer;
}

.carousel-arrow.prev {
  left: -78px;
}

.carousel-arrow.next {
  right: -78px;
}

.service-dots {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 18px;
}

.service-dots span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(132, 83, 58, 0.18);
}

.service-dots span.is-active {
  width: 72px;
  border-radius: 999px;
  background: #84533a;
}

.service-card {
  display: flex;
  flex-direction: column;
  min-height: 330px;
  padding: 28px;
}

.service-card .duration,
.service-card .service-price {
  color: var(--accent);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.service-card p {
  color: var(--muted);
}

.service-card .btn-book {
  margin-top: auto;
}

.prices {
  background: #ead9cb;
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 44px;
}

.price-card {
  padding: 30px;
}

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

.price-list s {
  color: var(--muted);
}

.final-cta {
  padding: 84px 0;
  background: var(--dark);
  color: #fff;
  text-align: center;
}

.note {
  max-width: 860px;
  margin: 28px auto 0;
  color: var(--muted);
  font-style: italic;
  text-align: center;
}

.promo-note {
  max-width: 960px;
  margin: 32px auto 0;
  padding: 24px;
  border-left: 3px solid var(--accent);
  background: rgba(201, 169, 110, 0.13);
  color: var(--text);
  font-style: italic;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 50px;
}

.blog-card {
  overflow: hidden;
}

.blog-card-body {
  padding: 24px;
}

.blog-card h3 {
  margin: 0 0 10px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 30px;
  line-height: 1.05;
}

.coming-soon {
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

@media (max-width: 980px) {
  .site-header {
    --header-height: 86px;
  }

  .nav-wrap {
    width: min(100% - 24px, 1180px);
    gap: 14px;
  }

  .nav-toggle {
    display: block;
    margin-left: auto;
  }

  .nav-links {
    position: fixed;
    top: var(--header-height);
    right: 0;
    left: 0;
    margin-left: 0;
    margin-right: 0;
    transform: none;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 18px 20px 26px;
    background: rgba(26, 20, 16, 0.98);
  }

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

  .nav-links a {
    padding: 14px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  .membership-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .membership-card {
    min-width: 0;
  }

  .about-grid,
  .contact-grid,
  .footer-grid,
  .price-grid {
    grid-template-columns: 1fr;
  }

  .treatment-grid,
  .services-grid,
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .service-carousel {
    grid-auto-columns: minmax(280px, 82vw);
  }

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

  .carousel-arrow {
    display: none;
  }

  .team-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .testimonial-carousel {
    grid-auto-columns: minmax(290px, 86vw);
  }

  .testimonial-arrow {
    display: none;
  }

  .hero-content {
    width: min(900px, calc(100% - 24px));
    padding-top: 60px;
  }

  .hero-tagline {
    margin-bottom: 28px;
  }
}

@media (max-width: 640px) {
  .nav-wrap,
  .container {
    width: min(100% - 20px, 1180px);
  }

  .section,
  .section-tight {
    padding: 68px 0;
  }

  .brand-logo {
    width: 68px;
    max-height: 68px;
    transform: translateY(1px);
  }

  .hero-subbrand {
    letter-spacing: 0.22em;
  }

  .hero-content {
    width: min(900px, calc(100% - 20px));
    padding-top: 48px;
  }

  .hero-kicker {
    letter-spacing: 0.24em;
  }

  .hero h1 {
    font-size: clamp(54px, 16vw, 96px);
  }

  .hero-tagline {
    font-size: clamp(22px, 7vw, 30px);
  }

  .treatment-card {
    min-height: 430px;
  }

  .membership-grid {
    grid-template-columns: 1fr;
  }

  .service-carousel-shell {
    margin-top: 46px;
  }

  .treatment-service-card {
    min-height: 520px;
  }

  .offer-service-grid .treatment-service-card {
    min-height: 0;
    grid-template-columns: 1fr;
    text-align: center;
  }

  .offer-service-grid .service-card-video {
    height: 240px;
    min-height: 0;
  }

  .offer-service-grid .treatment-service-card-body {
    align-items: center;
    padding: 30px 24px;
  }

  .team-grid {
    grid-template-columns: 1fr;
  }

  .footer-links {
    flex-direction: column;
    gap: 10px;
  }

  .page-hero .container {
    padding-top: 64px;
  }

  .page-title {
    font-size: clamp(42px, 12vw, 72px);
  }

  .section-title {
    font-size: clamp(34px, 10vw, 54px);
  }

  .section-subtitle {
    font-size: 16px;
  }

  .testimonial-card {
    min-height: 320px;
    padding: 24px;
  }
}

.offer-path-grid,
.result-grid,
.membership-routine-grid,
.package-grid,
.faq-grid {
  display: grid;
  gap: 22px;
}

.offer-path-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 48px;
}

.offer-path-card,
.result-card,
.routine-card,
.package-card,
.faq-card,
.bonus-card {
  border: 1px solid rgba(132, 83, 58, 0.12);
  border-radius: 14px;
  background: rgba(255, 253, 249, 0.78);
  box-shadow: 0 18px 42px rgba(44, 24, 16, 0.08);
  backdrop-filter: blur(14px);
}

.offer-path-card {
  position: relative;
  min-height: 360px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 0;
}

.offer-path-card > :not(.offer-path-media) {
  position: relative;
  z-index: 1;
  margin-right: 24px;
  margin-left: 24px;
}

.offer-path-card h3 {
  margin-top: 24px;
}

.offer-path-media {
  width: 100%;
  height: 190px;
  object-fit: cover;
  background: #d8c2ae;
}

.offer-path-card h3,
.result-card h3,
.routine-card h3,
.package-card h3,
.faq-card h3,
.bonus-card h3 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 34px;
  font-weight: 600;
  line-height: 1;
}

.offer-path-card p,
.result-card p,
.routine-card p,
.package-card p,
.faq-card p,
.bonus-card p {
  color: var(--muted);
}

.offer-path-card ul,
.routine-card ul,
.package-card ul,
.offer-detail-list {
  margin: 18px 0 24px;
  padding: 0;
  list-style: none;
}

.offer-path-card li,
.routine-card li,
.package-card li,
.offer-detail-list li {
  padding: 8px 0;
  color: var(--muted);
  border-top: 1px solid rgba(132, 83, 58, 0.1);
}

.offer-path-card .btn,
.routine-card .btn,
.package-card .btn {
  margin-bottom: 24px;
  margin-top: auto;
}

.offer-recovery {
  background: linear-gradient(145deg, rgba(255, 253, 249, 0.88), rgba(239, 226, 215, 0.8));
}

.offer-sculpt {
  background: linear-gradient(145deg, rgba(247, 236, 226, 0.9), rgba(226, 200, 165, 0.8));
}

.offer-glow {
  background: linear-gradient(145deg, rgba(255, 247, 244, 0.92), rgba(231, 201, 157, 0.72));
}

.offer-ritual {
  background: linear-gradient(145deg, rgba(244, 235, 227, 0.92), rgba(210, 180, 148, 0.74));
}

.diagnostic-hero {
  min-height: 72vh;
  display: grid;
  align-items: center;
  padding: 130px 0 96px;
  background:
    linear-gradient(rgba(244, 235, 227, 0.74), rgba(244, 235, 227, 0.88)),
    var(--img-spa-room) center / cover fixed;
}

.quiz-shell {
  width: min(860px, calc(100% - 40px));
  margin: -110px auto 90px;
  position: relative;
  z-index: 5;
}

.quiz-card {
  padding: clamp(28px, 5vw, 54px);
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 18px;
  background: rgba(255, 253, 249, 0.9);
  box-shadow: 0 28px 80px rgba(44, 24, 16, 0.16);
}

.quiz-progress {
  margin-bottom: 26px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.quiz-progress-track {
  height: 6px;
  margin-top: 10px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(132, 83, 58, 0.12);
}

.quiz-progress-fill {
  height: 100%;
  width: 0;
  border-radius: inherit;
  background: linear-gradient(90deg, #e7c594, #c99455);
  transition: width 240ms ease;
}

.quiz-step h2 {
  margin: 0 0 24px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(38px, 6vw, 62px);
  line-height: 1;
}

.quiz-options {
  display: grid;
  gap: 12px;
}

.quiz-option,
.quiz-options button {
  width: 100%;
  border: 1px solid rgba(132, 83, 58, 0.16);
  border-radius: 12px;
  padding: 16px 18px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--text);
  font: inherit;
  text-align: left;
  cursor: pointer;
  transition: border-color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.quiz-option:hover,
.quiz-options button:hover {
  border-color: rgba(201, 148, 85, 0.72);
  box-shadow: 0 14px 28px rgba(44, 24, 16, 0.08);
  transform: translateY(-1px);
}

.quiz-back {
  margin-top: 18px;
  border: 0;
  background: transparent;
  color: var(--muted);
  font: inherit;
  cursor: pointer;
}

.section-alt {
  background: #f7efe8;
}

.lead-form {
  display: grid;
  gap: 14px;
}

.lead-form label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.lead-form input {
  width: 100%;
  border: 1px solid rgba(132, 83, 58, 0.18);
  border-radius: 10px;
  padding: 14px 15px;
  background: #fff;
  color: var(--text);
  font: inherit;
}

.quiz-actions {
  display: flex;
  gap: 12px;
  margin-top: 22px;
}

.result-hero-copy {
  max-width: 860px;
  margin: 0 auto;
}

.result-grid {
  grid-template-columns: 1.1fr 0.9fr;
  align-items: start;
}

.result-card,
.bonus-card {
  padding: clamp(24px, 4vw, 40px);
}

.bonus-card {
  border-color: rgba(201, 169, 110, 0.18);
  background:
    linear-gradient(180deg, rgba(251, 244, 236, 0.88), rgba(244, 235, 227, 0.9));
  box-shadow: 0 22px 50px rgba(44, 24, 16, 0.08);
}

.bonus-card h3 {
  font-size: clamp(28px, 3vw, 40px);
}

.bonus-card p {
  max-width: 34ch;
}

.offer-page-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 58px;
  align-items: center;
}

.offer-visual {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border-radius: 16px;
  background: var(--img-body) center / cover;
  box-shadow: var(--shadow);
}

.offer-visual video,
.offer-visual-media {
  width: 100%;
  height: 520px;
  display: block;
  object-fit: cover;
}

.recovery-video {
  object-position: center 28%;
  transform: scale(0.66);
  transform-origin: center center;
}

.membership-routine-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 46px;
}

.routine-card,
.package-card,
.faq-card {
  position: relative;
  padding: 24px;
}

.routine-card {
  display: flex;
  flex-direction: column;
  min-height: 520px;
  border-radius: 16px;
}

.routine-1 {
  background: #fbf4ed;
}

.routine-2 {
  background: #f5eadc;
}

.routine-3 {
  background: #edd9bb;
}

.routine-4 {
  background: #dfbd8e;
}

.small-badge {
  position: absolute;
  top: -14px;
  left: 24px;
  display: inline-flex;
  border-radius: 999px;
  padding: 6px 12px;
  background: #16483d;
  color: #fff;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.package-tabs {
  margin-top: 34px;
}

.package-tab-list {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 26px;
}

.package-tab {
  border: 1px solid rgba(132, 83, 58, 0.16);
  border-radius: 999px;
  padding: 12px 18px;
  background: rgba(255, 253, 249, 0.7);
  color: var(--text);
  font: inherit;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
}

.package-tab.is-active {
  background: linear-gradient(135deg, #f5e8d2 0%, #e1bc83 56%, #c99455 100%);
  border-color: transparent;
}

.package-panel[hidden] {
  display: none;
}

.package-featured {
  background:
    linear-gradient(145deg, rgba(255, 253, 249, 0.9), rgba(235, 211, 170, 0.82));
}

.launch-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  display: inline-flex;
  border-radius: 999px;
  padding: 6px 10px;
  background: rgba(229, 69, 55, 0.12);
  color: #cf2e22;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.package-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 42px;
}

.faq-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 36px;
}

@media (max-width: 980px) {
  .offer-path-grid,
  .membership-routine-grid,
  .package-grid,
  .faq-grid,
  .result-grid,
  .offer-page-grid {
    grid-template-columns: 1fr;
  }

  .quiz-shell {
    margin-top: -70px;
  }
}


.reception-chat {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 80;
  font-family: "DM Sans", Arial, sans-serif;
}

.reception-chat * {
  box-sizing: border-box;
}

.chat-toggle {
  width: 66px;
  height: 66px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(235, 210, 168, 0.82);
  border-radius: 50%;
  background: linear-gradient(145deg, #f5e8d2 0%, #d9ad71 58%, #9a551f 100%);
  color: #241006;
  box-shadow: 0 18px 42px rgba(36, 16, 6, 0.24);
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.chat-toggle:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 48px rgba(36, 16, 6, 0.3);
}

.chat-toggle-icon {
  font-size: 27px;
  line-height: 1;
}

.chat-panel {
  position: absolute;
  right: 0;
  bottom: 82px;
  width: min(382px, calc(100vw - 28px));
  max-height: min(680px, calc(100vh - 120px));
  display: none;
  overflow: hidden;
  border: 1px solid rgba(227, 197, 143, 0.28);
  border-radius: 18px;
  background: rgba(18, 14, 11, 0.97);
  color: rgba(255, 255, 255, 0.86);
  box-shadow: 0 28px 84px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(18px);
}

.reception-chat.is-open .chat-panel {
  display: flex;
  flex-direction: column;
}

.chat-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 18px 18px 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  background: linear-gradient(135deg, rgba(44, 24, 16, 0.96), rgba(18, 14, 11, 0.96));
}

.chat-eyebrow {
  margin: 0 0 4px;
  color: var(--accent-3);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.chat-title {
  margin: 0;
  color: #fff8ef;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 27px;
  line-height: 1;
  letter-spacing: 0;
}

.chat-close {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

.chat-messages {
  display: grid;
  gap: 10px;
  overflow-y: auto;
  padding: 18px;
  min-height: 152px;
}

.chat-message {
  max-width: 92%;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 12px 14px;
  font-size: 14px;
  line-height: 1.45;
}

.chat-message.bot {
  justify-self: start;
  background: rgba(255, 255, 255, 0.07);
}

.chat-message.user {
  justify-self: end;
  background: rgba(227, 197, 143, 0.16);
  color: #fff8ef;
}

.chat-message a {
  color: var(--accent-3);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.chat-quick-replies,
.chat-actions,
.chat-response-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px;
  padding: 0 18px 14px;
}

.chat-chip,
.chat-action,
.chat-response-action {
  min-height: 42px;
  border: 1px solid rgba(227, 197, 143, 0.22);
  border-radius: 999px;
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.88);
  font: inherit;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-align: center;
  text-transform: uppercase;
  cursor: pointer;
}

.chat-chip:hover,
.chat-action:hover,
.chat-response-action:hover {
  border-color: rgba(227, 197, 143, 0.72);
  background: rgba(227, 197, 143, 0.12);
}

.chat-quick-replies.is-hidden {
  display: none;
}

.chat-response-actions {
  grid-template-columns: 1fr;
  padding: 0;
  margin-top: 10px;
}

.chat-response-action.primary {
  background: linear-gradient(135deg, #f5e8d2 0%, #e1bc83 56%, #c99455 100%);
  color: #241006;
}

.chat-actions {
  padding-bottom: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 14px;
}

.chat-action.primary {
  background: linear-gradient(135deg, #f5e8d2 0%, #e1bc83 56%, #c99455 100%);
  color: #241006;
}

.chat-input-row {
  display: flex;
  gap: 8px;
  padding: 0 18px 18px;
}

.chat-input-row input {
  min-width: 0;
  flex: 1;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font: inherit;
  font-size: 14px;
}

.chat-input-row input::placeholder {
  color: rgba(255, 255, 255, 0.42);
}

.chat-send {
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  background: #d6a466;
  color: #241006;
  font-size: 20px;
  cursor: pointer;
}

@media (max-width: 640px) {
  .reception-chat {
    right: 14px;
    bottom: 14px;
  }

  .chat-toggle {
    width: 58px;
    height: 58px;
  }

  .chat-panel {
    right: -7px;
    bottom: 72px;
    width: calc(100vw - 28px);
    max-height: calc(100vh - 104px);
    border-radius: 16px;
  }

  .chat-quick-replies,
  .chat-actions,
  .chat-response-actions {
    grid-template-columns: 1fr;
  }
}
