:root {
  --ivory: #f7f5f2;
  --calcite: #ead7d4;
  --sand: #d6c5b5;
  --taupe: #a99584;
  --graphite: #2a2a2a;
  --carbon: #1a1a1a;
  --white: #fffcfa;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: Manrope, system-ui, sans-serif;
  color: var(--graphite);
  background: var(--ivory);
  line-height: 1.65;
  font-weight: 400;
  overflow-x: hidden;
}

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

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

button {
  font-family: inherit;
  cursor: pointer;
  border: 0;
  background: none;
}

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

.kicker {
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--taupe);
  font-weight: 500;
}

h1,
h2,
.display {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.08;
  color: var(--carbon);
}

.italic {
  font-style: italic;
  color: #c4a39a;
}

/* Header */
.nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 28px;
  transition: background 0.35s var(--ease), border-color 0.35s var(--ease);
  border-bottom: 1px solid transparent;
}

.nav.scrolled {
  background: rgba(247, 245, 242, 0.92);
  backdrop-filter: blur(16px);
  border-bottom-color: var(--sand);
}

.brand-lockup {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-lockup img {
  height: 58px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid var(--graphite);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  transition: 0.3s var(--ease);
}

.btn:hover {
  background: var(--graphite);
  color: var(--ivory);
}

.btn-solid {
  background: var(--graphite);
  color: var(--ivory);
  border-color: var(--graphite);
}

.btn-solid:hover {
  background: var(--carbon);
}

.btn-light {
  border-color: var(--ivory);
  color: var(--ivory);
}

.btn-light:hover {
  background: var(--ivory);
  color: var(--carbon);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  position: relative;
}

.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
  position: absolute;
  width: 22px;
  height: 1.5px;
  background: var(--graphite);
  left: 10px;
}

.menu-toggle span {
  top: 20px;
}

.menu-toggle span::before,
.menu-toggle span::after {
  content: "";
}

.menu-toggle span::before {
  top: -6px;
}

.menu-toggle span::after {
  top: 6px;
}

/* Hero */
.hero {
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) 1.2fr;
  background: var(--ivory);
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 140px 48px 72px;
  position: relative;
}

.hero-copy::after {
  content: "";
  position: absolute;
  right: 0;
  top: 12%;
  bottom: 12%;
  width: 1px;
  background: var(--sand);
}

.star-mark {
  width: 42px;
  height: 42px;
  color: var(--taupe);
  margin-bottom: 28px;
}

.hero h1 {
  font-size: clamp(3rem, 6vw, 5.4rem);
  max-width: 8ch;
  margin: 16px 0 24px;
}

.hero p.lead {
  max-width: 36ch;
  color: #5d534c;
  margin-bottom: 36px;
}

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

.hero-visual {
  position: relative;
  overflow: hidden;
  cursor: zoom-in;
  width: 100%;
  height: 100%;
  padding: 0;
  display: block;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.06);
  transition: transform 1.2s var(--ease);
}

.hero-visual:hover img {
  transform: scale(1.12);
}

.hero-hint {
  position: absolute;
  left: 24px;
  bottom: 24px;
  background: rgba(247, 245, 242, 0.88);
  padding: 10px 14px;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--graphite);
}

/* Essence */
.essence {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 72px;
  padding: 120px 0;
  align-items: center;
}

.essence h2 {
  font-size: clamp(2.4rem, 4vw, 3.8rem);
  margin: 12px 0 24px;
}

.essence p {
  color: #5d534c;
  max-width: 52ch;
}

.essence-photo,
.featured-photo {
  position: relative;
  cursor: zoom-in;
  width: 100%;
  padding: 0;
  display: block;
}

.essence-photo img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}

.photo-frame {
  position: relative;
}

.photo-frame::after {
  content: "";
  position: absolute;
  inset: 16px -16px -16px 16px;
  border: 1px solid var(--sand);
  pointer-events: none;
}

/* Featured laser */
.featured {
  background: var(--white);
  padding: 100px 0;
}

.featured-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 56px;
  align-items: center;
}

.featured-photo img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.featured h2 {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  margin: 12px 0 18px;
}

.pill {
  display: inline-block;
  background: var(--calcite);
  color: var(--graphite);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 6px 12px;
  margin-bottom: 8px;
}

.facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin: 28px 0 32px;
}

.fact {
  border-top: 1px solid var(--sand);
  padding-top: 14px;
}

.fact strong {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.35rem;
  font-weight: 500;
}

.fact span {
  font-size: 0.85rem;
  color: #6d645c;
}

/* Services */
.services {
  padding: 110px 0 80px;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  margin-bottom: 48px;
}

.section-head h2 {
  font-size: clamp(2.4rem, 4vw, 3.6rem);
}

.mosaic {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
}

.card {
  position: relative;
  overflow: hidden;
  background: var(--white);
  min-height: 280px;
  cursor: pointer;
}

