/* ==========================================================================
   COLOR SCHEME & CSS VARIABLES (Preset I: Neumorphic / Modern Light Clean)
   ========================================================================== */
:root {
  /* Dynamic topic-based variables (No banned generic terms) */
  --rv-canvas-bg: #fdfbf7;       /* Rich organic cream/white background */
  --rv-card-surface: #ffffff;    /* Pure contrast surface */
  --rv-vital-coral: #e65f5c;     /* Main vital accent */
  --rv-vital-coral-hover: #cf4f4c;
  --rv-emerald-tone: #3f827f;    /* Secondary wellness tint */
  --rv-charcoal-ink: #1a1e24;    /* Deep high-contrast body text */
  --rv-driftwood-ink: #5c626a;   /* Muted readable text */
  --rv-sunset-gradient: linear-gradient(135deg, #e65f5c 0%, #f3a060 100%);
  --rv-cloud-divider: #e9ecef;
  
  /* Typography */
  --font-display: 'Montserrat', sans-serif;
  --font-body: 'Poppins', sans-serif;

  /* Shadows */
  --rv-raised-shadow: 0 10px 30px rgba(26, 30, 36, 0.05);
  --rv-deep-shadow: 0 20px 40px rgba(26, 30, 36, 0.1);
  
  /* Sizing scale */
  --rv-rounded-pill: 999px;
  --rv-rounded-soft: 16px;
  --section-padding: 10dvh;
}

/* ==========================================================================
   RESET & SYSTEM BASICS
   ========================================================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  background-color: var(--rv-canvas-bg);
  color: var(--rv-charcoal-ink);
  font-family: var(--font-body);
}

body {
  overflow-x: hidden;
  line-height: 1.6;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  color: var(--rv-charcoal-ink);
  text-transform: uppercase;
}

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.3s ease;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ==========================================================================
   SCROLL-DRIVEN ANIMATIONS
   ========================================================================== */
@keyframes progress-grow {
  to { width: 100%; }
}

.rv-scroll-progress-line {
  height: 4px;
  background: var(--rv-sunset-gradient);
  width: 0;
  animation: progress-grow linear;
  animation-timeline: scroll();
  position: fixed;
  top: 70px;
  left: 0;
  z-index: 1001;
}

@keyframes slide-up-view {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.rv-reveal-on-scroll {
  animation: slide-up-view linear both;
  animation-timeline: view();
  animation-range: entry 0% entry 25%;
}

/* ==========================================================================
   HEADER & MOBILE NAVIGATION (CSS-only Hamburger)
   ========================================================================== */
.rv-main-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  height: 70px;
  background-color: rgba(253, 251, 247, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.03);
  z-index: 1000;
  transition: background-color 0.3s ease;
}

.rv-header-inner {
  max-width: 1200px;
  height: 100%;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.rv-branding-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
}

.rv-branding-logo {
  width: 32px;
  height: 32px;
  fill: var(--rv-vital-coral);
}

.rv-branding-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: 0.5px;
  color: var(--rv-charcoal-ink);
}

.rv-nav-container {
  display: flex;
  align-items: center;
  gap: 30px;
}

.rv-nav-links-list {
  display: flex;
  align-items: center;
  gap: 25px;
  list-style: none;
}

.rv-header-link {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--rv-driftwood-ink);
  letter-spacing: 0.5px;
}

.rv-header-link:hover,
.rv-header-link.active {
  color: var(--rv-vital-coral);
}

/* Redirection wrapper button */
.rv-cta-action-pill {
  display: inline-flex;
  align-items: center;
  padding: 10px 22px;
  background: var(--rv-sunset-gradient);
  color: #fff;
  border-radius: var(--rv-rounded-pill);
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(230, 95, 92, 0.2);
}

.rv-cta-action-pill:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(230, 95, 92, 0.3);
}

/* Hamburger check logic */
.rv-hamburger-toggle {
  display: none;
}

.rv-hamburger-label {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  cursor: pointer;
}

.rv-hamburger-span {
  width: 100%;
  height: 2px;
  background-color: var(--rv-charcoal-ink);
  transition: all 0.3s ease;
}

