:root {
  /* Steel & Stubble client palette (heritage blue-warm blend) */
  --lavender: #CFD8E0;
  --lavender-light: #EAF0F5;
  --lavender-lighter: #F5F8FA;
  --indigo: #243749;
  --indigo-soft: #3A5166;
  --gold: #A57A4E;
  --gold-dark: #8C633B;
  
  /* Semantic tokens */
  --bg: #E9EDF1;
  --bg-soft: #DDE4EA;
  --card: var(--lavender-lighter);
  --text: #1F2B35;
  --text-muted: #425564;
  --muted: var(--text-muted);
  --accent: var(--gold);
  --line: rgba(36, 55, 73, 0.18);
  --radius: 16px;
  --shadow: 0 4px 24px rgba(42, 31, 24, 0.16);
  --shadow-hover: 0 8px 32px rgba(42, 31, 24, 0.24);

  /* Adaptive readability tokens (brand-safe light/dark ink variants) */
  --ink-light-strong: #F8F3EA;
  --ink-light-muted: rgba(248, 243, 234, 0.88);
  --ink-dark-strong: #2A1F18;
  --ink-dark-muted: rgba(42, 31, 24, 0.86);
  --ink-scrim-dark: rgba(13, 10, 9, 0.56);
  --ink-scrim-light: rgba(251, 245, 236, 0.7);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  min-height: 100svh;
  font-family: "Inter", sans-serif;
  color: var(--text);
  background:
    radial-gradient(ellipse at 20% 10%, rgba(120, 150, 180, 0.22) 0%, transparent 52%),
    radial-gradient(ellipse at 80% 60%, rgba(165, 122, 78, 0.12) 0%, transparent 55%),
    linear-gradient(to bottom, #C8D5E0 0%, #B8C5D5 100%);
  line-height: 1.6;
}

main {
  position: relative;
  isolation: isolate;
}

.container {
  width: min(1180px, 92vw);
  margin: 0 auto;
}

.bg-collage {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.42;
  mix-blend-mode: multiply;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.9rem;
  padding: 1.2rem;
}

.bg-collage__tile {
  overflow: hidden;
  border-radius: 12px;
  min-height: 180px;
  border: 1px solid rgba(241, 242, 244, 0.12);
}

.bg-collage__tile img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  filter: saturate(0.8) contrast(1.04);
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(227, 236, 244, 0.94);
  border-bottom: 1px solid var(--line);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 72px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--indigo);
  text-decoration: none;
  font-weight: 700;
  transition: color 0.3s ease;
}

.brand:hover {
  color: var(--gold);
}

.brand img {
  width: auto;
  height: 44px;
  object-fit: contain;
  filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.55));
}

.brand strong {
  font-family: "Syne", sans-serif;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
}

.nav {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.nav a {
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.94rem;
  transition: color 0.3s ease;
}

.nav a:hover,
.nav a:focus-visible {
  color: var(--indigo);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(36, 55, 73, 0.28);
  border-radius: 999px;
  min-height: 44px;
  padding: 0.75rem 1.05rem;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.01em;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(18, 25, 33, 0.16);
  transition: transform 0.24s ease, box-shadow 0.24s ease, background 0.24s ease, border-color 0.24s ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(18, 25, 33, 0.24);
}

.button:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(18, 25, 33, 0.18);
}

.button--primary {
  background: linear-gradient(180deg, #B68959 0%, var(--gold) 72%);
  color: var(--indigo);
  border-color: rgba(140, 99, 59, 0.6);
  box-shadow: 0 6px 18px rgba(165, 122, 78, 0.34);
}

.button--primary:hover {
  background: var(--gold-dark);
  border-color: rgba(115, 82, 47, 0.78);
  box-shadow: 0 10px 24px rgba(165, 122, 78, 0.42);
}

.button--ghost {
  border-color: rgba(36, 55, 73, 0.58);
  color: var(--indigo);
  background: rgba(207, 216, 224, 0.32);
}

.button--ghost:hover {
  background: var(--lavender);
  border-color: rgba(165, 122, 78, 0.8);
  color: var(--gold);
}

.hero {
  padding: 1.4rem 0 1.6rem;
  min-height: calc(100svh - 72px);
  display: flex;
  align-items: center;
}

.hero--compact {
  min-height: 0;
  padding: calc(72px + 1.2rem) 0 1.8rem;
}

.hero--compact .container {
  max-width: 980px;
  display: grid;
  gap: 0.85rem;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: clamp(1rem, 2.2vw, 1.4rem);
  background: linear-gradient(160deg, rgba(244, 234, 219, 0.94), rgba(251, 245, 236, 0.9));
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow);
}

.gallery-hero__metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.65rem;
  margin-top: 0.15rem;
}

.hero--compact .hero-metric {
  padding: 0.7rem 0.75rem;
  border: 1px solid rgba(165, 122, 78, 0.3);
  background: linear-gradient(135deg, rgba(165, 122, 78, 0.1), transparent);
  border-radius: 12px;
}

.hero--compact .hero-metric strong {
  color: var(--gold);
}

.hero--compact .hero__actions {
  margin-top: 0.1rem;
}

.hero__shell {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  align-items: center;
  gap: clamp(1rem, 3vw, 2rem);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: clamp(1rem, 2.4vw, 2rem);
  background: linear-gradient(150deg, rgba(27, 37, 48, 0.88), rgba(18, 25, 33, 0.94));
  box-shadow: var(--shadow);
  min-height: min(760px, calc(100svh - 120px));
}

.hero__content {
  display: grid;
  gap: 0.9rem;
}

.hero__eyebrow {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  color: var(--accent);
  font-weight: 700;
}

.hero h1 {
  font-family: "Syne", sans-serif;
  margin: 0;
  line-height: 1.04;
  font-size: clamp(2.4rem, 6vw, 5rem);
  max-width: 11ch;
}

.hero-headline--logo {
  max-width: none;
  line-height: 1;
}

.hero-headline--logo img {
  display: block;
  width: clamp(220px, 42vw, 520px);
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.35)) brightness(0) invert(1);
}

.hero p {
  margin: 0;
  color: var(--muted);
  max-width: 60ch;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 0.3rem;
}

.hero__status {
  display: grid;
  gap: 0.6rem;
  margin-top: 0.2rem;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(165, 122, 78, 0.24);
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(165, 122, 78, 0.08), rgba(255, 255, 255, 0.03));
}

.hero__status-top,
.hero__status-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.hero__status-badge,
.hero__status-call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  border-radius: 999px;
  padding: 0.35rem 0.8rem;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero__status-badge {
  background: rgba(165, 122, 78, 0.18);
  color: var(--accent);
  border: 1px solid rgba(165, 122, 78, 0.28);
}

.hero__status-next,
.hero__status-wait,
.hero__status-note {
  color: rgba(241, 234, 224, 0.92);
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.38);
}

.hero__status-next,
.hero__status-wait {
  font-size: 0.9rem;
  font-weight: 600;
}

.hero__status-note {
  font-size: 0.95rem;
  line-height: 1.55;
}

.hero__status-call {
  color: var(--text);
  text-decoration: none;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line);
}

.hero__status-call:hover {
  color: var(--accent);
  border-color: rgba(165, 122, 78, 0.5);
}

.hero__metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.7rem;
  margin-top: 0.15rem;
}

.hero-metric {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.8rem 0.85rem;
  background: rgba(255, 255, 255, 0.03);
}

.hero-metric strong {
  display: block;
  color: var(--accent);
  font-family: "Syne", sans-serif;
  font-size: 1.25rem;
  line-height: 1;
}

.hero-metric span {
  display: block;
  margin-top: 0.35rem;
  color: var(--muted);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.hero__booking-cue {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  width: fit-content;
  color: var(--text);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.92rem;
}

.hero__booking-cue::before {
  content: "";
  width: 34px;
  height: 1px;
  background: linear-gradient(90deg, rgba(165, 122, 78, 0.12), var(--accent));
}

.hero__booking-cue:hover {
  color: var(--accent);
}

.hero__visual {
  position: relative;
  min-height: 440px;
}

.hero__pole-wrap {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 70px;
  display: grid;
  justify-items: center;
  gap: 0.35rem;
}

.hero__pole-cap {
  width: 42px;
  height: 14px;
  border-radius: 999px;
  background: linear-gradient(180deg, #eceef1, #8d9096);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.15);
}

.hero__pole {
  width: 54px;
  height: 240px;
  border-radius: 999px;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.28), rgba(255,255,255,0.05) 40%, rgba(0,0,0,0.2)),
    repeating-linear-gradient(135deg, #b11f2c 0 18px, #f5f5f5 18px 36px, #1f56b8 36px 54px);
  border: 3px solid rgba(214, 217, 222, 0.85);
  box-shadow: 0 20px 40px rgba(0,0,0,0.35);
  animation: poleSpin 3.6s linear infinite;
}

.hero__visual-card {
  position: absolute;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: rgba(20, 20, 24, 0.7);
}

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

.hero__visual-card--primary {
  top: 0;
  right: 0;
  width: min(310px, 75%);
  height: 290px;
  animation: floatCard 5s ease-in-out infinite;
}

.hero__visual-card--secondary {
  left: 0;
  bottom: 0;
  width: min(230px, 58%);
  height: 230px;
  animation: floatCard 5s ease-in-out infinite reverse;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
  margin-bottom: 1rem;
}

.trust-chip {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.9rem;
  background: rgba(24, 24, 28, 0.82);
  text-align: center;
  animation: fadeRise 0.6s ease both;
}

.trust-chip strong {
  display: block;
  font-family: "Syne", sans-serif;
  font-size: 1.4rem;
  color: var(--accent);
  line-height: 1;
}

.trust-chip span {
  display: block;
  margin-top: 0.35rem;
  color: var(--muted);
  font-size: 0.88rem;
}

.brand-band {
  margin-bottom: 1rem;
}

.brand-band__card {
  display: grid;
  gap: 1rem;
  grid-template-columns: minmax(0, 220px) minmax(0, 1fr);
  align-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.1rem;
  background: linear-gradient(145deg, rgba(165, 122, 78, 0.14), rgba(42, 31, 24, 0.94));
  box-shadow: 0 10px 24px rgba(42, 31, 24, 0.24);
  animation: fadeRise 0.7s ease both;
}

.brand-band__card img {
  width: 100%;
  max-width: 220px;
  height: auto;
  object-fit: contain;
}

.brand-band__eyebrow {
  margin: 0 0 0.35rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  font-size: 0.78rem;
  color: var(--accent);
  font-weight: 700;
}

.brand-band h2 {
  margin: 0;
  font-family: "Syne", sans-serif;
  font-size: clamp(1.2rem, 2.4vw, 1.7rem);
  line-height: 1.2;
}

.brand-band p {
  margin: 0.55rem 0 0;
  color: var(--muted);
}

.booking-section-intro {
  display: grid;
  gap: 0.45rem;
  margin-bottom: 1rem;
}

.booking-section-intro__eyebrow {
  margin: 0;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.booking-section-intro h2 {
  margin: 0;
  color: var(--indigo);
  font-family: "Syne", sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  line-height: 1.05;
}

.booking-section-intro p:last-child {
  margin: 0;
  max-width: 60ch;
  color: #2a1f18;
  font-size: 1rem;
  line-height: 1.65;
}

.booking-flow-wrapper {
  display: grid;
  gap: 1.2rem;
  padding-bottom: 2rem;
  grid-template-columns: 1fr;
}

.location-card,
.booking-flow-card,
.panel {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.1rem;
  box-shadow: var(--shadow);
}

.location-card {
  align-self: start;
  background: linear-gradient(165deg, rgba(255, 252, 246, 0.96), rgba(232, 224, 214, 0.94));
  border-color: rgba(42, 31, 24, 0.16);
}

.location-card__header {
  margin-bottom: 0.7rem;
}

.location-card h2,
.panel h2,
.booking-flow__step h2 {
  margin: 0 0 0.5rem;
  font-family: "Syne", sans-serif;
  color: var(--indigo);
}

.location-card p {
  margin: 0.5rem 0 0;
  color: #2a1f18;
}

.location-card #location-phone {
  color: #1a2e42;
  font-weight: 700;
}

.location-card .panel__meta,
.location-card #hours-list,
.location-card #hours-list p,
.location-card #location-map-link {
  color: #2a1f18;
}

