﻿/* Hair by Nadjae — black / white / pink brand */

:root {
  --pink: #db2777;
  --pink-light: #f472b6;
  --pink-dark: #9f1239;
  --ink: #0a0a0a;
  --cream: #fafafa;
  --muted: #525252;
  --muted-soft: #737373;
  --pink-heading: #ec4899;
  --hero-pink: #f472b6;
  --hero-pink-deep: #be185d;
  --white: #ffffff;
  --font-script: "Great Vibes", cursive;
  --radius: 12px;
  --shadow: 0 8px 32px rgba(13, 13, 13, 0.08);
  --font-display: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-body: "Source Sans 3", system-ui, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--ink);
  background: var(--cream);
  padding-left: env(safe-area-inset-left, 0px);
  padding-right: env(safe-area-inset-right, 0px);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

a {
  color: var(--pink-dark);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.container {
  width: min(1120px, 100% - 2rem);
  margin-inline: auto;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 248, 244, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(184, 134, 11, 0.2);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 0;
  flex-wrap: wrap;
}

.brand-link {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
  color: var(--ink);
}

.brand-link:hover {
  text-decoration: none;
}

.logo-img {
  width: 72px;
  height: 72px;
  object-fit: contain;
  border-radius: 50%;
  box-shadow: var(--shadow);
}

.brand-text {
  font-family: var(--font-display);
}

.brand-text strong {
  display: block;
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.brand-text span {
  font-size: 0.85rem;
  color: var(--muted);
  font-weight: 400;
}

.nav-main {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.nav-main a {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--ink);
}

.nav-main a:hover {
  color: var(--pink-dark);
}

.nav-main--full {
  flex: 1;
  justify-content: center;
  gap: clamp(0.65rem, 2vw, 1.35rem);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.65rem 1rem;
  flex-wrap: wrap;
}

.header-lookup {
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--muted);
  text-decoration: none;
  white-space: nowrap;
}

.header-lookup:hover {
  color: var(--pink-dark);
}

@media (max-width: 900px) {
  .header-inner {
    flex-direction: column;
    align-items: stretch;
  }

  .nav-main--full {
    justify-content: center;
  }

  .header-actions {
    justify-content: center;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.65rem 1.35rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  touch-action: manipulation;
}

.btn:hover {
  text-decoration: none;
  transform: translateY(-1px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--pink-light), var(--pink));
  color: var(--ink);
  box-shadow: 0 4px 14px rgba(184, 134, 11, 0.35);
}

.btn-primary:hover {
  box-shadow: 0 6px 20px rgba(184, 134, 11, 0.45);
}

.btn-outline {
  background: transparent;
  color: var(--ink);
  border: 2px solid var(--pink);
}

.btn-outline:hover {
  background: rgba(212, 175, 55, 0.12);
}

/* Interior pages — simple lead */
.lead {
  font-size: 1.15rem;
  color: var(--muted);
  margin: 0 0 1.75rem;
  max-width: 42ch;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* ——— Full-bleed landing hero (home) ——— */
.page-home {
  padding-top: 0;
}

.hero-landing {
  position: relative;
  min-height: min(100vh, 960px);
  display: flex;
  flex-direction: column;
  color: var(--ink);
  overflow: hidden;
  background: var(--white);
}

.hero-landing__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-color: #ffffff;
  background-image:
    radial-gradient(ellipse 95% 70% at 8% 5%, rgba(244, 114, 182, 0.11), transparent 58%),
    radial-gradient(ellipse 90% 65% at 92% 18%, rgba(219, 39, 119, 0.07), transparent 55%),
    linear-gradient(180deg, #fffafc 0%, #ffffff 45%, #fafafa 100%);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-landing__vignette {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: radial-gradient(ellipse 115% 95% at 44% 48%, transparent 52%, rgba(250, 250, 250, 0.92) 100%);
  opacity: 0.35;
}

.hero-nav {
  position: relative;
  z-index: 3;
  padding: 1rem 0 0.5rem;
}

/* Interior pages — same markup as home hero nav (sticky white bar) */
.hero-nav--site {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 0.85rem 0 0.65rem;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(219, 39, 119, 0.1);
  box-shadow: 0 1px 0 rgba(15, 23, 42, 0.04);
}

.page-catalog .hero-nav--site {
  background: rgba(255, 255, 255, 0.92);
  border-bottom-color: rgba(219, 39, 119, 0.1);
}

.hero-nav__links a[aria-current="page"] {
  color: var(--pink-dark);
  font-weight: 700;
}

.hero-nav__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
}

.hero-nav__burger {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1.5px solid rgba(244, 114, 182, 0.45);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--hero-pink-deep);
  cursor: pointer;
  flex-shrink: 0;
  margin-left: auto;
  transition: background 0.2s ease, border-color 0.2s ease;
  touch-action: manipulation;
}

.hero-nav__burger:hover {
  background: rgba(252, 231, 243, 0.95);
  border-color: rgba(219, 39, 119, 0.5);
}

.hero-nav__burger-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 22px;
}

.hero-nav__burger-line {
  display: block;
  height: 2px;
  width: 100%;
  background: currentColor;
  border-radius: 1px;
  transition: transform 0.25s ease, opacity 0.2s ease;
}

.hero-nav__burger[aria-expanded="true"] .hero-nav__burger-line:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.hero-nav__burger[aria-expanded="true"] .hero-nav__burger-line:nth-child(2) {
  opacity: 0;
}

.hero-nav__burger[aria-expanded="true"] .hero-nav__burger-line:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.hero-nav__panel {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: clamp(1rem, 2.5vw, 2rem);
  flex: 1;
  min-width: 0;
}

.hero-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: var(--ink);
}

.hero-brand:hover {
  text-decoration: none;
  color: var(--pink-dark);
}

.hero-brand__logo {
  width: 44px;
  height: 44px;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 4px 14px rgba(219, 39, 119, 0.15);
}

.hero-brand__text {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2.5vw, 1.45rem);
  font-weight: 600;
  letter-spacing: 0.04em;
}

.hero-nav__links {
  display: flex;
  align-items: center;
  gap: clamp(0.75rem, 2vw, 1.75rem);
  flex-wrap: wrap;
}

.hero-nav__links a {
  color: var(--muted);
  font-weight: 600;
  font-size: 0.92rem;
  text-decoration: none;
}

.hero-nav__links a:hover {
  color: var(--pink-dark);
  text-decoration: none;
}

.hero-nav__actions {
  display: flex;
  align-items: center;
  gap: 0.65rem 1rem;
  flex-wrap: wrap;
}

.hero-nav__lookup {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--muted-soft);
  font-weight: 600;
  font-size: 0.88rem;
  text-decoration: none;
}

.hero-nav__lookup:hover {
  color: var(--pink-dark);
}

.hero-icon {
  flex-shrink: 0;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.55rem 1.15rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 700;
  border-radius: 8px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  touch-action: manipulation;
}

.hero-btn:hover {
  text-decoration: none;
  transform: translateY(-1px);
}

.hero-btn--nav {
  background: var(--pink);
  color: #fff;
  border-radius: 14px;
  box-shadow: 0 4px 18px rgba(219, 39, 119, 0.32);
  padding: 0.65rem 1.35rem;
  font-size: 0.92rem;
}

.hero-btn--nav:hover {
  background: var(--pink-dark);
  box-shadow: 0 6px 22px rgba(190, 24, 93, 0.38);
}

.hero-btn--nav .hero-icon {
  color: #fff;
}

.hero-btn--gold {
  background: linear-gradient(180deg, #fce7f3 0%, var(--hero-pink) 40%, var(--hero-pink-deep) 100%);
  color: #1a0a12;
  box-shadow: 0 6px 22px rgba(219, 39, 119, 0.22);
  border-radius: 999px;
}

.hero-btn--ghost {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.85);
  box-shadow: none;
}

.hero-btn--ghost:hover {
  background: rgba(255, 255, 255, 0.08);
}

.hero-btn--outline-light {
  background: var(--white);
  color: var(--ink);
  border: 2px solid #e5e7eb;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.06);
}

.hero-btn--outline-light:hover {
  border-color: rgba(219, 39, 119, 0.35);
  background: #fffafb;
}

.hero-icon--chevron {
  opacity: 0.95;
}

.hero-btn--lg {
  padding: 0.85rem 1.5rem;
  font-size: 0.98rem;
  border-radius: 10px;
}

.hero-btn--lg.hero-btn--gold,
.hero-btn--lg.hero-btn--outline-light {
  border-radius: 999px;
}

.hero-btn--block {
  width: 100%;
  padding: 0.85rem 1rem;
}

.hero-landing__content {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  align-items: center;
  padding: clamp(1.25rem, 3vw, 2.5rem) 0 clamp(2.5rem, 6vw, 4rem);
}

/* Home hero — split headline + portrait */
.hero-scale-layout {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 1180px;
  margin-inline: auto;
}

.hero-scale-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0 0 1.35rem;
  padding: 0.45rem 1rem;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 0.81rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--hero-pink-deep);
  background: rgba(252, 231, 243, 0.85);
}

.hero-scale-badge__icon {
  flex-shrink: 0;
  color: var(--hero-pink-deep);
}

.hero-scale-title {
  margin: 0 0 clamp(1.25rem, 3vw, 2rem);
  padding: 0;
  width: 100%;
  font-weight: inherit;
  line-height: 1;
}

.hero-scale-title__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(160px, 260px) minmax(0, 1fr);
  gap: clamp(0.75rem, 2.5vw, 2.25rem);
  align-items: center;
  width: 100%;
}

.hero-scale-col {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  min-width: 0;
}

.hero-scale-col--left {
  align-items: flex-end;
  text-align: right;
}

.hero-scale-col--right {
  align-items: flex-start;
  text-align: left;
}

