/* style.css - Organic Blob + Fluid Layout */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&family=Raleway:wght@400;700;800&display=swap');

:root {
  --sight-cream-bg: #FCFAF6;
  --sight-soft-surface: #F5EFEB;
  --sight-deep-ink: #1B292A;
  --sight-emerald-accent: #2A6F97;
  --sight-emerald-hover: #014F86;
  --sight-warm-highlight: #E9C46A;
  --sight-coral-soft: #F4A261;
  --sight-pearl-white: #FFFFFF;
  --sight-fluid-gradient: linear-gradient(135deg, #2A6F97 0%, #A9D6E5 100%);
  --sight-soft-gradient: linear-gradient(135deg, #FCFAF6 0%, #F5EFEB 100%);
  
  --font-display: 'Raleway', sans-serif;
  --font-body: 'Poppins', sans-serif;
  
  --sight-radius-soft: 18px;
  --sight-shadow-raised: 0 10px 30px rgba(27, 41, 42, 0.08);
  --sight-shadow-deep: 0 20px 40px rgba(27, 41, 42, 0.15);
  
  --sight-spacing-normal: 10dvh;
}

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

html {
  scroll-behavior: smooth;
  font-family: var(--font-body);
  background-color: var(--sight-cream-bg);
  color: var(--sight-deep-ink);
  line-height: 1.6;
}

body {
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Scroll Progress Bar */
.sight-scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 4px;
  background: var(--sight-emerald-accent);
  width: 0%;
  z-index: 10000;
  animation: sight-progress auto linear;
  animation-timeline: scroll(root);
}

@keyframes sight-progress {
  from { width: 0%; }
  to { width: 100%; }
}

/* Scroll View Animations */
.sight-scroll-reveal {
  animation: sight-fade-up auto linear;
  animation-timeline: view();
  animation-range: entry 5% cover 25%;
}

@keyframes sight-fade-up {
  from { opacity: 0; transform: translateY(50px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  color: var(--sight-deep-ink);
  line-height: 1.2;
}

p {
  font-weight: 300;
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
}

/* Shared Header Layout */
.vision-header-bar {
  background: var(--sight-pearl-white);
  box-shadow: var(--sight-shadow-raised);
  position: sticky;
  top: 0;
  z-index: 999;
  padding: 1rem 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.vision-blob-logo-container {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.vision-blob-logo {
  width: 50px;
  height: 50px;
  background: var(--sight-fluid-gradient);
  border-radius: 50% 50% 50% 50% / 60% 40% 60% 40%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.vision-blob-logo:hover {
  transform: rotate(15deg) scale(1.05);
}

.vision-blob-logo svg {
  width: 28px;
  height: 28px;
  fill: var(--sight-pearl-white);
}

.vision-site-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--sight-deep-ink);
}

/* CSS-Only Hamburger Menu */
.vision-burger-input {
  display: none;
}

.vision-burger-trigger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  z-index: 1001;
}

.vision-burger-trigger span {
  width: 30px;
  height: 3px;
  background-color: var(--sight-deep-ink);
  transition: all 0.3s ease;
  border-radius: 2px;
}

.vision-main-nav-list {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

.vision-main-nav-link {
  text-decoration: none;
  color: var(--sight-deep-ink);
  font-weight: 500;
  font-size: 1rem;
  font-family: var(--font-display);
  position: relative;
  padding: 5px 0;
  transition: color 0.3s ease;
}

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

.vision-main-nav-link:hover::after {
  width: 100%;
}

.vision-main-nav-link:hover {
  color: var(--sight-emerald-accent);
}

/* Hero Split layout */
.eye-hero-split-section {
  padding: var(--sight-spacing-normal) 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4rem;
  flex-wrap: wrap;
}

.eye-hero-content {
  flex: 1 1 500px;
}

.eye-hero-title {
  font-size: clamp(2.2rem, 5vw, 4rem);
  margin-bottom: 1.5rem;
}

.eye-hero-btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: var(--sight-fluid-gradient);
  color: var(--sight-pearl-white);
  text-decoration: none;
  border-radius: 999px;
  font-weight: 700;
  font-family: var(--font-display);
  box-shadow: var(--sight-shadow-raised);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.eye-hero-btn:hover {
  transform: translateY(-3px);
  box-shadow: var(--sight-shadow-deep);
}

.eye-hero-blob-frame {
  flex: 1 1 400px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.eye-hero-blob-image {
  width: 100%;
  max-width: 500px;
  aspect-ratio: 1;
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  background-size: cover;
  background-position: center;
  box-shadow: var(--sight-shadow-deep);
  transition: border-radius 1s ease-in-out;
  animation: blob-morph 10s infinite alternate;
}

@keyframes blob-morph {
  0% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
  50% { border-radius: 40% 60% 50% 50% / 30% 70% 40% 60%; }
  100% { border-radius: 50% 50% 60% 40% / 70% 30% 50% 50%; }
}

/* Section with Wave / Blob layout */
.sight-content-wave-section {
  position: relative;
  background-color: var(--sight-soft-surface);
  padding: calc(var(--sight-spacing-normal) * 1.5) 5%;
  margin: 4rem 0;
  clip-path: polygon(0 6%, 100% 0, 100% 94%, 0 100%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4rem;
  flex-wrap: wrap;
}

.sight-content-wave-image {
  flex: 1 1 400px;
  height: 400px;
  background-size: cover;
  background-position: center;
  clip-path: ellipse(50% 46% at 55% 50%);
  box-shadow: var(--sight-shadow-raised);
}

.sight-content-wave-text {
  flex: 1 1 500px;
}

/* Features Grid */
.sight-feature-container {
  padding: var(--sight-spacing-normal) 5%;
}

.sight-section-header {
  text-align: center;
  margin-bottom: 4rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.sight-feature-deck {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2.5rem;
}

.sight-feature-leaf {
  background: var(--sight-pearl-white);
  padding: 3rem 2rem;
  border-radius: var(--sight-radius-soft);
  box-shadow: var(--sight-shadow-raised);
  text-align: center;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.sight-feature-leaf:hover {
  transform: translateY(-8px);
  box-shadow: var(--sight-shadow-deep);
}

.sight-feature-blob-icon {
  width: 80px;
  height: 80px;
  background: var(--sight-soft-surface);
  border-radius: 60% 40% 55% 45% / 45% 55% 40% 60%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem auto;
  transition: border-radius 0.6s ease;
}

.sight-feature-leaf:hover .sight-feature-blob-icon {
  border-radius: 40% 60% 45% 55% / 55% 45% 60% 40%;
  background: var(--sight-emerald-accent);
}

.sight-feature-blob-icon svg {
  width: 35px;
  height: 35px;
  fill: var(--sight-emerald-accent);
  transition: fill 0.3s ease;
}

.sight-feature-leaf:hover .sight-feature-blob-icon svg {
  fill: var(--sight-pearl-white);
}

.sight-feature-leaf h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

/* How It Works with Bubble-Numbered and connector svg */
.sight-how-bubble-flow {
  padding: var(--sight-spacing-normal) 5%;
  position: relative;
}

.sight-bubble-step-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 3rem;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

.sight-bubble-step {
  flex: 1 1 300px;
  text-align: center;
  background: var(--sight-pearl-white);
  padding: 3rem 2rem;
  border-radius: var(--sight-radius-soft);
  box-shadow: var(--sight-shadow-raised);
  position: relative;
}

.sight-bubble-number {
  width: 70px;
  height: 70px;
  background: var(--sight-fluid-gradient);
  color: var(--sight-pearl-white);
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 55% 45% 48% 52% / 50% 50% 50% 50%;
  margin: -5.5rem auto 2rem auto;
  box-shadow: var(--sight-shadow-raised);
}

/* CTA Wave Strip */
.sight-cta-wave-strip {
  background: var(--sight-fluid-gradient);
  color: var(--sight-pearl-white);
  padding: 6rem 5%;
  text-align: center;
  clip-path: polygon(0 15%, 100% 0, 100% 85%, 0 100%);
  margin: 4rem 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.sight-cta-wave-strip h2 {
  color: var(--sight-pearl-white);
  font-size: clamp(1.8rem, 4vw, 3rem);
  margin-bottom: 1.5rem;
}

.sight-cta-wave-strip p {
  max-width: 600px;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.sight-cta-pill-button {
  display: inline-block;
  padding: 1rem 3rem;
  background: var(--sight-pearl-white);
  color: var(--sight-emerald-accent);
  text-decoration: none;
  font-weight: 800;
  font-family: var(--font-display);
  border-radius: 999px;
  box-shadow: var(--sight-shadow-raised);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sight-cta-pill-button:hover {
  transform: translateY(-3px);
  box-shadow: var(--sight-shadow-deep);
}

/* Expert Page Custom Elements */
.sight-expert-stats-deck {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  padding: var(--sight-spacing-normal) 5%;
}

.sight-expert-stat-pill {
  background: var(--sight-pearl-white);
  padding: 2.5rem;
  border-radius: 999px;
  box-shadow: var(--sight-shadow-raised);
  text-align: center;
  min-width: 260px;
  flex: 1 1 260px;
  border: 2px solid var(--sight-soft-surface);
}

.sight-expert-stat-value {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  color: var(--sight-emerald-accent);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.sight-expert-stat-label {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.95rem;
  text-transform: uppercase;
}

.sight-expert-pullquote-block {
  max-width: 800px;
  margin: var(--sight-spacing-normal) auto;
  padding: 4rem;
  background: var(--sight-soft-surface);
  border-radius: 50px 10px 50px 10px;
  text-align: center;
  position: relative;
}

.sight-expert-pullquote-block blockquote {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-style: italic;
  font-weight: bold;
  color: var(--sight-deep-ink);
  line-height: 1.5;
}

/* Reserve Page Layout & Form */
.sight-reserve-blob-card {
  max-width: 650px;
  margin: var(--sight-spacing-normal) auto;
  background: var(--sight-pearl-white);
  border-radius: 28px;
  box-shadow: var(--sight-shadow-deep);
  padding: 4rem 3rem;
}

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

.sight-reserve-input-group label {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.sight-reserve-input-group input, 
.sight-reserve-input-group textarea {
  width: 100%;
  padding: 1rem;
  border: 2px solid var(--sight-soft-surface);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 1rem;
  background-color: var(--sight-cream-bg);
  transition: border-color 0.3s ease;
}

.sight-reserve-input-group input:focus, 
.sight-reserve-input-group textarea:focus {
  outline: none;
  border-color: var(--sight-emerald-accent);
}

.sight-reserve-checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 2.5rem;
}

.sight-reserve-checkbox-group input {
  margin-top: 5px;
}

.sight-reserve-checkbox-group label {
  font-size: 0.9rem;
}

.sight-reserve-checkbox-group a {
  color: var(--sight-emerald-accent);
  text-decoration: underline;
}

.sight-reserve-submit-btn {
  width: 100%;
  padding: 1.2rem;
  background: var(--sight-fluid-gradient);
  color: var(--sight-pearl-white);
  border: none;
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
  cursor: pointer;
  box-shadow: var(--sight-shadow-raised);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

/* FAQ Section (reserve.html) */
.sight-faq-container {
  max-width: 800px;
  margin: var(--sight-spacing-normal) auto;
  padding: 0 5%;
}

.sight-faq-block {
  margin-bottom: 1.5rem;
  background: var(--sight-pearl-white);
  border-radius: var(--sight-radius-soft);
  box-shadow: var(--sight-shadow-raised);
  padding: 2rem;
}

.sight-faq-block h4 {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  color: var(--sight-emerald-accent);
}

.sight-faq-block p {
  font-size: 0.95rem;
  margin-bottom: 0;
}

/* Thank you page elements */
.sight-thank-card {
  max-width: 600px;
  margin: var(--sight-spacing-normal) auto;
  text-align: center;
  background: var(--sight-pearl-white);
  padding: 5rem 3rem;
  border-radius: var(--sight-radius-soft);
  box-shadow: var(--sight-shadow-deep);
}

.sight-thank-img {
  width: 100%;
  height: 250px;
  background-size: cover;
  background-position: center;
  border-radius: var(--sight-radius-soft);
  margin-bottom: 2.5rem;
}

/* Content Pages (privacy/terms) */
.sight-text-page-container {
  max-width: 900px;
  margin: var(--sight-spacing-normal) auto;
  padding: 0 5%;
  min-height: 60vh;
}

.sight-text-page-container h1 {
  margin-bottom: 3rem;
  text-align: center;
}

.sight-text-page-container h2 {
  font-size: 1.5rem;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

.sight-text-page-container p {
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
}

/* Footer layout */
.eye-footer-ground {
  background-color: var(--sight-deep-ink);
  color: var(--sight-pearl-white);
  padding: 5rem 5% 2rem 5%;
  margin-top: auto;
}

.eye-footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 3rem;
  margin-bottom: 2rem;
}

.eye-footer-logo-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.eye-footer-logo-wrap svg {
  width: 35px;
  height: 35px;
  fill: var(--sight-pearl-white);
}

.eye-footer-logo-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--sight-pearl-white);
}

.eye-footer-nav-list {
  display: flex;
  list-style: none;
  gap: 2rem;
  flex-wrap: wrap;
}

.eye-footer-nav-link {
  color: var(--sight-pearl-white);
  opacity: 0.8;
  text-decoration: none;
  font-weight: 500;
  transition: opacity 0.3s ease;
}

.eye-footer-nav-link:hover {
  opacity: 1;
}

.eye-footer-disclaimer {
  font-size: 0.85rem;
  opacity: 0.6;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 2rem auto;
  line-height: 1.5;
}

.eye-footer-copyright {
  text-align: center;
  font-size: 0.85rem;
  opacity: 0.5;
}

/* Cookie Policy Plate */
.eye-cookie-plate {
  position: fixed;
  bottom: 20px;
  right: 20px;
  left: 20px;
  max-width: 450px;
  background: var(--sight-pearl-white);
  border-radius: var(--sight-radius-soft);
  box-shadow: var(--sight-shadow-deep);
  padding: 2rem;
  z-index: 9999;
  display: none;
  animation: slide-up 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.eye-cookie-text {
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

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

.eye-cookie-accept-btn {
  flex: 1;
  padding: 0.8rem;
  background: var(--sight-emerald-accent);
  color: var(--sight-pearl-white);
  border: none;
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 800;
  cursor: pointer;
  transition: background 0.3s ease;
}

.eye-cookie-accept-btn:hover {
  background: var(--sight-emerald-hover);
}

.eye-cookie-decline-btn {
  padding: 0.8rem 1.5rem;
  background: var(--sight-soft-surface);
  color: var(--sight-deep-ink);
  border: none;
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 800;
  cursor: pointer;
  transition: background 0.3s ease;
}

.eye-cookie-decline-btn:hover {
  background: #e9decb;
}

/* Responsive Overrides */
@media (max-width: 991px) {
  .vision-burger-trigger {
    display: flex;
  }
  
  .vision-main-nav-list {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--sight-pearl-white);
    padding: 2rem 5%;
    box-shadow: var(--sight-shadow-deep);
    gap: 1.5rem;
    align-items: flex-start;
  }
  
  .vision-burger-input:checked ~ .vision-main-nav-list {
    display: flex;
  }
  
  .vision-burger-input:checked ~ .vision-burger-trigger span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }
  
  .vision-burger-input:checked ~ .vision-burger-trigger span:nth-child(2) {
    opacity: 0;
  }
  
  .vision-burger-input:checked ~ .vision-burger-trigger span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }
  
  .eye-hero-split-section {
    flex-direction: column-reverse;
    text-align: center;
    gap: 2.5rem;
  }
  
  .sight-content-wave-section {
    flex-direction: column;
    text-align: center;
    gap: 2.5rem;
    clip-path: none;
    margin: 2rem 0;
    padding: var(--sight-spacing-normal) 5%;
  }
  
  .sight-content-wave-image {
    width: 100%;
    max-width: 400px;
  }
  
  .sight-cta-wave-strip {
    clip-path: none;
    margin: 2rem 0;
    padding: 4rem 5%;
  }
  
  .sight-how-bubble-flow {
    padding-top: calc(var(--sight-spacing-normal) * 1.5);
  }
  
  .sight-bubble-step {
    flex: 1 1 100%;
    margin-bottom: 4rem;
  }
  
  .sight-bubble-step:last-child {
    margin-bottom: 0;
  }
}

@media (min-width: 992px) {
  .eye-cookie-plate {
    left: auto;
  }
}