.location-card #location-map-link {
  border-color: rgba(42, 31, 24, 0.18);
}

.location-card .button {
  margin-top: 0.8rem;
}

.booking-flow-card {
  min-height: min(860px, calc(100svh - 120px));
}

.booking-flow__progress {
  margin-bottom: 1.2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line);
}

.progress-bar {
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
}

.progress-step {
  appearance: none;
  flex: 1;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(12, 12, 14, 0.48);
  cursor: pointer;
  transition: all 0.2s ease;
  color: var(--text);
}

.progress-step.active {
  background: var(--accent);
  border-color: var(--accent);
  color: #2A1F18;
  box-shadow: 0 10px 24px rgba(165, 122, 78, 0.28);
}

.progress-step.complete {
  background: rgba(165, 122, 78, 0.18);
  border-color: var(--accent);
}

.progress-label {
  font-weight: 700;
  font-size: 0.85rem;
  text-align: center;
}

.booking-flow__step {
  display: none;
}

.booking-flow__step.active {
  display: block;
  animation: slideIn 0.3s ease;
}

.booking-flow__step .panel__meta {
  margin-bottom: 1rem;
}

.services-grid,
.staff-grid,
.gallery-grid {
  display: grid;
  gap: 0.75rem;
}

.services-grid {
  margin-top: 0.9rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.staff-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-bottom: 1rem;
}

.gallery-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.service-card,
.staff-card,
.payment-method,
.media-wall__item,
.reel-link,
.gallery-item {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(12, 12, 14, 0.48);
}

.service-card,
.staff-card {
  padding: 0.85rem;
  transition: transform 0.24s ease, border-color 0.24s ease, background 0.24s ease;
}

.service-card:hover,
.service-card.selected,
.staff-card:hover,
.staff-card.selected {
  transform: translateY(-4px);
  border-color: rgba(165, 122, 78, 0.72);
  background: rgba(28, 28, 32, 0.82);
}

.staff-card--featured {
  background: linear-gradient(145deg, rgba(165, 122, 78, 0.18), rgba(22, 6, 81, 0.78));
  border-color: rgba(165, 122, 78, 0.72);
}

.booking-flow__courtesy {
  margin-top: 1rem;
}

.booking-staff-context {
  margin: 0 0 1rem;
  border: 1px solid rgba(165, 122, 78, 0.34);
  border-radius: 14px;
  padding: 0.9rem;
  background: linear-gradient(145deg, rgba(165, 122, 78, 0.14), rgba(36, 55, 73, 0.18));
}

.booking-staff-context__title {
  margin: 0;
  color: var(--text);
  font-size: 0.92rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.booking-staff-context__barber {
  margin: 0.3rem 0 0;
  color: var(--accent);
  font-size: 1rem;
  font-weight: 800;
}

.booking-staff-context__note {
  margin: 0.45rem 0 0;
  color: var(--text-muted);
  font-size: 0.88rem;
}

.booking-staff-context__taken {
  margin-top: 0.65rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.booking-staff-context__chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 0.15rem 0.55rem;
  border-radius: 999px;
  border: 1px solid rgba(207, 216, 224, 0.28);
  background: rgba(207, 216, 224, 0.12);
  color: rgba(207, 216, 224, 0.76);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: not-allowed;
  opacity: 0.82;
}

/* Redundant with the in-calendar legend — hide the widget's text explanation above the calendar */
#step-booking .forge-booking__calendar-range {
  display: none;
}

/* Hide "Other barber" legend item when there is only 1 active barber */
#step-booking[data-single-barber] .forge-booking__legend-item:nth-child(2) {
  display: none;
}

/* Hint text shown before a date is selected */
.forge-booking__select-date-hint {
  text-align: center;
  color: var(--text-secondary, rgba(255,255,255,0.55));
  font-size: 0.95rem;
  padding: 1.25rem 0.5rem;
  margin: 0;
}

