:root {
  --bg: #101110;
  --panel: #191b18;
  --ink: #f2efe7;
  --muted: #b0b2a6;
  --gold: #d6bb7d;
  --line: #36392f;
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Outfit", system-ui, sans-serif;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
}
h1,
h2,
h3,
p,
figure {
  margin: 0;
}
h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.05;
}
h2 {
  font-size: clamp(2.8rem, 5.4vw, 5rem);
  letter-spacing: -0.035em;
}
h3 {
  font-size: 2rem;
}
em {
  font-family: var(--serif);
  font-weight: 400;
  color: var(--gold);
}
a {
  color: inherit;
  text-decoration: none;
}
a:hover {
  color: var(--gold);
}
button,
input,
select,
textarea {
  font: inherit;
}
button,
a,
input,
select,
textarea {
  touch-action: manipulation;
}
button {
  cursor: pointer;
}
button:disabled {
  cursor: not-allowed;
  opacity: 0.5;
}
button,
a,
input,
select,
textarea {
  outline-offset: 5px;
}
*:focus-visible {
  outline: 2px solid var(--gold);
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
button {
  color: inherit;
}
button,
input,
select,
textarea {
  border-radius: 0;
}
button {
  background: none;
}
input[type="checkbox"],
input[type="radio"] {
  accent-color: var(--gold);
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
fieldset {
  padding: 0;
  border: 0;
  min-width: 0;
  margin: 0 0 1.25rem;
}
legend {
  margin-bottom: 0.75rem;
}
small,
.fine {
  font-size: 0.875rem;
  color: var(--muted);
}
.muted {
  color: var(--muted);
}
.eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  font-weight: 400;
  color: var(--gold);
  margin-bottom: 1.4rem;
}
.skip {
  position: fixed;
  left: 12px;
  top: -100px;
  z-index: 100;
  background: var(--gold);
  color: var(--bg);
  padding: 12px;
}
.skip:focus {
  top: 10px;
}
.site-header {
  height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 4.5%;
  border-bottom: 1px solid var(--line);
  background: var(--bg);
  position: sticky;
  top: 0;
  z-index: 30;
  gap: 24px;
}
.brand {
  display: flex;
  gap: 12px;
  align-items: center;
}
.brand img {
  border-radius: 50%;
  width: 48px;
  height: 48px;
}
.brand span {
  font-size: 0.8rem;
  letter-spacing: 0.12em;
}
.brand small {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 0.17em;
  color: var(--muted);
  margin-top: 3px;
}
.site-header nav {
  display: flex;
  gap: 28px;
  font-size: 0.875rem;
}
.site-header nav a {
  padding: 12px 0;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  border: 1px solid var(--gold);
  background: var(--gold);
  color: #14160f;
  min-height: 52px;
  padding: 13px 24px;
  font-size: 0.9375rem;
  transition:
    background 0.2s,
    color 0.2s;
}
.button:hover {
  background: #e8d49f;
  color: #101110;
}
.button.small {
  min-height: 44px;
  padding: 10px 18px;
  font-size: 0.8125rem;
}
.text-link {
  display: inline-block;
  border-bottom: 1px solid #73725d;
  padding: 8px 0;
  font-size: 0.9375rem;
}
.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  min-width: 44px;
  min-height: 44px;
  font-size: 1.3rem;
}
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 680px;
}
.hero-copy {
  padding: 68px 9% 25px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.rule {
  width: 35px;
  height: 1px;
  background: var(--gold);
  display: inline-block;
  vertical-align: middle;
  margin-right: 12px;
}
.hero h1 {
  font-size: clamp(4.4rem, 7.8vw, 8rem);
  letter-spacing: -0.055em;
  line-height: 0.91;
  margin-bottom: 28px;
}
.hero h1 em {
  font-size: 1.08em;
}
.hero-tag {
  font-family: var(--serif);
  font-size: clamp(1.65rem, 2.4vw, 2.4rem);
  line-height: 1.2;
  margin-bottom: 18px;
}
.hero-description {
  color: var(--muted);
  max-width: 350px;
  font-weight: 300;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  margin: 30px 0 50px;
  flex-wrap: wrap;
}
.hero-foot {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  width: 100%;
  border-top: 1px solid var(--line);
  padding-top: 20px;
  font-size: 0.625rem;
  letter-spacing: 0.13em;
  color: var(--muted);
  gap: 16px;
}
.hero-image {
  position: relative;
  min-height: 100%;
  overflow: hidden;
}
.hero-image > img {
  width: 100%;
  height: 100%;
  position: absolute;
  object-fit: cover;
  object-position: 50% 45%;
}
.hero-image figcaption {
  position: absolute;
  bottom: 0;
  padding: 32px 38px;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
  font-size: 0.75rem;
  letter-spacing: 0.18em;
}
.hero-image figcaption a {
  font-size: 2rem;
  min-width: 44px;
  text-align: center;
}
.signature-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  padding: 25px 4%;
  gap: 20px;
  font-family: var(--serif);
  font-size: 1.4rem;
  color: var(--gold);
}
.signature-strip i {
  font-style: normal;
  font-size: 1rem;
}
.section {
  padding: 104px 6%;
  max-width: 1600px;
  margin: auto;
}
.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 48px;
  margin-bottom: 48px;
}
.heading-aside {
  max-width: 350px;
  color: var(--muted);
  font-weight: 300;
}
.heading-aside p + p {
  margin-top: 16px;
}
.heading-aside a {
  margin-top: 14px;
  color: var(--ink);
}
.gallery-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr;
  gap: 22px;
  align-items: start;
}
.gallery-card {
  border: 0;
  text-align: left;
  padding: 0;
  width: 100%;
}
.gallery-card:nth-child(2) {
  margin-top: 60px;
}
.gallery-card img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  transition: filter 0.3s;
}
.gallery-card:first-child img {
  aspect-ratio: 4/5.8;
}
.gallery-card:hover img {
  filter: brightness(1.1);
}
.gallery-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.875rem;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}
/* Editorial captions use the existing italic display font. */
.gallery-label > span:first-child,
#lightboxCaption {
  font-family: var(--serif);
  font-size: clamp(1.3rem, 2.3vw, 1.85rem);
  font-style: italic;
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: 0.01em;
  color: var(--gold);
}
.gallery-label > span[aria-hidden] {
  flex-shrink: 0;
  color: var(--gold);
}
.gallery-label small {
  font-size: 0.75rem;
}
.gallery-card:nth-child(n + 4) {
  margin-top: 18px;
}
.gallery-card:nth-child(n + 4) img {
  aspect-ratio: 1;
}
.gallery-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 30px;
  gap: 20px;
}
.menu-section {
  background: var(--panel);
  max-width: none;
}
.service-menu {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px 70px;
}
.menu-group h3 {
  font-size: 2.35rem;
  padding: 0 0 18px;
  border-bottom: 1px solid #77745a;
}
.service-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  border: 0;
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
  text-align: left;
  min-height: 60px;
}
.service-row .service-price {
  color: var(--gold);
  white-space: nowrap;
  font-size: 0.9375rem;
}
.service-row .service-price span {
  padding-left: 14px;
}
.service-row:hover {
  color: var(--gold);
}
.service-row small {
  display: block;
}
.addon-menu {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  padding-top: 48px;
  margin-top: 48px;
  border-top: 1px solid var(--line);
}
.addon-menu h3 {
  font-size: 2.1rem;
}
.addon-menu .eyebrow {
  margin-bottom: 12px;
}
.addon-item {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  padding: 10px 0;
  gap: 12px;
}
.addon-item small {
  display: block;
}
.experience {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9%;
  align-items: center;
}
.experience-image img {
  aspect-ratio: 4/5;
  object-fit: cover;
  width: 100%;
}
.experience-copy h2 {
  margin-bottom: 26px;
}
.experience-copy > p:not(.eyebrow) {
  margin-bottom: 20px;
}
.experience-notes {
  border-top: 1px solid var(--line);
  margin: 32px 0 18px;
}
.experience-notes > div {
  display: flex;
  gap: 24px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}
