@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,400;0,600;0,700;1,400&family=Oswald:wght@400;500;700&display=swap');

:root {
  /* Colorful Theme Colors */
  --optic-surface: #ffffff;
  --optic-canvas: #fcfbfa;
  --optic-ink-dark: #0f172a;
  --optic-ink-read: #334155;
  --optic-vibrant-lead: #8b5cf6;
  --optic-vibrant-warm: #ec4899;
  --optic-vibrant-sun: #f59e0b;
  --optic-flow-mix: linear-gradient(135deg, var(--optic-vibrant-lead), var(--optic-vibrant-warm));
  --optic-flow-alt: linear-gradient(135deg, var(--optic-vibrant-warm), var(--optic-vibrant-sun));
  
  /* Typography */
  --sight-head-font: 'Oswald', sans-serif;
  --sight-body-font: 'Nunito', sans-serif;
  
  /* Layout Variables */
  --focus-pad-scale: 16dvh; /* Spacious */
  --lens-radius: 999px; /* Pill */
  --lens-radius-card: 32px;
  --depth-intense: 0 25px 50px -12px rgba(139, 92, 246, 0.25), 0 0 0 1px rgba(139, 92, 246, 0.05);
  --depth-hover: 0 30px 60px -10px rgba(236, 72, 153, 0.3), 0 0 0 1px rgba(236, 72, 153, 0.1);
}

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

body {
  font-family: var(--sight-body-font);
  color: var(--optic-ink-read);
  background-color: var(--optic-canvas);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--sight-head-font);
  color: var(--optic-ink-dark);
  text-transform: uppercase;
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
}

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

/* Structural Wrappers */
.view-boundary {
  width: 90%;
  max-width: 1280px;
  margin: 0 auto;
}

/* Top Bar (Header) - Preset E */
.ocular-top-band {
  background-color: var(--optic-surface);
  border-bottom: 1px solid rgba(0,0,0,0.05);
  position: relative;
  z-index: 100;
  padding: 1.5rem 0;
}

.top-band-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand-identifier {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--sight-head-font);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--optic-ink-dark);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.brand-identifier svg {
  width: 32px;
  height: 32px;
  fill: url(#vibrant-grad);
}

.navigation-pathways {
  display: flex;
  gap: 2.5rem;
}

.navigation-pathways a {
  font-family: var(--sight-head-font);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.95rem;
  transition: color 0.3s ease;
  position: relative;
}

.navigation-pathways a:hover {
  color: var(--optic-vibrant-warm);
}

.navigation-pathways a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--optic-flow-mix);
  transition: width 0.3s ease;
}

.navigation-pathways a:hover::after {
  width: 100%;
}

/* Mobile Nav Trick */
.logic-toggle-nav {
  display: none;
}
.mobile-trigger-icon {
  display: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
}
.mobile-trigger-icon span {
  width: 25px;
  height: 3px;
  background-color: var(--optic-ink-dark);
  transition: 0.3s;
}

/* Action Triggers (Buttons) */
.focus-action-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2.5rem;
  border-radius: var(--lens-radius);
  background: var(--optic-surface);
  color: var(--optic-ink-dark);
  font-family: var(--sight-head-font);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border: 2px solid var(--optic-vibrant-warm);
  transition: all 0.4s ease;
  cursor: pointer;
  box-shadow: var(--depth-intense);
}

.focus-action-pill:hover {
  background: var(--optic-flow-mix);
  color: var(--optic-surface);
  border-color: transparent;
  box-shadow: var(--depth-hover);
  transform: translateY(-2px);
}

.focus-action-solid {
  background: var(--optic-flow-mix);
  color: var(--optic-surface);
  border: none;
}
.focus-action-solid:hover {
  background: var(--optic-flow-alt);
}

/* Index - Hero Editorial Split (Preset E) */
.editorial-entry-stage {
  display: flex;
  min-height: 85vh;
  background: var(--optic-surface);
}

.editorial-vertical-strip {
  width: 32%;
  background: var(--optic-flow-mix);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.editorial-vertical-strip span {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);
  font-family: var(--sight-head-font);
  font-size: 4rem;
  color: rgba(255,255,255,0.15);
  font-weight: 700;
  white-space: nowrap;
  pointer-events: none;
}

.editorial-visual-zone {
  width: 68%;
  position: relative;
  display: flex;
  align-items: center;
  padding: 4rem;
}

.editorial-visual-zone .bg-layer {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  object-fit: cover;
  z-index: 1;
}

.editorial-visual-zone .overlay-layer {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(to right, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.5) 100%);
  z-index: 2;
}

.entry-text-core {
  position: relative;
  z-index: 3;
  max-width: 600px;
}

