@import url("assets/fonts/google-fonts.css");

:root {
  --ink: #1d1b1b;
  --muted: #6b6563;
  --paper: #f1efed;
  --paper-deep: #f8d8e7;
  --white: #fbfaf8;
  --rose: #E48A99;
  --rose-strong: #8b315b;
  --rose-pale: #fdebf3;
  --rose-wash: rgba(228, 138, 153, .09);
  --rose-soft: rgba(228, 138, 153, .22);
  --line: rgba(228, 138, 153, .32);
  --radius: 2px;
  --header-height: 78px;
  --display: "El Messiri", "Noto Sans Arabic", Tahoma, "Segoe UI", Arial, sans-serif;
  --display-ar: var(--logo-ar);
  --body: "Scheherazade New", "Noto Sans Arabic", Tahoma, "Segoe UI", Arial, sans-serif;
  --logo-ar: "Scheherazade New", "Aref Ruqaa Ink", "Mada", "Noto Sans Arabic", Tahoma, "Segoe UI", Arial, sans-serif;
  --logo-en: "Cormorant Garamond", Georgia, serif;
}

* { box-sizing: border-box; }
[hidden] { display: none !important; }
html { max-width: 100%; overflow-x: clip; scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--body);
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}
body.dialog-open { overflow: hidden; }
body.menu-open { overflow: hidden; }
body.page-is-loading { overflow: hidden; }
button, input, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { cursor: pointer; }
a { color: inherit; text-decoration: none; }
img { display: block; width: 100%; }

.page-loader { position: fixed; inset: 0; z-index: 1000; display: grid; place-items: center; overflow: hidden; color: var(--white); background: #E48A99; opacity: 1; visibility: visible; transition: opacity .55s ease, visibility .55s ease; }
.page-loader::before, .page-loader::after { content: ""; position: absolute; inset: -20%; pointer-events: none; background: radial-gradient(circle at 28% 22%, rgba(255,255,255,.32), transparent 30%), radial-gradient(circle at 76% 78%, rgba(255,255,255,.18), transparent 34%), linear-gradient(135deg, rgba(255,255,255,.13), transparent 46%, rgba(255,255,255,.2)); filter: blur(24px); }
.page-loader::after { opacity: .7; transform: rotate(12deg); }
.page-loader.is-hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-brand { position: relative; z-index: 2; display: grid; justify-items: center; gap: 18px; width: min(92vw, 960px); text-align: center; color: var(--white); }
.loader-brand-ar { font: 400 clamp(82px, 22vw, 176px)/1.05 var(--logo-ar); letter-spacing: -.04em; }
.loader-brand-en { font: 400 clamp(18px, 3vw, 30px)/1.1 var(--logo-ar); letter-spacing: .16em; direction: ltr; }
.loader-tagline { margin-top: 14px; font: 400 clamp(24px, 5vw, 38px)/1.35 var(--logo-ar); }
.loader-progress { width: min(220px, 58vw); height: 3px; margin-top: 4px; overflow: hidden; background: rgba(255,255,255,.28); }
.loader-progress span { display: block; width: 8%; height: 100%; background: #fff; transform-origin: right center; transition: width .35s ease; }
.loader-shine { position: absolute; z-index: 1; width: 150%; height: 24%; left: -25%; top: 38%; transform: rotate(-18deg); background: linear-gradient(90deg, transparent, rgba(255,255,255,.34), rgba(255,255,255,.08), transparent); filter: blur(16px); animation: loader-shine 3.8s ease-in-out infinite; }
@keyframes loader-shine { 0%, 100% { transform: translateX(-24%) rotate(-18deg); opacity: .28; } 50% { transform: translateX(24%) rotate(-18deg); opacity: .72; } }
.skip-link {
  position: fixed;
  top: -50px;
  right: 20px;
  z-index: 100;
  padding: 12px 20px;
  background: var(--rose);
  color: var(--ink);
}
.skip-link:focus { top: 10px; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  height: var(--header-height);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 32px;
  padding: 0 4vw;
  color: var(--white);
  border-bottom: 1px solid rgba(255,255,255,.18);
  transition: color .35s ease, background .35s ease, height .35s ease;



}
.site-header.scrolled {
  height: 66px;
  color: var(--ink);
  background: rgba(241, 239, 237, .92);
  border-color: var(--line);
  backdrop-filter: blur(16px);
}
.brand {
  justify-self: start;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
}
.brand-ar {
  font-family: var(--logo-ar);
  font-size: 30px;
  line-height: .8;
}
.brand-en {
  margin-top: 8px;
  font-family: var(--logo-en);
  font-size: 8px;
  letter-spacing: .3em;
}
.desktop-nav { display: flex; gap: clamp(22px, 3vw, 52px); }
.desktop-nav a, .nav-action { font-size: 14px; }
.nav-action {
  padding: 0;
  border: 0;
  color: inherit;
  background: transparent;
}
.desktop-nav a, .desktop-nav .nav-action, .text-link { position: relative; }
.desktop-nav a::after, .desktop-nav .nav-action::after, .text-link::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -5px;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .3s ease;
}
.desktop-nav a:hover::after, .desktop-nav .nav-action:hover::after, .text-link:hover::after { transform: scaleX(1); }
.desktop-nav a:hover, .desktop-nav .nav-action:hover,
.mobile-menu a:hover, .mobile-menu .nav-action:hover { color: var(--rose); }
.site-header.scrolled .brand { color: var(--ink); }
.site-header:not(.scrolled) .brand { color: var(--white); text-shadow: none; }
.header-book { justify-self: end; }
.menu-button { display: none; }
.mobile-menu, .menu-backdrop { display: none; }

.button {
  min-height: 46px;
  padding: 11px 26px;
  border: 1px solid transparent;
  border-radius: 999px;
  white-space: nowrap;
  transition: transform .2s ease, background .25s ease, color .25s ease;
}
.button:hover { transform: translateY(-2px); }
.button:active { transform: scale(.98); }
.button[data-open-booking] { position: relative; overflow: hidden; }
.button[data-open-booking]::after { content: ""; position: absolute; inset: 0 auto 0 -70%; width: 42%; pointer-events: none; background: linear-gradient(105deg, transparent, rgba(255,255,255,.48), transparent); transform: skewX(-18deg); transition: left .55s ease; }
.button[data-open-booking]:hover { transform: translateY(-3px); box-shadow: 0 10px 24px rgba(139,49,91,.2); }
.button[data-open-booking]:hover::after { left: 125%; }
.button-light { color: var(--white); border-color: rgba(255,255,255,.8); background: rgba(28,25,24,.14); }
.scrolled .button-light { color: var(--rose-strong); border-color: var(--rose-strong); background: transparent; }
.button-light:hover { color: var(--ink); background: var(--white); }
.button-dark { color: var(--ink); background: var(--rose); }
.button-dark:hover { color: var(--white); background: var(--ink); }
.button-outline { color: var(--rose-strong); background: transparent; border-color: var(--rose-strong); }
.button-large { min-height: 54px; padding-inline: 34px; }
.hero-content .button-large { min-height: 60px; padding-inline: 64px; font-size: 20px; font-weight: 600; }
.hero-content .button-light { color: var(--white); border-color: rgba(255,255,255,.8); background: rgba(228,138,153,.28); }

.hero {
  position: relative;
  min-height: 125dvh;
  color: var(--white);
  view-timeline-name: --hero-stage;
  view-timeline-axis: block;
}
.hero-frame {
  position: sticky;
  top: 0;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-media, .hero-shade { position: absolute; inset: 0; }
.hero-media video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% center;
  animation: hero-breathe 14s ease-in-out infinite alternate;
}
.hero-shade {
  background: radial-gradient(ellipse 62% 46% at 50% 50%, rgba(228,138,153,.72), transparent 74%), radial-gradient(ellipse 78% 58% at 72% 78%, rgba(228,138,153,.28), transparent 72%);
}
.hero-content {
  position: relative;
  z-index: 2;
  width: min(760px, 88vw);
  padding: 0 5vw;
  text-align: center;
  color: var(--white);
  text-shadow: 0 2px 14px rgba(29,27,27,.28);
}
.hero-curtain {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(36, 1fr);
  direction: ltr;
  overflow: hidden;
  perspective: 1100px;
  pointer-events: none;
}
.curtain-strip {
  min-width: 0;
  background: var(--rose);
  box-shadow: inset 1px 0 rgba(255,255,255,.08), inset -1px 0 rgba(35,20,23,.1);
  opacity: 0;
  transform: rotateY(90deg);
  transform-origin: center;
  backface-visibility: hidden;
  transition: transform .8s cubic-bezier(.65,0,.35,1);
  transition-delay: calc(var(--i) * 12ms);
}
.hero-curtain.is-closing .curtain-strip { opacity: 1; transform: rotateY(0); }
@keyframes curtain-close {
  0% { opacity: 0; transform: rotateY(90deg); }
  3% { opacity: 1; }
  100% { opacity: 1; transform: rotateY(0); }
}
@supports (animation-timeline: view()) {
  .curtain-strip {
    animation: curtain-close 1ms linear both;
    animation-timeline: --hero-stage;
    animation-range: exit var(--curtain-start) exit var(--curtain-end);
    transition: none;
  }
}
.eyebrow {
  margin: 0 0 18px;
  font-size: 12px;
  letter-spacing: .15em;
}
.hero h1 {
  max-width: 760px;
  margin: 0;
  font-family: var(--logo-ar);
  color: var(--white);
  font-size: clamp(56px, 7.6vw, 108px);
  font-weight: 400;
  line-height: .96;
}
.hero-content > p:not(.eyebrow) {
  margin: 22px 0 28px;
  font-size: 17px;
  line-height: 1.9;
}
@keyframes hero-breathe {
  from { transform: scale(1.02); }
  to { transform: scale(1.09); }
}

.section { padding: clamp(90px, 11vw, 170px) 6vw; }
.intro-transition {
  position: relative;
  z-index: 3;
  overflow: hidden;
  background: var(--rose);
  view-timeline-name: --intro-rise;
  view-timeline-axis: block;
}
.intro {
  position: relative;
  isolation: isolate;
  min-height: 900px;
  display: grid;
  grid-template-columns: .8fr 1.1fr .65fr;
  align-items: center;
  gap: 6vw;
}
.intro::before {
  content: "";
  position: absolute;
  inset: 0 -2%;
  z-index: -1;
  border-radius: 50% 50% 0 0 / min(6vw, 100px) min(6vw, 100px) 0 0;
  background: linear-gradient(180deg, var(--paper) 0%, var(--rose-pale) 100%);
  transform: scaleX(1.06);
  transform-origin: top center;
}
@supports (animation-timeline: view()) {
  @media (prefers-reduced-motion: no-preference) {
    .intro::before {
      animation: intro-panel-rise 1ms linear both;
      animation-timeline: --intro-rise;
      animation-range: entry 0% entry 100%;
    }
    .intro .reveal {
      animation: intro-content-appear 1ms linear both;
      animation-timeline: --intro-rise;
      animation-range: entry 0% entry 18%;
    }
  }
}
@keyframes intro-panel-rise {
  from { transform: scaleX(1); }
  to { transform: scaleX(1.06); }
}
@keyframes intro-content-appear {
  from { opacity: .65; }
  to { opacity: 1; }
}
.intro-copy { align-self: start; padding-top: 8vw; }
.intro h2, .section-heading h2, .experience h2, .booking-callout h2, .contact-details h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(44px, 5.7vw, 80px);
  font-weight: 400;
  line-height: 1.12;
}
.intro-copy p, .section-heading p, .experience-copy > p, .booking-callout p, .contact-details > p:not(.eyebrow) {
  max-width: 540px;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 2;
}
.portrait-media { width: min(100%, 480px); justify-self: center; margin: 0; overflow: hidden; border-radius: 8px; }
.portrait-media img { aspect-ratio: 4 / 5; object-fit: cover; object-position: center top; transition: transform .8s cubic-bezier(.16,1,.3,1); }
.intro-stats { width: 100%; max-width: 250px; align-self: end; margin: 0; padding-bottom: 8vw; }
.intro-stat { padding: 24px 0; border-top: 1px solid var(--line); }
.intro-stat:last-child { border-bottom: 1px solid var(--line); }
.intro-stat dt {
  color: var(--rose-strong);
  font-family: var(--display);
  font-size: clamp(48px, 5vw, 72px);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.intro-stat dd { margin: 10px 0 0; color: var(--ink); font-size: 17px; line-height: 1.7; }

.services {
  background: var(--rose);
  box-shadow: inset 0 1px rgba(241,239,237,.5), inset 0 -1px rgba(241,239,237,.5);
}
.services .section-heading h2, .booking-callout h2 { text-wrap: balance; }
.services .section-heading h2, .services .section-heading p, .booking-callout h2, .booking-callout p { color: var(--white); }
.section-heading { max-width: 620px; margin: 0 auto 70px; text-align: center; }
.service-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: start;
  gap: clamp(16px, 2.2vw, 32px);
  max-width: 1180px;
  margin: 0 auto;
}
.service-category-card {
  overflow: hidden;
  border: 1px solid rgba(29,27,27,.09);
  border-radius: 18px;
  background: rgba(241,239,237,.5);
  box-shadow: 0 18px 45px rgba(93,32,59,.09);
  transition: transform .3s ease, background .3s ease, box-shadow .3s ease;
}
.service-category-card summary { cursor: pointer; list-style: none; }
.service-category-card summary::-webkit-details-marker { display: none; }
.service-category-media { display: block; overflow: hidden; aspect-ratio: 4 / 5; background: rgba(241,239,237,.48); }
.service-category-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(.98) contrast(1.02);
  transition: transform .7s cubic-bezier(.16,1,.3,1);
}
.service-category-heading {
  display: flex;
  min-height: 88px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px clamp(18px, 2vw, 28px);
  background: rgba(251,250,248,.52);
}
.service-category-heading strong {
  font-family: var(--display);
  font-size: clamp(25px, 2.4vw, 36px);
  font-weight: 400;
  line-height: 1.25;
}
.service-category-toggle {
  position: relative;
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
  border: 1px solid rgba(29,27,27,.2);
  border-radius: 50%;
}
.service-category-toggle::before,
.service-category-toggle::after {
  content: "";
  position: absolute;
  inset: 50% auto auto 50%;
  width: 12px;
  height: 1px;
  background: currentColor;
  transform: translate(-50%, -50%);
  transition: transform .25s ease;
}
.service-category-toggle::after { transform: translate(-50%, -50%) rotate(90deg); }
.service-category-card[open] .service-category-toggle::after { transform: translate(-50%, -50%) rotate(0); }
.service-category-items { padding: 0 clamp(18px, 2vw, 28px) 22px; }
.service-category-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  padding: 15px 0;
  border-top: 1px solid rgba(29,27,27,.11);
  line-height: 1.55;
}
.service-category-item span { min-width: 0; }
.service-category-item strong { color: var(--rose-strong); font-weight: 500; white-space: nowrap; }
.services > .text-link {
  display: flex;
  width: max-content;
  min-height: 52px;
  align-items: center;
  gap: 10px;
  margin: 48px auto 0;
  padding: 11px 28px;
  border: 1px solid rgba(29,27,27,.12);
  border-radius: 999px;
  color: var(--ink);
  background: var(--paper);
  box-shadow: 0 12px 30px rgba(139,49,91,.12);
  transition: transform .2s ease, background .25s ease;
}
.services > .text-link::after { display: none; }
.services > .text-link:hover { transform: translateY(-2px); background: var(--white); }
.services > .text-link:active { transform: scale(.98); }

