/* ============================================================
   Layout — page-level sections
   ============================================================ */

.shell {
  position: relative;
  z-index: 2;
  max-width: 1440px;
  margin: 0 auto;
  padding: 28px 36px 80px;
}

/* ----- Top Nav ----- */
.nav {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  margin-bottom: 56px;
}
.brand          { display: flex; align-items: center; gap: 12px; }
.brand-mark {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: linear-gradient(135deg, #1a1814 0%, #2c2820 100%);
  display: grid;
  place-items: center;
  color: #f3e9c8;
  font-family: var(--display);
  font-weight: 400;
  font-size: 18px;
  box-shadow: 0 1px 0 rgba(255,255,255,0.04) inset,
              0 6px 14px -8px rgba(0,0,0,0.4);
}
.brand-text          { display: flex; flex-direction: column; line-height: 1.1; }
.brand-text .name    { font-family: var(--display); font-size: 19px; font-weight: 400; letter-spacing: -0.01em; }
.brand-text .sub     { font-size: 10.5px; color: var(--ink-mute); letter-spacing: 0.14em; text-transform: uppercase; margin-top: 2px; }

.nav-center { display: flex; justify-content: center; gap: 8px; }
.nav-center a {
  padding: 12px 18px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-soft);
  border-radius: 12px;
  transition: color .2s ease, background .25s ease;
}
.nav-center a:hover  { color: var(--ink); background: rgba(255,255,255,0.4); }
.nav-center a.active { color: var(--ink); background: var(--white); box-shadow: var(--shadow-white); }

.nav-right { display: flex; gap: 10px; align-items: center; }

/* ----- Hero ----- */
.hero { display: grid; grid-template-columns: 1fr; margin-bottom: 56px; }

.hero-card {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 36px 40px;
  box-shadow: var(--shadow-white);
  overflow: hidden;
  min-height: 620px;
}

/* Side rails of icon buttons */
.rail {
  position: absolute;
  display: flex;
  flex-direction: column;
  gap: 14px;
  z-index: 4;
}
.rail.left   { top: 28px; left: 28px; }
.rail.right  { top: 28px; right: 28px; align-items: flex-end; }

.rail .icon-btn         { background: var(--surface-soft); box-shadow: var(--shadow-pill); }
.rail .icon-btn:hover   { background: var(--white); }
.rail .icon-btn.rail-back { margin-top: 36px; }
.rail .pill             { background: var(--surface-soft); box-shadow: var(--shadow-pill); }
.rail .pill:hover       { background: var(--white); }

/* Hero headline */
.hero-head {
  position: relative;
  z-index: 3;
  max-width: 900px;
  padding-left: 88px;
}
.hero-eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 18px;
}
.hero-title {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(48px, 7vw, 96px);
  line-height: 0.96;
  letter-spacing: -0.03em;
  color: var(--ink);
}
.hero-title em {
  font-style: italic;
  font-weight: 400;
  color: var(--ink-soft);
}
.hero-sub {
  margin-top: 22px;
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 480px;
}
.hero-actions {
  margin-top: 28px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* Featured car visual */
.hero-stage {
  position: absolute;
  right: -40px;
  bottom: -40px;
  width: 70%;
  z-index: 2;
  pointer-events: none;
}
.hero-stage svg { width: 100%; height: auto; }
.hero-stage img {
  width: 100%;
  height: auto;
  display: block;
  mix-blend-mode: multiply;
  -webkit-mask-image: radial-gradient(ellipse at 50% 55%, #000 55%, transparent 90%);
          mask-image: radial-gradient(ellipse at 50% 55%, #000 55%, transparent 90%);
}

/* ----- Section heading ----- */
.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin: 0 0 28px;
  gap: 24px;
  flex-wrap: wrap;
}
.section-eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 10px;
}
.section-title {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(34px, 4.4vw, 56px);
  line-height: 1;
  letter-spacing: -0.025em;
}
.section-title em { font-style: italic; color: var(--ink-soft); }
.section-head p   { color: var(--ink-soft); font-size: 14.5px; max-width: 420px; line-height: 1.55; }

/* ----- Fleet Grid ----- */
.fleet { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 80px; }

.car-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 22px;
  box-shadow: var(--shadow-white);
  position: relative;
  overflow: hidden;
  transition: transform .35s var(--ease-out), box-shadow .35s ease;
  cursor: pointer;
}
.car-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 1px 0 rgba(255,255,255,1) inset,
              0 24px 40px -16px rgba(40,38,30,0.18),
              0 4px 10px rgba(40,38,30,0.08);
}
.car-card .tag {
  position: absolute;
  top: 22px;
  right: 22px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: var(--surface-soft);
  padding: 6px 10px;
  border-radius: 12px;
  color: var(--ink-soft);
  z-index: 3;
}
.car-card .tag.hot { background: var(--accent); color: var(--white); }