/* Label above time slots showing which barber's times are displayed (bronze-date override) */
.forge-booking__times-staff-label {
  text-align: center;
  font-size: 0.9rem;
  color: var(--text-secondary, rgba(255,255,255,0.7));
  padding: 0.5rem 0 0.25rem;
  margin: 0;
}
.forge-booking__times-staff-label strong {
  color: var(--accent, #C5B668);
}

/* Bronze-date barber picker panel */
.forge-booking__bronze-picker {
  text-align: center;
  padding: 1rem 0.5rem;
}
.forge-booking__bronze-picker-title {
  font-size: 1rem;
  color: var(--text-color, #fff);
  margin: 0 0 0.25rem;
}
.forge-booking__bronze-picker-subtitle {
  font-size: 0.9rem;
  color: var(--text-secondary, rgba(255,255,255,0.6));
  margin: 0 0 1rem;
}
.forge-booking__bronze-picker-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}
.forge-booking__bronze-barber-card {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 140px;
  padding: 0.75rem 1.25rem;
  border-radius: 12px;
  border: 1px solid var(--border-muted, rgba(165,122,78,0.35));
  background: var(--surface-alt, rgba(22,6,81,0.5));
  color: var(--text-color, #fff);
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, transform 0.15s;
}
.forge-booking__bronze-barber-card:hover,
.forge-booking__bronze-barber-card:focus-visible {
  border-color: var(--accent, #C5B668);
  background: rgba(197,182,104,0.1);
  transform: translateY(-1px);
}
.forge-booking__bronze-barber-card--any {
  border-style: dashed;
  font-style: italic;
  color: var(--text-secondary, rgba(255,255,255,0.7));
}

.booking-courtesy-card {
  border: 1px solid rgba(165, 122, 78, 0.5);
  border-radius: 16px;
  padding: 1rem;
  background: linear-gradient(145deg, rgba(22, 6, 81, 0.86), rgba(42, 31, 24, 0.94));
  box-shadow: 0 16px 30px rgba(12, 12, 14, 0.24);
}

.booking-courtesy-card__eyebrow {
  margin: 0 0 0.35rem;
  color: var(--accent);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.booking-courtesy-card__message {
  margin: 0;
  color: var(--text);
}

.booking-courtesy-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.9rem;
}

.service-card__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.65rem;
}

.service-card h3,
.staff-card h3,
.payment-method h3,
.media-wall__item h3 {
  margin: 0;
  font-size: 0.98rem;
  min-width: 0;
  flex: 1 1 auto;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.service-card__price {
  color: var(--accent);
  font-weight: 700;
  font-size: 0.95rem;
  white-space: nowrap;
  flex: 0 0 auto;
}

.service-card p,
.staff-card p,
.payment-method p {
  margin: 0.45rem 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.service-card__meta {
  margin-top: 0.5rem;
  font-size: 0.78rem;
  letter-spacing: 0.02em;
  color: var(--muted);
  text-transform: capitalize;
}

.customer-form {
  margin-bottom: 1rem;
}

.form-group {
  margin-bottom: 0.9rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.35rem;
  font-weight: 600;
  font-size: 0.95rem;
}

.form-group input {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(12, 12, 14, 0.48);
  color: var(--text);
  padding: 0.65rem 0.8rem;
  font-family: "Inter", sans-serif;
  font-size: 0.95rem;
}

.form-group input:focus {
  outline: none;
  border-color: var(--accent);
  background: rgba(12, 12, 14, 0.65);
}

.step-actions {
  display: flex;
  gap: 0.8rem;
  margin-top: 1.2rem;
  justify-content: flex-end;
}

.step-actions .button {
  flex: 1;
  max-width: 180px;
}

.section-title {
  margin-top: 0;
  color: var(--indigo);
  font-family: "Syne", sans-serif;
  font-weight: 700;
}

.panel__meta {
  color: var(--text-muted);
  line-height: 1.6;
}

.widget-host {
  min-height: 210px;
  border: 1px dashed rgba(215, 195, 170, 0.4);
  border-radius: 12px;
  padding: 0.75rem;
  background: rgba(42, 31, 24, 0.52);
  overflow: hidden;
}

#step-booking .widget-host .forge-booking__header,
#step-booking .widget-host .forge-booking__footer,
#step-booking .widget-host .forge-booking__title {
  display: none !important;
}

#step-booking .widget-host .forge-booking__content {
  padding-top: 0;
}

.map-embed {
  width: 100%;
  min-height: 180px;
  border: 0;
  border-radius: 12px;
  margin-top: 0.75rem;
}

.payment-methods,
.reel-links,
.site-footer__links {
  display: grid;
  gap: 0.65rem;
}

.payment-method {
  padding: 0.75rem;
  background: rgba(42, 31, 24, 0.56);
}

.media-wall {
  margin-top: 0.5rem;
}

.social-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.media-wall__grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: minmax(0, 300px) minmax(0, 1fr);
}

.media-wall__item {
  padding: 0.85rem;
}

.media-wall__item iframe {
  width: 100%;
  border-radius: 10px;
}

.facebook-reel-frame {
  border: 0;
  overflow: hidden;
}

.tiktok-grid {
  display: grid;
  gap: 0.75rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.tiktok-grid iframe {
  min-height: 420px;
  border: 0;
  background: #0e0e11;
}

.gallery-item {
  overflow: hidden;
}

.gallery-item img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
}

.gallery-item figcaption {
  padding: 0.65rem 0.7rem 0.8rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.reel-link {
  padding: 0.75rem 0.85rem;
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
}

.reel-link:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* ═══════════════════════════════════════════════════════════
   TESTIMONIALS SECTION
   ═══════════════════════════════════════════════════════════ */

.testimonials-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.testimonial-card {
  margin: 0;
  padding: 1.8rem;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: grid;
  gap: 1rem;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.testimonial-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}

.testimonial-card__text {
  margin: 0;
  line-height: 1.7;
  color: var(--text);
  font-size: 0.95rem;
  font-style: italic;
}

.testimonial-card__text::before {
  content: '"';
  color: var(--gold);
  font-size: 2rem;
  line-height: 1;
  display: block;
  margin-bottom: 0.5rem;
  font-family: Georgia, serif;
}

.testimonial-card__author {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding-top: 0.5rem;
  border-top: 1px solid var(--line);
}

.testimonial-card__author strong {
  color: var(--indigo);
  font-size: 0.92rem;
}

.testimonial-card__rating {
  color: var(--gold);
  font-size: 0.95rem;
}

/* ═══════════════════════════════════════════════════════════
   BOOKING CTA SECTION
   ═══════════════════════════════════════════════════════════ */

.booking-cta-section {
  background: linear-gradient(135deg, rgba(42, 31, 24, 0.94) 0%, rgba(70, 52, 40, 0.9) 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.booking-cta {
  text-align: center;
  padding: 2rem 1rem;
  display: grid;
  gap: 1rem;
  max-width: 640px;
  margin: 0 auto;
}

.booking-cta h2 {
  margin: 0;
  color: var(--lavender);
  font-family: "Syne", sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  line-height: 1.2;
}

.booking-cta p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.05rem;
  line-height: 1.6;
}

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

/* ═══════════════════════════════════════════════════════════
   SITE FOOTER
   ═══════════════════════════════════════════════════════════ */

.site-footer {
  border-top: 1px solid var(--line);
  margin-top: 1.8rem;
  background: var(--indigo);
  color: var(--lavender);
}

.site-footer__inner {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1.2fr 1fr 1.2fr;
  padding: 1.3rem 0;
}

.site-footer__brand h3 {
  margin: 0;
  font-family: "Syne", sans-serif;
  font-size: 1.1rem;
  color: var(--lavender);
}

.site-footer__brand p,
.site-footer__meta p {
  margin: 0.35rem 0 0;
  color: var(--lavender);
  opacity: 0.8;
  font-size: 0.92rem;
}

.site-footer__links a,
.site-footer__meta a {
  color: var(--lavender);
  text-decoration: none;
  transition: color 0.3s ease;
}

.site-footer__links a:hover,
.site-footer__meta a:hover {
  color: var(--gold);
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeRise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes floatCard {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes poleSpin {
  from {
    background-position: 0 0, 0 0;
  }
  to {
    background-position: 0 0, 0 108px;
  }
}

@media (min-width: 860px) {
  .booking-flow-wrapper {
    grid-template-columns: 320px 1fr;
    align-items: start;
  }

  .location-card {
    position: sticky;
    top: 88px;
    max-height: calc(100svh - 100px);
    overflow-y: auto;
  }

  .gallery-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .services-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .staff-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .media-wall__grid {
    grid-template-columns: minmax(0, 320px) minmax(0, 1fr);
  }

  .tiktok-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .step-actions .button {
    max-width: none;
  }
}

/* ── Tablet: hero stacks single-column at 760px ─────────── */
@media (max-width: 760px) {
  .hero__shell {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .hero__visual {
    min-height: 440px;
  }

  .hero__barrel {
    left: 50%;
    top: 50%;
  }
}

@media (max-width: 640px) {
  .topbar__inner {
    min-height: 64px;
  }

  .brand strong {
    font-size: 0.95rem;
  }

  .nav {
    gap: 0.55rem;
  }

  .nav a {
    font-size: 0.92rem;
  }

  .button {
    padding: 0.62rem 0.88rem;
  }

  .hero {
    min-height: 0;
  }

  .hero__shell {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .hero__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .gallery-hero__metrics {
    grid-template-columns: 1fr;
  }

  .hero__status-top,
  .hero__status-meta {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero__metrics {
    grid-template-columns: 1fr;
  }

  .hero__visual-card--primary {
    width: 70%;
    height: 190px;
  }

  .hero__visual-card--secondary {
    width: 52%;
    height: 150px;
  }

  .hero__pole {
    height: 170px;
  }

  .trust-strip,
  .services-grid,
  .staff-grid,
  .booking-flow-wrapper,
  .media-wall__grid,
  .tiktok-grid,
  .site-footer__inner,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .brand-band__card {
    grid-template-columns: 1fr;
  }

  .brand-band__card img {
    max-width: 170px;
  }

  .location-card {
    position: relative;
    top: auto;
    max-height: none;
    overflow-y: visible;
  }

  .progress-bar {
    flex-wrap: wrap;
  }

  .progress-step {
    font-size: 0.75rem;
  }

  .step-actions {
    flex-direction: column;
  }

  .step-actions .button {
    width: 100%;
    max-width: none;
  }
}

.booking-flow-card {
  background: linear-gradient(170deg, rgba(28, 36, 45, 0.94), rgba(19, 25, 33, 0.98));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.1rem;
  box-shadow: var(--shadow);
}

.booking-flow__progress {
  margin-bottom: 1.2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line);
}

.progress-bar {
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
}

.progress-step {
  appearance: none;
  flex: 1;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(12, 12, 14, 0.48);
  cursor: pointer;
  transition: all 0.2s ease;
  color: var(--text);
}

.progress-step.active {
  background: var(--accent);
  border-color: var(--accent);
  color: #2A1F18;
}

.progress-step.complete {
  background: rgba(165, 122, 78, 0.2);
  border-color: var(--accent);
}

.progress-label {
  font-weight: 700;
  font-size: 0.85rem;
  text-align: center;
}

.booking-flow__step {
  display: none;
}

.booking-flow__step.active {
  display: block;
  animation: slideIn 0.3s ease;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.booking-flow__step h2 {
  margin: 0 0 0.4rem;
  font-family: "Syne", sans-serif;
  font-size: 1.35rem;
}

.booking-flow__step .panel__meta {
  margin-bottom: 1rem;
}

.services-grid {
  margin-top: 0.9rem;
  display: grid;
  gap: 0.75rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.service-card {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(12, 12, 14, 0.48);
  padding: 0.85rem;
}

.service-card__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.65rem;
}

.service-card h3 {
  margin: 0;
  font-size: 0.98rem;
  min-width: 0;
  flex: 1 1 auto;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.service-card__price {
  color: var(--accent);
  font-weight: 700;
  font-size: 0.95rem;
  white-space: nowrap;
  flex: 0 0 auto;
}

.service-card p {
  margin: 0.45rem 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.service-card__meta {
  margin-top: 0.5rem;
  font-size: 0.78rem;
  letter-spacing: 0.02em;
  color: var(--muted);
  text-transform: capitalize;
}

.staff-grid {
  display: grid;
  gap: 0.75rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-bottom: 1rem;
}

.staff-card {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(12, 12, 14, 0.48);
  padding: 0.85rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.staff-card:hover {
  border-color: var(--accent);
  background: rgba(12, 12, 14, 0.65);
}

.staff-card.selected {
  border-color: var(--accent);
  background: rgba(165, 122, 78, 0.12);
}

.staff-card h3 {
  margin: 0;
  font-size: 0.98rem;
}

.staff-card p {
  margin: 0.35rem 0 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.customer-form {
  margin-bottom: 1rem;
}

.form-group {
  margin-bottom: 0.9rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.35rem;
  font-weight: 600;
  font-size: 0.95rem;
}

.form-group input {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(12, 12, 14, 0.48);
  color: var(--text);
  padding: 0.65rem 0.8rem;
  font-family: "Inter", sans-serif;
  font-size: 0.95rem;
}

.form-group input:focus {
  outline: none;
  border-color: var(--accent);
  background: rgba(12, 12, 14, 0.65);
}

.step-actions {
  display: flex;
  gap: 0.8rem;
  margin-top: 1.2rem;
  justify-content: flex-end;
}

.step-actions .button {
  flex: 1;
  max-width: 180px;
}

.panel {
  background: linear-gradient(170deg, rgba(31, 32, 37, 0.94), rgba(21, 22, 27, 0.98));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.1rem;
  box-shadow: var(--shadow);
}

.panel h2 {
  margin: 0 0 0.7rem;
  font-family: "Syne", sans-serif;
  font-size: 1.35rem;
}

.section-title {
  margin-top: 0;
}

.panel__meta {
  color: var(--muted);
}

.widget-host {
  min-height: 210px;
  border: 1px dashed rgba(215, 195, 170, 0.36);
  border-radius: 12px;
  padding: 0.75rem;
  background: rgba(42, 31, 24, 0.5);
}

.map-embed {
  width: 100%;
  min-height: 180px;
  border: 0;
  border-radius: 12px;
  margin-top: 0.75rem;
}

.payment-methods {
  margin-top: 0.9rem;
  display: grid;
  gap: 0.65rem;
}

.payment-method {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.75rem;
  background: rgba(42, 31, 24, 0.55);
}

.payment-method h3 {
  margin: 0;
  font-size: 1rem;
}

.payment-method p {
  margin: 0.35rem 0 0;
  color: var(--muted);
}

.media-wall {
  margin-top: 0.5rem;
}

.social-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.media-wall__grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: minmax(0, 300px) minmax(0, 1fr);
}

.media-wall__item {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.85rem;
  background: rgba(12, 12, 14, 0.56);
}

.media-wall__item h3 {
  margin: 0 0 0.6rem;
  font-family: "Syne", sans-serif;
  font-size: 1.05rem;
}

.media-wall__item iframe {
  width: 100%;
  border-radius: 10px;
}

.facebook-reel-frame {
  border: 0;
  overflow: hidden;
}

.tiktok-grid {
  display: grid;
  gap: 0.75rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.tiktok-grid iframe {
  min-height: 420px;
  border: 0;
  background: #0e0e11;
}

.gallery-grid {
  display: grid;
  gap: 1.1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.gallery-item {
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  background: rgba(42, 31, 24, 0.5);
  transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
  min-height: 280px;
}

.gallery-item img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
}

.gallery-item figcaption {
  padding: 0.75rem 0.85rem 0.95rem;
  color: var(--muted);
  font-size: 0.93rem;
  line-height: 1.5;
}

@media (hover: hover) {
  .gallery-item:hover {
    transform: translateY(-3px);
    border-color: rgba(165, 122, 78, 0.55);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.3);
  }
}

.reel-links {
  display: grid;
  gap: 0.7rem;
}

.reel-link {
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0.75rem 0.85rem;
  background: rgba(12, 12, 14, 0.5);
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
}

.reel-link:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.site-footer {
  border-top: 1px solid var(--line);
  margin-top: 1.8rem;
  background: rgba(10, 10, 12, 0.9);
}

.site-footer__inner {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1.2fr 1fr 1.2fr;
  padding: 1.3rem 0;
}

.site-footer__brand h3 {
  margin: 0;
  font-family: "Syne", sans-serif;
  font-size: 1.1rem;
}

.site-footer__brand p,
.site-footer__meta p {
  margin: 0.35rem 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.site-footer__links {
  display: grid;
  gap: 0.45rem;
}

.site-footer__links a,
.site-footer__meta a {
  color: var(--text);
  text-decoration: none;
}

.site-footer__links a:hover,
.site-footer__meta a:hover {
  color: var(--accent);
}

@media (min-width: 860px) {
  .booking-flow-wrapper {
    grid-template-columns: 320px 1fr;
    align-items: start;
  }

  .location-card {
    position: sticky;
    top: 88px;
    max-height: calc(100vh - 100px);
    overflow-y: auto;
  }

  .gallery-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .services-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .staff-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .media-wall__grid {
    grid-template-columns: minmax(0, 320px) minmax(0, 1fr);
  }

  .tiktok-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .step-actions .button {
    max-width: none;
  }
}

@media (max-width: 640px) {
  .topbar__inner {
    min-height: 64px;
  }

  #booking-flow {
    scroll-margin-top: 84px;
  }

  .brand strong {
    font-size: 0.95rem;
  }

  .nav {
    gap: 0.55rem;
  }

  .nav a {
    font-size: 0.92rem;
  }

  .button {
    padding: 0.62rem 0.88rem;
  }

  .hero__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .trust-strip {
    grid-template-columns: 1fr;
  }

  .brand-band__card {
    grid-template-columns: 1fr;
  }

  .brand-band__card img {
    max-width: 170px;
  }

  .services-grid,
  .staff-grid,
  .booking-flow-wrapper,
  .media-wall__grid,
  .tiktok-grid,
  .site-footer__inner {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    gap: 1rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-item figcaption {
    padding: 0.7rem 0.75rem 0.85rem;
    font-size: 0.9rem;
  }

  .location-card {
    position: relative;
    top: auto;
    max-height: none;
    overflow-y: visible;
  }

  .progress-bar {
    flex-wrap: wrap;
  }

  .progress-step {
    font-size: 0.75rem;
  }

  .step-actions {
    flex-direction: column;
  }

  .step-actions .button {
    width: 100%;
    max-width: none;
  }

  .gift-card-band__inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
  }
}

/* ─── Accent button (gift card CTA) ─── */
.button--accent {
  background: var(--accent);
  color: #2A1F18;
  border-color: var(--accent);
  font-weight: 700;
  box-shadow: 0 8px 20px rgba(165, 122, 78, 0.3);
}

.button--accent:hover {
  background: #d4c67a;
  border-color: #d4c67a;
}

/* ─── Improved staff card layout ─── */
.staff-card {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}

.staff-card__photo {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--accent);
  background: rgba(12, 12, 14, 0.5);
}

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

.staff-card__photo--icon {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(165, 122, 78, 0.25), rgba(165, 122, 78, 0.12));
}

.staff-card__icon {
  font-family: "Syne", sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}

.staff-card__photo--logo {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(42, 31, 24, 0.8), rgba(42, 31, 24, 0.9));
  padding: 0.4rem;
}

.staff-card__logo-img {
  width: 90%;
  height: 90%;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.staff-card__info {
  min-width: 0;
}

.staff-card__role {
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin: 0.2rem 0 0.35rem !important;
}

.staff-card__bio {
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.5;
  margin: 0 !important;
}

/* ─── Testimonials ─── */
.testimonials-section {
  margin-top: 2rem;
}

.reviews-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  margin-top: 1rem;
}

.odd-stack-grid {
  --odd-stack-columns: 2;
  --odd-stack-gap: 1rem;
}

@media (min-width: 860px) {
  .reviews-grid.odd-stack-grid,
  .testimonials-grid.odd-stack-grid,
  .gallery-grid.odd-stack-grid {
    display: flex !important;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--odd-stack-gap);
  }

  .reviews-grid.odd-stack-grid > *,
  .testimonials-grid.odd-stack-grid > *,
  .gallery-grid.odd-stack-grid > * {
    flex: 0 1 calc((100% - (var(--odd-stack-gap) * (var(--odd-stack-columns) - 1))) / var(--odd-stack-columns));
    max-width: calc((100% - (var(--odd-stack-gap) * (var(--odd-stack-columns) - 1))) / var(--odd-stack-columns));
  }
}

.review-card {
  background: linear-gradient(160deg, rgba(28, 28, 34, 0.96), rgba(20, 20, 26, 0.98));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.1rem;
  display: grid;
  gap: 0.55rem;
}

.star-rating {
  color: var(--accent);
  font-size: 1rem;
  letter-spacing: 0.05em;
}

.review-card__text {
  margin: 0;
  font-style: italic;
  color: var(--text);
  font-size: 0.95rem;
  line-height: 1.6;
}

.review-card__footer {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 0.2rem;
  font-size: 0.9rem;
}

.review-card__footer strong {
  color: var(--primary);
}

.review-card__source {
  color: var(--muted);
  font-size: 0.85rem;
}

/* ─── FAQs ─── */
.faqs-section {
  margin-top: 2rem;
}

.faqs-list {
  margin-top: 1rem;
  display: grid;
  gap: 0.55rem;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(42, 31, 24, 0.4);
  overflow: hidden;
  transition: border-color 0.2s ease;
}

.faq-item[open] {
  border-color: rgba(165, 122, 78, 0.4);
}

.faq-question {
  list-style: none;
  cursor: pointer;
  padding: 0.9rem 1.1rem;
  font-weight: 600;
  font-size: 0.98rem;
  color: var(--text);
  display: flex;
  justify-content: space-between;
  align-items: center;
  -webkit-user-select: none;
  user-select: none;
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-question::after {
  content: '+';
  font-size: 1.2rem;
  color: var(--accent);
  line-height: 1;
  transition: transform 0.2s ease;
  flex-shrink: 0;
  margin-left: 0.75rem;
}

.faq-item[open] .faq-question::after {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 1.1rem 0.9rem;
  margin: 0;
  color: var(--muted);
  font-size: 0.93rem;
  line-height: 1.65;
}

/* ─── Gift card band ─── */
.gift-card-band {
  background: linear-gradient(135deg, rgba(42, 31, 24, 0.95) 0%, rgba(42, 31, 24, 0.98) 100%);
  border-top: 1px solid rgba(165, 122, 78, 0.25);
  border-bottom: 1px solid rgba(165, 122, 78, 0.25);
  padding: 2.4rem 0;
  margin-top: 2rem;
}

.gift-card-band__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.gift-card-band__copy {
  flex: 1;
}

.gift-card-band__copy h2 {
  margin: 0 0 0.45rem;
  font-family: "Syne", sans-serif;
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  color: var(--primary);
}

.gift-card-band__copy p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  max-width: 520px;
}

/* ─── Skip link (keyboard a11y) ─── */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  background: var(--accent);
  color: #2A1F18;
  font-weight: 700;
  padding: 0.5rem 1rem;
  border-radius: 0 0 8px 8px;
  text-decoration: none;
  z-index: 9999;
  font-size: 0.9rem;
  transition: top 0.15s ease;
}

.skip-link:focus {
  top: 0;
}

/* ─── Keyboard focus rings ─── */
.button:focus-visible,
.nav a:focus-visible,
.hero__booking-cue:focus-visible,
.progress-step:focus-visible,
.faq-question:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

a:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
  border-radius: 3px;
}

/* ─── Presentation Polish Pass ─── */
:root {
  --surface-hover: rgba(34, 35, 42, 0.96);
  --accent-glow: rgba(165, 122, 78, 0.22);
}

.topbar {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.brand img {
  transition: transform 0.25s ease;
}

.brand:hover img {
  transform: scale(1.06);
}

.nav a {
  position: relative;
  transition: color 0.2s ease;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, rgba(165, 122, 78, 0), var(--accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

.nav a:hover,
.nav a:focus-visible {
  color: var(--text);
}

.nav a:hover::after,
.nav a:focus-visible::after {
  transform: scaleX(1);
}

.hero__shell {
  position: relative;
  overflow: hidden;
}

.hero__shell::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 78% 18%, rgba(165, 122, 78, 0.22) 0%, rgba(165, 122, 78, 0) 42%);
}

.hero-metric,
.trust-chip,
.brand-band__card,
.location-card,
.booking-flow-card,
.panel,
.service-card,
.staff-card,
.review-card,
.faq-item,
.gift-card-band {
  transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease, background 0.24s ease;
}

.trust-chip strong {
  text-shadow: 0 0 16px rgba(165, 122, 78, 0.18);
}

@media (hover: hover) {
  .hero-metric:hover,
  .trust-chip:hover,
  .service-card:hover,
  .staff-card:hover,
  .review-card:hover,
  .faq-item:hover,
  .reel-link:hover,
  .gallery-item:hover {
    transform: translateY(-3px);
    border-color: rgba(165, 122, 78, 0.55);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.34), 0 0 0 1px var(--accent-glow);
    background: var(--surface-hover);
  }

  .booking-flow-card:hover,
  .location-card:hover,
  .panel:hover {
    border-color: rgba(165, 122, 78, 0.42);
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.36), 0 0 0 1px rgba(165, 122, 78, 0.16);
  }
}

.trust-chip:nth-child(2) {
  animation-delay: 0.08s;
}

.trust-chip:nth-child(3) {
  animation-delay: 0.16s;
}

#booking-flow,
#step-payment,
#reviews-grid,
#faqs-list {
  scroll-margin-top: 92px;
}

/* ─── Presentation Polish Pass II ─── */
.gallery-grid {
  grid-auto-flow: dense;
  gap: 1.1rem;
  align-items: stretch;
}

.gallery-item {
  position: relative;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  border: 1px solid rgba(42, 31, 24, 0.2);
  border-radius: 1.25rem;
  overflow: clip;
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.9), rgba(244, 233, 218, 0.8));
  box-shadow: 0 14px 26px rgba(42, 31, 24, 0.14), inset 0 0 0 1px rgba(255, 255, 255, 0.55);
  opacity: 0;
  transform: translateY(18px) scale(0.985);
  transition: transform 0.55s cubic-bezier(0.2, 0.7, 0.2, 1), box-shadow 0.35s ease, border-color 0.35s ease, opacity 0.45s ease;
  transition-delay: var(--item-delay, 0ms);
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(120% 70% at 12% 100%, rgba(165, 122, 78, 0.32) 0%, rgba(165, 122, 78, 0) 52%);
  opacity: 0;
  transition: opacity 0.32s ease;
}

.gallery-item.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.gallery-item__frame {
  position: relative;
  border-bottom: 1px solid rgba(42, 31, 24, 0.12);
  background: linear-gradient(160deg, rgba(42, 31, 24, 0.1), rgba(42, 31, 24, 0.02));
  aspect-ratio: 4 / 5;
  overflow: hidden;
}

.gallery-item__frame::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 0.9rem;
  margin: 0.45rem;
  pointer-events: none;
  z-index: 2;
}

