@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Mulish:ital,wght@0,300..900;1,300..900&display=swap');

:root {
  --sight-cream: #faf7f2;
  --sight-sand: #f0e6d6;
  --sight-emerald: #1e3f20;
  --sight-emerald-hover: #132b15;
  --sight-emerald-light: #e6ede8;
  --sight-charcoal: #141f16;
  --sight-muted: #556257;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Mulish', sans-serif;
  
  --spacing-compact: 6dvh;
  --spacing-normal: 10dvh;
  --spacing-spacious: 16dvh;
  
  --radius-soft: 14px;
  --shadow-raised: 0 10px 30px rgba(30, 63, 32, 0.08), 0 1px 3px rgba(30, 63, 32, 0.02);
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

body {
  font-family: var(--font-body);
  background-color: var(--sight-cream);
  color: var(--sight-charcoal);
  line-height: 1.625;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-smooth);
}

/* Scroll-driven Progress Bar & Reveals */
.scroll-progress-indicator {
  height: 4px;
  background-color: var(--sight-emerald);
  width: 0%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10001;
  animation: progress-grow linear;
  animation-timeline: scroll();
}

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

.reveal-section {
  animation: fade-slide-up both;
  animation-timeline: view();
  animation-range: entry 10% entry 30%;
}

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

/* Header (Preset E - Magazine style) */
.editorial-head-bar {
  background-color: var(--sight-cream);
  border-bottom: 1px solid var(--sight-sand);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 1.25rem 2rem;
}

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

.editorial-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-display);
  font-size: 1.625rem;
  font-weight: 800;
  color: var(--sight-emerald);
}

.editorial-brand svg {
  fill: none;
  stroke: var(--sight-emerald);
  stroke-width: 1.5;
  width: 28px;
  height: 28px;
}

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

.editorial-nav-list {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.editorial-nav-list a {
  font-size: 0.95rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--sight-muted);
}

.editorial-nav-list a:hover,
.editorial-nav-list a.active {
  color: var(--sight-emerald);
}

/* CSS-only Hamburger Menu */
.editorial-hamburger-trigger {
  display: none;
}

.editorial-burger-icon {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  z-index: 1002;
}

.editorial-burger-icon span {
  display: block;
  width: 28px;
  height: 2px;
  background-color: var(--sight-emerald);
  transition: var(--transition-smooth);
}

/* Hero Section (Preset E - Editorial Split) */
.view-hero-editorial {
  display: flex;
  min-height: calc(100vh - 75px);
  background-color: var(--sight-cream);
  position: relative;
  overflow: hidden;
}

.view-hero-vertical-tag {
  width: 10%;
  background-color: var(--sight-emerald);
  color: var(--sight-cream);
  display: flex;
  align-items: center;
  justify-content: center;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-size: 1.1rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 2rem 0;
  border-right: 1px solid rgba(250, 247, 242, 0.1);
}

.view-hero-visual-part {
  width: 90%;
  position: relative;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
}

.view-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, rgba(250, 247, 242, 0.96) 35%, rgba(250, 247, 242, 0.6) 100%);
  z-index: 1;
}

.view-hero-content-inner {
  position: relative;
  z-index: 2;
  max-width: 720px;
  padding: 4rem;
}

.view-hero-content-inner h1 {
  font-size: clamp(2.5rem, 4.5vw, 4rem);
  line-height: 1.15;
  margin-bottom: 1.5rem;
}

.view-hero-content-inner p {
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
  max-width: 600px;
}

/* Buttons */
.emerald-action-trigger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--sight-emerald);
  color: var(--sight-cream) !important;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 1.125rem 2.5rem;
  border-radius: var(--radius-soft);
  box-shadow: var(--shadow-raised);
  border: 1px solid transparent;
}

.emerald-action-trigger:hover {
  background-color: var(--sight-emerald-hover);
  transform: translateY(-2px);
}

.ghost-action-trigger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--sight-emerald);
  color: var(--sight-emerald) !important;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 1.125rem 2.5rem;
  border-radius: var(--radius-soft);
}

.ghost-action-trigger:hover {
  background-color: var(--sight-emerald);
  color: var(--sight-cream) !important;
}

/* Pull Quote Block (Preset E) */
.sight-quote-strip {
  background-color: var(--sight-sand);
  padding: var(--spacing-compact) 2rem;
  text-align: center;
  position: relative;
}

