@import url('https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700&family=Montserrat:wght@400;700;900&display=swap');

:root {
  /* Site Theme Custom Variables (LIGHT THEME - Warm Natural tone) */
  --mobility-canvas: #fcfbf7;
  --mobility-onyx: #1a1e1a;
  --mobility-emerald: #2e5a44;
  --mobility-emerald-hover: #224332;
  --mobility-mint: #e8f2ec;
  --mobility-gold: #d4a373;
  --mobility-light-border: rgba(46, 90, 68, 0.15);
  
  /* Formatting variables */
  --font-display: 'Montserrat', sans-serif;
  --font-body: 'Lato', sans-serif;
  --border-radius-style: 16px; /* Soft style */
  --shadow-depth: 0 10px 30px -10px rgba(0,0,0,0.08); /* Raised style */
  --section-padding-scale: 10dvh; /* Normal padding */
}

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

html {
  scroll-behavior: smooth;
}

body.mobility-body-canvas {
  background-color: var(--mobility-canvas);
  color: var(--mobility-onyx);
  font-family: var(--font-body);
  line-height: 1.6;
  font-size: 1rem;
}

/* Scroll-Driven Progress Line */
@keyframes progress-grow {
  to { width: 100%; }
}
.scroll-progress-indicator {
  height: 3px;
  width: 0;
  background-color: var(--mobility-emerald);
  animation: progress-grow linear;
  animation-timeline: scroll();
  position: absolute;
  bottom: 0;
  left: 0;
}

/* Header & Navigation */
.joint-header-container {
  background-color: #ffffff;
  border-bottom: 2px solid var(--mobility-light-border);
  position: sticky;
  top: 0;
  z-index: 1000;
  height: 80px;
}

.joint-header-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  height: 100%;
  margin: 0 auto;
  padding: 0 2rem;
}

.joint-logo-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: var(--mobility-emerald);
}

.joint-logo-icon {
  stroke: var(--mobility-emerald);
}

.joint-logo-text {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.5rem;
  letter-spacing: 1px;
}

.joint-navigation-panel {
  display: flex;
  gap: 2.5rem;
}

.joint-nav-link {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--mobility-onyx);
  letter-spacing: 1.5px;
  position: relative;
  padding: 0.5rem 0;
  transition: color 0.3s ease;
}

.joint-nav-link:hover {
  color: var(--mobility-emerald);
}

/* Mobile Hamburger Checkbox Hack */
.joint-menu-checkbox {
  display: none;
}

.joint-menu-button {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
}

.joint-menu-button span {
  width: 30px;
  height: 3px;
  background-color: var(--mobility-emerald);
  transition: all 0.3s ease;
}

