/* ==========================================================================
   The Standard Shine — Global Styles
   Theme: black / gold-bronze / white, matching brand logo
   ========================================================================== */

:root {
  --black: #0a0a0a;
  --black-2: #141414;
  --black-3: #1c1c1c;
  --gold: #c9a56a;
  --gold-light: #e3c896;
  --gold-dark: #9c7d47;
  --white: #f5f5f3;
  --gray: #a3a3a0;
  --radius: 6px;
  --max-width: 1160px;
  --font: 'DM Sans', 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --font-display: 'Fraunces', Georgia, serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

.wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

section { padding: 72px 0; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.2px;
  line-height: 1.2;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.4rem); margin-bottom: 16px; }
h3 { font-size: 1.25rem; margin-bottom: 8px; }

p { color: var(--gray); }

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

.eyebrow {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 12px;
  display: block;
}

.divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
  margin: 18px 0 28px;
  border: none;
}

.center { text-align: center; }
.center .divider { margin-left: auto; margin-right: auto; }

/* Buttons */
.btn {
  display: inline-block;
  position: relative;
  overflow: hidden;
  padding: 14px 34px;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-size: 0.85rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease, background 0.18s ease, color 0.18s ease;
  -webkit-tap-highlight-color: transparent;
}

/* Shine sweep on hover — a soft diagonal highlight passes across the button */
.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -60%;
  width: 40%;
  height: 100%;
  background: linear-gradient(115deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  transform: skewX(-20deg);
  transition: left 0.55s ease;
  pointer-events: none;
}
.btn:hover::before { left: 130%; }

.btn:active { transform: scale(0.96); }

.btn-gold {
  background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
  color: #14100a;
  box-shadow: 0 2px 10px rgba(201, 165, 106, 0.15);
}
.btn-gold:hover {
  filter: brightness(1.1);
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(201, 165, 106, 0.35);
}
.btn-gold:active { transform: translateY(0) scale(0.96); box-shadow: 0 4px 12px rgba(201, 165, 106, 0.25); }

.btn-outline {
  border-color: var(--gold);
  color: var(--gold);
  background: transparent;
}
.btn-outline:hover {
  background: var(--gold);
  color: #14100a;
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(201, 165, 106, 0.25);
}
.btn-outline:active { transform: translateY(0) scale(0.96); }

/* Header / Nav */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid #262626;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.nav-logo { display: flex; align-items: center; gap: 10px; }
.nav-logo img { height: 42px; width: auto; }

.nav-links {
  display: flex;
  gap: 30px;
  list-style: none;
  align-items: center;
}

.nav-links a {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  color: var(--white);
  transition: color 0.2s;
}

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

.nav-cta {
  padding: 10px 22px !important;
  background: var(--gold);
  color: #14100a !important;
  border-radius: 999px;
  transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
}
.nav-cta:hover { filter: brightness(1.1); transform: translateY(-1px); box-shadow: 0 6px 16px rgba(201, 165, 106, 0.3); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.8rem;
  cursor: pointer;
}

@media (max-width: 860px) {
  .nav-links {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--black-2);
    flex-direction: column;
    padding: 24px;
    gap: 20px;
    border-bottom: 1px solid #262626;
    display: none;
  }
  .nav-links.open { display: flex; }
  .nav-toggle { display: block; }
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  min-height: 78vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--black);
  border-bottom: 1px solid #262626;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  opacity: 1;
  z-index: 0;
}

/* A radial vignette centered on the text column reads much cleaner than a
   flat top-to-bottom wash — it darkens just enough behind the words for
   contrast while leaving the edges of the footage untouched. */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 55% at 50% 50%, rgba(6, 6, 6, 0.72), rgba(6, 6, 6, 0) 72%);
  z-index: 1;
}

.hero .wrap {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-title {
  font-size: clamp(2.6rem, 6vw, 4.4rem);
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--white);
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.85), 0 1px 4px rgba(0, 0, 0, 0.9);
  margin: 0;
}

.hero p.sub {
  max-width: 600px;
  margin: 20px auto 34px;
  font-size: 1.1rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.9);
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 640px) {
  .hero { min-height: 62vh; }
}

/* Glassy, translucent button treatment just for the hero — lets the video
   read through the buttons instead of sitting on flat, opaque color. */