.experience {
  display: grid;
  grid-template-columns: 1.45fr .75fr;
  align-items: center;
  gap: 8vw;
}
.experience-media { overflow: hidden; }
.experience-media img { min-height: 620px; object-fit: cover; }
.experience-copy { max-width: 510px; }
.hours { margin: 44px 0 0; }
.hours div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 17px 0;
  border-bottom: 1px solid var(--line);
}
.hours dt, .hours dd { margin: 0; }
.hours dd { direction: ltr; color: var(--muted); }

.booking-callout {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 40px;
  background: var(--rose);
  border-block: 1px solid rgba(241,239,237,.58);
}
.booking-callout .button-dark {
  color: var(--ink);
  background: var(--paper);
  border-color: rgba(29,27,27,.12);
  box-shadow: 0 12px 30px rgba(139,49,91,.12);
}
.booking-callout .button-dark:hover { color: var(--ink); background: var(--white); }
.contact-section {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(420px, 1.18fr);
  align-items: start;
  gap: clamp(60px, 8vw, 120px);
  padding-bottom: clamp(190px, 16vw, 250px);
  background: var(--paper);
}
.contact-details { position: sticky; top: 130px; }
.contact-details .eyebrow { color: var(--rose-strong); }
.contact-details h2 { max-width: 580px; }
#contact { scroll-margin-top: calc(var(--header-height) + 20px); }
.contact-facts { margin: 48px 0 0; border-top: 1px solid var(--line); }
.contact-facts div { padding: 22px 0; border-bottom: 1px solid var(--line); }
.contact-facts dt { margin-bottom: 6px; color: var(--muted); font-size: 14px; }
.contact-facts dd { margin: 0; font-size: 18px; }
.contact-form { display: grid; gap: 18px; padding: clamp(28px, 4vw, 52px); border: 1px solid var(--line); background: var(--rose-pale); }
.contact-field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.contact-form textarea {
  min-height: 150px;
  resize: vertical;
  padding: 13px 14px;
  color: var(--ink);
  background: var(--rose-wash);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  outline: none;
  font: inherit;
  line-height: 1.8;
}
.contact-form textarea:focus { border-color: var(--rose-strong); box-shadow: 0 0 0 3px rgba(139,49,91,.14); }
.contact-form textarea[aria-invalid="true"] { border-color: #8d3232; }
.contact-form-status { min-height: 24px; margin: -2px 0 0; color: #8d3232; font-size: 14px; }
.contact-form .button { width: 100%; }
.site-toast {
  position: fixed;
  z-index: 150;
  inset-inline-start: 24px;
  bottom: 24px;
  max-width: calc(100vw - 48px);
  padding: 13px 20px;
  color: var(--ink);
  background: var(--rose);
  box-shadow: 0 14px 42px rgba(29,27,27,.16);
  opacity: 0;
  transform: translateY(14px);
  pointer-events: none;
  transition: opacity .22s ease, transform .22s ease;
}
.site-toast:empty { display: none; }
.site-toast.visible { opacity: 1; transform: none; }
footer {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1fr auto;
  min-height: 310px;
  gap: 50px;
  margin-top: clamp(-110px, -7vw, -70px);
  padding: 92px 6vw 70px;
  border-radius: clamp(76px, 10vw, 150px) clamp(76px, 10vw, 150px) 0 0;
  color: var(--ink);
  background: var(--paper);
  box-shadow: inset 0 3px var(--rose);
}
.footer-reveal.reveal {
  opacity: 0;
  transform: translateY(120px);
  transition: opacity 1.3s ease, transform 1.3s cubic-bezier(.16,1,.3,1);
}
.footer-reveal.reveal.visible { opacity: 1; transform: none; }
.footer-item.reveal { transition-duration: 1.05s; }
.footer-brand.footer-item { transition-delay: .12s; }
.footer-social.footer-item { transition-delay: .22s; }
.owner-link.footer-item { transition-delay: .32s; }
.footer-main { display: flex; align-items: center; gap: clamp(42px, 5vw, 74px); }
.footer-brand { display: flex; flex-direction: column; width: max-content; align-items: center; }
.footer-brand, footer a:hover { color: var(--rose); }
.footer-brand span { font-family: var(--logo-ar); font-size: 42px; }
.footer-brand small { font-family: var(--logo-en); font-size: 8px; letter-spacing: .28em; }
.footer-social { display: grid; grid-template-columns: minmax(0, 190px) 48px; align-items: center; gap: 16px; }
.footer-social p { margin: 0; line-height: 1.8; }
.instagram-button {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid var(--rose);
  border-radius: 50%;
  background: var(--rose-pale);
  transition: transform .2s ease, background .2s ease;
}
.instagram-button img { width: 23px; height: 23px; }
.instagram-button:hover { background: var(--rose-soft); transform: translateY(-2px); }
.instagram-button:active { transform: scale(.98); }
footer p { margin: 0 0 12px; color: var(--muted); font-size: 14px; }
footer a:not(.owner-link) { font-size: 17px; }
.privacy-note { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.7; }
.privacy-note a, .privacy-link { color: inherit; text-decoration: underline; text-underline-offset: 3px; }
.privacy-panel { width: min(760px, 100%); }
.privacy-panel h2 { margin-block: 32px 8px; font-family: var(--display); font-size: 32px; font-weight: 400; }
.privacy-panel p { color: var(--muted); line-height: 1.9; }
.owner-link { align-self: end; color: var(--muted); font-size: 13px; text-decoration: underline; }

.booking-dialog {
  width: min(1080px, calc(100vw - 30px));
  max-height: calc(100dvh - 30px);
  padding: 0;
  border: 0;
  border-radius: var(--radius);
  color: var(--ink);
  background: var(--paper);
}
.booking-dialog::backdrop { background: rgba(20,18,17,.72); backdrop-filter: blur(8px); }
.dialog-shell {
  position: relative;
  min-height: 670px;
  display: grid;
  grid-template-columns: .68fr 1.32fr;
}
.dialog-close {
  position: absolute;
  top: 18px;
  left: 20px;
  z-index: 2;
  width: 44px;
  height: 44px;
  border: 1px solid var(--rose-strong);
  border-radius: 50%;
  color: var(--rose-strong);
  background: transparent;
  font-size: 28px;
  line-height: 1;
}
.dialog-intro {
  padding: 70px 45px;
  color: var(--white);
  background:
    linear-gradient(rgba(228,138,153,.52), rgba(29,27,27,.72)),
    url("assets/nail-detail.webp") center / cover;
}
.dialog-intro > p:first-of-type { margin-top: 110px; color: #d8cfca; }
.dialog-intro h2 { margin: 12px 0; font-family: var(--display); font-size: 56px; font-weight: 400; line-height: 1.05; }
.dialog-intro > p:last-child { color: #d8cfca; line-height: 1.8; }
#bookingForm { padding: 34px 52px 40px; overflow-y: auto; }
.booking-progress {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
}
.booking-progress li { position: relative; display: grid; justify-items: center; gap: 6px; color: var(--muted); font-size: 12px; }
.booking-progress li:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 17px;
  right: calc(50% + 24px);
  width: calc(100% - 48px);
  height: 1px;
  background: var(--line);
}
.booking-progress span { display: grid; place-items: center; width: 34px; height: 34px; border: 1px solid var(--line); border-radius: 50%; background: var(--paper); }
.booking-progress .active, .booking-progress .complete { color: var(--rose-strong); }
.booking-progress .active span { color: var(--paper); border-color: var(--rose-strong); background: var(--rose-strong); }
.booking-progress .complete span { border-color: var(--rose); background: var(--rose-soft); }
.booking-panel[hidden] { display: none; }
.step-heading > span { color: var(--rose-strong); font-size: 12px; letter-spacing: .04em; }
.step-heading h3 { margin: 4px 0 6px; font-family: var(--display); font-size: 38px; font-weight: 400; line-height: 1.2; }
.step-heading p { margin: 0; color: var(--muted); font-size: 14px; }
.step-next { width: 100%; margin-top: 18px; }
.step-actions { display: grid; grid-template-columns: auto minmax(190px, 1fr); align-items: center; gap: 12px; margin-top: 24px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field label, fieldset legend { font-size: 14px; font-weight: 700; }
.field input, .field select {
  width: 100%;
  min-height: 48px;
  padding: 10px 14px;
  color: var(--ink);
  background: var(--rose-wash);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  outline: none;
}
.field input:focus, .field select:focus { border-color: var(--rose-strong); box-shadow: 0 0 0 3px rgba(139,49,91,.14); }
.phone-entry { display: grid; grid-template-columns: 118px minmax(0, 1fr); gap: 8px; }
.phone-entry select { padding-inline: 10px; direction: ltr; }
.field small { min-height: 20px; color: var(--muted); }
.field .field-error { display: block; color: #8d3232; }
.field input[aria-invalid="true"] { border-color: #8d3232; }
fieldset { min-inline-size: 0; margin: 26px 0 0; padding: 0; border: 0; }
fieldset legend { margin-bottom: 12px; }
.service-picker { margin-top: 20px; }
.service-picker > small { display: block; min-height: 22px; margin-top: 12px; color: var(--muted); }
.service-options { display: grid; gap: 18px; }
.service-group { border-bottom: 1px solid var(--line); }
.service-group summary {
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 10px 4px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
}
.service-group summary::-webkit-details-marker { display: none; }
.service-group summary::after { content: "+"; color: var(--rose-strong); font-size: 22px; font-weight: 400; }
.service-group[open] summary::after { content: "−"; }
.service-group summary:focus-visible { outline: 3px solid rgba(228,138,153,.18); outline-offset: 3px; }
.service-group-list { display: grid; gap: 7px; padding: 0 0 12px; }
.service-choice {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  min-height: 52px;
  padding: 9px 13px;
  border: 1px solid var(--line);
  border-radius: 2px;
  background: rgba(255,255,255,.42);
  cursor: pointer;
  transition: border-color .2s ease, background .2s ease;
}
.service-choice:hover, .service-choice:has(input:checked) { border-color: var(--rose); background: var(--rose-soft); }
.service-choice input { position: absolute; width: 1px; height: 1px; opacity: 0; }
.service-check { display: grid; place-items: center; width: 20px; height: 20px; border: 1px solid var(--line); border-radius: 50%; background: var(--paper); }
.service-choice input:checked + .service-check { border-color: var(--rose-strong); background: var(--rose-strong); }
.service-choice input:checked + .service-check::after { content: "✓"; color: var(--paper); font-size: 12px; }
.service-choice strong { min-width: 0; font-size: 14px; font-weight: 600; }
.service-choice small { min-height: 0; margin: 0; color: var(--rose-strong); white-space: nowrap; }
.service-choice:focus-within { outline: 3px solid rgba(228,138,153,.14); }
.date-browser { display: grid; grid-template-columns: 44px minmax(0, 1fr) 44px; gap: 8px; align-items: stretch; }
.date-strip {
  max-width: 100%;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
}
.date-arrow {
  position: relative;
  min-width: 44px;
  min-height: 76px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--rose-wash);
}
.date-arrow::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-block: 8px solid transparent;
  transform: translate(-50%, -50%);
}
.date-arrow-next::before { border-right: 11px solid var(--rose); margin-left: -2px; }
.date-arrow-previous::before { border-left: 11px solid var(--rose); margin-left: 2px; }
.date-arrow:hover { border-color: var(--rose); background: var(--rose-soft); }
.date-arrow:disabled { opacity: .35; cursor: not-allowed; }
.date-option, .slot-option {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  background: var(--rose-wash);
}
.date-option:hover, .slot-option:hover { border-color: var(--rose); background: var(--rose-soft); }
.date-option { min-height: 76px; padding: 9px 5px; }
.date-option span, .date-option small { display: block; }
.date-option span { font-size: 19px; margin: 3px 0; }
.date-option small { color: var(--muted); }
.date-option.selected, .slot-option.selected { color: var(--ink); background: var(--rose); border-color: var(--rose); }
.date-option.selected small { color: rgba(29,27,27,.72); }
.slot-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; min-height: 44px; }
.slot-option { min-height: 44px; direction: ltr; }
.empty-state { grid-column: 1 / -1; margin: 8px 0; color: var(--muted); font-size: 14px; }
.customer-fields { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 22px; }
.turnstile-field { min-height: 65px; margin-top: 18px; direction: ltr; }
.field-wide { grid-column: 1 / -1; }
.booking-summary { margin-top: 20px; padding: 16px 18px; border: 1px solid var(--line); background: var(--rose-wash); }
.booking-summary > div { display: grid; grid-template-columns: 82px 1fr; gap: 14px; padding: 8px 0; }
.booking-summary > div + div { border-top: 1px solid var(--line); }
.booking-summary span { color: var(--muted); font-size: 13px; }
.booking-summary strong { font-size: 14px; line-height: 1.7; }
.form-message { min-height: 22px; margin: 12px 0; color: #8d3232; font-size: 13px; }
.submit-booking { width: 100%; }
.booking-success {
  grid-column: 2;
  align-self: center;
  padding: 60px;
  text-align: center;
  text-shadow: 0 2px 16px rgba(29,27,27,.28);
}
.success-mark {
  display: grid;
  place-items: center;
  width: 70px;
  height: 70px;
  margin: 0 auto 24px;
  border: 1px solid var(--rose);
  border-radius: 50%;
  color: var(--rose);
  font-size: 32px;
}
.booking-success h2 { font-family: var(--display); font-size: 48px; font-weight: 400; margin: 0; }
.booking-success p { color: var(--muted); line-height: 1.9; }
.success-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-top: 24px; }
.text-button { padding: 8px 12px; border: 0; color: var(--rose-strong); background: transparent; text-decoration: underline; }
.confirmation-dialog {
  width: min(470px, calc(100vw - 32px));
  padding: 0;
  border: 0;
  border-radius: var(--radius);
  color: var(--ink);
  background: var(--paper);
}
.confirmation-dialog::backdrop { background: rgba(20,18,17,.58); backdrop-filter: blur(5px); }
.confirmation-dialog-content { padding: 42px; text-align: center; }
.confirmation-dialog .brand-ar { color: var(--rose-strong); font-size: 30px; }
.confirmation-dialog h2 { margin: 14px 0 8px; font-family: var(--display); font-size: 38px; font-weight: 400; line-height: 1.25; }
.confirmation-dialog p { margin: 0; color: var(--muted); }
.confirmation-dialog-actions { display: grid; gap: 10px; margin-top: 28px; }

.reveal { opacity: 0; transform: translateY(34px); transition: opacity .9s ease, transform .9s cubic-bezier(.16,1,.3,1); }
.reveal.visible { opacity: 1; transform: none; }

/* Owner dashboard */
.admin-body { min-height: 100dvh; background: #eee7e8; }
.admin-header {
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5vw;
  border-bottom: 1px solid var(--line);
}
.brand-dark { color: var(--rose); }
.admin-main { width: min(1180px, 90vw); margin: 0 auto; padding: 70px 0 110px; }
.login-panel { width: min(500px, 100%); margin: 7vh auto 0; padding: 48px; background: var(--rose-pale); }
.dark-eyebrow { color: var(--rose-strong); }
.login-panel h1, .dashboard-heading h1 { margin: 0; font-family: var(--display); font-size: 58px; font-weight: 400; }
.login-panel > p:not(.eyebrow) { color: var(--muted); line-height: 1.8; }
.login-panel form { display: grid; gap: 20px; margin-top: 28px; }
.dashboard-heading { display: flex; justify-content: space-between; align-items: end; }
.dashboard-heading p { margin: 0; color: var(--rose-strong); }
.dashboard-tabs {
  display: flex;
  gap: 35px;
  margin: 50px 0 28px;
  border-bottom: 1px solid var(--line);
}
.dashboard-tabs button {
  padding: 0 0 14px;
  border: 0;
  border-bottom: 2px solid transparent;
  color: var(--muted);
  background: transparent;
}
.dashboard-tabs button.active { color: var(--rose-strong); border-color: var(--rose-strong); }
.tab-panel { padding: 36px; background: var(--rose-pale); }
.panel-heading { display: flex; justify-content: space-between; align-items: center; gap: 30px; margin-bottom: 28px; }
.panel-heading h2 { margin: 0; color: var(--rose-strong); font-family: var(--display); font-size: 36px; font-weight: 400; }
.panel-heading p, .override-editor > p { margin: 5px 0 0; color: var(--muted); }
.appointment {
  display: grid;
  grid-template-columns: 130px 1fr 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}
.appointment-time strong { display: block; font-size: 20px; direction: ltr; }
.appointment-time span, .appointment-detail span, .appointment-customer span { color: var(--muted); font-size: 13px; }
.appointment-detail strong, .appointment-customer strong { display: block; margin-bottom: 5px; }
.appointment-actions { display: grid; gap: 8px; }
.whatsapp-link { min-height: 42px; display: inline-flex; align-items: center; justify-content: center; padding: 7px 12px; border: 1px solid var(--rose-strong); color: var(--rose-strong); text-align: center; }
.whatsapp-link:hover { color: var(--paper); background: var(--rose-strong); }
.messages-list { display: grid; gap: 14px; }
.customer-message { padding: 24px; border: 1px solid var(--line); background: rgba(255,255,255,.62); }
.customer-message header { display: flex; justify-content: space-between; gap: 24px; padding-bottom: 14px; border-bottom: 1px solid var(--line); }
.customer-message header strong, .customer-message header span { display: block; }
.customer-message header strong { margin-bottom: 4px; font-size: 18px; }
.customer-message header span, .customer-message time { color: var(--muted); font-size: 13px; }
.customer-message p { margin: 18px 0; white-space: pre-wrap; overflow-wrap: anywhere; line-height: 1.8; }
.message-meta { display: flex; flex-wrap: wrap; gap: 10px 24px; }
.message-meta a { color: var(--rose-strong); text-decoration: underline; text-underline-offset: 3px; }
.status-select { min-height: 44px; padding: 6px; border: 1px solid var(--line); background: var(--rose-wash); }
.hours-editor { margin-bottom: 30px; }
.schedule-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 28px; }
.schedule-actions .button { min-height: 46px; }
.schedule-actions .is-active { color: var(--paper); background: var(--rose-strong); border-color: var(--rose-strong); }
.schedule-workspace { display: grid; grid-template-columns: minmax(0, 1fr); gap: 18px; }
.schedule-calendar { padding: 28px; background: rgba(255,255,255,.62); border: 1px solid var(--line); }
.calendar-toolbar { display: grid; grid-template-columns: 46px minmax(0,1fr) 46px auto; align-items: center; gap: 12px; margin-bottom: 24px; }
.calendar-toolbar h3 { margin: 0; color: var(--ink); font-family: var(--display); font-size: 34px; font-weight: 400; text-align: center; }
.calendar-arrow { width: 46px; height: 46px; border: 1px solid var(--line); color: var(--rose-strong); background: transparent; font-size: 30px; line-height: 1; }
.calendar-arrow:hover { color: var(--paper); background: var(--rose-strong); }
.calendar-today { padding-inline: 12px; }
.select-month { margin: -8px 0 18px; }
.calendar-weekdays, .calendar-grid { display: grid; grid-template-columns: repeat(7, minmax(0,1fr)); gap: 7px; }
.calendar-weekdays { margin-bottom: 8px; color: var(--muted); font-size: 14px; text-align: center; }
.calendar-day { min-width: 0; min-height: 82px; display: flex; flex-direction: column; align-items: flex-start; justify-content: space-between; padding: 12px; border: 1px solid var(--line); color: var(--ink); background: rgba(255,255,255,.78); text-align: start; }
.calendar-day span { font-size: 20px; }
.calendar-day small { color: var(--muted); font-size: 12px; }
.calendar-day:hover, .calendar-day:focus-visible { border-color: var(--rose-strong); }
.calendar-day:disabled { cursor: not-allowed; opacity: .34; }
.calendar-day.is-closed { color: var(--muted); background: rgba(228,138,153,.09); }
.calendar-day.is-closed small { color: var(--rose-strong); }
.calendar-day.is-changed { box-shadow: inset 0 -3px 0 var(--rose); }
.calendar-day.is-today { outline: 2px solid var(--rose-strong); outline-offset: -2px; }
.calendar-day.is-selected { color: var(--paper); background: var(--rose-strong); border-color: var(--rose-strong); }
.calendar-day.is-selected small { color: var(--paper); }
.schedule-panel { padding: 28px; border: 1px solid var(--line); background: var(--paper); }
.selection-summary { margin: 0 0 22px; color: var(--rose-strong); font-weight: 600; }
.selection-form { display: grid; grid-template-columns: minmax(0, 1fr); gap: 14px; }
.selection-form .field, .selection-form input { width: 100%; min-width: 0; }
.selection-form input[type="time"] { direction: ltr; }
.selection-form .button { width: 100%; }
.selection-form .button, .selection-form .text-button, .selection-form .emergency-reason { grid-column: 1 / -1; }
.admin-body .schedule-thin-button { min-height: 38px; padding-block: 7px; }
.schedule-panel-heading { display: flex; justify-content: space-between; align-items: flex-start; gap: 20px; margin-bottom: 24px; }
.schedule-panel-heading h3 { margin: 0; color: var(--rose-strong); font-family: var(--display); font-size: 32px; font-weight: 400; }
.schedule-kicker { display: block; margin-bottom: 3px; color: var(--muted); font-size: 13px; }
.panel-close { width: 44px; height: 44px; flex: 0 0 44px; border: 1px solid var(--line); color: var(--rose-strong); background: transparent; font-size: 26px; }
.hours-row {
  display: grid;
  grid-template-columns: 130px 110px 1fr 1fr;
  align-items: center;
  gap: 18px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}
.hours-row input[type="time"] { min-height: 42px; padding: 8px; border: 1px solid var(--line); background: var(--rose-wash); }
.check-field { display: flex; align-items: center; gap: 8px; }
.check-field input { accent-color: var(--rose); }
.emergency-form textarea { min-height: 130px; resize: vertical; padding: 13px 15px; border: 1px solid rgba(28,25,24,.2); background: rgba(255,255,255,.72); color: var(--ink); font: inherit; line-height: 1.7; }
.emergency-preview { margin: 20px 0; padding: 18px; border: 1px solid var(--line); background: var(--rose-wash); line-height: 1.8; }
.emergency-preview:empty { display: none; }
.emergency-preview ul { margin: 10px 0 0; padding-inline-start: 22px; }
.emergency-whatsapp-links { display: grid; gap: 10px; margin-top: 18px; }
.emergency-whatsapp-links p { margin: 0 0 4px; color: var(--rose-strong); font-weight: 600; }
.emergency-whatsapp-links .button { width: 100%; }
.override-list-item, .admin-service-item {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  align-items: center;
  gap: 20px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}
.mini-button { min-height: 44px; padding: 7px 12px; border: 1px solid var(--rose-strong); color: var(--rose-strong); background: transparent; }
.mini-button:hover { color: var(--ink); background: var(--rose); }
.service-editor { display: grid; grid-template-columns: 1.5fr .7fr .7fr auto; align-items: end; gap: 14px; margin-bottom: 35px; }
.studio-editor { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); align-items: end; gap: 14px; margin-bottom: 35px; }
.studio-editor > .button { grid-column: 1 / -1; justify-self: start; }
.studio-content-panel { margin-top: 30px; }
.studio-content-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.studio-content-grid textarea { min-height: 110px; resize: vertical; padding: 13px 15px; border: 1px solid rgba(28,25,24,.2); background: rgba(255,255,255,.72); color: var(--ink); font: inherit; line-height: 1.7; }
.studio-content-grid textarea:focus { border-color: var(--rose-strong); box-shadow: 0 0 0 3px rgba(139,49,91,.14); outline: 0; }
.studio-content-grid .button { grid-column: 1 / -1; justify-self: start; }
.admin-service-item.is-inactive { opacity: .58; }
.studio-thumb { width: 64px; height: 64px; border-radius: 3px; object-fit: cover; }
.admin-service-item small { color: var(--muted); }
.save-message { position: fixed; left: 24px; bottom: 20px; min-height: 0; padding: 0; color: var(--ink); background: var(--rose); }
.save-message:not(:empty) { padding: 12px 18px; }

/* Owner dashboard visual refresh */
.admin-body {
  --rose-strong: #ad5269;
  background:
    radial-gradient(circle at 88% 8%, rgba(228,138,153,.18), transparent 28rem),
    radial-gradient(circle at 8% 92%, rgba(173,82,105,.08), transparent 32rem),
    #f4edef;
}
.admin-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-color: rgba(184,93,114,.12);
  background: rgba(250,246,247,.88);
  box-shadow: 0 8px 30px rgba(88,42,62,.05);
  backdrop-filter: blur(16px);
}
.admin-header > .text-link {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  border: 1px solid rgba(184,93,114,.24);
  border-radius: 10px;
  color: var(--rose-strong);
  background: rgba(255,255,255,.64);
}
.admin-header > .text-link::after { display: none; }
.admin-main { width: min(1240px, 92vw); }
.login-panel {
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(184,93,114,.14);
  border-radius: 22px;
  background: rgba(255,249,252,.9);
  box-shadow: 0 28px 75px rgba(126,54,72,.13);
}
.login-panel .field input,
.admin-body .service-editor input,
.admin-body .service-editor select,
.admin-body .selection-form input,
.admin-body .hours-row input[type="time"] {
  border-color: rgba(184,93,114,.18);
  border-radius: 10px;
  background: rgba(255,255,255,.82);
}
.login-panel .button { width: 100%; }
.admin-body .button {
  border-radius: 10px;
  font-weight: 700;
  box-shadow: none;
}
.admin-body .button-dark {
  color: var(--white);
  background: var(--rose-strong);
}
.admin-body .button-dark:hover { color: var(--white); background: #9d4c61; }
.admin-body .button-outline { background: rgba(255,255,255,.7); }
.admin-body .button-outline:hover { color: var(--white); background: var(--rose-strong); }
.dashboard-heading {
  padding: 28px 32px;
  border: 1px solid rgba(184,93,114,.13);
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(255,251,252,.96), rgba(248,215,229,.74));
  box-shadow: 0 18px 48px rgba(126,54,72,.08);
}
#logoutButton {
  min-height: 44px;
  padding: 9px 18px;
  border: 1px solid rgba(184,93,114,.3);
  border-radius: 10px;
  color: var(--rose-strong);
  background: rgba(255,255,255,.68);
  font-weight: 700;
}
#logoutButton::after { display: none; }
#logoutButton:hover { color: var(--white); background: var(--rose-strong); }
.dashboard-tabs {
  gap: 8px;
  margin: 24px 0;
  padding: 7px;
  border: 1px solid rgba(184,93,114,.12);
  border-radius: 14px;
  background: rgba(255,255,255,.58);
  box-shadow: 0 12px 32px rgba(126,54,72,.05);
}
.dashboard-tabs button {
  min-height: 44px;
  padding: 10px 22px;
  border: 0;
  border-radius: 9px;
  color: var(--muted);
  font-weight: 700;
  transition: color .2s ease, background .2s ease, transform .2s ease;
}
.dashboard-tabs button:hover { color: var(--rose-strong); background: rgba(228,138,153,.12); }
.dashboard-tabs button:active { transform: scale(.98); }
.dashboard-tabs button.active { color: var(--white); border: 0; background: var(--rose-strong); }
.tab-panel {
  border: 1px solid rgba(184,93,114,.12);
  border-radius: 20px;
  background: rgba(255,249,252,.9);
  box-shadow: 0 22px 58px rgba(126,54,72,.08);
}
.panel-heading { padding-bottom: 22px; border-bottom: 1px solid rgba(184,93,114,.12); }
.appointments-list, .admin-services { display: grid; gap: 12px; }
.appointment-month { display: grid; gap: 12px; }
.appointment-month-heading { margin: 18px 0 2px; padding-bottom: 10px; border-bottom: 2px solid var(--rose-strong); color: var(--rose-strong); font-family: var(--display); font-size: 26px; font-weight: 400; }
.appointment-day { display: grid; gap: 0; }
.appointment-day-heading { margin: 6px 0 0; padding: 10px 0; border-bottom: 1px solid rgba(184,93,114,.22); color: var(--ink); font-size: 18px; font-weight: 600; }
.appointment-day-list { display: grid; gap: 12px; }
.appointment,
.customer-message,
.admin-service-item {
  border: 1px solid rgba(184,93,114,.12);
  border-radius: 14px;
  background: rgba(255,255,255,.76);
  box-shadow: 0 10px 28px rgba(126,54,72,.05);
}
.appointment { padding: 20px; border-bottom: 1px solid rgba(184,93,114,.12); }
.appointment-time {
  padding: 13px 10px;
  border-radius: 10px;
  color: var(--rose-strong);
  background: rgba(228,138,153,.14);
  text-align: center;
}
.appointment-time strong { font-size: 24px; }
.status-select {
  min-width: 150px;
  border-color: rgba(184,93,114,.2);
  border-radius: 9px;
  background: rgba(255,255,255,.86);
}
.whatsapp-link,
.mini-button {
  border-radius: 9px;
  background: rgba(255,255,255,.7);
  font-weight: 700;
}
.customer-message { border-color: rgba(184,93,114,.12); }
.schedule-calendar,
.schedule-panel {
  border-color: rgba(184,93,114,.12);
  border-radius: 16px;
  background: rgba(255,255,255,.72);
}
.calendar-arrow,
.calendar-day,
.panel-close { border-radius: 9px; }
.calendar-day { border-color: rgba(184,93,114,.14); }
.admin-service-item { padding: 18px 20px; border-bottom: 1px solid rgba(184,93,114,.12); }
.service-editor {
  padding: 22px;
  border: 1px solid rgba(184,93,114,.12);
  border-radius: 14px;
  background: rgba(228,138,153,.08);
}
.save-message:not(:empty) {
  border: 1px solid rgba(184,93,114,.2);
  border-radius: 10px;
  box-shadow: 0 12px 34px rgba(126,54,72,.16);
}