.gallery-item__frame::after {
  content: '';
  position: absolute;
  top: -45%;
  left: -120%;
  width: 95%;
  height: 200%;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0) 12%, rgba(255, 255, 255, 0.4) 48%, rgba(255, 255, 255, 0) 78%);
  transform: rotate(14deg);
  opacity: 0;
  transition: left 0.75s ease, opacity 0.3s ease;
}

.gallery-item img {
  transition: transform 0.4s ease, filter 0.28s ease;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.gallery-item:hover img {
  transform: scale(1.05);
  filter: saturate(1.09) contrast(1.07);
}

.gallery-item:hover::after {
  opacity: 1;
}

.gallery-item:hover .gallery-item__frame::after {
  left: 130%;
  opacity: 1;
}

.gallery-item__caption {
  padding: 0.78rem 0.9rem 0.92rem;
  display: grid;
  gap: 0.35rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(244, 233, 218, 0.94));
}

.gallery-item__kicker {
  margin: 0;
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
  color: rgba(42, 31, 24, 0.62);
}

.gallery-item__title {
  margin: 0;
  font-size: 1rem;
  line-height: 1.28;
  color: var(--indigo);
  font-family: "Syne", sans-serif;
}

.gallery-item__meta {
  margin: 0;
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(42, 31, 24, 0.68);
  font-weight: 600;
}

