:root {
  --black: #030304;
  --panel: rgba(12, 13, 17, 0.78);
  --panel-strong: rgba(14, 15, 20, 0.94);
  --panel-soft: rgba(255, 255, 255, 0.04);
  --border: rgba(255, 255, 255, 0.12);
  --border-red: rgba(231, 25, 43, 0.42);
  --red: #e7192b;
  --red-hot: #ff2539;
  --red-dark: #8e1019;
  --text: #f5f5f6;
  --muted: #a5a7ad;
  --dim: #70737c;
  --glow: 0 0 32px rgba(231, 25, 43, 0.5);
  --glow-soft: 0 0 70px rgba(231, 25, 43, 0.22);
  --radius: 16px;
  --radius-sm: 10px;
  --max: 1440px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --font: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

* {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  background:
    radial-gradient(circle at 50% 0, rgba(160, 11, 20, 0.28), transparent 35%),
    var(--black);
  color: var(--text);
  font-family: var(--font);
  line-height: 1.45;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img,
svg {
  display: block;
}

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

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

button {
  cursor: pointer;
}

.shell {
  width: min(calc(100% - 56px), var(--max));
  margin-inline: auto;
}

.glass-card {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.025)),
    var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(18px);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 24px;
  border-radius: 2px;
  border: 1px solid transparent;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 0.22s var(--ease), border-color 0.22s var(--ease), background 0.22s var(--ease), box-shadow 0.22s var(--ease);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn--primary {
  color: #fff;
  background: linear-gradient(135deg, var(--red-hot), var(--red-dark));
  box-shadow: var(--glow);
}

.btn--outline {
  color: var(--red-hot);
  background: rgba(231, 25, 43, 0.04);
  border-color: var(--border-red);
}

.btn--outline:hover {
  background: rgba(231, 25, 43, 0.16);
  box-shadow: var(--glow-soft);
}

.btn--dark {
  color: var(--text);
  background: rgba(0, 0, 0, 0.36);
  border-color: rgba(255, 255, 255, 0.25);
}

.btn--dark:hover {
  border-color: rgba(255, 255, 255, 0.55);
}

/* Landing */
.landing {
  min-height: 100vh;
}

.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  isolation: isolate;
}

.hero__image {
  position: absolute;
  inset: 0;
  z-index: -3;
  background-color: var(--black);
  background-image: url("hero.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}

.hero__shade {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 72% 28%, rgba(231, 25, 43, 0.22), transparent 28%),
    radial-gradient(circle at 42% 10%, rgba(231, 25, 43, 0.18), transparent 30%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.94) 0%, rgba(0, 0, 0, 0.82) 30%, rgba(0, 0, 0, 0.48) 63%, rgba(0, 0, 0, 0.78) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.48), rgba(0, 0, 0, 0.7) 62%, #050506 100%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(180deg, transparent 0, #000 18%, #000 75%, transparent 100%);
}

.site-header {
  position: relative;
  z-index: 10;
  width: min(calc(100% - 56px), var(--max));
  margin-inline: auto;
  min-height: 92px;
  display: grid;
  grid-template-columns: 250px 1fr 190px;
  align-items: center;
  gap: 24px;
}

.brand img {
  width: 225px;
  height: auto;
  filter: drop-shadow(0 0 20px rgba(0, 0, 0, 0.95));
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(22px, 2.5vw, 44px);
}

.nav a {
  position: relative;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.82rem;
  font-weight: 600;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 1px;
  background: var(--red-hot);
  box-shadow: var(--glow);
  transition: width 0.22s var(--ease);
}

.nav a:hover::after {
  width: 100%;
}

.header-cta {
  justify-self: end;
  min-height: 40px;
  min-width: 140px;
}

.menu-toggle {
  display: none;
  justify-self: end;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.45);
  position: relative;
  z-index: 102;
  cursor: pointer;
}

body.nav-open {
  overflow: hidden;
}

body.nav-open::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 40;
  background: rgba(0, 0, 0, 0.65);
}

body.nav-open .site-header,
body.nav-open .subpage-header {
  z-index: 110;
}

body.nav-open .hero {
  z-index: 110;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: var(--text);
  transition: transform 0.24s var(--ease), opacity 0.24s var(--ease);
}

.menu-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero__content {
  position: relative;
  min-height: calc(100vh - 92px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  align-items: center;
  gap: clamp(42px, 7vw, 110px);
  padding: 30px 0 120px;
}

.hero__copy {
  max-width: 780px;
}

.eyebrow {
  margin-bottom: 14px;
  color: var(--red-hot);
  font-size: clamp(0.78rem, 1vw, 0.9rem);
  font-weight: 800;
  letter-spacing: 0.34em;
  text-transform: uppercase;
}

.hero h1 {
  color: #e8e9eb;
  font-size: clamp(2.6rem, 5.8vw, 6rem);
  font-weight: 900;
  line-height: 0.92;
  letter-spacing: -0.075em;
  text-transform: uppercase;
  text-shadow: 0 12px 40px rgba(0, 0, 0, 0.8);
}

.hero h1 span {
  color: var(--red-hot);
  text-shadow: var(--glow);
}

.hero__subtitle {
  max-width: 600px;
  margin-top: 26px;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1.02rem, 1.25vw, 1.24rem);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 30px;
}

.feature-list {
  display: grid;
  gap: 24px;
  padding-left: 34px;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.feature-list article {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 16px;
  align-items: start;
}

.feature-list h3 {
  margin-bottom: 5px;
  color: var(--text);
  font-size: 0.94rem;
  font-weight: 800;
  text-transform: uppercase;
}

.feature-list p {
  color: var(--muted);
  font-size: 0.86rem;
}

.feature-carousel {
  width: 100%;
}

.feature-carousel__btn,
.feature-carousel__dots {
  display: none;
}

.feature-carousel__btn svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  color: var(--red-hot);
}

.feature-icon svg,
.strip-icon svg {
  width: 32px;
  height: 32px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linejoin: round;
  stroke-linecap: round;
  filter: drop-shadow(0 0 9px rgba(231, 25, 43, 0.55));
}

.feature-icon svg path,
.strip-icon svg path {
  fill: none;
}

.landing-panels,
.section {
  position: relative;
  z-index: 5;
}

.section--services {
  margin-top: -100px;
  padding-bottom: 0;
}

.section--booking,
.section--gallery {
  padding: 28px 0;
}

.section--booking .booking-card {
  max-width: 920px;
  margin-inline: auto;
}

.booking-page--modern {
  --booking-scroll-offset: 108px;
}

.booking-hero {
  position: relative;
  padding: clamp(36px, 6vw, 56px) 0 clamp(24px, 4vw, 36px);
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}

.booking-hero__shade {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 15%, rgba(231, 25, 43, 0.2), transparent 45%),
    radial-gradient(circle at 85% 0%, rgba(231, 25, 43, 0.08), transparent 38%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent 72%);
  pointer-events: none;
}

.booking-hero__inner {
  position: relative;
  max-width: 760px;
}

.booking-hero__eyebrow {
  margin-bottom: 12px;
  color: var(--red-hot);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.booking-hero h1 {
  margin-bottom: 14px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.4rem, 5vw, 3.4rem);
  font-weight: 700;
  line-height: 1.05;
}

.booking-hero__lead {
  max-width: 58ch;
  color: var(--muted);
  font-size: clamp(0.95rem, 1.8vw, 1.05rem);
  line-height: 1.65;
}

.booking-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.booking-badge {
  display: inline-flex;
  align-items: center;
  padding: 7px 14px;
  border: 1px solid var(--border-red);
  border-radius: 999px;
  background: rgba(231, 25, 43, 0.1);
  color: var(--text);
  font-size: 0.78rem;
  font-weight: 600;
}

.booking-badge--outline {
  border-color: var(--border);
  background: rgba(255, 255, 255, 0.03);
  color: var(--muted);
}

.booking-highlights {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: -20px;
  margin-bottom: clamp(24px, 4vw, 36px);
  position: relative;
  z-index: 2;
}

.booking-highlight {
  display: grid;
  gap: 4px;
  padding: 18px 16px;
  text-align: center;
}

