/* Custom CSS Variables - Editorial Magazine Theme */
:root {
  --eye-bg-cream: #FAF7F2;
  --eye-ink-deep: #1C2421;
  --eye-accent-emerald: #0F3D2E;
  --eye-accent-terracotta: #C97A64;
  --eye-accent-soft-gold: #D4AF37;
  --eye-card-paper: #F3ECE0;
  --eye-border-thin: #E1D6C5;
  --eye-white: #FFFFFF;
  --eye-shadow-soft: 0 4px 20px rgba(28, 36, 33, 0.06);
  --eye-shadow-inset: inset 0 2px 4px rgba(0,0,0,0.02);
  
  --font-editorial-heading: 'Playfair Display', Georgia, serif;
  --font-editorial-body: 'Mulish', system-ui, sans-serif;
  
  --eye-radius: 12px;
  --eye-padding-y: 10dvh;
}

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

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

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

/* Scroll Progress Bar CSS-only animation */
.eye-scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 4px;
  background: var(--eye-accent-terracotta);
  width: 100%;
  transform-origin: left;
  transform: scaleX(0);
  z-index: 10000;
  animation: eye-progress auto linear;
  animation-timeline: scroll(root);
}

@keyframes eye-progress {
  to { transform: scaleX(1); }
}

/* Typography */
h1, h2, h3, h4 {
  font-family: var(--font-editorial-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--eye-accent-emerald);
}

p {
  margin-bottom: 1.25rem;
}

/* Common Layout Wrapper */
.eye-site-shell {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Header */
.eye-navigation-header {
  background-color: var(--eye-bg-cream);
  border-bottom: 1px solid var(--eye-border-thin);
  position: sticky;
  top: 0;
  z-index: 999;
}

.eye-navigation-shell {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  max-width: 1240px;
  margin: 0 auto;
}

.eye-brand-identity {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-family: var(--font-editorial-heading);
  font-size: 1.4rem;
  color: var(--eye-accent-emerald);
  font-weight: 700;
}

.eye-brand-identity svg {
  width: 32px;
  height: 32px;
  fill: var(--eye-accent-emerald);
}

.eye-nav-menu {
  display: flex;
  gap: 32px;
  list-style: none;
  align-items: center;
}

.eye-nav-menu a {
  text-decoration: none;
  color: var(--eye-ink-deep);
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.3s ease;
  position: relative;
}

.eye-nav-menu a::after {
  content: '';
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  height: 2px;
  bottom: -4px;
  left: 0;
  background-color: var(--eye-accent-terracotta);
  transform-origin: bottom right;
  transition: transform 0.25s ease-out;
}

.eye-nav-menu a:hover::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}

.eye-nav-menu a:hover {
  color: var(--eye-accent-emerald);
}

/* Mobile Hamburger Menu (CSS Only) */
.eye-menu-checkbox {
  display: none;
}

.eye-menu-trigger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  z-index: 1000;
}

.eye-menu-trigger span {
  display: block;
  width: 28px;
  height: 2px;
  background-color: var(--eye-accent-emerald);
  transition: all 0.3s ease;
}

/* Scroll animations */
.eye-fade-in-viewport {
  animation: eye-fade-in linear both;
  animation-timeline: view();
  animation-range: entry 10% cover 30%;
}

