/* =============================================
 * Motorhomerentals.nz — Content Pages Styles
 * Shared layout for all Phase 3 content pages.
 * Version: 1.0.0
 * ============================================= */

/* --- Page Wrapper --- */
.content-page {
  background: var(--light-bg);
}

/* =============================================
 * HERO SECTION
 * ============================================= */
.cp-hero {
  background: var(--dark-bg);
  padding: 100px 20px 60px;
  text-align: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.cp-hero__inner {
  max-width: 800px;
  margin: 0 auto;
}

.cp-hero__eyebrow {
  display: block;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--accent-gold);
  margin-bottom: 16px;
}

.cp-hero__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 44px;
  line-height: 1.2;
  color: var(--dark-text);
  margin: 0;
  overflow-wrap: break-word;
}

.cp-hero__intro {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 18px;
  line-height: 1.6;
  color: var(--dark-muted);
  margin: 20px 0 0;
}

/* =============================================
 * BREADCRUMB
 * ============================================= */
.cp-breadcrumb {
  background: var(--light-bg);
  padding: 16px 0;
}

.cp-breadcrumb__inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 13px;
  color: var(--light-muted);
}

.content-page .cp-breadcrumb a {
  color: var(--light-muted);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.content-page .cp-breadcrumb a:hover {
  color: var(--accent-gold);
}

/* =============================================
 * MAIN CONTENT
 * ============================================= */
.cp-main {
  background: var(--light-bg);
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 20px 80px;
}

/* Two-column layout when TOC sidebar is present (desktop only). */
.cp-main--has-toc {
  max-width: 1120px;
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 40px;
  align-items: start;
}

/* Sidebar container — sticky on desktop. */
.cp-sidebar {
  position: sticky;
  top: 100px;
  max-height: calc(100vh - 120px);
  overflow-y: auto;
}

/* Content column inherits single-column max-width for readability. */
.cp-main--has-toc .cp-content {
  max-width: 800px;
}

/* --- Typography --- */
.content-page .cp-main h2 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 28px;
  color: var(--light-text);
  margin: 48px 0 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--accent-gold);
  border-bottom-width: 2px;
  /* Gold underline limited to 60px */
  background-image: linear-gradient(var(--accent-gold), var(--accent-gold));
  background-size: 60px 2px;
  background-position: bottom left;
  background-repeat: no-repeat;
  border-bottom: none;
}

.content-page .cp-main h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 22px;
  color: var(--light-text);
  margin: 36px 0 16px;
}

.content-page .cp-main p {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 16px;
  color: var(--light-text);
  line-height: 1.7;
  margin: 0 0 20px;
}

.content-page .cp-main a {
  color: var(--accent-gold);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.content-page .cp-main a:hover {
  text-decoration: underline;
  color: var(--accent-hover);
}

.content-page .cp-main ul,
.content-page .cp-main ol {
  margin: 0 0 20px;
  padding-left: 24px;
  line-height: 1.7;
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 16px;
  color: var(--light-text);
}

.content-page .cp-main li {
  margin-bottom: 6px;
}

.content-page .cp-main strong {
  font-weight: 500;
}

.content-page .cp-main blockquote {
  border-left: 3px solid var(--accent-gold);
  padding-left: 24px;
  margin: 24px 0;
  font-style: italic;
  color: var(--light-muted);
}

/* --- Tables --- */
.content-page .cp-main table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  font-family: var(--font-body);
  font-size: 15px;
}

.content-page .cp-main th {
  text-align: left;
  font-weight: 500;
  color: var(--light-text);
  padding: 12px 16px;
  border-bottom: 2px solid var(--light-border);
}

.content-page .cp-main td {
  padding: 10px 16px;
  color: var(--light-text);
  border-bottom: 1px solid var(--light-border);
}

.content-page .cp-main tr:nth-child(even) td {
  background: rgba(201, 169, 110, 0.06);
}

/* Table scroll wrapper — prevents wide tables from causing horizontal overflow */
.content-page .cp-main .table-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 24px 0;
}

.content-page .cp-main .table-scroll table {
  margin: 0;
}

/* =============================================
 * BOTTOM CTA
 * ============================================= */