.booking-highlight__label {
  color: var(--dim);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.booking-highlight strong {
  color: var(--text);
  font-size: clamp(1.2rem, 2.5vw, 1.55rem);
  font-weight: 900;
  line-height: 1.1;
}

.booking-highlight__note {
  color: var(--muted);
  font-size: 0.78rem;
}

.booking-page--modern .booking-main {
  padding-top: 0;
  padding-bottom: clamp(40px, 6vw, 64px);
}

.booking-page--modern .booking-layout {
  grid-template-columns: minmax(0, 1fr) minmax(280px, 340px);
  gap: clamp(20px, 3vw, 28px);
}

.booking-progress {
  display: flex;
  align-items: center;
  gap: 0;
  padding: 16px 20px;
  margin-bottom: 16px;
  overflow-x: auto;
}

.booking-progress__step {
  display: grid;
  gap: 4px;
  min-width: 72px;
  text-align: center;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
  flex-shrink: 0;
}

.booking-progress__num {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-inline: auto;
  border: 1px solid var(--border-red);
  border-radius: 10px;
  background: rgba(231, 25, 43, 0.1);
  color: var(--red-hot);
  font-size: 0.72rem;
  font-weight: 900;
}

.booking-progress__line {
  flex: 1;
  min-width: 16px;
  height: 1px;
  margin-bottom: 18px;
  background: linear-gradient(90deg, var(--border-red), var(--border));
}

.booking-intro {
  margin-bottom: 18px;
  padding: 16px 20px;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.6;
}

.booking-intro a,
.field-hint a {
  color: var(--red-hot);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.booking-intro a:hover,
.field-hint a:hover {
  color: #fff;
}

.booking-page--modern .booking-panel {
  padding: 0;
  overflow: hidden;
}

.booking-section__head {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: clamp(20px, 3vw, 26px) clamp(20px, 3vw, 28px) clamp(18px, 3vw, 22px);
  border-bottom: 1px solid var(--border);
}

.booking-section__head > div {
  display: grid;
  gap: 6px;
  flex: 1;
  min-width: 0;
}

.booking-section__num {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--border-red);
  border-radius: 11px;
  background: rgba(231, 25, 43, 0.1);
  color: var(--red-hot);
  font-size: 0.8rem;
  font-weight: 900;
  flex-shrink: 0;
}

.booking-section__head h2 {
  margin: 0;
  color: var(--text);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.35rem, 2.5vw, 1.65rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: 0;
  text-transform: none;
}

.booking-section__head p {
  margin-top: 4px;
  color: var(--dim);
  font-size: 0.84rem;
  line-height: 1.5;
}

.booking-section__body {
  display: grid;
  gap: 16px;
  padding: clamp(20px, 3vw, 28px);
}

.booking-page--modern .booking-panel h2 {
  margin-bottom: 0;
}

.booking-pricing-card {
  padding: 18px 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: rgba(0, 0, 0, 0.22);
}

.booking-pricing .is-deposit dt,
.booking-pricing .is-deposit dd,
.booking-estimate__list .is-deposit dt,
.booking-estimate__list .is-deposit dd {
  color: var(--red-hot);
}

.booking-agree {
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.02);
}

.booking-sidebar {
  display: grid;
  gap: 16px;
  align-content: start;
  position: sticky;
  top: calc(var(--booking-scroll-offset, 100px) + 12px);
}

.booking-page--modern .booking-estimate {
  position: static;
  top: auto;
  padding: 24px;
  border-color: var(--border-red);
  background:
    linear-gradient(160deg, rgba(231, 25, 43, 0.12), rgba(255, 255, 255, 0.03));
}

.booking-estimate__eyebrow {
  margin-bottom: 6px;
  color: var(--red-hot);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.booking-page--modern .booking-estimate h2 {
  margin-bottom: 8px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
}

.booking-estimate__total {
  margin-bottom: 6px;
  color: var(--text);
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 900;
  line-height: 1;
}

.booking-estimate__package {
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 600;
}

.booking-next,
.booking-related {
  padding: 20px;
}

.booking-next h3,
.booking-related h3 {
  margin-bottom: 14px;
  color: var(--text);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.booking-next__list {
  display: grid;
  gap: 10px;
  padding-left: 20px;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.5;
}

.booking-related__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 11px 0;
  border-bottom: 1px solid var(--border);
  color: var(--text);
  font-size: 0.88rem;
  font-weight: 600;
  transition: color 0.2s var(--ease);
}

.booking-related__link:last-child {
  border-bottom: 0;
}

.booking-related__link svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  color: var(--red-hot);
}

.booking-related__link:hover {
  color: var(--red-hot);
}

@media (max-width: 1024px) {
  .booking-highlights {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .booking-page--modern .booking-layout {
    grid-template-columns: 1fr;
  }

  .booking-sidebar {
    position: static;
    order: -1;
  }
}

@media (max-width: 720px) {
  .booking-page--modern {
    --booking-scroll-offset: 92px;
  }

  .booking-highlights {
    grid-template-columns: 1fr 1fr;
    margin-top: 16px;
  }

  .booking-progress__step span:last-child {
    font-size: 0.65rem;
  }

  .booking-section__head {
    flex-direction: row;
    align-items: center;
  }

  .booking-section__head p {
    display: none;
  }
}

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

.booking-main {
  padding-top: 8px;
  padding-bottom: 48px;
}

.booking-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 24px;
  align-items: start;
}

.booking-page-head {
  margin-bottom: 24px;
}

.booking-page-head h1 {
  color: var(--text);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
}

.booking-policies {
  display: grid;
  gap: 8px;
  margin-top: 16px;
  padding-left: 18px;
  color: var(--muted);
  font-size: 0.9rem;
}

.booking-alert {
  margin-top: 18px;
  padding: 14px 16px;
  border-left: 3px solid var(--red-hot);
  border-radius: 8px;
  background: rgba(231, 25, 43, 0.08);
  color: var(--gray-light);
  font-size: 0.88rem;
}

.booking-detail-form {
  display: grid;
  gap: 18px;
}

.booking-panel {
  padding: 24px 28px;
}

.booking-panel h2 {
  margin-bottom: 18px;
  color: var(--text);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.booking-calendar-wrap {
  margin-top: 16px;
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
}

.booking-calendar-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.booking-calendar-head strong {
  color: var(--text);
  font-size: 0.95rem;
}

.booking-calendar-nav {
  width: 34px;
  height: 34px;
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
  font-size: 1.2rem;
  line-height: 1;
}

.booking-calendar-nav:hover {
  border-color: var(--border-red);
  color: var(--red-hot);
}

.booking-calendar .cal-day {
  border: 1px solid transparent;
  border-radius: 8px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
  cursor: pointer;
  font-weight: 600;
  transition: background 0.2s var(--ease), border-color 0.2s var(--ease), color 0.2s var(--ease);
}

.booking-calendar .cal-day.is-open {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.12);
}

.booking-calendar .cal-day.is-open:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.25);
}

.booking-calendar .cal-day.is-limited {
  color: #ffc96e;
  background: rgba(255, 177, 61, 0.22);
  border-color: rgba(255, 177, 61, 0.35);
}

.booking-calendar .cal-day.is-booked {
  color: rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.06);
  cursor: not-allowed;
}

.booking-calendar .cal-day.is-selected {
  color: #fff;
  background: linear-gradient(135deg, var(--red-hot), var(--red-dark));
  border-color: var(--red-hot);
  box-shadow: var(--glow);
}

.booking-calendar.calendar-grid {
  gap: 6px;
}

.booking-calendar .cal-day,
.booking-calendar .dow,
.booking-calendar .empty {
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  font-size: 0.88rem;
}

.booking-calendar .dow {
  aspect-ratio: auto;
  padding-bottom: 4px;
  color: var(--gray-light);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.booking-calendar .empty {
  opacity: 0;
}

.booking-event-duration {
  margin-top: 10px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--gray-light);
  font-size: 0.8rem;
  font-weight: 700;
}

.booking-event-duration.is-error {
  border-color: rgba(231, 25, 43, 0.3);
  background: rgba(231, 25, 43, 0.08);
  color: var(--red-hot);
}

.booking-duration {
  margin-top: 14px;
  padding: 10px 14px;
  border-radius: 8px;
  background: rgba(87, 223, 142, 0.1);
  color: #7dffb0;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.booking-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.78rem;
}

.booking-legend .dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-right: 6px;
  border-radius: 50%;
  vertical-align: middle;
}

.dot--open { background: rgba(255, 255, 255, 0.35); }
.dot--limited { background: #ffb13d; }
.dot--booked { background: rgba(255, 255, 255, 0.15); }

.booking-pricing,
.booking-estimate__list {
  display: grid;
  gap: 12px;
}

.booking-pricing div,
.booking-estimate__list div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.booking-pricing dt,
.booking-estimate__list dt {
  color: var(--muted);
  font-size: 0.88rem;
}

.booking-pricing dd,
.booking-estimate__list dd {
  color: var(--text);
  font-weight: 800;
}

.booking-pricing .is-total dt,
.booking-pricing .is-total dd,
.booking-estimate__list .is-total dt,
.booking-estimate__list .is-total dd {
  color: var(--text);
  font-size: 1rem;
  font-weight: 900;
}

.booking-deposit-note {
  margin-top: 14px;
  padding: 14px 16px;
  border-radius: 8px;
  background: rgba(231, 25, 43, 0.08);
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.5;
}

.booking-payment-section {
  margin-top: 18px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.02);
}

.booking-payment-section__title {
  margin: 0 0 14px;
  color: var(--text);
  font-family: var(--font-display, Georgia, serif);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
}

.payment-stripe-pending {
  margin: 0 0 12px;
  padding: 12px 14px;
  font-size: 0.86rem;
  line-height: 1.45;
  color: var(--muted);
  background: rgba(231, 25, 43, 0.08);
  border: 1px solid rgba(231, 25, 43, 0.22);
  border-radius: 8px;
}