/* ==========================================================================
   HERO / BILLBOARD SECTION (Index Page)
   ========================================================================== */
.rv-hero-billboard {
  position: relative;
  min-height: calc(100vh - 70px);
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: var(--section-padding) 0;
}

.rv-hero-billboard::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(26, 30, 36, 0.65);
  z-index: 1;
}

.rv-hero-container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 24px;
}

.rv-hero-content-span {
  max-width: 650px;
  color: #ffffff;
}

.rv-hero-title {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  color: #ffffff;
  margin-bottom: 20px;
  line-height: 1.1;
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.rv-hero-description {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 35px;
  font-weight: 300;
  max-width: 550px;
}

/* ==========================================================================
   BENTO GRID FEATURES PANEL (Preset I Design)
   ========================================================================== */
.rv-bento-section {
  padding: var(--section-padding) 0;
  background-color: var(--rv-canvas-bg);
}

.rv-section-intro {
  max-width: 800px;
  margin: 0 auto 60px auto;
  text-align: center;
  padding: 0 24px;
}

.rv-section-badge {
  display: inline-block;
  padding: 6px 14px;
  background-color: rgba(63, 130, 127, 0.1);
  color: var(--rv-emerald-tone);
  border-radius: var(--rv-rounded-pill);
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

.rv-section-main-heading {
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  margin-bottom: 15px;
}

.rv-section-sub-heading {
  font-size: 1rem;
  color: var(--rv-driftwood-ink);
  font-weight: 400;
}

.rv-bento-mosaic {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.25rem;
}

.rv-bento-piece {
  background-color: var(--rv-card-surface);
  border-radius: var(--rv-rounded-soft);
  padding: 2.5rem;
  box-shadow: var(--rv-raised-shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.rv-bento-piece:hover {
  transform: translateY(-4px);
  box-shadow: var(--rv-deep-shadow);
}

/* Bento Span variations */
.rv-bento-span-4 {
  grid-column: span 4;
  background: var(--rv-sunset-gradient);
  color: #ffffff;
}

.rv-bento-span-4 h3 {
  color: #ffffff;
}

.rv-bento-span-2 {
  grid-column: span 2;
  align-items: center;
  text-align: center;
}

.rv-bento-span-3 {
  grid-column: span 3;
}

.rv-bento-span-6 {
  grid-column: span 6;
  flex-direction: row;
  align-items: center;
  gap: 30px;
}

/* Bento assets inside */
.rv-bento-icon-box {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: rgba(230, 95, 92, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  flex-shrink: 0;
}

.rv-bento-span-4 .rv-bento-icon-box {
  background-color: rgba(255, 255, 255, 0.2);
}

.rv-bento-icon-box svg {
  width: 24px;
  height: 24px;
  fill: var(--rv-vital-coral);
}

.rv-bento-span-4 .rv-bento-icon-box svg {
  fill: #ffffff;
}

.rv-bento-title {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.rv-bento-text {
  font-size: 0.95rem;
  color: var(--rv-driftwood-ink);
}

.rv-bento-span-4 .rv-bento-text {
  color: rgba(255, 255, 255, 0.9);
}

.rv-bento-gigantic-stat {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--rv-vital-coral);
  line-height: 1;
  margin-bottom: 5px;
}

.rv-bento-span-6-columns {
  display: flex;
  flex-direction: column;
}

/* ==========================================================================
   NARRATIVE CONTENT BLOCK (Text + bg2.webp layout)
   ========================================================================== */
.rv-narrative-panel {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: var(--section-padding) 0;
}

.rv-narrative-panel::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(253, 251, 247, 0.9);
  z-index: 1;
}

.rv-narrative-container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: flex-end;
}

.rv-narrative-card {
  max-width: 600px;
  background-color: var(--rv-card-surface);
  padding: 3rem;
  border-radius: var(--rv-rounded-soft);
  box-shadow: var(--rv-deep-shadow);
}

.rv-narrative-heading {
  font-size: 1.8rem;
  margin-bottom: 20px;
}

.rv-narrative-p {
  font-size: 0.95rem;
  color: var(--rv-driftwood-ink);
  margin-bottom: 20px;
}

/* ==========================================================================
   WORK PROCESS STEPS SECTION
   ========================================================================== */
.rv-process-section {
  padding: var(--section-padding) 0;
  background-color: var(--rv-canvas-bg);
}

.rv-process-matrix {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.rv-process-node {
  position: relative;
  padding: 2.5rem;
  background-color: var(--rv-card-surface);
  border-radius: var(--rv-rounded-soft);
  box-shadow: var(--rv-raised-shadow);
}

.rv-process-huge-number {
  position: absolute;
  top: 10px;
  right: 20px;
  font-family: var(--font-display);
  font-size: 6rem;
  font-weight: 900;
  color: var(--rv-vital-coral);
  opacity: 0.08;
  line-height: 1;
}

.rv-process-title {
  font-size: 1.15rem;
  margin-bottom: 12px;
  position: relative;
  z-index: 2;
}

.rv-process-description {
  font-size: 0.9rem;
  color: var(--rv-driftwood-ink);
  position: relative;
  z-index: 2;
}

/* ==========================================================================
   CTA STRIP
   ========================================================================== */
.rv-action-banner {
  padding: 6dvh 0;
  background: var(--rv-sunset-gradient);
  color: #ffffff;
}

.rv-action-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

.rv-action-heading {
  color: #ffffff;
  font-size: clamp(1.4rem, 3vw, 1.8rem);
  max-width: 700px;
}

.rv-cta-white-btn {
  background-color: #ffffff;
  color: var(--rv-vital-coral);
  padding: 12px 30px;
  border-radius: var(--rv-rounded-pill);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  display: inline-block;
}

.rv-cta-white-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

/* ==========================================================================
   FOOTER SYSTEM
   ========================================================================== */
.rv-footer-area {
  background-color: var(--rv-charcoal-ink);
  color: rgba(255,255,255,0.7);
  padding: 8dvh 0 4dvh 0;
  font-size: 0.9rem;
}

.rv-footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.rv-footer-top-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 40px;
  margin-bottom: 40px;
}

.rv-footer-branding {
  display: flex;
  align-items: center;
  gap: 10px;
}

.rv-footer-logo-svg {
  width: 36px;
  height: 36px;
  fill: #ffffff;
}

.rv-footer-brand-name {
  font-family: var(--font-display);
  color: #ffffff;
  font-size: 1.2rem;
  font-weight: 800;
}

.rv-footer-nav-list {
  display: flex;
  gap: 20px;
  list-style: none;
  flex-wrap: wrap;
}

.rv-footer-anchor {
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
}

.rv-footer-anchor:hover {
  color: #ffffff;
}

.rv-footer-disclaimer-card {
  background-color: rgba(255, 255, 255, 0.03);
  padding: 20px;
  border-radius: var(--rv-rounded-soft);
  margin-bottom: 30px;
  border-left: 3px solid var(--rv-vital-coral);
}

.rv-footer-disclaimer-text {
  font-size: 0.8rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.5);
}

.rv-footer-bottom-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
  font-size: 0.8rem;
}

/* ==========================================================================
   COOKIE NOTIFICATION BANNER
   ========================================================================== */
.rv-cookie-alert {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--rv-charcoal-ink);
  color: #ffffff;
  padding: 20px;
  z-index: 9999;
  box-shadow: 0 -4px 30px rgba(0,0,0,0.15);
  display: none; /* Controlled by JS */
}

