:root {
  --ink: #0d0b09;
  --espresso: #1d100b;
  --brown: #55281b;
  --copper: #cf6139;
  --gold: #f1b353;
  --cream: #fbf2df;
  --milk: #fff9ea;
  --muted: #9f8e7b;
  --line: rgba(255, 249, 234, .22);
  --radius-xl: 34px;
  --radius-md: 18px;
  --max: 1100px;
  --page-pad: clamp(48px, 7vw, 128px);
  --display: "Archivo Black", Impact, sans-serif;
  --body: "Manrope", sans-serif;
}

* { box-sizing: border-box; }
*::before,
*::after { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  background: var(--cream);
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--body);
  text-rendering: optimizeLegibility;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}
@supports (overflow-x: clip) {
  html,
  body {
    overflow-x: clip;
  }
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }
.site-shell,
main,
section,
.footer {
  max-width: 100%;
}
.preloader {
  display: none;
}
.js body.is-loading {
  overflow: hidden;
}
.js body.is-loading .site-shell,
.js body.is-loading main,
.js body.is-loading .footer {
  visibility: hidden;
}
.js .preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  z-index: 9999;
  display: grid;
  place-items: center;
  justify-items: center;
  background:
    linear-gradient(90deg, rgba(255, 249, 234, .025) 1px, transparent 1px),
    linear-gradient(180deg, #0d0b09, #1d100b);
  background-size: 86px 86px, auto;
  color: var(--milk);
  overflow: hidden;
  transition: opacity .7s ease, visibility .7s ease;
}
.js .preloader::before,
.js .preloader::after {
  content: "";
  position: absolute;
  width: min(72vw, 540px);
  aspect-ratio: 1;
  border-radius: 999px;
  pointer-events: none;
}
.js .preloader::before {
  right: -14vw;
  top: -18vw;
  background: radial-gradient(circle, rgba(241, 179, 83, .22), transparent 66%);
  animation: preloader-ambient 3.2s ease-in-out infinite alternate;
}
.js .preloader::after {
  left: -18vw;
  bottom: -20vw;
  background: radial-gradient(circle, rgba(207, 97, 57, .25), transparent 67%);
  animation: preloader-ambient 3.8s ease-in-out infinite alternate-reverse;
}
.js .preloader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.preloader-inner {
  position: relative;
  display: grid;
  place-items: center;
  gap: 8px;
  width: clamp(260px, 52vmin, 520px);
  aspect-ratio: 1;
  text-align: center;
}
.preloader-ring {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.preloader-ring-svg {
  width: 100%;
  height: 100%;
  animation: preloader-ring-rotate 1.35s ease-in-out infinite;
}
.preloader-ring-track,
.preloader-ring-path {
  fill: none;
  stroke-width: 1.8;
  transform-origin: center;
}
.preloader-ring-track {
  stroke: rgba(255, 249, 234, .18);
}
.preloader-ring-path {
  stroke: var(--gold);
  stroke-linecap: round;
  stroke-dasharray: 339;
  stroke-dashoffset: 339;
  filter: drop-shadow(0 0 14px rgba(241, 179, 83, .45));
  transition: stroke-dashoffset .22s ease;
}
.preloader-logo-stage {
  position: relative;
  display: grid;
  place-items: center;
  z-index: 2;
  width: clamp(88px, 19vw, 130px);
  height: clamp(88px, 19vw, 130px);
  animation: preloader-logo-in .7s cubic-bezier(.2,.7,.2,1) both;
}
.preloader-logo {
  position: relative;
  z-index: 2;
  width: clamp(78px, 17vw, 118px);
  height: clamp(78px, 17vw, 118px);
  object-fit: cover;
  border: 7px solid rgba(255, 249, 234, .9);
  border-radius: 28px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, .35);
}
.preloader strong {
  position: relative;
  z-index: 2;
  font-family: var(--display);
  max-width: 82%;
  font-size: clamp(24px, 5vw, 40px);
  letter-spacing: -.04em;
  line-height: .9;
  white-space: nowrap;
  text-transform: uppercase;
  animation: preloader-text-in .55s ease .25s both;
}
.preloader p {
  position: relative;
  z-index: 2;
  margin: -8px 0 0;
  color: rgba(255, 249, 234, .72);
  max-width: 78%;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .1em;
  white-space: nowrap;
  text-transform: uppercase;
  animation: preloader-text-in .55s ease .38s both;
}
@keyframes preloader-ring-rotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(270deg); }
}
@keyframes preloader-logo-in {
  from { opacity: 0; transform: translateY(18px) scale(.94); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes preloader-text-in {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes scissors-cut {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(-18deg) scale(1); }
  45% { transform: translate3d(-9px, -4px, 0) rotate(12deg) scale(1.05); }
  60% { transform: translate3d(-4px, 2px, 0) rotate(-7deg) scale(.98); }
}
@keyframes preloader-ambient {
  from { transform: translate3d(0, 0, 0) scale(.94); opacity: .75; }
  to { transform: translate3d(18px, -10px, 0) scale(1.05); opacity: 1; }
}
.skip-link {
  position: fixed;
  left: 12px;
  top: 12px;
  z-index: 99;
  transform: translateY(-140%);
  background: var(--gold);
  color: var(--ink);
  padding: 10px 14px;
  border-radius: 999px;
}
.skip-link:focus { transform: translateY(0); }

.site-shell {
  width: 100%;
  margin: 0;
  background: var(--ink);
  border-radius: 0;
  overflow: hidden;
  box-shadow: none;
}
.nav {
  position: relative;
  z-index: 5;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 42px;
  color: var(--milk);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  line-height: 1;
  letter-spacing: .02em;
}
.brand-logo {
  width: 42px;
  height: 42px;
  object-fit: cover;
  border: 2px solid rgba(255, 249, 234, .18);
  border-radius: 12px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, .2);
}
.brand-text {
  display: grid;
  gap: 4px;
}
.brand-text strong {
  display: block;
  font-family: var(--display);
  font-size: 21px;
}
.brand-text small {
  color: var(--muted);
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.nav-links { display: flex; align-items: center; gap: 26px; font-size: 12px; font-weight: 800; }
.nav-links a { opacity: .82; transition: opacity .2s ease, color .2s ease; }
.nav-links a:hover { opacity: 1; color: var(--gold); }
.nav-language-switcher { display: none; }
.nav-cta {
  opacity: 1 !important;
  color: var(--ink);
  background: var(--milk);
  border-radius: 999px;
  padding: 12px 18px;
  text-transform: uppercase;
}
.menu-toggle { display: none; }

.hero {
  position: relative;
  min-height: 630px;
  display: grid;
  grid-template-columns: minmax(420px, .9fr) minmax(330px, .7fr);
  align-items: center;
  padding: 0 var(--page-pad) 76px;
  color: var(--milk);
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; overflow: hidden; }
.hero-bg > img:first-child {
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 38%;
  opacity: .58;
  filter: saturate(.9) contrast(1.06);
  transform: scale(1.02);
}
.hero-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 0 85%, rgba(48, 71, 28, .24), transparent 36%),
    linear-gradient(90deg, #0b0908 0%, rgba(13, 11, 9, .88) 36%, rgba(61, 25, 16, .44) 68%, rgba(61, 25, 16, .14) 100%);
  z-index: 1;
}
.hero-copy { position: relative; z-index: 2; max-width: 520px; align-self: center; }
.eyebrow {
  margin: 0 0 18px;
  color: var(--gold);
  font-size: 11px;
  line-height: 1;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .14em;
}
.hero h1, .section-heading h2, .intro h2, .reviews h2, .booking-card h2, .footer h2 {
  font-family: var(--display);
  letter-spacing: -.06em;
  line-height: .9;
}
.hero h1 { margin: 0; font-size: clamp(52px, 8vw, 82px); max-width: 560px; }
.lead { max-width: 510px; margin: 24px 0 0; color: rgba(255, 249, 234, .75); font-size: 16px; line-height: 1.75; }
.actions { display: flex; gap: 14px; margin-top: 28px; flex-wrap: wrap; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 45px;
  border-radius: 999px;
  padding: 0 18px;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  transition: transform .22s ease, background .22s ease, color .22s ease;
}
.button:hover { transform: translateY(-2px); }
.button-gold { background: var(--gold); color: var(--ink); }
.button-ghost { background: var(--copper); color: white; }
.vertical-tag {
  position: absolute;
  z-index: 3;
  left: 40px;
  top: 290px;
  writing-mode: vertical-rl;
  color: rgba(255,255,255,.7);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .28em;
  text-transform: uppercase;
}
.vertical-tag::before {
  content: "";
  display: block;
  width: 18px;
  height: 74px;
  margin: 0 auto 12px;
  border-radius: 999px;
  background: var(--copper);
}
.review-chip {
  position: relative;
  z-index: 3;
  align-self: end;
  justify-self: start;
  width: 230px;
  background: var(--milk);
  color: var(--ink);
  border-radius: 16px;
  padding: 18px 20px;
  box-shadow: 0 18px 42px rgba(0, 0, 0, .24);
}
.review-chip strong { display: block; margin: 3px 0; font-size: 13px; }
.review-chip span { display: block; color: #8b7d6e; font-size: 10px; line-height: 1.4; }
.stars { color: var(--gold); letter-spacing: .12em; font-size: 12px; }
.orb {
  position: absolute;
  display: block;
  border-radius: 999px;
  pointer-events: none;
  mix-blend-mode: screen;
}
.orb-hero-one { z-index: 2; width: 360px; height: 360px; right: 90px; top: -105px; background: rgba(223, 127, 83, .34); }
.orb-hero-two { z-index: 2; width: 260px; height: 260px; right: 50px; top: 150px; background: rgba(255, 225, 180, .12); }
.line-field {
  position: absolute;
  z-index: 2;
  right: 110px;
  top: -40px;
  width: 260px;
  height: 190px;
  background: repeating-linear-gradient(90deg, rgba(241,179,83,.35) 0 1px, transparent 1px 22px);
  transform: rotate(9deg);
  opacity: .75;
}
.hero-scissors,
.hero-hair-line {
  position: absolute;
  z-index: 3;
  pointer-events: none;
  user-select: none;
}
.hero-scissors {
  width: clamp(108px, 13vw, 178px);
  right: clamp(18px, 8vw, 112px);
  bottom: clamp(88px, 16vw, 160px);
  opacity: .86;
  filter: drop-shadow(0 22px 34px rgba(0, 0, 0, .32));
  animation: hero-scissors-drift 4.8s ease-in-out infinite;
}
.hero-hair-line {
  width: clamp(180px, 25vw, 360px);
  right: clamp(28px, 11vw, 170px);
  bottom: clamp(58px, 10vw, 110px);
  opacity: .72;
  transform: rotate(-8deg);
  animation: hair-line-draw 2.8s ease-in-out infinite alternate;
}
@keyframes hero-scissors-drift {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(-18deg); }
  50% { transform: translate3d(-18px, -16px, 0) rotate(10deg); }
}
@keyframes hair-line-draw {
  from { clip-path: inset(0 34% 0 0); transform: rotate(-8deg) translateX(0); }
  to { clip-path: inset(0 0 0 0); transform: rotate(-8deg) translateX(-10px); }
}

section { width: 100%; margin: 0; }
.section-cream { background: var(--cream); }
.section-dark { background: #1a0d08; color: var(--milk); }
.intro {
  position: relative;
  min-height: 520px;
  display: grid;
  grid-template-columns: .95fr 1fr;
  gap: 60px;
  padding: 86px var(--page-pad) 76px;
  overflow: hidden;
}
.watermark {
  position: absolute;
  left: 65px;
  top: 45px;
  color: rgba(94, 52, 31, .10);
  font-family: var(--display);
  font-size: clamp(88px, 15vw, 155px);
  letter-spacing: -.08em;
  line-height: .8;
}
.intro-copy { position: relative; z-index: 2; max-width: 430px; align-self: center; }
.intro h2 { margin: 0; font-size: clamp(34px, 5vw, 52px); }
.intro p:not(.eyebrow) { color: #6e5b4a; line-height: 1.75; margin-top: 22px; }
.photo-pair { position: relative; z-index: 2; display: grid; grid-template-columns: .9fr 1fr; gap: 18px; align-items: end; }
.photo-pair figure, .service-photo, .gallery-grid button {
  margin: 0;
  overflow: hidden;
  background: #e8d2bf;
  border: 1px dashed rgba(207, 97, 57, .45);
}
.photo-pair img, .service-photo img, .gallery-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s cubic-bezier(.2,.7,.2,1); }
.photo-pair figure:hover img, .service-photo:hover img, .gallery-grid button:hover img { transform: scale(1.07); }
.photo-tall { height: 330px; border-radius: 24px; }
.photo-square { height: 250px; border-radius: 20px; }
.quote-bubble {
  position: absolute;
  z-index: 3;
  right: 135px;
  bottom: 70px;
  width: min(360px, calc(100% - 60px));
  margin: 0;
  padding: 22px 28px;
  background: var(--ink);
  color: var(--milk);
  border-radius: 20px;
  font-weight: 800;
  line-height: 1.35;
  box-shadow: 0 16px 35px rgba(0, 0, 0, .18);
}
.quote-bubble::before { content: "!!"; color: var(--gold); margin-right: 12px; }

.services {
  position: relative;
  display: grid;
  grid-template-columns: .95fr 1.3fr;
  gap: 70px;
  padding: 86px var(--page-pad);
  overflow: hidden;
}
.section-heading { position: relative; z-index: 2; }
.section-heading h2 { margin: 0; font-size: clamp(36px, 5.4vw, 58px); max-width: 560px; }
.section-heading p:not(.eyebrow) { color: rgba(255, 249, 234, .68); line-height: 1.8; max-width: 500px; }
.service-photo {
  position: absolute;
  left: var(--page-pad);
  bottom: 80px;
  width: 360px;
  height: 230px;
  border: 0;
  border-radius: 20px;
}
.price-list { position: relative; z-index: 2; display: grid; gap: 0; align-self: center; }
.price-list article {
  position: relative;
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 18px;
  align-items: baseline;
  border-top: 1px solid rgba(255, 249, 234, .23);
  padding: 24px 0;
  overflow: hidden;
  transition: padding-left .28s ease, border-color .28s ease;
}
.price-list article:last-child { border-bottom: 1px solid rgba(255, 249, 234, .23); }
.price-list article::after {
  content: "";
  position: absolute;
  right: 8px;
  top: 50%;
  width: 52px;
  height: 52px;
  background: url("images/scissors-gold.svg") center / contain no-repeat;
  opacity: 0;
  transform: translate(34px, -50%) rotate(-24deg);
  transition: opacity .28s ease, transform .28s cubic-bezier(.2,.7,.2,1);
  pointer-events: none;
}
.price-list article:hover,
.price-list article:focus-within {
  padding-left: 12px;
  border-color: rgba(241, 179, 83, .7);
}
.price-list article:hover::after,
.price-list article:focus-within::after {
  opacity: .9;
  transform: translate(0, -50%) rotate(8deg);
}
.price-list span { color: var(--gold); font-family: var(--display); font-size: 12px; }
.price-list h3 { margin: 0; font-size: 20px; }
.price-list p { margin: 7px 0 0; color: rgba(255, 249, 234, .55); font-size: 12px; }
.orb-services { width: 300px; height: 300px; left: -65px; top: -40px; background: rgba(207, 97, 57, .35); }

.gallery { padding: 82px var(--page-pad); }
.gallery .section-heading h2, .reviews h2 { color: var(--ink); }
.gallery-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; margin-top: 36px; }
.gallery-grid button {
  border: 0;
  padding: 0;
  cursor: zoom-in;
  height: 260px;
  border-radius: 22px;
  background: #ead4c4;
}
.gallery-grid button:nth-child(1), .gallery-grid button:nth-child(6) { grid-column: span 2; height: 330px; }
.gallery-grid button:nth-child(2), .gallery-grid button:nth-child(3), .gallery-grid button:nth-child(4), .gallery-grid button:nth-child(5) { grid-column: span 2; }

.reviews {
  display: grid;
  grid-template-columns: .9fr 1.2fr;
  gap: 70px;
  padding: 86px var(--page-pad);
  background: linear-gradient(180deg, #fff2d4, var(--cream));
}
.reviews-copy p:not(.eyebrow) { color: #6d5d4d; line-height: 1.75; }
.rating-pill {
  display: inline-grid;
  grid-template-columns: auto auto;
  align-items: center;
  gap: 4px 14px;
  margin-top: 30px;
  padding: 18px 28px;
  min-width: 260px;
  background: var(--ink);
  color: var(--milk);
  border-radius: 18px;
}
.rating-pill strong { color: var(--gold); font-family: var(--display); font-size: 34px; line-height: 1; }
.rating-pill span { color: var(--gold); letter-spacing: .16em; }
.rating-pill small { grid-column: 2; color: rgba(255, 249, 234, .66); }
.review-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; align-items: center; }
.review-cards article {
  min-height: 178px;
  padding: 24px;
  background: rgba(255,255,255,.72);
  border-radius: 18px;
  box-shadow: 0 16px 30px rgba(86, 44, 22, .10);
  transition: transform .28s ease, box-shadow .28s ease;
}
.review-cards article:nth-child(2) { transform: translateY(50px); }
.review-cards article:hover { transform: translateY(-6px); box-shadow: 0 22px 45px rgba(86, 44, 22, .16); }
.review-cards article:nth-child(2):hover { transform: translateY(42px); }
.review-cards p { font-weight: 800; line-height: 1.45; margin: 16px 0; }
.review-cards span { color: var(--copper); font-size: 11px; font-weight: 900; }

.hours {
  position: relative;
  display: grid;
  grid-template-columns: .9fr 1fr;
  gap: 70px;
  padding: 88px var(--page-pad) 120px;
  overflow: hidden;
}
.hours-table { position: relative; z-index: 2; display: grid; gap: 11px; align-self: start; }
.hours-table div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 34px;
  padding: 0 18px;
  background: rgba(255,255,255,.11);
  border-radius: 999px;
  color: rgba(255, 249, 234, .86);
  font-size: 12px;
  font-weight: 800;
}
.hours-table strong { color: var(--gold); }
.hours-table iframe {
  width: 100%;
  height: 160px;
  margin-top: 14px;
  border: 0;
  border-radius: 18px;
  filter: sepia(.08) saturate(.9) brightness(.98);
  opacity: .96;
}
.booking-card {
  position: absolute;
  left: var(--page-pad);
  bottom: 45px;
  width: 430px;
  z-index: 3;
  background: var(--milk);
  color: var(--ink);
  border-radius: 22px;
  padding: 30px;
}
.booking-card h2 { margin: 0 0 10px; font-size: 28px; letter-spacing: -.04em; }
.booking-card p { color: #756452; margin: 0 0 18px; line-height: 1.55; }
.booking-actions { display: flex; flex-wrap: wrap; gap: 10px; }
.booking-actions a {
  background: var(--ink);
  color: var(--milk);
  border-radius: 999px;
  padding: 11px 14px;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}
.booking-actions a:nth-child(2) { background: var(--copper); }
.orb-hours { width: 320px; height: 320px; right: -40px; top: 90px; background: rgba(241, 179, 83, .27); }

.footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 180px 220px;
  gap: clamp(32px, 6vw, 76px);
  width: 100%;
  padding: 82px var(--page-pad) calc(82px + env(safe-area-inset-bottom, 0px));
  border-radius: 0;
  margin: 0;
  box-shadow: none;
  background: var(--cream);
}
.footer h2 { margin: 6px 0 0; font-size: 32px; letter-spacing: -.03em; }
.footer p { color: #6f5e4c; line-height: 1.7; margin: 0; max-width: 780px; }
.footer-company {
  display: grid;
  gap: 18px;
  align-content: start;
}
.footer-kicker {
  color: var(--copper) !important;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.footer-description {
  max-width: 560px !important;
  font-size: 14px;
}
.footer-info {
  display: grid;
  grid-template-columns: 104px minmax(0, 1fr);
  gap: 8px 18px;
  max-width: 640px;
  padding: 18px;
  border: 1px solid rgba(85, 40, 27, .14);
  border-radius: 20px;
  background: rgba(255, 249, 234, .58);
}
.footer-info span {
  color: #9a8068;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.footer-info strong {
  color: #4e3829;
  font-size: 13px;
  line-height: 1.45;
}
.footer-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-contact a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid rgba(85, 40, 27, .18);
  border-radius: 999px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 900;
}
.footer-contact a:first-child {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--milk);
}
.footer-contact a:nth-child(2) {
  background: var(--copper);
  border-color: var(--copper);
  color: white;
}
.footer nav { display: grid; align-content: start; gap: 12px; font-weight: 900; }
.footer a:hover { color: var(--copper); }
.language-switcher {
  display: grid;
  align-content: start;
  gap: 14px;
}
.language-switcher strong {
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.language-switcher div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.language-switcher a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 38px;
  border: 1px solid rgba(85, 40, 27, .18);
  border-radius: 999px;
  color: #6f5e4c;
  font-size: 12px;
  font-weight: 900;
}
.language-switcher a[aria-current="page"] {
  background: var(--ink);
  color: var(--milk);
  border-color: var(--ink);
}

.reveal, .reveal-now { opacity: 1; transform: none; }
.js .reveal {
  opacity: 0;
  transform: translateY(28px);
  will-change: opacity, transform;
}
.js .reveal-now {
  opacity: 0;
  transform: translateY(18px);
  animation: hero-rise .78s cubic-bezier(.2,.7,.2,1) both;
}
.js .reveal.is-visible {
  animation: rise .86s cubic-bezier(.2,.7,.2,1) var(--reveal-delay, 0ms) forwards;
}
.hero .review-chip.reveal-now { animation-delay: .14s; }
@keyframes rise {
  from { opacity: 0; transform: translateY(28px); filter: blur(8px); }
  to { opacity: 1; transform: translateY(0); filter: blur(0); }
}
@keyframes hero-rise {
  from { opacity: 0; transform: translateY(18px); filter: blur(8px); }
  to { opacity: 1; transform: translateY(0); filter: blur(0); }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: .01ms !important; }
  .reveal, .reveal-now { opacity: 1; transform: none; }
  .hero-scissors, .hero-hair-line { display: none !important; }
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: center;
  padding: 28px;
  background: rgba(8, 6, 5, .92);
}
.lightbox[hidden] { display: none; }
.lightbox img { max-height: 88vh; border-radius: 20px; box-shadow: 0 28px 80px rgba(0,0,0,.45); }
.lightbox button {
  position: fixed;
  top: 22px;
  right: 28px;
  border: 0;
  color: white;
  background: transparent;
  font-size: 54px;
  line-height: 1;
  cursor: pointer;
}