.panel--recent-work {
  position: relative;
  overflow: clip;
  isolation: isolate;
}

.panel--recent-work::before,
.panel--recent-work::after {
  content: '';
  position: absolute;
  pointer-events: none;
  z-index: -1;
}

.panel--recent-work::before {
  width: 320px;
  height: 320px;
  border-radius: 50%;
  right: -120px;
  top: -120px;
  background: radial-gradient(circle, rgba(165, 122, 78, 0.26) 0%, rgba(165, 122, 78, 0) 70%);
}

.panel--recent-work::after {
  width: 260px;
  height: 260px;
  border-radius: 50%;
  left: -90px;
  bottom: -140px;
  background: radial-gradient(circle, rgba(38, 58, 71, 0.2) 0%, rgba(38, 58, 71, 0) 72%);
}

.recent-work-header {
  display: grid;
  gap: 0.42rem;
  margin-bottom: 1rem;
}

.recent-work-header__eyebrow {
  margin: 0;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  color: rgba(42, 31, 24, 0.6);
}

.recent-work-header__lead {
  max-width: 56ch;
}

@media (min-width: 860px) {
  .panel--recent-work .gallery-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .panel--recent-work .gallery-item:nth-child(2) .gallery-item__frame {
    aspect-ratio: 16 / 19;
  }
}

.gallery-feature {
  display: grid;
  gap: 1.5rem;
  align-items: center;
}

.gallery-feature__copy {
  display: grid;
  gap: 1rem;
}

.gallery-feature__eyebrow {
  margin: 0;
  color: var(--gold);
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 700;
}

.gallery-feature__copy h2 {
  margin: 0;
  max-width: 18ch;
  color: var(--indigo);
  line-height: 1.2;
}

.gallery-feature__copy p {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.7;
}

.gallery-feature__highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.gallery-feature__pill {
  border: 1px solid var(--gold);
  background: rgba(165, 122, 78, 0.18);
  color: var(--indigo);
  border-radius: 999px;
  padding: 0.7rem 1rem;
  font-size: 0.88rem;
  letter-spacing: 0.02em;
  font-weight: 600;
  box-shadow: inset 0 1px 2px rgba(165, 122, 78, 0.3);
}

.gallery-feature__media {
  margin: 0;
  display: block;
  aspect-ratio: 4 / 5;
  position: relative;
  overflow: hidden;
  border-radius: 1.75rem;
  border: 1px solid var(--line);
  background: var(--lavender-lighter);
  box-shadow: var(--shadow);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.gallery-feature__media::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(42, 31, 24, 0.12) 0%, rgba(42, 31, 24, 0.32) 100%);
  z-index: 1;
  pointer-events: none;
}

.gallery-feature__media:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}

.gallery-feature__media img {
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  object-fit: cover;
  display: block;
  filter: saturate(1.1) contrast(1.08);
}

.gallery-feature__media figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  margin: 0;
  padding: 1.1rem 1rem 1rem;
  color: rgba(255, 255, 255, 0.95);
  background: linear-gradient(180deg, rgba(42, 31, 24, 0) 0%, rgba(42, 31, 24, 0.9) 100%);
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.45;
}

.gallery-feature__caption {
  position: relative;
  z-index: 2;
  margin: 0;
  padding: 1.5rem 1.1rem 1.15rem;
  color: rgba(255, 255, 255, 0.95);
  background: linear-gradient(180deg, transparent 0%, rgba(42, 31, 24, 0.88) 100%);
  font-size: 0.9rem;
  font-weight: 500;
}

.gallery-standards-panel {
  display: grid;
  gap: 1.25rem;
}

.gallery-standards {
  display: grid;
  gap: 1rem;
}

.gallery-standard-card {
  padding: 1.2rem;
  border-radius: 1.35rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: radial-gradient(circle at top left, rgba(181, 146, 94, 0.16), transparent 45%), rgba(255, 255, 255, 0.04);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.2);
}

.gallery-standard-card h3 {
  margin: 0 0 0.55rem;
}

.gallery-standard-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

@media (min-width: 860px) {
  .gallery-feature {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: 2rem;
  }

  /* Alternate layout: image left, text right for middle feature */
  #gallery-feature-atmosphere {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  }

  #gallery-feature-atmosphere .gallery-feature__media {
    order: -1;
  }

  .gallery-standards {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 480px) {
  .hero {
    padding-top: 1rem;
  }

  .hero h1 {
    font-size: clamp(2rem, 10.5vw, 2.7rem);
    max-width: none;
  }

  .hero p {
    font-size: 0.95rem;
  }

  .hero__status,
  .location-card,
  .booking-flow-card,
  .panel {
    padding: 0.92rem;
  }

  .progress-label {
    font-size: 0.76rem;
  }

  .service-card,
  .staff-card,
  .review-card {
    padding: 0.75rem;
  }

  .gift-card-band {
    padding: 2rem 0;
  }

  .gift-card-band__copy p {
    font-size: 0.92rem;
  }

  .gallery-feature__media {
    border-radius: 1.25rem;
  }

  .gallery-feature__pill {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .gallery-item__caption {
    padding: 0.68rem 0.78rem 0.78rem;
  }

  .gallery-item__title {
    font-size: 0.94rem;
  }

  .hero--compact .container {
    margin-bottom: 1.5rem;
  }

  .hero--compact .hero__actions {
    min-height: 48px;
    margin-bottom: 0.5rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero__pole,
  .hero__visual-card--primary,
  .hero__visual-card--secondary,
  .trust-chip,
  .brand-band__card,
  .booking-flow__step.active {
    animation: none;
  }

  .gallery-item,
  .gallery-item::after,
  .gallery-item img,
  .gallery-item__frame::after {
    transition: none;
  }

  .gallery-item {
    opacity: 1;
    transform: none;
  }

  .button,
  .hero-metric,
  .trust-chip,
  .service-card,
  .staff-card,
  .review-card,
  .faq-item,
  .reel-link,
  .gallery-item,
  .gallery-item::after,
  .gallery-item img,
  .location-card,
  .booking-flow-card,
  .panel,
  .brand img,
  .nav a,
  .nav a::after {
    transition: none;
  }
}

/* ─── Mobile Action Dock ─── */
.mobile-action-dock {
  display: none;
}

@media (max-width: 860px) {
  body {
    padding-bottom: calc(96px + env(safe-area-inset-bottom));
  }

  .mobile-action-dock {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 50;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.55rem;
    padding: 0.6rem 0.8rem calc(0.6rem + env(safe-area-inset-bottom));
    background: linear-gradient(180deg, rgba(42, 31, 24, 0.92), rgba(42, 31, 24, 0.98));
    border-top: 1px solid rgba(165, 122, 78, 0.4);
    box-shadow: 0 -8px 24px rgba(42, 31, 24, 0.3);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
  }

  .mobile-action-dock__button {
    min-height: 44px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 800;
    font-size: 0.92rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid transparent;
  }

  .mobile-action-dock__button--primary {
    background: var(--accent);
    color: #2A1F18;
    box-shadow: 0 10px 22px rgba(165, 122, 78, 0.28);
  }

  .mobile-action-dock__button--ghost {
    background: rgba(255, 255, 255, 0.04);
    border-color: var(--line);
    color: var(--text);
  }
}

/* Final contrast and clarity overrides */
.bg-collage {
  display: none;
}

.hero__shell {
  color: var(--lavender-light);
}

/* Adaptive contrast system: chooses branded ink and line-level scrim per section tone */
.adaptive-contrast {
  --adaptive-ink: var(--ink-dark-strong);
  --adaptive-muted: var(--ink-dark-muted);
  --adaptive-scrim: var(--ink-scrim-light);
}

.adaptive-contrast.adaptive-contrast--dark {
  --adaptive-ink: var(--ink-light-strong);
  --adaptive-muted: var(--ink-light-muted);
  --adaptive-scrim: var(--ink-scrim-dark);
}

.adaptive-contrast.adaptive-contrast--light {
  --adaptive-ink: var(--ink-dark-strong);
  --adaptive-muted: var(--ink-dark-muted);
  --adaptive-scrim: var(--ink-scrim-light);
}

.adaptive-contrast .section-title,
.adaptive-contrast .panel h2,
.adaptive-contrast .media-wall__item h3,
.adaptive-contrast .faq-question,
.adaptive-contrast .site-footer__brand h3,
.adaptive-contrast .gift-card-band__copy h2,
.adaptive-contrast .review-card__footer strong {
  color: var(--adaptive-ink);
}

.adaptive-contrast .panel__meta,
.adaptive-contrast .faq-answer,
.adaptive-contrast .review-card__text,
.adaptive-contrast .review-card__source,
.adaptive-contrast .site-footer__brand p,
.adaptive-contrast .site-footer__meta p,
.adaptive-contrast .service-card p,
.adaptive-contrast .staff-card p,
.adaptive-contrast .service-card__meta,
.adaptive-contrast .gallery-item figcaption,
.adaptive-contrast .gift-card-band__copy p,
.adaptive-contrast .reel-link {
  color: var(--adaptive-muted);
}

.adaptive-contrast .site-footer__links a,
.adaptive-contrast .site-footer__meta a {
  color: var(--adaptive-ink);
}

.adaptive-ink {
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
  border-radius: 0.2em;
  padding-inline: 0.16em;
  background: linear-gradient(180deg, var(--adaptive-scrim), var(--adaptive-scrim));
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.26);
}

.adaptive-contrast--light .adaptive-ink {
  text-shadow: none;
}

.adaptive-contrast .button,
.adaptive-contrast .mobile-action-dock__button {
  background-clip: padding-box;
}

.adaptive-contrast--dark .button--ghost {
  color: var(--ink-light-strong);
  border-color: rgba(248, 243, 234, 0.56);
  background: rgba(248, 243, 234, 0.06);
}

.adaptive-contrast--dark .button--ghost:hover {
  color: var(--ink-light-strong);
  border-color: rgba(201, 165, 104, 0.72);
  background: rgba(201, 165, 104, 0.16);
}

.hero-headline--logo img {
  filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.35)) brightness(0) invert(1);
}

