/* Importing modern, clean typography */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,300;0,500;0,800;0,900;1,400&family=Inter:wght@300;400;600;700&display=swap');

:root {
  /* Site specific theme variables (Theme: LIGHT, Style: Bold/Asymmetric/Flat) */
  --gaze-bg: #FCF9F5;
  --gaze-surface: #F3ECE3;
  --gaze-ink: #191B1A;
  --gaze-focus-accent: #115E59;
  --gaze-focus-pale: #CCFBF1;
  --gaze-contrast-marker: #C2410C;
  --gaze-border-color: #191B1A;
  
  --font-display: 'Montserrat', sans-serif;
  --font-body: 'Inter', sans-serif;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--gaze-bg);
  color: var(--gaze-ink);
}

body {
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.25s ease;
}

a:hover {
  opacity: 0.8;
}

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

/* Scroll tracker animation */
.sight-scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 4px;
  background-color: var(--gaze-contrast-marker);
  width: 0%;
  z-index: 10000;
  animation: gaze-progress-grow linear;
  animation-timeline: scroll();
}

@keyframes gaze-progress-grow {
  to { width: 100%; }
}

/* Shared Header Styles (Preset H - Typographic & Minimal) */
.sight-header-shell {
  background-color: var(--gaze-bg);
  border-bottom: 2px solid var(--gaze-border-color);
  position: sticky;
  top: 0;
  z-index: 999;
}

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

.sight-branding-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.sight-branding-logo {
  width: 36px;
  height: 36px;
  fill: none;
  stroke: var(--gaze-focus-accent);
  stroke-width: 2.5;
}

.sight-branding-text {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.6rem;
  letter-spacing: -1px;
  text-transform: uppercase;
  color: var(--gaze-ink);
}

/* CSS-only Hamburger */
.sight-nav-toggle {
  display: none;
}

.sight-nav-trigger-label {
  display: none;
  cursor: pointer;
  flex-direction: column;
  gap: 6px;
  width: 30px;
}

.sight-nav-trigger-label span {
  display: block;
  height: 3px;
  background-color: var(--gaze-ink);
  transition: all 0.3s ease;
}

.sight-nav-menu {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}

.sight-nav-item {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gaze-ink);
  position: relative;
  padding: 0.5rem 0;
}

.sight-nav-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--gaze-contrast-marker);
  transition: width 0.3s ease;
}

.sight-nav-item:hover::after {
  width: 100%;
}

/* Asymmetric Hero (Preset H) */
.gaze-word-hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  padding: 10dvh 2rem;
  background-color: var(--gaze-bg);
  border-bottom: 2px solid var(--gaze-border-color);
  overflow: hidden;
}

.gaze-word-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.07;
  pointer-events: none;
}

.gaze-word-hero-content {
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 2;
}

.gaze-word-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 10vw, 8rem);
  font-weight: 900;
  line-height: 0.95;
  text-transform: uppercase;
  letter-spacing: -2px;
  margin-bottom: 3rem;
}

.gaze-word-line {
  display: block;
}

.gaze-word-line-right {
  display: block;
  text-align: right;
  color: var(--gaze-focus-accent);
}

.gaze-word-line-shift {
  display: block;
  padding-left: 15%;
  text-decoration: underline var(--gaze-contrast-marker) 8px;
}

.gaze-word-meta {
  max-width: 500px;
  margin-top: 2rem;
}

.gaze-word-desc {
  font-size: 1.15rem;
  font-family: var(--font-body);
  margin-bottom: 2rem;
  color: var(--gaze-ink);
}

/* Flat solid buttons matching Preset H */
.sight-action-btn {
  display: inline-block;
  background-color: var(--gaze-ink);
  color: var(--gaze-bg);
  padding: 1.25rem 2.5rem;
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border: 2px solid var(--gaze-border-color);
  border-radius: 3px;
  cursor: pointer;
  transition: all 0.25s ease;
}

.sight-action-btn:hover {
  background-color: var(--gaze-bg);
  color: var(--gaze-ink);
}

.sight-action-btn-ghost {
  display: inline-block;
  background-color: transparent;
  color: var(--gaze-ink);
  padding: 1.2rem 2.5rem;
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border: 2px solid var(--gaze-border-color);
  border-radius: 3px;
  cursor: pointer;
  transition: all 0.25s ease;
}

.sight-action-btn-ghost:hover {
  background-color: var(--gaze-ink);
  color: var(--gaze-bg);
}

