:root {
  --bg: #fbfefe;
  --panel: #ffffff;
  --panel-2: #f2f6fb;
  --text: #102037;
  --muted: #576a7f;
  --accent: #2fc4b0;
  --accent-2: #70e5d2;
  --accent-3: #0f8d7c;
  --stroke: rgba(12, 26, 75, 0.07);
  --glass: rgba(20, 49, 92, 0.05);
  --radius: 18px;
  --shadow: 0 18px 40px rgba(14, 24, 53, 0.09);
  --max-w: 1180px;
  --max-w-wide: 1400px;
  color-scheme: light;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  background: radial-gradient(120% 120% at 10% 10%, rgba(48, 200, 179, 0.12), transparent 35%), radial-gradient(120% 120% at 90% 10%, rgba(127, 227, 207, 0.08), transparent 32%), var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-family: 'Lora', 'DM Sans', 'Noto Sans Arabic', 'Helvetica Neue', Arial, sans-serif;
  letter-spacing: 0.01em;
  scroll-behavior: smooth;
}

body.modal-open {
  overflow: hidden;
}

body.lightbox-open {
  overflow: hidden;
}

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

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

.is-hidden {
  display: none !important;
}

.site-header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 5200;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(18px) saturate(1.1);
  -webkit-backdrop-filter: blur(18px) saturate(1.1);
  border-bottom: 1px solid rgba(12, 26, 75, 0.08);
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  grid-template-areas: "brand nav location actions";
  align-items: center;
  gap: clamp(10px, 2.2vw, 26px);
  padding: 12px clamp(18px, 3.6vw, 52px) 14px;
  width: 100%;
  margin: 0 auto;
  transition: padding 0.25s ease, background 0.25s ease, box-shadow 0.25s ease, backdrop-filter 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
  box-shadow: 0 10px 28px rgba(10, 26, 45, 0.1);
}

.menu-toggle {
  display: none;
  border: 1px solid var(--stroke);
  background: rgba(255, 255, 255, 0.8);
  border-radius: 12px;
  padding: 10px 14px;
  font-size: 1rem;
  cursor: pointer;
  box-shadow: 0 8px 18px rgba(12, 26, 75, 0.12);
  align-items: center;
  gap: 8px;
  font-weight: 800;
  z-index: 200;
  touch-action: manipulation;
}

.menu-toggle__icon {
  font-size: 1.2rem;
  line-height: 1;
}

body.menu-open {
  overflow: hidden;
}

.site-header.is-scrolled {
  padding: 6px clamp(16px, 3vw, 38px) 8px;
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(12, 26, 75, 0.08);
  box-shadow: 0 14px 34px rgba(10, 26, 45, 0.16);
  backdrop-filter: blur(20px) saturate(1.05);
  -webkit-backdrop-filter: blur(20px) saturate(1.05);
  transform: translateY(-2px);
  grid-template-columns: auto 1fr;
  grid-template-areas: "brand nav";
}

.site-header.is-scrolled .header-actions,
.site-header.is-scrolled .location-chip {
  display: none;
}

.brand {
  grid-area: brand;
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
}

.brand-logo {
  width: clamp(90px, 12vw, 130px);
  height: auto;
  border-radius: 12px;
  object-fit: contain;
  border: 1px solid var(--stroke);
  transition: width 0.25s ease, height 0.25s ease;
}

.brand-text {
  display: none;
}

.site-header.is-scrolled .brand-text {
  display: flex;
}

.site-header.is-scrolled .brand-logo {
  width: 42px;
  height: 42px;
  object-fit: cover;
}

.side-logo {
  display: none;
}

.side-logo img {
  width: 140px;
  height: auto;
  display: block;
}

@media (max-width: 900px) {
  .side-logo {
    display: none;
  }
}

.brand-text {
  display: none;
  flex-direction: column;
  gap: 2px;
}

.brand-name {
  font-weight: 700;
  letter-spacing: 0.01em;
  font-size: 0.88rem;
}

.site-header.is-scrolled .brand-name {
  font-size: 0.82rem;
}

.brand-tagline {
  color: var(--muted);
  font-size: 0.72rem;
}

.site-header.is-scrolled .brand-tagline {
  font-size: 0.68rem;
}

.location-chip {
  grid-area: location;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  position: relative;
  z-index: 200;
  flex: 0 0 auto;
  background: var(--panel-2);
  border: 1px solid var(--stroke);
  border-radius: 12px;
  padding: 4px 10px;
  margin-left: 6px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
  font-size: 0.68rem;
  white-space: nowrap;
}

.location-chip button {
  background: transparent;
  border: none;
  text-align: left;
  cursor: pointer;
  padding: 0;
  font-weight: 700;
  color: var(--text);
  font-size: 0.78rem;
  line-height: 1.2;
}

.location-chip small {
  display: none;
}

.location-chip .pill {
  display: none;
}

.main-nav {
  grid-area: nav;
  flex: 1 1 520px;
  display: flex;
  position: relative;
  z-index: 160;
  gap: clamp(10px, 1.1vw, 11px);
  font-weight: 800;
  width: 100%;
  flex-wrap: wrap;
  justify-content: center;
  font-size: clamp(0.88rem, 0.94vw, 1rem);
  white-space: nowrap;
  padding: 6px clamp(14px, 2.6vw, 28px);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(12, 26, 75, 0.06);
  border-radius: 16px;
  backdrop-filter: blur(16px) saturate(1.05);
  -webkit-backdrop-filter: blur(16px) saturate(1.05);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9), 0 12px 32px rgba(12, 26, 75, 0.14);
  transition: padding 0.25s ease, font-size 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.site-header.is-scrolled .main-nav {
  padding: 4px clamp(12px, 2.2vw, 20px);
  font-size: clamp(0.8rem, 0.88vw, 0.94rem);
  gap: clamp(10px, 1.1vw, 16px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9), 0 12px 28px rgba(12, 26, 75, 0.12);
  background: rgba(255, 255, 255, 0.85);
  border-color: rgba(12, 26, 75, 0.12);
  backdrop-filter: blur(16px) saturate(1.05);
  -webkit-backdrop-filter: blur(16px) saturate(1.05);
}

.main-nav {
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.main-nav::-webkit-scrollbar {
  display: none;
}

.main-nav a {
  padding: 10px 14px;
  border-radius: 999px;
  transition: all 0.2s ease;
  flex: 0 0 auto;
  text-align: center;
  touch-action: manipulation;
}

.site-header.is-scrolled .main-nav a {
  padding: 8px 12px;
}

.main-nav a:hover {
  background: var(--glass);
  color: var(--accent);
}

.header-actions {
  grid-area: actions;
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: flex-end;
  flex: 0 0 auto;
  transition: opacity 0.25s ease, max-width 0.25s ease, transform 0.25s ease;
}

.header-cta {
  display: inline-flex;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 14px;
}

.site-header.is-scrolled .location-chip,
.site-header.is-scrolled .header-actions {
  display: none;
}

@media (max-width: 1024px) {
  .site-header {
    grid-template-columns: 1fr;
    grid-template-areas:
      "brand"
      "actions"
      "nav"
      "location";
    align-items: flex-start;
  }
  .brand {
    width: 100%;
  }
  .location-chip {
    margin-left: 0;
  }
  .has-js .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    justify-self: end;
  }
  .has-js .main-nav {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    width: 100%;
    margin-top: 0;
  }
  .has-js .site-header.is-menu-open .main-nav {
    display: flex;
    position: static;
    margin: 12px 0 0;
    padding: 14px 16px;
    width: 100%;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(12, 26, 75, 0.08);
    box-shadow: 0 12px 28px rgba(10, 26, 45, 0.14);
    border-radius: 14px;
    max-height: none;
    overflow: visible;
  }
  .main-nav a {
    width: 100%;
    text-align: left;
  }
  .site-header.is-scrolled .location-chip {
    display: inline-flex;
  }
  .header-actions {
    justify-content: flex-start;
    flex-wrap: wrap;
  }
}