/* Scroll View-Reveal Animation */
@keyframes slide-up {
  from {
    opacity: 0;
    transform: translateY(45px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.reveal-block {
  animation: slide-up 0.6s cubic-bezier(0.16, 1, 0.3, 1) both;
  animation-timeline: view();
  animation-range: entry 0% entry 35%;
}

/* PRESET H HERO SECTION: Bold Word-by-word layout */
.index-hero-layout {
  min-height: calc(100vh - 80px);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 8dvh 10% 8dvh 10%;
  position: relative;
}

.index-hero-title-group {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.index-hero-title-word {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 8vw, 7.5rem);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -2px;
  text-transform: uppercase;
}

.index-hero-title-word.shift-left {
  align-self: flex-start;
}

.index-hero-title-word.shift-right {
  align-self: flex-end;
  text-align: right;
}

.text-highlight {
  color: var(--mobility-emerald);
  text-decoration: underline;
  text-decoration-color: var(--mobility-gold);
  text-underline-offset: 6px;
}

.index-hero-desc {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 300;
  max-width: 600px;
  margin-top: 3rem;
  margin-bottom: 2.5rem;
}

.index-hero-action {
  display: inline-block;
  background-color: var(--mobility-emerald);
  color: #ffffff;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  padding: 1.2rem 2.8rem;
  border-radius: var(--border-radius-style);
  box-shadow: var(--shadow-depth);
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.index-hero-action:hover {
  background-color: var(--mobility-emerald-hover);
  transform: translateY(-3px);
}

/* SECTION VISUAL HEADING */
.index-section-visual-heading {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 900;
  letter-spacing: 4px;
  color: var(--mobility-gold);
  text-transform: uppercase;
  margin-bottom: 3rem;
  text-align: center;
}

/* INDEX CONTENT (Preset H - 3 Column Text Masonry style) */
.index-content-trio-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: var(--section-padding-scale) 2rem;
}

.index-content-trio {
  column-count: 3;
  column-gap: 3rem;
  column-rule: 1px solid var(--mobility-light-border);
}

.index-content-column {
  break-inside: avoid;
  margin-bottom: 2rem;
  position: relative;
}

.index-content-column-header {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.index-content-column-body {
  font-size: 1.05rem;
  color: rgba(26, 30, 26, 0.8);
  margin-bottom: 1.5rem;
}

.index-content-column-svg {
  color: var(--mobility-emerald);
  display: inline-block;
}

/* Banner bg2.webp across width */
.index-content-banner {
  height: 50vh;
  min-height: 380px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  padding-left: 10%;
  margin-top: 2rem;
}

.index-content-banner-text {
  max-width: 550px;
  color: #ffffff;
}

.index-content-banner-title {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 900;
  margin-bottom: 1rem;
}

.index-content-banner-desc {
  font-size: 1.15rem;
  font-weight: 300;
  opacity: 0.9;
}

/* MANIFESTO / FEATURES (Preset H Inline Lines) */
.index-manifesto-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: var(--section-padding-scale) 2rem;
}

.index-manifesto-stack {
  display: flex;
  flex-direction: column;
}

.index-manifesto-item {
  display: flex;
  align-items: baseline;
  gap: 2.5rem;
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--mobility-light-border);
}

.index-manifesto-item:last-child {
  border-bottom: none;
}

.index-manifesto-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 900;
  color: var(--mobility-emerald);
  opacity: 0.35;
}

.index-manifesto-content {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 1.5rem;
  width: 100%;
}

.index-manifesto-header {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
  flex: 0 0 320px;
}

.index-manifesto-desc {
  font-size: 1.1rem;
  color: rgba(26, 30, 26, 0.75);
  flex: 1;
}

/* HOW IT WORKS (Preset H Rotated stepped items) */
.index-steps-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: var(--section-padding-scale) 2rem;
}

.index-steps-asym {
  display: flex;
  flex-direction: column;
  gap: 6rem;
  margin-top: 4rem;
}

.index-steps-item {
  display: flex;
  align-items: flex-start;
  position: relative;
  width: 55%;
}

.index-steps-item.pos-left {
  align-self: flex-start;
}

.index-steps-item.pos-right {
  align-self: flex-end;
}

.index-steps-item.pos-center {
  align-self: center;
  width: 50%;
}

.index-steps-decor-num {
  font-family: var(--font-display);
  font-size: 7.5rem;
  font-weight: 900;
  line-height: 1;
  color: var(--mobility-gold);
  opacity: 0.18;
  transform: rotate(-10deg);
  position: absolute;
  top: -40px;
  left: -40px;
  z-index: 1;
}

.index-steps-info-group {
  position: relative;
  z-index: 2;
  padding-left: 2rem;
}

.index-steps-title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
}

.index-steps-body {
  font-size: 1.1rem;
  color: rgba(26, 30, 26, 0.8);
}

/* CTA STRIP (Preset H Typography heavy) */
.index-alert-banner {
  padding: 6rem 10%;
  color: #ffffff;
}

.index-alert-banner-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
}

.index-alert-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 900;
  line-height: 1.1;
  max-width: 750px;
  text-transform: uppercase;
}

