:root {
  --clarity-paper: #fbf9f5;
  --clarity-ink: #18191a;
  --clarity-accent-rust: #8e5538;
  --clarity-accent-rust-rgb: 142, 85, 56;
  --clarity-sage: #4e5e55;
  --clarity-parchment: #f3eee3;
  --clarity-charcoal: #2a2c2e;
  --clarity-white: #ffffff;
  --font-editorial-heading: 'Playfair Display', Georgia, serif;
  --font-editorial-body: 'Lora', Garamond, serif;
}

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

body {
  background-color: var(--clarity-paper);
  color: var(--clarity-ink);
  font-family: var(--font-editorial-body);
  font-size: 1.1rem;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Header & Navigation */
.editorial-navigation-bar {
  background-color: var(--clarity-paper);
  border-bottom: 1px solid var(--clarity-charcoal);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 1.5rem 2rem;
}

.editorial-nav-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.editorial-site-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--clarity-ink);
}

.editorial-site-logo svg {
  width: 32px;
  height: 32px;
  fill: var(--clarity-accent-rust);
}

.editorial-site-name {
  font-family: var(--font-editorial-heading);
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: -0.5px;
}

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

.nav-toggle-label {
  display: none;
  cursor: pointer;
  padding: 0.5rem;
}

.nav-toggle-label span {
  display: block;
  width: 25px;
  height: 2px;
  background-color: var(--clarity-ink);
  margin: 5px 0;
  transition: 0.3s;
}

.editorial-nav-menu {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}

.editorial-nav-link {
  text-decoration: none;
  color: var(--clarity-ink);
  font-family: var(--font-editorial-heading);
  font-size: 1.05rem;
  font-weight: 500;
  position: relative;
  padding: 0.25rem 0;
  transition: color 0.3s;
}

.editorial-nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--clarity-accent-rust);
  transition: width 0.3s;
}

.editorial-nav-link:hover {
  color: var(--clarity-accent-rust);
}

.editorial-nav-link:hover::after {
  width: 100%;
}

.editorial-nav-cta {
  background-color: var(--clarity-ink);
  color: var(--clarity-paper);
  padding: 0.75rem 1.75rem;
  border: 1px solid var(--clarity-ink);
  font-family: var(--font-editorial-heading);
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s;
}

.editorial-nav-cta:hover {
  background-color: transparent;
  color: var(--clarity-ink);
}

/* Base Sections Layout */
.editorial-section-viewport {
  padding: 12dvh 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

/* Animations (Scroll-driven fallback) */
@keyframes slide-up {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.reveal-fade-in {
  animation: slide-up 0.8s ease-out both;
}

/* Hero Split Design (Preset E) */
.editorial-vision-hero {
  display: flex;
  min-height: 85vh;
  border-bottom: 1px solid var(--clarity-charcoal);
  background-color: var(--clarity-parchment);
}

.editorial-hero-aside-stripe {
  width: 30%;
  background-color: var(--clarity-accent-rust);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clarity-paper);
  padding: 2rem;
}

.editorial-vertical-title {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);
  font-family: var(--font-editorial-heading);
  font-size: 3rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  font-weight: 300;
}

.editorial-hero-main-frame {
  width: 70%;
  position: relative;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  padding: 4rem;
}

.editorial-hero-dark-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(24, 25, 26, 0.45);
  z-index: 1;
}

.editorial-hero-content-envelope {
  position: relative;
  z-index: 2;
  color: var(--clarity-white);
  max-width: 650px;
}

.editorial-hero-subtitle {
  font-size: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 1.5rem;
  color: var(--clarity-parchment);
  font-family: var(--font-editorial-heading);
}

.editorial-hero-heading {
  font-family: var(--font-editorial-heading);
  font-size: 4rem;
  line-height: 1.15;
  margin-bottom: 2rem;
  font-weight: 700;
}

.editorial-hero-action-anchor {
  display: inline-block;
  background-color: var(--clarity-white);
  color: var(--clarity-ink);
  padding: 1rem 2.5rem;
  font-family: var(--font-editorial-heading);
  font-size: 1.1rem;
  text-decoration: none;
  font-weight: 600;
  border: 1px solid var(--clarity-white);
  transition: all 0.3s;
}

.editorial-hero-action-anchor:hover {
  background-color: transparent;
  color: var(--clarity-white);
}

/* Pull-Quote Component (Preset E) */
.editorial-quote-strip {
  background-color: var(--clarity-parchment);
  border-bottom: 1px solid var(--clarity-charcoal);
  padding: 8dvh 2rem;
  text-align: center;
}

.editorial-pull-quote-text {
  max-width: 1000px;
  margin: 0 auto;
  font-family: var(--font-editorial-heading);
  font-size: 2.2rem;
  font-style: italic;
  color: var(--clarity-accent-rust);
  line-height: 1.4;
  position: relative;
  padding: 1.5rem 0;
}

