@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('/assets/manrope-latin.woff2') format('woff2');
}
:root {
  --studio-metal: #ba9563;
  --ink: #1c1917;
  --muted: #6b6560;
  --bronze: #7a4b18;
  --hover: #96601f;
  --paper: #fdfbf7;
  --cream: #f5f1ea;
  --warm: #faf3e8;
  --line: #e3ddd5;
  --pale: #e8d5b7;
  --space: clamp(24px, 5vw, 80px);
  font-family: 'Manrope', sans-serif;
  color: var(--ink);
  background: var(--paper);
  font-synthesis: none;
}

/* Bronze studio: photographic set, live HTML copy and the unaltered App Store screen. */
.home-studio > .topline {
  display: none;
}
.home-studio > header {
  position: absolute;
  z-index: 5;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1536px;
}
.home-studio .site-header {
  border: 0;
  min-height: 112px;
}
.home-studio header .wordmark {
  width: auto;
}
.home-studio .studio-brand {
  color: var(--ink);
  font-size: clamp(24px, 2.5vw, 38px);
  font-weight: 700;
  letter-spacing: -0.05em;
}
.home-studio .nav a {
  font-size: 17px;
}
.home-studio .nav .pill {
  border-radius: 32px;
  padding-inline: 30px;
}
.bronze-hero {
  position: relative;
  min-height: 720px;
  height: min(66.6667vw, 1024px);
  max-height: 1100px;
  overflow: hidden;
  isolation: isolate;
  background: var(--warm);
  perspective: 1400px;
}
.bronze-backdrop {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}
.bronze-copy {
  position: absolute;
  left: max(5vw, calc((100vw - 1380px) / 2));
  top: 27%;
  width: 49%;
  z-index: 2;
}
.bronze-copy .eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.17em;
  font-size: clamp(11px, 1vw, 15px);
  margin: 0 0 25px;
}
.bronze-copy h1 {
  font-size: clamp(46px, 5.5vw, 86px);
  font-weight: 700;
  letter-spacing: -0.05em;
  line-height: 1.13;
  margin: 0 0 26px;
}
.bronze-intro {
  font-size: clamp(20px, 2.4vw, 36px);
  line-height: 1.4;
  color: var(--ink);
  margin: 0 0 45px;
}
.bronze-copy .actions {
  gap: 22px;
  margin: 0;
}
.bronze-copy .pill {
  font-size: clamp(14px, 1.3vw, 20px);
  padding: 22px 28px;
  border-radius: 12px;
  gap: 12px;
}
.bronze-copy .pill.outline {
  border-color: var(--bronze);
  color: var(--bronze);
  background: #fdfbf74d;
}
.bronze-copy .pill svg {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
}
.bronze-device {
  position: absolute;
  display: block;
  width: 21.5%;
  max-width: 330px;
  left: 71.5%;
  bottom: 17%;
  border: 8px solid var(--ink);
  border-radius: 43px;
  background: var(--ink);
  transform: translateX(-50%) rotateY(-12deg) rotateZ(3deg);
  box-shadow:
    2px 0 0 2px var(--studio-metal),
    7px 2px 0 3px var(--ink),
    9px 2px 0 3px var(--studio-metal),
    18px 22px 20px #1c19174d;
  transition: transform 250ms ease;
}
.bronze-device:hover {
  transform: translateX(-50%) rotateY(-8deg) rotateZ(2deg) translateY(-3px);
}
.device-screen {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 479/1045;
  border-radius: 34px;
  overflow: hidden;
  background: var(--paper);
}
.device-screen img {
  position: absolute;
  width: 134.45%;
  max-width: none;
  height: auto;
  left: -17.12%;
  top: -29.67%;
}
.device-notch {
  position: absolute;
  top: -1px;
  left: 30%;
  width: 40%;
  height: 20px;
  border-radius: 0 0 14px 14px;
  background: var(--ink);
}
@media (min-width: 1537px) {
  .bronze-backdrop {
    object-fit: fill;
  }
}
@media (max-width: 1050px) and (min-width: 761px) {
  .home-studio .nav {
    gap: 16px;
  }
  .home-studio .nav a {
    font-size: 13px;
  }
  .bronze-copy {
    top: 26%;
    width: 49%;
  }
  .bronze-copy h1 {
    font-size: 5.5vw;
  }
  .bronze-copy .actions {
    gap: 12px;
    flex-direction: column;
    align-items: flex-start;
  }
  .bronze-copy .pill {
    padding: 17px 23px;
  }
  .bronze-device {
    width: 25%;
    bottom: 18%;
    left: 76%;
  }
}
@media (max-width: 760px) {
  .home-studio > header {
    padding-inline: 24px;
  }
  .home-studio .site-header {
    min-height: 88px;
  }
  .home-studio .studio-brand {
    font-size: 24px;
    letter-spacing: -0.05em;
  }
  .home-studio .nav {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 12px 18px;
    box-shadow: 0 12px 30px #1c19171a;
  }
  .home-studio .nav a {
    font-size: 14px;
  }
  .home-studio .menu-toggle {
    background: var(--paper);
  }
  .bronze-hero {
    height: 1090px;
    min-height: 0;
    max-height: none;
  }
  .bronze-backdrop {
    top: auto;
    bottom: 0;
    height: 600px;
    mask-image: linear-gradient(to bottom, transparent, black 15%);
    width: 900px;
    max-width: none;
    left: calc(50% - 652px);
    object-fit: fill;
  }
  .bronze-copy {
    position: relative;
    top: auto;
    left: auto;
    width: auto;
    padding: 128px 24px 0;
  }
  .bronze-copy .eyebrow {
    font-size: 10px;
    margin-bottom: 19px;
  }
  .bronze-copy h1 {
    font-size: clamp(40px, 9.5vw, 64px);
    margin-bottom: 22px;
  }
  .bronze-intro {
    font-size: 22px;
    margin-bottom: 28px;
    max-width: 330px;
  }
  .bronze-copy .actions {
    gap: 12px;
  }
  .bronze-copy .pill {
    font-size: 14px;
    padding: 15px 18px;
    min-height: 54px;
  }
  .bronze-copy .pill svg {
    width: 21px;
    height: 21px;
  }
  .bronze-device {
    width: 218px;
    left: 50%;
    bottom: 105px;
    border-width: 7px;
    border-radius: 33px;
  }
  .device-screen {
    border-radius: 25px;
  }
  .device-notch {
    height: 14px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .bronze-device {
    transition: none;
  }
  .bronze-device:hover {
    transform: translateX(-50%) rotateY(-12deg) rotateZ(3deg);
  }
}
* {
  box-sizing: border-box;
}
[hidden] {
  display: none !important;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 30px;
}
body {
  margin: 0;
}
a {
  color: inherit;
  text-underline-offset: 5px;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
button,
a,
summary {
  -webkit-tap-highlight-color: transparent;
}
button {
  font: inherit;
  cursor: pointer;
}
a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--bronze);
  outline-offset: 5px;
}
p {
  line-height: 1.7;
  margin: 0 0 20px;
}
h1,
h2,
h3,
.wordmark {
  font-family: 'Manrope', sans-serif;
  font-weight: 500;
}
h1 {
  font-size: clamp(44px, 5.9vw, 86px);
  line-height: 1.04;
  letter-spacing: -0.055em;
  margin: 20px 0 28px;
}
h2 {
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.1;
  letter-spacing: -0.04em;
  margin: 16px 0 24px;
}
h3 {
  font-size: 28px;
  line-height: 1.15;
  margin: 0 0 16px;
}
em {
  color: inherit;
  font-style: normal;
}
.wrap {
  max-width: 1440px;
  margin: auto;
  padding-inline: var(--space);
}
.eyebrow {
  font-size: 13px;
  line-height: 1.6;
  letter-spacing: 0.01em;
  text-transform: none;
  font-weight: 600;
}
.muted {
  color: var(--muted);
}
.small {
  font-size: 13px;
  line-height: 1.6;
}
.skip {
  position: absolute;
  top: -80px;
  left: 20px;
  padding: 14px;
  background: var(--paper);
  z-index: 10;
}
.skip:focus {
  top: 10px;
}
.topline {
  background: var(--ink);
  color: var(--paper);
  text-align: center;
  padding: 10px 20px;
  font-size: 11px;
  letter-spacing: 0.08em;
}
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 100px;
  border-bottom: 1px solid var(--line);
}
.wordmark {
  font-size: 29px;
  letter-spacing: -1.7px;
  text-decoration: none;
  white-space: nowrap;
}
.wordmark span {
  color: var(--bronze);
}
.nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav a {
  font-size: 13px;
  text-decoration: none;
  padding-block: 14px;
}
.nav a:hover,
.nav a[aria-current='page'] {
  color: var(--bronze);
}
.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  border: 1px solid var(--bronze);
  border-radius: 5px;
  background: var(--bronze);
  color: white;
  padding: 16px 25px;
  min-height: 48px;
  text-decoration: none;
  font-size: 14px;
  transition:
    background 0.18s ease,
    transform 0.18s ease;
}
.pill:hover {
  background: var(--hover);
  transform: translateY(-2px);
}
.pill:active {
  transform: translateY(0);
}
.pill.outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}
.pill.outline:hover {
  background: var(--cream);
}
.nav .pill {
  padding: 13px 23px;
  color: white;
}
.menu-toggle {
  display: none;
  background: none;
  border: 1px solid var(--line);
  padding: 12px;
  border-radius: 6px;
  min-height: 44px;
}
.hero {
  display: grid;
  grid-template-columns: 1.03fr 1fr;
  min-height: 650px;
  align-items: center;
  gap: 3vw;
  padding-block: 58px 62px;
}
.hero-copy {
  max-width: 660px;
}
.hero-copy .intro {
  font-size: 16px;
  max-width: 430px;
}
.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin: 28px 0;
}
.hero-note {
  max-width: 420px;
  font-size: 12px;
  color: var(--muted);
}
.hero-art {
  position: relative;
  min-height: 530px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.salon-photo {
  position: absolute;
  inset: 30px 5% 30px 0;
  width: 80%;
  height: 470px;
  object-fit: cover;
  object-position: 65% center;
  border-radius: 180px 180px 8px 8px;
}
.app-preview {
  position: relative;
  width: 235px;
  margin-right: 6%;
  border: 6px solid var(--paper);
  border-radius: 25px;
  box-shadow: 0 20px 60px #1c19172e;
  transform: rotate(5deg);
}
.photo-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.hero-art:before {
  content: '';
  position: absolute;
  width: 290px;
  height: 290px;
  border: 1px solid var(--pale);
  border-radius: 50%;
  right: 0;
  top: 0;
}
.feature-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-block: 1px solid var(--line);
  padding-block: 28px;
  gap: 25px;
}
.feature {
  display: flex;
  gap: 20px;
  align-items: center;
}
.feature + .feature {
  border-left: 1px solid var(--line);
  padding-left: 30px;
}
.feature svg {
  width: 30px;
  height: 30px;
  color: var(--bronze);
  flex-shrink: 0;
}
.feature strong {
  font-family: 'Manrope', sans-serif;
  font-weight: 400;
  font-size: 19px;
}
.feature p {
  font-size: 12px;
  color: var(--muted);
  margin: 6px 0 0;
}
.section {
  padding-block: 85px;
}
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 30px;
  margin-bottom: 35px;
}
.section-head h2 {
  margin-bottom: 0;
}
.section-head p {
  max-width: 440px;
  margin: 0;
  font-size: 14px;
}
.text-link {
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid var(--bronze);
  padding: 8px 0;
  display: inline-block;
}
.text-link span {
  margin-left: 25px;
}
.pricing-layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 65px;
}
.pricing-intro p {
  font-size: 14px;
  max-width: 300px;
}
.price-preview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.price-card {
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--cream);
  display: flex;
  flex-direction: column;
  align-items: start;
}
.price-card .eyebrow {
  color: var(--bronze);
  margin-bottom: 24px;
}
.price-card p {
  font-size: 14px;
}
.price-card .text-link {
  margin-top: auto;
}
.price-from {
  font:
    32px 'Manrope',
    sans-serif;
  margin-block: 8px 24px;
}
.about-band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--cream);
  align-items: center;
}
.about-band > img {
  width: 100%;
  height: 520px;
  object-fit: cover;
}
.about-copy {
  padding: 60px clamp(25px, 5vw, 80px);
}
.about-copy p {
  font-size: 15px;
}
.app-section {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  align-items: center;
  gap: 80px;
}
.app-gallery {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  background: var(--warm);
  padding: 35px;
  border-radius: 18px;
}
.app-gallery img {
  width: 43%;
  border-radius: 12px;
  box-shadow: 0 12px 30px #1c191715;
}
.app-gallery img + img {
  margin-top: 55px;
}
.app-copy ul {
  list-style: none;
  padding: 0;
  margin: 25px 0;
}
.app-copy li {
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
}
.app-copy li:before {
  content: '↗';
  color: var(--bronze);
  margin-right: 16px;
}