.hero p,
.hero__status-next,
.hero__status-wait,
.hero__status-note,
.hero-metric span,
.trust-chip span,
.brand-band p,
.service-card p,
.staff-card p,
.payment-method p,
.service-card__meta,
.hero__booking-cue {
  color: rgba(248, 243, 234, 0.82);
}

.hero .button--ghost {
  border-color: rgba(215, 195, 170, 0.58);
  color: var(--lavender-light);
  background: rgba(255, 255, 255, 0.03);
}

.hero .button--ghost:hover {
  background: rgba(215, 195, 170, 0.12);
  border-color: rgba(165, 122, 78, 0.65);
  color: var(--lavender-light);
}

.hero__status-call {
  color: var(--lavender-light);
}

.brand-band h2,
.progress-step,
.service-card,
.staff-card,
.payment-method,
.media-wall__item,
.reel-link,
.gallery-item {
  color: rgba(248, 243, 234, 0.9);
}

.gallery-feature__media figcaption,
.gallery-feature__caption {
  position: relative;
  z-index: 2;
  color: rgba(255, 255, 255, 0.95);
  background: linear-gradient(180deg, transparent 0%, rgba(42, 31, 24, 0.88) 100%);
}

@media (max-width: 860px) {
  .bg-collage {
    display: none;
  }

  .mobile-action-dock__button--ghost {
    border-color: rgba(215, 195, 170, 0.34);
    color: var(--lavender-light);
  }
}

/* Keep gallery compact hero readable on light surfaces */
.hero--compact .container {
  color: var(--indigo);
}

.hero--compact .hero__eyebrow,
.hero--compact p,
.hero--compact .hero-metric span {
  color: rgba(42, 31, 24, 0.74);
}

.hero--compact .button--ghost {
  color: var(--indigo);
  border-color: rgba(42, 31, 24, 0.7);
  background: transparent;
}

.hero--compact .button--ghost:hover {
  color: var(--indigo);
  background: rgba(215, 195, 170, 0.75);
  border-color: rgba(42, 31, 24, 0.8);
}

/* Final hero composition lock */
:root {
  --shop-blue: #3f5b68;
}

.hero__shell {
  background:
    radial-gradient(circle at 22% 16%, rgba(63, 91, 104, 0.22) 0%, rgba(63, 91, 104, 0) 38%),
    linear-gradient(150deg, rgba(24, 20, 18, 0.88), rgba(17, 14, 12, 0.94));
}

.hero__pole-wrap {
  display: none;
}

.hero__visual-card--primary,
.hero__visual-card--secondary {
  z-index: 3;
}

.hero__visual-card--primary {
  right: 0;
  width: min(290px, 66%);
}

.hero__visual-card--secondary {
  left: 0;
  width: min(210px, 50%);
}

.hero__pole {
  display: none;
  width: 38px;
  height: 176px;
  border-color: rgba(214, 217, 222, 0.92);
  box-shadow: 0 22px 44px rgba(0, 0, 0, 0.42), 0 0 0 1px rgba(63, 91, 104, 0.25);
}

.hero .button--ghost {
  border-color: rgba(63, 91, 104, 0.58);
}

.hero .button--ghost:hover {
  background: rgba(63, 91, 104, 0.18);
  border-color: rgba(63, 91, 104, 0.8);
}

@media (max-width: 640px) {
  .hero__visual {
    min-height: 360px;
  }

  .hero__pole-wrap {
    display: none;
  }

  .hero__visual-card--primary {
    width: min(230px, 62%);
    height: 230px;
  }

  .hero__visual-card--secondary {
    width: min(165px, 46%);
    height: 165px;
  }
}

.hero__visual {
  min-height: 560px;
  isolation: isolate;
}

.hero__pole-wrap {
  left: 14%;
  top: 55%;
  z-index: 1;
}

.hero__visual-card {
  width: min(300px, 70%);
  height: 205px;
  border-radius: 22px;
  z-index: var(--hero-card-z, 2);
  animation: heroWaterfallFloat 7.2s ease-in-out infinite;
  transform: rotate(var(--hero-card-rotate, 0deg));
  will-change: transform;
}

.hero__visual-card img {
  object-position: center;
}

.hero__visual-card--one,
.hero__visual-card--primary {
  top: 0;
  right: 2%;
  width: min(300px, 72%);
  height: 210px;
  --hero-card-rotate: -9deg;
  --hero-card-z: 6;
  animation-delay: 0s;
}

.hero__visual-card--two,
.hero__visual-card--secondary {
  top: 84px;
  right: 12%;
  width: min(286px, 68%);
  height: 198px;
  --hero-card-rotate: -4deg;
  --hero-card-z: 5;
  animation-delay: -0.7s;
}

.hero__visual-card--three {
  top: 170px;
  right: 22%;
  width: min(268px, 64%);
  height: 190px;
  --hero-card-rotate: 2deg;
  --hero-card-z: 4;
  animation-delay: -1.4s;
}

.hero__visual-card--four {
  top: 266px;
  right: 33%;
  width: min(246px, 58%);
  height: 178px;
  --hero-card-rotate: 7deg;
  --hero-card-z: 3;
  animation-delay: -2.1s;
}

.hero__visual-card--five {
  top: 362px;
  right: 44%;
  width: min(220px, 50%);
  height: 162px;
  --hero-card-rotate: 11deg;
  --hero-card-z: 2;
  animation-delay: -2.8s;
}

@keyframes heroWaterfallFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(var(--hero-card-rotate, 0deg));
  }
  50% {
    transform: translate3d(0, -10px, 0) rotate(calc(var(--hero-card-rotate, 0deg) + 1.25deg));
  }
}

@media (max-width: 960px) {
  .hero__visual {
    min-height: 470px;
  }

  .hero__pole-wrap {
    left: 16%;
  }

  .hero__visual-card--one,
  .hero__visual-card--primary {
    width: min(260px, 66%);
    height: 188px;
  }

  .hero__visual-card--two,
  .hero__visual-card--secondary {
    top: 72px;
    right: 11%;
    width: min(244px, 61%);
    height: 176px;
  }

  .hero__visual-card--three {
    top: 145px;
    right: 21%;
    width: min(228px, 57%);
    height: 166px;
  }

  .hero__visual-card--four {
    top: 225px;
    right: 31%;
    width: min(208px, 52%);
    height: 154px;
  }

  .hero__visual-card--five {
    top: 305px;
    right: 41%;
    width: min(184px, 46%);
    height: 138px;
  }
}

@media (max-width: 640px) {
  .hero__visual {
    min-height: 430px;
  }

  .hero__pole-wrap {
    left: 12%;
    top: 58%;
    transform: translate(-50%, -50%) scale(0.82);
  }

  .hero__visual-card {
    border-radius: 18px;
  }

  .hero__visual-card--one,
  .hero__visual-card--primary {
    top: 0;
    right: 2%;
    width: min(216px, 62%);
    height: 164px;
  }

  .hero__visual-card--two,
  .hero__visual-card--secondary {
    top: 56px;
    right: 10%;
    width: min(198px, 56%);
    height: 146px;
  }

  .hero__visual-card--three {
    top: 118px;
    right: 18%;
    width: min(182px, 52%);
    height: 136px;
  }

  .hero__visual-card--four {
    top: 188px;
    right: 28%;
    width: min(164px, 47%);
    height: 124px;
  }

  .hero__visual-card--five {
    top: 254px;
    right: 40%;
    width: min(144px, 41%);
    height: 110px;
  }
}

.topbar {
  background: rgba(248, 243, 234, 0.96);
  border-bottom: 1px solid rgba(42, 31, 24, 0.16);
}

.topbar__inner {
  justify-content: center;
  min-height: 88px;
}

.nav--centered {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) auto minmax(0, 1fr) minmax(0, 1fr) auto;
  align-items: center;
  width: min(1100px, 100%);
  gap: clamp(0.4rem, 1.1vw, 1rem);
}