.editorial-pull-quote-text::before {
  content: '“';
  font-size: 6rem;
  position: absolute;
  top: -2rem;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0.15;
  font-family: serif;
}

/* Split Content Section */
.editorial-split-content-block {
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--clarity-charcoal);
  background-color: var(--clarity-paper);
}

.editorial-split-image-half {
  width: 45%;
  height: 600px;
  background-size: cover;
  background-position: center;
  border-right: 1px solid var(--clarity-charcoal);
}

.editorial-split-text-half {
  width: 55%;
  padding: 6rem;
}

.editorial-narrative-tag {
  font-size: 0.9rem;
  text-transform: uppercase;
  color: var(--clarity-accent-rust);
  letter-spacing: 2px;
  margin-bottom: 1rem;
  font-weight: 700;
}

.editorial-narrative-title {
  font-family: var(--font-editorial-heading);
  font-size: 2.8rem;
  line-height: 1.2;
  margin-bottom: 2rem;
}

.editorial-narrative-paragraph {
  margin-bottom: 1.5rem;
  color: var(--clarity-charcoal);
}

/* Magazine Bento Grid (Preset E) */
.magazine-bento-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid var(--clarity-charcoal);
}

.magazine-bento-card-large {
  position: relative;
  min-height: 500px;
  background-size: cover;
  background-position: center;
  border-right: 1px solid var(--clarity-charcoal);
  padding: 4rem;
  display: flex;
  align-items: flex-end;
}

.magazine-bento-card-large-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(24,25,26,0.1) 40%, rgba(24,25,26,0.85) 100%);
}

.magazine-bento-large-content {
  position: relative;
  z-index: 2;
  color: var(--clarity-white);
}

.magazine-bento-right-stack {
  display: flex;
  flex-direction: column;
}

.magazine-bento-card-small {
  padding: 4rem;
  border-bottom: 1px solid var(--clarity-charcoal);
  background-color: var(--clarity-paper);
  flex: 1;
}

.magazine-bento-card-small:last-child {
  border-bottom: none;
}

.bento-card-icon {
  width: 48px;
  height: 48px;
  fill: var(--clarity-accent-rust);
  margin-bottom: 1.5rem;
}

.bento-card-heading {
  font-family: var(--font-editorial-heading);
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

/* Horizontal Timeline Steps (Preset E) */
.editorial-steps-timeline-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid var(--clarity-charcoal);
  background-color: var(--clarity-parchment);
}

.editorial-step-column {
  padding: 5rem 3.5rem;
  border-right: 1px solid var(--clarity-charcoal);
  position: relative;
  overflow: hidden;
}

.editorial-step-column:last-child {
  border-right: none;
}

.editorial-step-giant-number {
  position: absolute;
  top: -2rem;
  right: -1rem;
  font-family: var(--font-editorial-heading);
  font-size: 10rem;
  font-weight: 900;
  color: var(--clarity-accent-rust);
  opacity: 0.08;
  line-height: 1;
  pointer-events: none;
}

.editorial-step-header {
  font-family: var(--font-editorial-heading);
  font-size: 1.6rem;
  margin-top: 2rem;
  margin-bottom: 1.25rem;
}

/* Editorial CTA Strip */
.editorial-cta-strip-block {
  padding: 10dvh 2rem;
  background-color: var(--clarity-parchment);
  border-bottom: 1px solid var(--clarity-charcoal);
  text-align: center;
}

.editorial-cta-heading {
  font-family: var(--font-editorial-heading);
  font-size: 3rem;
  margin-bottom: 1.5rem;
  color: var(--clarity-ink);
}

.editorial-cta-paragraph {
  max-width: 650px;
  margin: 0 auto 2.5rem;
  font-size: 1.2rem;
}

.editorial-cta-outline-button {
  display: inline-block;
  padding: 1rem 3rem;
  border: 1px solid var(--clarity-ink);
  color: var(--clarity-ink);
  font-family: var(--font-editorial-heading);
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s;
}

.editorial-cta-outline-button:hover {
  background-color: var(--clarity-ink);
  color: var(--clarity-paper);
}

/* Stats Layout */
.editorial-stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--clarity-charcoal);
  background-color: var(--clarity-paper);
}

.editorial-stat-unit {
  padding: 4rem 2rem;
  text-align: center;
  border-right: 1px solid var(--clarity-charcoal);
}

.editorial-stat-unit:last-child {
  border-right: none;
}

.editorial-stat-giant-num {
  font-family: var(--font-editorial-heading);
  font-size: 4rem;
  font-weight: 700;
  color: var(--clarity-accent-rust);
  margin-bottom: 0.5rem;
}

