/* Deluxe Rental Cars — design tokens & layout */

:root {
  --black: #000000;
  --charcoal: #111111;
  --ink: #1a1a1a;
  --muted: #6b6b6b;
  --line: #2a2a2a;
  --white: #ffffff;
  --off-white: #f7f7f5;
  --gold: #c5a46a;
  --gold-light: #e0c48a;
  --gold-dark: #9a7b3c;
  --gold-grad: linear-gradient(90deg, #9a7b3c 0%, #c5a46a 45%, #e0c48a 100%);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Montserrat", system-ui, sans-serif;
  --container: 1180px;
  --narrow: 820px;
  --radius: 12px;
  --header-offset: 7.5rem;
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
a:hover { color: var(--gold-dark); }
ul, ol { margin: 0; padding: 0; }
h1, h2, h3 { line-height: 1.15; margin: 0 0 0.75rem; font-weight: 600; }
p { margin: 0 0 1rem; }

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

.container {
  width: min(100% - 2.5rem, var(--container));
  margin-inline: auto;
}
.container.narrow { width: min(100% - 2.5rem, var(--narrow)); }
.center { text-align: center; }

/* —— Buttons —— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
  white-space: nowrap;
}
.btn:hover { color: var(--white); transform: translateY(-1px); }
.btn--gold {
  background: var(--gold-grad);
  color: var(--white);
  box-shadow: 0 8px 24px rgba(154, 123, 60, 0.35);
}
.btn--gold:hover { color: var(--white); box-shadow: 0 10px 28px rgba(154, 123, 60, 0.45); }
.btn--nav {
  margin-left: auto;
  padding: 0.75rem 1.25rem;
  font-size: 0.65rem;
}
.btn--lg { padding: 1rem 1.9rem; font-size: 0.78rem; }
.btn--ghost {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.45);
}
.btn--ghost:hover { border-color: var(--gold-light); color: var(--gold-light); }
.btn--ghost-dark {
  background: transparent;
  color: var(--ink);
  border: 1px solid rgba(0,0,0,0.25);
}
.btn--ghost-dark:hover { border-color: var(--gold-dark); color: var(--gold-dark); }
.btn--text {
  background: none;
  border: none;
  box-shadow: none;
  color: rgba(255,255,255,0.78);
  padding: 0.85rem 0.35rem;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 0.28em;
  text-decoration-color: rgba(255,255,255,0.35);
}
.btn--text:hover {
  color: var(--gold-light);
  text-decoration-color: var(--gold);
  transform: none;
}
.btn--text-dark {
  color: var(--muted);
  text-decoration-color: rgba(0,0,0,0.2);
}
.btn--text-dark:hover {
  color: var(--gold-dark);
  text-decoration-color: var(--gold);
}

/* —— Header —— */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--black);
  color: var(--white);
}

.topbar {
  border-bottom: 1px solid rgba(255,255,255,0.08);
  font-size: 0.75rem;
}
.topbar__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 2.25rem;
  padding-block: 0.35rem;
}
.topbar__social { display: flex; gap: 0.85rem; }
.topbar__social a {
  color: var(--gold);
  text-transform: uppercase;
  font-size: 0.65rem;
  letter-spacing: 0.04em;
  opacity: 0.85;
}
.topbar__social a:hover { opacity: 1; color: var(--gold-light); }
.topbar__right { display: flex; align-items: center; gap: 1.25rem; }
.topbar__phone { color: var(--white); font-weight: 500; }
.topbar__lang { color: rgba(255,255,255,0.75); }

.navbar__inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  min-height: 4.75rem;
  padding-block: 0.5rem;
}

.logo { display: flex; flex-direction: column; line-height: 1; flex-shrink: 0; }
.logo:hover { color: var(--white); }
.logo__word {
  font-size: 1.55rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--white);
}
.logo__x {
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  position: relative;
  display: inline-block;
  transform: scale(1.15);
}
.logo__tag {
  margin-top: 0.3rem;
  font-size: 0.52rem;
  letter-spacing: 0.22em;
  color: rgba(255,255,255,0.7);
  font-weight: 500;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.35rem;
  margin-left: auto;
  margin-right: 0.5rem;
}
.nav > a,
.nav__dropdown > button {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font-family: var(--sans);
}
.nav > a:hover,
.nav__dropdown > button:hover { color: var(--gold-light); }

