:root {
  --eyebeam-bg: #FAF9F6;
  --eyebeam-surface: #FFFFFF;
  --eyebeam-surface-dark: #1E2530;
  --eyebeam-accent: #0D9488;
  --eyebeam-accent-hover: #0F766E;
  --eyebeam-accent-muted: #CCFBF1;
  --eyebeam-ink-dark: #1F2937;
  --eyebeam-ink-light: #F9FAFB;
  --eyebeam-ink-gray: #6B7280;
  --eyebeam-gradient: linear-gradient(135deg, #0D9488 0%, #10B981 100%);
  --eyebeam-gradient-dark: linear-gradient(135deg, #111827 0%, #1F2937 100%);
  --font-display: 'Lora', serif;
  --font-body: 'Inter', sans-serif;
  --eyebeam-radius-soft: 16px;
  --eyebeam-radius-pill: 999px;
  --eyebeam-shadow-flat: none;
  --eyebeam-shadow-raised: 0 8px 24px rgba(0, 0, 0, 0.06);
  --eyebeam-shadow-deep: 0 20px 50px rgba(13, 148, 136, 0.15);
  --eyebeam-shadow-panel: 0 30px 80px rgba(0, 0, 0, 0.18);
  --eyebeam-shadow-header: 0 4px 20px rgba(0, 0, 0, 0.08);
  --section-padding: 10dvh;
}

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

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.25;
}

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

/* Scroll progress bar */
.eye-scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 4px;
  background: var(--eyebeam-gradient);
  z-index: 10000;
  width: 0%;
  animation: eye-progress auto linear;
  animation-timeline: scroll(root);
}

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

/* Scroll Animation Viewport Triggering */
.eye-reveal-on-scroll {
  animation: eye-fade-up auto linear;
  animation-timeline: view();
  animation-range: entry 5% cover 30%;
}

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

/* HEADER STYLE - Preset K */
.eye-navigation-anchor {
  position: sticky;
  top: 0;
  background-color: var(--eyebeam-surface);
  box-shadow: var(--eyebeam-shadow-header);
  z-index: 999;
}

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

.eye-logo-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--eyebeam-accent);
}

.eye-logo-svg {
  width: 40px;
  height: 40px;
  fill: none;
  stroke: var(--eyebeam-accent);
  stroke-width: 2;
}

/* Mobile Nav Toggle */
.eye-nav-toggle-input {
  display: none;
}

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

.eye-nav-toggle-trigger span {
  display: block;
  width: 28px;
  height: 3px;
  background-color: var(--eyebeam-ink-dark);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

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

.eye-nav-item a {
  font-weight: 500;
  color: var(--eyebeam-ink-dark);
  padding: 0.5rem 1rem;
  border-radius: var(--eyebeam-radius-soft);
}

.eye-nav-item a:hover {
  color: var(--eyebeam-accent);
  background-color: var(--eyebeam-accent-muted);
}

.eye-nav-button {
  background: var(--eyebeam-gradient);
  color: var(--eyebeam-ink-light) !important;
  border-radius: var(--eyebeam-radius-pill) !important;
  padding: 0.75rem 1.5rem !important;
  box-shadow: var(--eyebeam-shadow-raised);
}

.eye-nav-button:hover {
  transform: translateY(-2px);
  box-shadow: var(--eyebeam-shadow-deep);
  opacity: 0.95;
}

/* Responsive Header */
@media (max-width: 768px) {
  .eye-nav-toggle-trigger {
    display: flex;
  }

  .eye-nav-cluster {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 400px;
    height: 100vh;
    background-color: var(--eyebeam-surface);
    flex-direction: column;
    justify-content: center;
    gap: 3rem;
    box-shadow: -10px 0 30px rgba(0,0,0,0.1);
    transition: right 0.4s ease;
    z-index: 1000;
  }

  .eye-nav-toggle-input:checked ~ .eye-nav-cluster {
    right: 0;
  }

  .eye-nav-toggle-input:checked ~ .eye-nav-toggle-trigger span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }

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

  .eye-nav-toggle-input:checked ~ .eye-nav-toggle-trigger span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }
}

