:root {
  --surface: #131313;
  --surface-dim: #0e0e0e;
  --surface-container: #201f1f;
  --surface-container-high: #2a2a2a;
  --surface-container-highest: #353534;
  --surface-variant: #353534;
  --outline: #99907c;
  --outline-variant: #4d4635;
  --text-primary: #e5e2e1;
  --text-muted: #d0c5af;
  --gold: #f2ca50;
  --gold-deep: #d4af37;
  --gold-ink: #2c2104;
  --success: #9fe29f;
  --danger: #ffb4ab;
  --glass-strong: rgba(23, 22, 22, 0.88);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
  --glass: rgba(28, 27, 27, 0.72);
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 10px;
  --container: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  background:
    radial-gradient(circle at top right, rgba(242, 202, 80, 0.12), transparent 22%),
    radial-gradient(circle at bottom left, rgba(212, 175, 55, 0.1), transparent 24%),
    linear-gradient(180deg, #161616 0%, #101010 42%, #0c0c0c 100%);
  color: var(--text-primary);
  line-height: 1.5;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
  border: 0;
  background: none;
}

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

.page-shell {
  min-height: 100vh;
}

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: rgba(19, 19, 19, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

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

.brand {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.5rem, 2vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

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

.desktop-nav,
.mobile-nav {
  display: flex;
  gap: 1.4rem;
}

.desktop-nav a,
.mobile-nav a,
.footer-links a {
  color: var(--text-muted);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: color 160ms ease;
}

.desktop-nav a:hover,
.mobile-nav a:hover,
.footer-links a:hover {
  color: var(--gold);
}

.mobile-menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  color: var(--gold);
  border: 1px solid rgba(242, 202, 80, 0.18);
  border-radius: 999px;
}

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 1rem;
  padding: 0 1rem 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.mobile-nav.is-open {
  display: flex;
}

.hero-section {
  position: relative;
  padding: 4.5rem 0 4rem;
  overflow: hidden;
}

.hero-backdrop {
  position: absolute;
  inset: 0;
}

.hero-backdrop::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10, 10, 10, 0.92) 0%, rgba(10, 10, 10, 0.74) 45%, rgba(10, 10, 10, 0.45) 100%),
    linear-gradient(180deg, rgba(10, 10, 10, 0.08), rgba(10, 10, 10, 0.8));
}

.hero-backdrop img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.04) brightness(0.72);
  transform: scale(1.04);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(330px, 0.9fr);
  gap: 1.5rem;
  align-items: center;
  min-height: calc(100vh - 140px);
}

.hero-copy h1,
.section-heading h2,
.split-section h2,
.contact-card h2,
.booking-heading h2 {
  margin: 0;
  font-family: "Playfair Display", serif;
  font-size: clamp(2.8rem, 6vw, 5.3rem);
  line-height: 0.96;
  letter-spacing: -0.04em;
}

.hero-text,
.section-intro,
.about-copy p,
.pricing-copy p,
.experience-copy p,
.contact-card p,
.step-heading p,
.summary-note,
.footer-copy {
  color: var(--text-muted);
  line-height: 1.75;
}