.nav--centered .brand--nav-center {
  grid-column: 3;
  justify-self: center;
  padding-inline: 0.5rem;
}

.nav__link {
  justify-self: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.2rem 0.25rem;
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.nav__link--gallery {
  grid-column: 4;
}

.nav__link--call {
  grid-column: 5;
}

.nav__link--faq {
  grid-column: 1;
}

.nav__link--schedule {
  grid-column: 6;
  min-height: 40px;
  padding: 0.3rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(61, 91, 114, 0.4);
  background: rgba(36, 55, 73, 0.12);
  box-shadow: 0 3px 10px rgba(23, 35, 47, 0.16);
}

.nav__join-team {
  grid-column: 2;
  justify-self: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.2rem 0.25rem;
  border: 0;
  background: transparent;
  color: var(--text);
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.95rem;
  transition: color 0.2s ease;
}

.nav__join-team:hover,
.nav__join-team:focus-visible {
  border-color: transparent;
  background: transparent;
  color: var(--indigo);
  transform: none;
  box-shadow: none;
}

.nav__link--schedule:hover,
.nav__link--schedule:focus-visible {
  border-color: rgba(36, 55, 73, 0.72);
  background: rgba(36, 55, 73, 0.2);
}

.brand--nav-center img {
  height: 54px;
  filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.25));
}

.nav--centered .nav__link::after {
  bottom: 4px;
}

.hero__visual {
  min-height: 590px;
}

.hero__visual-card {
  width: min(248px, 58%);
  height: 138px;
}

.hero__visual-card--one,
.hero__visual-card--primary {
  top: 6px;
  right: 4%;
  width: min(256px, 60%);
  height: 142px;
  --hero-card-rotate: -9deg;
}

.hero__visual-card--two,
.hero__visual-card--secondary {
  top: 118px;
  right: 12%;
  width: min(244px, 57%);
  height: 138px;
  --hero-card-rotate: -5deg;
}

.hero__visual-card--three {
  top: 228px;
  right: 21%;
  width: min(230px, 54%);
  height: 134px;
  --hero-card-rotate: 0deg;
}

.hero__visual-card--four {
  top: 336px;
  right: 31%;
  width: min(214px, 50%);
  height: 128px;
  --hero-card-rotate: 5deg;
}

.hero__visual-card--five {
  top: 440px;
  right: 42%;
  width: min(196px, 46%);
  height: 122px;
  --hero-card-rotate: 10deg;
}

@media (max-width: 960px) {
  .nav--centered {
    width: min(980px, 100%);
  }

  .brand--nav-center img {
    height: 48px;
  }

  .hero__visual {
    min-height: 520px;
  }

  .hero__visual-card--one,
  .hero__visual-card--primary {
    top: 6px;
    right: 2%;
    width: min(224px, 56%);
    height: 128px;
  }

  .hero__visual-card--two,
  .hero__visual-card--secondary {
    top: 104px;
    right: 10%;
    width: min(214px, 52%);
    height: 124px;
  }

  .hero__visual-card--three {
    top: 200px;
    right: 18%;
    width: min(202px, 49%);
    height: 120px;
  }

  .hero__visual-card--four {
    top: 294px;
    right: 28%;
    width: min(188px, 45%);
    height: 114px;
  }

  .hero__visual-card--five {
    top: 384px;
    right: 38%;
    width: min(172px, 41%);
    height: 108px;
  }
}

@media (max-width: 720px) {
  .topbar__inner {
    min-height: 96px;
    padding-block: 0.45rem;
  }

  .nav--centered {
    grid-template-columns: repeat(5, auto);
    grid-template-areas:
      "logo logo logo logo logo"
      "faq join gallery call schedule";
    justify-content: center;
    row-gap: 0.35rem;
    column-gap: 0.85rem;
  }

  .nav--centered .brand--nav-center {
    grid-area: logo;
  }

  .nav__link--gallery {
    grid-area: gallery;
  }

  .nav__link--call {
    grid-area: call;
  }

  .nav__link--faq {
    grid-area: faq;
  }

  .nav__link--schedule {
    grid-area: schedule;
  }

  .nav__join-team {
    grid-area: join;
    justify-self: center;
    min-height: 36px;
    padding: 0.25rem 0.65rem;
    font-size: 0.74rem;
  }
}

@media (max-width: 860px) {
  .gallery-feature {
    gap: 1rem;
  }

  .gallery-feature__media {
    aspect-ratio: 4 / 3;
  }

  .testimonials-grid {
    gap: 0.9rem;
  }

  .testimonial-card {
    padding: 1.05rem;
  }

  .media-wall__item--facebook iframe {
    width: 100%;
    height: min(58vh, 380px);
  }

  .tiktok-grid {
    grid-template-columns: 1fr;
  }

  .tiktok-grid iframe {
    min-height: 300px;
  }
}

@media (max-width: 640px) {
  .gallery-feature__copy h2 {
    max-width: none;
    font-size: 1.2rem;
  }

  .testimonial-card {
    padding: 0.88rem;
  }

  .testimonial-card__text {
    font-size: 0.84rem;
    line-height: 1.45;
  }

  .media-wall__item--facebook iframe {
    height: min(52vh, 320px);
  }

  .tiktok-grid iframe {
    min-height: 260px;
  }
}

@media (max-width: 640px) {
  .hero__visual {
    min-height: 460px;
  }

  .hero__pole-wrap {
    left: 9%;
    top: 53%;
    transform: translate(-50%, -50%) scale(0.72);
  }

  .hero__visual-card {
    border-radius: 16px;
  }

  .hero__visual-card--one,
  .hero__visual-card--primary {
    top: 10px;
    right: 3%;
    width: min(188px, 54%);
    height: 112px;
  }

  .hero__visual-card--two,
  .hero__visual-card--secondary {
    top: 94px;
    right: 10%;
    width: min(180px, 51%);
    height: 108px;
  }

  .hero__visual-card--three {
    top: 176px;
    right: 18%;
    width: min(168px, 48%);
    height: 104px;
  }

  .hero__visual-card--four {
    top: 256px;
    right: 28%;
    width: min(156px, 44%);
    height: 98px;
  }

  .hero__visual-card--five {
    top: 332px;
    right: 38%;
    width: min(142px, 40%);
    height: 92px;
  }
}

.booking-flow-card,
.panel,
.service-card,
.staff-card,
.payment-method,
.gallery-item,
.faq-item,
.review-card,
.gift-card-band,
.gallery-feature__copy {
  color: var(--ink-light-strong);
}

.panel h2,
.booking-flow__step h2,
.section-title,
.service-card h3,
.staff-card h3,
.payment-method h3,
.faq-question,
.gift-card-band__copy h2,
.gallery-feature__copy h2,
.brand-band h2 {
  color: var(--ink-light-strong);
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.26);
}

.panel__meta,
.service-card p,
.staff-card p,
.payment-method p,
.service-card__meta,
.faq-answer,
.review-card__text,
.review-card__source,
.gift-card-band__copy p,
.gallery-feature__copy p,
.gallery-item figcaption {
  color: var(--ink-light-muted);
}

/* Light-surface lock: location card stays dark-ink even when nearby panels are dark. */
.location-card {
  color: var(--ink-dark-strong);
  background: linear-gradient(170deg, rgba(251, 245, 236, 0.96), rgba(244, 234, 219, 0.94));
  border-color: rgba(42, 31, 24, 0.2);
}

.location-card h2,
.location-card p,
.location-card .panel__meta,
.location-card #location-name,
.location-card #location-address,
.location-card #location-phone,
.location-card #location-map-link {
  color: var(--ink-dark-strong);
  text-shadow: none;
}

.location-card #location-phone {
  text-decoration-thickness: 2px;
  text-underline-offset: 0.12em;
}

.location-card #hours-list {
  margin-top: 0.75rem;
  padding: 0.72rem 0.78rem;
  border-radius: 10px;
  border: 1px solid rgba(42, 31, 24, 0.18);
  background: rgba(42, 31, 24, 0.08);
}

.location-card #hours-list p {
  margin: 0;
  color: var(--ink-dark-strong);
  font-weight: 600;
}

.location-card #hours-list p + p {
  margin-top: 0.35rem;
}

.location-card.location-card--force-readable,
.location-card.location-card--force-readable h2,
.location-card.location-card--force-readable p,
.location-card.location-card--force-readable .panel__meta,
.location-card.location-card--force-readable #location-phone,
.location-card.location-card--force-readable #location-map-link {
  color: #2A1F18;
  text-shadow: none;
}

.service-card__price,
.brand-band__eyebrow,
.trust-chip strong,
.hero__eyebrow,
.booking-flow__progress .progress-label {
  color: #d8b185;
}

/* ── Portrait frame drop system ──────────────────────────── */
.hero__visual {
  min-height: 640px;
  overflow: visible;
}

.hero__pole-wrap {
  display: none;
}

.hero__barrel {
  --drop-start: -330px;
  --drop-mid: 250px;
  --drop-end: 830px;
  position: absolute;
  left: 44%;
  top: 62%;
  width: min(210px, 54%);
  height: 620px;
  transform: translate(-50%, -50%);
}

/* Base card — portrait 3:4, resets conflicting cascade from earlier blocks */
.hero__visual-card {
  position: absolute;
  left: 50%;
  top: 0;
  right: auto;
  width: 100%;
  height: 258px;
  --card-shift: -50%;
  --card-tilt: 0deg;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.28);
  will-change: transform, opacity, filter;
  animation: heroDropLine 14s linear infinite, heroZBoost 14s linear infinite;
  opacity: 0;
}

.hero__visual-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Named card overrides — reset cascade conflicts, set paired animation delays */
.hero__visual-card--one,
.hero__visual-card--primary {
  top: 0;
  right: auto;
  width: 100%;
  --card-shift: -54%;
  --card-tilt: -6deg;
  animation-delay: 0s, 0s;
}

.hero__visual-card--two,
.hero__visual-card--secondary {
  top: 0;
  right: auto;
  width: 100%;
  --card-shift: -46%;
  --card-tilt: 6deg;
  animation-delay: -2.8s, -2.8s;
}

.hero__visual-card--three {
  top: 0;
  right: auto;
  width: 100%;
  --card-shift: -53%;
  --card-tilt: -4deg;
  animation-delay: -5.6s, -5.6s;
}

.hero__visual-card--four {
  top: 0;
  right: auto;
  width: 100%;
  --card-shift: -47%;
  --card-tilt: 4deg;
  animation-delay: -8.4s, -8.4s;
}

