:root {
  --focus-emerald-bg: #f9fbf9;
  --focus-ivory-surface: #ffffff;
  --focus-teal-tone: #0f766e;
  --focus-teal-hover: #0d9488;
  --focus-obsidian-ink: #111827;
  --focus-slate-muted: #4b5563;
  --focus-soft-border: #e5e7eb;
  --focus-teal-gradient: linear-gradient(135deg, #0f766e 0%, #0d9488 100%);
  --focus-light-gradient: linear-gradient(135deg, #f0fdf4 0%, #ccfbf1 100%);
  
  --font-display: 'Montserrat', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  --border-radius-soft: 20px;
  --shadow-raised: 0 10px 15px -3px rgba(0, 0, 0, 0.05), 0 4px 6px -2px rgba(0, 0, 0, 0.03);
  --shadow-inset: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06);
}

/* Base Styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-body);
  background-color: var(--focus-emerald-bg);
  color: var(--focus-obsidian-ink);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

/* Header & Progress Bar */
.scroll-progress {
  height: 4px;
  width: 0;
  background: var(--focus-teal-tone);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10000;
  animation: progress-grow linear;
  animation-timeline: scroll();
}

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

.eye-banner-top {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--focus-soft-border);
  box-shadow: var(--shadow-raised);
}

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

.eye-logo-area {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.25rem;
  color: var(--focus-teal-tone);
  letter-spacing: -1px;
}

.eye-logo-area svg {
  width: 32px;
  height: 32px;
  fill: currentColor;
}

.eye-nav-group {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.eye-nav-anchor {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--focus-slate-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.eye-nav-anchor:hover, .eye-nav-anchor.active {
  color: var(--focus-teal-tone);
}

/* Burger Menu CSS Only */
.eye-burger-btn {
  display: none;
  cursor: pointer;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  z-index: 1001;
}

.eye-burger-btn span {
  display: block;
  width: 28px;
  height: 3px;
  background-color: var(--focus-teal-tone);
  border-radius: 2px;
  transition: 0.3s;
}

#eye-menu-toggle {
  display: none;
}

/* Hero Section */
.vis-hero-wrapper {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 10dvh 2rem;
}

.vis-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.6) 100%);
  z-index: 1;
}

.vis-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.vis-hero-text {
  max-width: 650px;
}

.vis-hero-text h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: var(--focus-obsidian-ink);
}

.vis-hero-text p {
  font-size: 1.25rem;
  color: var(--focus-slate-muted);
  margin-bottom: 2.5rem;
}