.hero-scale-kicker {
  margin: 0;
  font-family: var(--font-body);
  font-size: clamp(0.8rem, 1.3vw, 0.95rem);
  font-weight: 600;
  color: #9ca3af;
  letter-spacing: 0.04em;
}

.hero-scale-display {
  margin: 0;
  font-family: var(--font-body);
  font-size: clamp(2.4rem, 6.5vw, 4.25rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 0.92;
  text-transform: uppercase;
}

.hero-scale-display--ink {
  color: var(--ink);
}

.hero-scale-display--brand {
  display: flex;
  flex-direction: column;
  gap: 0.02em;
  color: var(--pink);
}

.hero-scale-display__line {
  display: block;
}

.hero-scale-visual {
  position: relative;
  justify-self: center;
  width: 100%;
  max-width: 260px;
}

.hero-scale-visual__img {
  width: 100%;
  height: auto;
  max-height: min(52vh, 440px);
  object-fit: cover;
  object-position: center top;
  border-radius: 18px;
  border: 2px solid rgba(244, 114, 182, 0.55);
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.1), 0 4px 14px rgba(219, 39, 119, 0.12);
}

.hero-scale-desc {
  margin: 0 auto 1.5rem;
  max-width: 44rem;
  text-align: center;
  font-size: clamp(0.95rem, 1.5vw, 1.08rem);
  line-height: 1.65;
  color: var(--muted);
}

.hero-ctas--scale {
  justify-content: center;
  gap: clamp(0.75rem, 2vw, 1.25rem);
}

/* Reference-style CTAs: solid label + white text; outline + play; medium radius (not full pill) */
.hero-ctas--scale .hero-btn--lg {
  min-height: 3.1rem;
  padding: 0.9rem 1.7rem;
  font-size: 0.98rem;
  font-weight: 700;
  border-radius: 14px;
}

.hero-ctas--scale .hero-btn--lg.hero-btn--gold {
  background: var(--pink);
  color: #fff;
  border: none;
  box-shadow: 0 4px 18px rgba(219, 39, 119, 0.32);
}

.hero-ctas--scale .hero-btn--lg.hero-btn--gold:hover {
  background: var(--pink-dark);
  box-shadow: 0 6px 22px rgba(190, 24, 93, 0.38);
}

.hero-ctas--scale .hero-btn--lg.hero-btn--gold .hero-icon {
  color: #fff;
}

.hero-ctas--scale .hero-btn--lg.hero-btn--outline-light {
  background: #fff;
  color: #1a1a1a;
  border: 1.5px solid #e5e7eb;
  box-shadow: 0 2px 6px rgba(15, 23, 42, 0.06);
}

.hero-ctas--scale .hero-btn--lg.hero-btn--outline-light:hover {
  border-color: rgba(219, 39, 119, 0.3);
  background: #fffbfc;
  color: #1a1a1a;
}

.hero-ctas--scale .hero-icon--play-outline {
  flex-shrink: 0;
  opacity: 0.95;
}

.hero-tags--scale {
  margin-bottom: 1.75rem;
}

.hero-tags--scale li {
  color: var(--pink-dark);
  border-color: #e5e7eb;
  background: var(--white);
}

.hero-scale-layout .hero-follow__label {
  color: var(--muted);
}

.hero-scale-layout .hero-social {
  border-color: rgba(244, 114, 182, 0.5);
  color: var(--hero-pink-deep);
}

.hero-scale-layout .hero-social:hover {
  background: rgba(252, 231, 243, 0.9);
  color: var(--pink-dark);
}

@media (max-width: 767px) {
  .hero-scale-title__grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.15rem;
  }

  .hero-scale-visual {
    order: -1;
    max-width: min(280px, 72vw);
    margin-bottom: 0.25rem;
  }

  .hero-scale-col--left,
  .hero-scale-col--right {
    align-items: center;
    text-align: center;
  }

  .hero-scale-display--brand {
    align-items: center;
    text-align: center;
  }
}

.hero-center-stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
  max-width: 1160px;
  margin-inline: auto;
}

/* Defensive cleanup for earlier connector-line markup/styles. */
[class*="hero-rail"],
.hero-center-stack::before,
.hero-center-stack::after,
.hero-headline-band::before,
.hero-headline-band::after {
  content: none !important;
  display: none !important;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0 0 1.25rem;
  padding: 0.4rem 0.85rem;
  border: 1px solid rgba(244, 114, 182, 0.55);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--hero-pink-deep);
  background: rgba(252, 231, 243, 0.65);
}

.hero-badge--pill .hero-icon {
  color: var(--hero-pink-deep);
}

.hero-icon--pin {
  opacity: 0.95;
}

.hero-headline-band {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  width: 100%;
  margin: clamp(1rem, 4vw, 3rem) 0 1.25rem;
  padding: 0;
  font-weight: inherit;
  line-height: 1;
  text-align: center;
}

.hero-display-line {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: baseline;
  gap: 0.35em 0.5em;
  max-width: 100%;
}

.hero-kicker {
  margin: 0;
  font-family: var(--font-body);
  font-size: clamp(0.78rem, 1.2vw, 0.95rem);
  font-weight: 600;
  color: var(--muted-soft);
  letter-spacing: 0.06em;
}

.hero-display-word {
  margin: 0;
  font-family: var(--font-body);
  font-size: clamp(2.65rem, 7vw, 5.2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 0.95;
  text-transform: uppercase;
  color: var(--ink);
}

.hero-display-word--brand {
  color: var(--pink);
}

.hero-tagline {
  font-family: var(--font-script);
  font-size: clamp(1.45rem, 3vw, 2rem);
  color: var(--hero-pink-deep);
  margin: 0 0 1rem;
  line-height: 1.25;
}

.hero-lead {
  margin: 0 0 1.75rem;
  font-size: clamp(0.95rem, 1.6vw, 1.08rem);
  line-height: 1.55;
  color: var(--muted);
  max-width: 40rem;
}

.hero-lead--center {
  text-align: center;
  margin-bottom: 1.5rem;
}

.hero-lead-line {
  display: block;
}

.hero-ctas--landing {
  gap: 0.85rem;
  margin-bottom: 1.5rem;
  justify-content: center;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.5rem 0.65rem;
  margin: 0 0 2rem;
  padding: 0;
  list-style: none;
}

.hero-tags li {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.75rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--pink-dark);
  background: var(--white);
  border: 1px solid #e5e7eb;
  border-radius: 999px;
}

.hero-tag-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--hero-pink);
  flex-shrink: 0;
}

.hero-follow {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: center;
}

.hero-follow__label {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--muted);
  margin-right: 0.25rem;
}

.hero-social {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1.5px solid rgba(244, 114, 182, 0.5);
  border-radius: 10px;
  color: var(--hero-pink-deep);
  background: var(--white);
  transition: background 0.15s ease, color 0.15s ease;
}

.hero-social:hover {
  background: rgba(252, 231, 243, 0.9);
  color: var(--pink-dark);
  text-decoration: none;
}

.hero-glass-card {
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: 22px;
  background: rgba(12, 10, 8, 0.38);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.hero-glass-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  margin: 0 0 0.65rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--hero-pink);
}

.hero-glass-heart {
  font-size: 0.85rem;
  opacity: 0.95;
}

.hero-glass-title {
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 2.5vw, 1.85rem);
  font-weight: 600;
  text-align: center;
  margin: 0 0 0.75rem;
  color: var(--white);
}

.hero-glass-body {
  margin: 0 0 1.35rem;
  text-align: center;
  font-size: 0.92rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.82);
}

@media (min-width: 768px) {
  .hero-nav__inner {
    flex-wrap: nowrap;
  }

  .hero-nav__burger {
    display: none;
  }

  .hero-nav__panel {
    justify-content: flex-end;
  }
}

@media (max-width: 767px) {
  .hero-brand {
    flex: 1;
    min-width: 0;
  }

  .hero-brand__text {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .hero-nav__burger {
    display: inline-flex;
  }

  .hero-nav__panel {
    display: none;
    flex-direction: column;
    align-items: stretch;
    flex: none;
    width: 100%;
    order: 3;
    gap: 1rem;
    margin-top: 0.35rem;
    padding: 1rem 1.1rem 1.2rem;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-radius: 14px;
    border: 1px solid rgba(244, 114, 182, 0.28);
    box-shadow: 0 18px 44px rgba(15, 23, 42, 0.12);
  }

  .hero-nav__panel.hero-nav__panel--open {
    display: flex;
  }

  .hero-nav__links {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .hero-nav__links a {
    padding: 0.75rem 0.65rem;
    border-radius: 8px;
  }

  .hero-nav__links a:active {
    background: rgba(255, 255, 255, 0.07);
  }

  .hero-nav__actions {
    flex-direction: column;
    width: 100%;
    gap: 0.65rem;
  }

  .hero-nav__actions .hero-btn--nav,
  .hero-nav__lookup {
    width: 100%;
    justify-content: center;
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
  }

  body.hero-nav-open {
    overflow: hidden;
    touch-action: none;
  }
}

/* Sections */
.section {
  padding: 3.5rem 0;
}

.section-alt {
  background: var(--white);
  border-block: 1px solid rgba(184, 134, 11, 0.12);
}

.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 2.5rem;
}

.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.35rem);
  margin: 0 0 0.5rem;
}

.section-head p {
  margin: 0;
  color: var(--muted);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.75rem;
}

.section-cta {
  text-align: center;
  margin: 2rem 0 0;
}

.section-cta:last-child {
  margin-bottom: 0;
}

.section-cta .btn {
  padding: 0.75rem 1.75rem;
  font-size: 1rem;
}

.section-cta .btn.btn-primary {
  box-shadow: 0 4px 20px rgba(219, 39, 119, 0.28);
}