/* Work gallery */
.gallery-body { background: var(--paper); }
.gallery-header {
  position: absolute;
  top: 0;
  inset-inline: 0;
  z-index: 20;
  min-height: 76px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 40px;
  padding: 10px 5vw;
  color: var(--paper);
  background: linear-gradient(to bottom, rgba(20,14,16,.42), transparent);
  border-bottom: 1px solid rgba(255,255,255,.28);
}
.gallery-header .brand-dark,
.gallery-header .gallery-nav a,
.gallery-header .gallery-nav a:hover,
.gallery-header .gallery-nav a[aria-current="page"] { color: var(--paper); text-shadow: 0 1px 12px rgba(0,0,0,.55); }
.gallery-nav { display: flex; gap: 32px; align-items: center; }
.gallery-nav a { position: relative; font-size: 14px; }
.gallery-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -6px;
  width: 100%;
  height: 1px;
  background: var(--paper);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .3s ease;
}
.gallery-nav a:hover, .gallery-nav a[aria-current="page"] { color: var(--rose-strong); }
.gallery-nav a:hover::after, .gallery-nav a[aria-current="page"]::after { transform: scaleX(1); }
.gallery-banner { position: relative; isolation: isolate; height: clamp(356px, 40vw, 576px); margin: 0; overflow: hidden; background: var(--rose-pale); }
.gallery-banner img { width: 100%; height: 100%; display: block; object-fit: cover; object-position: center top; }
.gallery-banner::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(24,18,18,.52), transparent 68%); }
.gallery-banner figcaption { position: absolute; z-index: 1; inset-inline: 6vw; bottom: clamp(28px, 5vw, 64px); color: var(--paper); }
.gallery-banner h1 { margin: 0; font-family: var(--display); font-size: clamp(52px, 7vw, 96px); font-weight: 400; line-height: 1.15; }
.gallery-banner p { margin: 6px 0 0; font-size: clamp(16px, 1.7vw, 22px); }
.gallery-hero {
  min-height: 52dvh;
  display: flex;
  align-items: flex-end;
  padding: clamp(90px, 12vw, 180px) 6vw 70px;
  background: linear-gradient(145deg, var(--rose-pale), var(--paper) 72%);
}
.gallery-hero > div { width: min(760px, 100%); }
.gallery-hero h1, .gallery-cta h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(58px, 8vw, 112px);
  font-weight: 400;
  line-height: 1;
}
.gallery-hero p, .gallery-cta p {
  max-width: 590px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 2;
}
.gallery-section { padding: 22px 4vw clamp(100px, 12vw, 180px); background: var(--rose-pale); }
.gallery-grid { max-width: 1540px; margin: 0 auto; columns: 3 300px; column-gap: 16px; }
.gallery-item {
  break-inside: avoid;
  margin: 0 0 16px;
  overflow: hidden;
  background: var(--paper-deep);
}
.gallery-item img { height: auto; transition: transform .7s cubic-bezier(.16,1,.3,1); }
/* display-ar-public-marker */
 .intro h2,
 .section-heading h2,
 .experience h2,
 .booking-callout h2,
 .contact-details h2,
 .service-category-heading strong,
 .gallery-banner h1,
 .gallery-hero h1,
 .gallery-cta h2 { font-family: var(--display-ar); }
