/* --- CSS VARIABLES & THEMING --- */
:root {
  /* Topic-specific palette for 'Claridad y Enfoque' (Eye Health / Light Palette) */
  --optica-bg-main: #fcfcfc;
  --optica-bg-subtle: #f6f8f7;
  --optica-surface-clean: #ffffff;
  --optica-brand-deep: #1d4d4f;      /* Forest/Teal Dark for maximum readability */
  --optica-brand-mid: #2d7376;       /* Medium Emerald-Teal */
  --optica-accent-bright: #3ea49f;   /* Bright Teal Accent */
  --optica-accent-pale: #e8f4f3;     /* Soft contrast element background */
  --optica-highlight-warm: #d97d54;  /* Editorial coral contrast marker */
  --optica-text-ink: #192021;        /* Off-black for WCAG compliance */
  --optica-text-slate: #546263;      /* Muted secondary body text */
  --optica-border-tint: #dee6e5;
  --optica-border-focus: #3ea49f;
  
  /* Fonts */
  --font-display: 'Raleway', system-ui, -apple-system, sans-serif;
  --font-body: 'Open Sans', system-ui, -apple-system, sans-serif;
  
  /* Layout constraints */
  --optica-radius-soft: 14px;
  --optica-radius-pill: 9999px;
  --optica-shadow-raised: 0 12px 35px rgba(29, 77, 79, 0.07);
  --optica-shadow-flat: 0 2px 8px rgba(29, 77, 79, 0.03);
  --optica-padding-compact: 6vh;
  --optica-padding-normal: 10vh;
}

/* --- RESET & BASIC DEFAULTS --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--optica-bg-main);
  color: var(--optica-text-ink);
  font-family: var(--font-body);
  line-height: 1.625;
}

body.vision-body-layout {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Scroll Progress Bar at the top of Header */
.optica-progress-tracker {
  position: fixed;
  top: 0;
  left: 0;
  height: 4px;
  background: var(--optica-accent-bright);
  z-index: 10000;
  width: 0%;
  animation: optica-progress-anim linear;
  animation-timeline: scroll();
}

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

/* Width Wrapper */
.optica-wrapper-max {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.optica-wrapper-max.style-thin {
  max-width: 800px;
}

/* Typography styles */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--optica-brand-deep);
  font-weight: 700;
  line-height: 1.25;
}

/* --- HEADER (Preset B) --- */
.optica-promo-bar {
  background: var(--optica-brand-deep);
  color: var(--optica-surface-clean);
  padding: 8px 0;
  text-align: center;
  font-size: 0.875rem;
  font-family: var(--font-display);
}
.optica-promo-text {
  font-weight: 500;
}
.optica-promo-link {
  color: var(--optica-accent-bright);
  text-decoration: none;
  font-weight: 700;
  margin-left: 6px;
  transition: color 0.2s ease;
}
.optica-promo-link:hover {
  color: var(--optica-surface-clean);
}

.focus-header-main {
  background: var(--optica-surface-clean);
  border-bottom: 1px solid var(--optica-border-tint);
  position: sticky;
  top: 0;
  z-index: 999;
  transition: box-shadow 0.25s ease;
}
.focus-header-main:focus-within {
  box-shadow: 0 10px 30px rgba(29, 77, 79, 0.05);
}

.focus-header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.focus-brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--optica-brand-deep);
}
.focus-logo-icon {
  width: 32px;
  height: 32px;
  color: var(--optica-accent-bright);
}
.focus-brand-text {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.375rem;
  letter-spacing: -0.5px;
}

/* Hamburger toggle logic CSS-only */
.focus-nav-checkbox {
  display: none;
}
.focus-nav-trigger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
}
.focus-nav-trigger span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: var(--optica-brand-deep);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.focus-navigation-menu {
  display: flex;
  align-items: center;
  gap: 32px;
}
.focus-menu-link {
  text-decoration: none;
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--optica-text-slate);
  font-size: 0.95rem;
  transition: color 0.2s ease;
  position: relative;
  padding: 8px 0;
}
.focus-menu-link:hover,
.focus-menu-link.active {
  color: var(--optica-brand-deep);
}
.focus-menu-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--optica-accent-bright);
  transition: width 0.25s ease;
}
.focus-menu-link:hover::after,
.focus-menu-link.active::after {
  width: 100%;
}