.section-cta .btn.btn-primary:hover {
  box-shadow: 0 6px 26px rgba(219, 39, 119, 0.36);
}

.style-card-wrap {
  text-decoration: none;
  color: inherit;
  display: block;
  border-radius: var(--radius);
  transition: transform 0.2s ease;
}

@media (hover: hover) {
  .style-card-wrap:hover .style-card {
    border-color: var(--pink);
    box-shadow: var(--shadow);
  }

  .style-card-wrap:hover {
    transform: translateY(-3px);
  }
}

.style-card-wrap:focus-visible {
  outline: 3px solid var(--pink-heading);
  outline-offset: 4px;
}

.style-card {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 0;
  border: 1px solid rgba(184, 134, 11, 0.2);
  transition: border-color 0.2s, box-shadow 0.2s;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.style-card__media {
  position: relative;
  aspect-ratio: 4 / 5;
  background: linear-gradient(145deg, #e8e4dc 0%, #d4cfc5 100%);
  overflow: hidden;
}

.style-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.style-card__brand {
  position: absolute;
  left: 0.75rem;
  top: 0.75rem;
  padding: 0.35rem;
  background: rgba(255, 255, 255, 0.94);
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(10, 10, 10, 0.12);
}

.style-card__brand img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  display: block;
}

.section-popular-styles .section-head strong {
  color: var(--pink-dark);
  font-weight: 700;
}

.section-popular-styles .style-card {
  border-color: rgba(219, 39, 119, 0.2);
}

.style-card__body {
  padding: 1.25rem 1.5rem 1.5rem;
  flex: 1;
}

.style-card h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin: 0 0 0.35rem;
}

.style-card .price {
  font-weight: 700;
  color: var(--pink-dark);
  font-size: 0.95rem;
}

/* Videos */
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 320px), 1fr));
  gap: 1.5rem;
}

.video-grid--gallery {
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 260px), 1fr));
  gap: 1.1rem;
}

.video-embed {
  background: var(--ink);
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 420px;
  box-shadow: var(--shadow);
}

.video-embed iframe {
  width: 100%;
  min-height: 420px;
  border: 0;
}

.video-grid--gallery .video-embed {
  min-height: 390px;
}

.video-grid--gallery .video-embed iframe {
  min-height: 390px;
}

.reels-carousel {
  position: relative;
}

.reels-carousel__viewport {
  overflow: hidden;
  margin: 0 -0.45rem;
}

.reels-carousel__track {
  display: flex;
  transition: transform 0.35s ease;
  will-change: transform;
}

.reels-carousel__slide {
  padding: 0 0.45rem;
  box-sizing: border-box;
}

.reels-carousel__slide .video-embed {
  min-height: 390px;
}

.reels-carousel__slide .video-embed iframe {
  min-height: 390px;
}

.reels-carousel--cards .reels-carousel__slide {
  display: flex;
}

.ig-reel-card {
  display: flex;
  flex-direction: column;
  min-height: 390px;
  width: 100%;
  overflow: hidden;
  color: var(--ink);
  text-decoration: none;
  background: var(--white);
  border: 1px solid rgba(219, 39, 119, 0.16);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.ig-reel-card:hover {
  color: var(--ink);
  text-decoration: none;
  transform: translateY(-3px);
  border-color: rgba(219, 39, 119, 0.38);
  box-shadow: 0 16px 40px rgba(219, 39, 119, 0.14);
}

.ig-reel-card__media {
  position: relative;
  display: flex;
  flex: 1;
  min-height: 270px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 30% 20%, rgba(244, 114, 182, 0.24), transparent 34%),
    radial-gradient(circle at 78% 18%, rgba(219, 39, 119, 0.14), transparent 30%),
    linear-gradient(145deg, #111 0%, #2a0c1a 58%, #0a0a0a 100%);
}

.ig-reel-card__thumb {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.ig-reel-card__media::before {
  content: "@hairby.nadjae";
  position: absolute;
  left: 1rem;
  top: 1rem;
  z-index: 2;
  padding: 0.35rem 0.65rem;
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 700;
  background: rgba(10, 10, 10, 0.54);
  border-radius: 999px;
  backdrop-filter: blur(10px);
}

.ig-reel-card__play {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 70px;
  height: 70px;
  padding-left: 0.2rem;
  color: var(--pink-dark);
  font-size: 1.55rem;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 50%;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.25);
}

.ig-reel-card__body {
  display: grid;
  gap: 0.25rem;
  padding: 1rem 1rem 1.1rem;
  text-align: left;
}

.ig-reel-card__handle {
  color: var(--pink-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ig-reel-card__body strong {
  font-size: 1.05rem;
  line-height: 1.2;
}

.ig-reel-card__body span:last-child {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.35;
}

.reels-carousel__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: rgba(13, 13, 13, 0.72);
  color: #fff;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  z-index: 2;
}

.reels-carousel__btn--prev {
  left: 0.25rem;
}

.reels-carousel__btn--next {
  right: 0.25rem;
}

.reels-carousel__btn:hover {
  background: rgba(13, 13, 13, 0.92);
}

.video-note {
  text-align: center;
  font-size: 0.9rem;
  color: var(--muted);
  margin-top: 1rem;
}

/* Visit & connect — card grid */
.info-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
  align-items: stretch;
}

.info-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  text-align: center;
  border: 1px solid rgba(181, 154, 91, 0.28);
  box-shadow: var(--shadow);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

@media (hover: hover) {
  .info-card:hover {
    border-color: rgba(181, 154, 91, 0.45);
    box-shadow: 0 12px 36px rgba(13, 13, 13, 0.1);
  }
}

.info-card h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  margin: 0 0 1rem;
  color: var(--pink-heading);
  letter-spacing: 0.02em;
}

.info-card-body {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.info-card-body p {
  margin: 0;
  color: var(--muted-soft);
  font-size: 0.98rem;
  line-height: 1.5;
}

.info-card--location {
  text-align: left;
}

.info-cards--location-layout .info-card--location {
  grid-column: 1 / -1;
}

.location-map-wrap {
  margin-top: 1rem;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(181, 154, 91, 0.22);
}

.location-map {
  width: 100%;
  height: 270px;
  border: 0;
  display: block;
}

.location-under-text {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0.8rem 1.25rem;
  text-align: center;
}

.location-under-item h4 {
  margin: 0 0 0.45rem;
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 600;
  color: var(--pink-heading);
}

.location-under-item p {
  margin: 0.15rem 0;
  color: var(--muted-soft);
  font-size: 1.15rem;
}

.location-under-item .social-links {
  justify-content: center;
  margin-top: 0;
}

.info-card--social .social-links {
  margin-top: 0;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}

.social-links a {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--pink-heading);
  text-decoration: none;
}

.social-links a:hover {
  color: var(--pink-dark);
  text-decoration: underline;
}

/* Footer */
.site-footer {
  background: linear-gradient(180deg, #161616 0%, #0a0a0a 100%);
  color: rgba(255, 255, 255, 0.88);
  padding: 3rem 0 0;
  margin-top: 0;
  border-top: 1px solid rgba(212, 175, 55, 0.14);
}

.site-footer a {
  color: var(--pink-light);
}

.site-footer a:hover {
  color: #e8d5a3;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(260px, 1.45fr) minmax(150px, 0.85fr) minmax(150px, 0.85fr);
  gap: 2.5rem 2rem;
  align-items: start;
  padding-bottom: 2.75rem;
}

@media (max-width: 900px) {
  .footer-main {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 520px) {
  .footer-main {
    grid-template-columns: 1fr;
  }
}

.footer-brand__link {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
  color: inherit;
}

.footer-brand__link:hover {
  text-decoration: none;
}

.footer-brand__link:hover .footer-brand__name {
  color: var(--pink-light);
}

.footer-brand__logo {
  width: 80px;
  height: 80px;
  object-fit: contain;
  border-radius: 50%;
  box-shadow: 0 6px 28px rgba(0, 0, 0, 0.45);
  flex-shrink: 0;
}

.footer-brand__text {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.footer-brand__name {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.5vw, 1.45rem);
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.02em;
  line-height: 1.2;
  transition: color 0.2s ease;
}

.footer-brand__tagline {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.45;
  max-width: 22rem;
}

.footer-brand__meta {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.48);
}

.footer-brand__address {
  margin: 1.05rem 0 0;
  font-size: 0.88rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.58);
}

.footer-social {
  margin: 0.85rem 0 0;
  font-size: 0.86rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.45rem;
}

.footer-social a {
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
}

.footer-social a:hover {
  color: var(--pink-light);
  text-decoration: underline;
}

.footer-social__sep {
  color: rgba(255, 255, 255, 0.22);
  user-select: none;
}

.footer-heading {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin: 0 0 1rem;
  color: rgba(255, 255, 255, 0.42);
}

.footer-col p {
  font-size: 0.92rem;
  margin: 0.35rem 0;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin: 0.45rem 0;
  font-size: 0.92rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.88);
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--pink-light);
  text-decoration: underline;
}

.footer-bottom {
  padding: 1.35rem 0 1.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.82rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.45);
}

.footer-admin-link {
  margin-left: 0.65rem;
  color: rgba(255, 255, 255, 0.72);
  text-decoration: underline;
  cursor: pointer;
}

.footer-admin-link:hover {
  color: var(--pink-light);
}

/* Admin dashboard */
.admin-gate {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(10, 10, 10, 0.8);
  display: grid;
  place-items: center;
  padding: 1rem;
}

.admin-gate[hidden] {
  display: none;
}

.admin-gate__card {
  width: min(420px, 100%);
  background: var(--white);
  border-radius: 14px;
  padding: 1.4rem;
  border: 1px solid rgba(184, 134, 11, 0.25);
}

.admin-gate__card h1 {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
}

