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

:root {
  --life-bg-tone: #fbf9f5;
  --life-surface-paper: #ffffff;
  --life-accent-green: #2d5a27;
  --life-accent-green-hover: #1f3f1b;
  --life-sand-border: #e2ded4;
  --life-editorial-ink: #1a221b;
  --life-muted-text: #59655b;
  --life-quote-bg: #f2ece1;
  --life-vertical-strip-bg: #2d5a27;
  --life-vertical-strip-ink: #fbf9f5;
  --life-editorial-gradient: linear-gradient(135deg, #2d5a27 0%, #1f3f1b 100%);
  --font-heading-editorial: 'Playfair Display', Georgia, serif;
  --font-body-editorial: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --life-radius: 4px;
}

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

html {
  scroll-behavior: smooth;
  background-color: var(--life-bg-tone);
  color: var(--life-editorial-ink);
  font-family: var(--font-body-editorial);
  font-size: 16px;
  line-height: 1.65;
}

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

/* Scroll Progress Line */
.scroll-progress-line {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background-color: var(--life-accent-green);
  width: 100%;
  transform-origin: 0 50%;
  animation: scrollProgress linear;
  animation-timeline: scroll();
  z-index: 1000;
}

@keyframes scrollProgress {
  0% { transform: scaleX(0); }
  100% { transform: scaleX(1); }
}

/* Scroll View Animations */
.editorial-reveal-box {
  animation: fadeInView linear forwards;
  animation-timeline: view();
  animation-range: entry 10% cover 30%;
}

@keyframes fadeInView {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Typography & General */
h1, h2, h3, h4 {
  font-family: var(--font-heading-editorial);
  color: var(--life-editorial-ink);
  font-weight: 700;
  line-height: 1.25;
}

p {
  color: var(--life-muted-text);
  margin-bottom: 1rem;
}

a {
  color: inherit;
  text-decoration: none;
}

/* Header Preset E: Magazine Style */
.mag-site-header {
  background-color: var(--life-surface-paper);
  border-bottom: 1px solid var(--life-sand-border);
  position: sticky;
  top: 0;
  z-index: 900;
}

.mag-header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 1.2rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mag-brand-mark {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.mag-brand-svg {
  width: 32px;
  height: 32px;
  fill: var(--life-accent-green);
}

.mag-brand-name {
  font-family: var(--font-heading-editorial);
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--life-editorial-ink);
}

/* Hamburger CSS-Only */
.mag-nav-toggle {
  display: none;
}

.mag-hamburger-label {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 26px;
  height: 18px;
  cursor: pointer;
}

.mag-hamburger-label span {
  display: block;
  height: 2px;
  width: 100%;
  background-color: var(--life-editorial-ink);
  transition: all 0.3s ease;
}

.mag-navigation-links {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}

.mag-nav-item {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--life-editorial-ink);
  letter-spacing: 0.03em;
  position: relative;
  transition: color 0.2s ease;
}

.mag-nav-item:hover {
  color: var(--life-accent-green);
}

.mag-nav-item::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0%;
  height: 2px;
  background-color: var(--life-accent-green);
  transition: width 0.25s ease;
}

.mag-nav-item:hover::after {
  width: 100%;
}

.mag-header-cta-link {
  border: 1px solid var(--life-accent-green);
  color: var(--life-accent-green);
  padding: 0.5rem 1.2rem;
  border-radius: var(--life-radius);
  font-weight: 600;
  font-size: 0.85rem;
  transition: all 0.25s ease;
}

.mag-header-cta-link:hover {
  background-color: var(--life-accent-green);
  color: var(--life-surface-paper);
}

/* Preset E Hero: Editorial Split */
.editorial-hero-split {
  display: flex;
  min-height: 82vh;
  border-bottom: 1px solid var(--life-sand-border);
}

.vertical-journal-strip {
  width: 32%;
  background-color: var(--life-vertical-strip-bg);
  color: var(--life-vertical-strip-ink);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.vertical-journal-text {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);
  font-family: var(--font-heading-editorial);
  font-size: 1.15rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  opacity: 0.9;
}

.editorial-hero-main {
  width: 68%;
  position: relative;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
}

.editorial-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(251,249,245,0.95) 0%, rgba(251,249,245,0.7) 60%, rgba(251,249,245,0.3) 100%);
}

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

.editorial-hero-tag {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--life-accent-green);
  font-weight: 600;
  margin-bottom: 1rem;
}

.editorial-hero-title {
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  line-height: 1.15;
  margin-bottom: 1.5rem;
}

.editorial-hero-desc {
  font-size: 1.15rem;
  color: var(--life-muted-text);
  margin-bottom: 2rem;
}