.lang-switch {
  position: relative;
  min-width: 120px;
}

.lang-switch select {
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background: var(--glass);
  border: 1px solid var(--stroke);
  border-radius: 12px;
  padding: 10px 34px 10px 12px;
  font-weight: 800;
  font-size: 0.85rem;
  cursor: pointer;
  color: var(--text);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.lang-switch select:focus {
  outline: none;
  border-color: rgba(47, 196, 176, 0.65);
  box-shadow: 0 0 0 3px rgba(47, 196, 176, 0.15);
}

.lang-switch::after {
  content: "";
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid var(--muted);
  pointer-events: none;
}

.primary-btn,
.ghost-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 20px;
  border-radius: 14px;
  font-weight: 800;
  gap: 10px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
  border: 1px solid transparent;
  font-size: 1.02rem;
}

.site-header .primary-btn,
.site-header .ghost-btn {
  padding: 14px 18px;
  font-size: 1.05rem;
  box-shadow: 0 10px 20px rgba(12, 20, 35, 0.12);
  letter-spacing: 0.01em;
}
.site-header .ghost-btn {
  background: #f2fffa;
  color: #0a2721;
  border-color: rgba(47, 196, 176, 0.95);
  box-shadow: 0 12px 24px rgba(12, 26, 75, 0.14);
  font-weight: 800;
}
.site-header .ghost-btn:hover,
.site-header .primary-btn:hover {
  color: #0c1a23;
  border-color: rgba(48, 200, 179, 0.9);
}

.primary-btn {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #0f1720;
  box-shadow: 0 12px 30px rgba(20, 184, 166, 0.25);
}

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

.ghost-btn {
  background: #f7fffd;
  color: #0b201c;
  border-color: rgba(48, 200, 179, 0.5);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9), 0 8px 18px rgba(12, 20, 35, 0.14);
}

.ghost-btn.secondary {
  border-style: dashed;
  box-shadow: none;
}

.ghost-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
}

main {
  max-width: 1440px;
  margin: 0 auto;
  padding: 40px 28px 80px;
}

.section-head {
  max-width: var(--max-w);
  margin: 0 auto 32px;
  text-align: center;
}

.eyebrow {
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-weight: 700;
  font-size: 0.8rem;
  margin: 0 0 8px;
}

.lede {
  color: var(--muted);
  margin: 12px auto 0;
  max-width: 720px;
}

h1, h2, h3, h4 {
  margin: 0;
  line-height: 1.2;
  font-family: 'Lora', 'DM Sans', 'Noto Sans Arabic', 'Helvetica Neue', Arial, sans-serif;
  font-weight: 700;
}

.section-head h2 {
  font-size: clamp(2.2rem, 3vw, 2.8rem);
}

button,
.main-nav,
.pill,
.primary-btn,
.ghost-btn,
.lang-switch button {
  font-family: 'DM Sans', 'Lora', 'Noto Sans Arabic', 'Helvetica Neue', Arial, sans-serif;
}

.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border: 1px solid var(--stroke);
  border-radius: calc(var(--radius) * 1.4);
  padding: 60px;
  background: linear-gradient(135deg, rgba(6, 12, 22, 0.38), rgba(10, 26, 40, 0.26));
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 32px;
  margin-bottom: 56px;
  box-shadow: var(--shadow);
  color: #fff;
  align-items: flex-start;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-size: cover;
  background-position: center;
  opacity: 1;
  filter: brightness(0.95) contrast(1.02) saturate(1.03);
  pointer-events: none;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(120deg, rgba(7, 14, 26, 0.18), rgba(6, 18, 32, 0.14)), radial-gradient(circle at 26% 20%, rgba(48, 200, 179, 0.16), transparent 60%), linear-gradient(180deg, rgba(12, 22, 40, 0.26) 0%, rgba(12, 22, 40, 0.1) 72%);
  opacity: 0.52;
  pointer-events: none;
}

.hero-content, .hero-card {
  position: relative;
  z-index: 2;
}
.hero-actions,
.hero-card,
.hero-card-foot,
.hero-content {
  position: relative;
  z-index: 8;
}
.hero-actions a,
.hero-card-foot [data-chat-toggle] {
  pointer-events: auto;
}

.hero-content h1 {
  font-size: clamp(2.7rem, 3.6vw, 3.9rem);
  word-break: normal;
  max-width: 32ch;
}

.hero-content .lede {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.08rem;
}

.hero .lede {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.12rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 28px 0;
  align-items: center;
  position: relative;
  z-index: 40;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.cta-row .primary-btn,
.cta-row .ghost-btn {
  min-width: 150px;
}

@media (min-width: 960px) {
  .cta-row {
    flex-wrap: nowrap;
  }
}

.hero .ghost-btn {
  background: rgba(255, 255, 255, 0.96);
  color: #0a1d18;
  border-color: rgba(48, 200, 179, 0.9);
  box-shadow: 0 18px 36px rgba(8, 16, 28, 0.28);
}
.hero .primary-btn,
.hero .ghost-btn {
  padding: 22px 32px;
  font-size: 1.2rem;
  min-width: 170px;
}

.hero-actions a,
.booking-actions a,
.contact-actions a {
  position: relative;
  z-index: 41;
  pointer-events: auto;
  touch-action: manipulation;
}

.mobile-cta-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  display: none;
  gap: 10px;
  padding: 12px 14px calc(12px + env(safe-area-inset-bottom));
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid var(--stroke);
  box-shadow: 0 -12px 30px rgba(10, 26, 45, 0.16);
  z-index: 6400;
  transition: opacity 0.2s ease;
  pointer-events: auto;
}

body.modal-open .mobile-cta-bar {
  opacity: 0;
  pointer-events: none;
}

.mobile-cta-bar .primary-btn,
.mobile-cta-bar .ghost-btn {
  flex: 1 1 auto;
  padding: 16px 14px;
  text-align: center;
  min-width: unset;
  touch-action: manipulation;
}

.service-cta,
.booking-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  position: relative;
  z-index: 3;
}

.service-cta {
  justify-content: center;
  margin-top: 22px;
}

.booking-actions,
.contact-actions {
  justify-content: flex-start;
}

@media (min-width: 900px) {
  .hero-actions,
  .service-cta,
  .booking-actions,
  .contact-actions,
  .header-cta {
    flex-wrap: nowrap;
  }
}

@media (max-width: 720px) {
  .hero-content h1 {
    font-size: clamp(1.1rem, 5vw, 1.5rem);
    line-height: 1.3;
    word-break: break-word;
    max-width: 28ch;
  }
  .hero-content {
    max-width: 100%;
  }
  .hero-actions,
  .cta-row {
    flex-wrap: wrap;
  }
}