.iris-action-trigger {
  display: inline-block;
  padding: 1.1rem 2.5rem;
  background: var(--focus-teal-gradient);
  color: #ffffff;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  border-radius: 9999px;
  box-shadow: 0 4px 14px rgba(15, 118, 110, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.iris-action-trigger:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(15, 118, 110, 0.6);
}

/* Scroll Reveal */
.reveal {
  animation: slide-up 0.6s linear both;
  animation-timeline: view();
  animation-range: entry 0% entry 30%;
}

@keyframes slide-up {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

/* Bento Grid Features */
.optic-block {
  padding: 10dvh 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.optic-block-title {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem auto;
}

.optic-block-title h2 {
  font-size: 2.25rem;
  margin-bottom: 1rem;
}

.optic-block-title p {
  color: var(--focus-slate-muted);
  font-size: 1.1rem;
}

.eye-bento-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.5rem;
}

.eye-bento-tile {
  background: var(--focus-ivory-surface);
  border-radius: var(--border-radius-soft);
  padding: 2.5rem;
  box-shadow: var(--shadow-raised);
  border: 1px solid var(--focus-soft-border);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.eye-bento-tile:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.eye-bento-span4 {
  grid-column: span 4;
  background: var(--focus-light-gradient);
}

.eye-bento-span2 {
  grid-column: span 2;
  text-align: center;
  justify-content: center;
  background: var(--focus-teal-tone);
  color: #ffffff;
}

.eye-bento-span2 h3 {
  color: #ffffff;
}

.eye-bento-span3 {
  grid-column: span 3;
}

.eye-bento-span6 {
  grid-column: span 6;
  flex-direction: row;
  align-items: center;
  gap: 2rem;
}

.eye-bento-icon {
  margin-bottom: 1.5rem;
  color: var(--focus-teal-tone);
}

.eye-bento-span2 .eye-bento-icon {
  color: #ffffff;
}

.eye-bento-span6 .eye-bento-icon {
  margin-bottom: 0;
  flex-shrink: 0;
}

.eye-bento-tile svg {
  width: 48px;
  height: 48px;
  fill: currentColor;
}

.eye-bento-tile h3 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

.eye-bento-tile p {
  color: var(--focus-slate-muted);
}

.eye-bento-span2 p {
  color: rgba(255, 255, 255, 0.9);
}

.eye-bento-stat {
  font-size: 4.5rem;
  font-weight: 900;
  font-family: var(--font-display);
  line-height: 1;
  margin-bottom: 0.5rem;
}

/* Image Text Section (bg2.webp) */
.gaze-combo-zone {
  position: relative;
  padding: 12dvh 2rem;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.gaze-combo-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(270deg, rgba(25, 30, 25, 0.9) 0%, rgba(25, 30, 25, 0.4) 100%);
  z-index: 1;
}

.gaze-combo-box {
  position: relative;
  z-index: 2;
  background: var(--focus-ivory-surface);
  padding: 3.5rem;
  border-radius: var(--border-radius-soft);
  max-width: 600px;
  box-shadow: var(--shadow-raised);
}

.gaze-combo-box h3 {
  font-size: 1.85rem;
  margin-bottom: 1rem;
  color: var(--focus-teal-tone);
}

.gaze-combo-box p {
  color: var(--focus-slate-muted);
  margin-bottom: 1.5rem;
}

/* Sequence Container (How it works) */
.sequence-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.sequence-step {
  background: var(--focus-ivory-surface);
  padding: 3rem 2rem;
  border-radius: var(--border-radius-soft);
  border: 1px solid var(--focus-soft-border);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-raised);
}

.sequence-digit {
  position: absolute;
  top: -10px;
  right: -10px;
  font-size: 7rem;
  font-weight: 900;
  font-family: var(--font-display);
  color: var(--focus-teal-tone);
  opacity: 0.08;
  line-height: 1;
}

.sequence-step h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  position: relative;
  z-index: 2;
}

.sequence-step p {
  color: var(--focus-slate-muted);
  position: relative;
  z-index: 2;
}

/* CTA Stripe */
.eye-strip-attention {
  background: var(--focus-teal-gradient);
  color: #ffffff;
  padding: 8dvh 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.eye-strip-inner {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.eye-strip-attention h2 {
  color: #ffffff;
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.eye-strip-attention p {
  font-size: 1.2rem;
  margin-bottom: 2.5rem;
  opacity: 0.95;
}

.iris-action-trigger-white {
  background: #ffffff;
  color: var(--focus-teal-tone);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
}

.iris-action-trigger-white:hover {
  background: var(--focus-emerald-bg);
  transform: translateY(-2px);
}

/* Expert Page Specifics */
.vis-expert-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.vis-expert-img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  border-radius: var(--border-radius-soft);
  box-shadow: var(--shadow-raised);
}

.vis-expert-bio h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.vis-expert-bio p {
  font-size: 1.1rem;
  color: var(--focus-slate-muted);
  margin-bottom: 1.5rem;
}

.vis-expert-mini-bento {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

/* Reservation Form Page */
.reserve-split-frame {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.reserve-info-cards {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.reserve-simple-card {
  background: var(--focus-ivory-surface);
  padding: 2rem;
  border-radius: var(--border-radius-soft);
  box-shadow: var(--shadow-raised);
  border: 1px solid var(--focus-soft-border);
}

.reserve-simple-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: var(--focus-teal-tone);
}

.reserve-simple-card ul {
  list-style: none;
  margin-top: 1rem;
}

.reserve-simple-card li {
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: 0.5rem;
  color: var(--focus-slate-muted);
}

.reserve-simple-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--focus-teal-tone);
}

.reserve-form-block {
  background: var(--focus-ivory-surface);
  padding: 3.5rem;
  border-radius: var(--border-radius-soft);
  box-shadow: var(--shadow-raised);
  border: 1px solid var(--focus-soft-border);
}

.reserve-form-block h3 {
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
}

.form-group-item {
  margin-bottom: 1.5rem;
}

.form-group-item label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.form-group-item input, .form-group-item textarea {
  width: 100%;
  padding: 1rem;
  border-radius: 10px;
  border: 1px solid var(--focus-soft-border);
  font-family: inherit;
  font-size: 1rem;
  outline: none;
  transition: border-color 0.3s;
}

.form-group-item input:focus, .form-group-item textarea:focus {
  border-color: var(--focus-teal-tone);
}

.form-checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.85rem;
  color: var(--focus-slate-muted);
  cursor: pointer;
}

.form-checkbox-label input {
  margin-top: 3px;
}

.form-action-btn {
  width: 100%;
  padding: 1.1rem;
  background: var(--focus-teal-gradient);
  color: #ffffff;
  border: none;
  border-radius: 9999px;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.2s;
}

.form-action-btn:hover {
  transform: translateY(-2px);
}

/* FAQ Accordion Section */
.faq-accordion-box {
  margin-top: 6rem;
}

.faq-single-row {
  background: var(--focus-ivory-surface);
  border-radius: 12px;
  margin-bottom: 1rem;
  border: 1px solid var(--focus-soft-border);
  overflow: hidden;
}

.faq-row-header {
  padding: 1.5rem;
  font-weight: 700;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  background: #fdfdfd;
}

.faq-row-text {
  padding: 0 1.5rem 1.5rem 1.5rem;
  color: var(--focus-slate-muted);
}

/* Cookie Banner */
.eye-cookie-alert {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--focus-obsidian-ink);
  color: #ffffff;
  padding: 1.5rem;
  z-index: 99999;
  box-shadow: 0 -10px 25px rgba(0,0,0,0.15);
  display: none;
}

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

.eye-cookie-inner p {
  font-size: 0.95rem;
  opacity: 0.9;
}

.eye-cookie-btns {
  display: flex;
  gap: 1rem;
  flex-shrink: 0;
}

.cookie-allow-btn {
  background: var(--focus-teal-tone);
  color: white;
  padding: 0.6rem 1.5rem;
  border-radius: 9999px;
  font-weight: 700;
  font-size: 0.85rem;
  border: none;
  cursor: pointer;
}

.cookie-deny-btn {
  background: transparent;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 0.6rem 1.5rem;
  border-radius: 9999px;
  font-weight: 700;
  font-size: 0.85rem;
  cursor: pointer;
}

/* Legal Pages Styling */
.legal-page-body {
  max-width: 800px;
  margin: 0 auto;
  padding: 8dvh 2rem;
}

.legal-page-body h1 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: var(--focus-teal-tone);
}

