/* Color parameters based on 'colorful' theme and 'soft' border-radius */
:root {
  --sight-brand-bg: #f3f4f6;
  --sight-surface: #ffffff;
  --sight-deep-gradient: linear-gradient(135deg, #0f766e 0%, #115e59 100%);
  --sight-accent-gradient: linear-gradient(135deg, #f97316 0%, #e11d48 100%);
  --sight-text-dark: #1f2937;
  --sight-text-light: #f9fafb;
  --sight-accent-solid: #f97316;
  --sight-accent-hover: #ea580c;
  --sight-muted: #6b7280;
  --sight-panel-bg: rgba(255, 255, 255, 0.08);
  --sight-glass-border: rgba(255, 255, 255, 0.15);
  
  /* Fonts */
  --font-display: 'Montserrat', sans-serif;
  --font-body: 'Poppins', sans-serif;
  
  /* Borders, shadows and spacing */
  --sight-border-radius: 16px;
  --sight-shadow-standard: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --sight-shadow-raised: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --sight-vertical-padding: 10dvh;
}

/* Reset and general styles */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body.sight-body-theme {
  font-family: var(--font-body);
  color: var(--sight-text-dark);
  background-color: var(--sight-surface);
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.05em;
}

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

/* Base Wrapper for layout centering */
.sight-section-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  width: 100%;
}

/* Header & Hamburger styling */
.sight-header-bar {
  background: var(--sight-deep-gradient);
  box-shadow: var(--sight-shadow-standard);
  position: sticky;
  top: 0;
  z-index: 1000;
  color: var(--sight-text-light);
}

.sight-header-holder {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 1.5rem;
}

.sight-logo-box {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 950;
  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: 1px;
}

.sight-logo-svg {
  width: 32px;
  height: 32px;
  stroke: var(--sight-accent-solid);
}

/* Navigation Links */
.sight-navigation-menu {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.sight-nav-link {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  position: relative;
  padding: 0.5rem 0;
}

.sight-nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background-color: var(--sight-accent-solid);
  transition: width 0.3s ease;
}

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

/* Mobile responsive hamburger */
.sight-menu-checkbox {
  display: none;
}

.sight-hamburger-label {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.sight-hamburger-label span {
  width: 25px;
  height: 3px;
  background-color: var(--sight-text-light);
  transition: all 0.3s ease;
}

/* Hero Section */
.sight-hero-block {
  min-height: 85vh;
  display: flex;
  align-items: center;
  color: var(--sight-text-light);
  overflow: hidden;
  padding: var(--sight-vertical-padding) 0;
}

.sight-hero-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.25;
  z-index: 1;
}

.sight-hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  padding: 0 1.5rem;
}

.sight-main-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.sight-hero-description {
  font-size: clamp(1rem, 2vw, 1.25rem);
  opacity: 0.9;
  margin-bottom: 2rem;
  line-height: 1.7;
}

/* Styled Primary Buttons */
.sight-cta-btn-primary {
  display: inline-block;
  background: var(--sight-accent-gradient);
  color: var(--sight-text-light);
  padding: 1rem 2.5rem;
  font-family: var(--font-display);
  font-weight: 700;
  border-radius: var(--sight-border-radius);
  box-shadow: var(--sight-shadow-standard);
  text-transform: uppercase;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sight-cta-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: var(--sight-shadow-raised);
}

/* Counter Bar integrated in Hero */
.sight-hero-counters {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 4rem;
  background: rgba(15, 23, 42, 0.4);
  backdrop-filter: blur(8px);
  padding: 2rem;
  border-radius: var(--sight-border-radius);
  border: 1px solid var(--sight-glass-border);
}

.sight-counter-item {
  display: flex;
  flex-direction: column;
}

.sight-counter-num {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 900;
  color: var(--sight-accent-solid);
}

.sight-counter-label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.8;
  margin-top: 0.25rem;
}