.hero-actions .btn-gold {
  background: linear-gradient(135deg, rgba(201, 165, 106, 0.55), rgba(156, 125, 71, 0.55));
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(201, 165, 106, 0.6);
  color: #fff;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}
.hero-actions .btn-gold:hover {
  background: linear-gradient(135deg, rgba(201, 165, 106, 0.85), rgba(156, 125, 71, 0.85));
}
.hero-actions .btn-outline {
  background: rgba(10, 10, 10, 0.25);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-color: rgba(201, 165, 106, 0.8);
}
.hero-actions .btn-outline:hover {
  background: rgba(201, 165, 106, 0.85);
  color: #14100a;
}

/* Cards */
.grid {
  display: grid;
  gap: 26px;
}

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

@media (max-width: 860px) {
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
}

.card {
  background: var(--black-2);
  border: 1px solid #262626;
  border-radius: var(--radius);
  padding: 30px;
  transition: border-color 0.2s, transform 0.2s;
}

.card:hover { border-color: var(--gold-dark); transform: translateY(-3px); }

.card .icon { font-size: 1.8rem; margin-bottom: 14px; }

/* Pricing cards */
.price-card {
  background: var(--black-2);
  border: 1px solid #262626;
  border-radius: var(--radius);
  padding: 34px 28px;
  text-align: center;
  position: relative;
}

.price-card.featured {
  border-color: var(--gold);
  box-shadow: 0 0 0 1px var(--gold-dark);
}

.price-card .badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: #14100a;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
}

.price-card .price {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--gold);
  margin: 14px 0 6px;
}

.price-card .price span { font-size: 1rem; color: var(--gray); font-weight: 400; }

.price-card ul {
  list-style: none;
  text-align: left;
  margin: 22px 0;
}

.price-card ul li {
  padding: 8px 0;
  border-bottom: 1px solid #262626;
  font-size: 0.92rem;
  color: var(--gray);
}

.price-card ul li:before { content: "✓ "; color: var(--gold); font-weight: 700; }

/* Section backgrounds */
.section-alt { background: var(--black-2); border-top: 1px solid #262626; border-bottom: 1px solid #262626; }

/* Estimator */
.estimator {
  background: var(--black-2);
  border: 1px solid #262626;
  border-radius: var(--radius);
  padding: 36px;
  max-width: 720px;
  margin: 0 auto;
}

.estimator label {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gold);
  margin: 20px 0 8px;
  font-weight: 700;
}

/* Dark theme applied globally to all text-style form fields, not just
   inside .estimator — the booking wizard's vehicle/customer inputs live
   outside that wrapper and need the same styling. */
select,
input[type="text"],
input[type="tel"],
input[type="email"],
input[type="number"],
input[type="date"],
textarea {
  width: 100%;
  padding: 12px 14px;
  background: var(--black);
  border: 1px solid #333;
  border-radius: var(--radius);
  color: var(--white);
  font-size: 1rem;
  font-family: var(--font);
  color-scheme: dark;
}

select:focus,
input:focus,
textarea:focus {
  outline: none;
  border-color: var(--gold);
}

input::placeholder, textarea::placeholder { color: #6b6b68; }

.estimator-result {
  margin-top: 30px;
  padding: 24px;
  background: var(--black);
  border: 1px dashed var(--gold-dark);
  border-radius: var(--radius);
  text-align: center;
}

.estimator-result .total {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--gold);
  margin: 6px 0;
}

.estimator-breakdown {
  text-align: left;
  font-size: 0.9rem;
  margin-top: 14px;
  color: var(--gray);
}

.estimator-breakdown div {
  display: flex;
  justify-content: space-between;
  padding: 4px 0;
}

/* Footer */
footer {
  background: var(--black-2);
  border-top: 1px solid #262626;
  padding: 50px 0 26px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 34px;
  margin-bottom: 30px;
}

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

.footer-grid h4 {
  color: var(--gold);
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 1px;
  margin-bottom: 14px;
}

.footer-grid ul { list-style: none; }
.footer-grid ul li { margin-bottom: 8px; color: var(--gray); font-size: 0.92rem; }
.footer-grid ul li a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid #262626;
  padding-top: 20px;
  text-align: center;
  font-size: 0.82rem;
  color: #6b6b68;
}

