/* --- CUSTOM THEMING VARIABLES (Magazine Editorial Inspired) --- */
:root {
  --ojo-bg: #FDFBF7;             /* Creamy warm background canvas */
  --ojo-surface: #F5F0E6;        /* Warm beige surface */
  --ojo-clay: #C17A63;           /* Terracotta accent tone */
  --ojo-clay-hover: #A65D46;     /* Darker terracotta hover state */
  --ojo-ink: #1B2421;            /* Charcoal / Deep forest ink */
  --ojo-ink-muted: #5C6360;      /* Slate grey for subtext */
  --ojo-border: #D8CEBE;         /* Fine separator borders */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Mulish', system-ui, -apple-system, sans-serif;
  --ojo-radius: 4px;             /* Editorial Preset E sharp corners (2-4px) */
}

/* --- SCROLL-DRIVEN PROGRESS BAR (CSS only) --- */
@keyframes eye-progress-grow {
  to { width: 100%; }
}

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

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

body.ojo-editorial-body {
  background-color: var(--ojo-bg);
  color: var(--ojo-ink);
  font-family: var(--font-body);
  line-height: 1.625;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

p {
  font-size: 1.05rem;
  color: var(--ojo-ink-muted);
}

.ojo-overline {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--ojo-clay);
  margin-bottom: 0.75rem;
}

.text-center {
  text-align: center;
}

.w-100 {
  width: 100%;
}

/* --- HEADER & NAVIGATION (Preset E styling) --- */
.ojo-top-navigation {
  position: sticky;
  top: 0;
  background-color: var(--ojo-bg);
  border-bottom: 1px solid var(--ojo-border);
  z-index: 1000;
  padding: 1.25rem 0;
}

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

.ojo-scroll-progress {
  position: absolute;
  bottom: -1px;
  left: 0;
  height: 3px;
  background-color: var(--ojo-clay);
  width: 0;
  animation: eye-progress-grow linear;
  animation-timeline: scroll();
}

.ojo-brand-wrapper {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: var(--ojo-ink);
}

.ojo-brand-icon {
  width: 28px;
  height: 28px;
  color: var(--ojo-clay);
}

.ojo-brand-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.ojo-nav-menu {
  display: flex;
  align-items: center;
}

.ojo-nav-list {
  display: flex;
  list-style: none;
  gap: 2.5rem;
}

.ojo-nav-link {
  text-decoration: none;
  color: var(--ojo-ink);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  transition: color 0.25s ease;
  position: relative;
  padding: 0.25rem 0;
}

.ojo-nav-link:hover {
  color: var(--ojo-clay);
}

.ojo-nav-active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--ojo-clay);
}

/* Mobile Nav Toggle Controls (No JS Hamburger) */
.ojo-menu-checkbox {
  display: none;
}

.ojo-menu-trigger {
  display: none;
  flex-direction: column;
  gap: 0.35rem;
  cursor: pointer;
  z-index: 1001;
}

.ojo-menu-trigger span {
  display: block;
  width: 25px;
  height: 2px;
  background-color: var(--ojo-ink);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* --- HERO SECTION (Preset E: Magazine Split with Vertical text) --- */
.ojo-hero-editorial {
  display: grid;
  grid-template-columns: 80px 1fr;
  min-height: calc(100vh - 75px);
  max-width: 1440px;
  margin: 0 auto;
}

.ojo-hero-accent-side {
  background-color: var(--ojo-surface);
  border-right: 1px solid var(--ojo-border);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem 0;
}

.ojo-vertical-slogan {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  color: var(--ojo-ink-muted);
}

.ojo-hero-main-side {
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  padding: 6dvh 4rem;
  position: relative;
}

.ojo-hero-content-box {
  background-color: rgba(253, 251, 247, 0.96);
  max-width: 650px;
  padding: 3rem;
  border-left: 4px solid var(--ojo-clay);
  box-shadow: 0 15px 30px rgba(27, 36, 33, 0.05);
}

.ojo-hero-tagline {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--ojo-clay);
  letter-spacing: 0.15em;
  margin-bottom: 1rem;
}

.ojo-hero-main-title {
  font-size: 2.85rem;
  color: var(--ojo-ink);
  margin-bottom: 1.5rem;
  line-height: 1.15;
}

.ojo-hero-summary {
  font-size: 1.15rem;
  color: var(--ojo-ink-muted);
  margin-bottom: 2rem;
  line-height: 1.55;
}