.nav__dropdown { position: relative; }
.nav__dropdown > button::after {
  content: "▾";
  margin-left: 0.35rem;
  font-size: 0.65rem;
  opacity: 0.7;
}
.nav__menu {
  display: none;
  position: absolute;
  top: calc(100% + 0.75rem);
  left: 0;
  min-width: 11rem;
  background: var(--charcoal);
  border: 1px solid var(--line);
  padding: 0.5rem 0;
  z-index: 20;
}
.nav__dropdown:hover .nav__menu,
.nav__dropdown:focus-within .nav__menu { display: block; }
.nav__menu a {
  display: block;
  padding: 0.55rem 1rem;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
}
.nav__menu a:hover { background: rgba(255,255,255,0.05); color: var(--gold-light); }

.nav-toggle {
  display: none;
  margin-left: auto;
  background: none;
  border: none;
  width: 2rem;
  height: 2rem;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--white);
  border-radius: 1px;
}

/* —— Sections —— */
.section { padding: 5rem 0; }
.section--white { background: var(--white); color: var(--ink); }
.section--dark { background: var(--charcoal); color: var(--white); }
.section--black { background: var(--black); color: var(--white); }
.section--cta { background: var(--off-white); }
.section--cream { background: #f3f1ec; color: var(--ink); }

.shopping-list {
  display: grid;
  gap: 2.75rem;
  margin: 2.75rem 0 1.5rem;
}
.shopping-row {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 2rem;
  align-items: center;
}
.shopping-row--flip {
  grid-template-columns: 1fr 1.05fr;
}
.shopping-row--flip .shopping-row__media { order: 2; }
.shopping-row--flip .shopping-row__copy { order: 1; }
.shopping-row__media {
  margin: 0;
  overflow: hidden;
  background: #1a1a1a;
  min-height: 240px;
}
.shopping-row__media img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  display: block;
}
.shopping-row__focus {
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-dark);
  font-weight: 600;
  margin-bottom: 0.55rem;
}
.shopping-row h3 {
  font-family: var(--sans);
  font-size: clamp(1.25rem, 2vw, 1.55rem);
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0;
  margin-bottom: 0.75rem;
}
.shopping-row__copy p {
  color: var(--muted);
  font-size: 0.98rem;
  margin-bottom: 0.75rem;
}
.shopping-row__tip {
  font-size: 0.9rem;
  color: var(--ink);
  margin: 0;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(0,0,0,0.08);
}

@media (max-width: 960px) {
  .shopping-row,
  .shopping-row--flip {
    grid-template-columns: 1fr;
    gap: 1.15rem;
  }
  .shopping-row--flip .shopping-row__media,
  .shopping-row--flip .shopping-row__copy { order: unset; }
  .shopping-row__media img { min-height: 220px; }
}
.section-kicker {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 0.75rem;
  font-weight: 600;
}
.section--dark .section-kicker,
.section--black .section-kicker { color: var(--gold); }
.section-title {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.section-title--gold { color: var(--gold-dark); }
.section--dark .section-title { color: var(--white); }
.lead { font-size: 1.05rem; color: var(--muted); max-width: 42rem; }
.lead--muted { color: rgba(255,255,255,0.65); }
.muted { color: var(--muted); font-size: 0.92rem; }
.note {
  margin-top: 1.5rem;
  padding: 1rem 1.25rem;
  background: rgba(197, 164, 106, 0.08);
  border-left: 3px solid var(--gold);
  font-size: 0.95rem;
}
.note--light {
  background: rgba(255,255,255,0.04);
  color: rgba(255,255,255,0.8);
  border-left-color: var(--gold);
}
.eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 0.75rem;
  font-weight: 600;
}