.index-alert-action {
  white-space: nowrap;
  display: inline-block;
  background-color: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 1.2rem 2.8rem;
  border-radius: var(--border-radius-style);
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.index-alert-action:hover {
  background-color: #ffffff;
  color: var(--mobility-emerald);
  transform: translateY(-3px);
}

/* EXPERT PAGE */
.expert-bio-block {
  max-width: 1200px;
  margin: 0 auto;
  padding: var(--section-padding-scale) 2rem;
}

.expert-bio-wrap {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: center;
}

.expert-bio-text {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.expert-bio-paragraph-drop {
  font-size: 1.25rem;
  line-height: 1.7;
}

.drop-cap-letter {
  font-family: var(--font-display);
  font-size: 4.8rem;
  font-weight: 900;
  float: left;
  line-height: 0.8;
  padding-right: 0.8rem;
  color: var(--mobility-emerald);
}

.expert-bio-paragraph-regular {
  font-size: 1.1rem;
  color: rgba(26, 30, 26, 0.82);
}

.expert-bio-cta-zone {
  margin-top: 1.5rem;
}

.expert-bio-link-button {
  display: inline-block;
  background-color: var(--mobility-emerald);
  color: #ffffff;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  padding: 1.2rem 2.8rem;
  border-radius: var(--border-radius-style);
  box-shadow: var(--shadow-depth);
  transition: background-color 0.3s ease;
}

.expert-bio-link-button:hover {
  background-color: var(--mobility-emerald-hover);
}

.expert-bio-visual {
  height: 550px;
  background-size: cover;
  background-position: center;
  border-radius: var(--border-radius-style);
  box-shadow: var(--shadow-depth);
}

/* Plain stats styling (Preset H) */
.expert-stats-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: var(--section-padding-scale) 2rem;
}

.expert-stats-linage {
  display: flex;
  justify-content: space-between;
  gap: 3rem;
  margin-top: 3rem;
}

.expert-stat-item {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.expert-stat-number {
  font-family: var(--font-display);
  font-size: 4.5rem;
  font-weight: 900;
  color: var(--mobility-emerald);
  line-height: 1;
  margin-bottom: 0.8rem;
}

.expert-stat-detail {
  font-size: 1.1rem;
  color: rgba(26, 30, 26, 0.8);
}

/* Expert Pedagogical approach */
.expert-approach-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: var(--section-padding-scale) 2rem;
}

.expert-approach-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.expert-approach-card {
  background-color: var(--mobility-mint);
  padding: 3rem 2rem;
  border-radius: var(--border-radius-style);
  transition: transform 0.3s ease;
}

.expert-approach-card:hover {
  transform: translateY(-5px);
}

.expert-approach-icon {
  color: var(--mobility-emerald);
  margin-bottom: 1.5rem;
}

.expert-approach-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.expert-approach-desc {
  font-size: 1.05rem;
  color: rgba(26, 30, 26, 0.8);
}

.expert-bg2-banner {
  height: 40vh;
  min-height: 300px;
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #ffffff;
  padding: 2rem;
}

.expert-bg2-banner h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 900;
  margin-bottom: 1rem;
}

.expert-bg2-banner p {
  font-size: 1.15rem;
  opacity: 0.9;
}

/* RESERVE PAGE */
.reserve-page-main {
  max-width: 1000px;
  margin: 0 auto;
  padding: var(--section-padding-scale) 2rem;
}

.reserve-page-hero {
  text-align: center;
  margin-bottom: 4rem;
}

.reserve-typo-heading {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 900;
  line-height: 1.1;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.reserve-typo-sub {
  font-size: 1.2rem;
  color: rgba(26, 30, 26, 0.75);
  max-width: 700px;
  margin: 0 auto;
}

/* Reserve info cards stack */
.reserve-cards-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 4rem;
}

.reserve-info-card {
  background-color: #ffffff;
  border: 1px solid var(--mobility-light-border);
  border-radius: var(--border-radius-style);
  padding: 2.5rem;
  box-shadow: var(--shadow-depth);
}

.reserve-info-card-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.reserve-info-card-header h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 900;
  text-transform: uppercase;
}

.reserve-info-card-desc {
  font-size: 1rem;
  color: rgba(26, 30, 26, 0.7);
  margin-bottom: 1.5rem;
}

.reserve-info-card-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.reserve-info-card-list li {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 1.05rem;
}

.dot-indicator {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--mobility-emerald);
}

/* Underline only form */
.reserve-form-container {
  background-color: #ffffff;
  border-radius: var(--border-radius-style);
  box-shadow: var(--shadow-depth);
  padding: 4rem 3rem;
  max-width: 680px;
  margin: 0 auto 5rem auto;
}