/* Owner-selected bronze app stage: exact App Store screens in CSS-built devices. */
.app-stage {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  min-height: 760px;
  overflow: hidden;
  background: var(--paper);
}
.app-stage-visual {
  position: relative;
  min-height: 760px;
  overflow: hidden;
  isolation: isolate;
  background: radial-gradient(circle at 62% 37%, #9a663c 0, #5b351f 32%, #2b160c 78%), var(--ink);
}
.app-stage-visual::after {
  content: '';
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(115deg, transparent 52%, #fdfbf720 100%);
}
.app-halo {
  position: absolute;
  width: min(72%, 560px);
  aspect-ratio: 1;
  left: 9%;
  top: 7%;
  border: 3px solid #f1bd76;
  border-radius: 50%;
  box-shadow:
    0 0 22px #f4be7899,
    inset 0 0 12px #f4be7855;
}
.app-plinth {
  position: absolute;
  left: 8%;
  bottom: 4%;
  width: 84%;
  height: 116px;
  border-radius: 50%;
  background: linear-gradient(180deg, #d9b37f 0%, #9a6030 34%, #6f3b1c 78%, #3a1d0e 100%);
  box-shadow:
    0 28px 42px #14080399,
    inset 0 5px 7px #ffe2b488;
}
.app-phone {
  position: absolute;
  z-index: 2;
  width: min(38%, 300px);
  aspect-ratio: 0.49;
  border: 8px solid #111;
  border-radius: 38px;
  overflow: hidden;
  background: #111;
  box-shadow:
    12px 18px 35px #15090599,
    2px 0 0 2px var(--studio-metal);
}
.app-phone-home {
  left: 17%;
  bottom: 11%;
  transform: rotate(-3deg);
}
.app-phone-booking {
  z-index: 1;
  width: min(33%, 260px);
  right: 10%;
  bottom: 14%;
  transform: rotate(4deg);
}
.app-phone-screen {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border-radius: 29px;
  background: #fbf7ef;
}
.app-phone-screen img {
  position: absolute;
  width: 134.45%;
  max-width: none;
  height: auto;
  left: -17.12%;
  top: -29.67%;
}
.app-phone-notch {
  position: absolute;
  z-index: 3;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 34%;
  height: 20px;
  border-radius: 14px;
  background: #050505;
}
.app-stage-copy {
  align-self: center;
  padding: clamp(56px, 6vw, 100px) clamp(34px, 6vw, 100px);
}
.app-stage-copy h2 {
  font-size: clamp(44px, 5vw, 76px);
  line-height: 1.08;
  letter-spacing: -0.055em;
  margin-block: 22px 28px;
}
.app-stage-intro {
  max-width: 650px;
  font-size: clamp(17px, 1.45vw, 22px);
  line-height: 1.55;
}
.app-benefits {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px 34px;
  list-style: none;
  padding: 0;
  margin: 34px 0;
}
.app-benefits li {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 14px;
  align-items: center;
  font-size: 15px;
  line-height: 1.45;
}
.app-benefit-icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--warm);
  color: var(--bronze);
}
.app-benefit-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.app-stage-copy .pill {
  font-size: 17px;
  padding: 17px 26px;
}
.app-customer-note {
  max-width: 620px;
  margin-top: 20px;
}
@media (max-width: 980px) {
  .app-stage {
    grid-template-columns: 1fr;
  }
  .app-stage-visual {
    min-height: 680px;
  }
  .app-stage-copy {
    padding-inline: var(--space);
  }
}
@media (max-width: 600px) {
  .app-stage-visual {
    min-height: 500px;
  }
  .app-halo {
    width: 88%;
    left: -4%;
  }
  .app-plinth {
    height: 75px;
  }
  .app-phone {
    width: 48%;
    border-width: 6px;
    border-radius: 26px;
  }
  .app-phone-booking {
    width: 41%;
    right: 4%;
  }
  .app-phone-screen {
    border-radius: 20px;
  }
  .app-phone-notch {
    top: 7px;
    height: 13px;
  }
  .app-stage-copy h2 {
    font-size: 45px;
  }
  .app-benefits {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .app-phone {
    transition: none;
  }
}
.faq-section {
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
}
.faqs details {
  border-bottom: 1px solid var(--line);
  padding: 20px 0;
}
.faqs summary {
  cursor: pointer;
  font:
    600 18px/1.5 'Manrope',
    sans-serif;
  padding-right: 25px;
  min-height: 44px;
}
.faqs details p {
  font-size: 14px;
  padding: 12px 0 0;
  max-width: 650px;
  margin: 0;
}
.visit {
  background: var(--ink);
  color: var(--paper);
  padding-block: 65px;
}
.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 55px;
}
.visit h2 {
  font-size: 40px;
}
.visit p {
  font-size: 14px;
}
.visit .eyebrow {
  color: var(--pale);
}
.visit a {
  color: var(--paper);
}
.hours {
  margin: 15px 0 20px;
  font-size: 14px;
}
.hours div {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  padding: 12px 0;
  border-bottom: 1px solid #ffffff25;
}
.hours dd {
  margin: 0;
}
.hours-note {
  color: var(--pale);
  font-size: 12px !important;
}
.footer {
  padding-block: 30px;
  display: flex;
  justify-content: space-between;
  gap: 25px;
  align-items: center;
}
.footer-links {
  display: flex;
  gap: 25px;
  font-size: 12px;
}
.footer-bottom {
  padding-bottom: 28px;
  display: flex;
  justify-content: space-between;
  gap: 25px;
  font-size: 11px;
  color: var(--muted);
}
.page-hero {
  padding-block: 70px 45px;
  max-width: 1000px;
}
.page-hero h1 {
  font-size: clamp(44px, 6vw, 78px);
}
.page-hero p {
  max-width: 760px;
}
.breadcrumb {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 35px;
}
.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 55px;
}
.prose {
  max-width: 800px;
}
.prose h2 {
  margin-top: 50px;
}
.prose p {
  font-size: 16px;
}
.wide-image {
  width: 100%;
  max-height: 550px;
  object-fit: cover;
  border-radius: 10px;
}
.bed-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin: 45px 0;
}
.bed-card {
  border-top: 1px solid var(--line);
  padding: 25px 0;
}
.bed-card p {
  font-size: 14px;
}
.bed-card .eyebrow {
  color: var(--bronze);
  margin-bottom: 20px;
}
.notice {
  padding: 20px 25px;
  border-left: 3px solid var(--bronze);
  background: var(--warm);
  font-size: 14px;
  margin: 24px 0;
}
.prices-section {
  padding-bottom: 60px;
}
.prices-section h2 {
  font-size: 38px;
}
.price-group {
  margin: 35px 0 55px;
}
.price-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}
.price-table th {
  text-align: left;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 11px;
  padding: 18px;
  background: var(--cream);
}
.price-table td {
  padding: 20px 18px;
  border-bottom: 1px solid var(--line);
  font-size: 15px;
  overflow-wrap: anywhere;
}
.price-table td:last-child {
  font-variant-numeric: tabular-nums;
}
.price-table th:first-child {
  width: 48%;
}
.price-table small {
  display: block;
  margin-top: 8px;
  line-height: 1.6;
  color: var(--muted);
  font-size: 12px;
}
.price-status {
  font-size: 13px;
  color: var(--muted);
}
.retry {
  border: 1px solid var(--line);
  padding: 12px 20px;
  background: var(--paper);
  border-radius: 30px;
  color: var(--bronze);
  margin-top: 15px;
}
.price-placeholder {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--cream);
}
.price-placeholder p {
  margin: 0;
}
.page-app {
  max-width: 1050px;
}
.page-app .app-section {
  padding-bottom: 70px;
}
.motion-enter {
  animation: enter 0.35s ease-out both;
}
@keyframes enter {
  from {
    opacity: 0.3;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (min-width: 1600px) {
  .hero {
    min-height: 720px;
  }
  .hero-art {
    min-height: 590px;
  }
  .salon-photo {
    height: 520px;
  }
  .app-preview {
    width: 265px;
  }
}
@media (max-width: 1050px) {
  .nav {
    gap: 18px;
  }
  .nav a {
    font-size: 12px;
  }
  .hero {
    gap: 20px;
  }
  .hero-art {
    min-height: 450px;
  }
  .salon-photo {
    height: 390px;
  }
  .app-preview {
    width: 200px;
  }
  .pricing-layout {
    gap: 30px;
  }
  .app-section {
    gap: 35px;
  }
  .visit-grid {
    gap: 25px;
  }
  .faq-section {
    gap: 35px;
  }
  .site-header {
    min-height: 85px;
  }
  .wordmark {
    font-size: 26px;
  }
}
@media (max-width: 760px) {
  .topline {
    font-size: 10px;
  }
  .site-header {
    flex-wrap: wrap;
    gap: 0;
    padding-block: 18px;
    min-height: 80px;
  }
  .wordmark {
    font-size: 26px;
  }
  .menu-toggle {
    display: block;
  }
  .nav {
    width: 100%;
    display: none;
    flex-wrap: wrap;
    gap: 8px 22px;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid var(--line);
  }
  .js .nav[hidden] {
    display: none;
  }
  .nav[data-open] {
    display: flex;
  }
  .nav .pill {
    padding: 12px 22px;
  }
  .hero {
    grid-template-columns: 1fr;
    padding-top: 35px;
    padding-bottom: 35px;
    gap: 20px;
  }
  .hero h1 {
    font-size: clamp(46px, 10vw, 68px);
    max-width: 540px;
  }
  .hero-copy .intro {
    max-width: 550px;
  }
  .hero-note {
    max-width: 500px;
  }
  .hero-art {
    min-height: 440px;
    max-width: 480px;
    width: 100%;
    margin: auto;
  }
  .salon-photo {
    height: 375px;
  }
  .app-preview {
    width: 190px;
    margin-right: 9%;
  }
  .feature-strip {
    grid-template-columns: 1fr;
    padding-block: 25px;
    gap: 20px;
  }
  .feature + .feature {
    border-left: none;
    padding-left: 0;
  }
  .feature strong {
    font-size: 18px;
  }
  .feature p {
    font-size: 13px;
  }
  .section {
    padding-block: 55px;
  }
  .section-head {
    display: block;
  }
  .section-head p {
    margin-top: 25px;
  }
  .pricing-layout,
  .about-band,
  .app-section,
  .faq-section,
  .visit-grid,
  .content-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .price-preview {
    gap: 12px;
  }
  .price-card {
    padding: 23px 18px;
  }
  .price-card h3 {
    font-size: 25px;
  }
  .price-card p {
    font-size: 13px;
  }
  .about-band > img {
    height: 300px;
  }
  .about-copy {
    padding: 35px 24px;
  }
  .app-gallery {
    max-width: 480px;
    padding: 25px;
  }
  .faq-section {
    gap: 10px;
  }
  .visit-grid {
    gap: 30px;
  }
  .visit {
    padding-block: 45px;
  }
  .visit h2 {
    margin-top: 12px;
  }
  .hours {
    max-width: 500px;
  }
  .footer {
    flex-wrap: wrap;
  }
  .footer-links {
    gap: 20px;
    flex-wrap: wrap;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 10px;
  }
  .page-hero {
    padding-block: 35px;
  }
  .page-hero h1 {
    font-size: 48px;
  }
  .bed-list {
    grid-template-columns: 1fr;
    gap: 5px;
  }
  .price-table th,
  .price-table td {
    padding: 15px 10px;
  }
  .price-table th {
    font-size: 10px;
    letter-spacing: 0.06em;
  }
  .price-table td {
    font-size: 14px;
  }
  .price-table th:first-child {
    width: 43%;
  }
  .price-table small {
    font-size: 12px;
  }
  .breadcrumb {
    margin-bottom: 25px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    animation: none !important;
    transition: none !important;
  }
}

/* The public salon has a photographic identity, distinct from the staff app. */
.wordmark {
  display: block;
  width: 172px;
  flex-shrink: 0;
}
.wordmark img {
  width: 100%;
  height: auto;
}
.site-header {
  min-height: 112px;
}
h1,
h2 {
  font-weight: 500;
  letter-spacing: -0.045em;
}
h3 {
  font-weight: 600;
  font-size: 24px;
  letter-spacing: -0.025em;
}
.eyebrow {
  color: var(--bronze);
  margin-bottom: 16px;
}
.salon-hero {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: center;
  padding-block: 36px 48px;
}
.salon-hero-copy {
  padding-block: 28px;
}
.salon-hero h1 {
  font-size: clamp(44px, 5.3vw, 76px);
  line-height: 1.08;
  margin-block: 20px 28px;
}
.salon-hero-copy > p:not(.eyebrow) {
  max-width: 420px;
  color: var(--muted);
  font-size: 17px;
}
.salon-hero .actions {
  gap: 22px;
  margin-bottom: 36px;
}
.salon-hero-photo {
  margin: 0;
  position: relative;
  min-width: 0;
}
.hero-app-stage {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 590px;
  padding: 24px;
  background: var(--warm);
  border-radius: 4px 4px 72px 4px;
}
.hero-app-stage img {
  width: 250px;
  height: auto;
  border-radius: 18px;
  box-shadow: 0 18px 45px #1c191720;
}
.salon-hero-photo figcaption {
  margin: 16px 0 0;
  display: flex;
  justify-content: space-between;
  gap: 10px;
  font-size: 12px;
  color: var(--muted);
}
.hero-app-link {
  display: flex;
  gap: 13px;
  align-items: center;
}
.hero-app-link img {
  width: 44px;
  height: 44px;
  border-radius: 10px;
}
.hero-app-link strong {
  display: block;
  font-size: 13px;
  margin-bottom: 4px;
}
.hero-app-link a {
  font-size: 12px;
  color: var(--muted);
}
.salon-intro {
  background: linear-gradient(115deg, var(--paper), var(--warm));
  border-bottom: 1px solid var(--line);
}
.salon-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding-block: clamp(48px, 5vw, 80px);
}
.salon-intro-story {
  padding-right: clamp(24px, 3.5vw, 56px);
  border-right: 1px solid var(--studio-metal);
}
.salon-intro-eyebrow {
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--bronze);
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-size: 12px;
  margin: 0 0 32px;
}
.salon-intro-eyebrow::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--studio-metal);
}
.salon-intro h2 {
  font-size: clamp(44px, 5.2vw, 80px);
  line-height: 1.05;
  letter-spacing: -0.055em;
  font-weight: 700;
  margin: 0;
}
.salon-intro-welcome {
  font-size: clamp(18px, 1.75vw, 27px);
  line-height: 1.5;
  margin: 24px 0 18px;
}
.salon-intro .text-link {
  color: var(--bronze);
  font-size: clamp(18px, 1.7vw, 25px);
}
.salon-intro-features {
  padding-left: clamp(24px, 3.5vw, 56px);
  display: grid;
  grid-template-rows: 1fr 1fr;
}
.salon-intro-feature {
  display: grid;
  grid-template-columns: clamp(44px, 4.5vw, 68px) 1fr;
  gap: clamp(18px, 2.3vw, 36px);
  align-items: center;
  padding-block: 32px;
}
.salon-intro-feature + .salon-intro-feature {
  border-top: 1px solid var(--pale);
}
.salon-intro-feature svg {
  width: 100%;
  color: var(--bronze);
}
.salon-intro-feature h3 {
  font-size: clamp(22px, 2.05vw, 32px);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.04em;
  margin: 0 0 10px;
}
.salon-intro-feature p {
  font-size: clamp(16px, 1.4vw, 21px);
  line-height: 1.55;
  margin: 0;
}
@media (max-width: 800px) {
  .salon-intro-grid {
    grid-template-columns: 1fr;
  }
  .salon-intro-story {
    border-right: 0;
    padding-right: 0;
    padding-bottom: 30px;
  }
  .salon-intro h2 {
    font-size: clamp(44px, 9vw, 64px);
  }
  .salon-intro-features {
    border-top: 1px solid var(--studio-metal);
    padding-left: 0;
  }
}
.section-head > div:last-child {
  max-width: 440px;
}
.section-head .text-link {
  margin-top: 12px;
}
.collection {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}
.equipment {
  min-width: 0;
  scroll-margin-top: 35px;
}
.equipment-image {
  position: relative;
  display: block;
  background: var(--cream);
  border-radius: 8px;
  overflow: hidden;
}
.equipment-image img {
  width: 100%;
  height: 310px;
  object-fit: contain;
  padding: 20px 12px;
  transition: transform 250ms ease;
}
.equipment-image.prestige img {
  object-fit: cover;
  object-position: center 49%;
  padding: 0;
}
.equipment-image.excellence {
  background: white;
}
.equipment-image.symphony,
.equipment-image.vitesse {
  background: var(--line);
}
.equipment-image:hover img {
  transform: scale(1.035);
}
.equipment-type {
  position: absolute;
  left: 14px;
  top: 14px;
  background: var(--paper);
  color: var(--ink);
  border-radius: 3px;
  padding: 6px 10px;
  font-size: 11px;
}
.equipment-copy {
  padding-block: 22px 8px;
}
.model-detail {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 10px;
}
.equipment h3 {
  font-size: 20px;
  line-height: 1.35;
  margin-bottom: 12px;
}
.equipment .text-link {
  font-size: 12px;
}
.salon-story {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  background: var(--cream);
  align-items: stretch;
}
.story-photo {
  min-width: 0;
}
.story-photo img {
  height: 100%;
  min-height: 540px;
  width: 100%;
  object-fit: cover;
  object-position: 62% center;
}
.story-copy {
  padding: clamp(35px, 5vw, 80px);
}
.story-copy h2 {
  font-size: clamp(32px, 3vw, 46px);
}
.story-copy p {
  font-size: 15px;
}
.app-copy h2 {
  font-size: clamp(34px, 3.5vw, 50px);
}
.app-gallery {
  background: var(--cream);
}
.pricing-feature {
  background: var(--ink);
  color: var(--paper);
  padding-block: 70px;
}
.pricing-feature .eyebrow,
.pricing-feature .text-link {
  color: var(--pale);
}
.pricing-feature-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}
.pricing-feature-inner > div > p {
  max-width: 440px;
}
.pricing-options a {
  display: grid;
  grid-template-columns: 1fr auto;
  text-decoration: none;
  border-block: 1px solid var(--muted);
  padding: 28px 0;
}
.pricing-options a + a {
  border-top: 0;
}
.pricing-options a > span:first-child {
  font-size: 27px;
}
.pricing-options a > span:last-child {
  grid-column: 2;
  grid-row: 1/3;
  align-self: center;
  font-size: 28px;
}
.pricing-options p {
  font-size: 14px;
  margin: 10px 24px 0 0;
  grid-column: 1;
}
.visit-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  list-style: none;
  counter-reset: visit-step;
  padding: 0;
  margin: 45px 0 0;
}
.visit-steps li {
  counter-increment: visit-step;
}
.visit-steps li:before {
  content: counter(visit-step, decimal-leading-zero);
  display: block;
  font-size: 13px;
  color: var(--bronze);
  border-top: 1px solid var(--line);
  padding-block: 18px;
}
.visit-steps h3 {
  font-size: 21px;
}
.visit-steps p {
  font-size: 15px;
}
.product-story {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  align-items: center;
  gap: 72px;
  padding-block: 20px 85px;
}
.product-story img {
  width: 100%;
  border-radius: 6px;
}
.product-story h2 {
  font-size: clamp(30px, 3vw, 43px);
}
.product-story p {
  max-width: 580px;
}
.collection-section {
  padding-block: 0 25px;
}
.collection-nav {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.collection-nav a {
  padding: 13px 20px;
  border: 1px solid var(--line);
  border-radius: 4px;
  text-decoration: none;
  font-size: 13px;
}
.collection-detailed {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 50px;
}
.collection-detailed .equipment-image img {
  height: 470px;
}
.collection-detailed .equipment-image.prestige img {
  object-position: center 58%;
}
.collection-detailed h2 {
  font-size: 32px;
  line-height: 1.2;
  margin: 14px 0 20px;
}
.collection-detailed .equipment-copy > p {
  max-width: 590px;
}
.equipment-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  padding: 0;
}
.equipment-features li {
  padding: 8px 12px;
  background: var(--cream);
  border-radius: 3px;
  font-size: 12px;
}
.image-credit {
  color: var(--muted);
  font-size: 11px;
  margin-top: 20px;
}
.bed-detail-photo {
  align-self: center;
}
.bed-detail-photo img {
  width: 100%;
  border-radius: 5px;
}
.prose h2:first-of-type {
  margin-top: 15px;
}
.visit a[href^='mailto:'] {
  overflow-wrap: anywhere;
}
@media (max-width: 1050px) {
  .salon-hero {
    gap: 28px;
  }

  .collection {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px;
  }
  .pricing-feature-inner {
    gap: 50px;
  }
  .product-story {
    gap: 35px;
  }
  .visit-steps {
    gap: 28px;
  }
  .wordmark {
    width: 150px;
  }
}
@media (max-width: 760px) {
  .site-header {
    min-height: 94px;
  }
  .wordmark {
    width: 145px;
  }
  .salon-hero {
    grid-template-columns: 1fr;
    padding-top: 14px;
    gap: 16px;
  }
  .salon-hero-copy {
    padding-block: 20px 12px;
  }
  .salon-hero h1 {
    font-size: clamp(42px, 10.5vw, 64px);
  }
  .salon-hero .actions {
    gap: 12px 20px;
    margin-bottom: 26px;
  }
  .hero-app-stage {
    min-height: 520px;
    padding: 20px;
    border-bottom-right-radius: 50px;
  }
  .hero-app-stage img {
    width: 220px;
  }
  .salon-hero-photo figcaption {
    font-size: 10px;
  }
  .collection {
    gap: 24px 14px;
  }
  .equipment-image img {
    height: 235px;
    padding: 25px 8px 8px;
  }
  .equipment-image.prestige img {
    object-position: center;
  }
  .equipment-type {
    left: 8px;
    top: 8px;
    font-size: 10px;
    padding: 4px 7px;
  }
  .equipment h3 {
    font-size: 18px;
  }
  .equipment-copy {
    padding-top: 16px;
  }
  .model-detail {
    font-size: 11px;
  }
  .salon-story,
  .pricing-feature-inner,
  .product-story,
  .visit-steps {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .story-photo img {
    height: 310px;
    min-height: 0;
  }
  .story-copy {
    padding: 10px 24px 45px;
  }
  .pricing-feature {
    padding-block: 50px;
  }
  .pricing-options a > span:first-child {
    font-size: 24px;
  }
  .visit-steps {
    margin-top: 25px;
    gap: 10px;
  }
  .product-story {
    padding-block: 0 50px;
  }
  .product-story img {
    max-height: 340px;
    object-fit: cover;
  }
  .collection-detailed {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .collection-detailed .equipment-image img {
    height: 390px;
  }
  .collection-detailed .equipment-image.prestige img {
    object-position: center 53%;
  }
  .collection-nav {
    gap: 8px;
  }
  .collection-nav a {
    padding: 12px;
  }
  .section-head h2 {
    margin-bottom: 24px;
  }
  .app-section {
    gap: 38px;
  }
  .faqs summary {
    font-size: 17px;
  }
}
/* Owner-approved bronze gallery: original equipment over a decorative studio set. */
.gallery-heading {
  display: grid;
  grid-template-columns: 1fr 340px;
  align-items: end;
  gap: 40px;
  margin-bottom: 40px;
}
.gallery-heading .eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-size: 12px;
  font-weight: 700;
}
.gallery-heading h2 {
  font-size: clamp(44px, 5.4vw, 82px);
  font-weight: 700;
  letter-spacing: -0.055em;
  line-height: 1.08;
  margin: 0;
}
.gallery-heading p {
  font-size: 17px;
  line-height: 1.5;
}
.gallery-heading .pill {
  border: 1px solid var(--bronze);
  color: var(--bronze);
  border-radius: 40px;
  font-weight: 600;
  padding: 12px 22px;
  gap: 18px;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.gallery-card {
  min-width: 0;
  overflow: hidden;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--cream), var(--paper));
  display: flex;
  flex-direction: column;
}
.gallery-stage {
  position: relative;
  display: block;
  aspect-ratio: 0.72;
  isolation: isolate;
  background: var(--warm) url('/assets/gallery-studio.webp') center / cover;
  overflow: hidden;
}
.gallery-type {
  position: absolute;
  z-index: 2;
  top: 20px;
  left: 22px;
  color: var(--bronze);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.gallery-count {
  position: absolute;
  z-index: 2;
  right: 16px;
  top: 58px;
  background: var(--bronze);
  color: var(--paper);
  padding: 7px 14px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 600;
}
.gallery-stage img {
  position: absolute;
  width: 88%;
  height: 76%;
  left: 6%;
  bottom: 11%;
  object-fit: contain;
  transition: transform 250ms ease;
}
.gallery-stage:hover img {
  transform: scale(1.025);
}
.gallery-prestige img {
  width: 100%;
  height: 87%;
  left: 0;
  bottom: 0;
  object-fit: cover;
  object-position: center;
  border-radius: 50% 50% 0 0 / 32% 32% 0 0;
  border-top: 2px solid var(--studio-metal);
}
.gallery-excellence img {
  width: 100%;
  height: 66%;
  left: 0;
  bottom: 7%;
  mix-blend-mode: multiply;
}
.gallery-copy {
  padding: 22px 20px 18px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.gallery-detail {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 10px;
  color: var(--muted);
  margin: 0 0 10px;
}
.gallery-copy h3 {
  font-size: clamp(19px, 1.65vw, 25px);
  letter-spacing: -0.045em;
  font-weight: 700;
  line-height: 1.3;
  margin: 0 0 18px;
}
.gallery-link {
  margin-top: auto;
  border-top: 1px solid var(--pale);
  padding-top: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  color: var(--bronze);
  text-decoration: none;
}
.gallery-link span {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border: 1px solid var(--bronze);
  border-radius: 50%;
  font-size: 24px;
  transition:
    background 200ms ease,
    color 200ms ease;
}
.gallery-link:hover span {
  background: var(--bronze);
  color: var(--paper);
}
@media (max-width: 1050px) {
  .gallery-heading {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .gallery-heading > div:last-child {
    max-width: 520px;
  }
  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
  }
  .gallery-copy h3 {
    font-size: 25px;
  }
}
@media (max-width: 600px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .gallery-stage {
    aspect-ratio: 0.82;
  }
  .gallery-heading h2 {
    font-size: 46px;
  }
  .gallery-copy {
    padding: 24px;
  }
  .gallery-type {
    font-size: 12px;
  }
  .gallery-detail {
    font-size: 11px;
  }
  .gallery-link {
    font-size: 15px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .gallery-stage img,
  .gallery-link span {
    transition: none;
  }
  .gallery-stage:hover img {
    transform: none;
  }
}
/* Original reception photograph retains its native aspect ratio and full field of view. */
.salon-story.story-framed {
  margin-block: 32px 88px;
  width: calc(100% - var(--space) * 2);
  padding: clamp(20px, 2.2vw, 36px);
  border: 1px solid var(--studio-metal);
  gap: clamp(28px, 4vw, 64px);
  align-items: center;
  background: linear-gradient(120deg, var(--paper), var(--cream));
}
.story-framed .story-photo {
  margin: 0;
}
.story-framed .story-photo img {
  width: 100%;
  height: auto;
  min-height: 0;
  aspect-ratio: 4/3;
  object-fit: contain;
}
.story-framed figcaption {
  margin-top: 12px;
  font-size: 12px;
  letter-spacing: 0.12em;
  color: var(--bronze);
}
.story-framed .story-copy {
  padding: 0;
}
.story-framed .story-copy h2 {
  font-size: clamp(30px, 3vw, 46px);
  line-height: 1.15;
  letter-spacing: -0.045em;
}
.story-framed .story-copy p {
  font-size: clamp(15px, 1.25vw, 19px);
  line-height: 1.7;
}
.story-framed .story-copy .text-link {
  margin-top: 14px;
  color: var(--bronze);
}
@media (max-width: 760px) {
  .salon-story.story-framed {
    margin-block: 16px 56px;
    gap: 28px;
  }
  .story-framed figcaption {
    font-size: 10px;
    letter-spacing: 0.07em;
  }
}