/* white-logo-accent-text-marker */
.service-category-item strong,
.service-choice small,
.contact-details .eyebrow,
footer a:hover {
  color: var(--white);
  font-family: var(--logo-ar);
}
.service-category-item strong,
.service-choice small,
#servicePrice,
#studioServicePrice { color: #000; }
.price-text { color: #000; font: inherit; }
.booking-summary .price-text { color: #000; font: inherit; }
.intro-stat dt { color: var(--rose); }
footer .footer-brand,
footer .footer-brand span,
footer .footer-brand small { color: var(--ink); }

@media (hover: hover) and (pointer: fine) {
  .portrait-media:hover img { transform: scale(1.025); }
  .service-category-card:hover { transform: translateY(-5px); background: rgba(241,239,237,.68); box-shadow: 0 24px 55px rgba(93,32,59,.14); }
  .service-category-card:hover .service-category-media img { transform: scale(1.025); }
  .gallery-item:hover img { transform: scale(1.025); }
}

:where(a, button, input, select):focus-visible {
  outline: 3px solid var(--rose-strong);
  outline-offset: 3px;
}

.booking-step, #bookingForm, .appointment > *, .hours-row > * { min-width: 0; }
.gallery-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: clamp(90px, 11vw, 160px) 20px;
  text-align: center;
  background: var(--paper-deep);
}
.gallery-cta h2 { max-width: 850px; font-size: clamp(46px, 6.5vw, 88px); }
.gallery-cta p { margin-bottom: 32px; }

@media (max-width: 900px) {
  :root { --header-height: 68px; }
  body { font-size: 17px; line-height: 1.75; }
  [id] { scroll-margin-top: calc(var(--header-height) + 20px); }
  .site-header {
    height: calc(var(--header-height) + env(safe-area-inset-top));
    grid-template-columns: 1fr auto;
    padding-top: env(safe-area-inset-top);
    padding-inline: max(20px, env(safe-area-inset-left)) max(20px, env(safe-area-inset-right));
  }
  .site-header.scrolled { height: calc(66px + env(safe-area-inset-top)); }
  .admin-header > a, .gallery-nav a { min-height: 44px; display: inline-flex; align-items: center; }
  .gallery-nav a { font-size: 15px; }
  .desktop-nav, .header-book { display: none; }
  .menu-button {
    justify-self: end;
    display: grid;
    place-content: center;
    gap: 7px;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 0;
    background: transparent;
  }
  .menu-button span { display: block; width: 28px; height: 1px; background: currentColor; transition: transform .25s ease; }
  .menu-button.active span:first-child { transform: translateY(4px) rotate(45deg); }
  .menu-button.active span:last-child { transform: translateY(-4px) rotate(-45deg); }
  .menu-backdrop {
    position: fixed;
    inset: 0;
    z-index: 21;
    display: block;
    width: 100%;
    height: 100dvh;
    padding: 0;
    border: 0;
    background: rgba(62, 25, 40, .42);
    backdrop-filter: blur(3px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .4s ease, visibility 0s linear .4s;
  }
  .menu-backdrop.open { opacity: 1; visibility: visible; pointer-events: auto; transition-delay: 0s; }
  .mobile-menu {
    position: fixed;
    inset: 0 0 0 auto;
    z-index: 25;
    width: min(82vw, 380px);
    display: flex;
    flex-direction: column;
    min-height: 100dvh;
    padding: max(24px, env(safe-area-inset-top)) max(24px, env(safe-area-inset-right)) max(28px, env(safe-area-inset-bottom)) 24px;
    color: var(--ink);
    background:
      radial-gradient(circle at 100% 0%, rgba(228,138,153,.22), transparent 34%),
      var(--paper);
    border-left: 1px solid rgba(228,138,153,.55);
    box-shadow: -24px 0 70px rgba(62,25,40,.16);
    transform: translateX(102%);
    visibility: hidden;
    pointer-events: none;
    overflow-y: auto;
    overscroll-behavior: contain;
    transition: transform .45s cubic-bezier(.16,1,.3,1), visibility 0s linear .45s;
  }
  .mobile-menu.open { transform: translateX(0); visibility: visible; pointer-events: auto; transition-delay: 0s; }
  .mobile-menu-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: clamp(34px, 8vh, 72px);
  }
  .mobile-menu-brand { display: inline-flex; flex-direction: column; align-items: center; color: var(--rose-strong); }
  .mobile-menu-brand .brand-en { display: block; }
  .drawer-close {
    flex: 0 0 46px;
    width: 46px;
    height: 46px;
    padding: 0;
    border: 1px solid var(--rose-strong);
    border-radius: 50%;
    color: var(--rose-strong);
    background: rgba(241,239,237,.72);
    font-size: 27px;
    line-height: 1;
  }
  .mobile-menu a, .mobile-menu .nav-action {
    width: 100%;
    min-height: 58px;
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    padding: 7px 2px;
    border-bottom: 1px solid rgba(228,138,153,.25);
    font-family: var(--display);
    font-size: 28px;
    line-height: 1.25;
    text-align: right;
  }
  .mobile-menu .button {
    width: 100%;
    min-height: 52px;
    justify-content: center;
    margin-top: auto;
    border-bottom: 0;
    font-family: var(--body);
    font-size: 16px;
  }
  .hero { min-height: 125dvh; }
  .hero-content {
    width: 100%;
    padding-inline: max(24px, env(safe-area-inset-right)) max(24px, env(safe-area-inset-left));
  }
  .brand-ar { line-height: 1.05; }
  .eyebrow { font-size: 15px; line-height: 1.6; letter-spacing: 0; }
  .hero h1 { font-size: clamp(50px, 14vw, 76px); line-height: 1.15; }
  .intro { min-height: 0; grid-template-columns: 1fr; gap: 45px; padding-inline: 20px; }
  .intro::before { border-radius: 50% 50% 0 0 / 10vw 10vw 0 0; }
  .intro-copy, .intro-stats { padding: 0; }
  .portrait-media { width: min(82%, 420px); margin-inline: auto; }
  .intro-stats {
    width: 88%;
    max-width: none;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin-right: 8vw;
  }
  .intro-stat:last-child { border-bottom: 0; }
  .service-list { grid-template-columns: 1fr; max-width: 680px; }
  .service-list { display: flex; max-width: none; overflow-x: auto; gap: 14px; padding-inline: 4px 20px; padding-bottom: 10px; scroll-snap-type: x mandatory; overscroll-behavior-x: contain; scrollbar-width: none; -ms-overflow-style: none; }
  .service-list::-webkit-scrollbar { display: none; }
  .service-category-card { flex: 0 0 min(78vw, 310px); scroll-snap-align: start; }
  .service-category-media { aspect-ratio: 16 / 10; }
  .experience { grid-template-columns: 1fr; padding-inline: 20px; }
  .experience-media img { min-height: 430px; }
  .booking-callout { grid-template-columns: 1fr; align-items: start; }
  .contact-section { grid-template-columns: 1fr; gap: 52px; }
  .contact-details { position: static; }
  footer { grid-template-columns: 1fr 1fr; padding-bottom: max(70px, env(safe-area-inset-bottom)); }
  footer a:not(.owner-link), .owner-link { min-height: 44px; display: inline-flex; align-items: center; width: max-content; }
  footer .instagram-button { width: 48px; min-width: 48px; }
  .booking-dialog {
    height: min(740px, calc(100dvh - 24px));
    overflow: hidden;
  }
  .dialog-shell {
    height: 100%;
    min-height: 0;
    grid-template-columns: 1fr;
    grid-template-rows: auto minmax(0, 1fr);
  }
  .dialog-intro {
    display: block;
    padding: 22px max(24px, env(safe-area-inset-right)) 18px max(76px, calc(env(safe-area-inset-left) + 64px));
    color: var(--ink);
    background: linear-gradient(135deg, var(--rose-pale), var(--paper));
    border-bottom: 1px solid var(--line);
  }
  .dialog-intro .brand-ar, .dialog-intro > p:first-of-type { display: none; }
  .dialog-intro h2 { margin: 0; font-size: clamp(36px, 8vw, 46px); line-height: 1.2; }
  .dialog-intro > p:last-child { margin: 4px 0 0; color: var(--muted); font-size: 15px; line-height: 1.7; }
  .dialog-close { top: max(14px, env(safe-area-inset-top)); left: max(18px, env(safe-area-inset-left)); }
  #bookingForm, .booking-success {
    grid-row: 2;
    min-height: 0;
    overflow-y: auto;
    overscroll-behavior: contain;
  }
  #bookingForm { padding: 24px max(24px, env(safe-area-inset-right)) max(34px, env(safe-area-inset-bottom)) max(24px, env(safe-area-inset-left)); }
  .booking-success { grid-column: 1; padding: 48px 24px max(40px, env(safe-area-inset-bottom)); }
  .appointment { grid-template-columns: 90px 1fr auto; }
  .appointment-customer { grid-column: 2; }
  .override-form, .service-editor, .studio-editor { grid-template-columns: 1fr 1fr; }
  .gallery-grid { columns: 2 240px; }
}