.experience-notes span {
  color: var(--gold);
  font-family: var(--serif);
  font-size: 1.4rem;
}
.experience-notes p {
  color: var(--muted);
  font-size: 0.9375rem;
}
.experience-notes strong {
  display: block;
  color: var(--ink);
  font-weight: 400;
  margin-bottom: 4px;
}
.booking-section {
  border-top: 1px solid var(--line);
}
.notice {
  border-left: 2px solid var(--gold);
  background: var(--panel);
  padding: 16px 20px;
  color: var(--muted);
  margin-bottom: 28px;
  font-size: 0.9375rem;
}
.notice a,
.fine a,
.check a {
  text-decoration: underline;
}
.booking-layout {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 50px;
  align-items: start;
}
.booking-form {
  min-width: 0;
}
.steps {
  list-style: none;
  padding: 0;
  margin: 0 0 36px;
  display: flex;
  gap: 20px;
  border-bottom: 1px solid var(--line);
}
.steps li {
  padding: 0 0 14px;
  flex: 1;
  color: var(--muted);
  font-size: 0.875rem;
  white-space: nowrap;
}
.steps li[aria-current] {
  color: var(--gold);
  border-bottom: 2px solid var(--gold);
}
.steps li span {
  margin-left: 8px;
}
.form-step h3 {
  margin-bottom: 28px;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
  font-size: 0.9375rem;
}
.field-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  min-width: 0;
  background: #1b1d19;
  border: 1px solid #515448;
  color: var(--ink);
  padding: 13px 14px;
  min-height: 50px;
  color-scheme: dark;
}
.field textarea {
  resize: vertical;
}
.check {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 18px 0;
  font-size: 0.9375rem;
}
.check input {
  margin: 4px 0 0;
}
.addons label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.9375rem;
}
.addons label > span {
  margin-right: auto;
}
.addons small {
  font-size: 0.875rem;
}
.form-step > .next {
  margin-top: 30px;
}
.form-actions {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 30px;
}
.text-button {
  border: 0;
  padding: 12px 0;
  min-height: 44px;
  text-decoration: underline;
  text-underline-offset: 5px;
}
.booking-summary {
  background: var(--panel);
  padding: 32px;
  position: sticky;
  top: 115px;
}
.booking-summary h3 {
  margin-bottom: 20px;
}
.booking-summary dl {
  margin: 0;
}
.booking-summary dl > div {
  display: flex;
  justify-content: space-between;
  gap: 25px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.9375rem;
}
.booking-summary dt {
  color: var(--muted);
}
.booking-summary dd {
  margin: 0;
  text-align: right;
  overflow-wrap: anywhere;
}
.booking-summary .total {
  font-size: 1.1rem;
  color: var(--gold);
}
.summary-policy {
  display: flex;
  gap: 16px;
  padding: 24px 0;
  font-size: 0.875rem;
  color: var(--muted);
}
.summary-policy > span {
  font-size: 1.8rem;
  color: var(--gold);
}
.summary-policy strong {
  display: block;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 6px;
}
.booking-summary > .text-link {
  font-size: 0.875rem;
}
.time-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}
.time-choice {
  position: relative;
}
.time-choice input {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
}
.time-choice span {
  display: block;
  padding: 12px 6px;
  text-align: center;
  border: 1px solid #515448;
  font-size: 0.875rem;
  min-height: 48px;
  cursor: pointer;
}
.time-choice input:checked + span {
  color: #101110;
  background: var(--gold);
  border-color: var(--gold);
}
.time-choice input:focus-visible + span {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}
.time-choice input:disabled + span {
  opacity: 0.35;
  cursor: not-allowed;
}
.time-choice small {
  display: block;
  font-size: 0.75rem;
}
.error {
  color: #ffb4a7;
  margin-top: 18px;
}
.success-panel {
  background: var(--panel);
  padding: 40px;
  max-width: 760px;
  margin: auto;
  border-top: 2px solid var(--gold);
}
.success-panel h3 {
  margin-bottom: 24px;
}
.success-panel p {
  margin: 16px 0;
}
.success-panel dl {
  padding: 18px 0;
}
.success-panel dl div {
  padding: 8px 0;
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
.success-panel dd {
  margin: 0;
  text-align: right;
}
.success-panel .button {
  margin: 20px 0;
}
.consultation {
  background: #23271e;
  text-align: center;
  max-width: none;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.consultation > p:not(.eyebrow) {
  max-width: 520px;
  margin: 28px auto;
  color: var(--muted);
}
.consultation h2 {
  font-size: clamp(2.8rem, 5vw, 4.8rem);
}
.contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10%;
}
.contact h2 {
  margin-bottom: 26px;
}
.contact-details h3 {
  font-size: 1.5rem;
  margin: 0 0 16px;
}
.contact-details > a {
  display: block;
  overflow-wrap: anywhere;
  padding: 6px 0;
}
.contact-details h3:not(:first-child) {
  margin-top: 32px;
}
.hours {
  margin: 0 0 20px;
}
.hours div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.9375rem;
}
.hours dd {
  margin: 0;
  text-align: right;
  color: var(--muted);
}
.footer {
  border-top: 1px solid var(--line);
  padding: 45px 6% 28px;
}
.footer-brand {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 4rem);
  letter-spacing: -0.03em;
}
.footer > div {
  display: flex;
  gap: 25px;
  justify-content: flex-end;
  flex-wrap: wrap;
  font-size: 0.75rem;
  color: var(--muted);
  margin-top: 28px;
}
.footer > div > span:first-child {
  margin-right: auto;
}
.mobile-book {
  display: none;
}
dialog {
  background: var(--bg);
  color: var(--ink);
  border: 1px solid var(--line);
  max-width: min(880px, 94vw);
  max-height: 94dvh;
  padding: 16px;
}
dialog::backdrop {
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
}
#lightbox > img {
  max-height: 74dvh;
  margin: auto;
  object-fit: contain;
}
#closeLightbox {
  display: block;
  margin: 0 0 10px auto;
}
.icon-button {
  border: 1px solid var(--line);
  width: 44px;
  height: 44px;
  font-size: 1.2rem;
}
.lightbox-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding-top: 16px;
}
.lightbox-footer p {
  font-size: 0.9375rem;
}
.policies-page {
  padding: 70px 6%;
  max-width: 900px;
  margin: auto;
}
.policies-page h1 {
  font-size: 3.5rem;
  margin-bottom: 30px;
}
.policies-page h2 {
  font-size: 2rem;
  margin: 35px 0 12px;
}
.policies-page p {
  color: var(--muted);
  margin-bottom: 16px;
}
.policies-page .button {
  margin-top: 24px;
}
[hidden] {
  display: none !important;
}
@media (min-width: 1600px) {
  .hero {
    max-width: 1600px;
    margin: auto;
  }
  .menu-section > * {
    max-width: 1408px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (max-width: 1100px) {
  .site-header {
    padding: 0 4%;
    height: 80px;
  }
  .site-header nav {
    gap: 16px;
  }
  .brand span {
    font-size: 0.7rem;
  }
  .brand small {
    font-size: 0.6rem;
  }
  .site-header > .button {
    display: none;
  }
  .hero-copy {
    padding: 50px 8% 24px;
  }
  .hero {
    min-height: 600px;
  }
  .hero-actions {
    gap: 15px;
  }
  .hero-foot {
    font-size: 0.6rem;
  }
  .section {
    padding: 80px 5%;
  }
  .booking-layout {
    gap: 30px;
  }
  .booking-summary {
    padding: 24px;
  }
  .steps {
    gap: 10px;
  }
  .steps li span {
    margin-left: 4px;
  }
  .service-menu {
    gap: 32px;
  }
  .experience {
    gap: 6%;
  }
}
@media (max-width: 720px) {
  html {
    scroll-padding-top: 90px;
  }
  .site-header {
    height: 76px;
  }
  .brand span {
    font-size: 0.75rem;
  }
  .brand small {
    font-size: 0.6rem;
  }
  .menu-toggle {
    display: block;
  }
  .site-header nav {
    display: none;
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    background: var(--bg);
    padding: 22px 6%;
    border-bottom: 1px solid var(--line);
  }
  .site-header nav.open {
    display: flex;
    flex-direction: column;
    gap: 4px;
  }
  .hero {
    grid-template-columns: 1fr;
    min-height: 0;
  }
  .hero-copy {
    padding: 46px 6% 30px;
  }
  .hero h1 {
    font-size: clamp(2.6rem, 13.8vw, 5.2rem);
  }
  .hero-tag {
    font-size: 1.8rem;
  }
  .hero-description {
    max-width: 340px;
  }
  .hero-actions {
    margin: 26px 0 30px;
    gap: 20px;
  }
  .hero-actions .button {
    gap: 16px;
    padding: 13px 16px;
    font-size: 0.875rem;
  }
  .hero-actions .text-link {
    font-size: 0.875rem;
  }
  .hero-foot {
    padding-top: 18px;
  }
  .hero-image {
    height: 440px;
    min-height: 0;
  }
  .hero-image > img {
    object-position: 50% 42%;
  }
  .hero-image figcaption {
    padding: 22px;
  }
  .signature-strip {
    padding: 20px 5%;
    font-size: 1.15rem;
    gap: 18px;
  }
  .signature-strip span:nth-of-type(3),
  .signature-strip i:last-child {
    display: none;
  }
  .section {
    padding: 65px 6%;
  }
  .section-heading {
    display: block;
    margin-bottom: 30px;
  }
  .heading-aside {
    margin-top: 24px;
    max-width: none;
  }
  .eyebrow {
    margin-bottom: 20px;
  }
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  .gallery-card:first-child {
    grid-column: span 2;
  }
  .gallery-card:first-child img {
    aspect-ratio: 1;
  }
  .gallery-card:nth-child(2) {
    margin: 0;
  }
  .gallery-card:nth-child(n + 4) {
    margin: 0;
  }
  .gallery-card:nth-child(n + 4) img {
    aspect-ratio: 4/5;
  }
  .gallery-card:last-child {
    grid-column: span 2;
  }
  .gallery-card:last-child img {
    aspect-ratio: 1.5;
  }
  .gallery-label {
    font-size: 0.8125rem;
    gap: 10px;
    align-items: flex-start;
  }
  .gallery-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }
  .service-menu {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .menu-group h3 {
    font-size: 2rem;
  }
  .addon-menu {
    grid-template-columns: 1fr;
    gap: 24px;
    padding-top: 30px;
    margin-top: 30px;
  }
  .experience {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .experience-image img {
    aspect-ratio: 1;
  }
  .booking-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .booking-summary {
    position: static;
    padding: 24px;
  }
  .steps li {
    font-size: 0.8125rem;
    white-space: normal;
  }
  .steps li span {
    display: block;
    margin: 2px 0;
  }
  .field-pair {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .time-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .success-panel {
    padding: 25px;
  }
  .contact {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .footer {
    padding: 30px 6% 100px;
  }
  .footer > div {
    justify-content: flex-start;
    gap: 18px;
  }
  .footer > div > span:first-child {
    width: 100%;
  }
  .mobile-book {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 16px 6% calc(16px + env(safe-area-inset-bottom));
    background: var(--gold);
    color: #14160f;
    display: flex;
    justify-content: space-between;
    z-index: 25;
    font-size: 0.875rem;
  }
  .mobile-book span {
    font-weight: 500;
  }
  .mobile-book.is-booking {
    display: none;
  }
  .policies-page {
    padding: 45px 6%;
  }
  .policies-page h1 {
    font-size: 3rem;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  * {
    transition: none !important;
  }
}

/* Inline date selection keeps booking usable on mobile and embedded browsers. */
.booking-calendar {
  border: 1px solid var(--line);
  padding: 14px;
  margin: 20px 0;
  background: var(--surface, #181914);
}
.calendar-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
  gap: 10px;
}
.calendar-heading h4 {
  font:
    500 1rem "Outfit",
    sans-serif;
  margin: 0;
}
.calendar-nav {
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--text, #eee);
  cursor: pointer;
}
.calendar-week,
.calendar-days {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 2px;
  text-align: center;
}
.calendar-week {
  font-size: 0.7rem;
  color: var(--muted);
  margin-bottom: 8px;
}
.calendar-days button {
  min-width: 0;
  min-height: 44px;
  border: 1px solid transparent;
  background: transparent;
  color: var(--text, #eee);
  font:
    400 0.9rem "Outfit",
    sans-serif;
  cursor: pointer;
  border-radius: 4px;
  padding: 0;
}
.calendar-days button:disabled,
.calendar-nav:disabled {
  opacity: 0.28;
  cursor: default;
}
.calendar-days button[aria-current="date"] {
  border-color: var(--gold);
}
.calendar-days button[aria-pressed="true"] {
  background: var(--gold);
  color: #15150f;
}
.calendar-days button:not(:disabled):hover {
  border-color: var(--gold);
}
.calendar-days button:focus-visible,
.calendar-nav:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}
.calendar-key {
  margin: 12px 0;
}
.booking-calendar .check {
  font-size: 0.8rem;
  margin: 0;
}
.chosen-date {
  font-weight: 500;
  color: var(--gold);
  margin: 20px 0 8px;
}
@media (max-width: 400px) {
  .booking-calendar {
    padding: 10px 6px;
  }
  .calendar-days,
  .calendar-week {
    gap: 0;
  }
}

.time-period {
  border-top: 1px solid var(--line);
  margin: 10px 0;
}
.time-period summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 48px;
  cursor: pointer;
  font-size: 0.9rem;
}
.time-period summary::after {
  content: "+";
  margin-left: 12px;
  color: var(--gold);
}
.time-period[open] summary::after {
  content: "−";
}
.time-period summary span {
  margin-left: auto;
  font-size: 0.75rem;
  color: var(--muted);
}
.time-period .time-grid {
  padding-bottom: 12px;
}
.booking-review {
  border: 1px solid var(--gold);
  padding: 18px;
  margin: 18px 0;
}
.booking-review:empty {
  display: none;
}
.booking-review h4 {
  font-size: 1.1rem;
  margin: 8px 0;
}
.booking-review p {
  margin: 8px 0;
}

#bookForm,
#bookingSuccess {
  scroll-margin-top: 96px;
}

.field-error {
  color: #f0a7a0;
  font-size: 0.875rem;
  margin: -8px 0 18px;
  line-height: 1.5;
}
[aria-invalid="true"] {
  border-color: #f0a7a0 !important;
  outline: 1px solid #f0a7a0;
}
.submit-status {
  margin: 18px 0;
  line-height: 1.6;
}

.addon-quantity {
  padding: 14px;
  border: 1px solid var(--gold);
  margin: -4px 0 14px;
}
.addon-quantity label {
  display: block;
  margin: 0 0 8px;
}
.addon-quantity select {
  width: 100%;
  min-height: 48px;
}
.addon-quantity p {
  margin: 10px 0 0;
}

.addon-quantity select {
  background: #1c1e18;
  color: var(--text, #eee);
  border: 1px solid var(--line);
  padding: 12px;
  font: inherit;
  border-radius: 0;
}

.addon-group-title {
  grid-column: 1 / -1;
  width: 100%;
  font:
    500 0.9rem "Outfit",
    sans-serif;
  color: var(--gold);
  margin: 18px 0 8px;
}

#serviceMenu {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
.service-category-card {
  border: 1px solid var(--line);
  min-width: 0;
  background: var(--panel);
  overflow: hidden;
}
.service-category-card > img {
  width: 100%;
  height: 155px;
  object-fit: cover;
  display: block;
}
.category-card-body {
  padding: 20px;
}
.category-card-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 12px;
}
.category-card-title h3 {
  font:
    500 1.15rem "Outfit",
    sans-serif;
  margin: 0;
}
.category-card-title > span {
  font-size: 0.7rem;
  color: var(--muted);
  white-space: nowrap;
}
.service-category-card .service-row {
  font-size: 0.85rem;
  padding: 15px 0;
  gap: 10px;
  width: 100%;
}
.service-category-card .service-price {
  white-space: nowrap;
  font-size: 0.8rem;
}
.service-category-card details > summary {
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  cursor: pointer;
  color: var(--gold);
}
.category-wordmark {
  height: 155px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font: 3.5rem var(--serif);
  background: #202219;
}
.category-wordmark span {
  font: italic 1rem var(--serif);
}
.service-category-tabs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 6px;
  margin: 18px 0;
}
.service-category-tabs button {
  min-height: 48px;
  padding: 8px;
  border: 1px solid var(--line);
  color: var(--ink);
  background: transparent;
  font: inherit;
  font-size: 0.85rem;
  cursor: pointer;
}
.service-category-tabs button[aria-pressed="true"] {
  color: #17170f;
  background: var(--gold);
}
.service-choice {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  width: 100%;
  text-align: left;
  min-height: 60px;
  padding: 14px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
  font: inherit;
  cursor: pointer;
  margin-bottom: 8px;
}
.service-choice strong {
  white-space: nowrap;
  font-size: 0.85rem;
  color: var(--gold);
}
.service-choice[aria-pressed="true"] {
  border-color: var(--gold);
  background: var(--panel);
}
.booking-extras-group {
  border-top: 1px solid var(--line);
  margin: 12px 0;
}
.booking-extras-group > summary {
  min-height: 52px;
  display: list-item;
  align-content: center;
  color: var(--gold);
  cursor: pointer;
  font-size: 0.9rem;
}
@media (max-width: 1000px) {
  #serviceMenu {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 600px) {
  #serviceMenu {
    grid-template-columns: 1fr;
  }
  .service-category-tabs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .service-category-card > img,
  .category-wordmark {
    height: 140px;
  }
}

.service-description {
  display: block;
  font-size: 0.8rem;
  font-weight: 400;
  line-height: 1.5;
  color: var(--muted);
  margin-top: 6px;
}
.category-guidance {
  line-height: 1.55;
}

#selectedServices {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 16px 0;
}
#selectedServices p {
  width: 100%;
  margin: 0;
}
#selectedServices button {
  border: 1px solid var(--line);
  padding: 12px;
  min-height: 44px;
  text-align: left;
}