.card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease), filter 0.8s var(--ease);
}

.card:hover img {
  transform: scale(1.06);
  filter: saturate(1.05);
}

.card.span-7 {
  grid-column: span 7;
  min-height: 420px;
}

.card.span-5 {
  grid-column: span 5;
}

.card.span-4 {
  grid-column: span 4;
  min-height: 340px;
}

.card.span-8 {
  grid-column: span 8;
}

.card-copy {
  position: absolute;
  inset: auto 0 0;
  padding: 24px;
  background: linear-gradient(transparent, rgba(26, 26, 26, 0.72));
  color: var(--ivory);
}

.card-copy h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.85rem;
  font-weight: 400;
}

.card-copy p {
  font-size: 0.92rem;
  opacity: 0.9;
}

.subservices {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.chip {
  border: 1px solid rgba(247, 245, 242, 0.45);
  padding: 4px 10px;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* Interactive clinic */
.clinic {
  padding: 40px 0 120px;
}

.explorer {
  display: grid;
  gap: 28px;
  justify-items: center;
}

.hotspot-stage {
  position: relative;
  overflow: hidden;
  background: #111;
  min-height: 560px;
  cursor: zoom-in;
  width: 100%;
  padding: 0;
  display: block;
}

.hotspot-stage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  user-select: none;
  pointer-events: none;
}

.explorer-cta {
  min-width: 240px;
}

.socials {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 14px;
}

.socials a {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sand);
}

.socials a:hover {
  color: var(--ivory);
}

/* Values */
.values {
  background: #efe8e1;
  padding: 90px 0;
}

.values h2 {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  margin: 10px 0 40px;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.value {
  background: var(--ivory);
  padding: 28px 24px;
  min-height: 180px;
}

.value strong {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.6rem;
  font-weight: 500;
  margin-bottom: 8px;
}

.value p {
  font-size: 0.92rem;
  color: #5d534c;
}

/* CTA */
.cta {
  padding: 110px 0;
  text-align: center;
}

.cta h2 {
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  max-width: 14ch;
  margin: 12px auto 18px;
}

.cta p {
  max-width: 46ch;
  margin: 0 auto 32px;
  color: #5d534c;
}

.phone {
  display: block;
  margin-top: 18px;
  letter-spacing: 0.12em;
  color: var(--taupe);
}

/* Footer */
.footer {
  background: var(--carbon);
  color: var(--sand);
  padding: 48px 0 28px;
}

.footer-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding-bottom: 28px;
  border-bottom: 1px solid #333;
}

.footer img {
  height: 72px;
}

.footer small {
  display: block;
  margin-top: 18px;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* WhatsApp FAB */
.wa {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 50;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #2a2a2a;
  color: var(--ivory);
  display: grid;
  place-items: center;
  border: 1px solid var(--taupe);
}

.wa:hover {
  background: #128c7e;
  border-color: #128c7e;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(26, 26, 26, 0.92);
  z-index: 80;
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.lightbox.open {
  display: flex;
}

.lightbox-stage {
  width: min(1200px, 92vw);
  height: min(80vh, 820px);
  overflow: hidden;
  cursor: grab;
  position: relative;
}

.lightbox-stage img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform-origin: center center;
  user-select: none;
}

.lightbox-ui {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-top: 16px;
  color: var(--ivory);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.lightbox button,
.zoom-btn {
  color: var(--ivory);
  border: 1px solid rgba(247, 245, 242, 0.35);
  min-width: 42px;
  height: 42px;
}

.close-x {
  position: absolute;
  top: 18px;
  right: 18px;
  color: var(--ivory);
  font-size: 1.6rem;
  width: 48px;
  height: 48px;
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  animation: rise 0.9s var(--ease) forwards;
}

@keyframes rise {
  to {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 980px) {
  .hero,
  .essence,
  .featured-grid,
  .explorer,
  .value-grid,
  .footer-row {
    grid-template-columns: 1fr;
  }

  .nav-links {
    position: fixed;
    inset: 0;
    background: var(--ivory);
    flex-direction: column;
    justify-content: center;
    display: none;
  }

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

  .menu-toggle {
    display: block;
    z-index: 60;
  }

  .hero {
    min-height: auto;
  }

  .hero-copy {
    padding: 120px 24px 40px;
  }

  .hero-copy::after {
    display: none;
  }

  .hero-visual {
    min-height: 62vh;
  }

  .card.span-7,
  .card.span-5,
  .card.span-4,
  .card.span-8 {
    grid-column: span 12;
    min-height: 280px;
  }

  .section-head,
  .footer-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .hotspot-stage {
    min-height: 420px;
  }

  .brand-lockup img {
    height: 48px;
  }

  .kicker {
    letter-spacing: 0.14em;
    font-size: 0.64rem;
  }
}