/* --- BUTTONS --- */
.claridad-trigger-primary {
  display: inline-block;
  background: var(--optica-brand-mid);
  color: var(--optica-surface-clean);
  padding: 14px 32px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  border-radius: var(--optica-radius-soft);
  border: none;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.2s ease;
  text-align: center;
}
.claridad-trigger-primary:hover {
  background: var(--optica-brand-deep);
  transform: translateY(-2px);
}
.claridad-trigger-primary.style-small {
  padding: 8px 18px;
  font-size: 0.875rem;
  border-radius: var(--optica-radius-soft);
}
.claridad-trigger-primary.style-fullwidth {
  width: 100%;
  display: block;
}

.claridad-trigger-secondary {
  display: inline-block;
  background: var(--optica-surface-clean);
  color: var(--optica-brand-deep);
  padding: 14px 32px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  border-radius: var(--optica-radius-soft);
  border: 1px solid var(--optica-border-tint);
  cursor: pointer;
  transition: background 0.25s ease, transform 0.2s ease, box-shadow 0.2s ease;
  text-align: center;
}
.claridad-trigger-secondary:hover {
  background: var(--optica-bg-subtle);
  transform: translateY(-2px);
  box-shadow: var(--optica-shadow-raised);
}

.claridad-trigger-outline {
  display: inline-block;
  background: transparent;
  color: var(--optica-text-slate);
  padding: 8px 18px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.875rem;
  text-decoration: none;
  border-radius: var(--optica-radius-soft);
  border: 1px solid var(--optica-border-tint);
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}
.claridad-trigger-outline:hover {
  background: var(--optica-bg-subtle);
  color: var(--optica-brand-deep);
}