.payment-method-tabs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 14px;
}

.payment-method-tab {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 72px;
  padding: 10px 8px;
  border: 1.5px solid #d8dee8;
  border-radius: 10px;
  background: #fff;
  color: #4b5563;
  font: inherit;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: border-color 0.15s ease, color 0.15s ease, box-shadow 0.15s ease;
}

.payment-method-tab:hover {
  border-color: #9bb8f0;
  color: #1d4ed8;
}

.payment-method-tab.is-active {
  border-color: #0570de;
  color: #0570de;
  box-shadow: 0 0 0 1px #0570de;
}

.payment-method-tab__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: inherit;
}

.payment-stripe-surface {
  padding: 16px;
  border-radius: 10px;
  background: #fff;
  border: 1px solid #e6ebf1;
}

.payment-stripe-trust {
  margin: 0 0 12px;
  padding: 12px 14px;
  font-size: 0.86rem;
  line-height: 1.45;
  color: #4b5563;
  background: #f6f9fc;
  border: 1px solid #e6ebf1;
  border-radius: 8px;
}

.payment-element-host {
  min-height: 3.5rem;
  margin: 0;
}

.payment-cash-panel {
  padding: 16px;
  border-radius: 10px;
  background: #fff;
  border: 1px solid #e6ebf1;
}

.payment-cash-intro {
  margin: 0 0 12px;
  font-size: 0.92rem;
  line-height: 1.55;
  color: #374151;
}

.payment-cash-steps {
  margin: 0;
  padding-left: 1.2rem;
  color: #4b5563;
  font-size: 0.88rem;
  line-height: 1.6;
}

.payment-cash-steps li + li {
  margin-top: 6px;
}

.payment-placeholder {
  margin-top: 14px;
  padding: 14px 16px;
  background: #f6f9fc;
  border: 1px solid #e6ebf1;
  border-radius: 8px;
  font-size: 0.88rem;
  color: #4b5563;
}

.payment-placeholder p {
  margin: 0 0 6px;
}

.payment-placeholder p:last-child {
  margin-bottom: 0;
}

.booking-submit {
  width: 100%;
  margin-top: 18px;
}

.booking-estimate {
  position: sticky;
  top: 100px;
  padding: 24px;
}

.booking-estimate h2 {
  margin-bottom: 18px;
  color: var(--text);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.booking-estimate__note {
  margin-top: 16px;
  color: var(--dim);
  font-size: 0.78rem;
  line-height: 1.5;
}

.booking-page__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 12px;
}

.booking-page__logo {
  width: 200px;
  height: auto;
}

.subpage-header {
  position: sticky;
  top: 0;
  z-index: 50;
  width: 100%;
  background: rgba(3, 3, 4, 0.96);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}

.subpage-header__inner {
  display: grid;
  grid-template-columns: minmax(160px, 250px) minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(16px, 3vw, 32px);
  min-height: 92px;
  padding: 14px 0;
}

.subpage-header__brand {
  display: block;
  min-width: 0;
}

.subpage-header__logo {
  width: min(225px, 100%);
  height: auto;
  filter: drop-shadow(0 0 20px rgba(0, 0, 0, 0.95));
}

.nav a.is-active {
  color: var(--red-hot);
}

.nav a.is-active::after {
  width: 100%;
}

.services-main {
  padding-top: 8px;
  padding-bottom: 48px;
}

.services-policies {
  padding: 28px 32px;
  margin-bottom: 28px;
}

.services-main .services-list-head {
  margin-bottom: 24px;
}

.services-main .services-policies {
  margin-top: 32px;
  margin-bottom: 0;
}

.services-policies h2 {
  margin-bottom: 16px;
  color: var(--text);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700;
}

.services-policies ul {
  display: grid;
  gap: 10px;
  padding-left: 18px;
  color: var(--muted);
  font-size: 0.92rem;
}

.services-policies__links {
  margin-top: 16px;
  color: var(--muted);
  font-size: 0.92rem;
}

.services-policies__links a,
.services-policies a,
.legal-content a,
.booking-policies a,
.booking-alert a,
.booking-deposit-note a {
  color: var(--red-hot);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.services-policies__links a:hover,
.services-policies a:hover,
.legal-content a:hover,
.booking-policies a:hover,
.booking-alert a:hover,
.booking-deposit-note a:hover {
  color: #fff;
}

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

.service-package-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 0;
  height: 100%;
}

.service-package-card__media {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  min-height: 168px;
  border: 0;
  border-bottom: 1px solid var(--border);
  background-color: #111;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  flex-shrink: 0;
}

.service-package-card__media--photo {
  background-image: url("hero.png");
}

.service-package-card__media--red {
  background-image: url("music-lighting.png");
}

.service-package-card__media--crowd {
  background:
    radial-gradient(circle at 50% 70%, rgba(255, 255, 255, 0.24), transparent 18%),
    linear-gradient(145deg, #14151b, #4a0b12);
}

.service-package-card__media--booth {
  background:
    radial-gradient(circle at 40% 65%, rgba(255, 37, 57, 0.5), transparent 16%),
    linear-gradient(145deg, #060607, #1a1c24);
}

.service-package-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 14px;
  padding: clamp(20px, 3vw, 28px);
}

.service-package-card__body h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  line-height: 1.15;
}

.service-package-card__price {
  color: var(--text);
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  font-weight: 800;
}

.service-package-card__price span {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 600;
}

.service-package-card__deposit {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.5;
}

.service-package-card__features {
  display: grid;
  gap: 8px;
  padding-left: 18px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

.service-package-card__cta {
  width: 100%;
  margin-top: auto;
  text-align: center;
}

.legal-main {
  padding: 24px 0 48px;
}

.legal-content {
  max-width: 820px;
  margin-inline: auto;
  padding: clamp(28px, 4vw, 40px);
}

.legal-content__head {
  margin-bottom: 28px;
}

.legal-content__head h1 {
  margin-bottom: 8px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
}

.legal-content__updated {
  margin-bottom: 16px;
  color: var(--dim);
  font-size: 0.86rem;
}

.legal-content section {
  margin-bottom: 28px;
}

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

.legal-content h2 {
  margin-bottom: 10px;
  color: var(--text);
  font-size: 1.15rem;
  font-weight: 700;
}

.legal-content h3 {
  margin: 16px 0 8px;
  color: var(--text);
  font-size: 1rem;
  font-weight: 700;
}

.legal-content p,
.legal-content li {
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.65;
}

.legal-content ul,
.legal-content ol {
  display: grid;
  gap: 8px;
  margin-top: 8px;
  padding-left: 20px;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 16px 0;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.5;
  cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  min-width: 18px;
  min-height: 18px;
  max-width: 18px;
  margin: 0;
  padding: 0;
  flex-shrink: 0;
  border: none;
  border-radius: 4px;
  background: transparent;
  box-shadow: none;
  accent-color: var(--red);
  cursor: pointer;
  appearance: auto;
  -webkit-appearance: checkbox;
}

.checkbox-label a {
  color: var(--red-hot);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer__legal {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px 18px;
  margin-bottom: 14px;
}

.footer__nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px 20px;
  margin-bottom: 12px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
  width: 100%;
  max-width: 640px;
  margin-inline: auto;
}

.footer__nav a {
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 600;
  transition: color 0.2s var(--ease);
}

.footer__nav a:hover,
.footer__nav a[aria-current="page"] {
  color: var(--red-hot);
}

.footer__legal a {
  color: var(--muted);
  font-size: 0.84rem;
  transition: color 0.2s var(--ease);
}

.footer__legal a:hover,
.footer__legal a[aria-current="page"] {
  color: var(--red-hot);
}

/* ── Terms page (redesigned) ── */

.terms-page {
  --terms-section-scroll: 108px;
}

.terms-hero {
  position: relative;
  padding: clamp(36px, 6vw, 64px) 0 clamp(28px, 4vw, 40px);
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}

.terms-hero__shade {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 20%, rgba(231, 25, 43, 0.18), transparent 42%),
    radial-gradient(circle at 82% 0%, rgba(231, 25, 43, 0.08), transparent 35%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent 70%);
  pointer-events: none;
}

.terms-hero__inner {
  position: relative;
  max-width: 780px;
}