.admin-gate__card p {
  margin: 0 0 0.8rem;
  color: var(--muted);
}

.admin-gate__form {
  display: grid;
  gap: 0.65rem;
}

.admin-gate__form input {
  width: 100%;
  padding: 0.65rem 0.8rem;
  border-radius: 8px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  font-size: 1rem;
}

.admin-gate__error {
  min-height: 1.2rem;
  margin: 0;
  color: #b3261e;
  font-size: 0.9rem;
}

.admin-detail-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(10, 10, 10, 0.55);
  display: grid;
  place-items: center;
  padding: 1rem;
  overflow-y: auto;
}

.admin-detail-overlay[hidden] {
  display: none;
}

.admin-detail-shell {
  width: min(780px, calc(100vw - 2rem));
  max-width: 100%;
  max-height: min(92vh, 940px);
  display: flex;
  flex-direction: column;
  background: #fffefb;
  border-radius: 16px;
  border: 1px solid rgba(184, 134, 11, 0.28);
  box-shadow:
    0 20px 56px rgba(44, 36, 22, 0.12),
    0 2px 8px rgba(0, 0, 0, 0.06);
  overflow: hidden;
}

.admin-detail-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.25rem;
  flex-shrink: 0;
  border-bottom: 1px solid rgba(184, 134, 11, 0.14);
  background: linear-gradient(180deg, #fffefb 0%, #fff 100%);
}

.admin-detail-toolbar h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: #2c2416;
}

.admin-detail-close {
  flex-shrink: 0;
  border-radius: 999px;
  padding: 0.45rem 1.15rem;
  font-size: 0.88rem;
}

.admin-detail-scroll {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.admin-detail-receipt.booking-details-receipt {
  margin: 0;
  border-radius: 0;
  border: none;
  box-shadow: none;
}

.admin-detail-receipt .booking-details-receipt__brand.admin-detail-receipt__brand {
  margin-bottom: 0.85rem;
  padding-bottom: 0.95rem;
}

/* Admin modal: full-width sections — the shared 2-col receipt grid is too narrow inside ~560–780px shells. */
.admin-detail-receipt .booking-details-sections {
  grid-template-columns: 1fr;
}

.admin-detail-receipt .booking-details-section--payment {
  grid-column: auto;
}

.admin-detail-receipt .booking-details-dl {
  grid-template-columns: minmax(6.5rem, 11rem) minmax(0, 1fr);
  column-gap: 1rem;
}

.admin-detail-receipt .booking-details-section--payment .booking-details-dl {
  grid-template-columns: minmax(7rem, 11rem) minmax(0, 1fr);
}

.admin-detail-receipt .booking-details-dl dd {
  overflow-wrap: break-word;
}

.admin-table .admin-view-btn {
  padding: 0.35rem 0.65rem;
  font-size: 0.85rem;
}

.page-admin:not(.admin-unlocked) {
  overflow: hidden;
}

.admin-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1rem;
  align-items: end;
}

.admin-control {
  display: grid;
  gap: 0.35rem;
}

.admin-control label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--muted);
}

.admin-control select,
.admin-control input {
  min-width: 170px;
  border: 1px solid rgba(0, 0, 0, 0.18);
  border-radius: 8px;
  padding: 0.55rem 0.7rem;
  font-size: 0.95rem;
  background: var(--white);
}

.admin-banner {
  margin: 0 0 1rem;
  padding: 0.8rem 1rem;
  border-radius: 8px;
  border: 1px solid rgba(184, 134, 11, 0.28);
  background: rgba(250, 248, 244, 0.9);
  color: var(--muted);
}

.admin-banner--error {
  border-color: rgba(179, 38, 30, 0.4);
  background: rgba(179, 38, 30, 0.08);
  color: #7a1d17;
}

.admin-kpis {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0.9rem;
  margin-bottom: 1.1rem;
}

.admin-kpi {
  background: var(--white);
  border: 1px solid rgba(184, 134, 11, 0.2);
  border-radius: 12px;
  padding: 0.9rem 1rem;
  box-shadow: var(--shadow);
}

.admin-kpi__label {
  margin: 0;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
}

.admin-kpi__value {
  margin: 0.2rem 0 0;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--ink);
}

.admin-grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1rem;
  margin-bottom: 1rem;
}

.admin-panel {
  background: var(--white);
  border: 1px solid rgba(184, 134, 11, 0.2);
  border-radius: 12px;
  padding: 1rem;
  box-shadow: var(--shadow);
  margin-bottom: 1rem;
}

.admin-panel h2 {
  margin: 0 0 0.8rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
}

.admin-list {
  display: grid;
  gap: 0.7rem;
}

.admin-list-row__top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.8rem;
  margin-bottom: 0.25rem;
  font-size: 0.9rem;
}

.admin-list-row__top span {
  color: var(--muted);
  font-size: 0.85rem;
}

.admin-bar {
  height: 8px;
  border-radius: 99px;
  background: rgba(13, 13, 13, 0.08);
  overflow: hidden;
}

.admin-bar span {
  display: block;
  height: 100%;
  border-radius: 99px;
  background: linear-gradient(90deg, #d4af37 0%, #b8860b 100%);
}

.admin-inline-list h3 {
  margin: 0 0 0.55rem;
  font-size: 0.95rem;
  color: var(--pink-dark);
}

.admin-inline-list .admin-list-row__top {
  margin-bottom: 0;
  padding: 0.55rem 0;
  border-bottom: 1px solid rgba(184, 134, 11, 0.18);
}

.admin-inline-list .admin-list-row__top:last-child {
  border-bottom: none;
  padding-bottom: 0.15rem;
}

.admin-empty {
  margin: 0;
  color: var(--muted);
}

.admin-table-wrap {
  overflow-x: auto;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 720px;
}

.admin-table th,
.admin-table td {
  text-align: left;
  padding: 0.55rem 0.5rem;
  border-bottom: 1px solid rgba(13, 13, 13, 0.08);
  font-size: 0.88rem;
}

.admin-table th {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted);
}

.admin-calendar {
  border: 1px solid rgba(184, 134, 11, 0.2);
  border-radius: 10px;
  padding: 0.8rem;
}

.admin-cal-head {
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin-bottom: 0.55rem;
}

.admin-cal-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.35rem;
  margin-bottom: 0.35rem;
  color: var(--muted);
  font-size: 0.78rem;
  text-align: center;
}

.admin-cal-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 0.35rem;
}

.admin-cal-cell {
  min-height: 70px;
  border: 1px solid rgba(13, 13, 13, 0.08);
  border-radius: 8px;
  padding: 0.4rem;
  background: rgba(250, 248, 244, 0.55);
}

.admin-cal-cell.is-out {
  opacity: 0.45;
}

.admin-cal-cell__day {
  font-weight: 700;
  font-size: 0.86rem;
}

.admin-cal-cell__count {
  margin-top: 0.25rem;
  font-size: 0.75rem;
  color: var(--muted);
}

/* Styles catalog page — Maya-style sections + photo cards */
.catalog-price-accent {
  color: var(--pink-dark);
}

.price-menu {
  margin-bottom: 3rem;
}

.price-menu__lead {
  text-align: center;
  color: var(--muted);
  max-width: 58ch;
  margin: 0 auto 1.5rem;
  font-size: 0.98rem;
  line-height: 1.55;
}

.price-menu__lead strong {
  color: var(--pink-dark);
}

.price-menu__banner {
  margin: 0 auto 1.75rem;
  padding: 0.85rem 1.15rem;
  text-align: center;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--ink);
  background: rgba(219, 39, 119, 0.06);
  border: 1px solid rgba(219, 39, 119, 0.18);
  border-radius: var(--radius);
  max-width: 720px;
}

.price-menu__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.75rem 2.5rem;
  align-items: start;
}

.price-menu__column {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

@media (max-width: 720px) {
  .price-menu__grid {
    grid-template-columns: 1fr;
  }
}

.price-menu__category {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid rgba(219, 39, 119, 0.14);
  padding: 1.1rem 1.2rem 1.2rem;
  box-shadow: var(--shadow);
}

.price-menu__category h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  font-style: italic;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin: 0 0 0.65rem;
  color: var(--ink);
  border-bottom: 1px solid rgba(219, 39, 119, 0.12);
  padding-bottom: 0.45rem;
}

.price-menu__table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
}

.price-menu__table td {
  padding: 0.35rem 0;
  vertical-align: baseline;
}

.price-menu__table td:first-child {
  color: var(--ink);
  text-transform: uppercase;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
}

.price-menu__table td:last-child {
  text-align: right;
  font-weight: 700;
  color: var(--pink-dark);
  white-space: nowrap;
}

.price-menu__note {
  margin: 1.25rem auto 0;
  font-size: 0.88rem;
  color: var(--muted);
  text-align: center;
  max-width: 52rem;
  line-height: 1.45;
}

.price-menu__note--before-grid {
  margin-bottom: 1.35rem;
}

.price-menu__policy {
  margin-top: 2.5rem;
  padding: 1.35rem 1.5rem;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid rgba(219, 39, 119, 0.14);
}

.price-menu__policy h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin: 0 0 0.75rem;
}

.price-menu__policy ul {
  margin: 0;
  padding-left: 1.2rem;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

.price-menu__policy li {
  margin-bottom: 0.4rem;
}

/* Pricing tabs — styles catalog */
.pricing-tabs {
  margin-bottom: 2.5rem;
}

.pricing-tabs__list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 1.5rem;
  padding: 0.45rem;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(219, 39, 119, 0.14);
  border-radius: 14px;
  box-shadow: 0 4px 22px rgba(13, 13, 13, 0.05);
}