@media (max-width: 840px) {
  body {
    padding-bottom: 110px;
  }
  .mobile-cta-bar {
    display: flex;
    align-items: center;
    max-width: 1440px;
    margin: 0 auto;
  }
  .chatbot-widget {
    bottom: 110px;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 1.05rem;
    max-width: 100%;
  }
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.stat {
  background: linear-gradient(135deg, #ffffff 0%, #f5f9ff 100%);
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--stroke);
}

.stat-number {
  display: block;
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--accent);
}

.stat-label {
  color: var(--muted);
  font-size: 0.95rem;
}

.hero-card {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--stroke);
  border-radius: var(--radius);
  padding: 24px 22px 18px;
  backdrop-filter: blur(12px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: var(--text);
}

.hero-list {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}

.hero-card-foot {
  margin-top: 12px;
  padding: 12px 10px;
  border-top: 1px solid var(--stroke);
  background: #f5fffc;
  border-radius: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  font-weight: 700;
  color: var(--text);
}

.hero-card-foot .pill {
  margin: 0;
}

.hero-chat-toggle {
  cursor: pointer;
}

.hero-chat-toggle:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.highlight-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 2px 0 6px;
  background: rgba(48, 200, 179, 0.22);
  border-color: rgba(48, 200, 179, 0.45);
  color: var(--text);
  font-weight: 800;
  letter-spacing: 0.01em;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.hero-stats {
  display: none;
}

.pill-group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 6px;
}

.pill {
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--glass);
  border: 1px solid var(--stroke);
  font-weight: 600;
  font-size: 0.9rem;
}

.highlights,
.services,
.process,
.duo,
.cta-panel,
.contact {
  padding: 28px 0 16px;
}

.gallery,
.reviews,
.shop,
.legal {
  padding: 28px 0 16px;
}

.card-grid {
  display: grid;
  gap: 18px;
  max-width: var(--max-w);
  margin: 0 auto;
  align-items: stretch;
}

.card-grid.three {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.card-grid.four {
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  grid-auto-rows: 1fr;
}

.card,
.service-card,
.pricing-card,
.glass {
  background: var(--panel);
  border: 1px solid var(--stroke);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.card-eyebrow {
  color: var(--accent);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.8rem;
}

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

.service-card {
  position: relative;
  transition: transform 0.2s ease, border-color 0.2s ease;
  min-height: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
  height: 100%;
}

.service-card.is-clickable {
  cursor: pointer;
}

.service-card.is-clickable:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
}

.service-card__link {
  position: absolute;
  inset: 0;
  z-index: 5;
  border-radius: inherit;
}

.service-card__link:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
}

.service-card::before {
  display: none;
}

.service-card::after {
  display: none;
}

.service-card > * {
  position: relative;
  z-index: 2;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(90, 228, 192, 0.6);
}

.service-card__image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: calc(var(--radius) - 4px);
}

.card-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 6px 10px;
  background: var(--glass);
  border-radius: 999px;
  border: 1px solid var(--stroke);
  font-size: 0.85rem;
  color: var(--accent);
  font-weight: 700;
}

.service-cta {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.service-card h3 {
  margin: 6px 0 4px;
  line-height: 1.3;
  font-size: 1.2rem;
}

.service-card p {
  margin: 0;
  line-height: 1.65;
  word-break: normal;
  overflow-wrap: anywhere;
  font-size: 1.04rem;
}

[data-service="hair"] {
  --card-img: url("/wp-content/uploads/2025/12/youthconnection-haarentfernung-brust-1920x1280-1.webp");
}

[data-service="pmu"] {
  --card-img: url("/wp-content/uploads/2025/12/PMU.jpg");
}

[data-service="cosmetic"] {
  --card-img: url("/wp-content/uploads/2025/12/Kosmetik.png");
}

[data-service="skin"] {
  --card-img: url("/wp-content/uploads/2025/12/vergeture_01.webp");
}

[data-service="invasive"] {
  --card-img: url("/wp-content/uploads/2025/12/botox-scaled-1.jpg");
}

.treatment-guides {
  padding: 18px 0 10px;
}

.guide-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.guide-group {
  background: var(--panel);
  border: 1px solid var(--stroke);
  border-radius: calc(var(--radius) * 1.05);
  padding: 16px 16px 14px;
  box-shadow: 0 14px 28px rgba(12, 26, 75, 0.08);
}

.guide-group__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  margin: 0 0 10px;
}

.guide-group__head h3 {
  margin: 0;
  font-size: 1.35rem;
}

.guide-group__hint {
  margin: 0;
  color: var(--muted);
  max-width: 620px;
}

.guide-group__grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.treatment-detail {
  border: 1px solid var(--stroke);
  border-radius: 14px;
  background: var(--panel-2);
  padding: 0 14px 10px;
  box-shadow: 0 12px 20px rgba(12, 26, 75, 0.06);
}

.treatment-detail summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 0;
}

.treatment-detail summary::-webkit-details-marker {
  display: none;
}

.treatment-detail .treat-title {
  font-weight: 700;
  font-size: 1.05rem;
}

.treatment-detail .treat-meta {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
}

.treatment-detail .detail-body {
  border-top: 1px solid var(--stroke);
  padding-top: 10px;
}

.treatment-detail .detail-body .desc {
  margin: 0 0 10px;
  color: var(--muted);
}

.treatment-detail .detail-grid {
  display: grid;
  gap: 8px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.treatment-detail .guide-result {
  margin: 8px 0 0;
  color: var(--text);
  font-weight: 600;
}

.guide-card {
  background: var(--panel);
  border: 1px solid var(--stroke);
  border-radius: calc(var(--radius) * 1.05);
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  box-shadow: 0 16px 30px rgba(12, 26, 75, 0.08);
}

.guide-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.guide-card h3 {
  font-size: 1.2rem;
  margin: 0;
}

.guide-card p {
  margin: 0;
  color: var(--muted);
}

.guide-list {
  margin: 0;
  padding-left: 18px;
  color: var(--text);
  line-height: 1.55;
}

.guide-columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 10px;
}

.guide-columns.small {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.guide-columns strong {
  display: block;
  margin-bottom: 4px;
}

.guide-tags {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.guide-result {
  margin: 4px 0 0;
  color: var(--text);
  font-weight: 600;
}

.guide-list.compact {
  padding-left: 16px;
  line-height: 1.4;
}

.guide-faq {
  border-top: 1px solid var(--stroke);
  padding-top: 8px;
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.98rem;
}

.treatment-directory {
  max-width: var(--max-w);
  margin: 42px auto 20px;
  padding: 10px 0 0;
}

.directory-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  margin: 0 auto 16px;
}

.dir-tabs {
  display: inline-flex;
  gap: 8px;
  background: var(--panel-2);
  border: 1px solid var(--stroke);
  border-radius: 14px;
  padding: 6px;
}

.dir-tabs button {
  background: transparent;
  border: 1px solid transparent;
  padding: 10px 14px;
  border-radius: 10px;
  font-weight: 700;
  color: var(--muted);
}

.dir-tabs button.active {
  background: #e0faf3;
  color: #0a1d18;
  border-color: rgba(47, 196, 176, 0.55);
}

.directory-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 14px;
}

.directory-card {
  background: var(--panel);
  border: 1px solid var(--stroke);
  border-radius: calc(var(--radius) * 1.05);
  padding: 16px 16px 14px;
  box-shadow: 0 12px 24px rgba(12, 26, 75, 0.08);
  display: grid;
  gap: 8px;
}

