/* THEME: LIGHT
   FONTS: Nunito (Heading), Open Sans (Text)
   PRESET H: Bold Typography + Asymmetric Blocks
   BORDER RADIUS STYLE: Soft (16px)
   SHADOW DEPTH: Raised (Standard shadows)
   SECTION PADDING SCALE: Spacious (16dvh)
*/

:root {
  /* THEMATIC UNIQUE NAMES AS PER INSTRUCTIONS */
  --ojo-main-cream-bg: #fcfbfa;
  --ojo-soft-sand-surface: #f4f1eb;
  --ojo-deep-obsidian-ink: #1c2321;
  --ojo-forest-enlighten-brand: #1e3f35;
  --ojo-terracotta-sunspot: #d37a5b;
  --ojo-border-neutral-soft: #e3ddd4;
  --ojo-white-pure: #ffffff;
  --ojo-glass-tint: rgba(255, 255, 255, 0.85);

  --font-display: 'Nunito', sans-serif;
  --font-body: 'Open Sans', sans-serif;

  /* Custom timings */
  --ojo-transition-smooth: 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Base reset to build structural layout */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body.ojo-body-custom {
  background-color: var(--ojo-main-cream-bg);
  color: var(--ojo-deep-obsidian-ink);
  font-family: var(--font-body);
  line-height: 1.625;
  -webkit-font-smoothing: antialiased;
}

/* Scroll-driven progress bar in Header (CSS-only) */
@keyframes progress-grow {
  to { width: 100%; }
}
.ojo-header-scroller {
  height: 4px;
  width: 0%;
  background-color: var(--ojo-terracotta-sunspot);
  position: absolute;
  top: 0;
  left: 0;
  animation: progress-grow linear;
  animation-timeline: scroll();
}

/* 📐 HEADER (Shared layout) */
.ojo-main-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: rgba(252, 251, 250, 0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--ojo-border-neutral-soft);
  width: 100%;
}

.ojo-header-inner-wrap {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 2rem;
  position: relative;
}

.ojo-brand-anchor {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--ojo-forest-enlighten-brand);
  transition: var(--ojo-transition-smooth);
}

.ojo-brand-anchor:hover {
  opacity: 0.85;
}

.ojo-brand-icon {
  width: 32px;
  height: 32px;
  color: var(--ojo-terracotta-sunspot);
}

/* Preset H Headline branding */
.ojo-brand-name {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.65rem;
  letter-spacing: -0.5px;
}

.ojo-nav-checkbox {
  display: none;
}

.ojo-main-nav-links {
  display: flex;
  gap: 2.5rem;
}

.ojo-nav-item {
  font-family: var(--font-display);
  font-size: 0.825rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  text-decoration: none;
  color: var(--ojo-deep-obsidian-ink);
  position: relative;
  padding: 0.5rem 0;
  transition: var(--ojo-transition-smooth);
}

.ojo-nav-item:hover,
.ojo-nav-item.active {
  color: var(--ojo-terracotta-sunspot);
}

.ojo-nav-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background-color: var(--ojo-terracotta-sunspot);
  transition: var(--ojo-transition-smooth);
}

.ojo-nav-item:hover::after,
.ojo-nav-item.active::after {
  width: 100%;
}

/* Hamburger button icon */
.ojo-nav-burger-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1010;
}

.ojo-burger-line {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--ojo-deep-obsidian-ink);
  transition: var(--ojo-transition-smooth);
}

/* Content layout wrapper */
.ojo-main-content-layout {
  min-height: calc(100vh - 180px);
}