/* —— Rental hero —— */
.rental-hero {
  position: relative;
  min-height: min(88vh, 760px);
  display: flex;
  align-items: flex-end;
  color: #fff;
  background: var(--black);
  overflow: hidden;
}
.rental-hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.rental-hero__media .img-frame,
.rental-hero__img {
  height: 100%;
  width: 100%;
  margin: 0;
  border-radius: 0;
  min-height: 100%;
}
.rental-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.rental-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(0,0,0,0.82) 0%, rgba(0,0,0,0.45) 48%, rgba(0,0,0,0.25) 100%),
    linear-gradient(0deg, rgba(0,0,0,0.55) 0%, transparent 45%);
}
.rental-hero__content {
  position: relative;
  z-index: 2;
  padding: 4.5rem 0 3.25rem;
  color: #fff;
}
.rental-hero__content.container {
  margin-inline: auto;
  width: min(100% - 2.5rem, var(--container));
}
.rental-hero__content > .eyebrow,
.rental-hero__content > h1,
.rental-hero__content > .rental-hero__tagline,
.rental-hero__content > .rental-hero__summary,
.rental-hero__content > .rental-hero__assurance,
.rental-hero__content > .rental-hero__brand,
.rental-hero__content > .rental-hero__actions,
.rental-hero__content > .trust-line,
.rental-hero__content > .social-proof-bar {
  max-width: 40rem;
}
.rental-hero .eyebrow,
.rental-hero h1,
.rental-hero__summary,
.rental-hero__tagline,
.rental-hero__brand {
  color: #fff;
}
.rental-hero h1 {
  font-family: var(--sans);
  font-size: clamp(1.85rem, 4.2vw, 3rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  max-width: 18ch;
  color: #fff;
  text-shadow: 0 2px 24px rgba(0,0,0,0.45);
}
.rental-hero__tagline {
  font-size: 1.05rem;
  font-weight: 500;
  color: rgba(255,255,255,0.92);
  max-width: 36rem;
  margin: 0 0 0.85rem;
}
.rental-hero__summary {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.9);
  max-width: 36rem;
  margin-bottom: 0.65rem;
}
.rental-hero__assurance {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--gold-light);
  margin: 0 0 1.25rem;
  letter-spacing: 0.01em;
}
.rental-hero__assurance--dark {
  color: var(--gold-dark);
  margin-bottom: 1.25rem;
}
.rental-hero__brand,
.brand-blurb {
  font-size: 0.95rem;
  line-height: 1.55;
  max-width: 40rem;
  margin: 0 0 1.25rem;
}
.rental-hero__brand {
  color: rgba(255,255,255,0.82);
}
.brand-blurb {
  color: var(--muted);
}
.section--cta .brand-blurb {
  margin-inline: auto;
}
.rental-hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 1rem;
  margin-bottom: 0.85rem;
}
.center-actions { justify-content: center; }

.trust-line {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.55rem;
  font-size: 0.78rem;
  line-height: 1.45;
  color: rgba(255,255,255,0.72);
  margin: 0 0 1rem;
  max-width: 40rem;
}
.trust-line--dark { color: var(--muted); }
.trust-line.center {
  justify-content: center;
  margin-inline: auto;
  text-align: center;
}

/* —— Features / routes —— */
.feature-list {
  list-style: none;
  display: grid;
  gap: 1.25rem;
  margin: 2.5rem 0;
}
.feature-list li {
  display: grid;
  gap: 0.35rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.feature-list strong {
  font-size: 1rem;
  color: var(--ink);
}
.feature-list span { color: var(--muted); }

.week-intro {
  max-width: 40rem;
  margin-bottom: 0.5rem;
}
.week-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.8fr);
  gap: 3rem;
  align-items: start;
  margin: 2.25rem 0 2rem;
}
.week-layout .route-list {
  margin: 0;
  grid-template-columns: 1fr;
  gap: 0;
}
.week-layout__media {
  position: sticky;
  top: calc(var(--header-offset) + 1rem);
}
.week-layout__media .img-frame,
.week-layout__img {
  margin: 0;
  min-height: 420px;
  height: min(70vh, 560px);
  border-radius: 0;
}
.week-layout__media img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.route-list {
  list-style: none;
  display: grid;
  gap: 0;
  margin: 2.5rem 0;
}
.route-item {
  padding: 1.35rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.route-item:first-child { padding-top: 0; }
.route-item:last-child { border-bottom: none; padding-bottom: 0; }
.route-item__head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.35rem 1rem;
  margin-bottom: 0.45rem;
}
.route-item h3 {
  font-family: var(--sans);
  font-size: 1.05rem;
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0;
  margin: 0;
  color: #fff;
}
.route-item__time {
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  font-weight: 500;
}
.route-item p {
  color: rgba(255,255,255,0.72);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
  max-width: 38rem;
}

.week-practical {
  max-width: 44rem;
  padding-top: 0.5rem;
}
.week-practical p {
  color: rgba(255,255,255,0.55);
  font-size: 0.9rem;
  line-height: 1.65;
  margin: 0 0 0.65rem;
}
.week-practical p:last-child { margin-bottom: 0; }

.delivery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.75rem;
  margin: 2.5rem 0;
}
.delivery-grid h3 {
  font-family: var(--sans);
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.5rem;
}
.delivery-grid p { color: var(--muted); margin-bottom: 0.35rem; }
.delivery-image { margin-top: 1rem; }

.related { margin-top: 0; }
.related__label {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-dark);
  font-weight: 600;
  margin-bottom: 0.75rem;
}
.related__list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  justify-content: center;
}
.related__list a {
  color: var(--ink);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 0.1rem;
  font-size: 0.92rem;
}