.terms-hero__eyebrow {
  margin-bottom: 12px;
  color: var(--red-hot);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.terms-hero h1 {
  margin-bottom: 14px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 700;
  line-height: 1.05;
}

.terms-hero__lead {
  max-width: 62ch;
  color: var(--muted);
  font-size: clamp(0.95rem, 1.8vw, 1.05rem);
  line-height: 1.65;
}

.terms-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.terms-badge {
  display: inline-flex;
  align-items: center;
  padding: 7px 14px;
  border: 1px solid var(--border-red);
  border-radius: 999px;
  background: rgba(231, 25, 43, 0.1);
  color: var(--text);
  font-size: 0.78rem;
  font-weight: 600;
}

.terms-badge--outline {
  border-color: var(--border);
  background: rgba(255, 255, 255, 0.03);
  color: var(--muted);
}

.terms-highlights {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: -22px;
  margin-bottom: clamp(28px, 4vw, 40px);
  position: relative;
  z-index: 2;
}

.terms-highlight {
  display: grid;
  gap: 4px;
  padding: 18px 20px;
  text-align: center;
}

.terms-highlight__label {
  color: var(--dim);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.terms-highlight strong {
  color: var(--text);
  font-size: clamp(1.35rem, 2.5vw, 1.65rem);
  font-weight: 900;
  line-height: 1.1;
}

.terms-highlight__note {
  color: var(--muted);
  font-size: 0.78rem;
}

.terms-layout {
  display: grid;
  grid-template-columns: minmax(220px, 260px) minmax(0, 1fr);
  gap: clamp(24px, 3vw, 36px);
  align-items: start;
  padding-bottom: clamp(40px, 6vw, 64px);
}

.terms-sidebar {
  display: grid;
  gap: 16px;
  position: sticky;
  top: calc(var(--terms-section-scroll) + 12px);
}

.terms-toc,
.terms-related {
  padding: 22px 20px;
}

.terms-toc__title,
.terms-related__title {
  margin-bottom: 14px;
  color: var(--text);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.terms-toc__list {
  display: grid;
  gap: 4px;
  list-style: none;
  counter-reset: toc;
}

.terms-toc__list li {
  counter-increment: toc;
}

.terms-toc__list a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  border-radius: var(--radius-sm);
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 500;
  transition: background 0.2s var(--ease), color 0.2s var(--ease);
}

.terms-toc__list a::before {
  content: counter(toc, decimal-leading-zero);
  flex-shrink: 0;
  width: 28px;
  color: var(--dim);
  font-size: 0.68rem;
  font-weight: 800;
}

.terms-toc__list a:hover,
.terms-toc__list a:focus-visible {
  background: rgba(231, 25, 43, 0.08);
  color: var(--text);
  outline: none;
}

.terms-related__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 600;
  transition: color 0.2s var(--ease);
}

.terms-related__link:last-of-type {
  border-bottom: 0;
  margin-bottom: 16px;
}

.terms-related__link svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  color: var(--red-hot);
}

.terms-related__link:hover {
  color: var(--red-hot);
}

.terms-related__cta {
  width: 100%;
  text-align: center;
}

.terms-body {
  display: grid;
  gap: 18px;
  min-width: 0;
}

.terms-section {
  scroll-margin-top: var(--terms-section-scroll);
  padding: clamp(22px, 3vw, 30px);
}

.terms-section__head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
}

.terms-section__num {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--border-red);
  border-radius: 12px;
  background: rgba(231, 25, 43, 0.1);
  color: var(--red-hot);
  font-size: 0.82rem;
  font-weight: 900;
  flex-shrink: 0;
}

.terms-section__head h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.45rem, 2.5vw, 1.85rem);
  font-weight: 700;
  line-height: 1.15;
}

.terms-section p {
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.7;
}

.terms-section p + p,
.terms-section p + ul,
.terms-section ul + p {
  margin-top: 12px;
}

.terms-section a {
  color: var(--red-hot);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.terms-section a:hover {
  color: #fff;
}

.terms-list {
  display: grid;
  gap: 10px;
  padding-left: 20px;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.65;
}

.terms-list--checks {
  list-style: none;
  padding-left: 0;
}

.terms-list--checks li {
  position: relative;
  padding-left: 28px;
}

.terms-list--checks li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 14px;
  height: 14px;
  border-radius: 4px;
  background:
    linear-gradient(135deg, var(--red), var(--red-hot));
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3'%3E%3Cpath d='M5 12l5 5 9-10'/%3E%3C/svg%3E") center / 10px no-repeat;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3'%3E%3Cpath d='M5 12l5 5 9-10'/%3E%3C/svg%3E") center / 10px no-repeat;
}

.terms-note {
  margin-top: 14px;
  padding: 12px 14px;
  border-left: 3px solid var(--red);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  background: rgba(255, 255, 255, 0.03);
  font-size: 0.88rem !important;
}

.terms-callout {
  margin: 4px 0 16px;
  padding: 18px 20px;
  border: 1px solid var(--border-red);
  border-radius: var(--radius-sm);
  background:
    linear-gradient(135deg, rgba(231, 25, 43, 0.12), rgba(231, 25, 43, 0.04));
}

.terms-callout strong {
  display: block;
  margin-bottom: 6px;
  color: var(--text);
  font-size: 1rem;
}

.terms-callout p {
  margin: 0;
  font-size: 0.9rem;
}

.terms-contact-card {
  display: grid;
  gap: 14px;
  margin-top: 18px;
  padding: 18px 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.02);
}

.terms-contact-card--inline {
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.terms-contact-card__label {
  display: block;
  margin-bottom: 4px;
  color: var(--dim);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.terms-contact-card strong,
.terms-contact-card a {
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 600;
}

.terms-contact-card a {
  color: var(--red-hot);
  text-decoration: none;
}

.terms-contact-card a:hover {
  text-decoration: underline;
}

.terms-packages {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 18px;
}

.terms-package {
  position: relative;
  display: grid;
  gap: 14px;
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: rgba(0, 0, 0, 0.22);
}

.terms-package--featured {
  border-color: var(--border-red);
  background:
    linear-gradient(160deg, rgba(231, 25, 43, 0.1), rgba(0, 0, 0, 0.28));
  box-shadow: var(--glow-soft);
}

.terms-package__badge {
  position: absolute;
  top: 14px;
  right: 14px;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--red);
  color: #fff;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.terms-package__head h3 {
  color: var(--text);
  font-size: 1.05rem;
  font-weight: 800;
}

.terms-package__price {
  margin-top: 4px;
  color: var(--text);
  font-size: 1.5rem;
  font-weight: 900;
}

.terms-package__price span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 600;
}

.terms-package__list {
  display: grid;
  gap: 8px;
  padding-left: 18px;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.5;
}

.terms-package__terms {
  margin: 0;
  padding-top: 10px;
  border-top: 1px solid var(--border);
  color: var(--dim);
  font-size: 0.8rem;
  font-weight: 600;
}

.terms-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: clamp(24px, 3vw, 32px);
  border-color: var(--border-red);
  background:
    linear-gradient(135deg, rgba(231, 25, 43, 0.14), rgba(255, 255, 255, 0.03));
}

.terms-cta h2 {
  margin-bottom: 6px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
}

.terms-cta p {
  color: var(--muted);
  font-size: 0.92rem;
  max-width: 42ch;
}

.terms-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

@media (max-width: 1024px) {
  .terms-highlights {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .terms-layout {
    grid-template-columns: 1fr;
  }

  .terms-sidebar {
    position: static;
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 720px) {
  .terms-page {
    --terms-section-scroll: 92px;
  }

  .terms-highlights {
    grid-template-columns: 1fr 1fr;
    margin-top: 20px;
  }

  .terms-sidebar {
    grid-template-columns: 1fr;
  }

  .terms-packages {
    grid-template-columns: 1fr;
  }

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

  .terms-cta__actions {
    flex-direction: column;
  }

  .terms-cta__actions .btn {
    width: 100%;
    text-align: center;
  }

  .terms-package__badge {
    position: static;
    justify-self: start;
    margin-bottom: 4px;
  }
}

/* Cancellation & privacy page components */

.terms-scenarios {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 16px 0;
}

.terms-scenario {
  display: grid;
  gap: 8px;
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: rgba(0, 0, 0, 0.22);
}

.terms-scenario--alert {
  border-color: var(--border-red);
  background: linear-gradient(160deg, rgba(231, 25, 43, 0.1), rgba(0, 0, 0, 0.28));
}

.terms-scenario__tag {
  display: inline-flex;
  align-self: start;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--dim);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.terms-scenario--alert .terms-scenario__tag {
  background: rgba(231, 25, 43, 0.18);
  color: var(--red-hot);
}

.terms-scenario h3 {
  color: var(--text);
  font-size: 0.98rem;
  font-weight: 800;
}

.terms-scenario p {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.6;
}

.terms-list--ordered {
  list-style: decimal;
  padding-left: 22px;
}

.terms-data-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.terms-data-card {
  display: grid;
  gap: 8px;
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.02);
}

.terms-data-card__icon {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(231, 25, 43, 0.12);
  color: var(--red-hot);
  font-size: 0.72rem;
  font-weight: 900;
}

.terms-data-card h3 {
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 800;
}

.terms-data-card p {
  margin: 0;
  font-size: 0.86rem;
  line-height: 1.55;
}

@media (max-width: 720px) {
  .terms-scenarios,
  .terms-data-grid {
    grid-template-columns: 1fr;
  }
}

.services-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}

.services-tabs-carousel {
  margin-bottom: 28px;
}

.services-tabs-carousel__btn {
  display: none;
}

.services-tabs-carousel__btn svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.services-tabs-carousel .services-tabs {
  margin-bottom: 0;
}