.service-category-card:not(:has(> img)) {
  border-top: 2px solid var(--gold);
}
.service-category-card:not(:has(> img)) .category-card-body {
  padding-top: 28px;
}

.category-photo-caption {
  margin: 0;
  padding: 10px 20px;
  color: var(--muted);
  font-size: 0.8rem;
  border-bottom: 1px solid var(--line);
}

.appointment-page {
  max-width: 760px;
  margin: auto;
  padding: 48px 24px;
}
.appointment-page h1 {
  font-size: clamp(2.5rem, 8vw, 4rem);
}
.appointment-page h2 {
  margin-top: 28px;
}
.appointment-page .button,
.appointment-page .secondary {
  margin: 12px 12px 12px 0;
}
.appointment-page textarea {
  min-height: 100px;
}
.appointment-page h2 {
  font-size: clamp(1.5rem, 4vw, 2rem);
  line-height: 1.2;
  margin-bottom: 16px;
}
.appointment-page .secondary {
  padding: 12px 20px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
  cursor: pointer;
}

/* Keep the complete selected photograph visible at every screen size. */
.hero-image.hero-selected-photo {
  min-height: 0;
  height: auto;
  align-self: center;
}
.hero-selected-photo > img {
  position: static;
  display: block;
  height: auto;
  object-fit: contain;
  object-position: center;
}
.hero-selected-photo figcaption {
  position: static;
  padding: 16px 24px;
  background: var(--panel);
}