.directory-card--group.is-focused {
  outline: 2px solid rgba(15, 141, 124, 0.28);
  box-shadow: 0 14px 28px rgba(10, 29, 24, 0.12);
}

.directory-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.directory-card h3 {
  margin: 0;
  font-size: 1.08rem;
}

.directory-card .desc {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.directory-meta {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  align-items: center;
}

.directory-meta .price {
  font-weight: 800;
  color: var(--accent-3);
}

.directory-meta .pill {
  font-size: 0.78rem;
}

.knowledge {
  padding: clamp(48px, 8vw, 96px) clamp(18px, 4vw, 56px);
  background: var(--panel);
  border-top: 1px solid var(--stroke);
  border-bottom: 1px solid var(--stroke);
}

.knowledge-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: clamp(16px, 3vw, 28px);
  margin-top: 28px;
}

.knowledge-card {
  background: var(--surface);
  border: 1px solid var(--stroke);
  border-radius: 18px;
  padding: clamp(18px, 3vw, 28px);
  box-shadow: 0 10px 30px rgba(7, 40, 33, 0.06);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.knowledge-card h3 {
  margin: 0;
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  color: var(--text);
}

.knowledge-card p {
  margin: 0;
  color: var(--muted);
}

.knowledge-card ul {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 6px;
  color: var(--text);
}

.knowledge-card li {
  line-height: 1.6;
}

.knowledge-detail {
  margin-top: 28px;
  padding: clamp(18px, 3vw, 32px);
  border: 1px solid var(--stroke);
  border-radius: 18px;
  background: var(--panel-2);
  box-shadow: 0 12px 28px rgba(7, 40, 33, 0.08);
  display: grid;
  gap: 10px;
  scroll-margin-top: 86px;
  color: var(--text);
}

.knowledge-detail h3 {
  margin: 0;
  font-size: clamp(1.3rem, 2.4vw, 1.6rem);
}

.knowledge-detail h4 {
  margin: 16px 0 4px;
  font-size: 1.12rem;
}

.knowledge-detail h5 {
  margin: 10px 0 4px;
  font-size: 1rem;
  color: var(--muted);
}

.knowledge-detail p {
  margin: 0;
  line-height: 1.6;
  color: var(--text);
}

.knowledge-detail .note {
  margin-top: 12px;
  padding: 12px;
  border-radius: 12px;
  background: rgba(48, 200, 179, 0.08);
  border: 1px solid rgba(48, 200, 179, 0.3);
  color: var(--text);
  font-weight: 700;
}

.quality-detail.is-highlighted {
  outline: 2px solid rgba(48, 200, 179, 0.6);
  outline-offset: 4px;
  box-shadow: 0 18px 32px rgba(7, 40, 33, 0.14);
  transition: box-shadow 0.3s ease, outline-color 0.3s ease;
}

.lede.subtle {
  color: #5f738c;
  max-width: 620px;
}

.pill.neutral {
  background: rgba(16, 32, 55, 0.06);
  border-color: rgba(16, 32, 55, 0.12);
}

.quality {
  padding: clamp(48px, 8vw, 96px) clamp(18px, 4vw, 56px);
  background: var(--panel-2);
  border-top: 1px solid var(--stroke);
  border-bottom: 1px solid var(--stroke);
}

.quality-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: clamp(16px, 3vw, 28px);
  margin-top: 28px;
}

.quality-card {
  background: var(--panel);
  border: 1px solid var(--stroke);
  border-radius: var(--radius);
  padding: clamp(18px, 3vw, 26px);
  box-shadow: 0 12px 26px rgba(7, 40, 33, 0.05);
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease,
    transform 0.2s ease;
  cursor: pointer;
}

.quality-card h3 {
  margin: 0;
  font-size: clamp(1.02rem, 1.8vw, 1.18rem);
}

.quality-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.quality-card:hover,
.quality-card:focus-visible {
  border-color: rgba(48, 200, 179, 0.55);
  box-shadow: 0 18px 32px rgba(7, 40, 33, 0.08);
  transform: translateY(-2px);
}

.quality-card:focus-visible {
  outline: 2px solid rgba(48, 200, 179, 0.55);
  outline-offset: 3px;
}

@media (max-width: 1100px) {
  .main-nav {
    flex: 1 1 100%;
    order: 3;
  }
  .header-actions {
    flex: 1 1 100%;
    justify-content: flex-start;
  }
  .location-chip {
    order: 2;
  }
}

.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin: 0 auto 16px;
}

.filter-btn {
  padding: 9px 14px;
  border-radius: 999px;
  border: 1px solid var(--stroke);
  background: var(--panel);
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
}

.filter-btn.active {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #0f1720;
  border-color: transparent;
}

.gallery-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.gallery-spacer {
  grid-column: 1 / -1;
  height: 18px;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--stroke);
  background: var(--panel);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
}

.gallery-item.is-clickable {
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: auto;
  max-height: none;
  object-fit: contain;
  display: block;
  background: #fff;
}
.gallery-item video {
  width: 100%;
  height: auto;
  max-height: none;
  object-fit: contain;
  display: block;
  background: #000;
}

.gallery-item__meta {
  padding: 10px 12px;
}

.gallery-item__meta strong {
  display: block;
}

.gallery-item__meta span,
.gallery-item__meta small {
  color: var(--muted);
  font-size: 0.92rem;
}

.gallery-lightbox {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(8, 12, 20, 0.76);
  backdrop-filter: blur(8px);
  z-index: 5000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s ease;
}

.gallery-lightbox.is-open {
  opacity: 1;
  pointer-events: all;
}

.gallery-lightbox__dialog {
  background: var(--panel-2);
  border: 1px solid var(--stroke);
  border-radius: calc(var(--radius) * 1.1);
  padding: 10px;
  max-width: min(96vw, 1080px);
  max-height: 90vh;
  width: 100%;
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.35);
  display: grid;
  gap: 10px;
}

.gallery-lightbox__dialog img,
.gallery-lightbox__dialog video {
  width: 100%;
  height: auto;
  max-height: 74vh;
  object-fit: contain;
  background: #000;
  border-radius: calc(var(--radius) * 0.9);
}

.gallery-lightbox__caption {
  margin: 0;
  color: var(--muted);
  font-weight: 600;
}

.gallery-lightbox__close {
  justify-self: end;
  border: 1px solid var(--stroke);
  background: var(--panel);
  border-radius: 999px;
  padding: 6px 10px;
  cursor: pointer;
  font-weight: 700;
  line-height: 1;
}

.gallery-lightbox__close:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
}

.duo {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 18px;
  align-items: start;
  max-width: var(--max-w);
  margin: 0 auto;
  background: var(--panel-2);
  border: 1px solid var(--stroke);
  border-radius: calc(var(--radius) * 1.2);
  padding: 14px;
  box-shadow: var(--shadow);
}

.duo-content {
  background: linear-gradient(135deg, #ffffff, #f3f7ff);
  border: 1px solid var(--stroke);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.duo-card {
  display: grid;
  gap: 12px;
}

.glass {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.55));
  backdrop-filter: blur(10px);
}

.checklist {
  list-style: none;
  padding: 0;
  margin: 14px 0 0;
  color: var(--muted);
}

.checklist li::before {
  content: "•";
  color: var(--accent);
  margin-right: 8px;
}

.process .timeline {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
  max-width: var(--max-w);
  margin: 0 auto 16px;
}