@media (max-width: 580px) {
  body { line-height: 1.8; }
  .section { padding: 82px max(20px, env(safe-area-inset-right)) 82px max(20px, env(safe-area-inset-left)); }
  .hero-shade { background: radial-gradient(ellipse 72% 44% at 50% 50%, rgba(228,138,153,.72), transparent 74%), radial-gradient(ellipse 115% 56% at 70% 82%, rgba(228,138,153,.34), transparent 70%); }
  .hero-media video { object-position: center; }
  .hero-content > p:not(.eyebrow) { font-size: 17px; line-height: 1.85; }
  .intro h2, .section-heading h2, .experience h2, .booking-callout h2, .contact-details h2 { font-size: clamp(42px, 13vw, 58px); line-height: 1.22; }
  .intro-copy p, .section-heading p, .experience-copy > p, .booking-callout p, .contact-details > p:not(.eyebrow) { font-size: 17px; line-height: 1.9; text-wrap: pretty; }
  .section-heading { text-align: right; margin-bottom: 45px; }
  .service-category-heading { min-height: 78px; }
  .service-category-heading strong { font-size: 30px; }
  .service-category-item { font-size: 16px; }
  .experience-media img { min-height: 360px; }
  .booking-callout { padding-block: 75px; }
  .contact-section { gap: 40px; padding-bottom: 150px; }
  .contact-form { padding: 26px 20px; }
  .contact-field-row { grid-template-columns: 1fr; }
  .site-toast { inset-inline: 16px; bottom: max(16px, env(safe-area-inset-bottom)); max-width: none; text-align: center; }
  footer {
    grid-template-columns: 1fr;
    min-height: 0;
    gap: 34px;
    margin-top: -54px;
    padding: 82px max(24px, env(safe-area-inset-right)) max(60px, env(safe-area-inset-bottom)) max(24px, env(safe-area-inset-left));
    border-radius: 64px 64px 0 0;
  }
  .footer-main { flex-direction: column; align-items: flex-start; gap: 28px; }
  .footer-social { grid-template-columns: minmax(0, 1fr) 48px; width: 100%; }
  footer p, .owner-link { font-size: 16px; line-height: 1.65; }
  .owner-link { align-self: auto; }
  .booking-dialog { width: 100vw; max-width: none; max-height: 100dvh; height: 100dvh; border-radius: 0; }
  .dialog-shell { height: 100%; min-height: 0; }
  .date-strip {
    width: 100%;
    min-width: 0;
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: minmax(64px, 1fr);
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
  }
  .date-option { scroll-snap-align: start; }
  .date-option small { font-size: 13px; line-height: 1.4; }
  .slot-grid { grid-template-columns: repeat(3, 1fr); }
  .service-options { grid-template-columns: 1fr; }
  .field label, fieldset legend { font-size: 16px; line-height: 1.6; }
  .field small, .service-picker small, .empty-state, .form-message { font-size: 16px; line-height: 1.65; }
  .text-button { min-height: 44px; display: inline-flex; align-items: center; }
  .customer-fields { grid-template-columns: 1fr; }
  .confirmation-dialog-content { padding: 36px 24px; }
  .admin-header {
    min-height: calc(68px + env(safe-area-inset-top));
    height: auto;
    padding: env(safe-area-inset-top) max(16px, env(safe-area-inset-right)) 0 max(16px, env(safe-area-inset-left));
  }
  .admin-header > a { min-height: 44px; display: inline-flex; align-items: center; }
  .admin-main { width: calc(100% - 32px); margin-inline: auto; padding: 35px 0 max(90px, env(safe-area-inset-bottom)); }
  .login-panel, .tab-panel { padding: 30px 20px; }
  .login-panel h1, .dashboard-heading h1 { font-size: clamp(42px, 13vw, 54px); line-height: 1.2; }
  .dashboard-heading, .panel-heading { flex-direction: column; align-items: stretch; gap: 16px; }
  .dashboard-heading { padding: 24px 20px; }
  #logoutButton { width: 100%; }
  .panel-heading .button { width: 100%; }
  .dashboard-tabs {
    gap: 22px;
    margin: 34px 0 22px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: x proximity;
    scrollbar-width: none;
  }
  .dashboard-tabs button { flex: 0 0 auto; min-height: 48px; padding: 10px 16px; scroll-snap-align: start; }
  .appointment { grid-template-columns: 78px minmax(0, 1fr); align-items: start; gap: 14px; padding: 16px; }
  .appointment-detail strong, .appointment-customer strong, .appointment-detail span, .appointment-customer span { overflow-wrap: anywhere; }
  .appointment-time span, .appointment-detail span, .appointment-customer span { font-size: 15px; line-height: 1.6; }
  .appointment-customer { grid-column: 2; }
  .appointment-actions { grid-column: 1 / -1; width: 100%; }
  .appointment .status-select { width: 100%; }
  .customer-message { padding: 20px 16px; }
  .customer-message header { flex-direction: column; gap: 8px; }
  .hours-row { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); align-items: end; gap: 12px; }
  .hours-row input[type="time"] { width: 100%; min-width: 0; direction: ltr; }
  .check-field { min-height: 44px; }
  .service-editor, .studio-editor, .studio-content-grid, .selection-form { grid-template-columns: 1fr; }
  .schedule-actions { display: grid; grid-template-columns: 1fr 1fr; }
  .schedule-actions .button { width: 100%; padding-inline: 12px; }
  .schedule-calendar { padding: 16px 4px; }
  .calendar-toolbar { grid-template-columns: 44px minmax(110px,1fr) 44px; gap: 6px; }
  .calendar-toolbar h3 { font-size: 27px; line-height: 1.2; white-space: nowrap; }
  .calendar-today { grid-column: 1 / -1; justify-self: center; }
  .select-month { margin-inline: 8px; }
  .calendar-weekdays, .calendar-grid { gap: 4px; }
  .calendar-weekdays { font-size: 10px; line-height: 1.25; }
  .calendar-weekdays span { min-width: 0; overflow: hidden; text-overflow: clip; white-space: nowrap; }
  .calendar-day { width: 100%; min-height: 44px; align-items: center; justify-content: center; padding: 2px; text-align: center; }
  .calendar-day span { font-size: 18px; line-height: 1; }
  .calendar-day small { position: absolute; width: 1px; height: 1px; overflow: hidden; clip-path: inset(50%); white-space: nowrap; }
  .schedule-workspace { grid-template-columns: 1fr; }
  .schedule-panel { position: static; padding: 22px 16px; }
  .schedule-panel-heading h3 { font-size: 28px; }
  .service-editor .button, .selection-form .button, #reopenSelectedDays { width: 100%; }
  .override-list-item, .admin-service-item { grid-template-columns: 1fr auto; }
  .override-list-item span:nth-child(2), .admin-service-item small { grid-column: 1; }
  .save-message { left: auto; right: auto; inset-inline: 16px; bottom: max(16px, env(safe-area-inset-bottom)); text-align: center; }
  .gallery-header { gap: 12px; padding-inline: max(16px, env(safe-area-inset-right)) max(16px, env(safe-area-inset-left)); }
  .gallery-header .brand { min-height: 48px; justify-content: center; }
  .gallery-nav { justify-self: end; gap: 8px; }
  .gallery-nav a { min-height: 44px; display: inline-flex; align-items: center; padding-inline: 4px; font-size: 15px; line-height: 1.5; }
  .gallery-banner { height: 42dvh; min-height: 290px; max-height: 400px; }
  .gallery-banner img { object-position: center top; }
  .gallery-banner figcaption { inset-inline: 20px; bottom: 28px; }
  .gallery-banner h1 { font-size: clamp(44px, 13vw, 58px); }
  .gallery-banner p { font-size: 16px; }
  .gallery-hero { min-height: 46dvh; padding-inline: 20px; }
  .gallery-hero h1, .gallery-cta h2 { font-size: clamp(44px, 14vw, 60px); line-height: 1.2; }
  .gallery-hero p, .gallery-cta p { font-size: 17px; line-height: 1.9; text-wrap: pretty; }
  .gallery-section { padding-inline: 10px; }
  .gallery-grid { columns: 2; column-gap: 10px; }
  .gallery-item { margin-bottom: 10px; }
  .gallery-cta .button { width: min(100%, 320px); display: inline-flex; align-items: center; justify-content: center; }
}