.social-row { display: flex; gap: 14px; margin-top: 10px; }
.social-row a {
  border: 1px solid var(--gold-dark);
  border-radius: 50%;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: var(--gold);
}
.social-row a:hover { background: var(--gold); color: #14100a; }

/* Utility */
.tag {
  display: inline-block;
  background: var(--black-3);
  border: 1px solid var(--gold-dark);
  color: var(--gold);
  padding: 5px 14px;
  border-radius: 20px;
  font-size: 0.78rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-weight: 600;
}

.page-header {
  padding: 60px 0 40px;
  text-align: center;
  border-bottom: 1px solid #262626;
}

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

@media (max-width: 700px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

.gallery-item {
  aspect-ratio: 4/3;
  background: var(--black-2);
  border: 1px solid #262626;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #4a4a47;
  font-size: 0.85rem;
  text-align: center;
  padding: 10px;
}

.contact-info-list { list-style: none; margin-top: 10px; }
.contact-info-list li {
  display: flex;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid #262626;
  color: var(--white);
}
.contact-info-list li span.label { color: var(--gold); min-width: 90px; font-weight: 700; text-transform: uppercase; font-size: 0.78rem; }

.booking-embed-wrap {
  background: var(--black-2);
  border: 1px solid #262626;
  border-radius: var(--radius);
  padding: 4px;
  min-height: 700px;
}

.notice {
  background: var(--black-3);
  border-left: 3px solid var(--gold);
  padding: 16px 20px;
  border-radius: 4px;
  font-size: 0.9rem;
  color: var(--gray);
  margin-bottom: 24px;
}

/* ---- Booking wizard: circle + connecting line progress ---- */
.step-indicator {
  display: flex;
  align-items: flex-start;
  margin-bottom: 44px;
}

.step-indicator .step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  flex: 1;
  min-width: 0;
}

.step-indicator .step-circle {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  flex-shrink: 0;
  border: 1.5px solid #333;
  background: var(--black-2);
  color: var(--gray);
  transition: all 0.3s ease;
}

.step-indicator .step-circle.active {
  background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
  border-color: var(--gold);
  color: #14100a;
  box-shadow: 0 0 0 4px rgba(201, 165, 106, 0.15);
}

.step-indicator .step-circle.done {
  background: var(--black-3);
  border-color: var(--gold-dark);
  color: var(--gold);
}

.step-indicator .step-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #5a5a57;
  text-align: center;
  font-weight: 600;
  white-space: nowrap;
}

.step-indicator .step-label.active { color: var(--gold); }

.step-indicator .step-line-row {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 0 4px;
}

.step-indicator .step-line {
  flex: 1;
  height: 1.5px;
  background: #262626;
  margin-top: 17px;
  transition: background 0.3s ease;
}

.step-indicator .step-line.done { background: linear-gradient(90deg, var(--gold-dark), var(--gold)); }

@media (max-width: 640px) {
  .step-indicator .step-label { display: none; }
}

.wizard-step { display: none; }
.wizard-step.active { display: block; }

.step-nav {
  display: flex;
  justify-content: space-between;
  margin-top: 32px;
  gap: 14px;
}

.step-nav .spacer { flex: 1; }

.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 14px;
}

@media (max-width: 700px) {
  .form-row-2 { grid-template-columns: 1fr; }
}

.slot-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
  gap: 10px;
  margin-top: 16px;
}

.slot-btn {
  padding: 12px 8px;
  background: var(--black);
  border: 1px solid #333;
  border-radius: var(--radius);
  color: var(--white);
  font-size: 0.88rem;
  cursor: pointer;
  text-align: center;
  transition: all 0.15s;
}

.slot-btn:hover { border-color: var(--gold); }
.slot-btn.selected { background: var(--gold); color: #14100a; border-color: var(--gold); font-weight: 700; }

.slot-empty, .slot-loading {
  color: var(--gray);
  font-size: 0.9rem;
  padding: 20px 0;
  text-align: center;
}

.sq-card-container {
  background: var(--black);
  border: 1px solid #333;
  border-radius: var(--radius);
  padding: 14px;
  margin-top: 6px;
  min-height: 90px;
}

/* ---- Apple Pay button (booking wizard) ---- */
.wallet-pay {
  margin-top: 26px;
}

.apple-pay-button {
  --apple-pay-button-width: 100%;
  --apple-pay-button-height: 48px;
  --apple-pay-button-border-radius: 6px;
  --apple-pay-button-padding: 0;
  --apple-pay-button-box-sizing: border-box;
  width: 100%;
  min-height: 48px;
}

.pay-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 18px 0;
  color: var(--gray);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.pay-divider::before,
.pay-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: #333;
}