/* Scroll animation with view() for section fades */
@keyframes section-reveal {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.ojo-columns-magazine,
.ojo-manifesto-features,
.ojo-asym-stepper-section,
.ojo-expert-bio-section,
.ojo-plain-metrics-section,
.ojo-reservation-editorial-sec,
.ojo-educational-features-list,
.ojo-faq-section {
  animation: section-reveal linear both;
  animation-timeline: view();
  animation-range: entry 10% entry 40%;
}

/* 🏠 HERO SECTION - PRESET H (Word-by-word bold layout) */
.ojo-asym-hero {
  padding: 16dvh 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid var(--ojo-border-neutral-soft);
  overflow: hidden;
}

.ojo-hero-concept-grid {
  max-width: 1100px;
  width: 100%;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  align-items: center;
}

.ojo-hero-huge-title {
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 8vw, 6.2rem);
  line-height: 0.92;
  font-weight: 900;
  letter-spacing: -2px;
  display: flex;
  flex-direction: column;
}

.ojo-word-line-left {
  display: block;
  align-self: flex-start;
}

.ojo-word-line-right {
  display: block;
  align-self: flex-end;
  text-align: right;
}

.ojo-highlight-accent {
  color: var(--ojo-terracotta-sunspot);
}

.ojo-underline-accent {
  background-image: linear-gradient(120deg, var(--ojo-border-neutral-soft) 0%, var(--ojo-border-neutral-soft) 100%);
  background-repeat: no-repeat;
  background-size: 100% 0.18em;
  background-position: 0 88%;
}

.ojo-hero-caption-block {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.ojo-hero-brief-para {
  font-size: 1.125rem;
  color: #3e4442;
}

.ojo-hero-btn-container {
  display: flex;
}

/* Shared Pill Action Button */
.ojo-action-pill-btn {
  display: inline-block;
  padding: 1rem 2.25rem;
  background-color: var(--ojo-forest-enlighten-brand);
  color: var(--ojo-white-pure);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  border-radius: 16px; /* Soft Style */
  box-shadow: 0 4px 14px rgba(30, 63, 53, 0.15); /* Raised Style */
  transition: var(--ojo-transition-smooth);
}

.ojo-action-pill-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(30, 63, 53, 0.25);
  background-color: var(--ojo-terracotta-sunspot);
}

.ojo-action-pill-btn.inverse {
  background-color: var(--ojo-white-pure);
  color: var(--ojo-forest-enlighten-brand);
}

.ojo-action-pill-btn.inverse:hover {
  background-color: var(--ojo-terracotta-sunspot);
  color: var(--ojo-white-pure);
}

/* 📰 CONTENT SECTION (3-col masonry/magazine + bg2.webp overlay) */
.ojo-columns-magazine {
  padding: 16dvh 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.ojo-magazine-intro-head {
  margin-bottom: 4rem;
  max-width: 600px;
}

.ojo-tag-upper {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.825rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--ojo-terracotta-sunspot);
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.ojo-tag-upper.accent-light {
  color: var(--ojo-border-neutral-soft);
}

.ojo-magazine-bold-heading {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 1.15;
  color: var(--ojo-forest-enlighten-brand);
}

.ojo-magazine-columns-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}

