/* Theme: LIGHT — Preset B (Light Split Style) */
:root {
  --ocular-bg: #F8FAF9;
  --ocular-surface: #FFFFFF;
  --ocular-surface-alt: #EBF2EE;
  --ocular-brand: #1E4D3B;
  --ocular-brand-light: #3D7A62;
  --ocular-highlight: #2A8C68;
  --ocular-highlight-hover: #1F6E51;
  --ocular-ink: #111B18;
  --ocular-ink-muted: #4A5853;
  --ocular-border: #D2E0D8;
  --ocular-gradient: linear-gradient(135deg, #1E4D3B 0%, #2A8C68 100%);
  --ocular-accent-soft: #E2F0EA;
  --ocular-shadow-depth: 0 10px 25px -5px rgba(30, 77, 59, 0.08), 0 8px 10px -6px rgba(30, 77, 59, 0.04);
  --ocular-radius: 16px;
  --font-display: 'Montserrat', sans-serif;
  --font-body: 'Open Sans', sans-serif;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background-color: var(--ocular-bg);
  color: var(--ocular-ink);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Typography Headings */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  color: var(--ocular-brand);
  line-height: 1.25;
  font-weight: 700;
}

a {
  color: var(--ocular-highlight);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--ocular-highlight-hover);
}

/* Header Preset B: Light background, thin border bottom, box-shadow on focus/scroll */
.optic-header-bar {
  background: var(--ocular-surface);
  border-bottom: 1px solid var(--ocular-border);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.03);
  transition: box-shadow 0.3s ease;
}

.optic-header-bar:focus-within {
  box-shadow: var(--ocular-shadow-depth);
}

/* Scroll driven progress indicator */
.optic-scroll-progress {
  height: 3px;
  background: var(--ocular-gradient);
  width: 100%;
  transform-origin: 0 50%;
  animation: scale-progress linear;
  animation-timeline: scroll();
}

@keyframes scale-progress {
  0% { transform: scaleX(0); }
  100% { transform: scaleX(1); }
}

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

.optic-brand-anchor {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.optic-brand-symbol {
  width: 28px;
  height: 28px;
  stroke: var(--ocular-brand);
}

.optic-brand-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--ocular-brand);
  letter-spacing: -0.5px;
}

.optic-nav-pane {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.optic-nav-link {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ocular-ink-muted);
  padding: 0.4rem 0;
  position: relative;
}

.optic-nav-link:hover, .optic-link-active {
  color: var(--ocular-brand);
}

.optic-link-active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--ocular-highlight);
  border-radius: 2px;
}

.optic-nav-cta {
  background: var(--ocular-brand);
  color: var(--ocular-surface) !important;
  padding: 0.6rem 1.25rem;
  border-radius: 999px;
  transition: background-color 0.2s ease;
}

.optic-nav-cta:hover {
  background: var(--ocular-highlight);
}

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

.optic-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.optic-menu-toggle span {
  width: 24px;
  height: 2px;
  background-color: var(--ocular-brand);
  border-radius: 2px;
}

/* Announcement Strip Above Hero */
.sight-announcement-strip {
  background-color: var(--ocular-surface-alt);
  border-bottom: 1px solid var(--ocular-border);
  padding: 0.5rem 1.5rem;
  font-size: 0.875rem;
  text-align: center;
}

.sight-announcement-shell {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  font-weight: 600;
  color: var(--ocular-brand);
}

.sight-announcement-link {
  color: var(--ocular-highlight);
  text-decoration: underline;
}

/* Hero Preset B: Split Screen 55% Text / 45% Image */
.sight-hero-split {
  max-width: 1200px;
  margin: 0 auto;
  padding: 8dvh 1.5rem;
  display: flex;
  align-items: center;
  gap: 3rem;
  animation: fade-view linear both;
  animation-timeline: view();
  animation-range: entry 10% cover 30%;
}

.sight-hero-info {
  flex: 0 0 55%;
}