.rv-cookie-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.rv-cookie-text {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.8);
  max-width: 800px;
}

.rv-cookie-button-group {
  display: flex;
  gap: 10px;
}

.rv-cookie-btn {
  padding: 8px 20px;
  border-radius: var(--rv-rounded-pill);
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
  text-transform: uppercase;
}

.rv-cookie-btn-accept {
  background: var(--rv-sunset-gradient);
  color: #ffffff;
}

.rv-cookie-btn-decline {
  background-color: rgba(255,255,255,0.1);
  color: #ffffff;
}

/* ==========================================================================
   EXPERT BIOGRAPHY LAYOUT (expert.html)
   ========================================================================== */
.rv-expert-biography {
  padding: var(--section-padding) 0;
  background-color: var(--rv-canvas-bg);
}

.rv-expert-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.rv-expert-media-wrapper {
  position: relative;
  border-radius: var(--rv-rounded-soft);
  overflow: hidden;
  box-shadow: var(--rv-deep-shadow);
}

.rv-expert-biography-details {
  display: flex;
  flex-direction: column;
}

.rv-expert-role {
  color: var(--rv-vital-coral);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.9rem;
  margin-bottom: 10px;
}

.rv-expert-name {
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-bottom: 20px;
}

.rv-expert-history {
  font-size: 0.95rem;
  color: var(--rv-driftwood-ink);
  margin-bottom: 25px;
}