.pricing-tabs__tab {
  flex: 1 1 auto;
  min-width: min(140px, 100%);
  padding: 0.72rem 1.15rem;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  background: transparent;
  border: 2px solid transparent;
  border-radius: 10px;
  cursor: pointer;
  transition:
    color 0.15s ease,
    background 0.15s ease,
    border-color 0.15s ease,
    box-shadow 0.15s ease;
}

.pricing-tabs__tab:hover {
  color: var(--pink-dark);
  background: rgba(219, 39, 119, 0.06);
}

.pricing-tabs__tab:focus-visible {
  outline: 3px solid rgba(236, 72, 153, 0.55);
  outline-offset: 2px;
}

.pricing-tabs__tab[aria-selected="true"] {
  color: var(--ink);
  background: linear-gradient(145deg, #ffffff 0%, #fef6f9 100%);
  border-color: rgba(219, 39, 119, 0.35);
  box-shadow: 0 4px 18px rgba(219, 39, 119, 0.12);
}

.pricing-tabs .pricing-tabs__panel.price-menu {
  margin-bottom: 0;
  animation: pricing-tab-in 0.25s ease;
}

@keyframes pricing-tab-in {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .pricing-tabs .pricing-tabs__panel.price-menu {
    animation: none;
  }
}

/* ——— Styles catalog page — polished layout ——— */
.page-catalog {
  background: linear-gradient(180deg, #fbfaf9 0%, var(--cream) 38%, #f7f4f1 100%);
}

.page-catalog .site-header {
  background: rgba(255, 255, 255, 0.92);
  border-bottom-color: rgba(219, 39, 119, 0.1);
}

.catalog-page-header {
  background: linear-gradient(165deg, #ffffff 0%, #fdf8fa 55%, #faf6f8 100%);
  border-bottom: 1px solid rgba(219, 39, 119, 0.08);
  margin-bottom: 2.5rem;
}

.page-catalog .page-hero--catalog {
  padding: 2.75rem 0 2.25rem;
  text-align: center;
}

.page-catalog .page-hero__eyebrow {
  margin: 0 0 0.65rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--pink-dark);
}

.page-catalog .page-hero--catalog h1 {
  margin: 0 0 1rem;
  letter-spacing: 0.02em;
}

.page-catalog .page-hero__lead {
  margin: 0 auto;
  max-width: 42rem;
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--muted);
}

.page-catalog .page-hero__lead strong {
  color: var(--ink);
  font-weight: 600;
}

.page-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  justify-content: center;
  margin-top: 1.85rem;
}

.page-hero__pill {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.3rem;
  padding: 1rem 1.25rem;
  min-width: min(272px, 100%);
  background: var(--white);
  border: 1px solid rgba(219, 39, 119, 0.14);
  border-radius: 14px;
  box-shadow: 0 4px 24px rgba(13, 13, 13, 0.05);
  text-align: left;
}

.page-hero__pill-label {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--pink-dark);
}

.page-hero__pill-value {
  font-size: 0.94rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.35;
}

.catalog-pricing-wrap {
  padding-bottom: 1rem;
}

.page-catalog .price-menu {
  margin-bottom: 3.5rem;
}

.page-catalog .pricing-tabs .price-menu {
  margin-bottom: 0;
}

.page-catalog .price-menu--studio {
  padding-bottom: 0.25rem;
}

.catalog-section__title--stack {
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.catalog-section__heading-text {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.catalog-section__subtitle {
  margin: 0;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.02em;
}

.page-catalog .catalog-section__title h2 {
  letter-spacing: 0.02em;
}

.price-menu__banner--callout {
  display: block;
  margin: 0 auto 2rem;
  padding: 1.1rem 1.35rem 1.15rem;
  max-width: 52rem;
  text-align: left;
  font-weight: 500;
  line-height: 1.6;
  color: var(--ink);
  background: linear-gradient(90deg, rgba(219, 39, 119, 0.07) 0%, rgba(255, 255, 255, 0.95) 42%);
  border: 1px solid rgba(219, 39, 119, 0.16);
  border-radius: 14px;
  border-left: 4px solid var(--pink);
  box-shadow: 0 2px 16px rgba(219, 39, 119, 0.06);
}

.price-menu__banner--callout strong {
  font-weight: 700;
  color: var(--pink-dark);
}

.page-catalog .price-menu__lead {
  margin-bottom: 2rem;
  padding: 1rem 1.15rem;
  max-width: 48rem;
  background: rgba(255, 255, 255, 0.65);
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.page-catalog .price-menu__category {
  padding: 1.25rem 1.35rem 1.35rem;
  border-radius: 14px;
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: 0 2px 14px rgba(13, 13, 13, 0.04);
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

@media (hover: hover) {
  .page-catalog .price-menu__category:hover {
    border-color: rgba(219, 39, 119, 0.18);
    box-shadow: 0 8px 28px rgba(219, 39, 119, 0.09);
  }
}

.page-catalog .price-menu__category h3 {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  font-style: normal;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin: 0 0 0.85rem;
  padding-bottom: 0.65rem;
  color: var(--ink);
  border-bottom: 2px solid rgba(219, 39, 119, 0.12);
}

.page-catalog .price-menu__table {
  font-variant-numeric: tabular-nums;
}

.page-catalog .price-menu__table tr:not(:last-child) td {
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

.page-catalog .price-menu__table td {
  padding: 0.55rem 0;
}

.page-catalog .price-menu__table td:first-child {
  font-size: 0.84rem;
  letter-spacing: 0.03em;
}

.page-catalog .price-menu__table td:last-child {
  font-size: 0.95rem;
}

.page-catalog .price-menu__policy {
  margin-top: 0;
  margin-bottom: 3rem;
  padding: 1.65rem 1.75rem 1.75rem;
  background: linear-gradient(145deg, #ffffff 0%, #fefcfd 100%);
  border-radius: 16px;
  border: 1px solid rgba(219, 39, 119, 0.12);
  box-shadow: 0 4px 28px rgba(13, 13, 13, 0.05);
}

.page-catalog .price-menu__policy h3 {
  font-size: 1.35rem;
  letter-spacing: 0.02em;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(219, 39, 119, 0.1);
}

ul.price-menu__policy-list {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.price-menu__policy-list li {
  position: relative;
  margin-bottom: 0.85rem;
  padding-left: 1.35rem;
  font-size: 0.94rem;
  line-height: 1.55;
  color: var(--muted);
}

.price-menu__policy-list li:last-child {
  margin-bottom: 0;
}

.price-menu__policy-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pink-light), var(--pink));
  box-shadow: 0 0 0 3px rgba(219, 39, 119, 0.12);
}

.page-catalog .catalog-section--lookbook {
  margin-top: 1rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(219, 39, 119, 0.1);
}

.page-catalog .catalog-photo-grid {
  gap: 2rem;
  row-gap: 2.25rem;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
}

.page-catalog .catalog-photo-card {
  border-radius: 16px;
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: 0 4px 22px rgba(13, 13, 13, 0.06);
}

.page-catalog .catalog-photo-card__body {
  padding: 1.2rem 1.3rem 1.35rem;
  gap: 0.45rem;
}

.page-catalog .catalog-photo-card__body h3 {
  font-size: 1.2rem;
  letter-spacing: 0.01em;
}

.page-catalog .catalog-photo-card__price {
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: none;
  color: var(--pink-dark);
}

.page-catalog .catalog-photo-card__hint {
  font-size: 0.82rem;
  line-height: 1.45;
}

.catalog-page-footer-cta {
  text-align: center;
  margin: 2.75rem 0 0;
  padding: 1.25rem 1rem;
  font-size: 0.98rem;
  color: var(--muted);
  border-top: 1px solid rgba(219, 39, 119, 0.1);
}

.catalog-page-footer-cta a {
  font-weight: 600;
}

@media (max-width: 600px) {
  .page-catalog .page-hero__pill {
    min-width: 100%;
  }

  .price-menu__banner--callout {
    padding: 1rem 1.15rem;
  }
}

.catalog-section {
  margin-bottom: 3.25rem;
}

.catalog-section__title {
  display: flex;
  align-items: stretch;
  gap: 0.85rem;
  margin: 0 0 1.35rem;
}

.catalog-section__bar {
  width: 4px;
  flex-shrink: 0;
  border-radius: 4px;
  background: linear-gradient(180deg, var(--pink-light) 0%, var(--pink) 50%, var(--pink-dark) 100%);
}

.catalog-section__title h2 {
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 2.8vw, 1.85rem);
  font-weight: 700;
  margin: 0;
  color: var(--ink);
  line-height: 1.2;
}

.catalog-photo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.75rem;
  row-gap: 2rem;
}

.catalog-photo-card {
  background: var(--white);
  border-radius: 14px;
  border: 1px solid rgba(219, 39, 119, 0.14);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(13, 13, 13, 0.06);
  display: flex;
  flex-direction: column;
}

.catalog-photo-card__media {
  aspect-ratio: 4 / 5;
  background: linear-gradient(145deg, #e8e4dc 0%, #d4cfc5 100%);
  overflow: hidden;
}

.catalog-photo-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.catalog-photo-card__body {
  padding: 1rem 1.15rem 1.15rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.catalog-photo-card__body h3 {
  font-family: var(--font-display);
  font-size: 1.22rem;
  font-weight: 700;
  margin: 0;
  color: var(--ink);
  line-height: 1.25;
}

.catalog-photo-card__price {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  color: var(--pink-dark);
  margin: 0;
}

.catalog-photo-card__hint {
  font-size: 0.78rem;
  color: var(--muted-soft);
  margin: 0.35rem 0 0;
  line-height: 1.35;
}

.catalog-guide {
  margin-top: 2.5rem;
  padding: 1.75rem 1.5rem;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid rgba(184, 134, 11, 0.18);
  max-width: 720px;
}

.catalog-guide h2 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin: 0 0 1rem;
}

.catalog-guide dl {
  margin: 0;
  display: grid;
  gap: 1rem;
}

.catalog-guide dt {
  font-weight: 700;
  color: var(--ink);
  margin: 0;
}

.catalog-guide dd {
  margin: 0.35rem 0 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.55;
}

/* Legacy text-only rows (booking references, etc.) */
.catalog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1rem;
}

.catalog-item {
  background: var(--white);
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius);
  border: 1px solid rgba(184, 134, 11, 0.18);
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
}

.catalog-item h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin: 0;
  font-weight: 600;
}