.sight-badge-label {
  display: inline-block;
  background: var(--ocular-accent-soft);
  color: var(--ocular-brand);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.8rem;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  margin-bottom: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.sight-main-headline {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  letter-spacing: -1px;
  margin-bottom: 1.25rem;
}

.sight-lead-paragraph {
  font-size: 1.1rem;
  color: var(--ocular-ink-muted);
  margin-bottom: 2rem;
  max-width: 600px;
}

.sight-hero-actions {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
}

.sight-prime-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--ocular-gradient);
  color: var(--ocular-surface) !important;
  font-family: var(--font-display);
  font-weight: 700;
  padding: 0.9rem 1.75rem;
  border-radius: var(--ocular-radius);
  box-shadow: var(--ocular-shadow-depth);
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.sight-prime-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px -5px rgba(30, 77, 59, 0.2);
}

.sight-secondary-button {
  display: inline-flex;
  align-items: center;
  padding: 0.9rem 1.5rem;
  border-radius: var(--ocular-radius);
  border: 1px solid var(--ocular-border);
  color: var(--ocular-brand);
  font-family: var(--font-display);
  font-weight: 600;
  background: var(--ocular-surface);
}

.sight-secondary-button:hover {
  background: var(--ocular-surface-alt);
}

.sight-hero-media {
  flex: 0 0 45%;
  border-radius: var(--ocular-radius);
  overflow: hidden;
  box-shadow: var(--ocular-shadow-depth);
}

.sight-hero-img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}

/* Journalistic Section: Full width bg2.webp 45vh strip + 3 columns */
.sight-journal-segment {
  max-width: 1200px;
  margin: 4dvh auto 8dvh auto;
  padding: 0 1.5rem;
}

.sight-journal-banner {
  height: 45vh;
  width: 100%;
  border-radius: var(--ocular-radius);
  overflow: hidden;
  margin-bottom: 2.5rem;
  box-shadow: var(--ocular-shadow-depth);
}

.sight-journal-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.sight-journal-column {
  border-top: 3px solid var(--ocular-highlight);
  padding-top: 1.25rem;
}

.sight-column-heading {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.sight-column-body {
  font-size: 0.95rem;
  color: var(--ocular-ink-muted);
}

/* Features Masonry Grid */
.sight-masonry-segment {
  max-width: 1200px;
  margin: 0 auto 10dvh auto;
  padding: 0 1.5rem;
}

.sight-section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.sight-section-title {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin-bottom: 0.5rem;
}

.sight-section-subtitle {
  color: var(--ocular-ink-muted);
  font-size: 1.05rem;
}

.sight-masonry-board {
  columns: 2;
  column-gap: 1.5rem;
}

.sight-masonry-card {
  break-inside: avoid;
  background: var(--ocular-surface);
  border: 1px solid var(--ocular-border);
  border-radius: var(--ocular-radius);
  padding: 2rem;
  margin-bottom: 1.5rem;
  box-shadow: var(--ocular-shadow-depth);
  position: relative;
}

.sight-card-tall {
  padding: 2.75rem 2rem;
  background: var(--ocular-surface-alt);
}

.sight-card-badge {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--ocular-highlight);
  opacity: 0.4;
  margin-bottom: 0.5rem;
}

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

.sight-card-desc {
  color: var(--ocular-ink-muted);
  font-size: 0.95rem;
}

/* How it Works: Horizontal Progress Track */
.sight-roadmap-segment {
  max-width: 1200px;
  margin: 0 auto 10dvh auto;
  padding: 0 1.5rem;
}

.sight-roadmap-flex {
  display: flex;
  justify-content: space-between;
  position: relative;
  gap: 1.5rem;
}

.sight-roadmap-flex::before {
  content: '';
  position: absolute;
  top: 24px;
  left: 10%;
  right: 10%;
  border-top: 2px dashed var(--ocular-border);
  z-index: 1;
}

