@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,300;0,400;0,700;1,400&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap');

:root {
  /* Thematic CSS Variables - Magazine Editorial (Light Theme) */
  --rv-editorial-bg: #FCFAF6;
  --rv-editorial-surface: #F4EFE6;
  --rv-editorial-accent-ink: #2F4858;
  --rv-editorial-accent-warm: #D3A297;
  --rv-editorial-accent-light: #EAE1D4;
  --rv-editorial-dark-text: #1B2B34;
  --rv-editorial-muted-text: #5D6D7E;
  --rv-editorial-border: #E5DEC9;
  --rv-editorial-gradient: linear-gradient(135deg, #2F4858 0%, #4D6B7B 100%);
  
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Lato', 'Helvetica Neue', sans-serif;
  
  /* Feature Elements & Scales */
  --rv-padding-scale: 10dvh;
  --rv-border-radius: 16px; /* soft style */
  --rv-shadow-depth: 0 12px 35px rgba(47, 72, 88, 0.08); /* raised style */
}

/* Base Styles & Reset */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-family: var(--font-body);
  background-color: var(--rv-editorial-bg);
  color: var(--rv-editorial-dark-text);
  line-height: 1.6;
}

body {
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--rv-editorial-accent-ink);
  line-height: 1.25;
}

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

/* Scroll-driven animations */
@keyframes rv-slide-up {
  from {
    opacity: 0;
    transform: translateY(35px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.rv-scroll-reveal {
  animation: rv-slide-up 0.8s ease-out both;
  animation-timeline: view();
  animation-range: entry 5% entry 40%;
}

/* Dynamic Scroll Progress Bar */
@keyframes rv-progress-grow {
  to { width: 100%; }
}
.rv-progress-tracker {
  position: fixed;
  top: 0;
  left: 0;
  height: 4px;
  width: 0;
  background-color: var(--rv-editorial-accent-warm);
  z-index: 10001;
  animation: rv-progress-grow linear;
  animation-timeline: scroll();
}

/* Header Section (Preset E: Light bg, border bottom, whitespace) */
.rv-navigation-header {
  background-color: var(--rv-editorial-bg);
  border-bottom: 1px solid var(--rv-editorial-border);
  position: sticky;
  top: 0;
  z-index: 10000;
  padding: 1.5rem 2rem;
}

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

.rv-brand-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--rv-editorial-accent-ink);
}

.rv-brand-logo svg {
  width: 32px;
  height: 32px;
  fill: var(--rv-editorial-accent-warm);
}

.rv-nav-links {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}

.rv-nav-item {
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  color: var(--rv-editorial-accent-ink);
  position: relative;
  padding: 0.5rem 0;
}

.rv-nav-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--rv-editorial-accent-warm);
  transition: width 0.3s ease;
}

.rv-nav-item:hover::after,
.rv-nav-item.rv-active-link::after {
  width: 100%;
}

/* CSS Only Hamburger */
.rv-hamburger-input {
  display: none;
}

.rv-hamburger-trigger {
  display: none;
  cursor: pointer;
  flex-direction: column;
  gap: 6px;
  z-index: 10010;
}

.rv-hamburger-trigger span {
  display: block;
  width: 25px;
  height: 2px;
  background-color: var(--rv-editorial-accent-ink);
  transition: 0.3s ease;
}

/* Common Footer */
.rv-base-footer {
  background-color: var(--rv-editorial-surface);
  border-top: 1px solid var(--rv-editorial-border);
  padding: var(--rv-padding-scale) 2rem 3rem 2rem;
}

.rv-footer-shell {
  max-width: 1200px;
  margin: 0 auto;
}

.rv-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

.rv-footer-brand-segment h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.rv-footer-brand-segment p {
  color: var(--rv-editorial-muted-text);
  max-width: 500px;
  font-size: 1rem;
}

.rv-footer-links-segment {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.rv-footer-link {
  color: var(--rv-editorial-accent-ink);
  font-weight: 700;
}

.rv-footer-link:hover {
  color: var(--rv-editorial-accent-warm);
}

.rv-disclaimer-card {
  padding: 1.5rem;
  background-color: var(--rv-editorial-bg);
  border-left: 3px solid var(--rv-editorial-accent-warm);
  border-radius: var(--rv-border-radius);
  font-size: 0.9rem;
  color: var(--rv-editorial-muted-text);
  margin-bottom: 2rem;
}

.rv-copyright-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--rv-editorial-border);
  padding-top: 2rem;
  font-size: 0.85rem;
  color: var(--rv-editorial-muted-text);
}