.ojo-magazine-article-box {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

/* Minimal marker decoration representing editorial styling */
.ojo-article-visual-marker {
  width: 40px;
  height: 3px;
  background-color: var(--ojo-terracotta-sunspot);
}

.ojo-article-title {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 700;
}

.ojo-article-desc {
  font-size: 0.95rem;
  color: #4a514f;
}

/* Fullscreen Banner bg2.webp with text */
.ojo-fullwidth-visual-banner {
  height: 50vh;
  min-height: 400px;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  padding: 4rem 2rem;
}

.ojo-banner-content-inner {
  max-width: 650px;
  margin-left: 10%;
  color: var(--ojo-white-pure);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.ojo-banner-large-title {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 900;
  line-height: 1.1;
}

.ojo-banner-detail-text {
  font-size: 1.05rem;
  opacity: 0.9;
}

.ojo-banner-click {
  align-self: flex-start;
  color: var(--ojo-terracotta-sunspot);
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  text-decoration: none;
  font-size: 0.85rem;
  transition: var(--ojo-transition-smooth);
}

.ojo-banner-click:hover {
  color: var(--ojo-white-pure);
}

/* ⭐ FEATURES - PRESET H (manifesto-lines with bottom boundaries only) */
.ojo-manifesto-features {
  padding: 16dvh 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.ojo-manifesto-heading-block {
  margin-bottom: 5rem;
  text-align: center;
}

.ojo-manifesto-big-title {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 900;
  color: var(--ojo-forest-enlighten-brand);
}

.ojo-manifesto-rows-stack {
  display: flex;
  flex-direction: column;
}

.ojo-manifesto-single-line {
  display: flex;
  align-items: baseline;
  gap: 3rem;
  padding: 2.25rem 0;
  border-bottom: 1px solid var(--ojo-border-neutral-soft);
  transition: var(--ojo-transition-smooth);
}

.ojo-manifesto-single-line:last-of-type {
  border-bottom: none;
}

.ojo-manifesto-single-line:hover {
  transform: translateX(10px);
}

.ojo-manifesto-num {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--ojo-terracotta-sunspot);
}

.ojo-manifesto-text-wrap {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.ojo-manifesto-title-bold {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 900;
}

.ojo-manifesto-para-small {
  font-size: 0.95rem;
  color: #555b59;
}

/* 🗺️ HOW IT WORKS - PRESET H (rotated numbers asymmetric stepper) */
.ojo-asym-stepper-section {
  padding: 16dvh 2rem;
  background-color: var(--ojo-soft-sand-surface);
  border-top: 1px solid var(--ojo-border-neutral-soft);
  border-bottom: 1px solid var(--ojo-border-neutral-soft);
}

.ojo-stepper-header {
  max-width: 1200px;
  margin: 0 auto 5rem;
  text-align: center;
}

.ojo-stepper-main-title {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--ojo-forest-enlighten-brand);
}

.ojo-stepper-asym-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto;
}

.ojo-stepper-step-card {
  position: relative;
  border-radius: 16px;
  transition: var(--ojo-transition-smooth);
}

.ojo-step-rotated-bg {
  position: absolute;
  top: -2rem;
  left: -1rem;
  font-family: var(--font-display);
  font-size: 7.5rem;
  font-weight: 900;
  opacity: 0.12;
  color: var(--ojo-terracotta-sunspot);
  display: inline-block;
  transform: rotate(-10deg);
  pointer-events: none;
  line-height: 1;
}

.ojo-step-inner-card {
  background-color: var(--ojo-white-pure);
  padding: 2.5rem;
  border-radius: 16px; /* Soft Style */
  box-shadow: 0 4px 15px rgba(28, 35, 33, 0.05); /* Raised Style */
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* Asymmetric vertical displacement styling */
.pos-two {
  transform: translateY(2.5dvh);
}

.pos-three {
  transform: translateY(5dvh);
}

.ojo-step-card-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  margin-top: 1rem;
}

.ojo-step-card-text {
  font-size: 0.95rem;
  color: #4a514f;
}

/* 📣 CTA STRIP - PRESET H (slogan left + ghost button right) */
.ojo-typographic-cta-strip {
  padding: 16dvh 2rem;
  background-color: var(--ojo-forest-enlighten-brand);
  color: var(--ojo-white-pure);
}

.ojo-cta-strip-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4rem;
}

.ojo-cta-strip-slogan {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 900;
  line-height: 1.25;
  max-width: 650px;
}

.ojo-cta-strip-action-box {
  flex-shrink: 0;
}

.ojo-ghost-action-button {
  display: inline-block;
  padding: 1.15rem 2.5rem;
  border: 2px solid var(--ojo-white-pure);
  color: var(--ojo-white-pure);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  text-decoration: none;
  border-radius: 16px;
  transition: var(--ojo-transition-smooth);
}