/* --- HERO SPLIT SECTION (Preset B) --- */
.focus-hero-split {
  display: flex;
  min-height: calc(85vh - 120px);
  background: var(--optica-bg-subtle);
  overflow: hidden;
  position: relative;
}
.focus-hero-text-pane {
  flex: 1 1 55%;
  padding: 8% 6% 8% 8%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
.focus-hero-visual-pane {
  flex: 1 1 45%;
  position: relative;
}
.focus-split-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.focus-hero-title {
  font-size: 3rem;
  letter-spacing: -1.5px;
  margin-bottom: 24px;
}
.focus-hero-subtitle {
  font-size: 1.15rem;
  color: var(--optica-text-slate);
  margin-bottom: 40px;
  max-width: 580px;
}
.focus-hero-action-group {
  display: flex;
  gap: 16px;
}

/* Expert Specific Hero override */
.focus-hero-split.style-expert-layout {
  background: var(--optica-surface-clean);
}
.focus-hero-split.style-expert-layout .focus-hero-text-pane {
  padding: 8% 8% 8% 6%;
}
.focus-expert-badge {
  background: var(--optica-accent-pale);
  color: var(--optica-brand-mid);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.875rem;
  padding: 6px 16px;
  border-radius: var(--optica-radius-pill);
  margin-bottom: 20px;
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.focus-expert-philosophy {
  margin-top: 20px;
  color: var(--optica-text-slate);
  font-size: 1rem;
  border-left: 3px solid var(--optica-accent-bright);
  padding-left: 16px;
}

/* --- EDITORIAL CONTENT STRIP (Preset B) --- */
.focus-editorial-strip {
  padding-bottom: var(--optica-padding-normal);
  background: var(--optica-surface-clean);
}
.focus-full-strip-photo {
  width: 100%;
  height: 45vh;
  object-fit: cover;
  display: block;
  margin-bottom: var(--optica-padding-compact);
}

.focus-journal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.focus-journal-column {
  border-top: 3px solid var(--optica-accent-bright);
  padding-top: 24px;
}
.focus-journal-title {
  font-size: 1.25rem;
  margin-bottom: 14px;
}
.focus-journal-description {
  color: var(--optica-text-slate);
  font-size: 0.95rem;
}

/* --- MASONRY FEATURES (Preset B) --- */
.focus-masonry-zone {
  background: var(--optica-bg-subtle);
  padding: var(--optica-padding-normal) 0;
}
.focus-section-heading {
  font-size: 2.25rem;
  text-align: center;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}
.focus-section-lead {
  text-align: center;
  color: var(--optica-text-slate);
  max-width: 680px;
  margin: 0 auto 60px auto;
  font-size: 1.1rem;
}

.focus-masonry-container {
  columns: 2;
  column-gap: 30px;
}
.focus-masonry-brick {
  background: var(--optica-surface-clean);
  margin-bottom: 30px;
  break-inside: avoid;
  padding: 40px;
  border-radius: var(--optica-radius-soft);
  box-shadow: var(--optica-shadow-flat);
  position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.focus-masonry-brick:hover {
  transform: translateY(-4px);
  box-shadow: var(--optica-shadow-raised);
}
.focus-masonry-brick.style-highlighted {
  background: var(--optica-accent-pale);
  border-left: 4px solid var(--optica-brand-mid);
}

.focus-brick-number {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--optica-accent-bright);
  font-weight: 800;
  opacity: 0.25;
  position: absolute;
  top: 24px;
  right: 32px;
}
.focus-brick-title {
  font-size: 1.35rem;
  margin-bottom: 16px;
  padding-right: 48px;
}
.focus-brick-text {
  color: var(--optica-text-slate);
  font-size: 0.95rem;
}

/* --- HOW IT WORKS TRACK (Preset B) --- */
.focus-track-section {
  background: var(--optica-surface-clean);
  padding: var(--optica-padding-normal) 0;
  border-bottom: 1px solid var(--optica-border-tint);
}
.focus-progress-track {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  margin-top: 60px;
  position: relative;
}
/* Horizontal dashed connection line */
.focus-progress-track::before {
  content: '';
  position: absolute;
  top: 30px;
  left: 10%;
  right: 10%;
  height: 2px;
  border-top: 2px dashed var(--optica-border-tint);
  z-index: 1;
}

.focus-track-step {
  flex: 1;
  text-align: center;
  position: relative;
  z-index: 2;
}
.focus-step-bubble {
  width: 60px;
  height: 60px;
  border-radius: var(--optica-radius-pill);
  background: var(--optica-bg-subtle);
  border: 2px solid var(--optica-border-tint);
  color: var(--optica-text-slate);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px auto;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  transition: all 0.25s ease;
}
.focus-step-title {
  font-size: 1.25rem;
  margin-bottom: 12px;
}
.focus-step-desc {
  color: var(--optica-text-slate);
  font-size: 0.925rem;
  padding: 0 16px;
}

.focus-track-step.focus-step-active .focus-step-bubble {
  background: var(--optica-brand-mid);
  border-color: var(--optica-brand-mid);
  color: var(--optica-surface-clean);
  box-shadow: 0 0 0 6px var(--optica-accent-pale);
}

/* --- STATS STRIP --- */
.focus-stats-strip {
  background: var(--optica-bg-subtle);
  padding: 60px 0;
  border-bottom: 1px solid var(--optica-border-tint);
}
.focus-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.focus-stat-card {
  text-align: center;
  padding: 20px;
}
.focus-stat-number {
  font-size: 3rem;
  color: var(--optica-highlight-warm);
  font-weight: 800;
  margin-bottom: 8px;
}
.focus-stat-label {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--optica-text-slate);
}

/* --- ACCORDION ZONE --- */
.focus-accordion-zone {
  background: var(--optica-surface-clean);
  padding: var(--optica-padding-normal) 0;
}
.focus-accordion-wrapper {
  max-width: 800px;
  margin: 40px auto 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.focus-accordion-item {
  border: 1px solid var(--optica-border-tint);
  border-radius: var(--optica-radius-soft);
  overflow: hidden;
  background: var(--optica-surface-clean);
  box-shadow: var(--optica-shadow-flat);
}
.focus-accordion-header {
  background: var(--optica-bg-subtle);
  padding: 24px 30px;
  border-bottom: 1px solid var(--optica-border-tint);
}
.focus-accordion-header h4 {
  font-size: 1.15rem;
}
.focus-accordion-content {
  padding: 30px;
  color: var(--optica-text-slate);
}

/* --- BOOKING GRID & FAQ (Preset B) --- */
.focus-booking-grid {
  background: var(--optica-bg-subtle);
  padding: var(--optica-padding-normal) 0;
}
.focus-booking-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.focus-booking-main-title {
  font-size: 2.5rem;
  letter-spacing: -1px;
  margin-bottom: 20px;
}
.focus-booking-intro-text {
  color: var(--optica-text-slate);
  font-size: 1.05rem;
  margin-bottom: 40px;
}

.focus-info-card-block {
  display: flex;
  gap: 20px;
  background: var(--optica-surface-clean);
  padding: 30px;
  border-radius: var(--optica-radius-soft);
  margin-bottom: 24px;
  box-shadow: var(--optica-shadow-flat);
}
.focus-card-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: var(--optica-radius-soft);
  background: var(--optica-accent-pale);
  color: var(--optica-brand-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.focus-card-icon {
  width: 24px;
  height: 24px;
}
.focus-card-details {
  flex-grow: 1;
}
.focus-card-bold-title {
  font-size: 1.2rem;
  margin-bottom: 12px;
}
.focus-card-bullets {
  list-style: none;
}
.focus-card-bullets li {
  font-size: 0.925rem;
  color: var(--optica-text-slate);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.focus-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--optica-highlight-warm);
  display: inline-block;
  flex-shrink: 0;
}

/* Form Container right column */
.focus-form-wrapper-box {
  background: var(--optica-surface-clean);
  padding: 50px;
  border-radius: var(--optica-radius-soft);
  box-shadow: var(--optica-shadow-raised);
}
.focus-form-title {
  font-size: 1.5rem;
  margin-bottom: 8px;
}
.focus-form-description {
  color: var(--optica-text-slate);
  font-size: 0.95rem;
  margin-bottom: 30px;
}
.focus-form-element {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.focus-input-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.focus-input-label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--optica-brand-deep);
}
.focus-input-field {
  width: 100%;
  padding: 14px 16px;
  border-radius: var(--optica-radius-soft);
  border: 1px solid var(--optica-border-tint);
  background: var(--optica-bg-main);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--optica-text-ink);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.focus-input-field:focus {
  outline: none;
  border-color: var(--optica-border-focus);
  box-shadow: 0 0 0 3px rgba(62, 164, 159, 0.15);
}
.focus-input-field.style-textarea {
  min-height: 100px;
  resize: vertical;
}

.focus-checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 10px 0 20px 0;
}
.focus-checkbox {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  accent-color: var(--optica-brand-mid);
  cursor: pointer;
}
.focus-checkbox-label {
  font-size: 0.85rem;
  color: var(--optica-text-slate);
  line-height: 1.4;
}
.focus-inline-link {
  color: var(--optica-brand-mid);
  text-decoration: underline;
}