.services-tabs__btn {
  min-height: 44px;
  padding: 0 22px;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.03);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: border-color 0.22s var(--ease), color 0.22s var(--ease), box-shadow 0.22s var(--ease);
}

.services-tabs__btn.is-active {
  color: var(--red-hot);
  border-color: var(--border-red);
  box-shadow: var(--glow-soft);
}

.services-list-head {
  margin-bottom: 22px;
  padding-left: 18px;
  border-left: 3px solid var(--red-hot);
}

.services-list-head h1 {
  color: var(--text);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1;
}

.services-list-head p {
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.95rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.services-grid.services-grid--packages {
  gap: clamp(16px, 3vw, 28px);
  align-items: stretch;
}

.services-grid__label {
  grid-column: 1 / -1;
  color: var(--dim);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.service-card {
  display: grid;
  grid-template-columns: 92px 1fr auto;
  align-items: center;
  gap: 18px;
  min-height: 96px;
  padding: 16px 18px;
  transition: transform 0.22s var(--ease), border-color 0.22s var(--ease), box-shadow 0.22s var(--ease);
}

.service-card:hover {
  transform: translateY(-2px);
  border-color: var(--border-red);
  box-shadow: var(--glow-soft);
}

.service-card__thumb {
  width: 92px;
  height: 92px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: #111;
}

.service-card__thumb--photo {
  background: url("hero.png") center / cover no-repeat;
}

.service-card__thumb--red {
  background:
    radial-gradient(circle at 40% 35%, rgba(255, 37, 57, 0.72), transparent 22%),
    linear-gradient(135deg, #09090b, #4a080e 52%, #08080a);
}

.service-card__thumb--crowd {
  background:
    radial-gradient(circle at 50% 70%, rgba(255, 255, 255, 0.24), transparent 18%),
    linear-gradient(145deg, #14151b, #4a0b12);
}

.service-card__thumb--booth {
  background:
    radial-gradient(circle at 40% 65%, rgba(255, 37, 57, 0.5), transparent 16%),
    linear-gradient(145deg, #060607, #1a1c24);
}

.service-card__body {
  display: grid;
  gap: 4px;
}

.service-card__body strong {
  color: var(--text);
  font-size: 1rem;
  font-weight: 800;
}

.service-card__body span {
  color: var(--dim);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-card__price {
  color: var(--red-hot);
  font-size: 1.15rem;
  font-weight: 900;
  white-space: nowrap;
}

.booking-selected {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 22px;
  padding: 18px 20px;
  border-color: var(--border-red);
}

.booking-selected__label {
  display: block;
  margin-bottom: 4px;
  color: var(--dim);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.booking-selected strong {
  display: block;
  color: var(--text);
  font-size: 1.05rem;
}

.booking-selected__price {
  color: var(--red-hot);
  font-size: 1.35rem;
  font-weight: 900;
}

.contact-main {
  padding-top: 8px;
  padding-bottom: 48px;
}

.contact-intro {
  margin-bottom: 28px;
  padding-left: 18px;
  border-left: 3px solid var(--red-hot);
}

.contact-intro h1 {
  color: var(--text);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1;
}

.contact-intro p {
  margin-top: 10px;
  max-width: 620px;
  color: var(--muted);
  font-size: 0.98rem;
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 20px;
  align-items: start;
}

.contact-info,
.contact-form-card {
  padding: 28px 32px;
}

.contact-info h2,
.contact-form-card h2 {
  color: var(--text);
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.contact-form-card__sub {
  margin-top: 8px;
  margin-bottom: 20px;
  color: var(--muted);
  font-size: 0.9rem;
}

.contact-list {
  display: grid;
  gap: 18px;
  margin-top: 22px;
}

.contact-list li {
  display: grid;
  gap: 4px;
}

.contact-list__label {
  color: var(--dim);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-list a,
.contact-list span {
  color: var(--text);
  font-size: 1rem;
  font-weight: 600;
}

.contact-list a:hover {
  color: var(--red-hot);
}

.contact-socials {
  margin-top: 28px;
}

.contact-socials__links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 10px;
}

.contact-socials__links a {
  min-height: 40px;
  padding: 0 16px;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--text);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: border-color 0.22s var(--ease), color 0.22s var(--ease), box-shadow 0.22s var(--ease);
}

.contact-socials__links a:hover {
  border-color: var(--border-red);
  color: var(--red-hot);
  box-shadow: var(--glow-soft);
}

.contact-info__cta {
  width: 100%;
  margin-top: 28px;
}

.contact-form {
  display: grid;
  gap: 14px;
}

.section--gallery .events-card {
  width: 100%;
}

.service-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  min-height: 92px;
  overflow: hidden;
}

.service-strip article {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 18px;
  align-items: center;
  padding: 22px 28px;
  border-right: 1px solid var(--border);
  transition: background 0.22s var(--ease), transform 0.22s var(--ease);
}

.service-strip article:last-child {
  border-right: 0;
}

.service-strip article:hover {
  background: rgba(231, 25, 43, 0.08);
}

.strip-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  color: var(--red-hot);
  border: 1px solid var(--border-red);
  border-radius: 12px;
  background: rgba(231, 25, 43, 0.06);
}

.service-strip h2,
.card-head h2 {
  color: var(--text);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.service-strip p,
.card-head p {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.84rem;
}

.booking-card,
.events-card {
  min-height: 360px;
  padding: 32px;
}

.card-head {
  margin-bottom: 18px;
}

.card-head--inline {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 18px;
}

.card-head--inline a,
.mini-link {
  color: var(--red-hot);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 18px;
  list-style: none;
}

.steps li {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 6px;
  color: var(--dim);
  font-size: 0.68rem;
  font-weight: 700;
  text-align: center;
}

.steps li::before {
  content: "";
  position: absolute;
  top: 12px;
  left: -50%;
  width: 100%;
  height: 1px;
  background: var(--border);
}

.steps li:first-child::before {
  display: none;
}

.steps span {
  position: relative;
  z-index: 1;
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.13);
  color: #fff;
}

.steps .active {
  color: var(--text);
}

.steps .active span {
  background: var(--red);
  box-shadow: var(--glow);
}

.booking-form {
  display: grid;
  gap: 14px;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 700;
}

.field-hint {
  display: block;
  margin-top: -2px;
  color: var(--dim);
  font-size: 0.8rem;
  font-weight: 500;
  line-height: 1.45;
}

input,
select,
textarea {
  width: 100%;
  min-height: 44px;
  color: var(--text);
  background: rgba(0, 0, 0, 0.38);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  padding: 0 12px;
  outline: 0;
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}

select {
  color-scheme: dark;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  padding-right: 36px;
  background-color: rgba(8, 8, 10, 0.95);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px 16px;
}

select option,
select optgroup {
  background: #0e0e12;
  color: #f4f4f5;
}

select option:checked,
select option:hover,
select option:focus {
  background: #2a1018;
  color: #fff;
}

select:invalid {
  color: rgba(255, 255, 255, 0.45);
}

textarea {
  min-height: auto;
  padding: 12px;
  resize: vertical;
}

input::placeholder,
textarea::placeholder {
  color: rgba(255, 255, 255, 0.32);
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--red-hot);
  box-shadow: 0 0 0 3px rgba(231, 25, 43, 0.16);
}

select:focus {
  background-color: rgba(8, 8, 10, 0.95);
}

input[type="date"],
input[type="time"] {
  position: relative;
  color-scheme: dark;
  cursor: pointer;
  padding-right: 40px;
  appearance: none;
  -webkit-appearance: none;
  background-color: rgba(0, 0, 0, 0.38);
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 18px 18px;
}

input[type="date"] {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='4' width='18' height='18' rx='2'/%3E%3Cpath d='M16 2v4M8 2v4M3 10h18'/%3E%3C/svg%3E");
}

input[type="time"] {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='9'/%3E%3Cpath d='M12 7v5l3 2'/%3E%3C/svg%3E");
}

input[type="date"]::-webkit-calendar-picker-indicator,
input[type="time"]::-webkit-calendar-picker-indicator {
  opacity: 0;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  cursor: pointer;
}

input[type="date"]:focus,
input[type="time"]:focus {
  background-color: rgba(0, 0, 0, 0.38);
}

.form-status {
  min-height: 18px;
  color: var(--muted);
  font-size: 0.8rem;
}

.form-status.is-ok {
  color: #57df8e;
}

.form-status.is-error {
  color: var(--red-hot);
}

.ig-carousel {
  display: flex;
  align-items: center;
  gap: 14px;
}

.ig-carousel__viewport {
  flex: 1;
  min-width: 0;
  overflow: hidden;
}

.ig-carousel__track {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-bottom: 4px;
}

.ig-carousel__track::-webkit-scrollbar {
  display: none;
}

.ig-embed {
  position: relative;
  flex: 0 0 calc((100% - 36px) / 3);
  width: calc((100% - 36px) / 3);
  overflow: hidden;
  min-height: 480px;
  scroll-snap-align: start;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #000;
  transition: border-color 0.22s var(--ease), box-shadow 0.22s var(--ease);
}

.ig-embed:hover {
  border-color: var(--border-red);
  box-shadow: var(--glow-soft);
}

.ig-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  background: #000;
}

.ig-carousel__btn {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid var(--border-red);
  border-radius: 50%;
  color: var(--red-hot);
  background: rgba(231, 25, 43, 0.08);
  transition: background 0.22s var(--ease), box-shadow 0.22s var(--ease), opacity 0.22s var(--ease);
}

.ig-carousel__btn svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ig-carousel__btn:hover:not(:disabled) {
  background: rgba(231, 25, 43, 0.2);
  box-shadow: var(--glow-soft);
}

.ig-carousel__btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.ig-carousel__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 18px;
}

.ig-carousel__dot {
  width: 8px;
  height: 8px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.22);
  transition: background 0.22s var(--ease), transform 0.22s var(--ease);
}

.ig-carousel__dot.is-active {
  background: var(--red-hot);
  box-shadow: var(--glow);
  transform: scale(1.15);
}

.footer {
  padding: 36px 24px 42px;
  border-top: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.92);
  text-align: center;
}