.ojo-ghost-action-button:hover {
  background-color: var(--ojo-white-pure);
  color: var(--ojo-forest-enlighten-brand);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 255, 255, 0.2);
}

/* 👩‍🏫 EXPERT PAGE - PRESET H (bio left 50% + image right 50% with dropcap) */
.ojo-expert-bio-section {
  padding: 16dvh 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.ojo-expert-bio-columns {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 5rem;
  align-items: center;
}

.ojo-expert-text-column {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.ojo-expert-bio-title {
  font-family: var(--font-display);
  font-size: 3.2rem;
  font-weight: 900;
  line-height: 1.1;
  color: var(--ojo-forest-enlighten-brand);
}

.ojo-expert-intro-p {
  font-size: 1.1rem;
  font-weight: 400;
  color: #2b3230;
}

.ojo-drop-cap {
  font-family: var(--font-display);
  font-size: 3.8rem;
  font-weight: 900;
  color: var(--ojo-terracotta-sunspot);
  float: left;
  line-height: 1;
  margin-right: 0.75rem;
  margin-top: -0.25rem;
}

.ojo-expert-sub-p {
  font-size: 0.95rem;
  color: #525a58;
}

.ojo-expert-image-column {
  position: relative;
}

.ojo-expert-picture-frame {
  background-color: var(--ojo-soft-sand-surface);
  padding: 1.25rem;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(28, 35, 33, 0.08);
}

.ojo-expert-bio-image {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  object-fit: cover;
}

.ojo-expert-caption {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-style: italic;
  text-align: center;
  margin-top: 1rem;
  color: #656d6a;
}

/* METRICS / STATS AS PLAIN TEXT (Preset H: plain big numbers + text, no boxes) */
.ojo-plain-metrics-section {
  padding: 12dvh 2rem;
  border-top: 1px solid var(--ojo-border-neutral-soft);
  background-color: var(--ojo-soft-sand-surface);
}

.ojo-metrics-inner-wrap {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  text-align: center;
}

.ojo-single-metric-block {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.ojo-metric-big-num {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 900;
  color: var(--ojo-terracotta-sunspot);
}

.ojo-metric-legend-text {
  font-size: 1rem;
  font-weight: 600;
  max-width: 250px;
  margin: 0 auto;
}

/* Parallax strip representing specialized topic view */
.ojo-parallax-education-strip {
  padding: 16dvh 2rem;
  background-size: cover;
  background-position: center;
}

.ojo-parallax-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  color: var(--ojo-white-pure);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
}

.ojo-parallax-title {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 900;
}

.ojo-parallax-desc {
  font-size: 1.1rem;
  opacity: 0.95;
  line-height: 1.7;
}

.ojo-parallax-action-wrapper {
  margin-top: 1rem;
}

/* 📝 RESERVATION PAGE - PRESET H (Underline-only form fields) */
.ojo-reservation-editorial-sec {
  padding: 16dvh 2rem;
  max-width: 800px;
  margin: 0 auto;
}

.ojo-reservation-title-block {
  text-align: center;
  margin-bottom: 5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.ojo-typographic-main-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 3rem;
  line-height: 1.1;
  color: var(--ojo-forest-enlighten-brand);
}

.ojo-reservation-sub-para {
  font-size: 1.1rem;
  color: #4b5250;
  max-width: 600px;
  margin: 0 auto;
}

.ojo-editorial-form-wrapper {
  background-color: var(--ojo-white-pure);
  padding: 4rem 3.5rem;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(28, 35, 33, 0.04);
}

.ojo-underlined-form {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.ojo-form-group-field {
  position: relative;
}

.ojo-input-line-only {
  width: 100%;
  border: none;
  border-bottom: 2px solid var(--ojo-border-neutral-soft);
  background-color: transparent;
  padding: 0.75rem 0;
  font-size: 1.05rem;
  font-family: var(--font-body);
  color: var(--ojo-deep-obsidian-ink);
  transition: var(--ojo-transition-smooth);
}

.ojo-input-line-only:focus {
  outline: none;
  border-bottom-color: var(--ojo-terracotta-sunspot);
}

.ojo-input-line-only.text-area-mode {
  min-height: 100px;
  resize: vertical;
}

.ojo-label-floating {
  position: absolute;
  top: 0.75rem;
  left: 0;
  font-size: 1.05rem;
  color: #79807d;
  pointer-events: none;
  transition: var(--ojo-transition-smooth);
}

/* Underline label animations when focus/placeholder shown */
.ojo-input-line-only:focus ~ .ojo-label-floating,
.ojo-input-line-only:not(:placeholder-shown) ~ .ojo-label-floating {
  top: -1.25rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--ojo-terracotta-sunspot);
}

.ojo-form-consent-box {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.ojo-checkbox-custom {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  cursor: pointer;
}

.ojo-checkbox-label-text {
  font-size: 0.9rem;
  color: #4b5250;
}

.ojo-form-inline-link {
  color: var(--ojo-terracotta-sunspot);
  text-decoration: underline;
}

.ojo-form-submit-container {
  margin-top: 1rem;
}

.ojo-form-submit-btn-styled {
  width: 100%;
  padding: 1.15rem;
  background-color: var(--ojo-forest-enlighten-brand);
  color: var(--ojo-white-pure);
  border: none;
  border-radius: 16px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(30, 63, 53, 0.2);
  transition: var(--ojo-transition-smooth);
}

.ojo-form-submit-btn-styled:hover {
  background-color: var(--ojo-terracotta-sunspot);
  box-shadow: 0 8px 25px rgba(211, 122, 91, 0.3);
  transform: translateY(-2px);
}

.ojo-direct-contact-block {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--ojo-border-neutral-soft);
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.ojo-direct-text {
  font-size: 0.9rem;
  color: #656d6a;
}

.ojo-clickable-mail-anchor {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--ojo-terracotta-sunspot);
  text-decoration: none;
}

.ojo-clickable-mail-anchor:hover {
  text-decoration: underline;
}

/* 📚 EDUCATIONAL FEATURES CARDS (Icons + lists + round colored numbers) */
.ojo-educational-features-list {
  padding: 16dvh 2rem;
  background-color: var(--ojo-soft-sand-surface);
  border-top: 1px solid var(--ojo-border-neutral-soft);
}

.ojo-features-grid-classic {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}

.ojo-detail-feature-card {
  background-color: var(--ojo-white-pure);
  padding: 3rem;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(28, 35, 33, 0.04);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.ojo-feature-icon-wrapper {
  color: var(--ojo-terracotta-sunspot);
}

.ojo-card-svg {
  width: 44px;
  height: 44px;
}

.ojo-feature-card-heading {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
}

.ojo-feature-card-desc {
  font-size: 0.95rem;
  color: #555b59;
}

.ojo-feature-num-list {
  list-style-type: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.ojo-feature-num-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: #3e4442;
}

.ojo-list-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background-color: var(--ojo-soft-sand-surface);
  color: var(--ojo-terracotta-sunspot);
  border-radius: 50%;
  font-weight: 700;
  font-size: 0.75rem;
}

/* ❓ FAQ SECTION (All open, simple typographic block) */
.ojo-faq-section {
  padding: 16dvh 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.ojo-faq-header-wrap {
  text-align: center;
  margin-bottom: 5rem;
}

.ojo-faq-main-title {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--ojo-forest-enlighten-brand);
}

.ojo-faq-accordion-rows {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.ojo-faq-block-item {
  border-bottom: 1px solid var(--ojo-border-neutral-soft);
  padding-bottom: 2rem;
}

.ojo-faq-block-item:last-of-type {
  border-bottom: none;
}

.ojo-faq-question-text {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--ojo-forest-enlighten-brand);
  margin-bottom: 0.85rem;
}

.ojo-faq-answer-text {
  font-size: 0.95rem;
  color: #525a58;
  line-height: 1.6;
}

/* 📄 LEGAL TEXT PAGES */
.ojo-textual-page-section {
  padding: 16dvh 2rem;
  max-width: 800px;
  margin: 0 auto;
}

.ojo-textual-container {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.ojo-textual-main-title {
  font-family: var(--font-display);
  font-size: 3.2rem;
  font-weight: 900;
  color: var(--ojo-forest-enlighten-brand);
  margin-bottom: 0.5rem;
}

.ojo-textual-para-date {
  font-size: 0.9rem;
  font-style: italic;
  color: #555b59;
  margin-bottom: 1.5rem;
}

.ojo-textual-subtitle {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  margin-top: 1.5rem;
  color: var(--ojo-forest-enlighten-brand);
}

.ojo-textual-body-p {
  font-size: 1rem;
  color: #3e4442;
  line-height: 1.7;
}

.ojo-cookies-anchored-block {
  margin-top: 3rem;
  padding-top: 3rem;
  border-top: 2px dashed var(--ojo-border-neutral-soft);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* 🎉 THANK YOU PAGE */
.ojo-thankyou-split-section {
  padding: 16dvh 2rem;
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.ojo-thankyou-card {
  background-color: var(--ojo-white-pure);
  padding: 4rem 3rem;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(28, 35, 33, 0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.ojo-thank-success-glyph {
  color: var(--ojo-terracotta-sunspot);
  margin-bottom: 1rem;
}

.ojo-glyph-svg {
  width: 72px;
  height: 72px;
}

.ojo-thankyou-main-title {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--ojo-forest-enlighten-brand);
}

.ojo-thankyou-desc-para {
  font-size: 1.1rem;
  color: #2b3230;
}

.ojo-thankyou-sub-para {
  font-size: 0.95rem;
  color: #525a58;
}

.ojo-thankyou-visual-frame {
  width: 100%;
  margin: 1.5rem 0;
}

.ojo-thankyou-image-inset {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 12px;
}

.ojo-thankyou-action-btn-box {
  margin-top: 1rem;
}

/* 📐 FOOTER (Shared layout) */
.ojo-main-footer {
  background-color: var(--ojo-forest-enlighten-brand);
  color: var(--ojo-white-pure);
  padding: 6rem 2rem 3rem;
}

.ojo-footer-top-row {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  padding-bottom: 4rem;
}

.ojo-footer-brand-side {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.ojo-footer-brand-side .ojo-brand-anchor {
  color: var(--ojo-white-pure);
  align-self: flex-start;
}

.ojo-footer-brief-desc {
  font-size: 0.95rem;
  opacity: 0.8;
  max-width: 450px;
}

.ojo-footer-links-side {
  display: flex;
  justify-content: flex-end;
}

.ojo-footer-nav {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.ojo-footer-link {
  color: var(--ojo-white-pure);
  text-decoration: none;
  font-size: 0.9rem;
  opacity: 0.85;
  transition: var(--ojo-transition-smooth);
}

.ojo-footer-link:hover {
  opacity: 1;
  color: var(--ojo-terracotta-sunspot);
}

.ojo-footer-disclaimer-box {
  max-width: 1200px;
  margin: 0 auto;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding: 2.5rem 0;
}

.ojo-footer-disclaimer-text {
  font-size: 0.825rem;
  line-height: 1.6;
  opacity: 0.75;
}

.ojo-footer-bottom-copy {
  max-width: 1200px;
  margin: 0 auto;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 2rem;
  text-align: center;
}

.ojo-copy-text {
  font-size: 0.85rem;
  opacity: 0.65;
}

/* 🍪 COOKIE BANNER */
.ojo-cookie-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--ojo-forest-enlighten-brand);
  color: var(--ojo-white-pure);
  z-index: 9999;
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  border-top: 3px solid var(--ojo-terracotta-sunspot);
  transform: translateY(100%);
  transition: transform 0.5s ease;
}

.ojo-cookie-consent-banner.is-visible {
  transform: translateY(0);
}

.ojo-cookie-text-span {
  font-size: 0.9rem;
  max-width: 800px;
  line-height: 1.5;
}

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

.ojo-cookie-btn-action {
  padding: 0.65rem 1.5rem;
  border: none;
  border-radius: 12px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  cursor: pointer;
  transition: var(--ojo-transition-smooth);
}

.ojo-cookie-btn-action.accept {
  background-color: var(--ojo-terracotta-sunspot);
  color: var(--ojo-white-pure);
}

.ojo-cookie-btn-action.accept:hover {
  background-color: var(--ojo-white-pure);
  color: var(--ojo-forest-enlighten-brand);
}

.ojo-cookie-btn-action.decline {
  background-color: transparent;
  color: var(--ojo-white-pure);
  border: 1px solid var(--ojo-white-pure);
}

.ojo-cookie-btn-action.decline:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

/* 📱 RESPONSIVE MEDIA QUERIES */
@media (max-width: 1024px) {
  .ojo-hero-concept-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    text-align: center;
  }

  .ojo-word-line-left,
  .ojo-word-line-right {
    align-self: center;
    text-align: center;
  }

  .ojo-hero-caption-block {
    align-items: center;
  }

  .ojo-stepper-asym-grid {
    grid-template-columns: 1fr;
    gap: 6rem;
  }

  .pos-two, .pos-three {
    transform: none;
  }

  .ojo-expert-bio-columns {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }

  .ojo-plain-metrics-section .ojo-metrics-inner-wrap {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .ojo-features-grid-classic {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .ojo-cta-strip-inner {
    flex-direction: column;
    text-align: center;
    gap: 2.5rem;
  }

  .ojo-cta-strip-slogan {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  /* Dynamic units scale */
  html {
    font-size: 15px;
  }

  .ojo-columns-magazine,
  .ojo-manifesto-features,
  .ojo-asym-stepper-section,
  .ojo-expert-bio-section,
  .ojo-plain-metrics-section,
  .ojo-reservation-editorial-sec,
  .ojo-educational-features-list,
  .ojo-faq-section {
    padding: 10dvh 1.5rem;
  }

  .ojo-asym-hero {
    padding: 12dvh 1.5rem;
  }

  /* Hamburger Toggle navigation */
  .ojo-nav-burger-btn {
    display: flex;
  }

  .ojo-main-nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--ojo-main-cream-bg);
    border-bottom: 2px solid var(--ojo-border-neutral-soft);
    flex-direction: column;
    align-items: center;
    padding: 2.5rem 1rem;
    gap: 1.5rem;
    display: none;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  }

  .ojo-nav-checkbox:checked ~ .ojo-main-nav-links {
    display: flex;
  }

  /* Animate burger lines upon toggle action */
  .ojo-nav-checkbox:checked ~ .ojo-nav-burger-btn .ojo-burger-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .ojo-nav-checkbox:checked ~ .ojo-nav-burger-btn .ojo-burger-line:nth-child(2) {
    opacity: 0;
  }

  .ojo-nav-checkbox:checked ~ .ojo-nav-burger-btn .ojo-burger-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .ojo-magazine-columns-row {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .ojo-manifesto-single-line {
    flex-direction: column;
    gap: 1rem;
  }

  .ojo-editorial-form-wrapper {
    padding: 2.5rem 1.5rem;
  }

  .ojo-footer-top-row {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .ojo-footer-links-side {
    justify-content: flex-start;
  }

  .ojo-cookie-consent-banner {
    flex-direction: column;
    align-items: stretch;
    gap: 1.5rem;
    text-align: center;
  }

  .ojo-cookie-btns-group {
    justify-content: center;
  }
}