.cp-cta {
  background: var(--dark-bg, #1A1814);
  padding: 80px 20px;
  text-align: center;
}

.cp-cta__inner {
  max-width: 700px;
  margin: 0 auto;
}

/* Specificity boosted with .cp-cta prefix to override Elementor kit
   global heading color (.elementor-kit-* h2). */
.cp-cta .cp-cta__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 36px;
  color: var(--dark-text, #F5F0E8);
  margin: 0;
}

.cp-cta .cp-cta__text {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 18px;
  color: var(--dark-muted, #9A9088);
  margin: 16px 0 32px;
  line-height: 1.6;
}

.cp-cta__buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* =============================================
 * TABLE OF CONTENTS — Sidebar style
 * ============================================= */
.cp-toc {
  padding: 0;
  margin: 0;
}

/* Toggle button — plain label on desktop, interactive on mobile.
   High specificity needed to override Elementor/theme global button styles. */
.content-page .cp-toc button.cp-toc__toggle,
.cp-toc__toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0 0 12px;
  margin: 0;
  cursor: default;
  -webkit-appearance: none;
  appearance: none;
  color: inherit;
  font: inherit;
  outline: none;
  box-shadow: none;
  text-transform: none;
  letter-spacing: normal;
  line-height: inherit;
}

.cp-toc__title {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--light-muted);
}

/* Chevron icon — CSS triangle, rotates when collapsed. */
.cp-toc__chevron {
  display: none; /* Hidden on desktop */
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--light-muted);
  border-bottom: 2px solid var(--light-muted);
  transform: rotate(45deg);
  transition: transform 0.2s ease;
}

.cp-toc__toggle[aria-expanded="false"] .cp-toc__chevron {
  transform: rotate(-45deg);
}

.cp-toc__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.cp-toc__list li {
  margin-bottom: 0;
}

.cp-toc__list a {
  display: block;
  color: var(--light-muted);
  text-decoration: none;
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.4;
  padding: 6px 0 6px 12px;
  border-left: 2px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.cp-toc__list a:hover {
  color: var(--accent-gold);
}

/* Active state — scroll-spy highlights current section. */
.cp-toc__list a.is-active {
  color: var(--accent-gold);
  border-left-color: var(--accent-gold);
  font-weight: 500;
}

/* =============================================
 * INSURANCE PAGE — TWO-SECTION LAYOUT
 * ============================================= */

/* Section 1: Plan selector — white panel containing cards + detail panels */
.insurance-selector {
  background: #fff;
  border-radius: 4px;
  padding: 40px;
  margin-bottom: 48px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.06);
}

/* Section 2: General info — warm off-white, visually distinct */
.insurance-general {
  background: #F5F3EF;
  border-radius: 4px;
  padding: 48px 40px;
  margin-bottom: 48px;
}

.insurance-general__title {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 700;
  color: var(--light-text, #1A1814);
  margin: 0 0 24px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--accent-gold, #C9A96E);
  /* Override the cp-main h2 background-image underline for this element */
  background-image: none;
}

/* =============================================
 * INSURANCE CARDS
 * ============================================= */
.insurance-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 0;
}

.insurance-card {
  background: var(--light-card);
  border: 1px solid var(--light-border);
  padding: 32px 24px;
  text-align: center;
  position: relative;
  cursor: pointer;
  transition: border-color 300ms ease, box-shadow 300ms ease;
}

.insurance-card:hover {
  border-color: var(--accent-gold);
  box-shadow: var(--shadow-warm-hover);
}

/* Featured badge styling is on .insurance-card__badge (absolute positioned).
 * The gold border now ONLY comes from --active state, not --featured.
 * This prevents the "recommended" card from always looking selected. */
.insurance-card--featured {
  border-color: var(--light-border, rgba(0,0,0,0.08));
  border-width: 1px;
}

/* Active state — only the selected tab gets gold border + glow */
.insurance-card--active {
  border-color: var(--accent-gold, #C9A96E) !important;
  border-width: 2px !important;
  box-shadow: 0 4px 16px rgba(201, 169, 110, 0.15);
}

/* Per-plan detail panels below cards */
.insurance-plan-details {
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid rgba(0,0,0,0.08);
}

.insurance-plan-detail {
  animation: insuranceFadeIn 300ms ease;
}

@keyframes insuranceFadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

.insurance-card__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent-gold);
  color: var(--dark-bg);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 4px 16px;
}