.editorial-stat-label {
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Reserve / FAQ Styles */
.reserve-editorial-intro-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid var(--clarity-charcoal);
}

.reserve-editorial-intro-item {
  padding: 4rem;
  border-right: 1px solid var(--clarity-charcoal);
}

.reserve-editorial-intro-item:last-child {
  border-right: none;
}

.reserve-editorial-intro-step {
  font-family: var(--font-editorial-heading);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.reserve-numbered-list {
  list-style: none;
  margin-top: 1.5rem;
}

.reserve-numbered-list li {
  margin-bottom: 0.5rem;
  padding-left: 1.5rem;
  position: relative;
}

.reserve-numbered-list li::before {
  content: "•";
  color: var(--clarity-accent-rust);
  font-size: 1.5rem;
  position: absolute;
  left: 0;
  top: -0.2rem;
}

.editorial-form-envelope {
  max-width: 700px;
  margin: 6rem auto;
  padding: 0 2rem;
}

.editorial-form-title {
  font-family: var(--font-editorial-heading);
  font-size: 2.8rem;
  text-align: center;
  margin-bottom: 3rem;
}

.editorial-form-element {
  margin-bottom: 2rem;
}

.editorial-form-label {
  display: block;
  font-family: var(--font-editorial-heading);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.editorial-form-field {
  width: 100%;
  padding: 1rem;
  border: 1px solid var(--clarity-ink);
  background-color: var(--clarity-parchment);
  font-family: var(--font-editorial-body);
  font-size: 1rem;
}

.editorial-form-field:focus {
  outline: none;
  border-color: var(--clarity-accent-rust);
}

.editorial-form-checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}

.editorial-form-checkbox-group input {
  margin-top: 0.35rem;
}

.editorial-form-checkbox-label {
  font-size: 0.95rem;
}

.editorial-form-submit-trigger {
  width: 100%;
  padding: 1.25rem;
  background-color: var(--clarity-ink);
  color: var(--clarity-paper);
  border: 1px solid var(--clarity-ink);
  font-family: var(--font-editorial-heading);
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}

.editorial-form-submit-trigger:hover {
  background-color: transparent;
  color: var(--clarity-ink);
}

.editorial-assistance-block {
  text-align: center;
  margin-top: 3rem;
  font-size: 1.05rem;
}

.editorial-assistance-block a {
  color: var(--clarity-accent-rust);
  text-decoration: none;
  font-weight: 600;
}

/* FAQ Accordion Styles */
.editorial-faq-envelope {
  border-top: 1px solid var(--clarity-charcoal);
  padding: 6rem 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.editorial-faq-section-title {
  font-family: var(--font-editorial-heading);
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 4rem;
}

.editorial-faq-item-block {
  border-bottom: 1px solid var(--clarity-light-gray);
  padding: 2rem 0;
}

.editorial-faq-item-block:last-child {
  border-bottom: none;
}

.editorial-faq-query {
  font-family: var(--font-editorial-heading);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--clarity-accent-rust);
}

.editorial-faq-resolution {
  font-size: 1.05rem;
  color: var(--clarity-charcoal);
}

/* Legal Pages */
.editorial-legal-envelope {
  max-width: 800px;
  margin: 6rem auto;
  padding: 0 2rem;
}

.editorial-legal-envelope h1 {
  font-family: var(--font-editorial-heading);
  font-size: 3rem;
  margin-bottom: 2rem;
}

.editorial-legal-envelope h2 {
  font-family: var(--font-editorial-heading);
  font-size: 1.8rem;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

.editorial-legal-envelope p {
  margin-bottom: 1.5rem;
  color: var(--clarity-charcoal);
}

/* Cookie Consent Banner */
.editorial-cookie-banner-wrapper {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--clarity-ink);
  color: var(--clarity-paper);
  padding: 1.5rem 2rem;
  z-index: 9999;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  border-top: 2px solid var(--clarity-accent-rust);
}

.editorial-cookie-banner-content {
  font-size: 0.95rem;
}

.editorial-cookie-banner-buttons {
  display: flex;
  gap: 1rem;
}

.editorial-cookie-banner-btn {
  padding: 0.5rem 1.5rem;
  font-family: var(--font-editorial-heading);
  font-size: 0.9rem;
  cursor: pointer;
  border: 1px solid var(--clarity-paper);
}

.editorial-cookie-banner-btn-accept {
  background-color: var(--clarity-paper);
  color: var(--clarity-ink);
}

.editorial-cookie-banner-btn-decline {
  background-color: transparent;
  color: var(--clarity-paper);
}

/* Footer Section */
.editorial-page-footer {
  background-color: var(--clarity-ink);
  color: var(--clarity-paper);
  padding: 6rem 2rem 3rem;
  border-top: 1px solid var(--clarity-charcoal);
}

.editorial-footer-envelope {
  max-width: 1400px;
  margin: 0 auto;
}

.editorial-footer-main-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 3rem;
  border-bottom: 1px solid var(--clarity-charcoal);
  padding-bottom: 4rem;
}