.upsell-list {
  display: grid;
  gap: 0;
  margin-top: 2rem;
  border-top: 1px solid rgba(0,0,0,0.08);
}
.upsell-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1.25rem 2rem;
  align-items: center;
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.upsell-item__copy h3 {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0;
  margin: 0 0 0.35rem;
}
.upsell-item__copy p {
  color: var(--muted);
  font-size: 0.95rem;
  margin: 0 0 0.65rem;
}
.upsell-item__guide {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--ink);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 0.1rem;
}
.upsell-item__guide:hover { color: var(--gold-dark); }
.upsell-item__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.85rem;
  justify-content: flex-end;
}

.sticky-cta {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 95;
  gap: 0.65rem;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1rem calc(0.75rem + env(safe-area-inset-bottom));
  background: rgba(10, 10, 10, 0.94);
  border-top: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.sticky-cta.is-hidden {
  transform: translateY(110%);
  opacity: 0;
  pointer-events: none;
}
.sticky-cta .btn { flex: 1 1 auto; max-width: 16rem; text-align: center; }
.sticky-cta__wa {
  flex: 0 0 auto;
  color: rgba(255,255,255,0.8);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: underline;
  text-underline-offset: 0.25em;
  text-decoration-color: rgba(255,255,255,0.35);
  padding: 0.65rem 0.5rem;
}
.sticky-cta__wa:hover { color: var(--gold-light); }

@media (max-width: 700px) {
  .sticky-cta { display: flex; }
  html.has-sticky-cta .rental {
    padding-bottom: calc(4.75rem + env(safe-area-inset-bottom));
  }
  .upsell-item {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .upsell-item__actions { justify-content: flex-start; }
}

/* —— Images —— */
.media-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 2rem 0;
}
.img-frame {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: #1a1a1a;
  min-height: 200px;
  margin: 0;
}
.img-frame img { width: 100%; height: 100%; object-fit: cover; min-height: 200px; }
.img-frame__placeholder {
  display: none;
  position: absolute;
  inset: 0;
  place-content: center;
  text-align: center;
  padding: 1.5rem;
  color: rgba(255,255,255,0.55);
  font-size: 0.85rem;
  background:
    linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 50%, #1a1a1a 100%);
}
.img-frame__placeholder small {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.7rem;
  color: rgba(255,255,255,0.35);
  word-break: break-all;
}
.img-frame__placeholder code { color: var(--gold); }
.img-frame--empty .img-frame__placeholder,
.img-frame:not(:has(img)) .img-frame__placeholder { display: grid; }
.rental-hero__media .img-frame { border-radius: 0; min-height: 100%; }
.rental-hero__media .img-frame__placeholder { display: grid; }
.rental-hero__media .img-frame:has(img:not([style*="display: none"])) .img-frame__placeholder { display: none; }

/* —— Social proof —— */
.social-proof-bar {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.55rem 0.65rem;
  color: var(--white);
  font-size: 0.88rem;
}
.social-proof-bar__google {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-weight: 600;
}
.social-proof-bar__stars { color: #f4c430; letter-spacing: 0.08em; }
.social-proof-bar__score { font-weight: 600; }
.social-proof-bar__count {
  color: rgba(255,255,255,0.7);
  font-size: 0.8rem;
}

.social-proof__title {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3rem);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 1.5rem;
}
.social-proof__overall { text-align: center; margin-bottom: 2.5rem; }
.social-proof__excellent {
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 0.35rem;
}
.social-proof__stars {
  color: #f4c430;
  font-size: 1.35rem;
  letter-spacing: 0.12em;
  margin-bottom: 0.35rem;
}
.social-proof__stars .half { opacity: 0.55; }
.social-proof__based { color: rgba(255,255,255,0.7); font-size: 0.9rem; }
.social-proof__google-logo { margin-top: 0.5rem; display: flex; justify-content: center; }

.social-proof__carousel {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.75rem;
}
.social-proof__track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(260px, 1fr);
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding: 0.25rem;
}
.social-proof__track::-webkit-scrollbar { display: none; }

.review-card {
  scroll-snap-align: start;
  background: #141414;
  border-radius: 14px;
  padding: 1.25rem;
  border: 1px solid rgba(255,255,255,0.06);
  min-height: 220px;
}
.review-card__header {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.75rem;
  align-items: center;
  margin-bottom: 0.75rem;
}
.review-card__avatar {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 700;
  color: var(--white);
}
.review-card__who { display: grid; }
.review-card__who strong { font-size: 0.92rem; }
.review-card__who span { font-size: 0.75rem; color: rgba(255,255,255,0.45); }
.review-card__g {
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 50%;
  background: #fff;
  color: #4285F4;
  font-size: 0.7rem;
  font-weight: 800;
  display: grid;
  place-items: center;
}
.review-card__rating {
  color: #f4c430;
  letter-spacing: 0.08em;
  margin-bottom: 0.65rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.9rem;
}
.review-card__verified {
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  background: #1a73e8;
  color: #fff;
  font-size: 0.65rem;
  display: inline-grid;
  place-items: center;
}
.review-card__text {
  color: rgba(255,255,255,0.88);
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}
.review-card__meta {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
  margin: 0;
}