.insurance-card__name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 22px;
  color: var(--light-text);
  margin: 8px 0 16px;
}

.insurance-card__price {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 28px;
  color: var(--accent-gold);
  margin: 0 0 16px;
}

.insurance-card__detail {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--light-muted);
  margin: 8px 0;
}

.insurance-card__cta {
  display: inline-block;
  margin-top: 24px;
  padding: 12px 28px;
  background: var(--accent-gold);
  color: var(--dark-bg);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-decoration: none;
  transition: background var(--transition);
}

.insurance-card__cta:hover {
  background: var(--accent-hover);
  text-decoration: none;
  color: var(--dark-bg);
}

.insurance-card__details {
  margin: 16px 0 0;
  padding: 0;
}

.insurance-card__details dt {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--light-muted);
  margin-top: 12px;
}

.insurance-card__details dd {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 18px;
  color: var(--light-text);
  margin: 4px 0 0;
}

/* =============================================
 * INTERNAL LINKS NAVIGATION
 * ============================================= */
.cp-internal-links {
  display: flex;
  gap: 24px;
  justify-content: center;
  align-items: center;
  margin: 48px 0 0;
  padding: 32px 0 0;
  border-top: 1px solid var(--light-border);
}

.cp-internal-links a {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 15px;
  color: var(--accent-gold);
  text-decoration: none;
  white-space: nowrap;
  transition: color var(--transition-fast);
}

.cp-internal-links a:hover {
  color: var(--accent-hover);
  text-decoration: underline;
}

.cp-internal-links a + a {
  position: relative;
  padding-left: 24px;
}

.cp-internal-links a + a::before {
  content: '|';
  position: absolute;
  left: 0;
  color: var(--light-muted);
  font-weight: 300;
}

/* =============================================
 * BOOKING HIGHLIGHTS
 * ============================================= */
.booking-highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 0 0 40px;
}


/* =============================================
 * ABOUT PAGE
 * ============================================= */
.about-story {
  margin: 0 0 60px;
}

.about-story--has-image {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 40px;
  align-items: start;
}

.about-story__image img {
  width: 100%;
  height: auto;
  display: block;
}

.about-story__text h2:first-child {
  margin-top: 0;
}

.about-why-section {
  margin: 60px 0 0;
}

/* ── Why Book Editorial (alternating split) ── */
.why-editorial {
  margin: 40px 0 0;
}

.why-editorial__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 260px;
  margin-bottom: 24px;
  border: 1px solid var(--light-border);
  overflow: hidden;
}

/* Alternate: image right, content left */
.why-editorial__row--img-right {
  direction: rtl;
}
.why-editorial__row--img-right > * {
  direction: ltr;
}

/* Image panel */
.why-editorial__image {
  background-color: #E8E3DA;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 260px;
}

/* Text panel — warm cream, matching site style */
.why-editorial__content {
  background: var(--light-card);
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.content-page .why-editorial__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 24px;
  color: var(--light-text);
  margin: 0 0 12px;
  position: relative;
  padding-bottom: 16px;
}

/* Gold underline accent under title */
.content-page .why-editorial__title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: #C9A96E;
}

.content-page .why-editorial__text,
.content-page .why-editorial__text p {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 15px;
  color: var(--light-muted);
  line-height: 1.7;
  margin: 0;
}

/* =============================================
 * REVIEWS
 * ============================================= */
.review-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 40px 0;
}

.review-card {
  background: var(--light-card);
  border: 1px solid var(--light-border);
  padding: 32px 24px;
}

.review-card__stars,
.review-stars {
  display: flex;
  gap: 4px;
  margin: 0 0 16px;
}

.review-card__stars svg,
.review-stars svg {
  width: 18px;
  height: 18px;
}

.review-card__text {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 15px;
  color: var(--light-text);
  line-height: 1.7;
  margin: 0 0 20px;
  font-style: italic;
}

.review-card__author,
.review-card__name {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 14px;
  color: var(--light-text);
}