/* index.html: Hero Editorial Split */
.rv-intro-deck {
  display: grid;
  grid-template-columns: 35% 65%;
  min-height: calc(100vh - 80px);
  border-bottom: 1px solid var(--rv-editorial-border);
}

.rv-intro-vertical-rail {
  background-color: var(--rv-editorial-accent-ink);
  color: var(--rv-editorial-accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.rv-vertical-motto {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);
  font-family: var(--font-display);
  font-size: 2.2rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--rv-editorial-accent-warm);
  font-weight: 600;
}

.rv-intro-main-media {
  position: relative;
  background-image: linear-gradient(rgba(27, 43, 52, 0.45), rgba(27, 43, 52, 0.65)), url('img/bg.webp');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  padding: 4rem;
}

.rv-intro-text-envelope {
  max-width: 650px;
  color: var(--rv-editorial-bg);
}

.rv-intro-text-envelope h1 {
  color: var(--rv-editorial-bg);
  font-size: 4rem;
  margin-bottom: 1.5rem;
  font-weight: 400;
}

.rv-intro-text-envelope p {
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
  opacity: 0.95;
  font-weight: 300;
}

/* Button Stylings */
.rv-action-trigger-solid {
  display: inline-block;
  background-color: var(--rv-editorial-accent-warm);
  color: var(--rv-editorial-accent-ink);
  padding: 1.1rem 2.5rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.85rem;
  border-radius: var(--rv-border-radius);
  box-shadow: var(--rv-shadow-depth);
  transition: transform 0.3s, background-color 0.3s;
}

.rv-action-trigger-solid:hover {
  transform: translateY(-3px);
  background-color: var(--rv-editorial-accent-light);
}

.rv-action-trigger-outline {
  display: inline-block;
  border: 1px solid var(--rv-editorial-accent-ink);
  color: var(--rv-editorial-accent-ink);
  padding: 1rem 2.2rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.85rem;
  border-radius: var(--rv-border-radius);
  transition: all 0.3s ease;
  background: transparent;
}

.rv-action-trigger-outline:hover {
  background-color: var(--rv-editorial-accent-ink);
  color: var(--rv-editorial-bg);
}

/* Pull Quote Block */
.rv-editorial-quote-block {
  background-color: var(--rv-editorial-surface);
  padding: var(--rv-padding-scale) 2rem;
  text-align: center;
  border-bottom: 1px solid var(--rv-editorial-border);
}

.rv-editorial-quote-inner {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

.rv-editorial-quote-inner blockquote {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-style: italic;
  color: var(--rv-editorial-accent-ink);
  line-height: 1.4;
  margin-bottom: 1.5rem;
}

.rv-editorial-quote-inner blockquote::before {
  content: "“";
  font-size: 6rem;
  color: var(--rv-editorial-accent-warm);
  position: absolute;
  top: -40px;
  left: -20px;
  opacity: 0.3;
}

.rv-editorial-quote-author {
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 700;
  color: var(--rv-editorial-accent-warm);
}

/* Content Split Section */
.rv-content-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  border-bottom: 1px solid var(--rv-editorial-border);
}

.rv-split-image-panel {
  height: 600px;
  background-size: cover;
  background-position: center;
}

.rv-split-text-panel {
  padding: 6rem;
}

.rv-split-text-panel h2 {
  font-size: 2.8rem;
  margin-bottom: 1.5rem;
}