@keyframes eye-fade-in {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Buttons and Actions */
.eye-editorial-action {
  display: inline-block;
  padding: 14px 28px;
  border: 2px solid var(--eye-accent-emerald);
  background-color: transparent;
  color: var(--eye-accent-emerald);
  font-family: var(--font-editorial-heading);
  text-decoration: none;
  font-weight: 700;
  border-radius: var(--eye-radius);
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
}

.eye-editorial-action:hover {
  background-color: var(--eye-accent-emerald);
  color: var(--eye-bg-cream);
}

.eye-editorial-action-filled {
  background-color: var(--eye-accent-terracotta);
  border-color: var(--eye-accent-terracotta);
  color: var(--eye-white);
}

.eye-editorial-action-filled:hover {
  background-color: var(--eye-accent-emerald);
  border-color: var(--eye-accent-emerald);
  color: var(--eye-white);
}

/* INDEX PAGE HERO */
.eye-editorial-split-splash {
  display: flex;
  min-height: 80vh;
  border-bottom: 1px solid var(--eye-border-thin);
}

.eye-splash-side-vintage {
  width: 30%;
  background-color: var(--eye-accent-emerald);
  color: var(--eye-bg-cream);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.eye-splash-side-vintage span {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  text-transform: uppercase;
  font-family: var(--font-editorial-heading);
  font-size: 1.8rem;
  letter-spacing: 6px;
  font-weight: 700;
  opacity: 0.8;
}

.eye-splash-canvas {
  width: 70%;
  position: relative;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  padding: 60px;
}

.eye-splash-canvas::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(250, 247, 242, 0.88);
  z-index: 1;
}

.eye-splash-content-block {
  position: relative;
  z-index: 2;
  max-width: 650px;
}

.eye-splash-content-block h1 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.eye-splash-content-block p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: var(--eye-ink-deep);
}

/* SECTION PULL QUOTE */
.eye-editorial-quote-strip {
  background-color: var(--eye-card-paper);
  padding: var(--eye-padding-y) 24px;
  text-align: center;
  position: relative;
}

.eye-quote-phrase {
  max-width: 800px;
  margin: 0 auto;
  font-family: var(--font-editorial-heading);
  font-size: 2.2rem;
  font-style: italic;
  color: var(--eye-accent-emerald);
  position: relative;
  line-height: 1.4;
}

.eye-quote-phrase::before {
  content: '“';
  font-size: 6rem;
  position: absolute;
  top: -50px;
  left: -30px;
  opacity: 0.15;
  color: var(--eye-accent-emerald);
}

.eye-quote-phrase::after {
  content: '”';
  font-size: 6rem;
  position: absolute;
  bottom: -80px;
  right: -30px;
  opacity: 0.15;
  color: var(--eye-accent-emerald);
}

/* CONTENT BLOCK (IMAGE LEFT, TEXT RIGHT) */
.eye-editorial-duo-gallery {
  padding: var(--eye-padding-y) 0;
}

.eye-duo-column-holder {
  display: flex;
  gap: 60px;
  align-items: center;
}

.eye-duo-image-half {
  flex: 0 0 45%;
  height: 500px;
  background-size: cover;
  background-position: center;
  border-radius: var(--eye-radius);
  box-shadow: var(--eye-shadow-soft);
}

.eye-duo-text-half {
  flex: 0 0 55%;
}

.eye-duo-text-half h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

/* FEATURES (MAGAZINE GRID) */
.eye-editorial-grid-universe {
  padding: var(--eye-padding-y) 0;
  background-color: var(--eye-white);
  border-top: 1px solid var(--eye-border-thin);
  border-bottom: 1px solid var(--eye-border-thin);
}

.eye-editorial-grid-universe h2 {
  text-align: center;
  margin-bottom: 50px;
  font-size: 2.5rem;
}

.eye-magazine-layout {
  display: flex;
  gap: 30px;
}

.eye-mag-feature-lead {
  flex: 1;
  position: relative;
  min-height: 450px;
  background-size: cover;
  background-position: center;
  border-radius: var(--eye-radius);
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}

.eye-mag-feature-lead::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(to top, rgba(15, 61, 46, 0.95) 20%, rgba(15, 61, 46, 0.2));
}

.eye-mag-lead-content {
  position: relative;
  z-index: 2;
  padding: 40px;
  color: var(--eye-bg-cream);
}

.eye-mag-lead-content h3 {
  color: var(--eye-white);
  font-size: 2rem;
  margin-bottom: 15px;
}

.eye-mag-feature-stack {
  display: flex;
  flex-direction: column;
  gap: 30px;
  flex: 1;
}