.footer__row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px 18px;
  color: var(--muted);
  font-size: 0.88rem;
}

.footer__admin {
  border: 0;
  background: none;
  color: var(--red-hot);
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer__admin:hover {
  color: #fff;
}

.footer__credit {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  color: var(--muted);
  font-size: 0.84rem;
  transition: color 0.2s var(--ease);
}

.footer__credit:hover {
  color: var(--text);
}

.footer__credit img {
  width: 22px;
  height: 22px;
  border-radius: 5px;
}

.admin-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 24px;
}

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

.admin-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(6px);
}

.admin-modal__panel {
  position: relative;
  z-index: 1;
  width: min(100%, 420px);
  padding: 32px;
}

.admin-modal__panel h2 {
  color: var(--text);
  font-size: 1.2rem;
  font-weight: 900;
  text-transform: uppercase;
}

.admin-modal__panel p {
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.9rem;
}

.admin-modal__panel form {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

.admin-modal__close {
  position: absolute;
  top: 14px;
  right: 16px;
  border: 0;
  background: none;
  color: var(--muted);
  font-size: 1.6rem;
  line-height: 1;
}

.admin-modal__close:hover {
  color: var(--text);
}

.confirm-modal__panel {
  width: min(100%, 440px);
  padding: 36px 32px 32px;
  text-align: center;
  border-color: rgba(87, 223, 142, 0.28);
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.55),
    0 0 48px rgba(87, 223, 142, 0.12);
}

.confirm-modal__icon {
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
  border-radius: 50%;
  color: #57df8e;
  background: rgba(87, 223, 142, 0.12);
  border: 1px solid rgba(87, 223, 142, 0.35);
  box-shadow: 0 0 28px rgba(87, 223, 142, 0.2);
}

.confirm-modal__icon svg {
  width: 36px;
  height: 36px;
}

.confirm-modal__title {
  color: var(--text);
  font-size: 1.35rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.confirm-modal__message {
  margin-top: 12px;
  color: #57df8e;
  font-size: 0.95rem;
  line-height: 1.6;
}

.confirm-modal__btn {
  margin-top: 28px;
  width: 100%;
  padding-block: 14px;
}

.loading-modal__panel {
  width: min(100%, 380px);
  padding: 36px 32px 32px;
  text-align: center;
  border-color: rgba(231, 25, 43, 0.28);
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.55),
    0 0 48px rgba(231, 25, 43, 0.1);
}

.loading-modal__spinner {
  width: 52px;
  height: 52px;
  margin: 0 auto 20px;
  border: 3px solid rgba(255, 255, 255, 0.12);
  border-top-color: var(--accent, #e7192b);
  border-radius: 50%;
  animation: booking-spin 0.9s linear infinite;
}

@keyframes booking-spin {
  to {
    transform: rotate(360deg);
  }
}

.loading-modal__title {
  margin: 0;
  color: var(--text);
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.loading-modal__message {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.55;
}

/* Admin page */
.admin-body {
  min-height: 100vh;
  background:
    radial-gradient(circle at 85% 12%, rgba(231, 25, 43, 0.2), transparent 30%),
    radial-gradient(circle at 20% 0, rgba(231, 25, 43, 0.13), transparent 35%),
    #060608;
}

.admin-app {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 280px 1fr;
}

.sidebar {
  position: sticky;
  top: 0;
  height: 100vh;
  padding: 28px 22px;
  border-right: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.58);
  backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
}

.sidebar__logo {
  width: 190px;
  margin-bottom: 34px;
}

.sidebar nav {
  display: grid;
  gap: 8px;
}

.sidebar a {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 44px;
  padding: 0 14px;
  border-radius: 9px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.sidebar a.active,
.sidebar a:hover {
  color: #fff;
  background: rgba(231, 25, 43, 0.18);
}

.sidebar a.active {
  box-shadow: inset 3px 0 0 var(--red);
}

.admin-main {
  padding: 28px;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
}

.topbar h1 {
  font-size: clamp(1.8rem, 3vw, 3.2rem);
  line-height: 1;
  letter-spacing: -0.06em;
  text-transform: uppercase;
}

.topbar p {
  margin-top: 8px;
  color: var(--muted);
}

.admin-user {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 9px 12px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
}

.avatar {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  font-size: 0.76rem;
  font-weight: 900;
}

.admin-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 16px;
}

.stat-card {
  padding: 22px;
}

.stat-card p {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.stat-card strong {
  display: block;
  margin-top: 10px;
  color: #fff;
  font-size: 2.1rem;
  line-height: 1;
}

.stat-card span {
  display: block;
  margin-top: 10px;
  color: var(--red-hot);
  font-size: 0.78rem;
  font-weight: 700;
}

.admin-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) 390px;
  gap: 16px;
}

.admin-stack {
  display: grid;
  gap: 16px;
}

.panel {
  padding: 24px;
}

.panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.panel h2 {
  color: var(--text);
  font-size: 1.02rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.panel-head span {
  color: var(--red-hot);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

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

table {
  width: 100%;
  border-collapse: collapse;
}

th,
td {
  padding: 15px 12px;
  text-align: left;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  white-space: nowrap;
}

th {
  color: var(--dim);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

td {
  color: var(--muted);
  font-size: 0.88rem;
}

td:first-child {
  color: var(--text);
  font-weight: 800;
}

.status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 88px;
  min-height: 26px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 900;
}

.status.confirmed {
  color: #70f2a5;
  background: rgba(87, 223, 142, 0.12);
}

.status.pending {
  color: #ffca6e;
  background: rgba(255, 202, 110, 0.12);
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 8px;
}

.calendar-grid span {
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 1px solid transparent;
  border-radius: 8px;
  color: var(--muted);
  font-size: 0.82rem;
}

.calendar-grid .dow {
  aspect-ratio: auto;
  color: var(--dim);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.calendar-grid .empty {
  opacity: 0;
}

.calendar-grid .event {
  color: #fff;
  background: linear-gradient(135deg, var(--red-hot), var(--red-dark));
  box-shadow: var(--glow);
}

.service-manager,
.clients-list {
  display: grid;
  gap: 12px;
}

.manager-row,
.client-row {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 16px;
  min-height: 68px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.035);
}

.manager-row h3,
.client-row h3 {
  color: #fff;
  font-size: 0.94rem;
}

.manager-row p,
.client-row p {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.8rem;
}

.tag {
  padding: 6px 10px;
  border: 1px solid var(--border-red);
  border-radius: 999px;
  color: var(--red-hot);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.tag-btn {
  cursor: pointer;
  background: rgba(231, 25, 43, 0.08);
  transition: opacity 0.2s;
}

.tag-btn.is-off {
  color: var(--muted);
  border-color: rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.04);
}

.panel-action {
  border: 0;
  background: none;
  color: var(--red-hot);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  cursor: pointer;
}

.panel-action:hover {
  color: #fff;
}

.panel-head__calendar {
  display: flex;
  align-items: center;
  gap: 10px;
}

.cal-nav-btn {
  width: 32px;
  height: 32px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  font-size: 1.2rem;
  line-height: 1;
  cursor: pointer;
}

.cal-nav-btn:hover {
  border-color: var(--border-red);
  color: var(--red-hot);
}

.status-select {
  min-width: 110px;
  padding: 6px 8px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.35);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
}

.link-btn {
  border: 0;
  background: none;
  padding: 0;
  color: #fff;
  font-weight: 800;
  text-align: left;
  cursor: pointer;
}

.link-btn:hover {
  color: var(--red-hot);
}

.icon-btn {
  width: 28px;
  height: 28px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted);
  cursor: pointer;
}

.icon-btn:hover {
  color: #ff6b6b;
  border-color: rgba(255, 107, 107, 0.4);
}

.empty-row {
  text-align: center;
  color: var(--muted);
  padding: 24px !important;
}

.status.cancelled {
  color: #ff8a8a;
  background: rgba(255, 138, 138, 0.12);
}