/* 2x2 Bento Mini Stats inside Expert Page */
.rv-metric-dashboard {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 40px;
}

.rv-metric-tile {
  background-color: var(--rv-card-surface);
  padding: 25px;
  border-radius: var(--rv-rounded-soft);
  box-shadow: var(--rv-raised-shadow);
}

.rv-tile-number {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--rv-vital-coral);
}

.rv-tile-label {
  font-size: 0.85rem;
  color: var(--rv-driftwood-ink);
}

/* ==========================================================================
   RESERVATION & INFORMATIVE FORM SECTION (reserve.html)
   ========================================================================== */
.rv-booking-form-wrapper {
  padding: var(--section-padding) 0;
  background-color: var(--rv-canvas-bg);
}

.rv-booking-layout-split {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 4fr 5fr;
  gap: 50px;
  align-items: start;
}

.rv-booking-info-block {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.rv-booking-card-item {
  background-color: var(--rv-card-surface);
  padding: 30px;
  border-radius: var(--rv-rounded-soft);
  box-shadow: var(--rv-raised-shadow);
  display: flex;
  gap: 20px;
}

.rv-booking-bullet-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: var(--rv-vital-coral);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  flex-shrink: 0;
}

.rv-booking-card-text-col {
  display: flex;
  flex-direction: column;
}

.rv-booking-card-head {
  font-size: 1rem;
  margin-bottom: 8px;
}

.rv-booking-card-desc {
  font-size: 0.85rem;
  color: var(--rv-driftwood-ink);
}

.rv-booking-card-bullet-list {
  margin-top: 10px;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.rv-booking-bullet-point {
  font-size: 0.8rem;
  color: var(--rv-driftwood-ink);
  display: flex;
  align-items: center;
  gap: 8px;
}

.rv-booking-bullet-point::before {
  content: '';
  width: 6px;
  height: 6px;
  background-color: var(--rv-emerald-tone);
  border-radius: 50%;
  display: inline-block;
}

/* Elegant input fields */
.rv-form-panel {
  background-color: var(--rv-card-surface);
  padding: 3rem;
  border-radius: var(--rv-rounded-soft);
  box-shadow: var(--rv-deep-shadow);
}

.rv-form-headline {
  font-size: 1.5rem;
  margin-bottom: 25px;
}

.rv-field-group {
  margin-bottom: 20px;
}

.rv-label-element {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--rv-charcoal-ink);
}

.rv-input-control {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid var(--rv-cloud-divider);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  transition: border-color 0.3s ease;
  outline: none;
}

.rv-input-control:focus {
  border-color: var(--rv-vital-coral);
}

.rv-textarea-control {
  resize: vertical;
  height: 120px;
}

.rv-checkbox-wrapper {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 25px;
  margin-bottom: 25px;
}

.rv-checkbox-element {
  margin-top: 4px;
}

.rv-checkbox-label {
  font-size: 0.8rem;
  color: var(--rv-driftwood-ink);
  line-height: 1.4;
}

.rv-checkbox-label a {
  color: var(--rv-vital-coral);
  text-decoration: underline;
}

.rv-form-submit-btn {
  width: 100%;
  padding: 16px;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #fff;
  background: var(--rv-sunset-gradient);
  border: none;
  border-radius: var(--rv-rounded-pill);
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(230, 95, 92, 0.2);
}

.rv-form-submit-btn:hover {
  box-shadow: 0 6px 20px rgba(230, 95, 92, 0.3);
}