.eyebrow,
.section-kicker,
.panel-label {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin: 0 0 1rem;
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-actions,
.hero-notes,
.pricing-layout,
.contact-layout,
.footer-row {
  display: flex;
  gap: 1rem;
}

.hero-copy {
  max-width: 700px;
}

.hero-copy h1 {
  max-width: 11ch;
}

.hero-text {
  max-width: 56ch;
  margin-top: 1.15rem;
}

.hero-actions {
  flex-wrap: wrap;
  margin-top: 1.8rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0.95rem 1.35rem;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    background 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  color: var(--gold-ink);
  background: linear-gradient(135deg, var(--gold), var(--gold-deep));
  box-shadow: 0 10px 24px rgba(212, 175, 55, 0.22);
}

.button-secondary {
  border: 1px solid rgba(242, 202, 80, 0.34);
  color: var(--gold);
  background: rgba(255, 255, 255, 0.02);
}

.hero-notes {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 2rem;
}

.stat-card,
.glass-panel {
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: var(--glass);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.stat-card {
  min-width: 0;
  padding: 1rem 1.1rem;
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, rgba(26, 25, 25, 0.9), rgba(18, 18, 18, 0.72));
}

.stat-card strong,
.policy-grid strong,
.contact-list strong,
.summary-row strong,
.booking-record strong {
  display: block;
  margin-bottom: 0.3rem;
}

.stat-card span,
.policy-grid span,
.booking-record span {
  color: var(--text-muted);
  line-height: 1.6;
}

.hero-panel,
.pricing-copy,
.price-menu,
.booking-builder,
.summary-card,
.saved-bookings,
.contact-card {
  border-radius: var(--radius-lg);
}

.hero-panel {
  padding: 2rem;
  background:
    linear-gradient(180deg, rgba(23, 22, 22, 0.92), rgba(16, 16, 16, 0.88)),
    radial-gradient(circle at top right, rgba(242, 202, 80, 0.08), transparent 26%);
}

.hero-panel h2,
.pricing-copy h3,
.step-heading h3,
.saved-bookings h3,
.summary-card h3,
.contact-card h3 {
  margin: 0 0 1rem;
  font-family: "Playfair Display", serif;
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  line-height: 1.1;
}

.feature-list {
  display: grid;
  gap: 0.9rem;
  padding: 0;
  margin: 0 0 1.5rem;
  list-style: none;
}

.feature-list li {
  position: relative;
  padding-left: 1.4rem;
  color: var(--text-primary);
  line-height: 1.65;
}

.feature-list li::before {
  content: "";
  position: absolute;
  top: 0.72rem;
  left: 0;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold), var(--gold-deep));
}

.feature-list.compact li {
  color: var(--text-muted);
}

.inline-link,
.contact-list a,
.text-button {
  color: var(--gold);
  font-weight: 700;
}

.hero-panel-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
  margin: 1.4rem 0 1rem;
}

.hero-panel-card {
  padding: 1rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.hero-panel-card .material-symbols-outlined {
  color: var(--gold);
  margin-bottom: 0.7rem;
}

.hero-panel-card strong,
.experience-card strong,
.pill-button strong,
.service-option strong,
.time-button strong,
.booking-form label,
.hero-panel h2,
.pricing-copy h3,
.summary-card h3,
.saved-bookings h3,
.contact-card h3,
.price-row strong {
  color: var(--text-primary);
}

.hero-panel-card p,
.experience-card p {
  margin: 0.45rem 0 0;
  color: var(--text-muted);
  line-height: 1.6;
}

.hero-panel-footer {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text-muted);
}

.about-section,
.services-section,
.booking-section,
.contact-section {
  padding: 5rem 0;
}

.split-section,
.section-heading,
.booking-layout,
.date-time-grid,
.form-grid,
.contact-layout {
  display: grid;
  gap: 1.5rem;
}

.split-section,
.section-heading {
  grid-template-columns: minmax(0, 1fr) minmax(280px, 460px);
  align-items: start;
}

.about-copy,
.section-intro {
  font-size: 1rem;
}

.experience-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
  gap: 1.5rem;
  padding: 2rem;
  background:
    linear-gradient(180deg, rgba(23, 22, 22, 0.9), rgba(15, 15, 15, 0.84)),
    radial-gradient(circle at left center, rgba(242, 202, 80, 0.08), transparent 26%);
}

.experience-grid {
  display: grid;
  gap: 0.9rem;
}

.experience-card {
  padding: 1.15rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

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

.service-card {
  position: relative;
  overflow: hidden;
  min-height: 280px;
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: flex-end;
  isolation: isolate;
  background: #151515;
}

.service-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 260ms ease;
}

.service-card:hover img {
  transform: scale(1.06);
}

.service-card-gold {
  position: absolute;
  inset: 0;
  transition: transform 260ms ease;
}

.service-card:hover .service-card-gold {
  transform: scale(1.03);
}

.service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.84));
}

.service-card.feature {
  grid-column: 1 / -1;
  min-height: 340px;
}

.service-card.standard {
  min-height: 290px;
}