.focus-contact-direct-box {
  margin-top: 30px;
  padding-top: 24px;
  border-top: 1px solid var(--optica-border-tint);
  text-align: center;
  font-size: 0.875rem;
  color: var(--optica-text-slate);
}
.focus-email-link {
  color: var(--optica-brand-deep);
  font-weight: 700;
  text-decoration: none;
  font-size: 1rem;
}

/* FAQ Area style */
.focus-faq-area {
  background: var(--optica-surface-clean);
  padding: var(--optica-padding-normal) 0;
}
.focus-faq-list {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}
.focus-faq-card {
  background: var(--optica-bg-subtle);
  padding: 30px;
  border-radius: var(--optica-radius-soft);
  border-top: 3px solid var(--optica-brand-mid);
}
.focus-faq-question {
  font-size: 1.15rem;
  margin-bottom: 12px;
}
.focus-faq-answer {
  font-size: 0.925rem;
  color: var(--optica-text-slate);
}

/* --- CTA STRIP (Preset B Accent bg) --- */
.focus-cta-strip {
  background: var(--optica-accent-pale);
  padding: var(--optica-padding-compact) 0;
  text-align: center;
}
.focus-cta-container {
  max-width: 800px;
  margin: 0 auto;
}
.focus-cta-heading {
  font-size: 2.25rem;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}