/* Contact mail Link inside booking page */
.rv-contact-mail-span {
  margin-top: 25px;
  display: block;
  font-size: 0.85rem;
  text-align: center;
}

.rv-contact-mail-link {
  color: var(--rv-vital-coral);
  font-weight: 600;
}

/* ==========================================================================
   CSS-ONLY FAQ ACCORDION BLOCK (reserve.html)
   ========================================================================== */
.rv-faq-accordion-block {
  padding: var(--section-padding) 0;
  background-color: var(--rv-card-surface);
}

.rv-faq-stack {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.rv-accordion-panel {
  border-bottom: 1px solid var(--rv-cloud-divider);
  padding-bottom: 15px;
}

.rv-accordion-trigger {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--rv-charcoal-ink);
  margin-bottom: 8px;
}

.rv-accordion-content {
  font-size: 0.88rem;
  color: var(--rv-driftwood-ink);
  line-height: 1.6;
}

/* ==========================================================================
   LEGAL DOCUMENTS STYLING (privacy / terms)
   ========================================================================== */
.rv-legal-container {
  max-width: 800px;
  margin: 0 auto;
  padding: var(--section-padding) 24px;
  min-height: 80vh;
}

.rv-legal-headline {
  font-size: 2.2rem;
  margin-bottom: 30px;
}

.rv-legal-card-body {
  display: flex;
  flex-direction: column;
  gap: 20px;
  line-height: 1.7;
}

.rv-legal-sub {
  font-size: 1.3rem;
  margin-top: 20px;
  margin-bottom: 5px;
}

.rv-legal-p {
  color: var(--rv-driftwood-ink);
  font-size: 0.95rem;
}

/* ==========================================================================
   THANK YOU VIEW Layout (thank.html)
   ========================================================================== */
.rv-thankyou-screen {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 75vh;
  display: flex;
  align-items: center;
  position: relative;
  padding: var(--section-padding) 0;
}

.rv-thankyou-screen::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(253, 251, 247, 0.93);
  z-index: 1;
}

.rv-thankyou-shell {
  position: relative;
  z-index: 2;
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  padding: 3rem;
  background-color: var(--rv-card-surface);
  border-radius: var(--rv-rounded-soft);
  box-shadow: var(--rv-deep-shadow);
}

.rv-thankyou-title {
  font-size: 2.2rem;
  margin-bottom: 15px;
}

.rv-thankyou-caption {
  font-size: 1rem;
  color: var(--rv-driftwood-ink);
  margin-bottom: 30px;
}

/* ==========================================================================
   RESPONSIVE DESIGN ADAPTABILITY
   ========================================================================== */
@media (max-width: 1024px) {
  .rv-bento-mosaic {
    grid-template-columns: repeat(2, 1fr);
  }
  .rv-bento-piece {
    grid-column: span 2 !important;
  }
  .rv-bento-span-6 {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 768px) {
  :root {
    --section-padding: 6dvh;
  }
  
  .rv-hamburger-label {
    display: flex;
  }

  .rv-nav-container {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background-color: var(--rv-canvas-bg);
    flex-direction: column;
    justify-content: flex-start;
    padding-top: 40px;
    gap: 40px;
    transition: left 0.3s ease;
    z-index: 999;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
  }

  .rv-nav-links-list {
    flex-direction: column;
    gap: 30px;
    width: 100%;
    text-align: center;
  }

  .rv-hamburger-toggle:checked ~ .rv-nav-container {
    left: 0;
  }

  .rv-hamburger-toggle:checked ~ .rv-hamburger-label .rv-hamburger-span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .rv-hamburger-toggle:checked ~ .rv-hamburger-label .rv-hamburger-span:nth-child(2) {
    opacity: 0;
  }

  .rv-hamburger-toggle:checked ~ .rv-hamburger-label .rv-hamburger-span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .rv-booking-layout-split {
    grid-template-columns: 1fr;
  }

  .rv-expert-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .rv-process-matrix {
    grid-template-columns: 1fr;
  }

  .rv-narrative-container {
    justify-content: center;
  }

  .rv-narrative-card {
    padding: 2rem;
  }

  .rv-footer-top-line {
    flex-direction: column;
    align-items: flex-start;
  }
}