.catalog-item .price-tag {
  font-weight: 700;
  color: var(--pink-dark);
  white-space: nowrap;
}

.page-hero {
  padding: 2.5rem 0 1rem;
  text-align: center;
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  margin: 0 0 0.5rem;
}

.page-hero p {
  color: var(--muted);
  margin: 0;
  max-width: 54ch;
  margin-inline: auto;
}

.page-hero--booking {
  padding: 1.65rem 0 0.85rem;
}

.page-hero--booking h1 {
  margin-bottom: 0.6rem;
}

.booking-intro {
  max-width: 38rem;
  margin-inline: auto;
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--muted-soft);
}

.booking-intro__meta {
  display: block;
  margin-top: 0.55rem;
  font-size: 0.92rem;
  line-height: 1.45;
  color: var(--muted);
}

.booking-intro a {
  font-weight: 600;
}

/* Booking form */
.booking-supabase-hint {
  margin: 0 0 1.25rem;
  padding: 0.85rem 1rem;
  font-size: 0.95rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.92);
  background: rgba(20, 16, 12, 0.88);
  border: 1px solid rgba(244, 114, 182, 0.45);
  border-radius: 10px;
}

.booking-supabase-hint code {
  font-size: 0.88em;
  color: #e8d4b4;
}

.booking-supabase-hint a {
  color: var(--hero-pink);
  font-weight: 600;
}

.booking-supabase-hint a:hover {
  text-decoration: underline;
}

.booking-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 2rem;
  align-items: start;
  padding-bottom: 4rem;
}

@media (max-width: 960px) {
  .booking-layout {
    grid-template-columns: 1fr;
  }

  .lookup-form {
    grid-template-columns: 1fr;
  }
}

.form-section {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.75rem;
  margin-bottom: 1.25rem;
  border: 1px solid rgba(184, 134, 11, 0.15);
  box-shadow: var(--shadow);
}

.form-section h2 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  margin: 0 0 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(184, 134, 11, 0.2);
}

.field {
  margin-bottom: 1.1rem;
}

.field label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 0.35rem;
}

.field input[type="text"],
.field input[type="tel"],
.field input[type="email"],
.field input[type="date"],
.field select,
.field textarea {
  width: 100%;
  padding: 0.65rem 0.85rem;
  font-family: var(--font-body);
  font-size: 1rem;
  border: 1px solid rgba(13, 13, 13, 0.15);
  border-radius: 8px;
  background: var(--cream);
}

.field textarea {
  min-height: 88px;
  resize: vertical;
}

.appointment-calendar {
  margin: 0 0 1.15rem;
  padding: 1rem;
  border: 1px solid rgba(184, 134, 11, 0.22);
  border-radius: 10px;
  background: rgba(250, 248, 244, 0.7);
}

.appointment-calendar__title {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--pink-dark);
}

.appointment-calendar__hint {
  margin: 0 0 0.7rem;
  font-size: 0.9rem;
  color: var(--muted);
}

.booking-calendar {
  background: var(--white);
  border: 1px solid rgba(184, 134, 11, 0.2);
  border-radius: 10px;
  overflow: hidden;
}

.booking-calendar__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0.9rem;
  border-bottom: 1px solid rgba(13, 13, 13, 0.08);
}

.booking-calendar__month {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.45rem;
  color: var(--ink);
}

.booking-calendar__nav {
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  border: 1px solid rgba(13, 13, 13, 0.15);
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
  font-size: 1rem;
}

.booking-calendar__weekdays {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  padding: 0.55rem 0.7rem;
  text-align: center;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--muted);
}

.booking-calendar__grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 0.2rem;
  padding: 0 0.7rem 0.7rem;
}

.booking-calendar__day {
  border: none;
  border-radius: 8px;
  background: transparent;
  min-height: 2.4rem;
  font-size: 1rem;
  color: #15314f;
  cursor: pointer;
}

.booking-calendar__day:hover:not(:disabled) {
  background: rgba(184, 134, 11, 0.16);
}

.booking-calendar__day.is-selected {
  background: #111;
  color: #fff;
  font-weight: 700;
}

.booking-calendar__day.is-outside {
  color: rgba(22, 49, 79, 0.35);
}

.booking-calendar__day.is-disabled {
  color: rgba(22, 49, 79, 0.2);
  cursor: not-allowed;
}

.booking-calendar__selected {
  margin: 0;
  padding: 0.8rem 0.9rem;
  border-top: 1px solid rgba(13, 13, 13, 0.08);
  font-size: 1.05rem;
  color: var(--ink);
}

.field small {
  display: block;
  margin-top: 0.35rem;
  color: var(--muted);
  font-size: 0.85rem;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

@media (max-width: 600px) {
  .field-row {
    grid-template-columns: 1fr;
  }
}

.hidden {
  display: none !important;
}

.slot-legend {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.85rem;
  margin-bottom: 1rem;
}

.slot-legend span {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.dot-open {
  background: #2e7d32;
}

.dot-limited {
  background: #f9a825;
}

.dot-full {
  background: #c62828;
}

.time-slots {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.time-slot {
  padding: 0.55rem 0.95rem;
  border-radius: 8px;
  border: 1px solid transparent;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
}

.time-slot:hover:not(:disabled) {
  border-color: var(--pink);
}

.time-slot--open {
  background: #43b047;
  color: #fff;
}

.time-slot--limited {
  background: #ffc107;
  color: #1b1b1b;
}

.time-slot--full {
  background: #ef4444;
  color: #fff;
}

.time-slot.selected {
  outline: 2px solid #111;
  outline-offset: 1px;
}

.time-slot:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.pricing-sidebar {
  position: sticky;
  top: 88px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.5rem;
  border: 2px solid var(--pink);
  box-shadow: var(--shadow);
}

.pricing-sidebar h3 {
  font-family: var(--font-display);
  margin: 0 0 1rem;
  font-size: 1.35rem;
}

.price-line {
  display: flex;
  justify-content: space-between;
  margin: 0.5rem 0;
  font-size: 0.95rem;
}

.price-line.total {
  font-size: 1.35rem;
  font-weight: 800;
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px dashed rgba(184, 134, 11, 0.4);
}

.price-line.deposit {
  color: var(--pink-dark);
  font-weight: 700;
}

.deposit-note {
  font-size: 0.85rem;
  color: var(--muted);
  margin: 1rem 0 0;
}

.alert {
  padding: 0.75rem 1rem;
  border-radius: 8px;
  background: rgba(198, 40, 40, 0.08);
  border: 1px solid rgba(198, 40, 40, 0.25);
  font-size: 0.9rem;
  margin-top: 1rem;
}

.booking-feedback {
  padding: 0.75rem 1rem;
  border-radius: 8px;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.booking-feedback--error {
  background: rgba(198, 40, 40, 0.08);
  border: 1px solid rgba(198, 40, 40, 0.25);
}

.booking-feedback--success {
  background: rgba(46, 125, 50, 0.1);
  border: 1px solid rgba(46, 125, 50, 0.35);
  color: var(--text, inherit);
}

.payment-placeholder {
  margin-top: 1.25rem;
  padding: 1rem;
  background: var(--cream);
  border-radius: 8px;
  font-size: 0.9rem;
  color: var(--muted);
}

.file-preview {
  margin-top: 0.5rem;
  font-size: 0.85rem;
  color: var(--muted);
}

.promo-field {
  margin-top: 1rem;
}

/* Booking lookup */
.lookup-wrap {
  max-width: 760px;
}

.lookup-form {
  display: grid;
  grid-template-columns: 1fr;
  max-width: 520px;
  gap: 0.85rem;
  align-items: stretch;
}

.lookup-form .field-hint {
  margin: 0.35rem 0 0;
  font-size: 0.85rem;
  color: var(--muted);
}

.lookup-form .label-optional {
  font-weight: 400;
  color: var(--muted);
}

.lookup-note {
  margin: 0.7rem 0 0;
  color: var(--muted);
}

.lookup-results {
  display: grid;
  gap: 1rem;
}

.lookup-card {
  background: var(--white);
  border: 1px solid rgba(184, 134, 11, 0.2);
  border-radius: 12px;
  padding: 1rem;
  box-shadow: var(--shadow);
}

.lookup-card__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.4rem;
}

.lookup-card__top h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.35rem;
}

.lookup-status {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-radius: 999px;
  padding: 0.3rem 0.65rem;
}

.lookup-status.is-active {
  background: rgba(46, 125, 50, 0.14);
  color: #1b5e20;
}

.lookup-status.is-cancelled {
  background: rgba(198, 40, 40, 0.14);
  color: #8e1d1d;
}

.lookup-card__teaser {
  margin: 0.35rem 0 0;
  font-size: 0.92rem;
  color: var(--muted);
}

.lookup-card__meta {
  margin: 0.3rem 0;
  color: var(--muted);
}

.lookup-card__id code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.85rem;
  word-break: break-all;
}

.lookup-actions {
  margin-top: 0.75rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.lookup-detail {
  margin-top: 0.85rem;
}

.lookup-detail-panel {
  padding: 1rem 1rem 1.1rem;
  margin-top: 0.75rem;
  background: rgba(250, 248, 242, 0.85);
  border: 1px solid rgba(184, 134, 11, 0.18);
  border-radius: 10px;
}

.lookup-detail__grid {
  display: grid;
  gap: 0.55rem 1rem;
}

.lookup-detail__row {
  display: grid;
  grid-template-columns: minmax(110px, 140px) 1fr;
  gap: 0.35rem 0.75rem;
  align-items: start;
  font-size: 0.95rem;
}

.lookup-detail__label {
  font-weight: 700;
  color: var(--ink);
}

.lookup-detail__value {
  color: var(--muted);
  word-break: break-word;
}

.lookup-detail__value code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.85rem;
}

.lookup-detail__divider {
  margin: 1rem 0;
  border: none;
  border-top: 1px dashed rgba(13, 13, 13, 0.22);
}

.lookup-detail__options-heading {
  margin: 0 0 0.65rem;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
}

.lookup-detail__grid--options {
  margin-top: 0.25rem;
}

.lookup-reschedule-form {
  margin-top: 1rem;
  padding-top: 0.85rem;
  border-top: 1px dashed rgba(13, 13, 13, 0.15);
}

.lookup-empty {
  margin: 0;
  color: var(--muted);
}

/* ——— Style detail (dedicated service pages) ——— */
.style-detail-main {
  padding: 2rem 0 3.5rem;
  background: var(--cream);
}

.style-detail-breadcrumb {
  margin-bottom: 1.5rem;
}

.style-detail-breadcrumb a {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--pink-dark);
}