/* HERO SECTION - index.html (Preset K Panel Stack) */
.eye-hero-billboard {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: var(--section-padding) 2rem;
  overflow: hidden;
}

.eye-hero-tint {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle, rgba(250,249,246,0.85) 0%, rgba(250,249,246,0.95) 100%);
  z-index: 1;
}

.eye-deck-wrapper {
  position: relative;
  width: 100%;
  max-width: 850px;
  height: 520px;
  z-index: 2;
  margin: 0 auto;
}

.eye-deck-card-back {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--eyebeam-accent-muted);
  border-radius: var(--eyebeam-radius-soft);
  transform: translate(-30px, -20px) rotate(-3deg);
  opacity: 0.5;
  z-index: 1;
  box-shadow: var(--eyebeam-shadow-raised);
}

.eye-deck-card-mid {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--eyebeam-surface);
  border-radius: var(--eyebeam-radius-soft);
  transform: translate(20px, 15px) rotate(2deg);
  opacity: 0.8;
  z-index: 2;
  box-shadow: var(--eyebeam-shadow-raised);
}

.eye-deck-card-front {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--eyebeam-surface);
  border-radius: var(--eyebeam-radius-soft);
  padding: 3.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  z-index: 3;
  box-shadow: var(--eyebeam-shadow-panel);
}