.focus-cta-subtext {
  color: var(--optica-text-slate);
  font-size: 1.1rem;
  margin-bottom: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* --- THANK YOU PAGE --- */
.focus-thankyou-main-block {
  background: var(--optica-bg-subtle);
  padding: var(--optica-padding-normal) 0;
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.focus-thankyou-inner {
  display: flex;
  justify-content: center;
  width: 100%;
}
.focus-thankyou-card {
  background: var(--optica-surface-clean);
  padding: 60px;
  border-radius: var(--optica-radius-soft);
  box-shadow: var(--optica-shadow-raised);
  max-width: 700px;
  text-align: center;
}
.focus-checkmark-icon {
  width: 80px;
  height: 80px;
  background: var(--optica-accent-pale);
  color: var(--optica-brand-mid);
  border-radius: var(--optica-radius-pill);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px auto;
}
.focus-checkmark-icon svg {
  width: 40px;
  height: 40px;
}
.focus-thankyou-title {
  font-size: 2.25rem;
  margin-bottom: 20px;
}
.focus-thankyou-message {
  color: var(--optica-text-slate);
  margin-bottom: 40px;
  font-size: 1.05rem;
}
.focus-thankyou-figure {
  margin-bottom: 40px;
  border-radius: var(--optica-radius-soft);
  overflow: hidden;
}
.focus-thankyou-photo {
  max-height: 250px;
  width: 100%;
  object-fit: cover;
  display: block;
}

/* --- LEGAL TEMPLATE --- */
.focus-legal-content-main {
  background: var(--optica-bg-subtle);
  padding: var(--optica-padding-normal) 0;
}
.focus-legal-title {
  font-size: 2.5rem;
  margin-bottom: 10px;
}
.focus-legal-meta {
  color: var(--optica-text-slate);
  font-size: 0.9rem;
  margin-bottom: 40px;
}
.focus-legal-section {
  background: var(--optica-surface-clean);
  padding: 40px;
  border-radius: var(--optica-radius-soft);
  box-shadow: var(--optica-shadow-flat);
  margin-bottom: 30px;
}
.focus-legal-section h3 {
  font-size: 1.35rem;
  margin-bottom: 18px;
}
.focus-legal-section p {
  color: var(--optica-text-slate);
  margin-bottom: 16px;
  font-size: 0.95rem;
}
.focus-legal-section ul {
  padding-left: 20px;
  margin-bottom: 20px;
}
.focus-legal-section li {
  color: var(--optica-text-slate);
  font-size: 0.95rem;
  margin-bottom: 8px;
}

/* --- FOOTER --- */
.focus-footer-main {
  background: var(--optica-brand-deep);
  color: var(--optica-surface-clean);
  padding-top: 80px;
  font-family: var(--font-body);
}
.focus-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 80px;
  padding-bottom: 60px;
}
.focus-footer-brand-info .focus-brand-logo {
  color: var(--optica-surface-clean);
  margin-bottom: 20px;
}
.focus-footer-brand-info .focus-brand-logo svg {
  color: var(--optica-accent-bright);
}
.focus-footer-disclaimer {
  font-size: 0.85rem;
  color: var(--optica-border-tint);
  line-height: 1.6;
}

.focus-links-title {
  color: var(--optica-surface-clean);
  font-size: 1.1rem;
  margin-bottom: 24px;
}
.focus-footer-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.focus-footer-link {
  color: var(--optica-border-tint);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.15s ease;
}
.focus-footer-link:hover {
  color: var(--optica-accent-bright);
}

.focus-footer-copyright {
  border-top: 1px solid rgba(222, 230, 229, 0.1);
  padding: 30px 0;
  font-size: 0.8rem;
  color: var(--optica-border-tint);
  text-align: center;
}

/* --- COOKIE CONSENT BANNER --- */
.optica-cookie-overlay {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--optica-brand-deep);
  border-top: 2px solid var(--optica-accent-bright);
  z-index: 99999;
  padding: 24px 0;
}
.optica-cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.optica-cookie-text {
  color: var(--optica-surface-clean);
  font-size: 0.875rem;
}
.optica-cookie-actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

/* --- MEDIA QUERIES (RESPONSIVE) --- */
@media (max-width: 991px) {
  /* Layout Paddings */
  :root {
    --optica-padding-normal: 8vh;
  }
  
  /* Hero Split */
  .focus-hero-split {
    flex-direction: column-reverse;
    min-height: auto;
  }
  .focus-hero-text-pane {
    padding: 60px 24px;
  }
  .focus-hero-visual-pane {
    height: 350px;
  }
  .focus-hero-title {
    font-size: 2.25rem;
  }

  /* Editorial strip grid */
  .focus-journal-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  /* Masonry masonry grid flat */
  .focus-masonry-container {
    columns: 1;
  }

  /* How it works simple wrap */
  .focus-progress-track {
    flex-direction: column;
    gap: 40px;
  }
  .focus-progress-track::before {
    display: none; /* Hide connector in vertical view */
  }

  /* Stats grid */
  .focus-stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  /* Booking Split */
  .focus-booking-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  /* FAQ grid */
  .focus-faq-list {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .focus-footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 767px) {
  /* Header navigation mobile drawer */
  .focus-nav-trigger {
    display: flex;
  }
  .focus-navigation-menu {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background: var(--optica-surface-clean);
    flex-direction: column;
    justify-content: center;
    gap: 40px;
    transition: left 0.3s ease;
    z-index: 1000;
    box-shadow: 0 15px 30px rgba(0,0,0,0.05);
  }
  .focus-menu-link {
    font-size: 1.25rem;
  }
  
  /* Active state mobile display logic */
  .focus-nav-checkbox:checked ~ .focus-navigation-menu {
    left: 0;
  }
  .focus-nav-checkbox:checked ~ .focus-nav-trigger span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .focus-nav-checkbox:checked ~ .focus-nav-trigger span:nth-child(2) {
    opacity: 0;
  }
  .focus-nav-checkbox:checked ~ .focus-nav-trigger span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  /* Hero Action Group mobile centering */
  .focus-hero-action-group {
    flex-direction: column;
    width: 100%;
  }
  .claridad-trigger-primary,
  .claridad-trigger-secondary {
    width: 100%;
  }

  /* Cookie Content responsive styling */
  .optica-cookie-content {
    flex-direction: column;
    text-align: center;
  }
}