:root {
  --ink: #171515;
  --ink-2: #2c2726;
  --muted: #756f6c;
  --line: rgba(23, 21, 21, 0.12);
  --rose: #f2b9c5;
  --rose-strong: #d85f7e;
  --mint: #a7d9cb;
  --acid: #d8f275;
  --paper: #fffaf7;
  --white: #ffffff;
  --black: #0f0e0d;
  --shadow: 0 22px 70px rgba(23, 21, 21, 0.16);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(23, 21, 21, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(23, 21, 21, 0.035) 1px, transparent 1px);
  background-size: 44px 44px;
}

a {
  color: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 26px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(255, 250, 247, 0.86);
  border-bottom: 1px solid var(--line);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.brand,
.site-nav,
.header-actions,
.hero-actions,
.quickbar,
.contact-actions,
footer {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.65rem;
  font-style: italic;
  text-decoration: none;
}

.brand img {
  border-radius: 50%;
  box-shadow: 0 10px 30px rgba(216, 95, 126, 0.22);
}

.site-nav {
  justify-content: center;
  gap: clamp(14px, 2vw, 28px);
}

.site-nav a,
.header-cta,
.button,
.service-card a,
footer a {
  text-decoration: none;
}

.site-nav a {
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 750;
}

.header-cta {
  padding: 11px 16px;
  color: var(--white);
  background: var(--black);
  border-radius: var(--radius);
  font-weight: 800;
}

.header-actions {
  justify-self: end;
  gap: 10px;
}

.language-link {
  min-width: 44px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink-2);
  font-size: 0.82rem;
  font-weight: 900;
  text-decoration: none;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
}

.hero {
  min-height: calc(100vh - 81px);
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.84fr);
  align-items: center;
  gap: clamp(34px, 6vw, 84px);
  padding: clamp(52px, 7vw, 104px) clamp(20px, 6vw, 92px) 58px;
  overflow: hidden;
}

.hero-copy {
  max-width: 790px;
}