.style-detail-breadcrumb a:hover {
  color: var(--ink);
}

.style-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: clamp(1.75rem, 4vw, 3rem);
  align-items: start;
}

@media (max-width: 900px) {
  .style-detail-layout {
    grid-template-columns: 1fr;
  }
}

.style-detail-card {
  background: var(--white);
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: var(--shadow);
  padding: clamp(1.25rem, 3vw, 1.75rem);
}

.style-detail-carousel {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background: #e8e4dc;
}

.style-detail-carousel__viewport {
  overflow: hidden;
  aspect-ratio: 4 / 5;
  max-height: min(72vh, 560px);
}

.style-detail-carousel__track {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.35s ease;
}

.style-detail-carousel__slide {
  flex: 0 0 100%;
  margin: 0;
  height: 100%;
}

.style-detail-carousel__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.style-detail-carousel__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.88);
  color: var(--ink);
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  touch-action: manipulation;
}

.style-detail-carousel__btn:hover {
  background: var(--white);
}

.style-detail-carousel__btn--prev {
  left: 10px;
}

.style-detail-carousel__btn--next {
  right: 10px;
}

.style-detail-carousel__dots {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 2;
}

.style-detail-carousel__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  padding: 0;
  background: rgba(255, 255, 255, 0.55);
  cursor: pointer;
}

.style-detail-carousel__dot.is-active {
  background: var(--white);
  transform: scale(1.15);
}

.style-detail-booking-block {
  margin-top: 1.5rem;
}

.style-detail-price {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  margin: 0 0 0.65rem;
  color: var(--ink);
}

.style-detail-price-note {
  font-size: 0.88rem;
  font-style: italic;
  color: var(--muted-soft);
  margin: 0 0 0.35rem;
  line-height: 1.45;
}

.style-detail-book-btn {
  margin-top: 1.25rem;
  width: 100%;
  justify-content: center;
  padding: 0.85rem 1.25rem;
  border-radius: 10px;
}

.style-detail-col--copy h1 {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3.5vw, 2.45rem);
  font-weight: 700;
  margin: 0 0 1rem;
  color: var(--ink);
  line-height: 1.15;
}

.style-detail-lead {
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--muted);
  margin: 0 0 1.5rem;
}

.style-detail-panel {
  background: rgba(250, 248, 244, 0.95);
  border: 1px solid rgba(184, 134, 11, 0.18);
  border-radius: 12px;
  padding: 1.15rem 1.25rem;
  margin-bottom: 1.15rem;
}

.style-detail-panel h2 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0 0 0.85rem;
  color: var(--ink);
}

.style-detail-panel .style-detail-icon {
  flex-shrink: 0;
  color: var(--pink-dark);
}

.style-detail-checklist {
  list-style: none;
  padding: 0;
  margin: 0;
}

.style-detail-checklist li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.55rem;
  font-size: 0.96rem;
  line-height: 1.45;
  color: var(--muted);
}

.style-detail-checklist li:last-child {
  margin-bottom: 0;
}

.style-detail-checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 6px;
  height: 10px;
  border: solid var(--pink-heading);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.catalog-photo-card-wrap {
  text-decoration: none;
  color: inherit;
  display: block;
  border-radius: 14px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

@media (hover: hover) {
  .catalog-photo-card-wrap:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(13, 13, 13, 0.12);
  }

  .catalog-photo-card-wrap:hover .catalog-photo-card {
    border-color: rgba(192, 130, 62, 0.45);
  }
}

.catalog-photo-card-wrap:focus-visible {
  outline: 3px solid var(--pink-heading);
  outline-offset: 4px;
}

/* ——— Mobile: scroll-snap carousels, spacing, nav ——— */
@media (max-width: 768px) {
  .section {
    padding: 2.4rem 0;
  }

  .section-head {
    margin-bottom: 1.65rem;
  }

  .section-head h2 {
    line-height: 1.2;
  }

  .page-hero {
    padding: 1.65rem 0 0.65rem;
  }

  .page-hero h1 {
    line-height: 1.15;
  }

  .site-header,
  .hero-nav--site {
    padding-top: max(0.5rem, env(safe-area-inset-top, 0px));
  }

  .booking-layout {
    padding-bottom: 2.5rem;
  }

  .style-detail-main {
    padding: 1.25rem 0 2.5rem;
  }

  /* Horizontal swipe rows — cards & media */
  .card-grid,
  .catalog-photo-grid,
  .video-grid,
  .catalog-grid {
    display: flex;
    flex-wrap: nowrap;
    gap: 1rem;
    overflow-x: auto;
    overflow-y: visible;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: 1rem;
    padding: 0 0 0.85rem;
    margin-inline: -0.25rem;
    padding-inline: 0.25rem;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
    scrollbar-width: thin;
    scrollbar-color: rgba(184, 134, 11, 0.45) transparent;
    align-items: stretch;
  }

  .card-grid::-webkit-scrollbar,
  .catalog-photo-grid::-webkit-scrollbar,
  .video-grid::-webkit-scrollbar,
  .catalog-grid::-webkit-scrollbar {
    height: 5px;
  }

  .card-grid::-webkit-scrollbar-thumb,
  .catalog-photo-grid::-webkit-scrollbar-thumb,
  .video-grid::-webkit-scrollbar-thumb,
  .catalog-grid::-webkit-scrollbar-thumb {
    background: rgba(184, 134, 11, 0.4);
    border-radius: 999px;
  }

  .card-grid > *,
  .catalog-photo-grid > *,
  .video-grid > *,
  .catalog-grid > * {
    flex: 0 0 min(18.25rem, calc(100vw - 3rem));
    scroll-snap-align: start;
    max-width: min(18.25rem, calc(100vw - 3rem));
    min-height: 0;
  }

  .catalog-photo-card-wrap,
  .style-card-wrap {
    height: 100%;
    display: flex;
    flex-direction: column;
  }

  .catalog-photo-card,
  .style-card {
    flex: 1;
    height: 100%;
    min-height: 100%;
  }

  .video-grid > .video-embed {
    min-height: clamp(280px, 72vw, 420px);
    max-height: 75vh;
  }

  .video-grid .video-embed iframe {
    min-height: clamp(280px, 72vw, 420px);
    height: clamp(280px, 72vw, 420px);
  }

  .reels-carousel__slide {
    padding-inline: 0.25rem;
  }

  .reels-carousel__btn {
    display: none;
  }

  .info-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    overflow: visible;
    margin-inline: 0;
    padding: 0;
  }

  .info-cards > * {
    max-width: 100%;
  }

  .info-card--location {
    padding: 1.25rem 1rem;
  }

  .location-map {
    height: 220px;
  }

  .location-under-text {
    grid-template-columns: 1fr;
    gap: 0.9rem;
  }

  /* Booking form full-width feel */
  .form-section {
    padding: 1.35rem 1.15rem;
  }

  .booking-calendar__month {
    font-size: 1.2rem;
  }

  .booking-calendar__day {
    min-height: 2.1rem;
    font-size: 0.95rem;
  }

  /* Style detail: image carousel area uses full width comfortably */
  .style-detail-carousel__viewport {
    max-height: min(70vh, 520px);
  }

  .style-detail-carousel__btn {
    width: 44px;
    height: 44px;
  }
}

@media (max-width: 768px) and (prefers-reduced-motion: reduce) {
  .card-grid,
  .catalog-photo-grid,
  .video-grid,
  .catalog-grid {
    scroll-snap-type: none;
  }
}

@media (max-width: 640px) {
  .nav-main {
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    overflow-y: hidden;
    gap: 1.1rem;
    padding: 0.2rem 0 0.45rem;
    max-width: 100%;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
    scrollbar-width: none;
  }

  .nav-main::-webkit-scrollbar {
    display: none;
  }

  .nav-main a {
    flex: 0 0 auto;
    white-space: nowrap;
  }

  .header-inner {
    gap: 0.75rem;
  }

  .hero-ctas--landing {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }

  .hero-ctas--landing .hero-btn--lg {
    width: 100%;
    max-width: 20rem;
    margin-inline: auto;
    justify-content: center;
    padding-top: 0.95rem;
    padding-bottom: 0.95rem;
  }

  .hero-tags {
    gap: 0.4rem;
  }

  .hero-tags li {
    font-size: 0.72rem;
    padding: 0.3rem 0.55rem;
  }

  .hero-follow {
    justify-content: center;
  }

  /* Footer: readable tap targets */
  .footer-links li {
    margin: 0.5rem 0;
  }

  .footer-social {
    line-height: 1.6;
  }

  .footer-brand__link {
    align-items: flex-start;
  }
}