/* 3-Column Text Masonry (Preset H) */
.retina-masonry-section {
  padding: 12dvh 2rem;
  max-width: 1300px;
  margin: 0 auto;
}

.retina-masonry-title {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 4rem;
  border-bottom: 2px solid var(--gaze-border-color);
  padding-bottom: 1rem;
}

.retina-column-container {
  columns: 3;
  column-gap: 4rem;
  column-rule: 1px solid var(--gaze-border-color);
}

@media (max-width: 1024px) {
  .retina-column-container {
    columns: 2;
  }
}

@media (max-width: 768px) {
  .retina-column-container {
    columns: 1;
  }
}

.retina-column-block {
  break-inside: avoid;
  margin-bottom: 3rem;
}

.retina-col-heading {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  color: var(--gaze-focus-accent);
}

.retina-col-text {
  font-size: 1rem;
  color: var(--gaze-ink);
  margin-bottom: 1.5rem;
}

.retina-col-icon {
  width: 24px;
  height: 24px;
  stroke: var(--gaze-contrast-marker);
  stroke-width: 2;
  fill: none;
}

/* Full Width Image Section with Overlay (Preset H) */
.vision-immersive-strip {
  position: relative;
  height: 50vh;
  min-height: 400px;
  display: flex;
  align-items: center;
  overflow: hidden;
  border-top: 2px solid var(--gaze-border-color);
  border-bottom: 2px solid var(--gaze-border-color);
}

.vision-immersive-media {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vision-immersive-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(25, 27, 26, 0.85);
  z-index: 1;
}

.vision-immersive-text-wrap {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 3rem;
  color: var(--gaze-bg);
}

.vision-immersive-heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.vision-immersive-p {
  font-size: 1.1rem;
  max-width: 600px;
}

/* Inline Manifesto Rows (Preset H - Features) */
.gaze-manifesto-section {
  padding: 12dvh 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.gaze-manifesto-title {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 4rem;
}

.gaze-manifesto-row {
  display: flex;
  align-items: baseline;
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--gaze-border-color);
  gap: 2rem;
}

.gaze-manifesto-row:last-child {
  border-bottom: none;
}

.gaze-manifesto-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--gaze-contrast-marker);
  min-width: 80px;
  flex-shrink: 0;
}

.gaze-manifesto-content-box {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.gaze-manifesto-item-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--gaze-ink);
}

.gaze-manifesto-desc {
  font-size: 1.05rem;
  color: var(--gaze-ink);
  max-width: 800px;
}

/* Rotated Step Numbers - How It Works (Preset H) */
.steps-asymmetric-section {
  padding: 12dvh 2rem;
  background-color: var(--gaze-surface);
  border-top: 2px solid var(--gaze-border-color);
  border-bottom: 2px solid var(--gaze-border-color);
}

.steps-asymmetric-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.steps-asymmetric-main-title {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 5rem;
}

.steps-asymmetric-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6rem;
}

@media (max-width: 900px) {
  .steps-asymmetric-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
}

.steps-asymmetric-card {
  position: relative;
  padding-top: 3rem;
}

.steps-asymmetric-card:nth-child(2) {
  margin-top: 2rem;
}

.steps-asymmetric-card:nth-child(3) {
  margin-top: 4rem;
}

@media (max-width: 900px) {
  .steps-asymmetric-card:nth-child(2),
  .steps-asymmetric-card:nth-child(3) {
    margin-top: 0;
  }
}

.steps-asymmetric-bg-num {
  font-family: var(--font-display);
  font-size: 8rem;
  font-weight: 900;
  color: var(--gaze-focus-accent);
  opacity: 0.15;
  position: absolute;
  top: -2rem;
  left: -1rem;
  transform: rotate(-12deg);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.steps-asymmetric-card-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 1rem;
  position: relative;
  z-index: 10;
}

.steps-asymmetric-card-desc {
  font-size: 1rem;
  position: relative;
  z-index: 10;
}

/* Typographic CTA Strip (Preset H) */
.manifesto-cta-strip {
  padding: 10dvh 2rem;
  background-color: var(--gaze-ink);
  color: var(--gaze-bg);
  border-bottom: 2px solid var(--gaze-border-color);
}

.manifesto-cta-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 3rem;
}

@media (max-width: 768px) {
  .manifesto-cta-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

.manifesto-cta-heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.1;
  max-width: 700px;
}