@media (max-width: 820px) {
  html,
  body {
    overflow-x: hidden;
  }
  .preloader-inner {
    width: clamp(248px, 76vw, 320px);
    aspect-ratio: 1;
  }
  .preloader-logo-stage {
    width: 84px;
    height: 84px;
  }
  .preloader-logo {
    width: 78px;
    height: 78px;
    border-radius: 22px;
    border-width: 5px;
  }
  .preloader strong { font-size: 24px; }
  .preloader p { font-size: 9px; letter-spacing: .08em; }
  .site-shell, section, .footer { width: 100%; max-width: none; margin-left: 0; margin-right: 0; }
  .site-shell { margin-top: 0; border-radius: 0; }
  .nav { height: 66px; padding: 0 20px; }
  .brand { gap: 10px; }
  .brand-logo { width: 36px; height: 36px; border-radius: 10px; }
  .brand-text strong { font-size: 18px; }
  .brand-text small { font-size: 8px; }
  .menu-toggle {
    display: inline-grid;
    gap: 6px;
    border: 0;
    background: var(--gold);
    border-radius: 999px;
    padding: 12px 14px;
  }
  .menu-toggle span { display: block; width: 18px; height: 2px; background: var(--ink); }
  .nav-links {
    position: absolute;
    left: 12px;
    right: 12px;
    top: 58px;
    display: grid;
    gap: 0;
    padding: 10px;
    background: rgba(13, 11, 9, .96);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 18px;
    transform: translateY(-10px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .2s ease, transform .2s ease;
  }
  .nav-links.is-open { opacity: 1; transform: translateY(0); pointer-events: auto; }
  .nav-links a { padding: 12px; }
  .nav-cta { text-align: center; margin-top: 4px; }
  .nav-language-switcher {
    display: grid;
    gap: 10px;
    margin-top: 10px;
    padding: 16px 12px 12px;
    border-top: 1px solid rgba(255, 249, 234, .14);
  }
  .nav-language-switcher strong {
    color: rgba(255, 249, 234, .55);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .14em;
    text-transform: uppercase;
  }
  .nav-language-switcher span {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
  }
  .nav-language-switcher a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 0;
    border: 1px solid rgba(255, 249, 234, .18);
    border-radius: 999px;
    color: var(--milk);
    background: rgba(255, 249, 234, .06);
    opacity: 1;
  }
  .nav-language-switcher a[aria-current="page"] {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--ink);
  }
  .hero {
    min-height: 640px;
    grid-template-columns: 1fr;
    padding: 28px 24px 104px;
    align-items: start;
  }
  .hero-copy { max-width: 100%; }
  .hero-bg > img:first-child { width: 100%; height: 54%; opacity: .22; }
  .hero-scissors { right: 18px; bottom: 176px; width: 92px; opacity: .45; }
  .hero-hair-line { right: 30px; bottom: 155px; width: 168px; opacity: .42; }
  .hero h1 { font-size: clamp(36px, 11vw, 44px); max-width: 340px; line-height: .92; }
  .lead { margin-top: 20px; font-size: 13px; line-height: 1.65; }
  .actions { display: grid; grid-template-columns: 1fr; gap: 10px; margin-top: 24px; }
  .button { width: 100%; min-height: 48px; }
  .review-chip {
    position: absolute;
    left: 24px;
    right: 24px;
    bottom: 64px;
    width: auto;
    max-width: none;
  }
  .vertical-tag, .hero-proof { display: none; }
  .orb-hero-one { width: 220px; height: 220px; right: -80px; top: -45px; }
  .orb-hero-two { width: 190px; height: 190px; right: -50px; top: 145px; }
  .line-field { right: 20px; top: -50px; }

  .intro, .services, .reviews, .hours { grid-template-columns: 1fr; gap: 30px; padding: 48px 22px; }
  .watermark { left: 24px; top: 28px; font-size: 74px; }
  .intro h2, .section-heading h2, .reviews h2 { font-size: clamp(29px, 9vw, 34px); line-height: .96; }
  .intro p:not(.eyebrow), .section-heading p:not(.eyebrow), .reviews-copy p:not(.eyebrow) { font-size: 13px; line-height: 1.7; }
  .photo-pair { grid-template-columns: 1fr 1fr; gap: 12px; }
  .photo-tall { height: 220px; border-radius: 22px; }
  .photo-square { height: 185px; border-radius: 18px; }
  .quote-bubble { position: relative; right: auto; bottom: auto; width: 100%; }
  .service-photo { position: relative; left: auto; bottom: auto; width: 100%; height: 210px; order: 2; }
  .price-list { order: 3; }
  .price-list article { grid-template-columns: 28px 1fr; padding: 21px 0; }
  .price-list article::after { display: none; }
  .gallery { padding: 48px 22px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .gallery-grid button, .gallery-grid button:nth-child(n) { grid-column: span 1; height: 168px; border-radius: 16px; }
  .review-cards { grid-template-columns: 1fr; }
  .review-cards article { min-height: auto; padding: 22px; }
  .review-cards article:nth-child(2), .review-cards article:nth-child(2):hover { transform: none; }
  .rating-pill { width: 100%; min-width: 0; }
  .hours { padding-bottom: 48px; }
  .hours-table div { padding: 0 14px; }
  .booking-card { position: relative; left: auto; bottom: auto; width: 100%; padding: 24px; border-radius: 20px; }
  .booking-actions { display: grid; grid-template-columns: 1fr 1fr; }
  .booking-actions a { display: inline-flex; align-items: center; justify-content: center; min-height: 42px; }
  .footer {
    grid-template-columns: 1fr;
    gap: 34px;
    margin-bottom: 0;
    padding: 52px 22px calc(70px + env(safe-area-inset-bottom, 0px));
    border-radius: 0;
  }
  .footer h2 { font-size: 27px; }
  .footer-description { font-size: 13px; }
  .footer-info {
    grid-template-columns: 86px minmax(0, 1fr);
    gap: 8px 12px;
    padding: 16px;
    border-radius: 18px;
  }
  .footer-info strong {
    margin-bottom: 0;
    font-size: 12px;
    overflow-wrap: anywhere;
  }
  .footer-contact {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .footer-contact a {
    justify-content: center;
    min-height: 42px;
    overflow-wrap: anywhere;
  }
  .footer nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }
  .footer nav a,
  .language-switcher a {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(85, 40, 27, .14);
    border-radius: 999px;
    background: rgba(255, 249, 234, .48);
    font-size: 12px;
  }
  .language-switcher div {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
  }
}

@media (max-width: 430px) {
  .brand-text small { display: none; }
  .nav { padding-left: 18px; padding-right: 18px; }
  .hero { padding-left: 22px; padding-right: 22px; }
  .intro, .services, .reviews, .hours, .gallery { padding-left: 22px; padding-right: 22px; }
  .footer { padding-left: 22px; padding-right: 22px; }
  .footer-info {
    grid-template-columns: 1fr;
    gap: 4px;
  }
  .footer-info span:not(:first-child) { margin-top: 8px; }
}