.sight-quote-text {
  max-width: 900px;
  margin: 0 auto;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.5vw, 2.1rem);
  font-style: italic;
  font-weight: 500;
  line-height: 1.4;
  color: var(--sight-emerald);
  position: relative;
  padding: 0 2.5rem;
}

.sight-quote-text::before,
.sight-quote-text::after {
  content: '"';
  font-size: 4.5rem;
  font-family: var(--font-display);
  color: rgba(30, 63, 32, 0.15);
  position: absolute;
  top: -2rem;
}

.sight-quote-text::before {
  left: -0.5rem;
}

.sight-quote-text::after {
  right: -0.5rem;
}

/* Content Splits */
.sight-split-panel {
  display: flex;
  align-items: center;
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: var(--spacing-normal) 2rem;
}

.sight-split-panel.reverse-order {
  flex-direction: row-reverse;
}

.sight-split-fig {
  flex: 1;
  max-height: 520px;
  overflow: hidden;
  border-radius: var(--radius-soft);
  box-shadow: var(--shadow-raised);
}

.sight-split-fig img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.sight-split-fig img:hover {
  transform: scale(1.05);
}

.sight-split-desc {
  flex: 1.2;
}

.sight-split-desc h2 {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  margin-bottom: 1.5rem;
}

.sight-split-desc p {
  margin-bottom: 1.5rem;
}

/* Features Editorial Bento Grid (Preset E) */
.sight-bento-section {
  background-color: var(--sight-emerald-light);
  padding: var(--spacing-normal) 2rem;
}

.sight-bento-container {
  max-width: 1200px;
  margin: 0 auto;
}

.sight-bento-container h2 {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  text-align: center;
  margin-bottom: 3.5rem;
}

.sight-bento-journal {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2.5rem;
}

.sight-journal-wide-card {
  position: relative;
  border-radius: var(--radius-soft);
  overflow: hidden;
  min-height: 480px;
  display: flex;
  align-items: flex-end;
  box-shadow: var(--shadow-raised);
}

.sight-journal-wide-card img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.sight-journal-wide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(30, 63, 32, 0) 30%, rgba(30, 63, 32, 0.85) 100%);
  z-index: 2;
}

.sight-journal-wide-content {
  position: relative;
  z-index: 3;
  padding: 3rem;
  color: var(--sight-cream);
}

.sight-journal-wide-content h3 {
  color: var(--sight-cream);
  font-size: 1.85rem;
  margin-bottom: 1rem;
}

.sight-journal-wide-content p {
  color: rgba(250, 247, 242, 0.85);
}

.sight-journal-narrow-col {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.sight-journal-text-card {
  background-color: var(--sight-cream);
  border-top: 4px solid var(--sight-emerald);
  padding: 2.5rem;
  border-radius: var(--radius-soft);
  box-shadow: var(--shadow-raised);
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.sight-journal-text-card svg {
  width: 44px;
  height: 44px;
  stroke: var(--sight-emerald);
  fill: none;
  stroke-width: 1.5;
  flex-shrink: 0;
}

.sight-journal-card-body h3 {
  font-size: 1.45rem;
  margin-bottom: 0.75rem;
}

/* Steps Block (Preset E) */
.sight-steps-strip {
  padding: var(--spacing-normal) 2rem;
  background-color: var(--sight-cream);
}

.sight-steps-container {
  max-width: 1200px;
  margin: 0 auto;
}

.sight-steps-container h2 {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  text-align: center;
  margin-bottom: 4rem;
}

.sight-steps-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}

.sight-step-box {
  position: relative;
  padding-right: 1rem;
}

.sight-step-box:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 15%;
  right: -1.5rem;
  height: 70%;
  width: 1px;
  background-color: var(--sight-sand);
}

.sight-step-bg-num {
  font-family: var(--font-display);
  font-size: 6.5rem;
  font-weight: 800;
  line-height: 1;
  color: var(--sight-emerald);
  opacity: 0.08;
  position: absolute;
  top: -2rem;
  left: 0;
  z-index: 1;
}

.sight-step-cnt {
  position: relative;
  z-index: 2;
  margin-top: 2rem;
}

.sight-step-cnt h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

/* Stats (Expert) */
.sight-numbers-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: var(--spacing-compact) 2rem;
  text-align: center;
}