.eyebrow {
  margin: 0 0 13px;
  color: var(--rose-strong);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p,
blockquote {
  margin-top: 0;
}

h1,
h2 {
  margin-bottom: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: 0;
}

h1 {
  max-width: 820px;
  font-size: clamp(3.65rem, 8vw, 7.9rem);
}

h2 {
  max-width: 900px;
  font-size: clamp(2.5rem, 5.8vw, 5.7rem);
}

h3 {
  margin-bottom: 10px;
  font-size: 1.28rem;
  line-height: 1.15;
}

.lead {
  max-width: 620px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(1.08rem, 1.5vw, 1.25rem);
}

.hero-actions {
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.booking-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.booking-panel-stack {
  display: grid;
  gap: 16px;
}

.calendar-card {
  overflow: hidden;
}

.calendar-card iframe {
  display: block;
  width: 100%;
  min-height: 600px;
  border: 0;
}

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border: 1px solid var(--ink);
  border-radius: var(--radius);
  font-weight: 900;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover,
.header-cta:hover,
.service-card:hover {
  transform: translateY(-2px);
}

.button.primary {
  color: var(--white);
  background: var(--rose-strong);
  border-color: var(--rose-strong);
  box-shadow: 0 16px 40px rgba(216, 95, 126, 0.25);
}

.button.secondary {
  color: var(--ink);
  background: var(--white);
}

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

.hero-visual {
  position: relative;
  min-height: 560px;
  display: grid;
  place-items: center;
}

.logo-stage {
  position: relative;
  width: min(100%, 520px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 1px solid rgba(23, 21, 21, 0.18);
  border-radius: 50%;
  background: var(--white);
  box-shadow: var(--shadow);
  overflow: hidden;
  animation: floatStage 7s ease-in-out infinite;
}

.logo-stage::before {
  content: "";
  position: absolute;
  inset: -20%;
  background: conic-gradient(from 110deg, transparent 0 18%, rgba(216, 95, 126, 0.24), transparent 36% 100%);
  animation: rotateSweep 9s linear infinite;
}

.logo-stage img {
  position: relative;
  z-index: 1;
  width: 88%;
  border-radius: 50%;
}

.scan-line {
  position: absolute;
  inset: 16% 5%;
  z-index: 2;
  height: 2px;
  background: rgba(216, 95, 126, 0.62);
  box-shadow: 0 0 24px rgba(216, 95, 126, 0.5);
  animation: scan 3.8s ease-in-out infinite;
}

.floating-stat {
  position: absolute;
  display: grid;
  gap: 2px;
  min-width: 160px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 18px 45px rgba(23, 21, 21, 0.12);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}

.floating-stat strong {
  font-size: 1.02rem;
}

.floating-stat span {
  color: var(--muted);
  font-size: 0.84rem;
}

.stat-one {
  top: 12%;
  left: 0;
}

.stat-two {
  right: 0;
  bottom: 13%;
}

.quickbar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-block: 1px solid var(--ink);
  background: var(--black);
}

.quickbar a {
  min-height: 112px;
  display: grid;
  align-content: center;
  gap: 5px;
  padding: 22px clamp(20px, 4vw, 48px);
  color: var(--white);
  text-decoration: none;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.quickbar a:last-child {
  border-right: 0;
}

.quickbar span,
.panel-label {
  color: var(--mint);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section {
  padding: clamp(70px, 9vw, 124px) clamp(20px, 6vw, 92px);
}

.section-kicker {
  margin-bottom: 38px;
}

.treatment-showcase {
  color: var(--white);
  background: var(--black);
}

.treatment-showcase .eyebrow,
.treatment-showcase .panel-label,
.area-strip span {
  color: var(--mint);
}

.treatment-showcase h2 {
  color: var(--white);
}

.laser-experience {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(320px, 1fr);
  gap: clamp(32px, 6vw, 82px);
  align-items: start;
  padding-block: clamp(34px, 5vw, 68px);
  border-block: 1px solid rgba(255, 255, 255, 0.16);
}

.laser-hero-copy h3 {
  margin-bottom: 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.65rem, 5.4vw, 5.4rem);
  font-weight: 500;
  line-height: 0.98;
}

.laser-hero-copy p:not(.panel-label),
.laser-details p {
  color: rgba(255, 255, 255, 0.72);
}

.laser-hero-copy p:not(.panel-label) {
  max-width: 620px;
  margin-bottom: 28px;
  font-size: clamp(1.02rem, 1.4vw, 1.18rem);
}

.treatment-showcase .button.dark {
  color: var(--black);
  background: var(--white);
  border-color: var(--white);
}

.area-strip span {
  display: block;
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.area-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.area-grid li {
  min-height: 46px;
  display: flex;
  align-items: center;
  padding: 11px 13px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  font-weight: 900;
}

.laser-principles {
  display: grid;
  margin-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.laser-principles article {
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.laser-principles strong {
  display: block;
  margin-bottom: 6px;
  color: var(--white);
  font-size: 1.02rem;
}

.laser-principles p {
  margin-bottom: 0;
}

.treatment-layout,
.booking-section,
.contact-section,
.reviews-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.74fr);
  gap: 24px;
  align-items: start;
}

.service-stack {
  display: grid;
  gap: 12px;
}

.service-card {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 18px;
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.8);
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.service-card.active {
  border-color: var(--ink);
  background: var(--white);
}

.service-number {
  color: var(--rose-strong);
  font-weight: 950;
}

.service-card p {
  grid-column: 2;
  margin-bottom: 0;
  color: var(--muted);
}

.treatment-panel,
.calendar-card,
.booking-form,
.contact-card,
.map-preview,
.reviews-shell,
.case-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 16px 45px rgba(23, 21, 21, 0.08);
}

.treatment-panel {
  position: sticky;
  top: 100px;
  min-height: 438px;
  padding: clamp(26px, 4vw, 44px);
}

.treatment-panel h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.15rem, 4vw, 3.8rem);
  font-weight: 500;
}

.treatment-panel p:not(.panel-label),
.booking-copy p,
.contact-card p,
.review-score p,
.case-card p {
  color: var(--muted);
}

.treatment-panel ul {
  display: grid;
  gap: 10px;
  margin: 24px 0 32px;
  padding: 0;
  list-style: none;
}

.treatment-panel li {
  padding-left: 24px;
  position: relative;
}

.treatment-panel li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 10px;
  height: 10px;
  background: var(--acid);
  border: 1px solid var(--ink);
  transform: rotate(45deg);
}