.reserve-form {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.reserve-form-field {
  position: relative;
}

.reserve-input,
.reserve-textarea {
  width: 100%;
  padding: 0.8rem 0;
  border: none;
  border-bottom: 2px solid var(--mobility-light-border);
  background-color: transparent;
  font-family: var(--font-body);
  font-size: 1.1rem;
  color: var(--mobility-onyx);
  outline: none;
  transition: border-bottom-color 0.3s ease;
}

.reserve-textarea {
  height: 120px;
  resize: none;
}

.reserve-input:focus,
.reserve-textarea:focus {
  border-bottom-color: var(--mobility-emerald);
}

.reserve-label {
  position: absolute;
  top: 0.8rem;
  left: 0;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  color: rgba(26, 30, 26, 0.4);
  pointer-events: none;
  transition: all 0.3s ease;
}

.reserve-input:focus ~ .reserve-label,
.reserve-input:not(:placeholder-shown) ~ .reserve-label,
.reserve-textarea:focus ~ .reserve-label,
.reserve-textarea:not(:placeholder-shown) ~ .reserve-label {
  top: -1.2rem;
  font-size: 0.75rem;
  color: var(--mobility-emerald);
}

.reserve-checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.reserve-checkbox-input {
  width: 18px;
  height: 18px;
  accent-color: var(--mobility-emerald);
  cursor: pointer;
  margin-top: 0.2rem;
}

.reserve-checkbox-label {
  font-size: 0.95rem;
  color: rgba(26, 30, 26, 0.75);
}

.reserve-checkbox-label a {
  color: var(--mobility-emerald);
  text-decoration: underline;
}

.reserve-form-submit-wrap {
  margin-top: 1rem;
}

.reserve-form-submit-btn {
  width: 100%;
  background-color: var(--mobility-emerald);
  color: #ffffff;
  border: none;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 1.2rem;
  border-radius: var(--border-radius-style);
  cursor: pointer;
  box-shadow: var(--shadow-depth);
  transition: background-color 0.3s ease;
}

.reserve-form-submit-btn:hover {
  background-color: var(--mobility-emerald-hover);
}

.reserve-contact-direct {
  margin-top: 2.5rem;
  text-align: center;
  font-size: 0.95rem;
  color: rgba(26, 30, 26, 0.6);
}

.reserve-email-link {
  display: block;
  font-weight: 700;
  color: var(--mobility-emerald);
  text-decoration: none;
  margin-top: 0.3rem;
}

/* FAQ below reserve */
.reserve-faq-container {
  border-top: 2px solid var(--mobility-light-border);
  padding-top: 4rem;
  margin-top: 2rem;
}

.reserve-faq-title {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 900;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 3rem;
}

.reserve-faq-list {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.reserve-faq-item {
  border-bottom: 1px solid var(--mobility-light-border);
  padding-bottom: 2rem;
}

.reserve-faq-item:last-child {
  border-bottom: none;
}

.reserve-faq-question {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
}

.reserve-faq-answer {
  font-size: 1.05rem;
  color: rgba(26, 30, 26, 0.8);
}

/* PRIVACY & TERMS LEGAL LAYOUT */
.legal-page-content {
  max-width: 800px;
  margin: 0 auto;
  padding: var(--section-padding-scale) 2rem;
  min-height: 80vh;
}

.legal-page-title {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 3rem;
  border-bottom: 3px solid var(--mobility-emerald);
  padding-bottom: 1rem;
}

.legal-section {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
  margin-bottom: 4rem;
}

.legal-section p {
  font-size: 1.1rem;
  color: rgba(26, 30, 26, 0.85);
  line-height: 1.7;
}

.legal-section-subtitle {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 900;
  text-transform: uppercase;
  margin-top: 1.5rem;
  color: var(--mobility-emerald);
}

/* THANK YOU LAYOUT */
.thank-you-layout-base {
  min-height: calc(100vh - 80px);
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 4rem 2rem;
}

.thank-you-message-box {
  background-color: #ffffff;
  border-radius: var(--border-radius-style);
  border: 1px solid var(--mobility-light-border);
  box-shadow: var(--shadow-depth);
  padding: 4rem 3rem;
  max-width: 600px;
  text-align: center;
  animation: slide-up 0.5s ease-out;
}

.thank-you-tick-icon {
  margin-bottom: 1.5rem;
}

.thank-you-title {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 900;
  text-transform: uppercase;
  color: var(--mobility-emerald);
  margin-bottom: 1.5rem;
}

.thank-you-desc {
  font-size: 1.15rem;
  color: var(--mobility-onyx);
  margin-bottom: 1rem;
}

.thank-you-subdesc {
  font-size: 1.05rem;
  color: rgba(26, 30, 26, 0.7);
  margin-bottom: 2.5rem;
}

.thank-you-return-btn {
  display: inline-block;
  background-color: var(--mobility-emerald);
  color: #ffffff;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  padding: 1.2rem 2.8rem;
  border-radius: var(--border-radius-style);
  box-shadow: var(--shadow-depth);
  transition: background-color 0.3s ease;
}

.thank-you-return-btn:hover {
  background-color: var(--mobility-emerald-hover);
}

/* FOOTER BASE */
.joint-footer-base {
  background-color: var(--mobility-onyx);
  color: #ffffff;
  padding: 5rem 2rem 2rem 2rem;
}

.joint-footer-wrap {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 4rem;
  border-bottom: 1px solid rgba(252, 251, 247, 0.1);
  padding-bottom: 3rem;
  margin-bottom: 2rem;
}

.joint-footer-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.joint-footer-info .joint-logo-link {
  color: #ffffff;
}

.joint-footer-info .joint-logo-icon {
  stroke: #ffffff;
}

.joint-footer-disclaimer {
  font-size: 0.9rem;
  color: rgba(252, 251, 247, 0.6);
  line-height: 1.6;
}

.joint-footer-links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-end;
}

.joint-footer-link {
  color: rgba(252, 251, 247, 0.8);
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  transition: color 0.3s ease;
}

.joint-footer-link:hover {
  color: var(--mobility-gold);
}

.joint-footer-copy {
  text-align: center;
  font-size: 0.85rem;
  color: rgba(252, 251, 247, 0.4);
}

/* COOKIE BANNER STYLE */
.cookie-banner-wrap {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--mobility-onyx);
  color: #ffffff;
  border-top: 3px solid var(--mobility-gold);
  padding: 1.5rem 2rem;
  z-index: 9999;
  display: none;
}