.sight-num-card {
  background-color: var(--sight-sand);
  padding: 2.5rem 1.5rem;
  border-radius: var(--radius-soft);
}

.sight-num-card strong {
  display: block;
  font-family: var(--font-display);
  font-size: 3.5rem;
  color: var(--sight-emerald);
  line-height: 1.1;
  margin-bottom: 0.5rem;
}

.sight-num-card span {
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
  color: var(--sight-muted);
}

/* CTA Strip (Preset E) */
.editorial-cta-strip {
  background-color: var(--sight-sand);
  padding: var(--spacing-normal) 2rem;
  text-align: center;
}

.editorial-cta-content {
  max-width: 800px;
  margin: 0 auto;
}

.editorial-cta-heading {
  font-size: clamp(2.2rem, 4vw, 3.25rem);
  margin-bottom: 1.5rem;
}

.editorial-cta-content p {
  font-size: 1.2rem;
  margin-bottom: 2.5rem;
}

/* Reserve layout (Preset E) */
.editorial-reserve-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: var(--spacing-normal) 2rem 0;
}

.editorial-reserve-info {
  background-color: var(--sight-cream);
  border-top: 3px solid var(--sight-emerald);
  padding: 2.5rem 2rem;
  border-radius: var(--radius-soft);
  box-shadow: var(--shadow-raised);
}

.editorial-reserve-info h3 {
  font-size: 1.35rem;
  margin-bottom: 1rem;
}

.editorial-reserve-info p {
  font-size: 0.98rem;
  margin-bottom: 1.25rem;
}

.editorial-bullets {
  list-style: none;
}

.editorial-bullets li {
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
}

.editorial-bullets li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--sight-emerald);
  font-weight: bold;
}

/* Form Styles */
.editorial-form-section {
  padding: var(--spacing-normal) 2rem;
}

.editorial-form-wrap {
  max-width: 700px;
  margin: 0 auto;
  background-color: var(--sight-cream);
  padding: 4rem;
  border-radius: var(--radius-soft);
  box-shadow: var(--shadow-raised);
  border: 1px solid var(--sight-sand);
}

.editorial-form-wrap h2 {
  font-size: 2.25rem;
  margin-bottom: 1rem;
  text-align: center;
}

.editorial-form-wrap p {
  text-align: center;
  margin-bottom: 3rem;
}

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

.editorial-form-group label {
  display: block;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 700;
  margin-bottom: 0.65rem;
  color: var(--sight-emerald);
}

.editorial-input-field {
  width: 100%;
  padding: 1.15rem;
  border: 1px solid var(--sight-sand);
  background-color: #fff;
  border-radius: var(--radius-soft);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: var(--transition-smooth);
}

.editorial-input-field:focus {
  outline: none;
  border-color: var(--sight-emerald);
}

.editorial-check-label {
  display: flex;
  gap: 1rem;
  font-size: 0.9rem;
  color: var(--sight-muted);
  cursor: pointer;
  align-items: flex-start;
}

.editorial-check-label input {
  margin-top: 0.25rem;
  accent-color: var(--sight-emerald);
}

/* FAQ (Preset E) */
.editorial-faq-section {
  padding: var(--spacing-normal) 2rem;
  background-color: var(--sight-emerald-light);
}

.editorial-faq-container {
  max-width: 900px;
  margin: 0 auto;
}

.editorial-faq-container h2 {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 3.5rem;
}

.editorial-faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.editorial-faq-item {
  background-color: var(--sight-cream);
  padding: 2rem;
  border-radius: var(--radius-soft);
  box-shadow: var(--shadow-raised);
}

.editorial-faq-question {
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
}

/* Policy & Legal / General Styling */
.legal-framework-body {
  max-width: 800px;
  margin: 0 auto;
  padding: var(--spacing-normal) 2rem;
}

.legal-framework-body h1 {
  font-size: 3rem;
  margin-bottom: 2rem;
  text-align: center;
}

.legal-framework-body h2 {
  font-size: 1.75rem;
  margin-top: 3rem;
  margin-bottom: 1rem;
}

.legal-framework-body p {
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
}