/* Standard Editorial Button */
.mag-editorial-btn {
  display: inline-block;
  border: 1px solid var(--life-accent-green);
  background-color: var(--life-accent-green);
  color: var(--life-surface-paper);
  padding: 0.9rem 2.2rem;
  font-family: var(--font-body-editorial);
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--life-radius);
  transition: all 0.25s ease;
  cursor: pointer;
}

.mag-editorial-btn:hover {
  background-color: var(--life-accent-green-hover);
  border-color: var(--life-accent-green-hover);
}

.mag-editorial-btn-outline {
  background-color: transparent;
  color: var(--life-accent-green);
  border: 1px solid var(--life-accent-green);
}

.mag-editorial-btn-outline:hover {
  background-color: var(--life-accent-green);
  color: var(--life-surface-paper);
}

/* Pull-Quote Block */
.pull-quote-section {
  background-color: var(--life-quote-bg);
  padding: 10dvh 2rem;
  text-align: center;
  border-top: 1px solid var(--life-sand-border);
  border-bottom: 1px solid var(--life-sand-border);
}

.pull-quote-inner {
  max-width: 860px;
  margin: 0 auto;
}

.pull-quote-text {
  font-family: var(--font-heading-editorial);
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  font-style: italic;
  color: var(--life-editorial-ink);
  line-height: 1.4;
  position: relative;
}

.pull-quote-text::before {
  content: "“";
  font-size: 4rem;
  color: var(--life-accent-green);
  display: block;
  line-height: 1;
  margin-bottom: -1rem;
}

.pull-quote-author {
  margin-top: 1.5rem;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--life-muted-text);
  font-weight: 600;
}

/* Feature Split Section (bg2.webp) */
.split-content-section {
  max-width: 1280px;
  margin: 0 auto;
  padding: 10dvh 2rem;
  display: flex;
  gap: 4rem;
  align-items: center;
}

.split-content-figure {
  flex: 0 0 45%;
  border-radius: var(--life-radius);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.04);
}

.split-content-img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}

.split-content-article {
  flex: 1;
}

.split-content-title {
  font-size: 2.2rem;
  margin-bottom: 1.2rem;
}

/* Magazine Mosaic Grid */
.magazine-mosaic-section {
  max-width: 1280px;
  margin: 0 auto;
  padding: 10dvh 2rem;
}

.magazine-mosaic-header {
  margin-bottom: 3rem;
  text-align: center;
}

.magazine-mosaic-title {
  font-size: 2.4rem;
}

.magazine-mosaic-grid {
  display: flex;
  gap: 2rem;
}

.magazine-feature-lead {
  flex: 0 0 50%;
  position: relative;
  min-height: 400px;
  background-size: cover;
  background-position: center;
  border-radius: var(--life-radius);
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}

.magazine-lead-overlay {
  background: linear-gradient(0deg, rgba(26,34,27,0.9) 0%, rgba(26,34,27,0.2) 70%, transparent 100%);
  padding: 2.5rem 2rem;
  color: #ffffff;
  width: 100%;
}

.magazine-lead-overlay h3 {
  color: #ffffff;
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
}

.magazine-lead-overlay p {
  color: #e2ded4;
  margin: 0;
  font-size: 0.95rem;
}

