:root {
  --ink: #111313;
  --ink-soft: #2b302f;
  --paper: #fbfaf7;
  --porcelain: #f4f2ed;
  --mist: #dfe7e1;
  --sage: #667a6d;
  --sage-dark: #33483d;
  --champagne: #c3a267;
  --clay: #a26853;
  --garnet: #7b2931;
  --line: rgba(17, 19, 19, 0.13);
  --shadow: 0 24px 70px rgba(17, 19, 19, 0.16);
  --serif: "Playfair Display", Georgia, serif;
  --sans: "Inter", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
}

body.nav-open {
  overflow: hidden;
}

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

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

button {
  font: inherit;
}

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

.skip-link:focus {
  z-index: 1000;
  top: 12px;
  left: 12px;
  width: auto;
  height: auto;
  padding: 10px 14px;
  clip: auto;
  color: var(--paper);
  background: var(--ink);
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 4vw, 56px);
  color: var(--paper);
  transition: background 220ms ease, color 220ms ease, box-shadow 220ms ease, padding 220ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  padding-block: 12px;
  color: var(--ink);
  background: rgba(251, 250, 247, 0.92);
  box-shadow: 0 10px 30px rgba(17, 19, 19, 0.08);
  backdrop-filter: blur(18px);
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 220px;
}

.brand-symbol {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 1.45rem;
  line-height: 1;
}

.brand-name,
.brand-line {
  display: block;
}

.brand-name {
  font-weight: 800;
  letter-spacing: 0;
}

.brand-line {
  margin-top: 1px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  color: currentColor;
  opacity: 0.72;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 0.9rem;
  font-weight: 700;
}

.site-nav a:not(.nav-action) {
  opacity: 0.86;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  opacity: 1;
}

.nav-action {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid currentColor;
  border-radius: 6px;
}

.nav-action svg,
.button svg,
.text-link svg,
.trust-strip svg,
.booking-address svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 6px;
  color: inherit;
  background: transparent;
}

.hero {
  position: relative;
  display: grid;
  min-height: 88vh;
  overflow: hidden;
  color: var(--paper);
  background: var(--ink);
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: center;
  filter: saturate(0.96) contrast(1.03);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(12, 16, 14, 0.94) 0%, rgba(12, 16, 14, 0.7) 46%, rgba(12, 16, 14, 0.34) 100%),
    linear-gradient(0deg, rgba(12, 16, 14, 0.46) 0%, rgba(12, 16, 14, 0.1) 54%);
}

.hero-person {
  position: absolute;
  z-index: 2;
  right: clamp(32px, 5vw, 78px);
  bottom: clamp(48px, 7vw, 92px);
  width: min(290px, 23vw);
  margin: 0;
  color: var(--paper);
}

.hero-person img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  object-position: center;
  border: 1px solid rgba(251, 250, 247, 0.42);
  border-radius: 50%;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.34);
}

.hero-person div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 16px;
  padding: 12px 0;
  border-top: 1px solid rgba(251, 250, 247, 0.34);
  border-bottom: 1px solid rgba(251, 250, 247, 0.34);
}