.sight-roadmap-step {
  flex: 1;
  text-align: center;
  position: relative;
  z-index: 2;
  background: var(--ocular-bg);
  padding: 0 0.5rem;
}

.sight-step-node {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--ocular-surface);
  border: 2px solid var(--ocular-border);
  color: var(--ocular-brand);
  font-family: var(--font-display);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem auto;
  font-size: 1.1rem;
}

.sight-step-active .sight-step-node {
  background: var(--ocular-brand);
  color: var(--ocular-surface);
  border-color: var(--ocular-brand);
  box-shadow: 0 0 0 4px var(--ocular-accent-soft);
}

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

.sight-step-desc {
  font-size: 0.875rem;
  color: var(--ocular-ink-muted);
}

/* CTA Strip Accent */
.sight-action-strip {
  background: var(--ocular-gradient);
  color: var(--ocular-surface);
  padding: 6dvh 1.5rem;
  text-align: center;
  margin-top: auto;
}

.sight-action-shell {
  max-width: 800px;
  margin: 0 auto;
}

.sight-action-title {
  color: var(--ocular-surface);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin-bottom: 1rem;
}

.sight-action-desc {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.sight-action-button {
  display: inline-block;
  background: var(--ocular-surface);
  color: var(--ocular-brand) !important;
  font-family: var(--font-display);
  font-weight: 700;
  padding: 1rem 2rem;
  border-radius: var(--ocular-radius);
  box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.sight-action-button:hover {
  background: var(--ocular-surface-alt);
}

/* Expert Page Layout */
.expert-hero-split {
  max-width: 1200px;
  margin: 0 auto;
  padding: 8dvh 1.5rem;
  display: flex;
  gap: 3rem;
  align-items: center;
}

.expert-hero-visual {
  flex: 0 0 50%;
  border-radius: var(--ocular-radius);
  overflow: hidden;
  box-shadow: var(--ocular-shadow-depth);
}

.expert-profile-photo {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
}

.expert-hero-bio {
  flex: 0 0 50%;
}

.expert-name-headline {
  font-size: clamp(2.2rem, 3.5vw, 3rem);
  margin-bottom: 1rem;
}

.expert-bio-paragraph {
  color: var(--ocular-ink-muted);
  margin-bottom: 1.25rem;
  font-size: 1.05rem;
}

.expert-stats-strip {
  background: var(--ocular-surface);
  border-y: 1px solid var(--ocular-border);
  padding: 4dvh 1.5rem;
  margin-bottom: 8dvh;
}

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

.expert-stat-card {
  padding: 1rem;
}

.expert-stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--ocular-highlight);
}

.expert-stat-label {
  font-size: 0.9rem;
  color: var(--ocular-ink-muted);
  font-weight: 600;
}

.expert-method-section {
  max-width: 900px;
  margin: 0 auto 10dvh auto;
  padding: 0 1.5rem;
}

.expert-accordion-container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.expert-accordion-item {
  background: var(--ocular-surface);
  border: 1px solid var(--ocular-border);
  border-radius: var(--ocular-radius);
  padding: 1.25rem 1.5rem;
  box-shadow: var(--ocular-shadow-depth);
}

.expert-accordion-summary {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--ocular-brand);
  cursor: pointer;
}

.expert-accordion-body {
  margin-top: 0.75rem;
  color: var(--ocular-ink-muted);
  font-size: 0.95rem;
}

.expert-context-block {
  max-width: 1200px;
  margin: 0 auto 10dvh auto;
  padding: 0 1.5rem;
}

.expert-context-shell {
  display: flex;
  align-items: center;
  gap: 3rem;
  background: var(--ocular-surface-alt);
  border-radius: var(--ocular-radius);
  padding: 3rem;
}

.expert-context-text {
  flex: 1;
}

.expert-context-image {
  flex: 1;
  border-radius: var(--ocular-radius);
  overflow: hidden;
}

.expert-secondary-img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
}

/* Reserve Page Layout */
.reserve-page-main {
  max-width: 1200px;
  margin: 6dvh auto 10dvh auto;
  padding: 0 1.5rem;
}