/* --- BUTTONS --- */
.ojo-action-button-solid {
  display: inline-block;
  background-color: var(--ojo-clay);
  color: #ffffff;
  text-decoration: none;
  padding: 0.95rem 2rem;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid var(--ojo-clay);
  border-radius: var(--ojo-radius);
  transition: all 0.25s ease;
  cursor: pointer;
  text-align: center;
}

.ojo-action-button-solid:hover {
  background-color: var(--ojo-clay-hover);
  border-color: var(--ojo-clay-hover);
}

.ojo-action-button-outline {
  display: inline-block;
  background-color: transparent;
  color: var(--ojo-ink);
  text-decoration: none;
  padding: 0.95rem 2rem;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid var(--ojo-ink);
  border-radius: var(--ojo-radius);
  transition: all 0.25s ease;
  cursor: pointer;
}

.ojo-action-button-outline:hover {
  background-color: var(--ojo-ink);
  color: var(--ojo-bg);
}

.ojo-text-link {
  display: inline-block;
  color: var(--ojo-clay);
  font-weight: 600;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.2s ease, transform 0.2s ease;
}

.ojo-text-link:hover {
  color: var(--ojo-clay-hover);
  transform: translateX(4px);
}

/* --- SECTION PADDING (Preset E: spacious layout) --- */
.ojo-pull-quote-section,
.ojo-alternating-block,
.ojo-features-grid-section,
.ojo-horizontal-steps-section,
.ojo-editorial-cta-strip,
.ojo-minimal-hero-expert,
.ojo-alternating-rows-expert,
.ojo-reserve-highlights-strip,
.ojo-editorial-form-section,
.ojo-editorial-faq-section,
.ojo-legal-document-wrapper,
.ojo-thank-you-layout {
  padding: 10dvh 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

/* --- SECTION HEADERS --- */
.ojo-section-header-centered {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 5rem auto;
}

.ojo-editorial-heading-medium {
  font-size: 2.25rem;
  color: var(--ojo-ink);
}

.ojo-editorial-heading-large {
  font-size: 3.25rem;
  color: var(--ojo-ink);
  line-height: 1.15;
}

/* --- CONTENT: pull-quote styling (Preset E) --- */
.ojo-pull-quote-section {
  border-top: 1px solid var(--ojo-border);
  border-bottom: 1px solid var(--ojo-border);
  text-align: center;
  padding: 8dvh 1.5rem;
}

.ojo-quote-container {
  max-width: 900px;
  margin: 0 auto;
}

.ojo-editorial-quote {
  font-family: var(--font-display);
  font-size: 2.15rem;
  font-style: italic;
  color: var(--ojo-clay);
  line-height: 1.35;
  position: relative;
}

.ojo-editorial-quote::before,
.ojo-editorial-quote::after {
  content: '"';
  font-family: var(--font-display);
  font-size: 4.5rem;
  color: var(--ojo-surface);
  position: absolute;
  line-height: 1;
}

.ojo-editorial-quote::before {
  top: -2.5rem;
  left: -2rem;
}

.ojo-editorial-quote::after {
  bottom: -4rem;
  right: -2rem;
}

/* --- ALTERNATING MAGAZINE LAYOUT (Preset E) --- */
.ojo-split-magazine-row {
  display: flex;
  align-items: center;
  gap: 4rem;
}

.ojo-magazine-img-col {
  flex: 0 0 45%;
}

.ojo-magazine-fluid-img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: var(--ojo-radius);
}

.ojo-magazine-text-col {
  flex: 1;
}

.ojo-magazine-paragraph {
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
}

/* --- FEATURES GRID: MAGAZINE LAYOUT (Preset E) --- */
.ojo-magazine-grid-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2.5rem;
}

.ojo-grid-card-large {
  background-size: cover;
  background-position: center;
  border-radius: var(--ojo-radius);
  min-height: 450px;
  display: flex;
  align-items: flex-end;
  position: relative;
  overflow: hidden;
}

.ojo-card-large-content {
  background: linear-gradient(to top, rgba(27, 36, 33, 0.95) 0%, rgba(27, 36, 33, 0.5) 100%);
  padding: 3rem;
  color: #ffffff;
  width: 100%;
}

.ojo-card-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--ojo-clay);
  letter-spacing: 0.15em;
  margin-bottom: 0.5rem;
}

.ojo-card-large-title {
  font-size: 1.85rem;
  margin-bottom: 1rem;
}

.ojo-card-large-text {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1rem;
}