.timeline-step {
  background: linear-gradient(135deg, #ffffff 0%, #f6f9ff 100%);
  border: 1px dashed rgba(12, 26, 75, 0.16);
  border-radius: var(--radius);
  padding: 16px;
}

.step-number {
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 8px;
}

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 14px;
  max-width: var(--max-w);
  margin: 0 auto;
}

.pricing-card .price {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--accent);
}

.reviews-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 14px;
}

.review-card {
  border: 1px solid var(--stroke);
  border-radius: var(--radius);
  background: linear-gradient(135deg, #ffffff, #f6fbff);
  padding: 14px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.review-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin-bottom: 4px;
}

.review-stars,
.review-card .stars {
  color: #f6b800;
  letter-spacing: 1px;
}

.shop-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.shop-card {
  border: 1px solid var(--stroke);
  border-radius: var(--radius);
  background: var(--panel);
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.cta-panel {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  background: linear-gradient(135deg, rgba(48, 200, 179, 0.14), rgba(255, 255, 255, 0.98));
  border: 1px solid rgba(48, 200, 179, 0.24);
  border-radius: var(--radius);
  padding: 22px;
  max-width: var(--max-w);
  margin: 20px auto;
  box-shadow: var(--shadow);
}

.cta-panel-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.contact {
  max-width: var(--max-w);
  margin: 0 auto;
}

.contact-card {
  background: var(--panel);
  border: 1px solid var(--stroke);
  border-radius: var(--radius);
  padding: 20px;
}

.contact-card p {
  margin: 6px 0;
}

.contact-legal {
  color: var(--muted);
  font-size: 0.95rem;
}

.contact-form {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.contact-form label {
  font-weight: 700;
  color: var(--text);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--stroke);
  border-radius: 10px;
  background: var(--surface);
  font: inherit;
  color: var(--text);
}

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

.form-status {
  margin-top: 12px;
  padding: 10px 12px;
  border-radius: 10px;
  font-weight: 700;
}

.form-status.is-success {
  background: rgba(48, 200, 179, 0.12);
  border: 1px solid rgba(48, 200, 179, 0.35);
  color: #0d5c52;
}

.form-status.is-error {
  background: rgba(255, 99, 71, 0.12);
  border: 1px solid rgba(255, 99, 71, 0.35);
  color: #a0261c;
}

.socials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 10px 0;
}

.socials a {
  padding: 8px 12px;
  background: var(--glass);
  border-radius: 999px;
  border: 1px solid var(--stroke);
  font-weight: 700;
}

.assistant__connect .socials {
  margin-top: 10px;
  gap: 12px;
}

.assistant__connect .socials a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px 10px 38px;
  position: relative;
  min-height: 38px;
}

.assistant__connect .socials a::before {
  content: "";
  position: absolute;
  left: 12px;
  width: 18px;
  height: 18px;
  border-radius: 6px;
  background: var(--accent);
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
}

.assistant__connect .socials [data-role="social-instagram"]::before {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M7 3h10a4 4 0 0 1 4 4v10a4 4 0 0 1-4 4H7a4 4 0 0 1-4-4V7a4 4 0 0 1 4-4m0 2a2 2 0 0 0-2 2v10a2 2 0 0 0 2 2h10a2 2 0 0 0 2-2V7a2 2 0 0 0-2-2zm5 3.5A3.5 3.5 0 1 1 8.5 12 3.5 3.5 0 0 1 12 8.5m0 2A1.5 1.5 0 1 0 13.5 12 1.5 1.5 0 0 0 12 10.5M17.25 6.5a1 1 0 1 1-1 1a1 1 0 0 1 1-1'/%3E%3C/svg%3E");
}

.assistant__connect .socials [data-role="social-facebook"]::before {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M13.5 10.5V8.25c0-.621.504-1.125 1.125-1.125h1.125V5h-2.25A3.375 3.375 0 0 0 10.125 8.375V10.5H8v2.25h2.125V19h2.25v-6.25h2.25L15 10.5z'/%3E%3C/svg%3E");
}

.assistant__connect .socials [data-role="social-tiktok"]::before {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M18.384 7.087c-.299-.818-.472-1.693-.472-2.604h-2.64v12.07a1.835 1.835 0 0 1-3.667 0a1.837 1.837 0 0 1 1.828-1.834c.203 0 .4.032.584.093V12.11a4.473 4.473 0 0 0-.584-.039a4.476 4.476 0 0 0-4.472 4.48a4.476 4.476 0 0 0 4.472 4.471a4.475 4.475 0 0 0 4.472-4.471V8.98a6.49 6.49 0 0 0 2.389.456v-2.35a3.827 3.827 0 0 1-1.51-.999Z'/%3E%3C/svg%3E");
}

.assistant__connect .socials [data-role="reviews-link"]::before {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M12 17.27L18.18 21l-1.64-7L22 9.24l-7.19-.61L12 2L9.19 8.63L2 9.24L7.46 14l-1.64 7z'/%3E%3C/svg%3E");
}

.social-proof {
  margin: 20px auto;
  max-width: var(--max-w-wide);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
  padding: 20px;
  background: linear-gradient(135deg, rgba(48, 200, 179, 0.08), #ffffff);
  border-top: 1px solid var(--stroke);
  border-bottom: 1px solid var(--stroke);
}

.social-proof__col {
  background: var(--panel);
  border: 1px solid var(--stroke);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
  display: grid;
  gap: 10px;
}

.social-proof .socials a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  font-weight: 700;
}

.social-proof iframe {
  width: 100%;
  min-height: 240px;
  border: none;
  border-radius: var(--radius);
}

.assistant__reviews {
  background: var(--panel);
  border: 1px solid var(--stroke);
  border-radius: var(--radius);
  padding: 10px;
}

.assistant {
  max-width: var(--max-w);
  margin: 20px auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 18px;
  align-items: start;
}

.assistant-panel,
.assistant-visualizer {
  background: var(--panel);
  border: 1px solid var(--stroke);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.assistant__label {
  font-weight: 700;
  display: block;
  margin: 10px 0 6px;
}

.assistant-portrait {
  display: flex;
  justify-content: center;
  margin: 8px 0 14px;
}

.assistant-portrait img {
  max-width: 210px;
  max-height: 280px;
  width: 100%;
  height: auto;
  border-radius: 16px;
  object-fit: contain;
  object-position: center;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.08);
}

#assistant-question {
  width: 100%;
  border: 1px solid var(--stroke);
  border-radius: var(--radius);
  padding: 12px;
  font-size: 1rem;
  resize: vertical;
  min-height: 90px;
}

.assistant__actions {
  margin: 10px 0 16px;
}

.assistant__answer {
  border: 1px solid var(--stroke);
  border-radius: var(--radius);
  background: var(--panel-2);
  padding: 14px;
  min-height: 120px;
  line-height: 1.6;
}

.assistant__reviews {
  margin-top: 12px;
  overflow: hidden;
  position: relative;
}

.assistant__reviews-track {
  display: flex;
  gap: 10px;
  align-items: stretch;
}