/* Trust Strip */
.sight-trust-strip {
  margin-top: 3rem;
  border-top: 1px solid var(--sight-glass-border);
  padding-top: 2rem;
}

.sight-trust-text {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  opacity: 0.7;
  display: block;
  margin-bottom: 1rem;
}

.sight-trust-badges-row {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.sight-trust-pill {
  background: var(--sight-panel-bg);
  border: 1px solid var(--sight-glass-border);
  padding: 0.5rem 1.25rem;
  border-radius: 99px;
  font-size: 0.8rem;
  font-weight: 600;
}

/* Section Common Titles */
.sight-section-heading {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  text-align: center;
  margin-bottom: 1rem;
}

.sight-section-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3.5rem;
  color: var(--sight-muted);
  font-size: 1.1rem;
}

/* Content Carousel - Tablet/Desktop styling (flex mandatory layout on mobile) */
.sight-carousel-section {
  padding: var(--sight-vertical-padding) 0;
  color: var(--sight-text-light);
}

.sight-carousel-section .sight-section-intro {
  color: rgba(255, 255, 255, 0.7);
}

.sight-content-carousel-wrap {
  width: 100%;
}

.sight-carousel-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.sight-info-card {
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(12px);
  border: 1px solid var(--sight-glass-border);
  border-radius: var(--sight-border-radius);
  padding: 2.5rem 2rem;
  box-shadow: var(--sight-shadow-raised);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.sight-info-card:hover {
  transform: translateY(-5px);
}

.sight-info-num {
  position: absolute;
  top: -10px;
  right: -10px;
  font-size: 6rem;
  font-weight: 900;
  font-family: var(--font-display);
  color: rgba(255, 255, 255, 0.04);
  line-height: 1;
}

.sight-info-heading {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: var(--sight-accent-solid);
}

.sight-info-text {
  font-size: 0.95rem;
  line-height: 1.6;
  opacity: 0.85;
}

/* Features Grid section with color flip hover effect */
.sight-features-section {
  padding: var(--sight-vertical-padding) 0;
  background-color: var(--sight-surface);
}

.sight-feat-matrix {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
}

.sight-feat-item {
  background: var(--sight-brand-bg);
  padding: 2.5rem;
  border-radius: var(--sight-border-radius);
  box-shadow: var(--sight-shadow-standard);
  transition: all 0.4s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.sight-feat-icon-box {
  width: 60px;
  height: 60px;
  background: var(--sight-accent-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: transform 0.4s ease;
}

.sight-feat-icon {
  width: 28px;
  height: 28px;
  stroke: var(--sight-text-light);
}

.sight-feat-title {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.sight-feat-detail {
  font-size: 0.95rem;
  color: var(--sight-muted);
}

/* Feature Hover Color-Flip */
.sight-feat-item:hover {
  background: var(--sight-deep-gradient);
  color: var(--sight-text-light);
  transform: scale(1.02);
  box-shadow: var(--sight-shadow-raised);
}

.sight-feat-item:hover .sight-feat-icon-box {
  transform: rotateY(360deg);
  background: var(--sight-accent-gradient);
}

.sight-feat-item:hover .sight-feat-detail {
  color: rgba(255, 255, 255, 0.8);
}

/* How It Works Progress Section */
.sight-steps-section {
  padding: var(--sight-vertical-padding) 0;
}

.sight-step-track {
  display: flex;
  justify-content: space-between;
  position: relative;
  gap: 2rem;
}

.sight-step-track::before {
  content: '';
  position: absolute;
  top: 30px;
  left: 10%;
  right: 10%;
  height: 4px;
  background: var(--sight-accent-gradient);
  z-index: 1;
}

.sight-step-node {
  flex: 1;
  text-align: center;
  position: relative;
  z-index: 2;
}

.sight-step-badge {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--sight-surface);
  border: 4px solid var(--sight-accent-solid);
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--sight-text-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  box-shadow: var(--sight-shadow-standard);
}

.sight-step-title {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.sight-step-text {
  font-size: 0.9rem;
  color: var(--sight-muted);
  max-width: 280px;
  margin: 0 auto;
}

/* CTA strip section */
.sight-cta-banner {
  padding: 5rem 0;
  color: var(--sight-text-light);
}

.sight-cta-banner-holder {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2.5rem;
}

.sight-cta-heading {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  margin-bottom: 0.5rem;
}

.sight-cta-action-btn {
  background: var(--sight-text-light);
  color: var(--sight-text-dark);
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  padding: 1rem 2rem;
  border-radius: var(--sight-border-radius);
  box-shadow: var(--sight-shadow-standard);
  white-space: nowrap;
}

.sight-cta-action-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--sight-shadow-raised);
}

/* Bio Section for Expert page */
.sight-expert-hero {
  padding: var(--sight-vertical-padding) 0 4rem;
  color: var(--sight-text-light);
}

.sight-bio-section {
  padding: var(--sight-vertical-padding) 0;
}

.sight-bio-layout {
  display: flex;
  align-items: center;
  gap: 4rem;
}

.sight-bio-image-col {
  flex: 4;
}

.sight-bio-img-frame {
  width: 100%;
  aspect-ratio: 4/5;
  background-size: cover;
  background-position: center;
  border-radius: var(--sight-border-radius);
  box-shadow: var(--sight-shadow-raised);
}

.sight-bio-text-col {
  flex: 6;
}

.sight-bio-subtitle {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  color: var(--sight-accent-solid);
}

.sight-bio-paragraph {
  font-size: 1rem;
  color: var(--sight-muted);
  margin-bottom: 1.25rem;
}

.sight-highlight-card {
  background-color: var(--sight-brand-bg);
  padding: 1.5rem;
  border-left: 4px solid var(--sight-accent-solid);
  border-radius: 0 var(--sight-border-radius) var(--sight-border-radius) 0;
  margin-top: 2rem;
}

.sight-highlight-title {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.sight-highlight-desc {
  font-size: 0.9rem;
  color: var(--sight-muted);
}

/* Stats Grid Section */
.sight-stats-grid-section {
  padding: var(--sight-vertical-padding) 0;
}

.sight-stats-grid-holder {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.sight-stat-card-item {
  background-color: var(--sight-surface);
  padding: 2.5rem 1.5rem;
  border-radius: var(--sight-border-radius);
  box-shadow: var(--sight-shadow-standard);
  text-align: center;
  border-top: 4px solid var(--sight-accent-solid);
}

.sight-stat-card-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.sight-stat-card-title {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--sight-text-dark);
  margin-bottom: 0.5rem;
}

.sight-stat-card-text {
  font-size: 0.9rem;
  color: var(--sight-muted);
}

/* Reserve layout (2-Column) */
.sight-booking-section {
  padding: var(--sight-vertical-padding) 0;
}

.sight-booking-split {
  display: grid;
  grid-template-columns: 5fr 5fr;
  gap: 4rem;
  align-items: start;
}

.sight-booking-sticky-col {
  position: sticky;
  top: 120px;
}

.sight-booking-badge {
  background: var(--sight-accent-gradient);
  color: var(--sight-text-light);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.4rem 1rem;
  border-radius: 99px;
  display: inline-block;
  margin-bottom: 1.5rem;
}

.sight-booking-main-title {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.sight-booking-sticky-text {
  font-size: 1.05rem;
  color: var(--sight-muted);
  margin-bottom: 2.5rem;
}

.sight-booking-trust-points {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.sight-trust-card-point {
  display: flex;
  gap: 1.25rem;
}

.sight-point-bullet {
  width: 40px;
  height: 40px;
  background-color: var(--sight-accent-solid);
  color: var(--sight-text-light);
  font-family: var(--font-display);
  font-weight: 950;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  flex-shrink: 0;
}

.sight-point-heading {
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.sight-point-text {
  font-size: 0.85rem;
  color: var(--sight-muted);
}

.sight-email-support-box {
  border-top: 1px solid var(--sight-brand-bg);
  padding-top: 1.5rem;
  font-size: 0.9rem;
  color: var(--sight-muted);
}

.sight-clickable-email {
  display: block;
  font-weight: 700;
  color: var(--sight-accent-solid);
  font-size: 1.1rem;
  margin-top: 0.25rem;
}

/* Form on Right column */
.sight-booking-form-card {
  background: var(--sight-surface);
  padding: 3rem 2.5rem;
  border-radius: var(--sight-border-radius);
  box-shadow: var(--sight-shadow-raised);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.sight-form-card-title {
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
}

.sight-form-card-subtitle {
  font-size: 0.9rem;
  color: var(--sight-muted);
  margin-bottom: 2rem;
}

.sight-booking-form-element {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.sight-form-field-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.sight-form-label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.sight-form-input, .sight-form-textarea {
  width: 100%;
  padding: 1rem;
  border: 1px solid #d1d5db;
  border-radius: var(--sight-border-radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color 0.3s ease;
  background-color: var(--sight-brand-bg);
}

.sight-form-input:focus, .sight-form-textarea:focus {
  outline: none;
  border-color: var(--sight-accent-solid);
  background-color: var(--sight-surface);
}

.sight-form-checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.sight-form-checkbox {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  accent-color: var(--sight-accent-solid);
}

.sight-form-checkbox-label {
  font-size: 0.8rem;
  color: var(--sight-muted);
  line-height: 1.4;
}

.sight-form-link-inline {
  color: var(--sight-accent-solid);
  text-decoration: underline;
}

.sight-submit-form-btn {
  background: var(--sight-accent-gradient);
  color: var(--sight-text-light);
  border: none;
  padding: 1.25rem;
  border-radius: var(--sight-border-radius);
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 1rem;
  cursor: pointer;
  box-shadow: var(--sight-shadow-standard);
  transition: all 0.3s ease;
}

.sight-submit-form-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--sight-shadow-raised);
}

/* FAQ Accordion Section */
.sight-faq-section {
  padding: var(--sight-vertical-padding) 0;
}

.sight-faq-accordion {
  max-width: 850px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.sight-faq-node {
  background: var(--sight-surface);
  padding: 2rem;
  border-radius: var(--sight-border-radius);
  box-shadow: var(--sight-shadow-standard);
}

.sight-faq-question {
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
  color: var(--sight-text-dark);
}

.sight-faq-answer {
  font-size: 0.95rem;
  color: var(--sight-muted);
  line-height: 1.6;
}

/* Legal sections (Privacy, Terms) */
.sight-legal-content-section h1.sight-legal-title {
  font-size: 2.2rem;
  margin-bottom: 0.5rem;
}

.sight-legal-intro {
  font-size: 0.9rem;
  color: var(--sight-muted);
  margin-bottom: 3rem;
}

.sight-legal-text-block p {
  color: var(--sight-muted);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* Thank you cards */
.sight-thank-card {
  background: rgba(15, 23, 42, 0.75);
  backdrop-filter: blur(12px);
  border: 1px solid var(--sight-glass-border);
  padding: 4rem;
  border-radius: var(--sight-border-radius);
  max-width: 750px;
  margin: 0 auto;
  box-shadow: var(--sight-shadow-raised);
}

.sight-thank-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--sight-accent-gradient);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: var(--sight-text-light);
}

/* Footer Section */
.sight-footer-wrap {
  background-color: #0f172a;
  color: var(--sight-text-light);
  padding: 5rem 0 3rem;
}

.sight-footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.sight-logo-footer-aligned {
  color: var(--sight-text-light);
}

.sight-footer-nav-links {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.sight-footer-link {
  font-size: 0.85rem;
  opacity: 0.7;
}

.sight-footer-link:hover {
  opacity: 1;
  color: var(--sight-accent-solid);
}

.sight-footer-divider {
  border: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  margin: 2.5rem 0;
}

.sight-disclaimer-box {
  text-align: center;
}

.sight-disclaimer-text {
  font-size: 0.9rem;
  opacity: 0.8;
  margin-bottom: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.sight-copyright-text {
  font-size: 0.8rem;
  opacity: 0.5;
}

/* Cookie Popup Banner styles */
.sight-cookie-popup {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  right: 2rem;
  max-width: 600px;
  margin: 0 auto;
  background: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(12px);
  border: 1px solid var(--sight-glass-border);
  border-radius: var(--sight-border-radius);
  color: var(--sight-text-light);
  padding: 1.5rem 2rem;
  box-shadow: var(--sight-shadow-raised);
  z-index: 9999;
}

.sight-cookie-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.sight-cookie-text {
  font-size: 0.85rem;
  line-height: 1.5;
  opacity: 0.9;
}

.sight-cookie-actions {
  display: flex;
  justify-content: flex-end;
  gap: 1rem;
}

.sight-cookie-btn-pri, .sight-cookie-btn-sec {
  padding: 0.5rem 1.5rem;
  border-radius: 99px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.75rem;
  cursor: pointer;
  text-transform: uppercase;
  transition: all 0.3s ease;
  border: none;
}

.sight-cookie-btn-pri {
  background: var(--sight-accent-gradient);
  color: var(--sight-text-light);
}

.sight-cookie-btn-sec {
  background: transparent;
  color: var(--sight-text-light);
  border: 1px solid var(--sight-glass-border);
}

.sight-cookie-btn-pri:hover {
  transform: translateY(-1px);
}

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

/* Scroll Animation Timeline (CSS Only) */
@keyframes sightSlideUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .sight-feat-matrix {
    grid-template-columns: 1fr;
  }
  .sight-booking-split {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .sight-booking-sticky-col {
    position: relative;
    top: 0;
  }
}

@media (max-width: 768px) {
  /* Hamburger menu functionality */
  .sight-hamburger-label {
    display: flex;
    z-index: 1001;
  }

  .sight-navigation-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    height: 100vh;
    background: #0f172a;
    flex-direction: column;
    justify-content: center;
    gap: 2.5rem;
    padding: 2rem;
    transition: right 0.4s ease;
    box-shadow: -10px 0 20px rgba(0,0,0,0.3);
  }

  .sight-menu-checkbox:checked ~ .sight-navigation-menu {
    right: 0;
  }

  .sight-menu-checkbox:checked ~ .sight-hamburger-label span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
  }

  .sight-menu-checkbox:checked ~ .sight-hamburger-label span:nth-child(2) {
    opacity: 0;
  }

  .sight-menu-checkbox:checked ~ .sight-hamburger-label span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  /* Counter section stack */
  .sight-hero-counters {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Horizontally scrolling carousel track for mobile */
  .sight-carousel-inner {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 1.5rem;
    padding-bottom: 1.5rem;
  }

  .sight-info-card {
    flex: 0 0 85%;
    scroll-snap-align: center;
  }

  /* Timeline step stack */
  .sight-step-track {
    flex-direction: column;
    gap: 3rem;
  }

  .sight-step-track::before {
    display: none;
  }

  /* Bio view stack */
  .sight-bio-layout {
    flex-direction: column;
    gap: 2.5rem;
  }

  /* Stats grid stack */
  .sight-stats-grid-holder {
    grid-template-columns: repeat(2, 1fr);
  }

  /* CTA split stack */
  .sight-cta-banner-holder {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .sight-hero-counters {
    grid-template-columns: 1fr;
  }
  .sight-stats-grid-holder {
    grid-template-columns: 1fr;
  }
}