.manifesto-cta-heading span {
  color: var(--gaze-focus-pale);
  text-decoration: underline var(--gaze-contrast-marker) 4px;
}

/* Expert / Biography Page (Preset H - Editorial style) */
.expert-editorial-layout {
  display: flex;
  min-height: 80vh;
  border-bottom: 2px solid var(--gaze-border-color);
}

@media (max-width: 900px) {
  .expert-editorial-layout {
    flex-direction: column-reverse;
  }
}

.expert-bio-block {
  width: 50%;
  padding: 8dvh 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: var(--gaze-bg);
}

@media (max-width: 900px) {
  .expert-bio-block {
    width: 100%;
  }
}

.expert-bio-dropcap {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 4rem;
  float: left;
  line-height: 0.8;
  padding-right: 0.75rem;
  color: var(--gaze-contrast-marker);
}

.expert-bio-p {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

.expert-photo-block {
  width: 50%;
  position: relative;
  min-height: 400px;
  background-color: var(--gaze-surface);
}

@media (max-width: 900px) {
  .expert-photo-block {
    width: 100%;
  }
}

.expert-photo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Plain stats layout (Preset H - pure text no boxes) */
.expert-stats-strip {
  padding: 8dvh 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

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

@media (max-width: 768px) {
  .expert-stats-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

.expert-stat-cell {
  text-align: left;
}

.expert-stat-number {
  font-family: var(--font-display);
  font-size: 4.5rem;
  font-weight: 900;
  line-height: 1;
  color: var(--gaze-focus-accent);
  margin-bottom: 0.5rem;
}

.expert-stat-label {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.1rem;
  text-transform: uppercase;
  color: var(--gaze-ink);
}

/* Reserve / Form Page (Preset H) */
.reserve-editorial-form-wrap {
  padding: 10dvh 2rem;
  max-width: 700px;
  margin: 0 auto;
}

.reserve-editorial-form-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 3rem;
  text-align: center;
}

.reserve-editorial-form {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  background-color: var(--gaze-bg);
}

.reserve-form-field {
  display: flex;
  flex-direction: column;
  position: relative;
}

.reserve-form-label {
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
  color: var(--gaze-ink);
}

.reserve-form-input {
  background: transparent;
  border: none;
  border-bottom: 2px solid var(--gaze-border-color);
  padding: 0.75rem 0.25rem;
  font-family: var(--font-body);
  font-size: 1.1rem;
  color: var(--gaze-ink);
  outline: none;
  transition: border-color 0.3s ease;
}

.reserve-form-input:focus {
  border-bottom-color: var(--gaze-focus-accent);
}

.reserve-form-checkbox-container {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
}

.reserve-form-checkbox-container input {
  margin-top: 0.25rem;
  width: 18px;
  height: 18px;
  accent-color: var(--gaze-focus-accent);
}

.reserve-form-checkbox-label {
  font-size: 0.9rem;
  line-height: 1.4;
}

/* Info Cards inside Reservation Page styled with asymmetrical bullet lists */
.reserve-meta-container {
  padding: 8dvh 2rem;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  border-top: 2px solid var(--gaze-border-color);
}

@media (max-width: 900px) {
  .reserve-meta-container {
    grid-template-columns: 1fr;
  }
}

.reserve-meta-card {
  border-top: 4px solid var(--gaze-focus-accent);
  padding-top: 1.5rem;
}

.reserve-meta-card-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.reserve-meta-card-p {
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

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

.reserve-meta-list-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
}

.reserve-meta-marker {
  width: 10px;
  height: 10px;
  background-color: var(--gaze-contrast-marker);
  border-radius: 50%;
}

/* Editorial Accordion style (all questions are visible / CSS only) */
.editorial-faq-section {
  padding: 10dvh 2rem;
  max-width: 800px;
  margin: 0 auto;
  border-top: 2px solid var(--gaze-border-color);
}

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

.editorial-faq-item {
  margin-bottom: 2.5rem;
  border-bottom: 1px dashed var(--gaze-border-color);
  padding-bottom: 1.5rem;
}

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

.editorial-faq-q {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.25rem;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  color: var(--gaze-focus-accent);
}

.editorial-faq-a {
  font-size: 1rem;
  line-height: 1.5;
}

/* Fixed Cookie Banner */
.custom-cookie-banner-wrap {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--gaze-ink);
  color: var(--gaze-bg);
  padding: 1.5rem 2rem;
  z-index: 99999;
  border-top: 2px solid var(--gaze-contrast-marker);
}

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

@media (max-width: 768px) {
  .custom-cookie-banner-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

.custom-cookie-banner-text {
  font-size: 0.95rem;
}

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

.custom-cookie-banner-btn-yes {
  background-color: var(--gaze-bg);
  color: var(--gaze-ink);
  border: none;
  font-family: var(--font-display);
  font-weight: 800;
  padding: 0.75rem 1.5rem;
  cursor: pointer;
  text-transform: uppercase;
  font-size: 0.8rem;
  border-radius: 2px;
}

.custom-cookie-banner-btn-no {
  background-color: transparent;
  color: var(--gaze-bg);
  border: 1px solid var(--gaze-bg);
  font-family: var(--font-display);
  font-weight: 800;
  padding: 0.75rem 1.5rem;
  cursor: pointer;
  text-transform: uppercase;
  font-size: 0.8rem;
  border-radius: 2px;
}

/* Legal Pages & General Layouts (Privacy Policy, Terms of Service) */
.legal-page-shell {
  padding: 10dvh 2rem;
  max-width: 800px;
  margin: 0 auto;
  min-height: 100vh;
}

.legal-main-heading {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 2.5rem;
}

.legal-section-h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  text-transform: uppercase;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

.legal-block-text {
  font-size: 1rem;
  margin-bottom: 1.5rem;
}

/* Thank You Page specific block */
.gratitude-hero-wrap {
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 8dvh 2rem;
  position: relative;
  overflow: hidden;
}

.gratitude-hero-media {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.1;
  pointer-events: none;
}

.gratitude-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 8vw, 5rem);
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.gratitude-subtitle {
  font-size: 1.25rem;
  max-width: 600px;
  margin-bottom: 3rem;
}

/* Shared Footer Styles */
.sight-footer-shell {
  background-color: var(--gaze-ink);
  color: var(--gaze-bg);
  padding: 8dvh 2rem 4dvh;
  border-top: 2px solid var(--gaze-border-color);
}

.sight-footer-inner {
  max-width: 1300px;
  margin: 0 auto;
}

.sight-footer-upper {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 3rem;
  margin-bottom: 4rem;
}

.sight-footer-upper-left {
  max-width: 400px;
}

.sight-footer-upper-logo-wrap {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.sight-footer-upper-logo {
  width: 32px;
  height: 32px;
  fill: none;
  stroke: var(--gaze-focus-pale);
  stroke-width: 2.5;
}

.sight-footer-upper-logo-text {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.4rem;
  letter-spacing: -1px;
  text-transform: uppercase;
  color: var(--gaze-bg);
}

.sight-footer-slogan {
  font-size: 0.95rem;
  opacity: 0.8;
}

.sight-footer-nav-grid {
  display: flex;
  gap: 4rem;
  flex-wrap: wrap;
}

.sight-footer-nav-col {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.sight-footer-nav-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gaze-focus-pale);
  margin-bottom: 0.5rem;
}

.sight-footer-link {
  font-size: 0.9rem;
  opacity: 0.75;
}

.sight-footer-link:hover {
  opacity: 1;
}

.sight-footer-disclaimer {
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: 2rem;
  margin-bottom: 1.5rem;
  font-size: 0.8rem;
  line-height: 1.5;
  opacity: 0.6;
}

.sight-footer-lower {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  opacity: 0.6;
}

@media (max-width: 600px) {
  .sight-footer-lower {
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
  }
}

/* Animations Scroll Reveal for content blocks */
.scroll-gaze-reveal {
  animation: scroll-gaze-fade-up linear both;
  animation-timeline: view();
  animation-range: entry 10% cover 30%;
}

@keyframes scroll-gaze-fade-up {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Mobile Responsive Menu Overrides */
@media (max-width: 768px) {
  .sight-nav-trigger-label {
    display: flex;
  }
  
  .sight-nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--gaze-bg);
    border-bottom: 2px solid var(--gaze-border-color);
    flex-direction: column;
    padding: 2rem;
    gap: 1.5rem;
    align-items: flex-start;
    display: none;
  }
  
  .sight-nav-toggle:checked ~ .sight-nav-menu {
    display: flex;
  }

  .sight-nav-toggle:checked ~ .sight-nav-trigger-label span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
  }

  .sight-nav-toggle:checked ~ .sight-nav-trigger-label span:nth-child(2) {
    opacity: 0;
  }

  .sight-nav-toggle:checked ~ .sight-nav-trigger-label span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -7px);
  }
}