.cookie-banner-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.cookie-banner-text {
  font-size: 1rem;
  color: rgba(252, 251, 247, 0.9);
}

.cookie-banner-actions {
  display: flex;
  gap: 1rem;
  flex-shrink: 0;
}

.cookie-btn-accept {
  background-color: var(--mobility-emerald);
  color: #ffffff;
  border: none;
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  padding: 0.8rem 1.8rem;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.cookie-btn-accept:hover {
  background-color: var(--mobility-emerald-hover);
}

.cookie-btn-decline {
  background-color: transparent;
  color: rgba(252, 251, 247, 0.7);
  border: 1px solid rgba(252, 251, 247, 0.3);
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  padding: 0.8rem 1.8rem;
  border-radius: 4px;
  cursor: pointer;
  transition: color 0.3s ease, border-color 0.3s ease;
}

.cookie-btn-decline:hover {
  color: #ffffff;
  border-color: #ffffff;
}

/* Responsive CSS */
@media (max-width: 1024px) {
  .index-content-trio {
    column-count: 2;
  }
}

@media (max-width: 768px) {
  /* Hamburger Menu Show */
  .joint-menu-button {
    display: flex;
  }

  .joint-navigation-panel {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    background-color: #ffffff;
    border-bottom: 2px solid var(--mobility-light-border);
    padding: 2rem;
    gap: 1.5rem;
    box-shadow: 0 10px 15px rgba(0,0,0,0.05);
  }

  .joint-menu-checkbox:checked ~ .joint-navigation-panel {
    display: flex;
  }

  /* Hamburger transform animation */
  .joint-menu-checkbox:checked ~ .joint-menu-button span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }
  .joint-menu-checkbox:checked ~ .joint-menu-button span:nth-child(2) {
    opacity: 0;
  }
  .joint-menu-checkbox:checked ~ .joint-menu-button span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }

  /* Hero adjustments */
  .index-hero-layout {
    padding: 6dvh 5%;
    align-items: center;
    text-align: center;
  }
  
  .index-hero-title-word.shift-left,
  .index-hero-title-word.shift-right {
    align-self: center;
    text-align: center;
  }

  /* Content elements stack */
  .index-content-trio {
    column-count: 1;
  }

  .index-manifesto-item {
    flex-direction: column;
    gap: 0.5rem;
  }

  .index-manifesto-content {
    flex-direction: column;
    gap: 0.5rem;
  }

  .index-manifesto-header {
    flex: none;
    width: 100%;
  }

  /* Rotated steps */
  .index-steps-item,
  .index-steps-item.pos-center {
    width: 100%;
    align-self: flex-start !important;
  }

  /* CTA Wrap */
  .index-alert-banner-wrap {
    flex-direction: column;
    text-align: center;
  }

  /* Expert bio */
  .expert-bio-wrap {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .expert-bio-visual {
    height: 350px;
  }

  .expert-stats-linage {
    flex-direction: column;
    gap: 2.5rem;
  }

  .expert-approach-grid {
    grid-template-columns: 1fr;
  }

  /* Reserve Page */
  .reserve-cards-section {
    grid-template-columns: 1fr;
  }

  .reserve-form-container {
    padding: 2.5rem 1.5rem;
  }

  .joint-footer-wrap {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .joint-footer-links {
    align-items: flex-start;
  }

  .cookie-banner-content {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }

  .cookie-banner-actions {
    justify-content: center;
  }
}