.ojo-grid-column-stacked {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.ojo-grid-card-small {
  background-color: var(--ojo-surface);
  padding: 2.25rem;
  border-top: 3px solid var(--ojo-clay);
  border-radius: var(--ojo-radius);
  display: flex;
  gap: 1.5rem;
}

.ojo-card-small-icon {
  flex: 0 0 auto;
  color: var(--ojo-clay);
}

.ojo-card-small-info {
  flex: 1;
}

.ojo-card-small-title {
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
  color: var(--ojo-ink);
}

.ojo-card-small-text {
  font-size: 0.95rem;
}

/* --- "HOW IT WORKS" HORIZONTAL STEPS (Preset E) --- */
.ojo-horizontal-steps-section {
  border-top: 1px solid var(--ojo-border);
}

.ojo-steps-row-layout {
  display: flex;
  align-items: stretch;
  gap: 2rem;
}

.ojo-step-item-box {
  flex: 1;
  position: relative;
  padding: 3rem 1.5rem 1.5rem 1.5rem;
}

.ojo-step-bg-number {
  position: absolute;
  top: -1.5rem;
  left: 1rem;
  font-family: var(--font-display);
  font-size: 6.5rem;
  font-weight: 700;
  color: var(--ojo-surface);
  line-height: 1;
  z-index: 1;
}

.ojo-step-inner-content {
  position: relative;
  z-index: 2;
}

.ojo-step-title {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: var(--ojo-ink);
}

.ojo-step-text {
  font-size: 0.95rem;
}

.ojo-step-divider {
  width: 1px;
  background-color: var(--ojo-border);
  align-self: stretch;
}

/* --- CTA STRIP (Preset E Editorial) --- */
.ojo-editorial-cta-strip {
  border-top: 1px solid var(--ojo-border);
}

.ojo-cta-inner-block {
  background-color: var(--ojo-surface);
  padding: 5rem 3rem;
  text-align: center;
  max-width: 950px;
  margin: 0 auto;
  border-radius: var(--ojo-radius);
}

.ojo-cta-inner-block .ojo-editorial-heading-medium {
  margin-bottom: 1.25rem;
}

.ojo-cta-lead-text {
  max-width: 650px;
  margin: 0 auto 2.5rem auto;
  font-size: 1.1rem;
}

/* --- EXPERT PAGE SPECIFIC STYLES --- */
.ojo-minimal-hero-expert {
  border-bottom: 1px solid var(--ojo-border);
  padding: 12dvh 1.5rem 8dvh 1.5rem;
  text-align: center;
}

.ojo-minimal-hero-inner {
  max-width: 800px;
  margin: 0 auto;
}

.ojo-minimal-hero-inner .ojo-editorial-heading-large {
  margin-bottom: 1.5rem;
}

/* Stats counter strip - 4 custom cards */
.ojo-stats-counter-strip {
  background-color: var(--ojo-surface);
  border-bottom: 1px solid var(--ojo-border);
  padding: 4rem 1.5rem;
}

.ojo-stats-grid-row {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.ojo-stat-card-item {
  display: flex;
  flex-direction: column;
}

.ojo-stat-big-number {
  font-family: var(--font-display);
  font-size: 3.5rem;
  color: var(--ojo-clay);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.ojo-stat-label {
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ojo-ink-muted);
}

.ojo-alternating-rows-expert {
  display: flex;
  flex-direction: column;
  gap: 7dvh;
}

.ojo-row-reverse-desktop {
  flex-direction: row-reverse;
}

/* --- RESERVE/BOOKING PAGE STYLES --- */
.ojo-reserve-highlights-strip {
  padding-bottom: 2dvh;
}

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

.ojo-highlight-block-item {
  border-top: 3px solid var(--ojo-clay);
  padding-top: 2rem;
}

.ojo-highlight-block-title {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.ojo-highlight-block-text {
  font-size: 0.95rem;
}

/* Booking Form Styles */
.ojo-editorial-form-section {
  border-top: 1px solid var(--ojo-border);
  padding-top: 8dvh;
}

.ojo-form-card-container {
  max-width: 700px;
  margin: 0 auto;
  background-color: var(--ojo-surface);
  padding: 4rem 3.5rem;
  border-radius: var(--ojo-radius);
  border: 1px solid var(--ojo-border);
}

.ojo-form-lead-explanation {
  margin-bottom: 3rem;
}

.ojo-editorial-booking-form {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.ojo-form-input-wrapper {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.ojo-form-field-label {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--ojo-ink);
}

.ojo-form-text-input,
.ojo-form-textarea-input {
  width: 100%;
  background-color: var(--ojo-bg);
  border: 1px solid var(--ojo-border);
  border-radius: var(--ojo-radius);
  padding: 1rem 1.25rem;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--ojo-ink);
  transition: border-color 0.25s ease;
}

.ojo-form-text-input:focus,
.ojo-form-textarea-input:focus {
  outline: none;
  border-color: var(--ojo-clay);
}

.ojo-form-textarea-input {
  min-height: 120px;
  resize: vertical;
}

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

.ojo-form-check-element {
  margin-top: 0.25rem;
  cursor: pointer;
  accent-color: var(--ojo-clay);
}

.ojo-form-check-label {
  font-size: 0.85rem;
  color: var(--ojo-ink-muted);
  line-height: 1.45;
}

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

.ojo-contact-email-box {
  margin-top: 3rem;
  border-top: 1px dashed var(--ojo-border);
  padding-top: 2rem;
  text-align: center;
}

.ojo-contact-hint {
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.ojo-contact-mail-link {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--ojo-clay);
  text-decoration: none;
  font-weight: 700;
  transition: color 0.25s ease;
}

.ojo-contact-mail-link:hover {
  color: var(--ojo-clay-hover);
}

/* Editorial FAQ Section (All open, design focused) */
.ojo-editorial-faq-section {
  border-top: 1px solid var(--ojo-border);
}

.ojo-faq-editorial-list {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.ojo-faq-article-item {
  border-bottom: 1px solid var(--ojo-border);
  padding-bottom: 2.25rem;
}

.ojo-faq-item-question {
  font-size: 1.45rem;
  color: var(--ojo-ink);
  margin-bottom: 1rem;
}

.ojo-faq-item-answer {
  font-size: 1rem;
  line-height: 1.55;
}

/* --- LEGAL & DOCUMENT PAGES --- */
.ojo-legal-document-wrapper {
  padding-top: 6dvh;
}

.ojo-legal-content-box {
  max-width: 850px;
  margin: 0 auto;
}

.ojo-legal-main-title {
  font-size: 3rem;
  margin-bottom: 0.5rem;
}

.ojo-legal-meta-update {
  font-size: 0.9rem;
  font-style: italic;
  color: var(--ojo-ink-muted);
  margin-bottom: 3rem;
}

.ojo-legal-subtitle {
  font-size: 1.75rem;
  margin: 3.5rem 0 1.25rem 0;
  border-bottom: 2px solid var(--ojo-surface);
  padding-bottom: 0.5rem;
}

.ojo-legal-paragraph {
  margin-bottom: 1.75rem;
  font-size: 1.05rem;
  line-height: 1.75;
}

/* --- THANK YOU CONFIRMATION PAGE --- */
.ojo-thank-you-layout {
  padding-top: 6dvh;
  padding-bottom: 10dvh;
}

.ojo-thank-inner-row {
  display: flex;
  align-items: center;
  gap: 5rem;
}

.ojo-thank-image-half {
  flex: 0 0 45%;
}

.ojo-thank-fluid-img {
  width: 100%;
  height: 550px;
  object-fit: cover;
  border-radius: var(--ojo-radius);
}

.ojo-thank-text-half {
  flex: 1;
}

.ojo-thank-lead {
  font-size: 1.35rem;
  color: var(--ojo-ink);
  margin-bottom: 1.5rem;
  line-height: 1.45;
}

.ojo-thank-subtext {
  font-size: 1.05rem;
  color: var(--ojo-ink-muted);
  margin-bottom: 2.5rem;
}

.ojo-thank-action-bar {
  display: flex;
}

/* --- FOOTER SECTION --- */
.ojo-editorial-footer {
  background-color: var(--ojo-surface);
  border-top: 1px solid var(--ojo-border);
  padding: 6rem 1.5rem 3rem 1.5rem;
}

.ojo-footer-main-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 4rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid var(--ojo-border);
}

.ojo-footer-about-col .ojo-brand-wrapper {
  margin-bottom: 1.5rem;
}

.ojo-footer-tagline {
  font-size: 0.95rem;
  max-width: 280px;
}

.ojo-footer-heading {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ojo-ink);
  margin-bottom: 1.5rem;
}

.ojo-footer-nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.ojo-footer-nav-list a {
  text-decoration: none;
  color: var(--ojo-ink-muted);
  font-size: 0.95rem;
  transition: color 0.25s ease;
}

.ojo-footer-nav-list a:hover {
  color: var(--ojo-clay);
}

.ojo-footer-bottom-bar {
  max-width: 1200px;
  margin: 3rem auto 0 auto;
}

.ojo-footer-disclaimer {
  font-size: 0.8rem;
  color: var(--ojo-ink-muted);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  text-align: justify;
}

.ojo-copyright {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--ojo-ink-muted);
}

/* --- COOKIE CONSENT BANNER --- */
.ojo-cookie-banner-wrapper {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--ojo-ink);
  color: #ffffff;
  padding: 1.5rem 0;
  z-index: 9999;
  border-top: 2px solid var(--ojo-clay);
}