/* Booking confirmation / receipt (booking-details.html) */
.booking-details-page {
  max-width: 900px;
  margin: 0 auto;
  padding-bottom: 2.5rem;
}

.booking-details-hero {
  text-align: center;
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
}

.booking-details-hero__eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #b8860b;
  margin: 0 0 0.5rem;
}

.booking-details-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 4vw, 2.35rem);
  font-weight: 600;
  line-height: 1.2;
  margin: 0 0 0.65rem;
  color: #2c2416;
}

.booking-details-hero__lead {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.55;
  color: var(--muted);
}

.page-hero--compact h1 {
  margin-bottom: 0.35rem;
}

.booking-details-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  justify-content: center;
  margin-bottom: 1.75rem;
}

.booking-details-notice {
  padding: 0.85rem 1rem;
  border-radius: var(--radius);
  border: 1px solid rgba(184, 134, 11, 0.35);
  background: rgba(184, 134, 11, 0.08);
  margin-bottom: 1rem;
  font-size: 0.95rem;
  line-height: 1.45;
}

.booking-details-notice--warn {
  border-color: rgba(183, 28, 28, 0.32);
  background: rgba(183, 28, 28, 0.07);
}

.booking-details-error {
  padding: 1.25rem;
  border-radius: var(--radius);
  border: 1px solid rgba(183, 28, 28, 0.35);
  background: rgba(183, 28, 28, 0.06);
  margin-bottom: 1.5rem;
}

.booking-details-receipt {
  background: linear-gradient(165deg, #fffefb 0%, #fff 38%, #faf8f4 100%);
  border: 1px solid rgba(184, 134, 11, 0.28);
  border-radius: 16px;
  padding: 1.75rem 1.5rem 1.5rem;
  box-shadow:
    0 4px 24px rgba(44, 36, 22, 0.07),
    0 1px 0 rgba(255, 255, 255, 0.8) inset;
  position: relative;
  overflow: hidden;
}

.booking-details-receipt::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #d4a84b, #c9a227, #e8c76b, #b8860b);
  opacity: 0.95;
}

.booking-details-receipt__brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.65rem;
  margin-bottom: 1rem;
  padding-bottom: 1.1rem;
  border-bottom: 1px solid rgba(184, 134, 11, 0.14);
}

.booking-details-receipt__brand img {
  width: 72px;
  height: 72px;
  object-fit: contain;
}

.booking-details-receipt__brand > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.15rem;
  max-width: 22rem;
}

.booking-details-receipt__title {
  display: block;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
}

.booking-details-receipt__sub {
  display: block;
  font-size: 0.88rem;
  color: var(--muted);
  margin-top: 0;
  line-height: 1.35;
}

.booking-details-receipt__ribbon {
  display: block;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1.25rem;
  padding: 0.28rem 0.75rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #5d4a1a;
  background: linear-gradient(180deg, rgba(232, 199, 107, 0.35), rgba(184, 134, 11, 0.15));
  border: 1px solid rgba(184, 134, 11, 0.35);
  border-radius: 999px;
}

.booking-details-id-block {
  text-align: center;
  padding: 1.35rem 1rem 1.5rem;
  margin: 0 0 1.35rem;
  background: linear-gradient(180deg, rgba(255, 252, 245, 1) 0%, rgba(250, 246, 236, 0.9) 100%);
  border: 2px solid rgba(184, 134, 11, 0.45);
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(184, 134, 11, 0.12);
}

.booking-details-id-block__label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #8a6914;
  margin-bottom: 0.65rem;
}

.booking-details-id-block__code {
  display: block;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: clamp(1.05rem, 2.8vw, 1.45rem);
  font-weight: 600;
  line-height: 1.45;
  letter-spacing: 0.04em;
  word-break: break-all;
  color: #1a1510;
  margin: 0 0 0.75rem;
  padding: 0.5rem 0.35rem;
  background: rgba(255, 255, 255, 0.75);
  border-radius: 10px;
  border: 1px dashed rgba(184, 134, 11, 0.4);
}

.booking-details-id-block__chip {
  display: inline-block;
  margin: 0 0 0.85rem;
  padding: 0.35rem 0.85rem;
  font-size: 0.82rem;
  font-weight: 700;
  font-family: ui-monospace, monospace;
  letter-spacing: 0.08em;
  color: #4a3c16;
  background: rgba(201, 162, 39, 0.2);
  border-radius: 8px;
  border: 1px solid rgba(184, 134, 11, 0.3);
}

.booking-details-id-block__hint {
  margin: 0;
  max-width: 28rem;
  margin-left: auto;
  margin-right: auto;
  font-size: 0.84rem;
  line-height: 1.45;
  color: var(--muted);
}

.booking-details-status-pill {
  font-weight: 600;
  margin: 0 0 1.35rem;
  padding: 0.75rem 1rem;
  line-height: 1.45;
  text-align: center;
  border-radius: 12px;
  font-size: 0.95rem;
}

.booking-details-status-pill.is-deposit-ok {
  color: #1b5e20;
  background: rgba(46, 125, 50, 0.1);
  border: 1px solid rgba(46, 125, 50, 0.28);
}

.booking-details-status-pill.is-deposit-pending {
  color: #5d4037;
  background: rgba(141, 110, 99, 0.12);
  border: 1px solid rgba(121, 85, 72, 0.22);
}

.booking-details-sections {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem 1.25rem;
}

@media (max-width: 640px) {
  .booking-details-sections {
    grid-template-columns: 1fr;
  }
}

.booking-details-section {
  margin: 0;
  padding: 1rem 1.1rem;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(184, 134, 11, 0.14);
  border-radius: 12px;
}

.booking-details-section--payment {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, rgba(255, 251, 235, 0.95) 0%, rgba(255, 255, 255, 0.9) 100%);
  border-color: rgba(184, 134, 11, 0.28);
}

.booking-details-section__title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  margin: 0 0 0.75rem;
  padding-bottom: 0.45rem;
  color: #3d3226;
  border-bottom: 2px solid rgba(184, 134, 11, 0.35);
}

.booking-details-section--payment .booking-details-section__title {
  border-bottom-color: rgba(184, 134, 11, 0.5);
}

.booking-details-dl {
  display: grid;
  grid-template-columns: minmax(5.5rem, 8.5rem) 1fr;
  gap: 0.5rem 0.85rem;
  margin: 0;
}

.booking-details-section--payment .booking-details-dl {
  grid-template-columns: minmax(7rem, 10rem) 1fr;
}

.booking-details-dl dt {
  margin: 0;
  font-weight: 600;
  color: #6d5d48;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.booking-details-dl dd {
  margin: 0;
  font-size: 0.92rem;
  font-weight: 500;
  color: #2c2416;
  word-break: break-word;
}

.booking-details-section--payment .booking-details-dl dd {
  font-size: 1rem;
}

.booking-details-section--payment .booking-details-dl dd:nth-child(2),
.booking-details-section--payment .booking-details-dl dd:nth-child(4) {
  font-weight: 700;
  font-size: 1.08rem;
  color: #1a1510;
}

.booking-details-receipt__fineprint {
  margin: 1.35rem 0 0;
  padding-top: 1.1rem;
  border-top: 1px solid rgba(219, 39, 119, 0.2);
  font-size: 0.85rem;
  color: var(--muted);
  text-align: center;
}

.booking-details-receipt__fineprint a {
  color: var(--pink-dark);
  font-weight: 600;
}

/* ——— Home hero portrait (pink frame) + Cal / inquiries ——— */
.hero-aside-col {
  display: flex;
  flex-direction: column;
  gap: clamp(1.25rem, 3vw, 1.75rem);
  align-items: stretch;
}

.hero-portrait {
  margin: 0;
}

.hero-portrait__frame {
  border-radius: 24px;
  padding: 5px;
  background: linear-gradient(145deg, #fbcfe8 0%, #f472b6 45%, #db2777 100%);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.12) inset,
    0 20px 50px rgba(219, 39, 119, 0.32),
    0 8px 24px rgba(0, 0, 0, 0.4);
}

.hero-portrait__frame img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 20px;
  object-fit: cover;
  aspect-ratio: 3/4;
  max-height: min(72vh, 520px);
  object-position: center top;
  background: #111;
}

@media (max-width: 960px) {
  .hero-aside-col {
    max-width: 22rem;
    margin-inline: auto;
  }
}

.location-map-placeholder {
  min-height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  text-align: center;
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--muted);
  background: rgba(219, 39, 119, 0.06);
  border-radius: var(--radius);
  border: 1px dashed rgba(219, 39, 119, 0.35);
}

.cal-booking-section .cal-embed-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(219, 39, 119, 0.25);
  background: var(--white);
  box-shadow: var(--shadow);
  min-height: 620px;
}

.cal-booking-section .cal-embed-wrap iframe {
  width: 100%;
  min-height: 620px;
  border: 0;
  display: block;
}

.booking-pricing-tier .pricing-situation-hint {
  display: block;
  margin-top: 0.35rem;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.45;
}

.inquiry-feedback {
  margin-top: 0.75rem;
  padding: 0.75rem 1rem;
  border-radius: var(--radius);
  font-size: 0.95rem;
}

.inquiry-feedback--success {
  background: rgba(16, 185, 129, 0.12);
  color: #065f46;
}

.inquiry-feedback--error {
  background: rgba(244, 63, 94, 0.1);
  color: #9f1239;
}

.admin-inquiries-note {
  margin: 0 0 0.75rem;
  font-size: 0.92rem;
  color: var(--muted);
}