.birthday-fields {
  min-width: 0;
  padding: 16px;
  margin: 12px 0;
  border: 1px solid var(--gold, #cdb477);
}
.birthday-fields select {
  width: 100%;
  min-height: 48px;
  font: inherit;
  color: inherit;
  background: #1c1f19;
}

/* Client feedback stays quiet until Lex publishes real reviews. */
.reviews-section { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.reviews-intro > p:not(.eyebrow) { color: var(--muted); margin: 1.5rem 0 1rem; max-width: 34rem; }
.reviews-section.has-reviews { display: grid; grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.4fr); gap: clamp(2rem, 5vw, 5rem); align-items: start; }
.client-reviews { display: grid; gap: 1.5rem; min-width: 0; }
.client-review { padding: clamp(1.25rem, 3vw, 2.5rem); background: var(--panel); border-top: 1px solid var(--gold); }
.client-review blockquote { font-family: var(--serif); font-size: clamp(1.6rem, 2.5vw, 2.25rem); line-height: 1.3; margin: 0; white-space: pre-line; overflow-wrap: anywhere; }
.client-review figcaption { color: var(--muted); margin-top: 1.25rem; font-size: 1rem; overflow-wrap: anywhere; }
.review-rating { color: var(--gold); letter-spacing: .15em; margin-bottom: 1rem; }
@media (max-width: 760px) { .reviews-section.has-reviews { grid-template-columns: 1fr; } }

/* Keep the approved nail designs visible in service photographs. */
.service-category-card > img { height: auto; aspect-ratio: 4 / 3; object-position: center; }