.ojo-cookie-inner-box {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 1.5rem;
  gap: 3rem;
}

.ojo-cookie-text {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.5;
}

.ojo-cookie-action-buttons {
  display: flex;
  gap: 1.25rem;
  flex-shrink: 0;
}

.ojo-cookie-btn-primary {
  background-color: var(--ojo-clay);
  color: #ffffff;
  border: none;
  padding: 0.65rem 1.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: var(--ojo-radius);
  cursor: pointer;
  transition: background-color 0.25s ease;
}

.ojo-cookie-btn-primary:hover {
  background-color: var(--ojo-clay-hover);
}

.ojo-cookie-btn-secondary {
  background-color: transparent;
  color: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 0.65rem 1.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: var(--ojo-radius);
  cursor: pointer;
  transition: all 0.25s ease;
}

.ojo-cookie-btn-secondary:hover {
  color: #ffffff;
  border-color: #ffffff;
}

/* --- RESPONSIVE MEDIA QUERIES (320px to 1440px target layout adjustments) --- */

@media (max-width: 1024px) {
  .ojo-split-magazine-row {
    gap: 2.5rem;
  }
  .ojo-magazine-fluid-img {
    height: 400px;
  }
  .ojo-hero-main-title {
    font-size: 2.35rem;
  }
  .ojo-editorial-heading-large {
    font-size: 2.75rem;
  }
  .ojo-magazine-grid-layout {
    grid-template-columns: 1fr;
  }
  .ojo-grid-card-large {
    min-height: 380px;
  }
}