.magazine-feature-stack {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.magazine-stack-card {
  background-color: var(--life-surface-paper);
  padding: 1.8rem;
  border-top: 3px solid var(--life-accent-green);
  border-radius: var(--life-radius);
  box-shadow: 0 4px 12px rgba(0,0,0,0.02);
}

.magazine-stack-card h4 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.magazine-card-icon {
  width: 22px;
  height: 22px;
  fill: var(--life-accent-green);
}

/* Horizontal Steps Section */
.horizontal-steps-section {
  background-color: var(--life-surface-paper);
  border-top: 1px solid var(--life-sand-border);
  border-bottom: 1px solid var(--life-sand-border);
  padding: 10dvh 2rem;
}

.steps-container-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.steps-section-title {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 3.5rem;
}

.horizontal-steps-grid {
  display: flex;
  gap: 2rem;
}

.magazine-step-item {
  flex: 1;
  position: relative;
  padding-right: 1.5rem;
  border-right: 1px solid var(--life-sand-border);
}

.magazine-step-item:last-child {
  border-right: none;
  padding-right: 0;
}

.magazine-step-num {
  font-family: var(--font-heading-editorial);
  font-size: 5.5rem;
  line-height: 1;
  color: var(--life-editorial-ink);
  opacity: 0.1;
  position: absolute;
  top: -2.5rem;
  left: 0;
  font-weight: 700;
  user-select: none;
}

.magazine-step-content {
  position: relative;
  z-index: 2;
  padding-top: 2rem;
}

.magazine-step-content h4 {
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
}

/* Magazine CTA Strip */
.editorial-cta-strip {
  background-color: var(--life-quote-bg);
  padding: 10dvh 2rem;
  text-align: center;
}

.editorial-cta-inner {
  max-width: 760px;
  margin: 0 auto;
}

.editorial-cta-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.editorial-cta-desc {
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

/* Footer */
.mag-site-footer {
  background-color: var(--life-editorial-ink);
  color: #d1d8d2;
  padding: 5rem 2rem 2rem;
  margin-top: auto;
}

.mag-footer-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.mag-footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  gap: 2rem;
  flex-wrap: wrap;
}

.mag-footer-brand h3 {
  color: #ffffff;
  font-size: 1.5rem;
  margin-bottom: 0.8rem;
}

.mag-footer-brand p {
  color: #92a095;
  max-width: 380px;
  font-size: 0.9rem;
}

.mag-footer-nav {
  display: flex;
  gap: 2rem;
}

.mag-footer-link {
  color: #d1d8d2;
  font-size: 0.9rem;
  transition: color 0.2s ease;
}

.mag-footer-link:hover {
  color: #ffffff;
}

.mag-footer-disclaimer {
  padding: 2rem 0;
  font-size: 0.85rem;
  color: #839186;
  line-height: 1.6;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.mag-footer-bottom {
  padding-top: 1.5rem;
  text-align: center;
  font-size: 0.85rem;
  color: #839186;
}

/* Cookie Banner */
.editorial-cookie-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--life-editorial-ink);
  color: #ffffff;
  padding: 1.2rem 2rem;
  z-index: 9999;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
  display: none;
}

.editorial-cookie-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.editorial-cookie-text {
  font-size: 0.9rem;
  color: #d1d8d2;
  margin: 0;
}

.editorial-cookie-actions {
  display: flex;
  gap: 1rem;
  flex-shrink: 0;
}

.cookie-btn-accept {
  background-color: var(--life-accent-green);
  color: #ffffff;
  border: none;
  padding: 0.5rem 1.2rem;
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: var(--life-radius);
  cursor: pointer;
}

.cookie-btn-decline {
  background-color: transparent;
  color: #d1d8d2;
  border: 1px solid rgba(255,255,255,0.3);
  padding: 0.5rem 1.2rem;
  font-size: 0.85rem;
  border-radius: var(--life-radius);
  cursor: pointer;
}

/* Page Specific: Expert Page */
.expert-stats-row {
  max-width: 1280px;
  margin: 0 auto;
  padding: 4rem 2rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.expert-stat-card {
  background-color: var(--life-surface-paper);
  padding: 2rem 1rem;
  border: 1px solid var(--life-sand-border);
  border-radius: var(--life-radius);
}

.expert-stat-number {
  font-family: var(--font-heading-editorial);
  font-size: 3rem;
  font-weight: 700;
  color: var(--life-accent-green);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.expert-stat-label {
  font-size: 0.9rem;
  color: var(--life-muted-text);
  font-weight: 500;
}

.expert-narrative-section {
  max-width: 1280px;
  margin: 0 auto;
  padding: 4dvh 2rem 10dvh;
}

.expert-narrative-row {
  display: flex;
  align-items: center;
  gap: 4rem;
  margin-bottom: 6rem;
}

.expert-narrative-row.reverse {
  flex-direction: row-reverse;
}

.expert-narrative-img-wrap {
  flex: 0 0 48%;
  border-radius: var(--life-radius);
  overflow: hidden;
}

.expert-narrative-img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}

.expert-narrative-content {
  flex: 1;
}

.expert-narrative-content h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

/* Page Specific: Reserve Form Page */
.reserve-top-highlights {
  max-width: 1280px;
  margin: 0 auto;
  padding: 6dvh 2rem 2dvh;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.reserve-highlight-item {
  background-color: var(--life-surface-paper);
  padding: 2rem;
  border-top: 3px solid var(--life-accent-green);
  border-radius: var(--life-radius);
  box-shadow: 0 2px 8px rgba(0,0,0,0.02);
}

.reserve-highlight-item h3 {
  font-size: 1.25rem;
  margin-bottom: 0.8rem;
}

.reserve-form-shell {
  max-width: 720px;
  margin: 4dvh auto 8dvh;
  background-color: var(--life-surface-paper);
  padding: 3.5rem;
  border: 1px solid var(--life-sand-border);
  border-radius: var(--life-radius);
  box-shadow: 0 10px 30px rgba(0,0,0,0.03);
}

.reserve-form-shell h2 {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 0.5rem;
}

.reserve-form-shell > p {
  text-align: center;
  margin-bottom: 2.5rem;
}

.editorial-field-group {
  margin-bottom: 1.5rem;
}

.editorial-field-group label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--life-editorial-ink);
}

