:root {
  --ink: #241a14;
  --espresso: #302219;
  --brown: #493326;
  --cream: #f4eadf;
  --ivory: #fffaf4;
  --sand: #d9c1a5;
  --gold: #c99b5b;
  --gold2: #e0bc82;
  --muted: #cdbdad;
  --line: rgba(255, 255, 255, 0.15);
  --radius: 22px;
  --shadow: 0 24px 70px rgba(29, 18, 11, 0.18);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font:
    500 15px/1.65 Montserrat,
    Arial,
    sans-serif;
  overflow-x: hidden;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
select,
textarea {
  font: inherit;
}
button {
  cursor: pointer;
}
.wrap {
  width: min(1180px, calc(100% - 48px));
  margin: auto;
}
.section {
  padding: 88px 0;
}
.skip {
  position: fixed;
  top: -100px;
  left: 16px;
  z-index: 999;
  background: #fff;
  color: #111;
  padding: 12px;
}
.skip:focus {
  top: 10px;
}
.hidden {
  display: none !important;
}
header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  height: 112px;
  background: rgba(36, 26, 20, 0.96);
  border-bottom: 1px solid rgba(224, 188, 130, 0.22);
  backdrop-filter: blur(18px);
}
.nav {
  height: 100%;
  width: min(1280px, calc(100% - 40px));
  margin: auto;
  display: flex;
  align-items: center;
  gap: 28px;
}
.logo {
  display: block;
  flex: none;
}
.image-logo {
  width: 220px;
  height: 102px;
  margin-left: 18px;
  border: 0;
  background: transparent;
  box-shadow: none;
  overflow: hidden;
}
.image-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
}
.nav nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 25px;
}
.nav nav a {
  color: #fff8ef;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
}
.nav nav a:hover {
  color: var(--gold2);
}
.book-link {
  padding: 11px 17px;
  border: 1px solid var(--gold);
  border-radius: 999px;
}
.sound {
  border: 0;
  background: transparent;
  color: #fff8ef;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
}
.sound-bars {
  display: flex;
  gap: 2px;
  align-items: center;
  height: 15px;
}
.sound-bars i {
  display: block;
  width: 2px;
  height: 7px;
  background: var(--gold2);
}
.sound-bars i:nth-child(2) {
  height: 13px;
}
.sound b {
  font-weight: 600;
}
.menu {
  display: none;
}
.hero {
  position: relative;
  min-height: 720px;
  height: 100svh;
  max-height: 900px;
  padding-top: 112px;
  background: var(--espresso);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 112px 0 58px 42%;
  background: url("assets/salon-ambience.webp") center/cover no-repeat;
}
.hero-bg:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    var(--espresso) 0,
    rgba(48, 34, 25, 0.82) 12%,
    rgba(48, 34, 25, 0.08) 48%,
    rgba(48, 34, 25, 0.05)
  );
}
.hero-inner {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 48px));
  height: calc(100% - 58px);
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.hero-copy {
  width: min(560px, 50%);
  padding: 40px 0;
}
.eyebrow {
  margin: 0 0 18px;
  color: var(--gold2);
  text-transform: uppercase;
  letter-spacing: 0.19em;
  font-size: 11px;
  font-weight: 700;
}
.display,
h1,
h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
}
.display {
  margin: 0;
  color: #fffaf4;
  font-size: clamp(58px, 7vw, 94px);
  line-height: 0.88;
  font-weight: 600;
  letter-spacing: -0.045em;
}
.display em,
h1 em,
h2 em {
  color: var(--gold2);
  font-weight: 500;
}
.hero-text {
  max-width: 480px;
  color: #eee0d2;
  font-size: 16px;
  margin: 28px 0;
}
.hero-cta {
  display: flex;
  align-items: center;
  gap: 22px;
}
.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 50px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 9px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
}
.btn.gold {
  background: linear-gradient(135deg, var(--gold2), var(--gold));
  color: #21160f;
  box-shadow: 0 12px 30px rgba(201, 155, 91, 0.25);
}
.line-link {
  color: #fffaf4;
  border-bottom: 1px solid var(--gold);
  padding: 8px 0;
}
.hero-card {
  position: absolute;
  left: auto;
  right: 0;
  bottom: 72px;
  margin: 0;
  width: 265px;
  padding: 22px;
  background: rgba(37, 25, 18, 0.92);
  border: 1px solid rgba(224, 188, 130, 0.4);
  border-radius: 16px;
  color: #fffaf4;
  box-shadow: var(--shadow);
}
.hero-copy {
  margin-bottom: 0;
}
.live-status {
  display: flex;
  align-items: center;
  gap: 7px;
  margin: 9px 0 5px;
  color: #b8efcc;
  font-size: 11px;
  font-weight: 700;
}
.live-status i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #32c36c;
  box-shadow: 0 0 0 5px rgba(50, 195, 108, 0.13);
}
.live-status.closed {
  color: #efb8ad;
}
.live-status.closed i {
  background: #c85645;
  box-shadow: 0 0 0 5px rgba(200, 86, 69, 0.13);
}
.hero-card span,
.hero-card p {
  color: #d9c8b8;
  font-size: 12px;
}
.hero-card strong {
  display: block;
  color: var(--gold2);
  font: 600 24px "Cormorant Garamond";
}
.hero-card a {
  font-size: 12px;
  color: #fff;
  border-bottom: 1px solid var(--gold);
}
.hero-bottom {
  position: absolute;
  z-index: 3;
  bottom: 0;
  left: 0;
  right: 0;
  height: 58px;
  background: #211711;
  color: #e7d8c8;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8vw;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 10px;
}
.heading {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 50px;
  align-items: end;
  margin-bottom: 38px;
}
.heading h2,
.about-title h1,
.contact-info h2,
.form-grid h2 {
  margin: 0;
  font-size: clamp(44px, 5vw, 68px);
  line-height: 0.92;
  letter-spacing: -0.025em;
  color: inherit;
}
.heading > p {
  margin: 0;
  max-width: 460px;
  color: inherit;
  opacity: 0.78;
}
.dark-eye {
  color: #7a542c;
}
.manifest {
  background: #d8c0a4;
}
.about-card {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 60px;
  padding: 58px;
  background: var(--ivory);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid #cdb294;
}
.manifest-copy {
  font-size: 15px;
}
.manifest-copy p:first-child {
  font-size: 18px;
}
.manifest-copy strong {
  color: #65451f;
}
.services,
.portfolio,
.videos,
.reviews {
  background: var(--espresso);
  color: #fffaf4;
}
.services .heading > p,
.portfolio .heading > p,
.videos .heading > p,
.reviews .heading > p {
  color: #dbcbbb;
}
.tabs {
  display: flex;
  gap: 8px;
  overflow: auto;
  padding-bottom: 12px;
  scrollbar-width: none;
}
.tab {
  white-space: nowrap;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: #3d2b20;
  color: #eee0d2;
  padding: 11px 16px;
  border-radius: 999px;
}
.tab.active {
  background: var(--gold2);
  color: #231810;
  border-color: var(--gold2);
}
.price-card {
  margin-top: 16px;
  background: #fffaf4;
  color: var(--ink);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
#serviceList {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding: 14px;
}
.price-head {
  display: none;
}
.service-row {
  min-height: 112px !important;
  border: 1px solid #d5c2af !important;
  border-radius: 13px !important;
  background: #fff !important;
  grid-template-columns: minmax(0, 1fr) auto !important;
  grid-template-rows: 1fr auto !important;
  gap: 8px 14px !important;
  padding: 18px !important;
  text-align: left;
}
.service-row span {
  align-self: start;
  color: #2c211a !important;
  font-size: 13px !important;
  font-weight: 700;
  line-height: 1.4;
}
.service-row small {
  grid-column: 1;
  color: #755f4d;
  font-size: 11px;
}
.service-row strong {
  grid-column: 2;
  grid-row: 1;
  color: #704c26;
  font-size: 13px;
  white-space: nowrap;
}
.service-row i {
  grid-column: 2;
  grid-row: 2;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #33251d;
  color: #fff;
  font-style: normal;
  justify-self: end;
}
.price-head,
.service-row {
  display: grid;
  grid-template-columns: 1fr 110px 120px 46px;
  gap: 18px;
  align-items: center;
  padding: 17px 22px;
}
.price-head {
  background: #ddc5a9;
  color: #402c20;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 10px;
  font-weight: 700;
}
.service-row {
  border-top: 1px solid #dfd1c3;
}
.service-row:hover {
  background: #f2e4d5;
}
.service-row b {
  font-size: 13px;
}
.service-row span {
  font-size: 12px;
  color: #59483d;
}
.service-row button {
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 50%;
  background: var(--brown);
  color: #fff;
}
.fine {
  font-size: 11px;
  color: #cfbdab;
}
.specialists {
  background: #e4d0b9;
}
.specialist-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 13px;
}
.specialist {
  margin: 0;
  background: var(--ivory);
  border: 1px solid #c9ad8d;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 14px 35px rgba(54, 34, 20, 0.11);
}
.specialist img,
.silhouette {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  display: block;
  background: #b79c80;
}
.specialist img.eugenia-photo {
  object-position: 50% 0;
}
.specialist > div:last-child {
  padding: 17px;
}
.specialist span {
  color: #8d6335;
  font-size: 10px;
}
.specialist h3 {
  font: 600 27px "Cormorant Garamond";
  margin: 2px 0;
  color: #2b2019;
}
.specialist p {
  font-size: 11px;
  margin: 0;
  color: #69574b;
}
.specialist .specialty {
  min-height: 30px;
  color: #5b3c21;
  font-weight: 700;
  line-height: 1.4;
}
.specialist details {
  margin-top: 12px;
  border-top: 1px solid #dbc5ad;
  padding-top: 10px;
  color: #2b2019;
}
.specialist summary {
  cursor: pointer;
  color: #573514;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 1.4;
  opacity: 1;
  text-shadow: none;
}
.specialist details p {
  margin: 10px 0 0;
  color: #231a15;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.7;
  opacity: 1;
  filter: none;
  text-shadow: none;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
.specialist details[open] {
  margin: 12px -9px -8px;
  padding: 12px 10px 10px;
  border: 1px solid #d5b998;
  border-radius: 10px;
  background: #fffaf3;
  box-shadow: inset 0 1px 0 #fff;
}
.silhouette {
  display: grid;
  place-items: center;
  font: 600 76px "Cormorant Garamond";
  color: #f2e5d8;
  background: linear-gradient(145deg, #a17e58, #5d4432);
}
.team-note {
  font-size: 11px;
  color: #665447;
}
.slider-nav {
  display: flex;
  gap: 8px;
}
.slider-nav button,
.review-nav button,
.calendar-top button {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  background: #493326;
  color: #fff;
}
.work-slider {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(280px, 32%);
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}
.work-slider figure {
  position: relative;
  margin: 0;
  aspect-ratio: 4/5;
  border-radius: 16px;
  overflow: hidden;
  scroll-snap-align: start;
  background: #493326;
}
.work-slider img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.work-slider figcaption {
  position: absolute;
  inset: auto 12px 12px;
  padding: 10px 13px;
  background: rgba(36, 26, 20, 0.9);
  border-radius: 8px;
  color: #fff;
  font-size: 11px;
}
.media-slot {
  display: grid !important;
  place-content: center;
  text-align: center;
  border: 1px dashed #ad8a63;
}
.media-slot span {
  font-size: 38px;
  color: var(--gold2);
}
.media-slot small {
  display: block;
  color: #cebba8;
}
.swipe-hint {
  color: #cdb9a4;
  font-size: 11px;
}
.videos {
  background: #251b15;
}
.video-shell {
  overflow: hidden;
  touch-action: pan-y;
}
.video-track {
  display: flex;
  transition: transform 0.45s ease;
}
.video-track article {
  min-width: 100%;
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 48px;
  align-items: center;
  background: #3b2a20;
  padding: 24px;
  border: 1px solid rgba(224, 188, 130, 0.23);
  border-radius: 20px;
}
.video-track video {
  width: 100%;
  height: 520px;
  object-fit: contain;
  border-radius: 13px;
  background: #120d0a;
}
.video-track h3 {
  font: 600 42px/1 "Cormorant Garamond";
  margin: 12px 0;
}
.video-track article > div > span {
  color: var(--gold2);
}
.video-track p {
  color: #d4c2b1;
}
.video-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 18px;
}
.video-dots button {
  width: 26px;
  height: 4px;
  border: 0;
  background: #725744;
}
.video-dots .active {
  background: var(--gold2);
}
.video-swipe-hint {
  margin: 12px 0 0;
  text-align: center;
}
.booking {
  background: #d8c0a4;
}
.booking .eyebrow {
  color: #60401f;
}
.booking .heading h2 {
  color: #271c15;
}
.booking .heading h2 em {
  color: #70491f;
}
.booking .heading > p {
  color: #35271e;
  opacity: 1;
}
.booking-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.booking-guide {
  list-style: none;
  margin: 28px 0 22px;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}
.booking-guide li {
  min-width: 0;
  padding: 15px;
  border: 1px solid rgba(118, 75, 42, 0.2);
  border-radius: 14px;
  background: rgba(255, 250, 242, 0.88);
  color: #321f16;
  box-shadow: 0 12px 30px rgba(55, 31, 18, 0.07);
}
.booking-guide span {
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  margin-bottom: 9px;
  border-radius: 50%;
  background: #5b3522;
  color: #fff4df;
  font-size: 12px;
  font-weight: 800;
}
.booking-guide strong,
.booking-guide small { display: block; }
.booking-guide strong { font-size: 14px; line-height: 1.25; }
.booking-guide small { margin-top: 5px; color: #665047; font-size: 11px; line-height: 1.45; }
.booking-help strong { color: #4f2e1d; }
.calendar-card,
.booking-form {
  border-radius: 20px;
  padding: 30px;
  box-shadow: var(--shadow);
}
.calendar-card {
  background: #2d2018;
  color: #fffaf4;
}
.calendar-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: center;
  margin-bottom: 24px;
}
.calendar-top small {
  display: block;
  color: #cdb9a6;
}
.calendar-top strong {
  font: 600 26px "Cormorant Garamond";
}
.weekdays,
.month-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 7px;
  text-align: center;
}
.weekdays {
  color: #bfa991;
  font-size: 10px;
  margin-bottom: 9px;
}
.day {
  aspect-ratio: 1;
  border: 0;
  border-radius: 9px;
  background: #3c2b21;
  color: #fff;
}
.day:not(:disabled):hover,
.day.selected,
.day.active {
  background: var(--gold2);
  color: #241810;
}
.day:disabled {
  opacity: 0.3;
}
.selected-day {
  margin: 20px 0 0;
  padding: 12px;
  text-align: center;
  background: #201711;
  border-radius: 9px;
  color: var(--gold2);
}
.booking-form {
  background: var(--ivory);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  color: #2b2019;
}
.booking-form label,
.contact-form label,
.review-form label {
  display: grid;
  gap: 5px;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
}
.booking-form input,
.booking-form select,
.booking-form textarea,
.contact-form input,
.contact-form textarea,
.review-form input,
.review-form textarea {
  width: 100%;
  border: 1px solid #bda78f;
  border-radius: 8px;
  background: #fff;
  color: #261b15;
  padding: 12px;
  outline: 0;
}
.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
  border-color: #79552f;
  box-shadow: 0 0 0 3px rgba(121, 85, 47, 0.12);
}
.booking-form label:has(textarea),
.booking-form .time-field,
.booking-form .booking-consent,
.booking-form .booking-result,
.booking-form .btn,
.booking-form > small {
  grid-column: 1/-1;
}
.booking-form > small {
  color: #725f51;
}
.booking-form .btn {
  width: 100%;
}
.booking-form .btn:disabled { cursor: not-allowed; opacity: 0.55; transform: none; }
.time-field { margin: 0; padding: 14px; border: 1px solid #bda78f; border-radius: 12px; }
.time-field legend { padding: 0 7px; color: #3b2a20; font-size: 10px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.time-status { color: #725f51; font-size: 13px; line-height: 1.45; }
.time-slots { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 8px; margin-top: 10px; }
.time-slot { min-height: 42px; border: 1px solid #a98b69; border-radius: 9px; background: #fff; color: #2d2018; font-weight: 800; }
.time-slot:hover,.time-slot.active { border-color: #6b451f; background: #2d2018; color: #f2cf91; }
.booking-consent { display: flex !important; grid-template-columns: none !important; flex-direction: row; align-items: flex-start; gap: 9px !important; font-size: 11px !important; font-weight: 600 !important; line-height: 1.45; letter-spacing: 0 !important; text-transform: none !important; }
.booking-consent input { width: 18px; height: 18px; flex: 0 0 auto; margin-top: 1px; }
.booking-hp { position: absolute !important; left: -9999px !important; width: 1px !important; height: 1px !important; opacity: 0 !important; }
.booking-result { min-height: 0; border-radius: 10px; font-size: 13px; font-weight: 700; line-height: 1.5; }
.booking-result.success,.booking-result.error { padding: 12px 14px; }
.booking-result.success { border: 1px solid #9ab99e; background: #edf7ee; color: #24552c; }
.booking-result.error { border: 1px solid #d2a29c; background: #fff0ed; color: #7d2d25; }
.confirmation-card { display: grid; gap: 10px; }
.confirmation-card > strong { font-size: 17px; }
.confirmation-card pre {
  margin: 0;
  padding: 12px;
  border-radius: 10px;
  background: rgba(255,255,255,.65);
  color: #1f4726;
  font: 700 12px/1.65 "Montserrat", sans-serif;
  white-space: pre-wrap;
}
.confirmation-card p { margin: 0; font-size: 12px; line-height: 1.55; }
.confirmation-actions { display: flex; flex-wrap: wrap; gap: 8px; }
.confirmation-action {
  appearance: none;
  border: 1px solid #5d8b64;
  border-radius: 999px;
  background: #fff;
  color: #24552c;
  padding: 9px 12px;
  font: 800 11px "Montserrat", sans-serif;
  cursor: pointer;
}
.cancel-page { min-height: 100vh; display: grid; place-items: center; padding: 24px; background: radial-gradient(circle at top,#ead4b8,#2b1d15 78%); color: #2d2018; }
.cancel-shell { width: min(100%,560px); padding: clamp(26px,6vw,54px); border: 1px solid rgba(117,75,36,.28); border-radius: 24px; background: #fffaf4; box-shadow: 0 28px 80px rgba(22,13,8,.32); text-align: center; }
.cancel-shell img { width: min(100%,320px); height: auto; margin: 0 auto 22px; border-radius: 10px; }
.cancel-shell h1 { margin: 8px 0 12px; font: 600 clamp(38px,8vw,62px)/.95 "Cormorant Garamond",serif; }
.cancel-shell > p:not(.eyebrow) { margin: 0 auto 24px; max-width: 430px; color: #5d493b; line-height: 1.65; }
.cancel-shell .booking-result { margin-top: 16px; }
.cancel-back { display: inline-block; margin-top: 22px; color: #68451f; font-weight: 800; }
.brands {
  background: #f4eadf;
}
.brand-intro {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 25px;
}
.brand-intro > p:last-child {
  max-width: 480px;
  color: #635246;
}
.brand-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}
.brand-row span {
  height: 100px;
  background: #fff;
  border: 1px solid #d1bda7;
  border-radius: 12px;
  display: grid;
  place-items: center;
  padding: 15px;
}
.brand-row img {
  max-width: 100%;
  max-height: 66px;
  object-fit: contain;
}
.rating {
  display: flex;
  gap: 14px;
  align-items: center;
}
.rating b {
  font: 600 54px "Cormorant Garamond";
}
.rating span {
  color: var(--gold2);
}
.rating small {
  display: block;
  color: #d2c0af;
  font-size: 10px;
}
.review-stage {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.review-stage {
  align-items: stretch;
}
.review-stage article {
  height: 100%;
}
.review-card {
  background: #fffaf4;
  color: #281d17;
  padding: 23px;
  border-radius: 15px;
  min-height: 215px;
}
.review-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.review-meta span {
  color: #a87334;
  letter-spacing: 0.08em;
  white-space: nowrap;
}
.review-meta small {
  color: #756253;
}
.review-card .stars {
  color: #a87334;
}
.review-card p {
  font-size: 13px;
}
.review-card footer {
  background: none;
  color: #665348;
  padding: 0;
}
.review-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 22px 0;
}
.review-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--line);
  padding-top: 24px;
}
.btn.outline {
  border-color: var(--gold2);
  color: #fff;
  background: transparent;
}
.review-form {
  display: none;
  max-width: 600px;
  margin: 25px auto 0;
  background: #fffaf4;
  color: #271d17;
  padding: 26px;
  border-radius: 18px;
}
.review-form.open {
  display: grid;
  gap: 13px;
}
.review-form-head {
  display: flex;
  justify-content: space-between;
}
.review-form-head h3 {
  font: 600 34px "Cormorant Garamond";
  margin: 0;
}
.review-form-head button {
  border: 0;
  background: none;
  font-size: 28px;
}
.stars-input {
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
}
.stars-input input {
  display: none;
}
.stars-input label {
  font-size: 30px;
  color: #b6a597;
  cursor: pointer;
}
.stars-input label:hover,
.stars-input label:hover ~ label,
.stars-input input:checked ~ label {
  color: #b47b37;
}
.contact {
  background: #dec9b0;
}
.contact-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 25px;
}
.contact-info,
.map {
  background: #fffaf4;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.contact-info {
  padding: 36px;
}
.storefront-photo {
  margin: -36px -36px 26px;
  overflow: hidden;
}
.storefront-photo img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  display: block;
}
.contact-info dl {
  margin: 28px 0;
}
.contact-info dl div {
  display: grid;
  grid-template-columns: 100px 1fr;
  padding: 13px 0;
  border-top: 1px solid #ddcdbd;
}
.contact-info dt {
  font-size: 10px;
  text-transform: uppercase;
  color: #765d48;
}
.contact-info dd {
  margin: 0;
}
.social {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.social a {
  display: flex;
  align-items: center;
  gap: 7px;
  background: #2e2119;
  color: #fff;
  padding: 10px 13px;
  border-radius: 8px;
  font-size: 11px;
}
.social img {
  width: 17px;
  height: 17px;
}
.map {
  position: relative;
  min-height: 510px;
}
.map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: saturate(0.85) contrast(1.05);
}
.map > a {
  position: absolute;
  left: 18px;
  bottom: 18px;
  background: #2b1f18;
  color: #fff;
  padding: 13px 18px;
  border-radius: 8px;
}
.form-section {
  padding: 72px 0;
  background: #2e2119;
  color: #fffaf4;
}
.form-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 70px;
  align-items: center;
}
.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px;
}
.contact-form label:has(textarea),
.contact-form .btn {
  grid-column: 1/-1;
}
.btn.dark {
  background: var(--gold2);
  color: #261a13;
  width: 100%;
}
footer {
  background: #1f1611;
  color: #d7c5b4;
  padding: 36px 0;
}
.footer {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 12px;
  text-align: center;
}
.footer p {
  margin: 0;
  font-size: 12px;
  line-height: 1.75;
}
.credit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 11px;
  padding: 10px 17px;
  border: 1px solid rgba(224, 188, 130, 0.65);
  border-radius: 999px;
  color: #f0c982;
  background: rgba(224, 188, 130, 0.08);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  transition: 0.25s ease;
}
.credit:hover,
.credit:focus-visible {
  color: #fff8eb;
  border-color: #f0c982;
  background: rgba(224, 188, 130, 0.16);
  transform: translateY(-2px);
}
.contact-messaging {
  margin: 24px 0 20px;
  padding: 18px;
  border: 1px solid rgba(90, 55, 32, 0.18);
  border-radius: 16px;
  background: #fffaf3;
  color: #36251c;
}
.contact-messaging p { margin: 0 0 12px; line-height: 1.55; }
.contact-messaging .viber-feedback {
  margin: 11px 0 0;
  padding: 10px 12px;
  border-radius: 10px;
  background: #eeeafb;
  color: #403878;
  font-size: 12px;
  font-weight: 700;
}
.contact-messaging small { display: block; margin-top: 11px; color: #665047; line-height: 1.5; }
.messaging-actions { display: flex; flex-wrap: wrap; gap: 9px; }
.message-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 10px 14px;
  border-radius: 999px;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
}
.message-btn img { width: 21px; height: 21px; }
.message-btn span { display: grid; place-items: center; width: 21px; height: 21px; border: 1px solid currentColor; border-radius: 50%; }
.whatsapp-btn { background: #176b45; }
.viber-btn { background: #665cac; }
.message-btn:hover,
.message-btn:focus-visible { color: #fff; transform: translateY(-2px); }
.whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 90;
  display: flex;
  align-items: center;
  gap: 9px;
  background: #176b45;
  color: #fff;
  padding: 12px 16px;
  border-radius: 999px;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.28);
  font-size: 11px;
  font-weight: 700;
}
.whatsapp img {
  width: 22px;
}
.back-to-top {
  position: fixed;
  right: 18px;
  bottom: 76px;
  z-index: 89;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 44px;
  padding: 10px 15px;
  border: 1px solid rgba(240, 201, 130, 0.72);
  border-radius: 999px;
  background: rgba(38, 27, 21, 0.94);
  color: #fff8eb;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.04em;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
}
.back-to-top span {
  color: #f0c982;
  font-size: 17px;
  line-height: 1;
}
.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: none;
}
.back-to-top:hover,
.back-to-top:focus-visible {
  background: #4b3325;
  border-color: #f0c982;
}
.audio-toast {
  position: fixed;
  z-index: 200;
  left: 50%;
  bottom: -100px;
  transform: translateX(-50%);
  background: #1e1611;
  color: #fff;
  padding: 10px 16px;
  border-radius: 8px;
  transition: 0.3s;
}
.audio-toast.show {
  bottom: 20px;
}
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: 0.65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
@media (max-width: 960px) {
  .nav nav {
    position: fixed;
    inset: 112px 0 auto;
    background: #261b15;
    padding: 22px;
    display: none;
    flex-direction: column;
    align-items: stretch;
  }
  .nav nav.open {
    display: flex;
  }
  .menu {
    margin-left: auto;
    border: 1px solid rgba(224, 188, 130, 0.55);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 72px;
    min-height: 40px;
    padding: 0 13px;
  }
  .menu em {
    font-style: normal;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.12em;
  }
  .sound b {
    display: inline;
    font-size: 10px;
  }
  .sound {
    min-height: 40px;
    padding: 0 10px;
    border: 1px solid rgba(224, 188, 130, 0.38);
    border-radius: 999px;
  }
  .sound-bars {
    display: none;
  }
  .sound::before {
    content: "♫";
    color: var(--gold2);
    font-size: 15px;
    line-height: 1;
  }
  .hero {
    height: auto;
    min-height: 760px;
  }
  .hero-bg {
    inset: 112px 0 auto;
    height: 42%;
    background-size: cover;
    background-position: center;
  }
  .hero-bg:after {
    background: linear-gradient(
      0deg,
      var(--espresso),
      rgba(48, 34, 25, 0.05) 55%
    );
  }
  .hero-inner {
    height: auto;
    min-height: 700px;
    padding-top: 265px;
    align-items: flex-end;
  }
  .hero-copy {
    width: 70%;
    padding-right: 0;
  }
  .hero-card {
    width: 255px;
  }
  .specialist-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .video-track article {
    grid-template-columns: 320px 1fr;
  }
  .review-stage {
    grid-template-columns: 1fr 1fr;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .map {
    min-height: 430px;
  }
}
@media (max-width: 680px) {
  .booking-guide { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .time-slots { grid-template-columns: repeat(3,minmax(0,1fr)); }
  header {
    height: 84px;
  }
  .wrap,
  .hero-inner {
    width: min(100% - 28px, 1180px);
  }
  .section {
    padding: 58px 0;
  }
  .nav {
    width: calc(100% - 24px);
    gap: 10px;
  }
  .image-logo {
    width: 155px;
    height: 72px;
    margin-left: 0;
  }
  .hero {
    min-height: 790px;
    padding-top: 84px;
  }
  .hero-bg {
    inset: 84px 0 auto;
    height: 290px;
    background-size: cover;
  }
  .nav nav {
    inset: 84px 0 auto;
  }
  .hero-inner {
    display: block;
    min-height: 730px;
    padding-top: 330px;
  }
  .hero-copy {
    width: 100%;
    padding: 20px 0;
    margin-bottom: 0;
    padding-right: 0;
  }
  .display {
    font-size: 49px;
  }
  .hero-text {
    font-size: 14px;
    margin: 19px 0;
  }
  .hero-card {
    position: relative;
    left: auto;
    bottom: auto;
    width: 100%;
    margin: 12px 0 72px;
    padding: 15px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4px 12px;
  }
  .hero-card p {
    margin: 0;
  }
  .hero-bottom {
    justify-content: flex-start;
    gap: 30px;
    padding: 0 20px;
    overflow: hidden;
    white-space: nowrap;
  }
  .heading,
  .about-card,
  .booking-layout,
  .form-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .about-card {
    padding: 26px;
  }
  .heading h2,
  .about-title h1,
  .contact-info h2,
  .form-grid h2 {
    font-size: 43px;
  }
  .specialist-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
  }
  .specialist {
    min-width: 72%;
    scroll-snap-align: start;
  }
  .price-head,
  .service-row {
    grid-template-columns: 1fr 65px 72px 36px;
    gap: 6px;
    padding: 14px 10px;
  }
  #serviceList {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 10px;
  }
  .service-row {
    min-height: 102px !important;
    grid-template-columns: minmax(0, 1fr) auto !important;
    grid-template-rows: 1fr auto !important;
    padding: 15px !important;
  }
  .price-head {
    font-size: 8px;
  }
  .service-row b {
    font-size: 11px;
  }
  .service-row span {
    font-size: 10px;
  }
  .work-slider {
    grid-auto-columns: 82%;
  }
  .video-track article {
    grid-template-columns: 1fr;
    padding: 12px;
    gap: 15px;
  }
  .video-track video {
    height: 430px;
  }
  .video-track h3 {
    font-size: 30px;
    margin: 6px 0;
  }
  .booking-form {
    grid-template-columns: 1fr;
  }
  .booking-form label,
  .booking-form label:has(textarea) {
    grid-column: 1;
  }
  .calendar-card,
  .booking-form {
    padding: 19px;
  }
  .brand-intro,
  .review-actions {
    display: block;
  }
  .brand-row {
    grid-template-columns: repeat(2, 1fr);
  }
  .review-stage {
    grid-template-columns: 1fr;
  }
  .contact-info {
    padding: 25px;
  }
  .map {
    min-height: 390px;
  }
  .contact-form {
    grid-template-columns: 1fr;
  }
  .contact-form label,
  .contact-form label:has(textarea),
  .contact-form .btn {
    grid-column: 1;
  }
  .footer {
    display: grid;
    text-align: center;
    justify-items: center;
  }
  .whatsapp span {
    display: none;
  }
  .whatsapp {
    width: 54px;
    height: 54px;
    padding: 0;
    justify-content: center;
  }
  .whatsapp img {
    width: 25px;
  }
  .back-to-top {
    right: 18px;
    bottom: calc(84px + env(safe-area-inset-bottom, 0px));
  }
}
@media (max-width: 400px) {
  .image-logo {
    width: 116px;
    height: 62px;
  }
  .menu {
    min-width: 59px;
    padding: 0 8px;
  }
  .menu em,
  .sound b {
    font-size: 9px;
  }
  .sound {
    gap: 4px;
    padding: 0 8px;
  }
}
@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
    transition: none !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}