.legal-page-body h2 {
  font-size: 1.5rem;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

.legal-page-body p {
  color: var(--focus-slate-muted);
  margin-bottom: 1.25rem;
}

/* Thank You Page Styling */
.thank-you-stage {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 2rem;
}

.thank-you-card {
  background: var(--focus-ivory-surface);
  border-radius: var(--border-radius-soft);
  box-shadow: var(--shadow-raised);
  padding: 4rem;
  text-align: center;
  max-width: 600px;
  width: 100%;
}

.thank-you-card h1 {
  color: var(--focus-teal-tone);
  font-size: 3rem;
  margin-bottom: 1rem;
}

.thank-you-card p {
  color: var(--focus-slate-muted);
  font-size: 1.2rem;
  margin-bottom: 2.5rem;
}

.thank-you-img {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 2rem;
  border: 5px solid var(--focus-soft-border);
}

/* Footer styling */
.eye-footer-base {
  background: var(--focus-obsidian-ink);
  color: #ffffff;
  padding: 5rem 2rem 2rem 2rem;
}

.eye-footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

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

.eye-footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.25rem;
  color: #ffffff;
}

.eye-footer-logo svg {
  width: 32px;
  height: 32px;
  fill: currentColor;
}

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

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

.eye-footer-links a:hover {
  color: #ffffff;
}

.eye-footer-disclaimer {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.5;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
}

.eye-footer-copy {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
  display: flex;
  justify-content: space-between;
}

/* Responsive adjustments */
@media (max-width: 968px) {
  .eye-bento-grid {
    grid-template-columns: 1fr;
  }
  
  .eye-bento-span4, .eye-bento-span2, .eye-bento-span3, .eye-bento-span6 {
    grid-column: span 1;
  }
  
  .eye-bento-span6 {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .vis-expert-cols, .reserve-split-frame {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  
  .vis-expert-img {
    height: 400px;
  }
  
  .sequence-container {
    grid-template-columns: 1fr;
  }
  
  .eye-burger-btn {
    display: flex;
  }
  
  .eye-nav-group {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 250px;
    background: var(--focus-ivory-surface);
    flex-direction: column;
    justify-content: center;
    gap: 3rem;
    box-shadow: -10px 0 30px rgba(0,0,0,0.1);
    transition: 0.3s ease;
    z-index: 1000;
  }
  
  #eye-menu-toggle:checked ~ .eye-nav-group {
    right: 0;
  }
  
  #eye-menu-toggle:checked ~ .eye-burger-btn span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
  }
  
  #eye-menu-toggle:checked ~ .eye-burger-btn span:nth-child(2) {
    opacity: 0;
  }
  
  #eye-menu-toggle:checked ~ .eye-burger-btn span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }
  
  .eye-cookie-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}