.service-card-gold-makeup {
  background:
    radial-gradient(circle at 22% 24%, rgba(255, 236, 177, 0.9), transparent 18%),
    radial-gradient(circle at 76% 26%, rgba(242, 202, 80, 0.42), transparent 22%),
    linear-gradient(135deg, #6a5420 0%, #3f3011 38%, #17110a 100%);
}

.service-card-gold-installs::before,
.service-card-gold-makeup::before,
.service-card-gold-braiding::before,
.service-card-gold-revamp::before {
  content: "";
  position: absolute;
  inset: 14%;
  border-radius: 24px;
  border: 1px solid rgba(255, 236, 177, 0.24);
}

.service-card-gold-installs {
  background:
    radial-gradient(circle at 18% 22%, rgba(255, 236, 177, 0.94), transparent 16%),
    radial-gradient(circle at 74% 18%, rgba(242, 202, 80, 0.44), transparent 20%),
    radial-gradient(circle at 72% 72%, rgba(255, 236, 177, 0.14), transparent 18%),
    linear-gradient(135deg, #7a6024 0%, #4c3913 36%, #17110a 100%);
}

.service-card-gold-installs::before {
  inset: 10% 8%;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.14), transparent 44%),
    linear-gradient(120deg, rgba(242, 202, 80, 0.22), transparent 42%),
    repeating-linear-gradient(90deg, rgba(255, 236, 177, 0.08) 0 2px, transparent 2px 32px);
}

.service-card-gold-makeup::before {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.14), transparent 50%),
    radial-gradient(circle at 70% 70%, rgba(242, 202, 80, 0.24), transparent 26%);
}

.service-card-gold-braiding {
  background:
    repeating-linear-gradient(120deg, rgba(242, 202, 80, 0.12) 0 12px, rgba(36, 26, 0, 0) 12px 28px),
    linear-gradient(135deg, #59451a 0%, #34270f 40%, #140f09 100%);
}

.service-card-gold-braiding::before {
  background:
    linear-gradient(90deg, rgba(255, 236, 177, 0.1), transparent 45%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), transparent 42%);
}

.service-card-gold-revamp {
  background:
    radial-gradient(circle at 28% 72%, rgba(255, 236, 177, 0.22), transparent 22%),
    radial-gradient(circle at 72% 22%, rgba(242, 202, 80, 0.38), transparent 20%),
    linear-gradient(145deg, #624d1d 0%, #392b10 44%, #14100b 100%);
}

.service-card-gold-revamp::before {
  background:
    repeating-linear-gradient(90deg, rgba(255, 236, 177, 0.1) 0 1px, transparent 1px 22px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), transparent 40%);
}

.service-card-copy {
  position: relative;
  z-index: 1;
  width: 100%;
}

.service-card-gold-layout .service-card-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100%;
  text-align: center;
}

.service-card-gold-layout .service-card-head {
  justify-content: center;
  gap: 0.7rem;
  margin-bottom: 1rem;
}

.service-card-gold-layout .service-card-price {
  margin-top: 0.1rem;
}

.service-card-gold-layout .service-card h3 {
  font-size: 2.45rem;
  line-height: 1.02;
  margin-bottom: 0.65rem;
}

.service-card-gold-layout .service-card p {
  max-width: 28ch;
  margin-inline: auto;
}

.service-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  margin-bottom: 0.85rem;
  flex-wrap: wrap;
}