.assistant__review {
  min-width: 200px;
  border: 1px solid var(--stroke);
  border-radius: var(--radius);
  padding: 10px;
  background: var(--panel-2);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.assistant-visualizer ul {
  margin: 10px 0;
  padding-left: 18px;
  line-height: 1.5;
}

.visualizer-upload {
  margin: 14px 0 10px;
  display: grid;
  gap: 8px;
}

.visualizer-upload input[type="file"] {
  border: 1px solid var(--stroke);
  border-radius: var(--radius);
  padding: 10px;
  background: #fff;
}

.visualizer-preview {
  display: none;
}

.ghost-btn--small {
  padding: 6px 10px;
  font-size: 0.9rem;
}

.visualizer-areas {
  display: grid;
  gap: 6px;
  margin: 10px 0;
}

.chip--selectable {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid var(--stroke);
  border-radius: 999px;
  padding: 6px 10px;
  background: var(--panel-2);
  cursor: pointer;
}

.chip--selectable input {
  accent-color: var(--accent);
}

.visualizer-actions {
  margin: 10px 0;
}

.visualizer-output {
  margin-top: 8px;
}

.visualizer-compare {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(480px, 1fr));
  gap: 18px;
  margin: 16px 0;
}

.visualizer-shot {
  position: relative;
  min-height: 820px;
  border-radius: var(--radius);
  background-size: cover;
  background-repeat: no-repeat;
  background-color: #f7fbfa;
  background-position: center center;
  overflow: hidden;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.06);
  border: 1px solid var(--stroke);
}

.visualizer-shot::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(0, 0, 0, 0.06) 100%);
}

.visualizer-shot--after {
  filter: none;
  transform: scale(var(--viz-scale, 1));
  background-size: cover;
  background-position: var(--viz-pos, center center);
}

.visualizer-overlay {
  position: absolute;
  inset: 0;
  background: transparent;
  mix-blend-mode: soft-light;
  opacity: 1;
  pointer-events: none;
  filter: none;
  backdrop-filter: saturate(1.08);
}

.visualizer-tag {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: #0b3a30;
  font-weight: 600;
  font-size: 0.95rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
}

.visualizer-overlay.has-lips,
.visualizer-overlay.has-eyes,
.visualizer-overlay.has-cheeks,
.visualizer-overlay.has-chin,
.visualizer-overlay.has-skin {
  animation: visualizerPulse 4s ease-in-out infinite alternate;
}

@keyframes visualizerPulse {
  0% {
    opacity: 0.9;
    transform: scale(1);
  }
  100% {
    opacity: 1;
    transform: scale(1.02);
  }
}

.assistant__disclaimer {
  margin-top: 10px;
  font-size: 0.95rem;
  color: var(--muted);
  border-top: 1px solid var(--stroke);
  padding-top: 10px;
}

.pill-link {
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--stroke);
  background: var(--panel-2);
  font-weight: 700;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.pill-link:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  min-height: 320px;
  border: 1px solid var(--stroke);
  border-radius: var(--radius);
}

.site-footer {
  max-width: var(--max-w);
  margin: 28px auto 0;
  padding: 16px 0 40px;
  border-top: 1px solid var(--stroke);
  background: rgba(255, 255, 255, 0.92);
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--muted);
  flex-wrap: wrap;
  gap: 12px;
}

.site-footer a {
  margin-left: 12px;
}

.footer-right {
  display: flex;
  gap: 8px;
}

.legal {
  background: var(--panel-2);
}

.legal-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 16px 0 32px;
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 10px;
}

.legal-links a {
  padding: 8px 12px;
  border-radius: 10px;
  background: var(--panel);
  border: 1px solid var(--stroke);
  font-weight: 700;
}

.legal-modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 16px;
  background: rgba(8, 18, 32, 0.46);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 300;
}

.legal-modal.is-open {
  display: flex;
}

.legal-modal__backdrop {
  position: absolute;
  inset: 0;
}

.legal-modal__dialog {
  position: relative;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(243, 249, 253, 0.95));
  border: 1px solid var(--stroke);
  border-radius: 18px;
  box-shadow: var(--shadow);
  max-width: 860px;
  width: min(90vw, 860px);
  max-height: 80vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.legal-modal__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 18px;
  border-bottom: 1px solid var(--stroke);
  backdrop-filter: blur(6px);
}

.legal-modal__title {
  margin: 0;
}

.legal-modal__body {
  padding: 16px 18px;
  overflow-y: auto;
  background: rgba(255, 255, 255, 0.7);
}

.legal-modal__body h1,
.legal-modal__body h2,
.legal-modal__body h3 {
  margin-top: 14px;
}

.legal-modal__actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  padding: 12px 18px 16px;
  border-top: 1px solid var(--stroke);
  background: rgba(255, 255, 255, 0.85);
}

.legal-modal__close {
  border: none;
  background: transparent;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  color: var(--muted);
}

.location-modal {
  position: fixed;
  inset: 0;
  background: rgba(12, 17, 26, 0.55);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
  z-index: 50;
}

.location-modal.active {
  opacity: 1;
  pointer-events: all;
}

.location-modal__card {
  background: linear-gradient(135deg, #ffffff, #f4f8ff);
  border: 1px solid var(--stroke);
  border-radius: calc(var(--radius) * 1.1);
  padding: 22px;
  max-width: 560px;
  width: 100%;
  box-shadow: var(--shadow);
  text-align: center;
}

.location-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
  margin: 16px 0;
}

.location-option {
  border: 1px solid var(--stroke);
  border-radius: var(--radius);
  padding: 12px;
  background: var(--panel);
  text-align: left;
  cursor: pointer;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.location-option:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
}

.location-option strong {
  display: block;
  margin: 6px 0 2px;
}

.location-option small {
  color: var(--muted);
}

.modal-note {
  color: var(--muted);
  font-size: 0.9rem;
}

@media (max-width: 1360px) {
  .site-header {
    flex-wrap: wrap;
    gap: 10px 8px;
  }
  .main-nav {
    order: 3;
    width: 100%;
    font-size: 1rem;
    justify-content: flex-start;
  }
  .header-actions {
    width: 100%;
    justify-content: flex-end;
  }
  .location-chip {
    width: 100%;
    justify-content: flex-start;
    gap: 10px;
    margin-left: 0;
  }
}

@media (max-width: 1180px) {
  .site-header {
    padding-inline: 14px;
    align-items: flex-start;
  }
  .main-nav {
    font-size: 0.98rem;
    gap: 8px;
    justify-content: flex-start;
  }
  .location-chip {
    font-size: 0.64rem;
    padding: 3px 8px;
    margin-left: 0;
  }
}