@media (max-width: 360px) {
  .hero h1 { font-size: clamp(38px, 15vw, 46px); max-inline-size: 100%; }
  .slot-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-header .brand-en { letter-spacing: .2em; }
}

@media (max-width: 320px) {
  .hero-content { padding-inline: max(16px, env(safe-area-inset-right)) max(16px, env(safe-area-inset-left)); }
  .hero-content .button-large { max-inline-size: 100%; padding-inline: clamp(28px, 12vw, 44px); font-size: clamp(18px, 5vw, 20px); }
  .button { max-inline-size: 100%; white-space: normal; overflow-wrap: anywhere; }
}

@media (max-width: 900px) and (max-height: 500px) {
  .mobile-menu {
    width: min(68vw, 430px);
    padding-block: max(14px, env(safe-area-inset-top)) max(14px, env(safe-area-inset-bottom));
  }
  .mobile-menu-head { margin-bottom: 8px; }
  .mobile-menu-brand .brand-ar { font-size: 25px; }
  .drawer-close { width: 42px; height: 42px; flex-basis: 42px; }
  .mobile-menu a, .mobile-menu .nav-action { min-height: 39px; padding-block: 2px; font-size: 22px; }
  .mobile-menu .button { min-height: 44px; margin-top: 8px; }
  .hero-content { max-width: 650px; padding-bottom: max(18px, env(safe-area-inset-bottom)); }
  .hero .eyebrow { margin-bottom: 6px; }
  .hero h1 { font-size: clamp(38px, 7vw, 52px); line-height: 1.12; }
  .hero-content > p:not(.eyebrow) { margin: 8px 0 12px; font-size: 15px; line-height: 1.55; }
  .hero-content .button-large { min-height: 54px; padding: 10px 44px; font-size: 18px; }
  .dialog-intro { padding-block: 12px; }
  .dialog-intro h2 { font-size: 32px; }
  .dialog-intro > p:last-child { display: none; }
  #bookingForm { padding-block: 16px max(22px, env(safe-area-inset-bottom)); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .hero-media video { animation: none !important; }
  .reveal { opacity: 1; transform: none; }
  .hero { min-height: 100dvh; }
  .curtain-strip { display: none; }
  .intro::before { transform: scaleX(1.06); }
}