.eye-deck-tagline {
  color: var(--eyebeam-accent);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.eye-deck-headline {
  font-size: 3rem;
  color: var(--eyebeam-ink-dark);
  margin-bottom: 1.5rem;
}

.eye-deck-paragraph {
  font-size: 1.125rem;
  color: var(--eyebeam-ink-gray);
  max-width: 600px;
  margin-bottom: 2.5rem;
}

/* Floating frame block */
@media (max-width: 768px) {
  .eye-deck-wrapper {
    height: auto;
    display: flex;
    flex-direction: column;
  }
  .eye-deck-card-back, .eye-deck-card-mid {
    display: none;
  }
  .eye-deck-card-front {
    position: relative;
    padding: 2rem 1.5rem;
  }
  .eye-deck-headline {
    font-size: 2rem;
  }
}

/* FLOATING STYLED CONTENT SECTION - Preset K */
.eye-split-canvas {
  padding: var(--section-padding) 2rem;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 4rem;
}

.eye-image-levitate-group {
  flex: 1;
  position: relative;
}

.eye-floating-frame {
  border-radius: var(--eyebeam-radius-soft);
  overflow: hidden;
  box-shadow: var(--eyebeam-shadow-panel);
  transform: translateY(-10px);
}

.eye-floating-frame img {
  width: 100%;
  display: block;
  object-fit: cover;
  min-height: 400px;
}

.eye-bg2-card {
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 250px;
  height: 250px;
  border-radius: var(--eyebeam-radius-soft);
  overflow: hidden;
  box-shadow: var(--eyebeam-shadow-panel);
}

.eye-bg2-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.eye-raised-panel {
  flex: 1.2;
  background-color: var(--eyebeam-surface);
  padding: 3.5rem;
  border-radius: var(--eyebeam-radius-soft);
  box-shadow: var(--eyebeam-shadow-raised);
}

.eye-raised-panel h2 {
  font-size: 2.25rem;
  margin-bottom: 1.5rem;
  color: var(--eyebeam-ink-dark);
}

.eye-raised-panel p {
  color: var(--eyebeam-ink-gray);
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
}

@media (max-width: 992px) {
  .eye-split-canvas {
    flex-direction: column;
    gap: 3rem;
  }
  .eye-image-levitate-group {
    width: 100%;
    margin-bottom: 2rem;
  }
  .eye-bg2-card {
    display: none;
  }
}

/* FEATURES SECTION - Preset K */
.eye-feature-belt {
  padding: var(--section-padding) 2rem;
  background-color: var(--eyebeam-surface);
  position: relative;
}

.eye-features-headline-wrap {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 5rem;
}

.eye-features-headline-wrap h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.eye-levitate-gallery {
  max-width: 1200px;
  margin: -50px auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
  z-index: 10;
}

.eye-levitate-cell {
  background-color: var(--eyebeam-surface);
  padding: 2.5rem 2rem;
  border-radius: var(--eyebeam-radius-soft);
  box-shadow: var(--eyebeam-shadow-deep);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-top: 5px solid var(--eyebeam-accent);
}

.eye-levitate-cell:hover {
  transform: translateY(-12px);
  box-shadow: 0 30px 60px rgba(13, 148, 136, 0.25);
}

.eye-levitate-icon {
  width: 60px;
  height: 60px;
  background-color: var(--eyebeam-accent-muted);
  border-radius: var(--eyebeam-radius-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.eye-levitate-icon svg {
  width: 32px;
  height: 32px;
  stroke: var(--eyebeam-accent);
}

.eye-levitate-cell h3 {
  font-size: 1.35rem;
  margin-bottom: 1rem;
}

.eye-levitate-cell p {
  color: var(--eyebeam-ink-gray);
  font-size: 0.95rem;
}

@media (max-width: 992px) {
  .eye-levitate-gallery {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 2rem;
  }
}

@media (max-width: 576px) {
  .eye-levitate-gallery {
    grid-template-columns: 1fr;
  }
}

/* HOW IT WORKS SECTION - Preset K */
.eye-process-board {
  padding: var(--section-padding) 2rem;
  background-color: var(--eyebeam-bg);
  text-align: center;
}

.eye-process-board h2 {
  font-size: 2.5rem;
  margin-bottom: 4rem;
}

.eye-flow-process {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 2rem;
}

.eye-flow-capsule {
  flex: 1;
  background-color: var(--eyebeam-surface);
  border-radius: var(--eyebeam-radius-pill);
  padding: 1.5rem 2.5rem;
  box-shadow: 0 12px 30px rgba(0,0,0,0.12);
  display: flex;
  align-items: center;
  gap: 1.5rem;
  text-align: left;
}

.eye-flow-badge {
  background: var(--eyebeam-gradient);
  color: var(--eyebeam-ink-light);
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.eye-flow-content h3 {
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.eye-flow-content p {
  font-size: 0.85rem;
  color: var(--eyebeam-ink-gray);
}

@media (max-width: 992px) {
  .eye-flow-process {
    flex-direction: column;
    gap: 1.5rem;
  }
}

/* CTA STRIP SECTION - Preset K */
.eye-canopy-strip {
  padding: var(--section-padding) 2rem;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
  min-height: 450px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.eye-canopy-tint {
  position: absolute;
  inset: 0;
  background-color: rgba(30, 37, 48, 0.85);
  z-index: 1;
}

.eye-canopy-dock {
  width: 75%;
  max-width: 800px;
  background-color: var(--eyebeam-surface);
  padding: 3.5rem;
  border-radius: var(--eyebeam-radius-soft);
  box-shadow: var(--eyebeam-shadow-panel);
  z-index: 2;
  text-align: center;
}

.eye-canopy-dock h2 {
  font-size: 2.25rem;
  margin-bottom: 1.25rem;
}

.eye-canopy-dock p {
  color: var(--eyebeam-ink-gray);
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
}

/* Button style */
.eye-pillar-action {
  display: inline-block;
  background: var(--eyebeam-gradient);
  color: var(--eyebeam-ink-light);
  padding: 1rem 2.5rem;
  border-radius: var(--eyebeam-radius-pill);
  font-weight: 600;
  font-size: 1.1rem;
  box-shadow: var(--eyebeam-shadow-deep);
  border: none;
  cursor: pointer;
}

.eye-pillar-action:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(13, 148, 136, 0.4);
}

@media (max-width: 768px) {
  .eye-canopy-dock {
    width: 95%;
    padding: 2rem 1.5rem;
  }
}

/* EXPERT PAGE STYLES */
.eye-expert-hero {
  padding: var(--section-padding) 2rem;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 4rem;
}

.eye-expert-picture-frame {
  flex: 1;
  position: relative;
}

.eye-expert-picture-frame img {
  width: 100%;
  border-radius: var(--eyebeam-radius-soft);
  box-shadow: var(--eyebeam-shadow-panel);
}

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

.eye-expert-accent {
  color: var(--eyebeam-accent);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.eye-expert-info h1 {
  font-size: 2.75rem;
  margin-bottom: 1.5rem;
}

.eye-expert-quote {
  font-size: 1.25rem;
  font-style: italic;
  border-left: 4px solid var(--eyebeam-accent);
  padding-left: 1.5rem;
  margin-bottom: 2rem;
  color: var(--eyebeam-ink-gray);
}

/* Stat section */
.eye-stat-deck {
  padding: var(--section-padding) 2rem;
  background-color: var(--eyebeam-surface-dark);
  color: var(--eyebeam-ink-light);
}

.eye-stat-wrap {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
}

.eye-stat-bead {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: var(--eyebeam-radius-pill);
  padding: 1.5rem 2rem;
  text-align: center;
  box-shadow: var(--eyebeam-shadow-raised);
}

.eye-stat-bead h3 {
  font-size: 2.5rem;
  color: var(--eyebeam-accent);
  margin-bottom: 0.25rem;
}

.eye-stat-bead p {
  font-size: 0.95rem;
  opacity: 0.8;
}

@media (max-width: 992px) {
  .eye-expert-hero {
    flex-direction: column;
    gap: 3rem;
  }
  .eye-stat-wrap {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .eye-stat-wrap {
    grid-template-columns: 1fr;
  }
}

/* RESERVATION FORM PAGE STYLES */
.eye-vault-section {
  padding: var(--section-padding) 2rem;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 4rem;
  align-items: flex-start;
}

.eye-vault-info {
  flex: 1.2;
}

.eye-vault-info h1 {
  font-size: 2.75rem;
  margin-bottom: 1.5rem;
}

.eye-vault-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.eye-vault-card {
  background-color: var(--eyebeam-surface);
  padding: 2rem;
  border-radius: var(--eyebeam-radius-soft);
  box-shadow: var(--eyebeam-shadow-raised);
}

.eye-vault-card h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.eye-vault-list {
  list-style: none;
  margin-top: 1rem;
}

.eye-vault-list li {
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.eye-vault-bullet {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--eyebeam-accent);
}

/* The actual reservation form */
.eye-vault-holder {
  flex: 1;
  background-color: var(--eyebeam-surface);
  padding: 3.5rem;
  border-radius: 24px;
  box-shadow: var(--eyebeam-shadow-panel);
}

.eye-vault-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.eye-form-block {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.eye-form-block label {
  font-weight: 600;
  font-size: 0.95rem;
}

.eye-form-block input, .eye-form-block textarea {
  padding: 1rem;
  border: 1px solid #E5E7EB;
  border-radius: var(--eyebeam-radius-soft);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: border-color 0.3s;
}

.eye-form-block input:focus, .eye-form-block textarea:focus {
  border-color: var(--eyebeam-accent);
  outline: none;
}

.eye-checkbox-wrap {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.eye-checkbox-wrap input {
  margin-top: 0.3rem;
}

.eye-checkbox-wrap label {
  font-size: 0.85rem;
  color: var(--eyebeam-ink-gray);
}

.eye-checkbox-wrap a {
  text-decoration: underline;
  color: var(--eyebeam-accent);
}

.eye-mailto-info {
  margin-top: 2rem;
  text-align: center;
}

.eye-mailto-info a {
  color: var(--eyebeam-accent);
  font-weight: 600;
}

@media (max-width: 992px) {
  .eye-vault-section {
    flex-direction: column;
  }
  .eye-vault-holder {
    width: 100%;
  }
}

/* FAQ LADDER (reserve.html) */
.eye-faq-canopy {
  padding: var(--section-padding) 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.eye-faq-canopy h2 {
  text-align: center;
  margin-bottom: 3rem;
  font-size: 2.25rem;
}

.eye-faq-ladder {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.eye-faq-step {
  background-color: var(--eyebeam-surface);
  border-radius: var(--eyebeam-radius-soft);
  padding: 2rem;
  box-shadow: var(--eyebeam-shadow-raised);
  transition: transform 0.3s;
}

.eye-faq-step:hover {
  transform: translateY(-5px);
}

.eye-faq-step h3 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: var(--eyebeam-ink-dark);
}

.eye-faq-step p {
  color: var(--eyebeam-ink-gray);
  line-height: 1.6;
}

/* LEGAL PAGES */
.eye-legal-frame {
  max-width: 800px;
  margin: 0 auto;
  padding: var(--section-padding) 2rem;
}

.eye-legal-frame h1 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  border-bottom: 2px solid var(--eyebeam-accent);
  padding-bottom: 1rem;
}

.eye-legal-frame h2 {
  font-size: 1.75rem;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

.eye-legal-frame p {
  color: var(--eyebeam-ink-gray);
  margin-bottom: 1.5rem;
}

.eye-legal-frame ul {
  margin-left: 2rem;
  margin-bottom: 1.5rem;
}

/* COOKIE BANNER STYLE */
.eye-cookie-banner {
  position: fixed;
  bottom: -100px;
  left: 0;
  width: 100%;
  background-color: var(--eyebeam-surface-dark);
  color: var(--eyebeam-ink-light);
  padding: 1.5rem 2rem;
  box-shadow: 0 -10px 30px rgba(0,0,0,0.15);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  transition: bottom 0.5s ease;
}

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

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

.eye-cookie-btn {
  padding: 0.5rem 1.5rem;
  border-radius: var(--eyebeam-radius-pill);
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.eye-cookie-accept {
  background: var(--eyebeam-gradient);
  color: var(--eyebeam-ink-light);
}

.eye-cookie-decline {
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--eyebeam-ink-light);
}

@media (max-width: 768px) {
  .eye-cookie-banner {
    flex-direction: column;
    text-align: center;
  }
}

/* FOOTER SECTION */
.eye-anchor-footer {
  background-color: var(--eyebeam-surface-dark);
  color: var(--eyebeam-ink-light);
  padding: 5rem 2rem 2rem;
  font-size: 0.95rem;
}

.eye-footer-shelf {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 4rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding-bottom: 3rem;
  margin-bottom: 2rem;
}

.eye-footer-brand {
  max-width: 350px;
}

.eye-footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--eyebeam-ink-light);
  margin-bottom: 1.5rem;
}

.eye-footer-logo svg {
  stroke: var(--eyebeam-accent);
}

.eye-footer-disc {
  font-size: 0.8rem;
  line-height: 1.5;
  opacity: 0.7;
}

.eye-footer-links-cluster {
  display: flex;
  gap: 4rem;
}

.eye-footer-links-group {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.eye-footer-links-group h4 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: var(--eyebeam-accent);
}

.eye-footer-links-group a {
  opacity: 0.8;
}

.eye-footer-links-group a:hover {
  opacity: 1;
  color: var(--eyebeam-accent);
}

.eye-footer-closing {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  opacity: 0.6;
}

@media (max-width: 768px) {
  .eye-footer-shelf {
    flex-direction: column;
    gap: 3rem;
  }
  .eye-footer-links-cluster {
    flex-direction: column;
    gap: 2rem;
  }
  .eye-footer-closing {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}