.entry-text-core h1 {
  font-size: 4.5rem;
  margin-bottom: 1.5rem;
  background: var(--optic-flow-mix);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.entry-text-core p {
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
  font-weight: 600;
  color: var(--optic-ink-dark);
}

/* Index - Pull Quote (Preset E) */
.wisdom-quote-segment {
  padding: var(--focus-pad-scale) 0;
  background: var(--optic-canvas);
  text-align: center;
}

.quote-central {
  font-family: var(--sight-body-font);
  font-size: 2.2rem;
  font-style: italic;
  font-weight: 300;
  color: var(--optic-vibrant-lead);
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  line-height: 1.4;
}

.quote-central::before,
.quote-central::after {
  content: '"';
  font-family: var(--sight-head-font);
  font-size: 4rem;
  color: var(--optic-vibrant-warm);
  opacity: 0.3;
  position: absolute;
}
.quote-central::before { top: -20px; left: -40px; }
.quote-central::after { bottom: -40px; right: -40px; }

/* Index - Split Content (Preset E) */
.dual-insight-segment {
  display: flex;
  align-items: stretch;
  background: var(--optic-surface);
}

.dual-image-pane {
  width: 45%;
  min-height: 60vh;
}
.dual-image-pane img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dual-text-pane {
  width: 55%;
  padding: 6rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.dual-text-pane h2 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}
.dual-text-pane p {
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

/* Index - Magazine Grid Features (Preset E) */
.magazine-traits-segment {
  padding: var(--focus-pad-scale) 0;
  background: var(--optic-canvas);
}

.magazine-grid-core {
  display: flex;
  gap: 2rem;
  min-height: 600px;
}

.trait-major-pane {
  width: 50%;
  position: relative;
  border-radius: var(--lens-radius-card);
  overflow: hidden;
  box-shadow: var(--depth-intense);
}

.trait-major-pane img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.trait-major-overlay {
  position: absolute;
  bottom: 0; left: 0; width: 100%;
  padding: 3rem;
  background: linear-gradient(to top, rgba(15,23,42,0.9), transparent);
  color: var(--optic-surface);
}
.trait-major-overlay h3 { color: var(--optic-surface); font-size: 2.5rem; }

.trait-minor-stack {
  width: 50%;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.trait-minor-card {
  flex: 1;
  background: var(--optic-surface);
  border-radius: var(--lens-radius-card);
  padding: 3rem;
  border-top: 6px solid var(--optic-vibrant-warm);
  box-shadow: var(--depth-intense);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.trait-minor-card svg {
  width: 48px;
  height: 48px;
  margin-bottom: 1.5rem;
  fill: url(#vibrant-grad);
}
.trait-minor-card h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

/* Index - Horizontal Steps (Preset E) */
.process-flow-segment {
  padding: var(--focus-pad-scale) 0;
  background: var(--optic-surface);
}

.process-flow-title {
  text-align: center;
  font-size: 3.5rem;
  margin-bottom: 4rem;
}

.process-track {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
}

.process-node {
  flex: 1;
  position: relative;
  padding: 2rem;
}

.process-node:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -1rem;
  width: 2px;
  height: 60%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.05);
}

.node-giant-number {
  font-family: var(--sight-head-font);
  font-size: 8rem;
  font-weight: 700;
  color: var(--optic-vibrant-lead);
  opacity: 0.07;
  position: absolute;
  top: -20px;
  left: 10px;
  line-height: 1;
  z-index: 0;
}

.node-content-wrap {
  position: relative;
  z-index: 1;
}

.node-content-wrap h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

/* Index - CTA Strip (Preset E) */
.action-terminal-segment {
  padding: var(--focus-pad-scale) 0;
  background: var(--optic-canvas);
  text-align: center;
}

.action-terminal-segment h2 {
  font-size: 3.5rem;
  margin-bottom: 2rem;
}

/* Expert - Header Stats */
.expert-metrics-row {
  display: flex;
  justify-content: center;
  gap: 4rem;
  padding: 4rem 0;
  background: var(--optic-surface);
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.metric-unit {
  text-align: center;
}
.metric-unit .metric-val {
  font-family: var(--sight-head-font);
  font-size: 4rem;
  font-weight: 700;
  background: var(--optic-flow-mix);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
}
.metric-unit .metric-label {
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 0.5rem;
}

/* Expert - Alternating Content */
.alternating-insight-wrap:nth-child(even) {
  flex-direction: row-reverse;
}

/* Reserve - Top Info Row */
.reserve-intel-row {
  display: flex;
  gap: 2rem;
  padding: 4rem 0;
}
.reserve-intel-card {
  flex: 1;
  background: var(--optic-surface);
  padding: 2.5rem;
  border-radius: var(--lens-radius-card);
  border-top: 4px solid var(--optic-vibrant-warm);
  box-shadow: var(--depth-intense);
}
.reserve-intel-card h3 { font-size: 1.5rem; margin-bottom: 1rem; }
.reserve-intel-card ul { list-style: none; margin-top: 1rem; }
.reserve-intel-card ul li {
  margin-bottom: 0.5rem;
  padding-left: 1.5rem;
  position: relative;
}
.reserve-intel-card ul li::before {
  content: '';
  position: absolute;
  left: 0; top: 6px;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--optic-vibrant-warm);
}

/* Reserve - Form */
.booking-form-console {
  max-width: 700px;
  margin: 0 auto var(--focus-pad-scale);
  background: var(--optic-surface);
  padding: 4rem;
  border-radius: var(--lens-radius-card);
  box-shadow: var(--depth-intense);
}

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

.input-corridor {
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
}

.input-corridor label {
  font-family: var(--sight-head-font);
  text-transform: uppercase;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  color: var(--optic-ink-dark);
}

.input-corridor input,
.input-corridor textarea {
  padding: 1rem 1.5rem;
  border-radius: var(--lens-radius);
  border: 1px solid rgba(0,0,0,0.1);
  background: var(--optic-canvas);
  font-family: var(--sight-body-font);
  font-size: 1rem;
  transition: border 0.3s;
}

.input-corridor textarea {
  border-radius: 20px;
  resize: vertical;
  min-height: 120px;
}

.input-corridor input:focus,
.input-corridor textarea:focus {
  outline: none;
  border-color: var(--optic-vibrant-warm);
}

.consent-logic {
  flex-direction: row;
  align-items: center;
  gap: 1rem;
}
.consent-logic input {
  width: 20px;
  height: 20px;
}
.consent-logic label { margin-bottom: 0; text-transform: none; font-family: var(--sight-body-font); font-size: 0.9rem; }

.form-submit-zone {
  margin-top: 2rem;
  text-align: center;
}

/* FAQ Editorial */
.knowledge-faq-segment {
  max-width: 800px;
  margin: 0 auto var(--focus-pad-scale);
}
.faq-node {
  margin-bottom: 2rem;
  border-bottom: 1px solid rgba(0,0,0,0.1);
  padding-bottom: 1.5rem;
}
.faq-node h4 {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
  color: var(--optic-vibrant-lead);
}

/* Generic Pages (Privacy, Terms, Thank) */
.standard-doc-layout {
  padding: var(--focus-pad-scale) 0;
  min-height: 70vh;
}
.doc-sheet {
  background: var(--optic-surface);
  padding: 4rem;
  border-radius: var(--lens-radius-card);
  box-shadow: var(--depth-intense);
}
.doc-sheet h1 { font-size: 3rem; margin-bottom: 2rem; }
.doc-sheet h2 { font-size: 2rem; margin: 2rem 0 1rem; }
.doc-sheet p { margin-bottom: 1rem; }

/* Footer */
.ocular-bottom-band {
  background: var(--optic-ink-dark);
  color: var(--optic-surface);
  padding: 4rem 0 2rem;
}

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

.footer-brand .brand-identifier {
  color: var(--optic-surface);
  margin-bottom: 1rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.footer-links a { opacity: 0.7; transition: opacity 0.3s; }
.footer-links a:hover { opacity: 1; color: var(--optic-vibrant-warm); }

.legal-disclaimer-box {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 2rem;
  text-align: center;
  font-size: 0.85rem;
  opacity: 0.6;
}

/* Cookie Banner */
.consent-floating-panel {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--optic-surface);
  padding: 1.5rem;
  box-shadow: 0 -10px 40px rgba(0,0,0,0.1);
  z-index: 9999;
  display: none;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}
.consent-floating-panel p { margin: 0; font-weight: 600; }
.consent-actions { display: flex; gap: 1rem; }

/* Responsive adjustments */
@media (max-width: 1024px) {
  .editorial-entry-stage { flex-direction: column; }
  .editorial-vertical-strip { width: 100%; padding: 1rem; }
  .editorial-vertical-strip span { writing-mode: horizontal-tb; transform: none; font-size: 2rem; }
  .editorial-visual-zone { width: 100%; padding: 3rem 1.5rem; }
  
  .dual-insight-segment { flex-direction: column; }
  .dual-image-pane, .dual-text-pane { width: 100%; }
  .dual-text-pane { padding: 3rem 1.5rem; }
  
  .magazine-grid-core { flex-direction: column; }
  .trait-major-pane, .trait-minor-stack { width: 100%; }
  .trait-major-pane { min-height: 400px; }
  
  .reserve-intel-row { flex-direction: column; }
}

@media (max-width: 768px) {
  .mobile-trigger-icon { display: flex; }
  .retina-nav-links {
    position: absolute;
    top: 100%; left: 0; width: 100%;
    background: var(--optic-surface);
    flex-direction: column;
    padding: 2rem;
    gap: 1.5rem;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    transition: clip-path 0.4s ease;
  }
  .logic-toggle-nav:checked ~ .retina-nav-links {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
  
  .process-track { flex-direction: column; gap: 3rem; }
  .process-node:not(:last-child)::after { display: none; }
  
  .expert-metrics-row { flex-direction: column; gap: 2rem; }
  
  .consent-floating-panel { flex-direction: column; text-align: center; gap: 1rem; }
}