.hero-person span {
  color: var(--champagne);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-person strong {
  font-size: 0.92rem;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(760px, calc(100% - 40px));
  min-width: 0;
  margin: auto 0;
  padding: 150px 0 76px clamp(20px, 6vw, 84px);
}

.eyebrow,
.section-kicker {
  margin: 0 0 16px;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow {
  color: var(--champagne);
}

.hero h1,
.section h2,
.method-content h2,
.social-copy h2,
.booking-copy h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 720px;
  font-size: clamp(4rem, 10vw, 8.8rem);
}

.hero-copy {
  max-width: 650px;
  margin: 28px 0 0;
  color: rgba(251, 250, 247, 0.84);
  font-size: clamp(1.06rem, 2vw, 1.32rem);
  overflow-wrap: break-word;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-size: 0.92rem;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.button-primary {
  color: var(--ink);
  background: var(--champagne);
  box-shadow: 0 18px 42px rgba(195, 162, 103, 0.24);
}

.button-secondary {
  color: var(--paper);
  border-color: rgba(251, 250, 247, 0.62);
  background: rgba(251, 250, 247, 0.08);
}

.button-secondary.dark {
  color: var(--paper);
  border-color: rgba(251, 250, 247, 0.34);
}

.button-dark {
  color: var(--paper);
  background: var(--ink);
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(120px, 1fr));
  width: min(650px, 100%);
  margin: 44px 0 0;
  border-top: 1px solid rgba(251, 250, 247, 0.22);
  border-bottom: 1px solid rgba(251, 250, 247, 0.22);
}

.hero-metrics div {
  min-height: 96px;
  padding: 20px 18px;
  border-right: 1px solid rgba(251, 250, 247, 0.18);
}

.hero-metrics div:last-child {
  border-right: 0;
}

.hero-metrics dt {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 700;
}

.hero-metrics dd {
  margin: 5px 0 0;
  color: rgba(251, 250, 247, 0.7);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.trust-strip div {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 74px;
  padding: 16px;
  border-right: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 0.84rem;
  font-weight: 800;
  text-transform: uppercase;
}

.trust-strip div:last-child {
  border-right: 0;
}

.section {
  padding: clamp(72px, 10vw, 124px) clamp(20px, 6vw, 84px);
}

.section-kicker {
  color: var(--sage-dark);
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: clamp(28px, 6vw, 88px);
  align-items: end;
}

.intro-section h2,
.services-section h2,
.standard-section h2,
.method-content h2,
.social-copy h2,
.booking-copy h2 {
  font-size: clamp(2.35rem, 5vw, 5.2rem);
}

.intro-grid p,
.esthetician-copy p,
.method-content p,
.social-copy p,
.booking-copy p {
  margin: 0;
  color: rgba(17, 19, 19, 0.72);
  font-size: clamp(1rem, 1.5vw, 1.18rem);
}

.esthetician-feature {
  display: grid;
  grid-template-columns: minmax(300px, 0.92fr) minmax(320px, 1.08fr);
  gap: clamp(28px, 7vw, 96px);
  align-items: center;
  padding: clamp(72px, 10vw, 124px) clamp(20px, 6vw, 84px);
  background:
    linear-gradient(90deg, rgba(223, 231, 225, 0.55), rgba(251, 250, 247, 0.98)),
    var(--paper);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.esthetician-image-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
  background: var(--ink);
}

.esthetician-image-wrap::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(17, 19, 19, 0.22), transparent 46%);
  content: "";
  pointer-events: none;
}

.esthetician-image-wrap img {
  width: 100%;
  height: min(70vw, 680px);
  min-height: 520px;
  object-fit: cover;
  object-position: center 42%;
  transform: scale(1.03);
}

.esthetician-copy h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.35rem, 5vw, 5.2rem);
  font-weight: 700;
  line-height: 0.98;
}

.esthetician-copy p {
  margin-top: 24px;
}

.esthetician-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
}

.esthetician-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid rgba(51, 72, 61, 0.24);
  border-radius: 999px;
  color: var(--sage-dark);
  background: rgba(255, 255, 255, 0.54);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: clamp(28px, 5vw, 54px);
}

.section-heading.compact {
  max-width: 860px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--sage-dark);
  font-weight: 800;
}

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

.service-card {
  min-height: 365px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.56);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(51, 72, 61, 0.28);
  box-shadow: 0 22px 56px rgba(17, 19, 19, 0.09);
}

.service-icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 50%;
  color: var(--paper);
  background: var(--sage-dark);
}

.service-number {
  margin: 76px 0 10px;
  color: var(--clay);
  font-size: 0.78rem;
  font-weight: 900;
}

.service-card h3,
.standard-grid h3 {
  margin: 0;
  font-size: 1.1rem;
}