.booking-summary-box {
  background: var(--black);
  border: 1px dashed var(--gold-dark);
  border-radius: var(--radius);
  padding: 22px;
  margin-top: 26px;
}

.booking-summary-box .line {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  border-bottom: 1px solid #262626;
  font-size: 0.92rem;
  color: var(--gray);
}

.booking-summary-box .line strong { color: var(--white); }
.booking-summary-box .line.total strong { color: var(--gold); font-size: 1.2rem; }

.form-error {
  color: #e07a6b;
  font-size: 0.85rem;
  margin-top: 8px;
  display: none;
}

.form-error.show { display: block; }

.confirmation-icon {
  font-size: 3rem;
  margin-bottom: 14px;
}

/* ---- Option cards (package / vehicle size / condition selection) ---- */
.option-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 14px;
}

.option-card {
  position: relative;
  background: var(--black-2);
  border: 1.5px solid #292929;
  border-radius: 12px;
  padding: 20px 16px;
  text-align: center;
  cursor: pointer;
  transition: transform 0.15s ease, border-color 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
}

.option-card:hover { border-color: var(--gold-dark); transform: translateY(-3px); }

.option-card.selected {
  border-color: var(--gold);
  background: linear-gradient(160deg, rgba(201, 165, 106, 0.14), var(--black-2));
  box-shadow: 0 0 0 1px var(--gold), 0 10px 24px rgba(201, 165, 106, 0.18);
}

.option-card .option-check {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1.5px solid #333;
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  color: transparent;
  transition: all 0.2s ease;
}

.option-card.selected .option-check {
  background: var(--gold);
  border-color: var(--gold);
  color: #14100a;
}

.option-card .option-icon { font-size: 1.7rem; margin-bottom: 8px; }
.option-card .option-name { font-family: var(--font-display); font-weight: 700; font-size: 1rem; margin-bottom: 4px; }
.option-card .option-sub { font-size: 0.72rem; color: var(--gray); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 6px; }
.option-card .option-price { font-family: var(--font-display); font-size: 1.4rem; font-weight: 700; color: var(--gold); }
.option-card .option-price small { font-size: 0.7rem; color: var(--gray); font-weight: 400; font-family: var(--font); }
.option-card .option-desc { font-size: 0.78rem; color: var(--gray); margin-top: 6px; line-height: 1.4; }

.option-card.featured::before {
  content: 'Most Popular';
  position: absolute;
  top: -11px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: #14100a;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 3px 12px;
  border-radius: 20px;
  white-space: nowrap;
}

/* ---- Add-on toggle cards ---- */
.addon-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
}

.addon-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--black-2);
  border: 1.5px solid #292929;
  border-radius: 12px;
  padding: 16px;
  cursor: pointer;
  transition: border-color 0.15s ease, background 0.15s ease;
}

.addon-card:hover { border-color: var(--gold-dark); }

.addon-card.selected {
  border-color: var(--gold);
  background: linear-gradient(160deg, rgba(201, 165, 106, 0.1), var(--black-2));
}

.addon-card .addon-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--black-3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.addon-card .addon-info { flex: 1; }
.addon-card .addon-name { font-weight: 700; font-size: 0.92rem; color: var(--white); }
.addon-card .addon-desc { font-size: 0.75rem; color: var(--gray); margin-top: 2px; }
.addon-card .addon-price { font-family: var(--font-display); font-weight: 700; color: var(--gold); font-size: 0.95rem; flex-shrink: 0; }

.addon-card .addon-checkbox {
  width: 20px;
  height: 20px;
  border-radius: 5px;
  border: 1.5px solid #333;
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  color: transparent;
  flex-shrink: 0;
  transition: all 0.2s ease;
}

.addon-card.selected .addon-checkbox {
  background: var(--gold);
  border-color: var(--gold);
  color: #14100a;
}

/* ---- Price recap (live update step) ---- */
.price-recap {
  background: var(--black-2);
  border: 1px solid #292929;
  border-radius: 14px;
  padding: 32px;
  max-width: 480px;
  margin: 0 auto;
}

.price-recap .recap-line {
  display: flex;
  justify-content: space-between;
  padding: 9px 0;
  border-bottom: 1px solid #262626;
  font-size: 0.92rem;
  color: var(--gray);
}