.editorial-input-text, .editorial-textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid var(--life-sand-border);
  border-radius: var(--life-radius);
  font-family: var(--font-body-editorial);
  font-size: 0.95rem;
  background-color: var(--life-bg-tone);
  transition: border-color 0.2s ease;
}

.editorial-input-text:focus, .editorial-textarea:focus {
  outline: none;
  border-color: var(--life-accent-green);
  background-color: var(--life-surface-paper);
}

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

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

.editorial-checkbox-group label {
  font-size: 0.85rem;
  color: var(--life-muted-text);
  line-height: 1.4;
}

.editorial-contact-direct {
  text-align: center;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--life-sand-border);
  font-size: 0.9rem;
}

.editorial-faq-section {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 2rem 10dvh;
}

.editorial-faq-title {
  font-size: 2.2rem;
  text-align: center;
  margin-bottom: 3rem;
}

.editorial-faq-item {
  border-bottom: 1px solid var(--life-sand-border);
  padding: 1.5rem 0;
}

.editorial-faq-question {
  font-family: var(--font-heading-editorial);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
  color: var(--life-editorial-ink);
}

.editorial-faq-answer {
  color: var(--life-muted-text);
  font-size: 0.95rem;
}

/* Legal / Static Pages Layout */
.editorial-legal-container {
  max-width: 900px;
  margin: 4rem auto;
  padding: 0 2rem;
  min-height: 60vh;
}

.editorial-legal-container h1 {
  font-size: 2.8rem;
  margin-bottom: 2rem;
  border-bottom: 2px solid var(--life-accent-green);
  padding-bottom: 1rem;
}

.editorial-legal-container h2 {
  font-size: 1.6rem;
  margin: 2.5rem 0 1rem;
}

.editorial-legal-container p {
  margin-bottom: 1.2rem;
  font-size: 1rem;
  line-height: 1.7;
}

/* Thank You Page */
.thank-you-wrapper {
  max-width: 760px;
  margin: 6rem auto;
  padding: 0 2rem;
  text-align: center;
  min-height: 50vh;
}

.thank-you-wrapper h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.thank-you-img {
  width: 100%;
  max-height: 350px;
  object-fit: cover;
  border-radius: var(--life-radius);
  margin: 2rem 0;
}

/* Responsive Media Queries */
@media (max-width: 1024px) {
  .editorial-hero-split {
    flex-direction: column;
  }
  .vertical-journal-strip {
    width: 100%;
    padding: 1rem;
  }
  .vertical-journal-text {
    writing-mode: horizontal-tb;
    transform: none;
    letter-spacing: 0.15em;
  }
  .editorial-hero-main {
    width: 100%;
  }
  .magazine-mosaic-grid {
    flex-direction: column;
  }
  .magazine-feature-lead {
    min-height: 300px;
  }
  .split-content-section, .expert-narrative-row, .expert-narrative-row.reverse {
    flex-direction: column;
    gap: 2rem;
  }
  .split-content-figure, .expert-narrative-img-wrap {
    width: 100%;
    flex: none;
  }
  .expert-stats-row {
    grid-template-columns: repeat(2, 1fr);
  }
  .horizontal-steps-grid {
    flex-direction: column;
    gap: 3rem;
  }
  .magazine-step-item {
    border-right: none;
    border-bottom: 1px solid var(--life-sand-border);
    padding-right: 0;
    padding-bottom: 2rem;
  }
  .magazine-step-item:last-child {
    border-bottom: none;
  }
}

@media (max-width: 768px) {
  .mag-hamburger-label {
    display: flex;
  }
  .mag-navigation-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--life-surface-paper);
    flex-direction: column;
    padding: 2rem;
    border-bottom: 1px solid var(--life-sand-border);
    gap: 1.5rem;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
  }
  .mag-nav-toggle:checked ~ .mag-navigation-links {
    display: flex;
  }
  .reserve-top-highlights {
    grid-template-columns: 1fr;
  }
  .expert-stats-row {
    grid-template-columns: 1fr;
  }
  .reserve-form-shell {
    padding: 2rem 1.5rem;
  }
  .editorial-cookie-inner {
    flex-direction: column;
    text-align: center;
  }
}