.service-card-tag {
  display: inline-flex;
  padding: 0.4rem 0.7rem;
  border-radius: 999px;
  color: var(--gold);
  background: rgba(18, 18, 18, 0.64);
  border: 1px solid rgba(242, 202, 80, 0.24);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.service-card-price {
  color: var(--text-primary);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-card h3 {
  margin: 0 0 0.5rem;
  font-family: "Playfair Display", serif;
  font-size: 2rem;
}

.service-card p {
  margin: 0;
  color: rgba(229, 226, 225, 0.8);
  line-height: 1.7;
}

.pricing-layout {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: minmax(280px, 360px) minmax(0, 1fr);
  gap: 1rem;
  align-items: start;
}

.pricing-copy,
.price-menu {
  padding: 2rem;
}

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

.price-menu {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  background:
    linear-gradient(180deg, rgba(23, 22, 22, 0.92), rgba(16, 16, 16, 0.9));
}

.price-group {
  padding: 1.25rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.price-group h3 {
  margin: 0 0 1rem;
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.price-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.price-row:last-child {
  border-bottom: 0;
}

.price-row strong {
  display: block;
  margin-bottom: 0.3rem;
  font-size: 1rem;
}

.price-row span {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.price-row b {
  color: var(--text-primary);
  font-size: 1rem;
}

.booking-layout {
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 390px);
  align-items: start;
  margin-top: 2rem;
}

.booking-builder,
.summary-card,
.saved-bookings {
  padding: 2rem;
}

.booking-builder {
  background:
    linear-gradient(180deg, rgba(23, 22, 22, 0.94), rgba(16, 16, 16, 0.9));
}

.booking-sidebar {
  display: grid;
  gap: 1rem;
  position: sticky;
  top: 104px;
}

.step-block + .step-block {
  margin-top: 2.25rem;
  padding-top: 2.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.step-heading {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  gap: 1rem;
  margin-bottom: 1.25rem;
  align-items: start;
}

.step-heading span {
  display: inline-flex;
  width: 56px;
  height: 56px;
  border-radius: 18px;
  align-items: center;
  justify-content: center;
  color: var(--gold-ink);
  font-weight: 800;
  font-size: 1.1rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-deep));
}

.step-heading p {
  margin: 0;
}

.pill-grid,
.service-option-grid,
.time-grid {
  display: grid;
  gap: 0.9rem;
}

.pill-grid {
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
}

.pill-button,
.service-option,
.time-button {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  transition:
    border-color 160ms ease,
    background 160ms ease,
    transform 160ms ease;
}

.pill-button {
  padding: 1rem;
  text-align: left;
  background: rgba(255, 255, 255, 0.03);
}

.pill-button strong,
.service-option strong {
  display: block;
  margin-bottom: 0.35rem;
}

.pill-button span,
.service-option span,
.time-button small {
  color: var(--text-muted);
}

.pill-button:hover,
.service-option:hover,
.time-button:hover {
  transform: translateY(-1px);
  border-color: rgba(242, 202, 80, 0.45);
}

.is-selected {
  border-color: rgba(242, 202, 80, 0.75);
  background: rgba(242, 202, 80, 0.08);
  box-shadow: inset 0 0 0 1px rgba(242, 202, 80, 0.15);
}

.service-option-grid {
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}

.service-option {
  padding: 1rem 1.05rem;
  background: rgba(255, 255, 255, 0.03);
  text-align: left;
}

.service-meta {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 0.8rem;
  font-size: 0.85rem;
}

.service-meta small {
  color: var(--text-primary);
}

.date-time-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.date-time-grid h4 {
  margin: 0 0 0.9rem;
  font-size: 0.85rem;
  color: var(--gold);
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.calendar-picker {
  display: grid;
  gap: 0.55rem;
  padding: 1rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.calendar-picker span {
  color: var(--text-muted);
  font-size: 0.86rem;
  font-weight: 700;
}

.calendar-picker input {
  width: 100%;
  color: var(--text-primary);
  color-scheme: dark;
  border: 0;
  border-radius: var(--radius-sm);
  background: rgba(0, 0, 0, 0.22);
  padding: 0.95rem 1rem;
  font: inherit;
  outline: 1px solid rgba(255, 255, 255, 0.08);
}

.calendar-picker input:focus {
  outline-color: rgba(242, 202, 80, 0.72);
  box-shadow: 0 0 0 4px rgba(242, 202, 80, 0.08);
}

.availability-note {
  margin: 0.75rem 0 0;
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

.time-grid {
  grid-template-columns: repeat(auto-fit, minmax(104px, 1fr));
}

.time-button {
  min-height: 68px;
  padding: 0.75rem 0.85rem;
  background: rgba(255, 255, 255, 0.03);
  text-align: left;
}

.time-button strong {
  display: block;
  margin-bottom: 0.25rem;
}

.is-disabled {
  opacity: 0.4;
  cursor: not-allowed;
  pointer-events: none;
}

.booking-form {
  display: grid;
  gap: 1rem;
}

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

.booking-form label {
  display: grid;
  gap: 0.55rem;
  font-size: 0.88rem;
  font-weight: 600;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  padding: 0.95rem 1rem;
  color: var(--text-primary);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: var(--radius-sm);
  background: rgba(0, 0, 0, 0.18);
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
  border-color: rgba(242, 202, 80, 0.65);
  box-shadow: 0 0 0 4px rgba(242, 202, 80, 0.08);
}

.full-width {
  grid-column: 1 / -1;
}

.form-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.form-message {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.92rem;
}

.form-message.error {
  color: var(--danger);
}

.form-message.success {
  color: var(--success);
}

.submit-button {
  min-width: 220px;
}

.summary-row {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.summary-row span {
  color: var(--text-muted);
}

.summary-note {
  margin-top: 1rem;
  padding: 1rem;
  border-radius: var(--radius-md);
  background: rgba(242, 202, 80, 0.06);
  border: 1px solid rgba(242, 202, 80, 0.14);
  color: var(--text-muted);
}

.saved-bookings-header {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: start;
  margin-bottom: 1rem;
}

.saved-bookings-list {
  display: grid;
  gap: 0.8rem;
}

.booking-record {
  padding: 1rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.booking-record p {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.6;
}

.booking-record.empty-state {
  text-align: center;
  color: var(--text-muted);
}

.text-button {
  padding: 0;
  font-size: 0.85rem;
}

.contact-layout {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.contact-card {
  padding: 2rem;
  background:
    linear-gradient(180deg, rgba(23, 22, 22, 0.92), rgba(16, 16, 16, 0.88));
}

.contact-list {
  display: grid;
  gap: 1.25rem;
}

.contact-list > div {
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr);
  gap: 0.9rem;
}

.contact-list .material-symbols-outlined {
  color: var(--gold);
}

.site-footer {
  padding: 2rem 0 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(8, 8, 8, 0.44);
}

.footer-row {
  align-items: center;
  justify-content: space-between;
}

.footer-brand {
  display: inline-block;
  margin-bottom: 0.4rem;
}

.footer-copy {
  max-width: 460px;
  margin: 0;
}

.footer-links {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.toast {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 30;
  max-width: 360px;
  padding: 1rem 1.1rem;
  border-radius: var(--radius-md);
  color: var(--text-primary);
  background: rgba(17, 17, 17, 0.94);
  border: 1px solid rgba(242, 202, 80, 0.18);
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease;
}

.toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .desktop-nav {
    display: none;
  }

  .mobile-menu-toggle {
    display: inline-flex;
  }

  .hero-grid,
  .split-section,
  .section-heading,
  .booking-layout,
  .contact-layout,
  .date-time-grid,
  .form-grid,
  .pricing-layout,
  .footer-row {
    grid-template-columns: 1fr;
    flex-direction: column;
  }

  .booking-sidebar {
    position: static;
  }

  .services-showcase {
    grid-template-columns: 1fr;
  }

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

  .hero-notes,
  .hero-panel-grid,
  .price-menu,
  .experience-shell {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .hero-section,
  .about-section,
  .services-section,
  .booking-section,
  .contact-section {
    padding: 4rem 0;
  }

  .hero-grid {
    min-height: auto;
    padding-top: 1rem;
  }

  .hero-copy h1,
  .section-heading h2,
  .split-section h2,
  .contact-card h2,
  .booking-heading h2 {
    font-size: clamp(2.4rem, 10vw, 3.5rem);
  }

  .hero-copy h1 {
    max-width: none;
  }

  .hero-panel,
  .pricing-copy,
  .price-menu,
  .booking-builder,
  .summary-card,
  .saved-bookings,
  .contact-card {
    padding: 1.35rem;
  }

  .pill-grid,
  .service-option-grid,
  .time-grid {
    grid-template-columns: 1fr;
  }

  .hero-notes {
    grid-template-columns: 1fr;
  }

  .service-card.feature,
  .service-card.standard {
    min-height: 260px;
  }

  .form-footer {
    align-items: stretch;
  }

  .submit-button {
    width: 100%;
  }

  .saved-bookings-header {
    flex-direction: column;
  }
}