.hero__visual-card--five {
  top: 0;
  right: auto;
  width: 100%;
  --card-shift: -50%;
  --card-tilt: -3deg;
  animation-delay: -11.2s, -11.2s;
}

/* Entering card always renders on top of the one in center */
@keyframes heroZBoost {
  0%,  49.9% { z-index: 10; }
  50%, 100%  { z-index: 1;  }
}

@keyframes heroDropLine {
  0% {
    transform: translate(var(--card-shift), var(--drop-start)) rotate(var(--card-tilt)) scale(0.84);
    opacity: 0;
    filter: brightness(0.82);
  }
  14% {
    opacity: 0.9;
    filter: brightness(0.9);
  }
  50% {
    transform: translate(var(--card-shift), var(--drop-mid)) rotate(var(--card-tilt)) scale(1);
    opacity: 1;
    filter: brightness(1);
  }
  86% {
    opacity: 0.9;
    filter: brightness(0.88);
  }
  100% {
    transform: translate(var(--card-shift), var(--drop-end)) rotate(var(--card-tilt)) scale(0.84);
    opacity: 0;
    filter: brightness(0.8);
  }
}

@media (max-width: 960px) {
  .hero__visual {
    min-height: 540px;
  }

  .hero__barrel {
    --drop-start: -260px;
    --drop-mid: 215px;
    --drop-end: 690px;
    left: 44%;
    width: min(170px, 48%);
    height: 520px;
  }

  .hero__visual-card {
    height: 210px;
  }
}

@media (max-width: 640px) {
  .hero__visual {
    min-height: 470px;
  }

  .hero__barrel {
    --drop-start: -165px;
    --drop-mid: 215px;
    --drop-end: 595px;
    left: 50%;
    top: 58%;
    width: min(155px, 46%);
    height: 430px;
  }

  .hero__visual-card {
    height: 168px;
    border-radius: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero__visual-card {
    animation: none;
    opacity: 1;
    transform: translate(var(--card-shift), var(--drop-mid)) rotate(var(--card-tilt)) scale(1);
  }
}

/* Booking info form readability lock (handles normal and autofill states). */
.booking-flow-card .form-group input {
  color: var(--ink-light-strong);
  background: rgba(12, 12, 14, 0.62);
  border-color: rgba(215, 195, 170, 0.28);
}

.booking-flow-card .form-group input::placeholder {
  color: rgba(248, 243, 234, 0.62);
}

.booking-flow-card .form-group input:focus {
  color: var(--ink-light-strong);
  border-color: rgba(165, 122, 78, 0.8);
  background: rgba(12, 12, 14, 0.76);
}

.booking-flow-card .form-group input:-webkit-autofill,
.booking-flow-card .form-group input:-webkit-autofill:hover,
.booking-flow-card .form-group input:-webkit-autofill:focus {
  -webkit-text-fill-color: var(--ink-light-strong) !important;
  -webkit-box-shadow: 0 0 0 1000px rgba(12, 12, 14, 0.76) inset !important;
  caret-color: var(--ink-light-strong);
}

/* Service card spillover guard: keep title/price constrained within each card. */
.services-grid {
  grid-auto-rows: 1fr;
}

.service-card {
  overflow: hidden;
}

.service-card__top {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: start;
  gap: 0.28rem;
}

.service-card h3 {
  min-width: 0;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}

.service-card__price {
  justify-self: start;
  align-self: start;
  white-space: nowrap;
  line-height: 1.1;
  padding-left: 0;
}

.service-card p,
.service-card__meta {
  overflow-wrap: break-word;
}

@media (max-width: 1600px) {
  .service-card__top {
    grid-template-columns: minmax(0, 1fr);
  }

  .service-card__price {
    justify-self: start;
    padding-left: 0;
    margin-top: 0.15rem;
  }
}

.staff-card--disabled {
  opacity: 0.62;
  cursor: not-allowed;
  transform: none !important;
}

.staff-card--disabled:hover,
.staff-card--disabled.selected {
  border-color: var(--line);
  background: rgba(12, 12, 14, 0.48);
  transform: none;
}

.staff-card--disabled .staff-card__status {
  margin-top: 0.35rem;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* Payment step readability and option controls */
#forge-payment-widget .forge-payment__title {
  color: #2A1F18 !important;
  text-shadow: none !important;
}

#forge-payment-widget .forge-payment__subtitle,
#forge-payment-widget .forge-payment__note,
#forge-payment-widget .forge-payment__disclosure,
#forge-payment-widget .forge-payment__item-name,
#forge-payment-widget .forge-payment__item-description,
#forge-payment-widget .forge-payment__item-taxability {
  color: #2A1F18 !important;
  text-shadow: none !important;
}

.payment-method--choice {
  padding: 0;
}

.payment-choice {
  width: 100%;
  text-align: left;
  background: transparent;
  color: inherit;
  border: 0;
  border-radius: 12px;
  padding: 0.8rem;
  cursor: pointer;
}

.payment-method--choice.is-active {
  border-color: rgba(165, 122, 78, 0.78);
  box-shadow: 0 0 0 1px rgba(165, 122, 78, 0.35) inset;
}

.tip-options {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.5rem;
  margin: 0.65rem 0;
}

.tip-option {
  min-height: 40px;
  border-radius: 10px;
  border: 1px solid rgba(215, 195, 170, 0.34);
  background: rgba(12, 12, 14, 0.46);
  color: var(--ink-light-strong);
  font-weight: 700;
  cursor: pointer;
}

.tip-option.is-active {
  border-color: rgba(165, 122, 78, 0.84);
  background: rgba(165, 122, 78, 0.18);
  color: #e9c89f;
}

.tip-custom {
  display: none;
  margin-bottom: 0.55rem;
}

.tip-custom.is-visible {
  display: block;
}

.tip-custom label {
  display: block;
  margin-bottom: 0.35rem;
  font-weight: 600;
}

.tip-custom input {
  width: 100%;
  border: 1px solid rgba(215, 195, 170, 0.34);
  border-radius: 8px;
  background: rgba(12, 12, 14, 0.62);
  color: var(--ink-light-strong);
  padding: 0.55rem 0.65rem;
  font: inherit;
}

@media (max-width: 640px) {
  .tip-options {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

#step-payment #forge-payment-widget.widget-host--off {
  display: none !important;
}

.remember-info {
  margin-top: 0.25rem;
  padding: 0.62rem 0.7rem;
  border: 1px solid rgba(215, 195, 170, 0.22);
  border-radius: 10px;
  background: rgba(12, 12, 14, 0.34);
}

.remember-info__label {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  color: var(--ink-light-muted);
  font-size: 0.9rem;
  line-height: 1.45;
  cursor: pointer;
}

.remember-info__label input[type="checkbox"] {
  margin-top: 0.18rem;
  accent-color: var(--accent);
}

.payment-next-message {
  margin: 0.75rem 0 0;
  padding: 0.6rem 0.7rem;
  border-radius: 10px;
  border: 1px solid rgba(215, 195, 170, 0.26);
  background: rgba(12, 12, 14, 0.34);
  color: var(--ink-light-muted);
  font-size: 0.9rem;
}

/* ── Step 6 Confirmation Summary ──────────────── */
.confirm-summary {
  margin: 1.5rem 0;
  border: 1px solid rgba(215, 195, 170, 0.2);
  border-radius: 14px;
  overflow: hidden;
}

.confirm-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 1rem;
  border-bottom: 1px solid rgba(215, 195, 170, 0.12);
  font-size: 0.95rem;
}

.confirm-row:last-child {
  border-bottom: none;
}

.confirm-row--total {
  background: rgba(197, 182, 104, 0.08);
  font-weight: 700;
  font-size: 1rem;
}

.confirm-label {
  color: var(--ink-light-muted, #a89880);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.confirm-value {
  color: var(--ink-light, #e8ddd4);
  font-weight: 500;
}

.confirm-row--total .confirm-label,
.confirm-row--total .confirm-value {
  color: var(--gold, #C5B668);
}

/* ── Stripe Payment Section (Step 6) ──────────────── */
#stripe-payment-section {
  margin: 1.5rem 0;
}

.stripe-payment-section--hidden {
  display: none;
}

.stripe-section-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink-light, #e8ddd4);
  margin: 0 0 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(215, 195, 170, 0.15);
}

.stripe-loading {
  padding: 1rem;
  color: var(--ink-light-muted, #a89880);
  font-size: 0.9rem;
  font-style: italic;
}

#stripe-payment-element {
  margin-bottom: 1.25rem;
}

.stripe-message {
  min-height: 1.25rem;
  margin: 0.5rem 0 0.75rem;
  font-size: 0.9rem;
  color: var(--ink-light-muted, #a89880);
}

.stripe-message--error {
  color: #e07070;
  padding: 0.6rem 0.8rem;
  border-radius: 8px;
  background: rgba(224, 112, 112, 0.08);
  border: 1px solid rgba(224, 112, 112, 0.25);
}

.stripe-pay-btn {
  width: 100%;
  justify-content: center;
  font-size: 1rem;
  padding: 0.9rem 1.5rem;
}

.stripe-pay-btn:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

.stripe-success {
  text-align: center;
  padding: 2rem 1rem;
}

.stripe-success__icon {
  font-size: 3rem;
  color: #4caf84;
  margin: 0 0 0.5rem;
  line-height: 1;
}

.stripe-success h3 {
  font-size: 1.4rem;
  color: var(--ink-light, #e8ddd4);
  margin: 0 0 0.5rem;
}

.stripe-success p {
  color: var(--ink-light-muted, #a89880);
  font-size: 0.95rem;
}

.booking-calendar-control {
  display: grid;
  gap: 0.45rem;
  margin: 0 0 0.9rem;
  padding: 0.75rem;
  border: 1px solid rgba(197, 182, 104, 0.28);
  border-radius: 12px;
  background: rgba(22, 6, 81, 0.2);
}

.booking-calendar-control__label {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #d9d7f6;
}

.booking-calendar-control__input {
  width: 100%;
  max-width: 320px;
  min-height: 44px;
  border: 1px solid rgba(217, 215, 246, 0.38);
  border-radius: 10px;
  padding: 0.55rem 0.7rem;
  background: rgba(12, 4, 44, 0.9);
  color: #f6f4ff;
  font-weight: 600;
}

.booking-calendar-control__input:focus {
  outline: 2px solid rgba(197, 182, 104, 0.56);
  outline-offset: 2px;
}

.booking-calendar-control__hint {
  margin: 0;
  font-size: 0.82rem;
  color: rgba(217, 215, 246, 0.82);
}