.carousel-btn {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  background: #1a1a1a;
  color: var(--white);
  font-size: 1.4rem;
  cursor: pointer;
  line-height: 1;
}
.carousel-btn:hover { border-color: var(--gold); color: var(--gold); }

.trust-bar {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem 1.5rem;
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.trust-bar li {
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.55);
}

/* —— Blog index (home) —— */
.blog-masthead {
  padding: 3.5rem 0 1.5rem;
  background: var(--white);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.blog-masthead__kicker {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-dark);
  font-weight: 600;
  margin-bottom: 0.65rem;
}
.blog-masthead h1 {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 5vw, 3.4rem);
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: none;
  margin: 0 0 0.75rem;
  color: var(--ink);
}
.blog-masthead__dek {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 34rem;
  margin: 0;
  line-height: 1.6;
}

.blog-index.section { padding-top: 2rem; }
.blog-topics {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.85rem;
  margin-bottom: 1.25rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.blog-topics__sep {
  color: rgba(0,0,0,0.2);
  margin-inline: 0.15rem;
}
.blog-topic {
  background: none;
  border: none;
  padding: 0;
  font-family: var(--sans);
  font-size: 0.82rem;
  letter-spacing: 0.02em;
  color: var(--muted);
  cursor: pointer;
}
.blog-topic:hover,
.blog-topic.is-active {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 0.25em;
}
.blog-index__count {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 1.75rem;
}
.blog-index__empty {
  text-align: left;
  color: var(--muted);
  padding: 1rem 0 2rem;
}

.post-list {
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(0,0,0,0.08);
}
.post-item {
  display: grid;
  grid-template-columns: 200px minmax(0, 1fr);
  gap: 1.5rem;
  align-items: center;
  padding: 1.75rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.post-item[hidden] { display: none; }
.post-item__thumb {
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #1a1a1a;
}
.post-item__thumb .img-frame,
.post-item__img {
  margin: 0;
  height: 100%;
  width: 100%;
  min-height: 100%;
  border-radius: 0;
}
.post-item__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
}
.post-item__thumb .img-frame__placeholder small { display: none; }
.post-item__meta {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-dark);
  font-weight: 600;
  margin: 0 0 0.45rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}
.post-item__title {
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2.4vw, 1.7rem);
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: 0;
  text-transform: none;
  margin: 0 0 0.55rem;
}
.post-item__title a { color: var(--ink); }
.post-item__title a:hover { color: var(--gold-dark); }
.post-item__excerpt {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0 0 0.85rem;
}
.post-item__more {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 0.1rem;
}
.post-item__more:hover { color: var(--gold-dark); }

@media (max-width: 700px) {
  .post-item {
    grid-template-columns: 1fr;
    gap: 0.9rem;
  }
  .post-item__thumb { max-width: 100%; }
}

/* —— Footer —— */
.site-footer {
  background: var(--black);
  color: rgba(255,255,255,0.75);
  padding-top: 3.5rem;
  font-size: 0.9rem;
}
.site-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 2rem;
  padding-bottom: 2.5rem;
}
.site-footer h3 {
  font-family: var(--sans);
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1rem;
}
.site-footer a:hover { color: var(--gold-light); }
.logo--footer { margin-bottom: 1rem; }
.footer-links { list-style: none; display: grid; gap: 0.4rem; }
.site-footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 1rem 0;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
}

/* —— Responsive —— */
@media (max-width: 960px) {
  .navbar__inner { position: relative; }
  .delivery-grid,
  .media-grid { grid-template-columns: 1fr; }
  .week-layout {
    grid-template-columns: 1fr;
  }
  .week-layout__media {
    position: static;
    order: -1;
  }
  .week-layout__media .img-frame,
  .week-layout__img,
  .week-layout__media img {
    min-height: 240px;
    height: 260px;
  }
  .site-footer__grid { grid-template-columns: 1fr 1fr; }
  .topbar { display: none; }
}

@media (max-width: 600px) {
  .site-footer__grid { grid-template-columns: 1fr; }
  .rental-hero { min-height: 70vh; }
  .carousel-btn { display: none; }
  .social-proof__carousel { grid-template-columns: 1fr; }
}