@media (max-width: 1024px) {
  .site-header {
    flex-wrap: wrap;
    gap: 8px;
  }
  .main-nav {
    order: 3;
    width: 100%;
    justify-content: flex-start;
    flex-wrap: wrap;
    font-size: 0.94rem;
  }
  .location-chip {
    width: 100%;
    justify-content: flex-start;
    margin-left: 0;
  }
  .hero,
  .duo,
  .contact {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .main-nav a {
    padding: 8px 12px;
  }
  .site-header .primary-btn,
  .site-header .ghost-btn {
    font-size: 1rem;
    padding: 11px 14px;
  }
  .location-chip {
    gap: 6px;
  }
}

@media (max-width: 1100px) {
  .brand {
    width: 100%;
  }
  .location-chip {
    order: 2;
    width: 100%;
  }
  .main-nav {
    order: 3;
  }
  .header-actions {
    order: 4;
    width: 100%;
    justify-content: flex-start;
  }
}

@media (max-width: 720px) {
  .site-header {
    padding: 12px 18px;
  }
  main {
    padding: 28px 18px 64px;
  }
  .hero {
    padding: 32px 22px;
  }
  .hero-stats {
    grid-template-columns: 1fr;
  }
  .cta-panel {
    padding: 18px;
  }
  .service-cta {
    flex-direction: column;
  }
  .header-actions {
    width: 100%;
    justify-content: space-between;
  }
  .location-chip {
    gap: 6px;
  }
  .location-modal__card {
    padding: 18px;
  }
}

@media (max-width: 1250px) {
  .site-header {
    flex-wrap: wrap;
  }
  .main-nav {
    order: 3;
    width: 100%;
  }
  .header-actions {
    width: 100%;
    justify-content: flex-end;
  }
}

/* --- 2027 refresh additions --- */
.location-gate {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: radial-gradient(140% 140% at 10% 10%, rgba(48, 200, 179, 0.18), transparent 40%), radial-gradient(120% 120% at 90% 10%, rgba(127, 227, 207, 0.12), transparent 36%), rgba(12, 17, 26, 0.55);
  backdrop-filter: blur(16px);
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
  z-index: 6000;
}

.location-gate.active {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

body.location-gate-open .chatbot-widget {
  display: none;
}

body.consent-open .chatbot-widget {
  display: none;
}

.location-gate__inner {
  width: min(320px, 100%);
  background: linear-gradient(135deg, #ffffff, #f5f9ff);
  border-radius: calc(var(--radius) * 1.2);
  border: 1px solid var(--stroke);
  box-shadow: var(--shadow);
  padding: 12px 12px 14px;
  text-align: center;
}

.location-gate__inner h1 {
  font-size: clamp(1.24rem, 2.6vw, 1.52rem);
  margin-bottom: 6px;
}

.location-gate__inner .lede {
  font-size: 0.94rem;
}

.gate-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 12px;
  margin: 16px 0 8px;
}

.gate-option {
  border: 1px solid var(--stroke);
  border-radius: calc(var(--radius) * 1.1);
  padding: 8px 9px;
  text-align: left;
  cursor: pointer;
  background: var(--panel);
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 10px 20px rgba(12, 26, 75, 0.05);
}

.gate-option:hover,
.gate-option:focus-visible {
  border-color: var(--accent);
  transform: translateY(-2px);
  outline: none;
}

.gate-option .option-title {
  display: block;
  font-weight: 700;
  margin: 8px 0 2px;
}

.gate-option .option-meta {
  display: block;
  color: var(--muted);
  font-weight: 500;
}

.gate-note {
  color: var(--muted);
  margin: 6px 0 0;
  font-size: 0.9rem;
}

.consent-gate {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(12, 17, 26, 0.55);
  backdrop-filter: blur(14px);
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
  z-index: 6500;
}

.consent-gate.active {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

.consent-gate__inner {
  width: min(440px, 100%);
  background: linear-gradient(135deg, #ffffff, #f4f8fb);
  border-radius: calc(var(--radius) * 1.2);
  border: 1px solid var(--stroke);
  box-shadow: var(--shadow);
  padding: 16px 16px 18px;
  text-align: left;
}

.consent-gate__inner h2 {
  font-size: clamp(1.2rem, 2.2vw, 1.4rem);
  margin: 0 0 8px;
}

.consent-gate__inner p {
  margin: 0 0 12px;
  color: var(--muted-strong, #26323b);
}

.consent-links {
  display: flex;
  gap: 6px;
  align-items: center;
  margin-bottom: 14px;
  font-weight: 600;
}

.consent-links a {
  color: var(--text);
  text-decoration: none;
  border-bottom: 1px solid transparent;
}

.consent-links a:hover,
.consent-links a:focus-visible {
  color: var(--accent);
  border-bottom-color: var(--accent);
  outline: none;
}

.consent-actions {
  display: grid;
  gap: 10px;
}

.consent-es {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(12, 17, 26, 0.55);
  backdrop-filter: blur(14px);
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
  z-index: 6500;
}

.consent-es.active {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

.consent-es__inner {
  width: min(540px, 100%);
  background: linear-gradient(135deg, #ffffff, #f4f8fb);
  border-radius: calc(var(--radius) * 1.2);
  border: 1px solid var(--stroke);
  box-shadow: var(--shadow);
  padding: 16px 16px 18px;
  text-align: left;
  display: grid;
  gap: 16px;
}

.consent-es__panel {
  display: block;
}

.consent-es__panel--detail {
  display: none;
}

.consent-es.show-detail .consent-es__panel--banner {
  display: none;
}

.consent-es.show-detail .consent-es__panel--detail {
  display: block;
}

.consent-es__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}

.consent-es__group {
  border: 1px solid var(--stroke);
  border-radius: calc(var(--radius) * 1.1);
  padding: 12px;
  margin-bottom: 10px;
  background: #fff;
}

.consent-es__group-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 6px;
}

.consent-es__group p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.consent-es__note {
  color: var(--muted-strong);
  margin: 8px 0 0;
}

.ghost-btn--muted {
  color: var(--muted-strong);
  border-color: var(--stroke);
}

.product-highlights {
  list-style: none;
  padding: 10px 0 0;
  margin: 0;
  display: grid;
  gap: 6px;
  color: var(--muted);
}

.product-highlights li::before {
  content: "•";
  color: var(--accent);
  margin-right: 8px;
}

.gallery {
  margin-top: 48px;
}

.gallery-controls {
  max-width: var(--max-w);
  margin: 0 auto 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.filter-chips {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.chip {
  border: 1px solid var(--stroke);
  background: var(--panel);
  border-radius: 999px;
  padding: 9px 14px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
}

.chip.active {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #0f1720;
  border-color: transparent;
  box-shadow: 0 12px 26px rgba(48, 200, 179, 0.24);
}

.gallery-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-weight: 600;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 14px;
  max-width: var(--max-w);
  margin: 0 auto;
}

.gallery-spacer {
  grid-column: 1 / -1;
  height: 18px;
}

.gallery-item {
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: calc(var(--radius) * 0.9);
  overflow: hidden;
  border: 1px solid var(--stroke);
  background: var(--panel);
  box-shadow: 0 12px 28px rgba(14, 24, 53, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.gallery-item__link {
  display: flex;
  flex-direction: column;
  height: 100%;
  color: inherit;
  text-decoration: none;
}

.gallery-item__link:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
  border-radius: var(--radius);
}

.gallery-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 34px rgba(14, 24, 53, 0.12);
}

.gallery-item img {
  width: 100%;
  height: auto;
  max-height: none;
  object-fit: contain;
  display: block;
  background: #fff;
}
.gallery-item video {
  width: 100%;
  height: auto;
  max-height: none;
  object-fit: contain;
  display: block;
  background: #000;
}

.gallery-item__meta {
  position: static;
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 12px 12px 14px;
  background: var(--panel);
  color: var(--text);
  border-top: 1px solid var(--stroke);
}

.gallery-item__meta .pill {
  background: rgba(16, 32, 55, 0.06);
  color: var(--text);
  border-color: var(--stroke);
}

.reviews {
  margin-top: 48px;
}

.reviews-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  position: relative;
}

.review-card {
  border: 1px solid var(--stroke);
  border-radius: calc(var(--radius) * 0.9);
  padding: 18px;
  background: var(--panel);
  box-shadow: 0 12px 28px rgba(14, 24, 53, 0.08);
  display: grid;
  gap: 8px;
}

.review-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.stars {
  color: #f6b400;
  letter-spacing: 2px;
  font-weight: 700;
}

.reviews-cta {
  max-width: var(--max-w);
  margin: 14px auto 0;
  text-align: center;
}

.reviews-rotator {
  position: relative;
  min-height: 200px;
}

.reviews-rotator .review-card {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.reviews-rotator .review-card.active {
  opacity: 1;
  transform: translateY(0);
  z-index: 2;
}

.booking {
  margin: 48px auto;
  max-width: var(--max-w);
  padding: 26px;
  border-radius: calc(var(--radius) * 1.1);
  border: 1px solid var(--stroke);
  background: linear-gradient(135deg, rgba(48, 200, 179, 0.12), rgba(255, 255, 255, 0.96));
  box-shadow: var(--shadow);
}

.booking-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 16px;
  justify-content: center;
}

.shop {
  margin: 48px auto;
  max-width: var(--max-w);
}

.shop-panel {
  border: 1px solid var(--stroke);
  border-radius: calc(var(--radius) * 1.1);
  background: var(--panel);
  padding: 22px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 18px;
  box-shadow: 0 14px 30px rgba(14, 24, 53, 0.1);
  flex-wrap: wrap;
}

.shop-panel__copy {
  flex: 1 1 260px;
  min-width: 240px;
}

.shop-media-grid {
  flex: 2 1 420px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 12px;
  width: 100%;
}

.shop-media-item {
  margin: 0;
  padding: 10px;
  border: 1px solid var(--stroke);
  border-radius: calc(var(--radius) * 0.9);
  background: #fff;
  box-shadow: 0 10px 24px rgba(14, 24, 53, 0.08);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.shop-media-item img,
.shop-media-item video {
  width: 100%;
  border-radius: calc(var(--radius) * 0.7);
  object-fit: cover;
  aspect-ratio: 4 / 3;
  background: var(--panel);
}

.shop-media-item figcaption {
  font-weight: 600;
  font-size: 0.96rem;
}

.shop-media-item--video video {
  background: #000;
}

.legal {
  margin: 48px auto 0;
  max-width: var(--max-w);
  text-align: center;
}

.legal-links {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.chatbot-widget {
  position: fixed;
  right: 18px;
  bottom: 18px;
  left: auto;
  top: auto;
  display: flex;
  flex-direction: column-reverse;
  align-items: flex-end;
  gap: 10px;
  z-index: 5000;
  pointer-events: none;
}

.chatbot-widget > * {
  pointer-events: auto;
}

.chatbot-toggle {
  border: 1px solid var(--stroke);
  background: rgba(255, 255, 255, 0.65);
  color: var(--text);
  border-radius: 999px;
  padding: 10px 14px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 12px 24px rgba(12, 26, 75, 0.12);
  backdrop-filter: blur(14px) saturate(1.05);
  -webkit-backdrop-filter: blur(14px) saturate(1.05);
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  pointer-events: auto;
}

.chatbot-toggle:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 34px rgba(12, 26, 75, 0.16);
}

.chatbot-toggle__icon {
  font-size: 1.2rem;
}

.chatbot-toggle__label {
  white-space: nowrap;
}

.chatbot-panel {
  width: min(420px, 94vw);
  max-width: 420px;
  height: 520px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(12, 26, 75, 0.08);
  box-shadow: 0 22px 50px rgba(12, 26, 75, 0.22);
  border-radius: 18px;
  backdrop-filter: blur(18px) saturate(1.05);
  -webkit-backdrop-filter: blur(18px) saturate(1.05);
  overflow: hidden;
  transform: translateY(12px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
  pointer-events: auto;
  display: flex;
  flex-direction: column;
}

.chatbot-widget.is-open .chatbot-panel {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.chatbot-panel__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 12px;
  background: linear-gradient(120deg, rgba(47, 196, 176, 0.12), rgba(112, 229, 210, 0.08));
  border-bottom: 1px solid rgba(12, 26, 75, 0.06);
}

.chatbot-panel__eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.65rem;
  margin: 0 0 4px;
  color: var(--muted);
}

.chatbot-panel__title {
  font-size: 1rem;
}

.chatbot-panel__avatar,
.chatbot-toggle__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: contain;
  padding: 6px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(12, 26, 75, 0.14);
  box-shadow: 0 6px 16px rgba(12, 26, 75, 0.16);
}

.chatbot-toggle__avatar {
  width: 48px;
  height: 48px;
}

.chatbot-close {
  border: 1px solid var(--stroke);
  background: rgba(255, 255, 255, 0.8);
  border-radius: 999px;
  width: 32px;
  height: 32px;
  cursor: pointer;
  font-size: 1.1rem;
  line-height: 1;
  display: grid;
  place-items: center;
}

.chatbot-panel__body {
  min-height: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 12px 12px 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.75));
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  overflow: hidden;
  flex: 1;
}

.chatbot-embed {
  flex: 1 1 auto;
  min-height: 0;
  width: 100%;
  border: none;
  border-radius: 14px;
  box-shadow: inset 0 0 0 1px rgba(12, 26, 75, 0.06);
  background: rgba(255, 255, 255, 0.94);
  display: flex;
  flex-direction: column;
}

.chatbot-messages {
  flex: 1;
  min-height: 0;
  max-height: 100%;
  overflow-y: auto;
  padding: 14px 14px 8px;
  display: flex;
  flex-direction: column-reverse;
  gap: 10px;
}

.chatbot-message {
  display: flex;
}

.chatbot-message.is-user {
  justify-content: flex-end;
}

.chatbot-message__bubble {
  max-width: 90%;
  padding: 10px 12px;
  font-size: 0.8rem;
  line-height: 1.4;
  border-radius: 14px;
  border: 1px solid rgba(12, 26, 75, 0.08);
  box-shadow: 0 10px 22px rgba(12, 26, 75, 0.08);
  background: rgba(255, 255, 255, 0.88);
}

.chatbot-message.is-user .chatbot-message__bubble {
  background: linear-gradient(135deg, rgba(47, 196, 176, 0.18), rgba(112, 229, 210, 0.24));
  border-color: rgba(47, 196, 176, 0.35);
}

.chatbot-quickchips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0 12px 6px;
}

.chatbot-quickchips .chip {
  font-size: 0.9rem;
  padding: 8px 12px;
}

.chatbot-input {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  padding: 8px 12px 10px;
  border-top: 1px solid rgba(12, 26, 75, 0.08);
  background: rgba(255, 255, 255, 0.76);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.chatbot-input textarea {
  flex: 1;
  border: 1px solid var(--stroke);
  border-radius: 12px;
  padding: 10px 12px;
  resize: none;
  min-height: 44px;
  font-family: inherit;
  font-size: 0.9rem;
  background: rgba(255, 255, 255, 0.88);
}

.chatbot-send {
  white-space: nowrap;
  padding: 8px 12px;
  font-size: 0.9rem;
}

.chatbot-panel__hint {
  display: none;
}

.chip--ghost {
  background: rgba(255, 255, 255, 0.82);
  border: 1px dashed rgba(12, 26, 75, 0.16);
}

@media (max-width: 640px) {
  .chatbot-panel {
    height: 70vh;
  }
}

@media (max-width: 960px) {
  .location-gate__inner {
    padding: 22px;
  }
  .gallery-item img {
    height: auto;
  }
  .site-header {
    position: sticky;
  }
}