@media (max-width: 768px) {
  /* Header burger activation */
  .ojo-menu-trigger {
    display: flex;
  }
  
  .ojo-nav-menu {
    position: fixed;
    top: 73px;
    left: 0;
    width: 100%;
    background-color: var(--ojo-bg);
    border-bottom: 1px solid var(--ojo-border);
    padding: 2.5rem 1.5rem;
    transform: translateY(-110%);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 999;
  }

  .ojo-nav-list {
    flex-direction: column;
    width: 100%;
    align-items: center;
    gap: 1.75rem;
  }

  .ojo-menu-checkbox:checked ~ .ojo-nav-menu {
    transform: translateY(0);
  }

  .ojo-menu-checkbox:checked ~ .ojo-menu-trigger span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .ojo-menu-checkbox:checked ~ .ojo-menu-trigger span:nth-child(2) {
    opacity: 0;
  }

  .ojo-menu-checkbox:checked ~ .ojo-menu-trigger span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  /* Structural splits to single column */
  .ojo-hero-editorial {
    grid-template-columns: 1fr;
  }
  
  .ojo-hero-accent-side {
    display: none;
  }

  .ojo-hero-main-side {
    padding: 4rem 1.5rem;
  }

  .ojo-hero-content-box {
    padding: 2rem;
  }

  .ojo-split-magazine-row,
  .ojo-row-reverse-desktop {
    flex-direction: column;
    gap: 2rem;
  }

  .ojo-magazine-img-col {
    width: 100%;
  }

  .ojo-magazine-fluid-img {
    height: 320px;
  }

  .ojo-steps-row-layout {
    flex-direction: column;
    gap: 3rem;
  }

  .ojo-step-divider {
    height: 1px;
    width: 100%;
  }

  .ojo-stats-grid-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }

  .ojo-highlights-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .ojo-form-card-container {
    padding: 2.5rem 1.5rem;
  }

  .ojo-thank-inner-row {
    flex-direction: column;
    gap: 3rem;
  }

  .ojo-thank-image-half {
    width: 100%;
  }

  .ojo-thank-fluid-img {
    height: 300px;
  }

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

  .ojo-cookie-inner-box {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }
}

@media (max-width: 480px) {
  .ojo-hero-main-title {
    font-size: 1.85rem;
  }
  .ojo-editorial-heading-medium {
    font-size: 1.75rem;
  }
  .ojo-stats-grid-row {
    grid-template-columns: 1fr;
  }
  .ojo-cookie-action-buttons {
    width: 100%;
    flex-direction: column;
  }
}