.reserve-layout-columns {
  display: flex;
  gap: 3rem;
  margin-bottom: 8dvh;
}

.reserve-info-column {
  flex: 1;
}

.reserve-headline {
  font-size: clamp(2rem, 3vw, 2.75rem);
  margin-bottom: 1rem;
}

.reserve-description {
  color: var(--ocular-ink-muted);
  font-size: 1.05rem;
  margin-bottom: 2rem;
}

.reserve-cards-stack {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.reserve-info-card {
  background: var(--ocular-surface);
  border: 1px solid var(--ocular-border);
  border-radius: var(--ocular-radius);
  padding: 1.5rem;
  box-shadow: var(--ocular-shadow-depth);
}

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

.reserve-card-icon {
  font-size: 1.5rem;
}

.reserve-card-title {
  font-size: 1.15rem;
}

.reserve-bullet-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.reserve-bullet-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--ocular-ink-muted);
}

.reserve-bullet-num {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--ocular-highlight);
  color: var(--ocular-surface);
  font-size: 0.75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.reserve-contact-direct {
  background: var(--ocular-surface-alt);
  padding: 1.25rem;
  border-radius: var(--ocular-radius);
  font-size: 0.95rem;
}

.reserve-email-link {
  font-weight: 700;
  word-break: break-all;
}

.reserve-form-column {
  flex: 1;
}

.reserve-form-card {
  background: var(--ocular-surface);
  border: 1px solid var(--ocular-border);
  border-radius: var(--ocular-radius);
  padding: 2.5rem;
  box-shadow: var(--ocular-shadow-depth);
}

.reserve-form-title {
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
}

.reserve-form-subtitle {
  color: var(--ocular-ink-muted);
  font-size: 0.95rem;
  margin-bottom: 1.75rem;
}

.reserve-input-group {
  margin-bottom: 1.25rem;
}

.reserve-input-label {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.875rem;
  margin-bottom: 0.4rem;
  color: var(--ocular-brand);
}

.reserve-text-input, .reserve-select-input {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1px solid var(--ocular-border);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 1rem;
  background: var(--ocular-bg);
  color: var(--ocular-ink);
}

.reserve-text-input:focus, .reserve-select-input:focus {
  outline: 2px solid var(--ocular-highlight);
  background: var(--ocular-surface);
}

.reserve-checkbox-group {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  margin-bottom: 1.75rem;
  font-size: 0.85rem;
  color: var(--ocular-ink-muted);
}

.reserve-check-input {
  margin-top: 0.2rem;
}

.reserve-submit-btn {
  width: 100%;
}

.reserve-faq-section {
  max-width: 1000px;
  margin: 0 auto;
}

.reserve-faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.reserve-faq-item {
  background: var(--ocular-surface);
  border: 1px solid var(--ocular-border);
  border-radius: var(--ocular-radius);
  padding: 1.5rem;
}