.studio-content-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.studio-preview-dialog { width: min(680px, 92vw); border: 1px solid var(--line); padding: 34px; color: var(--ink); background: var(--paper); }
.studio-preview-dialog::backdrop { background: rgba(29,27,27,.45); }
.studio-preview-dialog h2 { font-family: var(--logo-ar); font-size: 42px; font-weight: 400; }
.studio-preview-dialog h3 { margin-top: 24px; color: var(--rose-strong); font-family: var(--display); font-size: 26px; font-weight: 400; }
.studio-preview-dialog hr { border: 0; border-top: 1px solid var(--line); margin: 24px 0; }



























/* Service duration text only. */
.duration-text, .appointment .duration-text, #serviceDuration, #studioServiceDuration { color: #000; }

/* Footer Instagram button. */
footer .footer-social { grid-template-columns: minmax(0, 1fr); }
footer a.instagram-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: max-content;
  max-width: 100%;
  min-height: 48px;
  height: auto;
  padding: 10px 18px;
  border-radius: 999px;
  border-color: #E48A99;
  background: rgba(228, 138, 153, .08);
  color: var(--ink);
  font-family: inherit;
  direction: ltr;
}
footer .instagram-button img { flex-shrink: 0; }
footer a.instagram-button:hover,
footer a.instagram-button:focus-visible {
  color: var(--ink);
  background: rgba(228, 138, 153, .22);
}
@media (prefers-reduced-motion: reduce) {
  footer a.instagram-button { transition: none; transform: none; }
}