.editorial-footer-brand-column {
  max-width: 400px;
}

.editorial-footer-logo-wrap {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--clarity-paper);
  margin-bottom: 1.5rem;
}

.editorial-footer-logo-wrap svg {
  width: 36px;
  height: 36px;
  fill: var(--clarity-accent-rust);
}

.editorial-footer-headline {
  font-family: var(--font-editorial-heading);
  font-size: 1.8rem;
  font-weight: 700;
}

.editorial-footer-disclaimer {
  font-size: 0.9rem;
  color: var(--clarity-parchment);
  opacity: 0.7;
  line-height: 1.5;
}

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

.editorial-footer-link {
  color: var(--clarity-paper);
  text-decoration: none;
  font-size: 1rem;
  font-family: var(--font-editorial-heading);
  transition: color 0.3s;
}

.editorial-footer-link:hover {
  color: var(--clarity-accent-rust);
}

.editorial-footer-sub-row {
  margin-top: 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
  opacity: 0.6;
}

/* Responsive Styles */
@media (max-width: 991px) {
  .editorial-vision-hero {
    flex-direction: column;
  }
  
  .editorial-hero-aside-stripe {
    width: 100%;
    height: 80px;
    padding: 0;
  }
  
  .editorial-vertical-title {
    writing-mode: horizontal-tb;
    transform: none;
    font-size: 1.5rem;
    letter-spacing: 6px;
  }
  
  .editorial-hero-main-frame {
    width: 100%;
    min-height: 60vh;
    padding: 2.5rem;
  }
  
  .editorial-split-content-block {
    flex-direction: column;
  }
  
  .editorial-split-image-half {
    width: 100%;
    height: 400px;
    border-right: none;
    border-bottom: 1px solid var(--clarity-charcoal);
  }
  
  .editorial-split-text-half {
    width: 100%;
    padding: 3rem 1.5rem;
  }
  
  .magazine-bento-grid {
    grid-template-columns: 1fr;
  }
  
  .magazine-bento-card-large {
    border-right: none;
    border-bottom: 1px solid var(--clarity-charcoal);
  }
  
  .editorial-steps-timeline-grid {
    grid-template-columns: 1fr;
  }
  
  .editorial-step-column {
    border-right: none;
    border-bottom: 1px solid var(--clarity-charcoal);
    padding: 3.5rem 2rem;
  }
  
  .editorial-step-column:last-child {
    border-bottom: none;
  }
  
  .editorial-stats-row {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .editorial-stat-unit {
    border-bottom: 1px solid var(--clarity-charcoal);
  }
  
  .editorial-stat-unit:nth-child(2n) {
    border-right: none;
  }
  
  .editorial-stat-unit:nth-child(3),
  .editorial-stat-unit:nth-child(4) {
    border-bottom: none;
  }

  .reserve-editorial-intro-grid {
    grid-template-columns: 1fr;
  }

  .reserve-editorial-intro-item {
    border-right: none;
    border-bottom: 1px solid var(--clarity-charcoal);
    padding: 2.5rem 1.5rem;
  }

  .reserve-editorial-intro-item:last-child {
    border-bottom: none;
  }
}

@media (max-width: 767px) {
  .editorial-nav-container {
    position: relative;
  }

  .nav-toggle-label {
    display: block;
    z-index: 1001;
  }

  .editorial-nav-menu {
    position: absolute;
    top: 100%;
    left: -2rem;
    right: -2rem;
    background-color: var(--clarity-paper);
    border-bottom: 1px solid var(--clarity-charcoal);
    flex-direction: column;
    padding: 2rem;
    gap: 1.5rem;
    transform: translateY(-150%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease-in-out;
    z-index: 999;
  }

  .nav-toggle-checkbox:checked ~ .editorial-nav-menu {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav-toggle-checkbox:checked ~ .nav-toggle-label span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .nav-toggle-checkbox:checked ~ .nav-toggle-label span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle-checkbox:checked ~ .nav-toggle-label span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .editorial-hero-heading {
    font-size: 2.5rem;
  }

  .editorial-pull-quote-text {
    font-size: 1.6rem;
  }

  .editorial-narrative-title {
    font-size: 2rem;
  }

  .editorial-stats-row {
    grid-template-columns: 1fr;
  }

  .editorial-stat-unit {
    border-right: none;
    border-bottom: 1px solid var(--clarity-charcoal);
  }

  .editorial-stat-unit:last-child {
    border-bottom: none;
  }

  .editorial-cookie-banner-wrapper {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
    gap: 1rem;
  }
}