.car-card .visual {
  aspect-ratio: 16/10;
  border-radius: var(--radius-lg);
  background: linear-gradient(160deg, #f3f3f1 0%, #e2dfd7 100%);
  display: grid;
  place-items: center;
  margin: 8px 0 20px;
  position: relative;
  overflow: hidden;
}
.car-card .visual::after {
  content: "";
  position: absolute;
  left: 10%; right: 10%; bottom: 18%; height: 14px;
  background: radial-gradient(closest-side, rgba(0,0,0,0.18), transparent);
  filter: blur(4px);
  z-index: 1;
}
.car-card .visual svg {
  width: 78%;
  height: auto;
  position: relative;
  z-index: 2;
}
.car-card .visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
  z-index: 2;
  transition: transform .6s var(--ease-out);
  mix-blend-mode: multiply;
}
.car-card:hover .visual img { transform: scale(1.04); }

.car-card h3 {
  font-family: var(--display);
  font-weight: 400;
  font-size: 22px;
  letter-spacing: -0.015em;
}
.car-card .sub  { font-size: 12.5px; color: var(--ink-mute); margin-top: 2px; letter-spacing: 0.04em; }
.car-card .specs {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-top: 14px;
}
.car-card .spec {
  font-size: 11px;
  background: var(--surface-soft);
  padding: 6px 10px;
  border-radius: 12px;
  color: var(--ink-soft);
  letter-spacing: 0.02em;
}
.car-card .bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}
.car-card .price {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 400;
  letter-spacing: -0.01em;
}
.car-card .price span {
  font-size: 11px;
  color: var(--ink-mute);
  font-family: var(--sans);
  letter-spacing: 0.06em;
  margin-left: 4px;
}
.car-card .reserve {
  background: var(--accent);
  color: var(--white);
  width: 38px;
  height: 38px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  transition: background .25s, transform .25s;
}
.car-card .reserve:hover { background: var(--accent-deep); transform: rotate(-8deg); }
.car-card .reserve svg   { width: 16px; height: 16px; stroke: var(--white); stroke-width: 2; }

/* ----- Experience / Stats ----- */
.experience {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 20px;
  margin-bottom: 80px;
}
.stats-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 36px;
  box-shadow: var(--shadow-white);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 380px;
}
.stats-card h3 {
  font-family: var(--display);
  font-weight: 400;
  font-size: 30px;
  letter-spacing: -0.02em;
  line-height: 1.15;
  max-width: 380px;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.stat .num {
  font-family: var(--display);
  font-size: 56px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.03em;
}
.stat .num span {
  font-size: 22px;
  color: var(--ink-mute);
  vertical-align: top;
  margin-left: 2px;
}
.stat .lbl {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-top: 8px;
}
.perks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.perk {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-white);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.perk-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--surface-soft);
  display: grid;
  place-items: center;
}
.perk-icon svg { width: 20px; height: 20px; stroke-width: 1.5; }
.perk h4 {
  font-family: var(--display);
  font-weight: 400;
  font-size: 19px;
  letter-spacing: -0.01em;
}
.perk p { font-size: 12.5px; color: var(--ink-soft); line-height: 1.5; }