/* Avatar circle on reviews page — matches homepage style */
.review-card__footer {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-card .review-card-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  color: white;
  flex-shrink: 0;
}

.review-card__city {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--light-muted);
  display: block;
  margin-top: 2px;
}

/* =============================================
 * INDEX CARDS
 * ============================================= */
.index-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin: 32px 0;
}

.index-card {
  display: block;
  background: var(--light-card);
  border: 1px solid var(--light-border);
  padding: 32px 28px;
  text-decoration: none;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.index-card:hover {
  border-color: var(--accent-gold);
  box-shadow: var(--shadow-warm);
  text-decoration: none;
}

.index-card__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 20px;
  color: var(--light-text);
  margin: 0 0 8px;
}

.index-card__excerpt {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 15px;
  color: var(--light-muted);
  line-height: 1.6;
  margin: 0 0 12px;
}

.index-card__link {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 14px;
  color: var(--accent-gold);
}

/* =============================================
 * USEFUL LINKS
 * ============================================= */
.links-category {
  margin: 0 0 48px;
}

.links-category:last-child {
  margin-bottom: 0;
}

.links-category__content a {
  color: var(--accent-gold);
  text-decoration: none;
  font-weight: 400;
}

.links-category__content a:hover {
  text-decoration: underline;
}

/* =============================================
 * FAQ ACCORDION (light theme, content pages)
 * ============================================= */
.content-page .faq-section {
  max-width: 800px;
  margin: 0 auto;
}

.content-page .faq-item {
  border-bottom: 1px solid var(--light-border);
}

.content-page .faq-question {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  min-height: 44px;
}

.content-page .faq-question h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 17px;
  color: var(--light-text);
  margin: 0;
  flex: 1;
}

.content-page .faq-toggle {
  color: var(--accent-gold);
  flex-shrink: 0;
  margin-left: 16px;
  transition: transform var(--transition);
}

.content-page .faq-item.open .faq-toggle {
  transform: rotate(45deg);
}

.content-page .faq-answer {
  max-height: 0;
  overflow: hidden;
  visibility: hidden; /* Prevents focus on links inside collapsed answers (a11y fix). */
  transition: max-height var(--transition), padding var(--transition), visibility 0s 400ms;
}

.content-page .faq-item.open .faq-answer {
  max-height: 600px;
  padding-bottom: 24px;
  visibility: visible;
  transition: max-height var(--transition), padding var(--transition), visibility 0s 0s;
}

.content-page .faq-answer p {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 15px;
  color: var(--light-muted);
  line-height: 1.7;
}

/* =============================================
 * SCROLL REVEAL ANIMATIONS FOR CONTENT PAGES
 * ============================================= */
.content-page .reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 600ms cubic-bezier(0.4, 0, 0.2, 1),
              transform 600ms cubic-bezier(0.4, 0, 0.2, 1);
}

.content-page .reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .content-page .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* =============================================
 * RESPONSIVE
 * ============================================= */