/* Cookie Banner */
.regulatory-cookie-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--sight-charcoal);
  color: var(--sight-cream);
  padding: 1.5rem 2rem;
  z-index: 9999;
  box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.25);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.regulatory-cookie-text {
  font-size: 0.95rem;
  color: rgba(250, 247, 242, 0.9);
}

.regulatory-cookie-actions {
  display: flex;
  gap: 1rem;
}

.regulatory-btn-accept {
  background-color: var(--sight-cream);
  color: var(--sight-charcoal);
  border: none;
  padding: 0.75rem 2rem;
  border-radius: var(--radius-soft);
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.regulatory-btn-accept:hover {
  background-color: var(--sight-sand);
}

.regulatory-btn-decline {
  background-color: transparent;
  color: var(--sight-cream);
  border: 1px solid rgba(250, 247, 242, 0.3);
  padding: 0.75rem 2rem;
  border-radius: var(--radius-soft);
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.regulatory-btn-decline:hover {
  background-color: rgba(250, 247, 242, 0.1);
}

/* Footer & Disclaimer */
.editorial-footer {
  background-color: var(--sight-emerald);
  color: var(--sight-cream);
  padding: 5rem 2rem 3rem;
}

.editorial-footer-container {
  max-width: 1200px;
  margin: 0 auto;
}

.editorial-footer-layout {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 3rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(250, 247, 242, 0.15);
}

.editorial-footer-branding h3 {
  font-family: var(--font-display);
  font-size: 2.25rem;
  color: var(--sight-cream);
  margin-bottom: 1.5rem;
}

.editorial-footer-nav {
  display: flex;
  gap: 4rem;
}

.editorial-footer-col h4 {
  font-family: var(--font-body);
  color: var(--sight-sand);
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
}

.editorial-footer-col ul {
  list-style: none;
}

.editorial-footer-col ul li {
  margin-bottom: 0.75rem;
}

.editorial-footer-col ul li a {
  color: rgba(250, 247, 242, 0.75);
  font-size: 0.95rem;
}

.editorial-footer-col ul li a:hover {
  color: var(--sight-cream);
}

.editorial-footer-bottom {
  padding-top: 3rem;
  text-align: center;
}

.editorial-disclaimer-text {
  font-size: 0.85rem;
  color: rgba(250, 247, 242, 0.65);
  margin-bottom: 2rem;
  line-height: 1.5;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.editorial-copyright {
  font-size: 0.85rem;
  color: rgba(250, 247, 242, 0.5);
}

/* Mobile responsive fixes */
@media (max-width: 991px) {
  .editorial-reserve-grid {
    grid-template-columns: 1fr;
  }
  .sight-split-panel {
    flex-direction: column !important;
    gap: 2.5rem;
  }
  .sight-bento-journal {
    grid-template-columns: 1fr;
  }
  .sight-steps-track {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }
  .sight-step-box::after {
    display: none;
  }
  .sight-numbers-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .editorial-burger-icon {
    display: flex;
  }
  
  .editorial-nav-list {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 75px;
    left: 0;
    right: 0;
    background-color: var(--sight-cream);
    padding: 2.5rem;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    border-top: 1px solid var(--sight-sand);
    gap: 1.5rem;
    text-align: center;
  }

  .editorial-hamburger-trigger:checked ~ .editorial-nav-list {
    display: flex;
  }

  .editorial-hamburger-trigger:checked ~ .editorial-burger-icon span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
  }

  .editorial-hamburger-trigger:checked ~ .editorial-burger-icon span:nth-child(2) {
    opacity: 0;
  }

  .editorial-hamburger-trigger:checked ~ .editorial-burger-icon span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
  }

  .view-hero-editorial {
    flex-direction: column;
  }

  .view-hero-vertical-tag {
    writing-mode: horizontal-tb;
    width: 100%;
    height: auto;
    padding: 0.75rem;
    font-size: 0.85rem;
    text-align: center;
  }

  .view-hero-visual-part {
    width: 100%;
    min-height: 500px;
  }

  .view-hero-content-inner {
    padding: 2.5rem 1.5rem;
  }

  .sight-journal-wide-card {
    min-height: 380px;
  }

  .regulatory-cookie-bar {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
  }

  .regulatory-cookie-actions {
    width: 100%;
    justify-content: center;
  }

  .editorial-form-wrap {
    padding: 2rem 1.5rem;
  }

  .sight-numbers-row {
    grid-template-columns: 1fr;
  }
}