.manager-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.price-input {
  width: 88px;
  padding: 6px 8px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.35);
  color: #fff;
  font-size: 0.82rem;
}

.manager-price {
  display: block;
  margin-top: 4px;
  color: var(--dim);
  font-size: 0.75rem;
  font-weight: 700;
}

.client-meta {
  margin-top: 2px !important;
  font-size: 0.72rem !important;
  color: var(--dim) !important;
}

.sidebar-reset {
  margin-top: auto;
  width: 100%;
  font-size: 0.78rem;
}

.admin-modal__body {
  margin-top: 16px;
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 0.88rem;
}

.admin-modal__body strong {
  color: var(--text);
}

.admin-modal__panel textarea,
.admin-modal__panel select {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.35);
  color: #fff;
  font-family: inherit;
}

/* Admin tabbed layout */
.admin-body--tabs {
  color: var(--text);
}

.admin-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 28px;
  border-bottom: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(16px);
  position: sticky;
  top: 0;
  z-index: 50;
}

.admin-header__brand img {
  width: 160px;
}

.admin-header__actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn--sm {
  min-height: 38px;
  padding: 0 16px;
  font-size: 0.78rem;
}

.admin-shell {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
  padding: 32px 0 60px;
}

.admin-page-head {
  text-align: center;
  margin-bottom: 28px;
}

.admin-page-head h1 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

.admin-page-head p {
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.92rem;
}

.admin-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 28px;
}

.admin-tab {
  min-height: 40px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.admin-tab:hover {
  color: #fff;
  border-color: rgba(231, 25, 43, 0.4);
}

.admin-tab.is-active {
  background: linear-gradient(135deg, #1a1a22, #0d0d12);
  border-color: rgba(231, 25, 43, 0.55);
  color: #fff;
  box-shadow: inset 0 0 0 1px rgba(231, 25, 43, 0.25), var(--glow);
}

.admin-panel {
  display: grid;
  gap: 20px;
}

.admin-panel[hidden] {
  display: none !important;
}

.admin-section-head h2 {
  font-size: 1.3rem;
  font-weight: 900;
  text-transform: uppercase;
}

.admin-section-head p {
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.88rem;
  max-width: 720px;
}

.admin-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.admin-toolbar__field {
  display: grid;
  gap: 4px;
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
}

.admin-toolbar__field select,
.admin-search {
  min-height: 38px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.35);
  color: #fff;
  font-family: inherit;
  font-size: 0.84rem;
}

.admin-search {
  flex: 1;
  min-width: 200px;
  border-radius: 999px;
}

.admin-count {
  margin-left: auto;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
}

.admin-stats--wide {
  grid-template-columns: repeat(4, 1fr);
}

.admin-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.admin-list {
  display: grid;
  gap: 10px;
  list-style: none;
}

.admin-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.03);
  font-size: 0.86rem;
}

.admin-list li strong {
  color: var(--red-hot);
}

.admin-list__empty {
  justify-content: center !important;
  color: var(--muted);
}

.admin-bars {
  display: grid;
  gap: 12px;
}

.admin-bar-row {
  display: grid;
  grid-template-columns: 90px 1fr auto;
  align-items: center;
  gap: 12px;
  font-size: 0.82rem;
}

.admin-bar-row span {
  color: var(--muted);
}

.admin-bar-row em {
  color: var(--text);
  font-style: normal;
  font-weight: 700;
  font-size: 0.75rem;
}

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

.admin-bar-fill {
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--red-dark), var(--red-hot));
}

.admin-hint {
  color: var(--muted);
  font-size: 0.84rem;
  margin-bottom: 14px;
}

.admin-form-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.admin-form-grid label {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
}

.admin-form-grid input[type="time"],
.admin-form-grid input[type="text"] {
  width: 100%;
  min-height: 42px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background-color: rgba(0, 0, 0, 0.35);
  color: #fff;
  font-family: inherit;
}

.admin-form-full {
  grid-column: 1 / -1;
}

.admin-fieldset {
  grid-column: 1 / -1;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 14px;
}

.admin-fieldset legend {
  padding: 0 6px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.admin-check-row {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 10px;
  margin-top: 10px;
}

.admin-day-toggle {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  user-select: none;
}

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

.admin-day-toggle__box {
  width: 100%;
  max-width: 44px;
  aspect-ratio: 1;
  border: 2px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.35);
  transition: background 0.2s, border-color 0.2s, box-shadow 0.2s;
}

.admin-day-toggle input:checked + .admin-day-toggle__box {
  border-color: var(--red-hot);
  background: linear-gradient(135deg, rgba(231, 25, 43, 0.35), rgba(231, 25, 43, 0.12));
  box-shadow: 0 0 0 1px rgba(231, 25, 43, 0.35);
}

.admin-day-toggle input:focus-visible + .admin-day-toggle__box {
  outline: 2px solid var(--red-hot);
  outline-offset: 2px;
}

.admin-day-toggle__label {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: capitalize;
}

.admin-check {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--text);
  font-size: 0.82rem;
  font-weight: 600;
}

.admin-form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.block-cal-head {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 14px;
}

.calendar-grid--block .block-day {
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  font-size: 0.82rem;
  cursor: pointer;
}

.calendar-grid--block .block-day.is-blocked {
  background: linear-gradient(135deg, var(--red-hot), var(--red-dark));
  border-color: transparent;
  color: #fff;
  box-shadow: var(--glow);
}

.admin-full-cal {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  overflow: hidden;
}

.full-cal-head,
.full-cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
}

.full-cal-head span {
  padding: 10px;
  text-align: center;
  color: var(--dim);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.full-cal-cell {
  min-height: 96px;
  padding: 8px;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.02);
}

.full-cal-cell.is-empty {
  background: rgba(0, 0, 0, 0.2);
}

.full-cal-cell.is-today {
  background: rgba(231, 25, 43, 0.08);
}

.full-cal-date {
  display: block;
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--muted);
  margin-bottom: 6px;
}

.full-cal-event {
  display: block;
  margin-top: 4px;
  padding: 3px 6px;
  border-radius: 4px;
  background: rgba(231, 25, 43, 0.18);
  color: #ffb3bc;
  font-size: 0.68rem;
  font-weight: 700;
  line-height: 1.3;
}

.full-cal-event.is-blocked {
  background: rgba(255, 255, 255, 0.08);
  color: var(--muted);
}

.admin-filter-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.filter-pill {
  min-height: 34px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 800;
  cursor: pointer;
}

.filter-pill.is-active {
  border-color: var(--red-hot);
  color: #fff;
  background: rgba(231, 25, 43, 0.15);
}

.admin-svc-toolbar {
  display: grid;
  gap: 14px;
  padding: 16px 18px;
}

.admin-svc-toolbar__row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.admin-svc-toolbar__row .admin-search {
  flex: 1;
  min-width: min(100%, 280px);
}

.admin-svc-toolbar__row .admin-count {
  margin-left: auto;
}

.admin-svc-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.admin-svc-card {
  padding: 16px;
  min-height: 210px;
}

.admin-svc-card__layout {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 14px;
  height: 100%;
}

.admin-svc-card__badge {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  border: 1px solid rgba(231, 25, 43, 0.35);
  background: rgba(231, 25, 43, 0.12);
  color: var(--red-hot);
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  align-self: start;
}

.admin-svc-card__badge.is-hidden {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.05);
  color: var(--muted);
}

.admin-svc-card__content {
  display: flex;
  flex-direction: column;
  min-width: 0;
  height: 100%;
}