@media (max-width: 768px) {
  .cp-hero {
    padding: 80px 20px 40px;
  }

  .cp-hero__title {
    font-size: 30px;
  }

  .cp-hero__intro {
    font-size: 16px;
  }

  .cp-main {
    padding: 32px 16px 60px;
  }

  /* Collapse two-column to single column on tablet/mobile. */
  .cp-main--has-toc {
    display: block;
    max-width: 900px;
  }

  .cp-sidebar {
    position: static;
    max-height: none;
    overflow: visible;
    margin-bottom: 24px;
  }

  /* Show collapsible TOC on mobile — card style. */
  .cp-toc {
    background: var(--light-card, #FAFAF7);
    border: 1px solid var(--light-border, #E8E4DC);
    border-left: 3px solid var(--accent-gold, #C9A96E);
    padding: 16px 20px;
  }

  .cp-toc__toggle {
    cursor: pointer;
  }

  .cp-toc__chevron {
    display: block;
  }

  /* Collapsed state hides the list. */
  .cp-toc__toggle[aria-expanded="false"] + .cp-toc__list {
    display: none;
  }

  .cp-toc__list a {
    padding: 8px 0 8px 12px;
  }

  .cp-main h2 {
    font-size: 24px;
    margin: 36px 0 16px;
  }

  .cp-main h3 {
    font-size: 20px;
    margin: 28px 0 12px;
  }

  .cp-cta {
    padding: 60px 20px;
  }

  .cp-cta__title {
    font-size: 28px;
  }

  /* Insurance page sections responsive */
  .insurance-selector,
  .insurance-general {
    padding: 24px 16px;
  }

  /* Component grid collapses */
  .insurance-cards { grid-template-columns: 1fr; }
  .booking-highlights { grid-template-columns: 1fr; }
  .about-story--has-image { grid-template-columns: 1fr; }
  .review-cards { grid-template-columns: 1fr; }
  .index-cards { grid-template-columns: 1fr; }

  /* Editorial: stack on mobile */
  .why-editorial__row {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .why-editorial__row--img-right {
    direction: ltr;
  }
  .why-editorial__image {
    min-height: 200px;
  }
  .why-editorial__content {
    padding: 32px 24px;
  }

  .cp-internal-links {
    flex-direction: column;
    gap: 12px;
  }

  .cp-internal-links a + a {
    padding-left: 0;
  }

  .cp-internal-links a + a::before {
    display: none;
  }

  /* CTA buttons full-width on mobile */
  .cp-cta__buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .cp-cta__buttons .btn-gold-cta,
  .cp-cta__buttons .btn-outline-gold {
    width: 100%;
    text-align: center;
  }
}

/* =============================================
 * 404 PAGE
 * ============================================= */

.mhr-404-page {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 24px;
    background: var(--bg-primary, #0A0A0A);
}

.mhr-404-inner {
    max-width: 600px;
}

.mhr-404-code {
    font-family: var(--font-heading, 'Playfair Display', Georgia, serif);
    font-size: clamp(80px, 15vw, 160px);
    font-weight: 700;
    color: var(--accent-gold, #C9A96E);
    line-height: 1;
    display: block;
    margin-bottom: 16px;
}

.mhr-404-title {
    font-family: var(--font-heading, 'Playfair Display', Georgia, serif);
    color: var(--text-primary, #F5F5F5);
    font-size: clamp(24px, 4vw, 36px);
    font-weight: 700;
    margin: 0 0 16px;
}

.mhr-404-message {
    font-family: var(--font-body, 'Inter', -apple-system, sans-serif);
    color: var(--text-muted, #8A8A8A);
    font-size: 18px;
    line-height: 1.6;
    max-width: 480px;
    margin: 0 auto 40px;
}

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

.mhr-404-btn {
    display: inline-block;
    padding: 14px 32px;
    font-family: var(--font-body, 'Inter', -apple-system, sans-serif);
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-primary, #F5F5F5);
    transition: var(--transition-smooth, 400ms cubic-bezier(0.4, 0, 0.2, 1));
}

.mhr-404-btn:hover {
    border-color: var(--accent-gold, #C9A96E);
    color: var(--accent-gold, #C9A96E);
}

.mhr-404-btn--primary {
    background: var(--accent-gold, #C9A96E);
    color: #0A0A0A;
    border-color: var(--accent-gold, #C9A96E);
}

.mhr-404-btn--primary:hover {
    background: var(--accent-hover, #B8944F);
    border-color: var(--accent-hover, #B8944F);
    color: #0A0A0A;
}

@media (max-width: 767px) {
    .mhr-404-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .mhr-404-btn {
        text-align: center;
    }
}

/* =============================================
 * BOOKING HIGHLIGHT CARDS
 * Gold-accented key info cards for Booking Info page.
 * ============================================= */
.booking-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 0 0 40px;
}

.booking-highlight-card {
    background: var(--dark-bg);
    border: 1px solid var(--accent-gold);
    border-radius: 12px;
    padding: 24px;
    text-align: center;
}

.booking-highlight-card__label {
    display: block;
    font-family: var(--font-body);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--accent-gold);
    margin: 0 0 8px;
}

.booking-highlight-card__value {
    display: block;
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 700;
    color: var(--dark-text);
}

/* =============================================
 * STAR RATING COLOR — CSS-controlled via currentColor
 * ============================================= */
.review-stars .star--filled {
    color: var(--accent-gold);
}

.review-stars .star--empty {
    color: var(--accent-gold);
}