.eye-mag-stack-leaf {
  background-color: var(--eye-bg-cream);
  padding: 30px;
  border-radius: var(--eye-radius);
  border-top: 4px solid var(--eye-accent-terracotta);
  box-shadow: var(--eye-shadow-soft);
}

.eye-mag-stack-leaf-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 20px;
  fill: var(--eye-accent-terracotta);
}

.eye-mag-stack-leaf h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

/* HOW IT WORKS (HORIZONTAL STEPS WITH BG NUMBERS) */
.eye-steps-editorial-track {
  padding: var(--eye-padding-y) 0;
}

.eye-steps-editorial-track h2 {
  text-align: center;
  margin-bottom: 60px;
  font-size: 2.5rem;
}

.eye-steps-row-assembly {
  display: flex;
  gap: 40px;
}

.eye-step-editorial-panel {
  flex: 1;
  position: relative;
  padding: 40px 20px;
}

.eye-step-editorial-panel:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -20px;
  top: 10%;
  bottom: 10%;
  width: 1px;
  background-color: var(--eye-border-thin);
}

.eye-step-bg-number {
  position: absolute;
  top: -20px;
  left: 10px;
  font-family: var(--font-editorial-heading);
  font-size: 7rem;
  font-weight: 900;
  color: var(--eye-accent-emerald);
  opacity: 0.08;
  line-height: 1;
  z-index: 1;
  user-select: none;
}

.eye-step-foreground-content {
  position: relative;
  z-index: 2;
}

.eye-step-foreground-content h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
}

/* CTA STRIP (EDITORIAL SOFT BACKGROUND) */
.eye-journal-callout {
  background-color: var(--eye-card-paper);
  padding: var(--eye-padding-y) 24px;
  text-align: center;
  border-top: 1px solid var(--eye-border-thin);
  border-bottom: 1px solid var(--eye-border-thin);
}

.eye-journal-callout-inner {
  max-width: 700px;
  margin: 0 auto;
}

.eye-journal-callout-inner h2 {
  font-size: 2.8rem;
  margin-bottom: 20px;
}

.eye-journal-callout-inner p {
  font-size: 1.15rem;
  margin-bottom: 30px;
}

/* EXPERT PAGE */
.eye-expert-bio-strip {
  padding: var(--eye-padding-y) 0;
}

.eye-expert-numbers-row {
  display: flex;
  gap: 30px;
  justify-content: space-around;
  padding: 40px;
  background-color: var(--eye-white);
  border-radius: var(--eye-radius);
  box-shadow: var(--eye-shadow-soft);
  margin-bottom: 60px;
  border: 1px solid var(--eye-border-thin);
}

.eye-expert-stat-card {
  text-align: center;
}

.eye-expert-stat-card-number {
  font-family: var(--font-editorial-heading);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--eye-accent-terracotta);
  line-height: 1;
}

.eye-expert-stat-card-label {
  font-size: 1rem;
  color: var(--eye-ink-deep);
  margin-top: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

/* Alternating Image Text sections for expert bio details */
.eye-expert-alternator {
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.eye-expert-alternator-row {
  display: flex;
  align-items: center;
  gap: 60px;
}

.eye-expert-alternator-row:nth-child(even) {
  flex-direction: row-reverse;
}

.eye-expert-alternator-img {
  flex: 1;
  height: 450px;
  background-size: cover;
  background-position: center;
  border-radius: var(--eye-radius);
  box-shadow: var(--eye-shadow-soft);
}

.eye-expert-alternator-info {
  flex: 1.2;
}

.eye-expert-alternator-info h3 {
  font-size: 2rem;
  margin-bottom: 20px;
}

/* RESERVE PAGE */
.eye-reserve-top-row {
  display: flex;
  gap: 30px;
  margin: 60px 0;
}

.eye-reserve-bulletin {
  flex: 1;
  background-color: var(--eye-white);
  padding: 30px;
  border-radius: var(--eye-radius);
  border-top: 4px solid var(--eye-accent-emerald);
  box-shadow: var(--eye-shadow-soft);
}

.eye-reserve-bulletin-icon {
  width: 44px;
  height: 44px;
  margin-bottom: 15px;
  fill: var(--eye-accent-emerald);
}

.eye-reserve-bulletin h3 {
  font-size: 1.35rem;
  margin-bottom: 15px;
}

.eye-reserve-bulletin ul {
  list-style: none;
  padding-left: 0;
}

.eye-reserve-bulletin li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 10px;
  font-size: 0.95rem;
}

.eye-reserve-bulletin li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 10px;
  height: 10px;
  background-color: var(--eye-accent-terracotta);
  border-radius: 50%;
}