.service-card p:last-child,
.standard-grid p {
  margin: 16px 0 0;
  color: rgba(17, 19, 19, 0.68);
}

.method-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.92fr) minmax(320px, 1.08fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: center;
  padding: clamp(72px, 10vw, 124px) clamp(20px, 6vw, 84px);
  background: var(--porcelain);
}

.method-media {
  min-height: 620px;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.method-media img {
  width: 100%;
  height: 100%;
  min-height: 620px;
  object-fit: cover;
  object-position: center;
}

.method-content p {
  margin-top: 24px;
}

.method-list {
  display: grid;
  gap: 14px;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
  counter-reset: method;
}

.method-list li {
  position: relative;
  min-height: 92px;
  padding: 22px 24px 22px 74px;
  border: 1px solid rgba(17, 19, 19, 0.12);
  border-radius: 8px;
  background: rgba(251, 250, 247, 0.72);
}

.method-list li::before {
  position: absolute;
  top: 20px;
  left: 24px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  color: var(--paper);
  background: var(--garnet);
  counter-increment: method;
  content: counter(method);
  display: grid;
  place-items: center;
  font-size: 0.84rem;
  font-weight: 900;
}

.method-list span {
  display: block;
  margin-bottom: 3px;
  font-weight: 900;
}

.standard-section {
  background: var(--ink);
  color: var(--paper);
}

.standard-section .section-kicker,
.standard-section .section-heading {
  color: var(--champagne);
}

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

.standard-grid article {
  overflow: hidden;
  border: 1px solid rgba(251, 250, 247, 0.14);
  border-radius: 8px;
  background: rgba(251, 250, 247, 0.06);
}

.standard-grid img {
  width: 100%;
  height: 340px;
  object-fit: cover;
}

.standard-grid article:nth-child(2) img {
  object-position: center 34%;
}

.standard-grid article:nth-child(3) img {
  object-position: center;
}

.standard-grid h3,
.standard-grid p {
  padding-inline: 24px;
}

.standard-grid h3 {
  margin-top: 24px;
}

.standard-grid p {
  margin-bottom: 28px;
  color: rgba(251, 250, 247, 0.72);
}

.social-section {
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(28px, 7vw, 96px);
  align-items: center;
  padding: clamp(72px, 10vw, 124px) clamp(20px, 6vw, 84px);
  background:
    radial-gradient(circle at top left, rgba(102, 122, 109, 0.16), transparent 34%),
    var(--paper);
}

.social-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow);
}

.social-portrait {
  width: 100%;
  height: 430px;
  object-fit: cover;
  object-position: center 36%;
  border-bottom: 1px solid var(--line);
}

.profile-card {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 20px;
  border-bottom: 1px solid var(--line);
}

.profile-card img {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  object-fit: cover;
}

.profile-card p {
  margin: 0;
  color: rgba(17, 19, 19, 0.7);
}

.profile-card .handle {
  color: var(--ink);
  font-size: 1.05rem;
  font-weight: 900;
}

.social-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.social-stats div {
  min-height: 118px;
  padding: 20px;
  border-right: 1px solid var(--line);
  color: rgba(17, 19, 19, 0.64);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.social-stats div:last-child {
  border-right: 0;
}

.social-stats span {
  display: block;
  margin-bottom: 10px;
  color: var(--sage-dark);
  font-family: var(--serif);
  font-size: clamp(1.55rem, 3vw, 2.2rem);
  font-weight: 700;
  text-transform: none;
}

.social-copy .button {
  margin-top: 30px;
}

.booking-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 32px;
  align-items: end;
  padding: clamp(72px, 10vw, 120px) clamp(20px, 6vw, 84px);
  color: var(--paper);
  background:
    linear-gradient(135deg, rgba(17, 19, 19, 0.96), rgba(51, 72, 61, 0.92)),
    var(--ink);
}