.rv-split-text-panel p {
  color: var(--rv-editorial-muted-text);
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

/* Features Section (Editorial Magazine Grid) */
.rv-magazine-grid-section {
  padding: var(--rv-padding-scale) 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.rv-magazine-grid-title {
  text-align: center;
  font-size: 3rem;
  margin-bottom: 4rem;
}

.rv-magazine-grid-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
}

.rv-magazine-large-card {
  background-image: linear-gradient(rgba(27, 43, 52, 0.3), rgba(27, 43, 52, 0.85)), url('img/bg2.webp');
  background-size: cover;
  background-position: center;
  border-radius: var(--rv-border-radius);
  padding: 3.5rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 500px;
  color: var(--rv-editorial-bg);
  box-shadow: var(--rv-shadow-depth);
}

.rv-magazine-large-card h3 {
  color: var(--rv-editorial-bg);
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

.rv-magazine-small-stack {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.rv-magazine-small-card {
  background-color: var(--rv-editorial-surface);
  border-top: 4px solid var(--rv-editorial-accent-warm);
  border-radius: var(--rv-border-radius);
  padding: 2.5rem;
  box-shadow: var(--rv-shadow-depth);
  display: flex;
  gap: 1.5rem;
}

.rv-magazine-small-card svg {
  width: 48px;
  height: 48px;
  fill: var(--rv-editorial-accent-ink);
  flex-shrink: 0;
}

.rv-magazine-small-card h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.rv-magazine-small-card p {
  color: var(--rv-editorial-muted-text);
  font-size: 1rem;
}

/* How It Works (Horizontal Track with vertical line separators) */
.rv-timeline-section {
  background-color: var(--rv-editorial-surface);
  padding: var(--rv-padding-scale) 2rem;
  border-top: 1px solid var(--rv-editorial-border);
  border-bottom: 1px solid var(--rv-editorial-border);
}

.rv-timeline-container {
  max-width: 1200px;
  margin: 0 auto;
}

.rv-timeline-header {
  text-align: center;
  margin-bottom: 5rem;
}

.rv-timeline-header h2 {
  font-size: 3rem;
}

.rv-timeline-row {
  display: grid;
  grid-template-columns: 1fr 1px 1fr 1px 1fr;
  align-items: stretch;
}

.rv-timeline-step {
  padding: 2rem;
  position: relative;
}

.rv-step-bg-number {
  font-family: var(--font-display);
  font-size: 7rem;
  font-weight: 700;
  color: var(--rv-editorial-accent-warm);
  opacity: 0.12;
  position: absolute;
  top: -20px;
  left: 10px;
  line-height: 1;
}

.rv-timeline-step-content {
  position: relative;
  z-index: 2;
}

.rv-timeline-step-content h3 {
  font-size: 1.6rem;
  margin-bottom: 1rem;
}

.rv-timeline-step-content p {
  color: var(--rv-editorial-muted-text);
  font-size: 1.05rem;
}

.rv-timeline-divider {
  background-color: var(--rv-editorial-border);
  height: 100%;
  width: 1px;
}

/* CTA Strip (Cream bg, serif centered text, thin border button with hover fill) */
.rv-engagement-strip {
  background-color: var(--rv-editorial-surface);
  padding: var(--rv-padding-scale) 2rem;
  text-align: center;
}

.rv-engagement-envelope {
  max-width: 800px;
  margin: 0 auto;
}

.rv-engagement-envelope h2 {
  font-size: 3.2rem;
  margin-bottom: 1.5rem;
  font-weight: 400;
}

.rv-engagement-envelope p {
  color: var(--rv-editorial-muted-text);
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
}

/* Cookie Banner Styles */
.rv-cookie-alert-plate {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  right: 2rem;
  max-width: 550px;
  background-color: var(--rv-editorial-accent-ink);
  color: var(--rv-editorial-bg);
  padding: 2rem;
  border-radius: var(--rv-border-radius);
  box-shadow: 0 15px 45px rgba(0,0,0,0.2);
  z-index: 99999;
  display: none;
}

.rv-cookie-alert-plate p {
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  opacity: 0.9;
}

.rv-cookie-actions {
  display: flex;
  gap: 1rem;
}

.rv-cookie-btn-accept {
  background-color: var(--rv-editorial-accent-warm);
  color: var(--rv-editorial-accent-ink);
  border: none;
  padding: 0.75rem 1.75rem;
  border-radius: var(--rv-border-radius);
  font-weight: 700;
  cursor: pointer;
  font-size: 0.85rem;
  text-transform: uppercase;
  transition: background-color 0.3s;
}

.rv-cookie-btn-accept:hover {
  background-color: var(--rv-editorial-accent-light);
}

.rv-cookie-btn-decline {
  background: transparent;
  color: var(--rv-editorial-bg);
  border: 1px solid rgba(255,255,255,0.25);
  padding: 0.75rem 1.75rem;
  border-radius: var(--rv-border-radius);
  font-weight: 700;
  cursor: pointer;
  font-size: 0.85rem;
  text-transform: uppercase;
  transition: all 0.3s;
}

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

/* EXPERT PAGE STYLING */
.rv-expert-hero-masthead {
  background-image: linear-gradient(rgba(27, 43, 52, 0.5), rgba(27, 43, 52, 0.7)), url('img/bg.webp');
  background-size: cover;
  background-position: center;
  padding: 8rem 2rem;
  text-align: center;
  color: var(--rv-editorial-bg);
}

.rv-expert-hero-masthead h1 {
  color: var(--rv-editorial-bg);
  font-size: 3.5rem;
  margin-bottom: 1rem;
}

.rv-expert-hero-masthead p {
  font-size: 1.25rem;
  max-width: 700px;
  margin: 0 auto;
}

/* Stats Row */
.rv-stats-row {
  background-color: var(--rv-editorial-surface);
  border-bottom: 1px solid var(--rv-editorial-border);
  padding: 4rem 2rem;
}

.rv-stats-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.rv-stat-capsule h4 {
  font-size: 3.5rem;
  color: var(--rv-editorial-accent-warm);
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.rv-stat-capsule p {
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--rv-editorial-muted-text);
  font-weight: 700;
}

/* Bio Alternate */
.rv-bio-alternate-panel {
  display: grid;
  grid-template-columns: 45% 55%;
  align-items: center;
  border-bottom: 1px solid var(--rv-editorial-border);
}

.rv-bio-alt-reverse {
  grid-template-columns: 55% 45%;
}

.rv-bio-image-holder {
  height: 650px;
  background-size: cover;
  background-position: center;
}

.rv-bio-desc-holder {
  padding: 6rem;
}

.rv-bio-desc-holder h3 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.rv-bio-desc-holder p {
  color: var(--rv-editorial-muted-text);
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

/* RESERVE PAGE STYLING */
.rv-reserve-top-indicator {
  max-width: 1200px;
  margin: 4rem auto 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.rv-indicator-block {
  border-top: 3px solid var(--rv-editorial-accent-warm);
  padding-top: 1.5rem;
}

.rv-indicator-block h4 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.rv-indicator-block p {
  color: var(--rv-editorial-muted-text);
  font-size: 0.95rem;
}

.rv-reserve-arrangement {
  max-width: 750px;
  margin: 4rem auto var(--rv-padding-scale) auto;
  padding: 0 2rem;
}

.rv-booking-form-box {
  background-color: var(--rv-editorial-surface);
  padding: 4rem;
  border-radius: var(--rv-border-radius);
  box-shadow: var(--rv-shadow-depth);
  margin-bottom: var(--rv-padding-scale);
}

.rv-booking-form-box h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  text-align: center;
}

.rv-form-wrapper-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.rv-form-interactive-field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.rv-form-interactive-field label {
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--rv-editorial-accent-ink);
}

.rv-form-interactive-field input[type="text"],
.rv-form-interactive-field input[type="tel"],
.rv-form-interactive-field input[type="email"],
.rv-form-interactive-field textarea {
  width: 100%;
  padding: 1.1rem;
  border: 1px solid var(--rv-editorial-border);
  border-radius: var(--rv-border-radius);
  background-color: var(--rv-editorial-bg);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--rv-editorial-dark-text);
  outline: none;
  transition: border-color 0.3s;
}

.rv-form-interactive-field input:focus,
.rv-form-interactive-field textarea:focus {
  border-color: var(--rv-editorial-accent-ink);
}

.rv-checkbox-wrapper {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
  font-size: 0.9rem;
  color: var(--rv-editorial-muted-text);
}

.rv-checkbox-wrapper input {
  margin-top: 0.2rem;
}

.rv-form-interactive-field button {
  width: 100%;
  border: none;
  cursor: pointer;
}

.rv-contact-prompt {
  text-align: center;
  margin-top: 2rem;
  color: var(--rv-editorial-muted-text);
  font-size: 1rem;
}

.rv-contact-prompt a {
  font-weight: 700;
  color: var(--rv-editorial-accent-ink);
  text-decoration: underline;
}

/* FAQ Accordion Styling */
.rv-faq-accordion-panel {
  border-top: 1px solid var(--rv-editorial-border);
  padding-top: var(--rv-padding-scale);
}

.rv-faq-accordion-panel h3 {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 3rem;
}

.rv-faq-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.rv-faq-item-card {
  background-color: var(--rv-editorial-surface);
  border-radius: var(--rv-border-radius);
  padding: 2rem;
}

.rv-faq-item-card h4 {
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
  color: var(--rv-editorial-accent-ink);
}

.rv-faq-item-card p {
  color: var(--rv-editorial-muted-text);
  font-size: 0.98rem;
}

/* THANK YOU PAGE STYLING */
.rv-thank-you-masthead {
  text-align: center;
  padding: 8rem 2rem;
  max-width: 800px;
  margin: 0 auto;
}

.rv-thank-you-masthead h1 {
  font-size: 4rem;
  margin-bottom: 1.5rem;
}

.rv-thank-you-masthead p {
  font-size: 1.25rem;
  color: var(--rv-editorial-muted-text);
  margin-bottom: 3rem;
}

.rv-thank-you-img-wrap {
  max-width: 600px;
  margin: 0 auto 3rem auto;
  border-radius: var(--rv-border-radius);
  overflow: hidden;
  box-shadow: var(--rv-shadow-depth);
}

.rv-thank-you-img-wrap img {
  width: 100%;
  display: block;
}

/* LEGAL PAGES STYLING */
.rv-legal-editorial-cover {
  max-width: 900px;
  margin: 4rem auto var(--rv-padding-scale) auto;
  padding: 0 2rem;
}

.rv-legal-editorial-cover h1 {
  font-size: 3.5rem;
  margin-bottom: 3rem;
  border-bottom: 1px solid var(--rv-editorial-border);
  padding-bottom: 1.5rem;
}

.rv-legal-content-space {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  color: var(--rv-editorial-dark-text);
  font-size: 1.1rem;
}

.rv-legal-content-space h2 {
  font-size: 1.8rem;
  margin-top: 1.5rem;
  color: var(--rv-editorial-accent-ink);
}

.rv-legal-content-space p {
  color: var(--rv-editorial-muted-text);
}

/* Responsiveness Settings */
@media (max-width: 991px) {
  :root {
    --rv-padding-scale: 7dvh;
  }
  
  .rv-intro-deck {
    grid-template-columns: 1fr;
  }
  
  .rv-intro-vertical-rail {
    display: none;
  }
  
  .rv-content-split {
    grid-template-columns: 1fr;
  }
  
  .rv-split-image-panel {
    height: 400px;
  }
  
  .rv-split-text-panel {
    padding: 3.5rem 2rem;
  }
  
  .rv-magazine-grid-layout {
    grid-template-columns: 1fr;
  }
  
  .rv-timeline-row {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .rv-timeline-divider {
    height: 1px;
    width: 100%;
  }
  
  .rv-stats-inner {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
  
  .rv-bio-alternate-panel {
    grid-template-columns: 1fr;
  }
  
  .rv-bio-image-holder {
    height: 400px;
  }
  
  .rv-bio-desc-holder {
    padding: 3.5rem 2rem;
  }
  
  .rv-reserve-top-indicator {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .rv-hamburger-trigger {
    display: flex;
  }
  
  .rv-nav-links {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background-color: var(--rv-editorial-bg);
    flex-direction: column;
    padding: 4rem 2rem;
    gap: 2rem;
    transition: left 0.4s ease;
    border-top: 1px solid var(--rv-editorial-border);
  }
  
  .rv-hamburger-input:checked ~ .rv-nav-links {
    left: 0;
  }
  
  .rv-hamburger-input:checked ~ .rv-hamburger-trigger span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  
  .rv-hamburger-input:checked ~ .rv-hamburger-trigger span:nth-child(2) {
    opacity: 0;
  }
  
  .rv-hamburger-input:checked ~ .rv-hamburger-trigger span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -7px);
  }
  
  .rv-intro-main-media {
    padding: 3rem 1.5rem;
  }
  
  .rv-intro-text-envelope h1 {
    font-size: 2.6rem;
  }
  
  .rv-editorial-quote-inner blockquote {
    font-size: 1.6rem;
  }
  
  .rv-footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .rv-stats-inner {
    grid-template-columns: 1fr;
  }
  
  .rv-booking-form-box {
    padding: 2rem 1.5rem;
  }
}