/* ===== Next Level Luxury — minimalist, mobile-first ===== */

:root {
  --black: #0a0a0a;
  --ink: #2c241a;
  --ink-soft: #6b5d49;
  --cream: #f1ede4;
  --cream-2: #e7e1d4;
  --line: #d8cfbd;

  --gold-1: #f4e3a6;
  --gold-2: #d4af37;
  --gold-3: #b8923f;
  --gold-grad: linear-gradient(180deg, #f4e3a6 0%, #d4af37 55%, #b8923f 100%);

  --maxw: 1080px;
  --radius: 16px;
  --shadow: 0 18px 50px -22px rgba(40, 30, 10, 0.45);

  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Inter", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}

h2, h3 { font-family: var(--font-display); font-weight: 700; line-height: 1.1; margin: 0; }

a { color: inherit; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .95rem 1.6rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: .02em;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform .15s ease, box-shadow .25s ease, background .25s ease, color .2s ease;
  -webkit-tap-highlight-color: transparent;
}
.btn:active { transform: translateY(1px) scale(.99); }

.btn--gold {
  background: var(--gold-grad);
  color: #2a2008;
  box-shadow: 0 10px 24px -10px rgba(180, 146, 63, .8);
}
.btn--gold:hover { box-shadow: 0 14px 30px -10px rgba(180, 146, 63, .95); transform: translateY(-2px); }

.btn--ghost {
  background: transparent;
  border-color: var(--gold-3);
  color: var(--gold-2);
}
.hero .btn--ghost { color: var(--gold-1); border-color: rgba(212, 175, 55, .65); }
.btn--ghost:hover { background: rgba(212, 175, 55, .12); }

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 80svh;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 2.5rem 1.25rem 3rem;
  background:
    radial-gradient(78% 62% at 50% 42%, rgba(212,175,55,0.16) 0%, transparent 78%),
    radial-gradient(135% 110% at 50% 18%, #1a140b 0%, #0c0a06 50%, #070707 100%);
  overflow: hidden;
}
.hero::after { /* subtle gold sparkle */
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(2px 2px at 20% 30%, rgba(244,227,166,.5), transparent),
    radial-gradient(2px 2px at 75% 22%, rgba(212,175,55,.4), transparent),
    radial-gradient(1.5px 1.5px at 60% 60%, rgba(244,227,166,.35), transparent),
    radial-gradient(1.5px 1.5px at 35% 70%, rgba(212,175,55,.3), transparent);
  pointer-events: none;
}
.hero__inner { position: relative; z-index: 1; max-width: 560px; width: 100%; }
.hero__logo {
  width: min(82vw, 430px);
  height: auto;
  animation: rise .9s ease both;
}

/* Feather the logo's edges so the black square melts into the dark sections */
.hero__logo,
.footer__mark,
.status__logo {
  -webkit-mask-image:
    linear-gradient(to right, transparent 0, #000 8%, #000 92%, transparent 100%),
    linear-gradient(to bottom, transparent 0, #000 8%, #000 92%, transparent 100%);
  -webkit-mask-composite: source-in;
  mask-image:
    linear-gradient(to right, transparent 0, #000 8%, #000 92%, transparent 100%),
    linear-gradient(to bottom, transparent 0, #000 8%, #000 92%, transparent 100%);
  mask-composite: intersect;
}
.hero__tag {
  margin: 1.2rem 0 1.8rem;
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 4.5vw, 1.5rem);
  letter-spacing: .35em;
  text-transform: uppercase;
  color: #d9c79a;
  animation: rise 1s .1s ease both;
}
.hero__cta { animation: rise 1s .2s ease both; }
.hero__scroll {
  position: absolute; bottom: 1.4rem; left: 50%; transform: translateX(-50%);
  color: rgba(212,175,55,.7); font-size: 1.4rem;
  animation: bob 1.8s ease-in-out infinite;
}

@keyframes rise { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }
@keyframes bob { 0%,100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(6px); } }

/* ===== Ideal For ===== */
.ideal {
  background: var(--black);
  color: var(--cream);
  text-align: center;
  padding: 2.4rem 1.25rem;
  border-top: 1px solid rgba(212,175,55,.25);
}
.ideal__title {
  font-size: 1rem;
  letter-spacing: .4em;
  text-transform: uppercase;
  color: var(--gold-2);
  margin-bottom: 1.2rem;
  font-family: var(--font-body);
  font-weight: 600;
}
.ideal__list {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: .6rem .9rem;
  max-width: 760px; margin-inline: auto;
}
.ideal__list li {
  font-size: .95rem;
  letter-spacing: .04em;
  padding: .35rem .9rem;
  border: 1px solid rgba(212,175,55,.35);
  border-radius: 999px;
  color: #e9e2d2;
}

/* ===== Packages ===== */
.packages {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(3rem, 8vw, 5.5rem) 1.25rem;
}
.packages__head { text-align: center; max-width: 620px; margin: 0 auto 3rem; }
.eyebrow {
  display: inline-block;
  font-size: .8rem; letter-spacing: .35em; text-transform: uppercase;
  color: var(--gold-3); font-weight: 600; margin-bottom: .7rem;
}
.packages__head h2 { font-size: clamp(2rem, 6vw, 2.9rem); }
.packages__sub { color: var(--ink-soft); margin-top: .9rem; }

/* Vehicle toggle */
.toggle {
  position: relative;
  display: inline-flex;
  margin: 0 auto 2.6rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--cream-2);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: .35rem;
  gap: .25rem;
}
.toggle__btn {
  position: relative;
  z-index: 1;
  border: 0;
  background: transparent;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: .95rem;
  font-weight: 600;
  letter-spacing: .02em;
  color: var(--ink-soft);
  padding: .7rem 1.5rem;
  border-radius: 999px;
  transition: color .25s ease;
  -webkit-tap-highlight-color: transparent;
}
.toggle__btn.is-active { color: #2a2008; }
.toggle__slider {
  position: absolute;
  z-index: 0;
  top: .35rem;
  bottom: .35rem;
  left: .35rem;
  width: calc(50% - .35rem);
  background: var(--gold-grad);
  border-radius: 999px;
  box-shadow: 0 6px 16px -8px rgba(180, 146, 63, .9);
  transition: transform .28s cubic-bezier(.4, 0, .2, 1);
}
.toggle[data-vehicle="blacktruck"] .toggle__slider { transform: translateX(100%); }

.cards {
  display: grid;
  gap: 1.4rem;
  grid-template-columns: 1fr;
}

.card {
  position: relative;
  background: #fbf9f3;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem 1.6rem;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow);
  transition: transform .2s ease, box-shadow .25s ease, border-color .25s ease;
}
.card:hover { transform: translateY(-4px); border-color: var(--gold-3); }

.card--featured {
  background: linear-gradient(180deg, #14110b 0%, #0a0a0a 100%);
  color: var(--cream);
  border-color: var(--gold-3);
}
.card--featured .card__min,
.card--featured .card__unit { color: #c8b88f; }
.card--featured .card__features li { color: #e7e0d0; border-color: rgba(212,175,55,.2); }
.card--featured .card__features li::before { color: var(--gold-2); }

.card__badge {
  position: absolute; top: -.8rem; left: 50%; transform: translateX(-50%);
  background: var(--gold-grad); color: #2a2008;
  font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  padding: .3rem .9rem; border-radius: 999px;
  white-space: nowrap;
}

.card__head { margin-bottom: 1rem; }
.card__name { font-size: 2rem; letter-spacing: .02em; }
.card--featured .card__name { color: var(--gold-1); }
.card__min { margin: .2rem 0 0; font-size: .9rem; color: var(--ink-soft); letter-spacing: .04em; }

.card__price { display: flex; align-items: baseline; gap: .4rem; margin: .4rem 0 1.3rem; }
.card__amount {
  font-family: var(--font-display);
  font-size: 3rem; font-weight: 700; line-height: 1;
  background: var(--gold-grad);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.card__unit { font-size: 1rem; color: var(--ink-soft); }

.card__features { list-style: none; margin: 0 0 1.8rem; padding: 0; flex: 1; }
.card__features li {
  position: relative;
  padding: .55rem 0 .55rem 1.6rem;
  font-size: .96rem;
  border-bottom: 1px solid var(--line);
}
.card__features li:last-child { border-bottom: 0; }
.card__features li::before {
  content: "✦";
  position: absolute; left: 0; top: .5rem;
  color: var(--gold-3); font-size: .85rem;
}

.card__cta { width: 100%; }

.packages__note {
  text-align: center; color: var(--ink-soft); font-size: .85rem;
  margin-top: 2.4rem;
}

/* ===== Footer ===== */
.footer {
  background:
    radial-gradient(120% 100% at 50% 0%, #1a160e 0%, #0a0a0a 70%, #000 100%);
  color: var(--cream);
  text-align: center;
  padding: 3.5rem 1.25rem 2.5rem;
  border-top: 1px solid rgba(212,175,55,.25);
}
.footer__mark { width: 120px; height: auto; opacity: .95; margin-bottom: .5rem; }
.footer__title {
  font-size: clamp(1.7rem, 5vw, 2.3rem);
  color: var(--gold-1);
  margin-bottom: 1.4rem;
}
.footer__contact { list-style: none; margin: 0 auto 2rem; padding: 0; display: grid; gap: .8rem; }
.footer__contact a {
  text-decoration: none;
  color: #e7e0d0;
  font-size: 1.05rem;
  letter-spacing: .02em;
  border-bottom: 1px solid transparent;
  transition: color .2s, border-color .2s;
  padding-bottom: 2px;
}
.footer__contact a:hover { color: var(--gold-1); border-color: var(--gold-2); }
.footer__copy { color: #8c8169; font-size: .82rem; margin: 0; }

/* ===== Modal ===== */
.modal { position: fixed; inset: 0; z-index: 50; display: grid; place-items: center; padding: 1.25rem; }
.modal[hidden] { display: none; }
.modal__backdrop { position: absolute; inset: 0; background: rgba(10,8,4,.62); backdrop-filter: blur(3px); animation: fade .2s ease; }
.modal__panel {
  position: relative;
  background: #fbf9f3;
  border: 1px solid var(--gold-3);
  border-radius: var(--radius);
  padding: 2.2rem 1.7rem 2rem;
  max-width: 420px; width: 100%;
  text-align: center;
  box-shadow: 0 30px 70px -20px rgba(0,0,0,.6);
  animation: pop .25s ease;
}
.modal__close {
  position: absolute; top: .6rem; right: .8rem;
  background: none; border: 0; font-size: 1.6rem; line-height: 1;
  color: var(--ink-soft); cursor: pointer;
}
.modal__title { font-size: 1.7rem; margin-bottom: .7rem; }
.modal__title span { color: var(--gold-3); }
.modal__text { color: var(--ink-soft); font-size: .95rem; margin-bottom: 1.4rem; }
.modal__action { width: 100%; margin-top: .7rem; }

@keyframes fade { from { opacity: 0; } to { opacity: 1; } }
@keyframes pop { from { opacity: 0; transform: translateY(12px) scale(.98); } to { opacity: 1; transform: none; } }

/* ===== Responsive ===== */
@media (min-width: 760px) {
  .cards { grid-template-columns: repeat(3, 1fr); align-items: stretch; }
  .card--featured { transform: scale(1.04); }
  .card--featured:hover { transform: scale(1.04) translateY(-4px); }
  .footer__contact { grid-auto-flow: column; gap: 2rem; justify-content: center; }
}

/* ===== Button loading state ===== */
.btn.is-loading { opacity: .7; pointer-events: none; }

/* ===== Status pages (success / cancel) ===== */
.status {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 1rem;
  padding: 3rem 1.5rem;
  background: radial-gradient(120% 90% at 50% 18%, #1d1810 0%, #0a0a0a 60%, #000 100%);
  color: var(--cream);
}
.status__logo { width: min(60vw, 200px); height: auto; margin-bottom: .5rem; }
.status__icon {
  width: 68px; height: 68px; border-radius: 50%;
  display: grid; place-items: center;
  font-size: 2rem; line-height: 1;
}
.status__icon--ok { background: var(--gold-grad); color: #1a1407; }
.status__icon--cancel { border: 2px solid var(--gold-3); color: var(--gold-2); }
.status__title {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 6vw, 2.6rem);
  color: var(--gold-1);
}
.status__text { max-width: 460px; color: #d9d1c0; margin: 0; }
.status__text--muted { font-size: .9rem; color: #9b9079; }
.status__text a { color: var(--gold-2); text-decoration: none; border-bottom: 1px solid transparent; }
.status__text a:hover { border-color: var(--gold-2); }
.status .btn { margin-top: 1rem; }

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