.admin-svc-card__type {
  color: var(--red-hot);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.admin-svc-card__content h3 {
  margin-top: 6px;
  font-size: 0.96rem;
  font-weight: 800;
  line-height: 1.25;
}

.admin-svc-card__content p {
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.45;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.admin-svc-card__meta {
  display: block;
  margin-top: 10px;
  color: var(--dim);
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.admin-svc-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
  padding-top: 14px;
}

.admin-subtabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 20px;
}

.admin-subtab {
  padding: 12px 18px;
  border: 0;
  border-bottom: 2px solid transparent;
  background: none;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
}

.admin-subtab.is-active {
  color: var(--red-hot);
  border-bottom-color: var(--red-hot);
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.price-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 18px;
}

.price-card__info h3 {
  margin-top: 4px;
  font-size: 0.92rem;
  font-weight: 800;
}

.price-card__controls {
  display: flex;
  align-items: center;
  gap: 10px;
}

.price-card__value {
  min-width: 64px;
  text-align: center;
  font-size: 1.1rem;
  color: #fff;
}

.gallery-admin-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.gallery-admin-card {
  overflow: hidden;
}

.gallery-admin-card__thumb {
  display: grid;
  place-items: center;
  min-height: 120px;
  background: linear-gradient(135deg, rgba(231, 25, 43, 0.15), rgba(0, 0, 0, 0.4));
  color: var(--red-hot);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.gallery-admin-card__body {
  padding: 14px;
}

.gallery-admin-card__body h3 {
  font-size: 0.88rem;
  font-weight: 800;
  margin-bottom: 10px;
}

@media (max-width: 1180px) {
  .site-header {
    grid-template-columns: 220px 1fr 160px;
  }

  .brand img {
    width: 200px;
  }

  .hero__content {
    grid-template-columns: 1fr;
    align-items: end;
    gap: 34px;
  }

  .feature-list {
    max-width: 900px;
    grid-template-columns: repeat(4, 1fr);
    padding-left: 0;
    border-left: 0;
  }

  .feature-list article {
    grid-template-columns: 1fr;
  }

  .ig-embed {
    flex: 0 0 calc((100% - 18px) / 2);
    width: calc((100% - 18px) / 2);
    min-height: 460px;
  }

  .bottom-grid,
  .admin-layout {
    grid-template-columns: 1fr;
  }

  .admin-stats--wide {
    grid-template-columns: repeat(2, 1fr);
  }

  .admin-grid-2,
  .price-grid,
  .gallery-admin-grid {
    grid-template-columns: 1fr;
  }

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

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

@media (max-width: 920px) {
  .shell,
  .site-header {
    width: min(calc(100% - 48px), var(--max));
  }

  .site-header {
    grid-template-columns: 1fr auto;
    min-height: 76px;
  }

  .brand img {
    width: 172px;
  }

  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  body.nav-open .hero {
    overflow: visible;
  }

  body.nav-open .menu-toggle {
    z-index: 112;
  }

  .nav {
    position: fixed;
    inset: 76px 17px auto 17px;
    z-index: 111;
    display: none;
    padding: 20px;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: rgba(8, 8, 10, 0.98);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.55);
  }

  .nav.is-open {
    display: grid;
    justify-content: stretch;
    gap: 4px;
    pointer-events: auto;
  }

  .nav a {
    position: relative;
    z-index: 1;
    padding: 12px 0;
    font-size: 0.98rem;
  }

  .subpage-header .nav {
    top: calc(76px + 8px);
    left: 17px;
    right: 17px;
    bottom: auto;
  }

  .subpage-header .nav.is-open {
    display: grid;
  }

  .hero__content {
    min-height: calc(100vh - 76px);
    padding: 28px 0 100px;
    min-width: 0;
    gap: 28px;
  }

  .hero__copy {
    min-width: 0;
    max-width: 100%;
    padding-inline: 2px;
  }

  .hero__subtitle {
    max-width: 100%;
    line-height: 1.55;
  }

  .hero__actions {
    gap: 12px;
  }

  .hero__actions .btn {
    width: 100%;
  }

  .eyebrow {
    letter-spacing: 0.18em;
  }

  .hero {
    overflow-x: clip;
  }

  body.nav-open .hero {
    overflow: visible;
  }

  .feature-carousel {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    min-width: 0;
    max-width: 100%;
  }

  .feature-carousel__viewport {
    flex: 1;
    min-width: 0;
    width: 100%;
    overflow: hidden;
  }

  .feature-carousel__dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    width: 100%;
    margin-top: 0;
  }

  .feature-carousel__btn {
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border: 1px solid var(--border-red);
    border-radius: 50%;
    color: var(--red-hot);
    background: rgba(231, 25, 43, 0.08);
    cursor: pointer;
    transition: background 0.22s var(--ease), box-shadow 0.22s var(--ease), opacity 0.22s var(--ease);
  }

  .feature-carousel__btn:hover:not(:disabled) {
    background: rgba(231, 25, 43, 0.2);
    box-shadow: var(--glow-soft);
  }

  .feature-carousel__btn:disabled {
    opacity: 0.35;
    cursor: not-allowed;
  }

  .feature-carousel__dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 14px;
  }

  .feature-carousel__dot {
    width: 8px;
    height: 8px;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.22);
    cursor: pointer;
    transition: background 0.22s var(--ease), transform 0.22s var(--ease);
  }

  .feature-carousel__dot.is-active {
    background: var(--red-hot);
    box-shadow: var(--glow);
    transform: scale(1.15);
  }

  .feature-list {
    display: flex;
    width: 100%;
    max-width: none;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-bottom: 4px;
    padding-left: 0;
    border-left: 0;
    gap: 14px;
  }

  .feature-list::-webkit-scrollbar {
    display: none;
  }

  .feature-list article {
    flex: 0 0 auto;
    scroll-snap-align: center;
    scroll-snap-stop: always;
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 18px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background:
      linear-gradient(135deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.025)),
      var(--panel);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(18px);
    box-sizing: border-box;
  }

  .feature-list .feature-icon {
    width: 40px;
    height: 40px;
  }

  .hero h1 {
    font-size: clamp(2.2rem, 9vw, 4.6rem);
  }

  .service-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-strip article:nth-child(2) {
    border-right: 0;
  }

  .service-strip article:nth-child(-n+2) {
    border-bottom: 1px solid var(--border);
  }

  .admin-app {
    grid-template-columns: 1fr;
  }

  .sidebar {
    position: static;
    height: auto;
  }

  .sidebar nav {
    grid-template-columns: repeat(3, 1fr);
  }

  .admin-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .subpage-header__inner {
    grid-template-columns: minmax(140px, 1fr) auto;
    min-height: 76px;
    padding: 10px 0;
  }

  .subpage-header__logo {
    width: min(172px, 100%);
  }

  .subpage-header .header-cta {
    display: none;
  }

  .subpage-header .menu-toggle {
    display: block;
  }

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

  .services-grid.services-grid--packages {
    gap: 20px;
  }

  .service-package-card__media {
    min-height: 152px;
    aspect-ratio: 16 / 10;
  }

  .service-package-card__body {
    padding: 20px;
  }

  .services-policies {
    padding: 22px 20px;
  }

  .services-tabs-carousel {
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .services-tabs-carousel__viewport {
    flex: 1;
    min-width: 0;
    overflow: hidden;
  }

  .services-tabs-carousel__btn {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    border: 1px solid var(--border-red);
    border-radius: 50%;
    color: var(--red-hot);
    background: rgba(231, 25, 43, 0.08);
    cursor: pointer;
    transition: background 0.22s var(--ease), box-shadow 0.22s var(--ease), opacity 0.22s var(--ease);
  }

  .services-tabs-carousel__btn:hover:not(:disabled) {
    background: rgba(231, 25, 43, 0.2);
    box-shadow: var(--glow-soft);
  }

  .services-tabs-carousel__btn:disabled {
    opacity: 0.35;
    cursor: not-allowed;
  }

  .services-tabs-carousel .services-tabs {
    display: flex;
    flex-wrap: nowrap;
    gap: 10px;
    overflow-x: auto;
    scroll-snap-type: x proximity;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 2px 0 6px;
  }

  .services-tabs-carousel .services-tabs::-webkit-scrollbar {
    display: none;
  }

  .services-tabs-carousel .services-tabs__btn {
    flex: 0 0 auto;
    scroll-snap-align: start;
    white-space: nowrap;
    padding: 0 18px;
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }

  .booking-layout {
    grid-template-columns: 1fr;
  }

  .booking-page--modern .booking-sidebar {
    order: -1;
  }

  .booking-estimate {
    position: static;
    order: -1;
  }

  .admin-header {
    flex-direction: column;
    align-items: stretch;
    padding: 14px 18px;
  }

  .admin-header__actions {
    flex-wrap: wrap;
  }

  .admin-tabs {
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 6px;
  }

  .admin-tab {
    flex-shrink: 0;
  }
}

@media (max-width: 620px) {
  .shell,
  .site-header {
    width: min(calc(100% - 44px), var(--max));
  }

  .hero h1 {
    font-size: clamp(2rem, 8.5vw, 3.4rem);
  }

  .hero__content {
    padding-top: 24px;
  }

  .hero__shade {
    background:
      radial-gradient(circle at 60% 24%, rgba(231, 25, 43, 0.22), transparent 35%),
      linear-gradient(90deg, rgba(0, 0, 0, 0.92), rgba(0, 0, 0, 0.72)),
      linear-gradient(180deg, rgba(0, 0, 0, 0.38), #050506 100%);
  }

  .hero__actions,
  .form-row,
  .service-strip,
  .admin-stats,
  .admin-stats--wide,
  .admin-svc-grid {
    grid-template-columns: 1fr;
  }

  .feature-carousel__btn {
    width: 38px;
    height: 38px;
  }

  .ig-embed {
    flex: 0 0 min(82vw, 300px);
    width: min(82vw, 300px);
    min-height: 460px;
  }

  .ig-carousel__btn {
    width: 40px;
    height: 40px;
  }

  .hero__actions {
    display: grid;
  }

  .service-strip article {
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }

  .service-strip article:last-child {
    border-bottom: 0;
  }

  .section--services {
    margin-top: -72px;
  }

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

  .service-card {
    grid-template-columns: 72px 1fr;
  }

  .service-card__price {
    grid-column: 2;
    justify-self: start;
    margin-top: 4px;
  }

  .admin-main {
    padding: 18px;
  }

  .topbar {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