.booking-copy {
  max-width: 740px;
}

.booking-copy p {
  margin-top: 22px;
  color: rgba(251, 250, 247, 0.72);
}

.booking-section .section-kicker {
  color: var(--champagne);
}

.booking-address {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 10px 0 0;
  color: rgba(251, 250, 247, 0.72);
  font-style: normal;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(20px, 6vw, 84px);
  color: rgba(17, 19, 19, 0.66);
  background: var(--paper);
  border-top: 1px solid var(--line);
}

.site-footer p {
  margin: 0;
  color: var(--ink);
  font-weight: 900;
}

.site-footer div {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 0.9rem;
  font-weight: 700;
}

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

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

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

  .service-card {
    min-height: 300px;
  }

  .service-number {
    margin-top: 48px;
  }

  .method-section,
  .esthetician-feature,
  .social-section,
  .booking-section {
    grid-template-columns: 1fr;
  }

  .booking-actions {
    margin-top: 0;
  }
}

@media (max-width: 820px) {
  .site-header {
    padding-inline: 18px;
  }

  .nav-toggle {
    display: grid;
  }

  .site-nav {
    position: fixed;
    top: 68px;
    right: 18px;
    left: 18px;
    display: grid;
    gap: 0;
    padding: 8px;
    color: var(--ink);
    background: rgba(251, 250, 247, 0.97);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    min-height: 48px;
    padding: 14px 12px;
    border-radius: 6px;
  }

  .site-nav a:hover,
  .site-nav a:focus-visible {
    background: var(--porcelain);
  }

  .nav-action {
    justify-content: center;
    margin-top: 6px;
    background: var(--ink);
    color: var(--paper);
  }

  .hero {
    min-height: 82vh;
  }

  .hero-person {
    display: none;
  }

  .hero-image {
    object-position: 58% center;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(12, 16, 14, 0.92) 0%, rgba(12, 16, 14, 0.86) 64%, rgba(12, 16, 14, 0.52) 100%),
      linear-gradient(0deg, rgba(12, 16, 14, 0.44) 0%, rgba(12, 16, 14, 0.02) 54%);
  }

  .hero-content {
    width: min(calc(100% - 36px), 640px);
    padding: 124px 0 54px 18px;
  }

  .hero h1 {
    font-size: clamp(3.55rem, 14vw, 6.2rem);
  }

  .hero-metrics,
  .trust-strip,
  .intro-grid,
  .standard-grid {
    grid-template-columns: 1fr;
  }

  .hero-metrics div,
  .trust-strip div {
    border-right: 0;
    border-bottom: 1px solid rgba(17, 19, 19, 0.13);
  }

  .hero-metrics div {
    border-bottom-color: rgba(251, 250, 247, 0.18);
  }

  .hero-metrics div:last-child,
  .trust-strip div:last-child {
    border-bottom: 0;
  }

  .section-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .method-media,
  .method-media img {
    min-height: 440px;
  }

  .esthetician-image-wrap img {
    height: auto;
    min-height: 0;
  }

  .social-stats {
    grid-template-columns: 1fr;
  }

  .social-portrait {
    height: auto;
  }

  .social-stats div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .social-stats div:last-child {
    border-bottom: 0;
  }

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

@media (max-width: 580px) {
  .brand-mark {
    min-width: 0;
  }

  .brand-line {
    display: none;
  }

  .hero-actions,
  .booking-actions {
    display: grid;
  }

  .hero {
    min-height: 86svh;
  }

  .hero-content {
    width: auto;
    padding: 110px 18px 40px;
  }

  .hero-copy {
    font-size: 1rem;
    max-width: 31ch;
  }

  .hero-actions {
    width: calc(100vw - 36px);
    max-width: calc(100vw - 36px);
  }

  .hero-metrics {
    display: none;
  }

  .button {
    width: 100%;
  }

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

  .profile-card {
    align-items: flex-start;
    flex-direction: column;
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}