.eye-reserve-form-block {
  max-width: 700px;
  margin: 0 auto 80px auto;
  background-color: var(--eye-white);
  padding: 50px;
  border-radius: var(--eye-radius);
  box-shadow: var(--eye-shadow-soft);
  border: 1px solid var(--eye-border-thin);
}

.eye-reserve-form-block h2 {
  font-size: 2.2rem;
  text-align: center;
  margin-bottom: 15px;
}

.eye-reserve-form-block p {
  text-align: center;
  color: #666;
  margin-bottom: 40px;
}

.eye-input-rack {
  margin-bottom: 24px;
}

.eye-input-rack label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--eye-accent-emerald);
}

.eye-input-rack input, .eye-input-rack textarea {
  width: 100%;
  padding: 14px;
  border: 1px solid var(--eye-border-thin);
  border-radius: 6px;
  background-color: var(--eye-bg-cream);
  font-family: var(--font-editorial-body);
  font-size: 1rem;
  outline: none;
  transition: border-color 0.3s;
}

.eye-input-rack input:focus, .eye-input-rack textarea:focus {
  border-color: var(--eye-accent-emerald);
}

.eye-agreement-consent {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 30px;
  font-size: 0.9rem;
}

.eye-agreement-consent input {
  margin-top: 4px;
  cursor: pointer;
}

/* FAQ STYLING EDITORIAL STYLE */
.eye-faq-editorial-section {
  max-width: 800px;
  margin: 0 auto var(--eye-padding-y) auto;
}

.eye-faq-editorial-section h2 {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 40px;
}

.eye-faq-editorial-card {
  border-bottom: 1px solid var(--eye-border-thin);
  padding: 20px 0;
}

.eye-faq-editorial-card summary {
  font-family: var(--font-editorial-heading);
  font-size: 1.3rem;
  font-weight: bold;
  color: var(--eye-accent-emerald);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.eye-faq-editorial-card summary::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--eye-accent-terracotta);
  font-weight: normal;
}

.eye-faq-editorial-card[open] summary::after {
  content: '−';
}

.eye-faq-editorial-card p {
  margin-top: 15px;
  color: var(--eye-ink-deep);
}

/* FOOTER */
.eye-curated-footer {
  background-color: var(--eye-accent-emerald);
  color: var(--eye-bg-cream);
  padding: 60px 24px 30px 24px;
  margin-top: auto;
  border-top: 5px solid var(--eye-accent-terracotta);
}

.eye-footer-assembler {
  max-width: 1240px;
  margin: 0 auto;
}

.eye-footer-upper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(250, 247, 242, 0.15);
  padding-bottom: 30px;
  margin-bottom: 30px;
}

.eye-footer-logo-pack {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-family: var(--font-editorial-heading);
  font-size: 1.4rem;
  color: var(--eye-white);
  font-weight: 700;
}

.eye-footer-logo-pack svg {
  width: 32px;
  height: 32px;
  fill: var(--eye-accent-terracotta);
}

.eye-footer-links-row {
  display: flex;
  gap: 24px;
}

.eye-footer-links-row a {
  color: var(--eye-bg-cream);
  text-decoration: none;
  font-size: 0.9rem;
  opacity: 0.8;
  transition: opacity 0.3s;
}