.dark-section {
  color: var(--white);
  background: var(--black);
}

.dark-section .eyebrow,
.dark-section .case-card p {
  color: var(--mint);
}

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

.case-card {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  padding: clamp(18px, 3vw, 28px);
  color: var(--white);
  background: #1c1918;
  border-color: rgba(255, 255, 255, 0.16);
}

.case-card h3,
.case-card p {
  grid-column: 1 / -1;
}

.case-placeholder {
  min-height: 220px;
  display: grid;
  place-items: center;
  border: 1px dashed rgba(255, 255, 255, 0.28);
  border-radius: var(--radius);
  color: rgba(255, 255, 255, 0.72);
  background:
    linear-gradient(135deg, rgba(242, 185, 197, 0.16), transparent),
    repeating-linear-gradient(45deg, transparent 0 12px, rgba(255, 255, 255, 0.035) 12px 13px);
  font-weight: 900;
}

.case-placeholder.after {
  background:
    linear-gradient(135deg, rgba(167, 217, 203, 0.22), transparent),
    repeating-linear-gradient(45deg, transparent 0 12px, rgba(255, 255, 255, 0.035) 12px 13px);
}

.reviews-shell {
  grid-template-columns: 0.72fr 1fr;
  padding: clamp(20px, 3vw, 30px);
}

.review-score {
  padding: 12px;
}

.stars {
  color: var(--rose-strong);
  font-size: 1.4rem;
  letter-spacing: 0.08em;
}

.review-score strong {
  display: block;
  margin: 12px 0 8px;
  font-size: 1.4rem;
}

.review-carousel {
  position: relative;
  min-height: clamp(280px, 24vw, 360px);
  overflow: hidden;
}

.review-card {
  position: absolute;
  inset: 0;
  display: grid;
  align-content: center;
  gap: 14px;
  padding: clamp(22px, 3vw, 36px);
  border-radius: var(--radius);
  background: var(--black);
  color: var(--white);
  opacity: 0;
  transform: translateX(22px);
  transition: opacity 300ms ease, transform 300ms ease;
}

.review-card.active {
  opacity: 1;
  transform: translateX(0);
}

.review-card p {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.3rem, 2.15vw, 2.05rem);
  line-height: 1.18;
  overflow-wrap: anywhere;
}

.review-card cite {
  color: var(--mint);
  font-style: normal;
  font-weight: 900;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.mini-review {
  min-height: 220px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 12px 34px rgba(23, 21, 21, 0.06);
}

.mini-review.featured {
  grid-column: span 2;
  background:
    linear-gradient(135deg, rgba(242, 185, 197, 0.24), transparent 58%),
    var(--white);
}

.mini-review span {
  color: var(--rose-strong);
  font-size: 0.95rem;
  letter-spacing: 0.07em;
}

.mini-review p {
  flex: 1;
  margin-bottom: 0;
  color: var(--ink-2);
  font-size: 0.98rem;
}

.mini-review.featured p {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.18rem, 2vw, 1.7rem);
  line-height: 1.18;
}

.mini-review strong {
  font-size: 0.98rem;
}

.mini-review small {
  color: var(--muted);
  font-size: 0.78rem;
}

.mini-review.rating-only {
  min-height: 170px;
}

.mini-review.rating-only p {
  color: var(--muted);
  font-size: 0.88rem;
}

.booking-section {
  background: linear-gradient(180deg, rgba(242, 185, 197, 0.18), transparent 38%);
}

.booking-copy {
  position: sticky;
  top: 100px;
}

.booking-copy p {
  max-width: 520px;
  margin-top: 22px;
  font-size: 1.05rem;
}

.booking-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: clamp(20px, 4vw, 34px);
}