.reserve-faq-question {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.reserve-faq-answer {
  color: var(--ocular-ink-muted);
  font-size: 0.95rem;
}

/* Thank You Page */
.thank-page-container {
  max-width: 900px;
  margin: 8dvh auto;
  padding: 0 1.5rem;
}

.thank-card-shell {
  background: var(--ocular-surface);
  border: 1px solid var(--ocular-border);
  border-radius: var(--ocular-radius);
  overflow: hidden;
  box-shadow: var(--ocular-shadow-depth);
  display: flex;
}

.thank-media-box {
  flex: 1;
}

.thank-image-preview {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.thank-content-box {
  flex: 1;
  padding: 3rem 2.5rem;
}

.thank-title-lead {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.thank-paragraph-copy {
  color: var(--ocular-ink-muted);
  margin-bottom: 1rem;
}

.thank-action-wrap {
  margin-top: 2rem;
}

/* Legal Pages (Privacy Policy / Terms) */
.policy-legal-container {
  max-width: 900px;
  margin: 6dvh auto;
  padding: 0 1.5rem;
  min-height: 60vh;
}

.policy-legal-card {
  background: var(--ocular-surface);
  border: 1px solid var(--ocular-border);
  border-radius: var(--ocular-radius);
  padding: 3rem;
  box-shadow: var(--ocular-shadow-depth);
}

.policy-main-title {
  font-size: 2.25rem;
  margin-bottom: 0.25rem;
}

.policy-update-tag {
  color: var(--ocular-ink-muted);
  font-size: 0.875rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid var(--ocular-border);
  padding-bottom: 1rem;
}

.policy-text-block {
  margin-bottom: 1.75rem;
}

.policy-text-block h2 {
  font-size: 1.35rem;
  margin-bottom: 0.5rem;
}

.policy-text-block p {
  color: var(--ocular-ink-muted);
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
}

.policy-cookies-highlight {
  background: var(--ocular-surface-alt);
  padding: 1.5rem;
  border-radius: var(--ocular-radius);
  border-left: 4px solid var(--ocular-highlight);
}

/* Footer Section */
.optic-footer-bar {
  background: var(--ocular-brand);
  color: var(--ocular-surface);
  padding: 4rem 1.5rem 2rem 1.5rem;
  margin-top: auto;
}

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

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

.optic-footer-top .optic-brand-symbol {
  stroke: var(--ocular-surface);
}

.optic-footer-top .optic-brand-name {
  color: var(--ocular-surface);
}

.optic-footer-links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.optic-footer-links a {
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
}

.optic-footer-links a:hover {
  color: #FFFFFF;
}

.optic-disclaimer-box {
  background: rgba(255,255,255,0.08);
  border-radius: 8px;
  padding: 1rem 1.25rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 2rem;
  line-height: 1.5;
}

.optic-footer-bottom {
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.5rem;
}

/* Cookie Banner Component */
.optic-cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--ocular-surface);
  border-top: 1px solid var(--ocular-border);
  box-shadow: 0 -5px 25px rgba(0,0,0,0.1);
  z-index: 9999;
  padding: 1rem 1.5rem;
}

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

.optic-cookie-text {
  font-size: 0.9rem;
  color: var(--ocular-ink);
  flex: 1;
}

.optic-cookie-buttons {
  display: flex;
  gap: 0.75rem;
}

.optic-cookie-btn {
  padding: 0.5rem 1.25rem;
  border-radius: 6px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  border: none;
}

.optic-cookie-accept {
  background: var(--ocular-brand);
  color: var(--ocular-surface);
}

.optic-cookie-decline {
  background: var(--ocular-surface-alt);
  color: var(--ocular-ink-muted);
}

/* Scroll-driven View Animations */
@keyframes fade-view {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Media Queries */
@media (max-width: 992px) {
  .sight-hero-split, .expert-hero-split {
    flex-direction: column;
    padding: 4dvh 1.5rem;
  }

  .sight-journal-triplet {
    grid-template-columns: 1fr;
  }

  .reserve-layout-columns {
    flex-direction: column;
  }

  .reserve-faq-grid {
    grid-template-columns: 1fr;
  }

  .expert-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .expert-context-shell {
    flex-direction: column;
    padding: 2rem;
  }

  .thank-card-shell {
    flex-direction: column;
  }

  .sight-roadmap-flex {
    flex-direction: column;
  }

  .sight-roadmap-flex::before {
    display: none;
  }
}

@media (max-width: 768px) {
  .optic-nav-pane {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--ocular-surface);
    flex-direction: column;
    padding: 1.5rem;
    border-bottom: 1px solid var(--ocular-border);
    box-shadow: 0 10px 15px rgba(0,0,0,0.05);
    gap: 1rem;
  }

  .optic-menu-toggle {
    display: flex;
  }

  .optic-menu-checkbox:checked ~ .optic-nav-pane {
    display: flex;
  }

  .sight-masonry-board {
    columns: 1;
  }
}