.eye-footer-links-row a:hover {
  opacity: 1;
}

.eye-footer-disclaimer {
  font-size: 0.8rem;
  opacity: 0.7;
  line-height: 1.6;
  margin-bottom: 35px;
}

.eye-footer-copyright {
  text-align: center;
  font-size: 0.8rem;
  opacity: 0.5;
  border-top: 1px solid rgba(250, 247, 242, 0.1);
  padding-top: 20px;
}

/* COOKIE BANNER */
.eye-cookie-consent-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--eye-accent-emerald);
  color: var(--eye-white);
  padding: 20px;
  z-index: 9999;
  box-shadow: 0 -4px 30px rgba(0,0,0,0.15);
  display: none;
}

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

.eye-cookie-inner-holder p {
  margin-bottom: 0;
  font-size: 0.95rem;
}

.eye-cookie-button-pair {
  display: flex;
  gap: 15px;
}

.eye-cookie-btn {
  padding: 8px 20px;
  border-radius: 4px;
  border: 1px solid var(--eye-white);
  background: transparent;
  color: var(--eye-white);
  cursor: pointer;
  font-size: 0.9rem;
  transition: all 0.3s;
}

.eye-cookie-btn-primary {
  background-color: var(--eye-accent-terracotta);
  border-color: var(--eye-accent-terracotta);
}

.eye-cookie-btn:hover {
  opacity: 0.9;
}

/* RESPONSIVE DESIGN */
@media (max-width: 992px) {
  .eye-duo-column-holder {
    flex-direction: column;
  }
  .eye-duo-image-half {
    width: 100%;
    height: 350px;
  }
  .eye-magazine-layout {
    flex-direction: column;
  }
  .eye-steps-row-assembly {
    flex-direction: column;
    gap: 30px;
  }
  .eye-step-editorial-panel:not(:last-child)::after {
    display: none;
  }
  .eye-step-editorial-panel {
    border-bottom: 1px solid var(--eye-border-thin);
    padding-bottom: 30px;
  }
  .eye-expert-numbers-row {
    flex-direction: column;
    gap: 30px;
  }
  .eye-expert-alternator-row {
    flex-direction: column;
    gap: 40px;
  }
  .eye-expert-alternator-row:nth-child(even) {
    flex-direction: column;
  }
  .eye-expert-alternator-img {
    width: 100%;
    height: 300px;
  }
  .eye-reserve-top-row {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .eye-menu-trigger {
    display: flex;
  }
  .eye-nav-menu {
    position: fixed;
    top: 76px;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--eye-bg-cream);
    flex-direction: column;
    padding: 40px 24px;
    gap: 30px;
    transform: translateY(-100%);
    opacity: 0;
    transition: transform 0.4s ease, opacity 0.3s ease;
    z-index: 998;
  }
  .eye-menu-checkbox:checked ~ .eye-nav-menu {
    transform: translateY(0);
    opacity: 1;
  }
  .eye-menu-checkbox:checked ~ .eye-menu-trigger span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .eye-menu-checkbox:checked ~ .eye-menu-trigger span:nth-child(2) {
    opacity: 0;
  }
  .eye-menu-checkbox:checked ~ .eye-menu-trigger span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
  .eye-editorial-split-splash {
    flex-direction: column-reverse;
  }
  .eye-splash-side-vintage {
    width: 100%;
    padding: 15px;
  }
  .eye-splash-side-vintage span {
    writing-mode: horizontal-tb;
    font-size: 1.1rem;
  }
  .eye-splash-canvas {
    width: 100%;
    padding: 40px 20px;
  }
  .eye-splash-content-block h1 {
    font-size: 2.2rem;
  }
  .eye-quote-phrase {
    font-size: 1.5rem;
  }
  .eye-reserve-form-block {
    padding: 30px 20px;
  }
  .eye-cookie-inner-holder {
    flex-direction: column;
    text-align: center;
  }
}