.booking-form label {
  display: grid;
  gap: 8px;
  color: var(--ink-2);
  font-size: 0.84rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 13px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  background: #fffdfb;
  outline: none;
  text-transform: none;
}

.booking-form textarea {
  resize: vertical;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
  border-color: var(--rose-strong);
  box-shadow: 0 0 0 4px rgba(216, 95, 126, 0.12);
}

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

.hidden {
  display: none;
}

.contact-card {
  padding: clamp(24px, 4vw, 44px);
}

.contact-card h2 {
  margin-bottom: 18px;
}

.contact-card > a {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--rose-strong);
  font-size: clamp(1.8rem, 4vw, 3.1rem);
  font-weight: 950;
  text-decoration: none;
}

.contact-actions {
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.map-preview {
  min-height: 420px;
  display: grid;
  place-items: end start;
  padding: 24px;
  background:
    linear-gradient(135deg, rgba(167, 217, 203, 0.35), rgba(242, 185, 197, 0.28)),
    repeating-linear-gradient(90deg, rgba(23, 21, 21, 0.08) 0 1px, transparent 1px 36px),
    repeating-linear-gradient(0deg, rgba(23, 21, 21, 0.08) 0 1px, transparent 1px 36px);
}

.map-preview div {
  width: min(100%, 420px);
  padding: 22px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow);
}

.map-preview span {
  color: var(--rose-strong);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.map-preview strong {
  display: block;
  margin: 7px 0 14px;
  font-size: 1.35rem;
}

.map-preview a {
  font-weight: 900;
  text-decoration: none;
}

footer {
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(20px, 6vw, 92px);
  color: var(--white);
  background: var(--black);
}

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

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.thank-you-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
}

.thank-you {
  width: min(92vw, 680px);
  padding: clamp(28px, 5vw, 56px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
  text-align: center;
}

.thank-you img {
  width: 118px;
  border-radius: 50%;
}

.thank-you h1 {
  margin: 10px 0 18px;
}

.thank-you p:not(.eyebrow) {
  color: var(--muted);
}

@keyframes rotateSweep {
  to {
    transform: rotate(360deg);
  }
}

@keyframes scan {
  0%,
  100% {
    transform: translateY(0);
    opacity: 0;
  }
  20%,
  80% {
    opacity: 1;
  }
  50% {
    transform: translateY(350px);
  }
}

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

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto auto 1fr;
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    left: 18px;
    right: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .site-nav.open {
    display: flex;
  }

  .site-nav a {
    padding: 12px;
  }

  .header-actions {
    justify-self: end;
  }

  .hero,
  .laser-experience,
  .treatment-layout,
  .booking-section,
  .contact-section,
  .reviews-shell {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 0;
  }

  .hero-visual {
    min-height: 460px;
  }

  .logo-stage {
    width: min(88vw, 430px);
  }

  .quickbar,
  .case-grid,
  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .mini-review.featured {
    grid-column: auto;
  }

  .quickbar a {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }

  .quickbar a:last-child {
    border-bottom: 0;
  }

  .treatment-panel,
  .booking-copy {
    position: static;
  }
}

@media (max-width: 620px) {
  .site-header {
    gap: 12px;
    padding-inline: 14px;
  }

  .brand span {
    font-size: 1.3rem;
  }

  .header-cta {
    padding: 10px 12px;
    font-size: 0.85rem;
  }

  .language-link {
    min-width: 40px;
    min-height: 40px;
  }

  h1 {
    font-size: clamp(3.05rem, 16vw, 4.4rem);
  }

  .hero {
    padding-top: 42px;
  }

  .hero-visual {
    min-height: 360px;
  }

  .floating-stat {
    min-width: 140px;
  }

  .stat-one {
    top: 2%;
  }

  .stat-two {
    bottom: 3%;
  }

  .booking-form,
  .case-card {
    grid-template-columns: 1fr;
  }

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

  .wide,
  .case-card h3,
  .case-card p {
    grid-column: auto;
  }

  footer {
    flex-direction: column;
    align-items: flex-start;
  }
}