.perk.dark              { background: linear-gradient(160deg, #1a1814 0%, #2c2820 100%); color: #e8e1cc; }
.perk.dark .perk-icon   { background: rgba(255,255,255,0.08); }
.perk.dark .perk-icon svg { stroke: #f3e9c8; }
.perk.dark p            { color: #b0a99a; }

/* ----- Booking ----- */
.booking {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 44px;
  box-shadow: var(--shadow-white);
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  margin-bottom: 80px;
  position: relative;
  overflow: hidden;
}
.booking-left h2 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.02;
  letter-spacing: -0.025em;
  margin-bottom: 18px;
}
.booking-left h2 em { font-style: italic; color: var(--ink-soft); }
.booking-left p     { font-size: 14.5px; color: var(--ink-soft); line-height: 1.6; max-width: 420px; }

.concierge-list  { margin-top: 28px; display: flex; flex-direction: column; gap: 14px; }
.concierge-row   { display: flex; align-items: center; gap: 14px; font-size: 14px; color: var(--ink); }
.concierge-row .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

.booking-form {
  background: var(--surface-soft);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: inset 0 0 0 1px var(--line);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 12px; }
.field {
  background: var(--white);
  border-radius: 12px;
  padding: 12px 14px;
}
.field label {
  display: block;
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 4px;
}
.field input,
.field select {
  width: 100%;
  background: none;
  border: 0;
  outline: none;
  font-family: var(--sans);
  font-size: 14px;
  color: var(--ink);
  appearance: none;
}
.field.full { grid-column: 1 / -1; }

.form-total {
  margin-top: 14px;
  padding: 16px;
  background: var(--white);
  border-radius: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.form-total .label-stack .l {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.form-total .label-stack .v {
  font-family: var(--display);
  font-size: 26px;
  font-weight: 400;
  line-height: 1;
  margin-top: 4px;
  letter-spacing: -0.02em;
}
.form-total .label-stack .v span {
  font-size: 12px;
  color: var(--ink-mute);
  font-family: var(--sans);
  margin-left: 4px;
}

/* ----- Testimonial ----- */
.quote-block {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 56px;
  box-shadow: var(--shadow-white);
  margin-bottom: 80px;
  position: relative;
  overflow: hidden;
}
.quote-mark {
  position: absolute;
  top: 24px;
  right: 36px;
  font-family: var(--display);
  font-size: 200px;
  color: var(--accent);
  opacity: 0.08;
  line-height: 0.8;
  font-style: italic;
}
.quote-text {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1.25;
  letter-spacing: -0.02em;
  max-width: 900px;
  position: relative;
  z-index: 2;
}
.quote-text em { font-style: italic; color: var(--ink-soft); }

.quote-author {
  margin-top: 28px;
  display: flex;
  align-items: center;
  gap: 14px;
  position: relative;
  z-index: 2;
}
.avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #c9c2b0, #7a7568);
}
.quote-author .name { font-size: 14px; font-weight: 500; }
.quote-author .meta { font-size: 11.5px; color: var(--ink-mute); margin-top: 2px; letter-spacing: 0.04em; }

/* ----- Footer ----- */
footer {
  background: linear-gradient(160deg, #1a1814 0%, #2c2820 100%);
  border-radius: var(--radius-xl);
  padding: 56px 48px 36px;
  color: #e8e1cc;
  position: relative;
  overflow: hidden;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 36px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand {
  font-family: var(--display);
  font-weight: 400;
  font-size: 44px;
  line-height: 1;
  letter-spacing: -0.02em;
}
.footer-brand em      { font-style: italic; color: #a89c7f; }
.footer-brand-sub     { font-size: 13px; color: #b0a99a; margin-top: 16px; max-width: 320px; line-height: 1.6; }
.footer-col h5 {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #a89c7f;
  margin-bottom: 16px;
}
.footer-col a {
  display: block;
  font-size: 13.5px;
  color: #d1cab8;
  padding: 5px 0;
  transition: color .2s;
}
.footer-col a:hover { color: white; }

.footer-bottom {
  margin-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11.5px;
  color: #a89c7f;
  letter-spacing: 0.04em;
}
.footer-bottom .links { display: flex; gap: 18px; }