.price-recap .recap-line strong { color: var(--white); font-weight: 600; }

.price-recap .recap-total {
  margin-top: 16px;
  padding-top: 16px;
  text-align: center;
}

.price-recap .recap-total .label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gray);
}

.price-recap .recap-total .amount {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1.2;
  animation: priceBump 0.3s ease;
}

@keyframes priceBump {
  0% { transform: scale(0.92); opacity: 0.5; }
  100% { transform: scale(1); opacity: 1; }
}

/* ---- Before / after drag slider (gallery) ---- */
.ba-card {
  background: var(--black-2);
  border: 1px solid #262626;
  border-radius: var(--radius);
  overflow: hidden;
}

.ba-slider-wrap {
  position: relative;
  height: 280px;
  cursor: ew-resize;
  user-select: none;
  background: var(--black-3);
}

.ba-before, .ba-after {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
}

.ba-before { background: #1a1a1a; color: #6b6b68; }
.ba-after { background: linear-gradient(160deg, rgba(201, 165, 106, 0.16), var(--black-3)); clip-path: inset(0 50% 0 0); color: var(--gold); }

.ba-slider-wrap .ba-icon { font-size: 2.4rem; opacity: 0.5; }

.ba-lbl {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 3px 12px;
  border-radius: 20px;
  background: rgba(0, 0, 0, 0.5);
}

.ba-handle {
  position: absolute;
  top: 0;
  left: 50%;
  width: 2px;
  height: 100%;
  background: var(--gold);
  transform: translateX(-50%);
  pointer-events: none;
}

.ba-handle::before {
  content: '\25C0 \25B6';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--gold);
  color: #14100a;
  font-size: 0.6rem;
  padding: 5px 8px;
  border-radius: 20px;
  white-space: nowrap;
  font-weight: 700;
}

.ba-info {
  padding: 12px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
}

.ba-info .ba-pkg { color: var(--gray); }
.ba-info .ba-pkg span { color: var(--gold); font-weight: 600; }
.ba-info .ba-date { color: #6b6b68; font-size: 0.75rem; }

/* ---- Filter pills (gallery) ---- */
.filter-bar {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.filter-pill {
  padding: 8px 20px;
  border-radius: 999px;
  border: 1.5px solid #292929;
  background: transparent;
  font-family: var(--font);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gray);
  cursor: pointer;
  transition: all 0.2s ease;
}

.filter-pill:hover { border-color: var(--gold-dark); color: var(--gold); }
.filter-pill.active { background: var(--gold); border-color: var(--gold); color: #14100a; }

/* ---- Calendar date picker (booking wizard) ---- */
.cal-widget {
  background: var(--black);
  border: 1px solid #333;
  border-radius: var(--radius);
  padding: 20px;
}

.cal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.cal-month-label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
}

.cal-nav {
  background: var(--black-2);
  border: 1px solid #333;
  color: var(--gold);
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.1rem;
  line-height: 1;
  transition: border-color 0.15s ease, background 0.15s ease;
}

.cal-nav:hover:not(:disabled) { border-color: var(--gold); }
.cal-nav:disabled { opacity: 0.25; cursor: not-allowed; }

.cal-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  text-align: center;
  font-size: 0.68rem;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

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

.cal-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-size: 0.88rem;
  color: var(--white);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: border-color 0.15s ease, background 0.15s ease, transform 0.15s ease;
}

.cal-day.empty { visibility: hidden; cursor: default; }

.cal-day.disabled {
  color: #3a3a38;
  cursor: not-allowed;
}

.cal-day.today:not(.selected) { border-color: var(--gold-dark); color: var(--gold); font-weight: 700; }

.cal-day:not(.disabled):not(.empty):hover {
  border-color: var(--gold-dark);
  transform: translateY(-1px);
}

.cal-day.selected {
  background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
  color: #14100a;
  font-weight: 700;
  border-color: var(--gold);
}

.cal-legend {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 14px;
  font-size: 0.72rem;
  color: var(--gray);
}

.cal-legend span { display: inline-flex; align-items: center; gap: 6px; }
.cal-legend .dot { width: 9px; height: 9px; border-radius: 50%; display: inline-block; }
.cal-legend .dot.closed { background: #3a3a38; }
.cal-legend .dot.open { background: var(--gold); }
