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

:root {
  --vitalesta-bg: #FAF8F5;
  --vitalesta-surface: #F0EDE6;
  --vitalesta-ink-dark: #1A231F;
  --vitalesta-ink-muted: #535E59;
  --vitalesta-glow-coral: #C96F53;
  --vitalesta-glow-sage: #3B594C;
  --vitalesta-white: #FFFFFF;
  --font-display: 'Playfair Display', serif;
  --font-body: 'Mulish', sans-serif;
  --editorial-gap: 16dvh;
}

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

body {
  background-color: var(--vitalesta-bg);
  color: var(--vitalesta-ink-dark);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.625;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  color: var(--vitalesta-ink-dark);
}

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

/* Animations & Scroll Effects */
@keyframes progress-grow {
  to { width: 100%; }
}

@keyframes slide-reveal {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.scroll-progress-line {
  position: fixed;
  top: 0;
  left: 0;
  height: 4px;
  width: 0;
  background: var(--vitalesta-glow-coral);
  z-index: 10000;
  animation: progress-grow linear;
  animation-timeline: scroll();
}

.reveal-on-scroll {
  animation: slide-reveal linear both;
  animation-timeline: view();
  animation-range: entry 10% entry 40%;
}

/* Header & Hamburger */
.mag-nav-wrapper {
  position: sticky;
  top: 0;
  background: var(--vitalesta-bg);
  border-bottom: 1px solid rgba(26, 35, 31, 0.1);
  padding: 1.5rem 2rem;
  z-index: 999;
}

.mag-nav-holder {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mag-nav-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
}

.mag-nav-brand svg {
  fill: var(--vitalesta-glow-sage);
}

.mag-nav-links-box {
  display: flex;
  gap: 2.5rem;
  font-weight: 500;
}

.mag-nav-link-item {
  position: relative;
  transition: color 0.3s ease;
}

.mag-nav-link-item::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--vitalesta-glow-coral);
  transition: width 0.3s ease;
}

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

.mag-hamburger-input {
  display: none;
}

.mag-hamburger-icon {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.mag-hamburger-icon span {
  width: 25px;
  height: 2px;
  background-color: var(--vitalesta-ink-dark);
}

/* Footer style */
.editorial-footer-block {
  background-color: var(--vitalesta-surface);
  padding: 6rem 2rem 3rem;
  border-top: 1px solid rgba(26, 35, 31, 0.1);
}

.editorial-footer-grid {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

.editorial-footer-left {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.editorial-footer-right {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

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

.editorial-footer-bottom {
  max-width: 1300px;
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid rgba(26, 35, 31, 0.1);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  text-align: center;
  font-size: 0.875rem;
  color: var(--vitalesta-ink-muted);
}

.editorial-disclaimer-p {
  font-style: italic;
  font-size: 0.9rem;
}

/* Hero Section (Magazine Editorial Split) */
.ed-hero-split {
  display: flex;
  min-height: 85vh;
  margin-bottom: var(--editorial-gap);
  border-bottom: 1px solid rgba(26, 35, 31, 0.1);
}

.ed-hero-left-ribbon {
  width: 15%;
  background-color: var(--vitalesta-glow-sage);
  color: var(--vitalesta-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.ed-hero-vertical-banner-text {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-family: var(--font-display);
  font-size: 1.75rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  font-weight: 600;
  transform: rotate(180deg);
}

.ed-hero-right-body {
  width: 85%;
  position: relative;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  padding: 4rem;
}

.ed-hero-right-body::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(250, 248, 245, 0.95) 40%, rgba(250, 248, 245, 0.4) 100%);
  z-index: 1;
}

.ed-hero-textContent {
  position: relative;
  z-index: 2;
  max-width: 650px;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.ed-hero-eyebrow {
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--vitalesta-glow-coral);
  font-weight: 700;
}

.ed-hero-main-h {
  font-size: 3.5rem;
  font-weight: 700;
}

.ed-hero-desc {
  font-size: 1.125rem;
  color: var(--vitalesta-ink-muted);
}

.vitalesta-action-trigger {
  align-self: flex-start;
  display: inline-block;
  padding: 1rem 2.5rem;
  background-color: var(--vitalesta-ink-dark);
  color: var(--vitalesta-bg);
  font-weight: 600;
  border: 1px solid var(--vitalesta-ink-dark);
  border-radius: 2px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  text-transform: uppercase;
  font-size: 0.875rem;
  letter-spacing: 1px;
}

.vitalesta-action-trigger:hover {
  background-color: transparent;
  color: var(--vitalesta-ink-dark);
}

.vitalesta-action-trigger-outline {
  align-self: flex-start;
  display: inline-block;
  padding: 1rem 2.5rem;
  background-color: transparent;
  color: var(--vitalesta-ink-dark);
  font-weight: 600;
  border: 1px solid var(--vitalesta-ink-dark);
  border-radius: 2px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  text-transform: uppercase;
  font-size: 0.875rem;
  letter-spacing: 1px;
}

.vitalesta-action-trigger-outline:hover {
  background-color: var(--vitalesta-ink-dark);
  color: var(--vitalesta-bg);
}

/* Pull-Quote Block */
.editorial-pullquote-stripe {
  background-color: var(--vitalesta-surface);
  padding: 6rem 2rem;
  text-align: center;
  margin-bottom: var(--editorial-gap);
  border-top: 1px solid rgba(26, 35, 31, 0.1);
  border-bottom: 1px solid rgba(26, 35, 31, 0.1);
}

.editorial-pullquote-p {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-style: italic;
  max-width: 900px;
  margin: 0 auto;
  color: var(--vitalesta-glow-sage);
  line-height: 1.4;
  position: relative;
}

.editorial-pullquote-p::before {
  content: '“';
  font-size: 5rem;
  position: absolute;
  top: -2.5rem;
  left: -2rem;
  opacity: 0.15;
}

.editorial-pullquote-p::after {
  content: '”';
  font-size: 5rem;
  position: absolute;
  bottom: -4rem;
  right: -2rem;
  opacity: 0.15;
}

/* Zig-Zag Content Section */
.vital-story-wrap {
  max-width: 1300px;
  margin: 0 auto var(--editorial-gap) auto;
  padding: 0 2rem;
}

.vital-story-row {
  display: flex;
  align-items: center;
  gap: 5rem;
  margin-bottom: 6rem;
}

.vital-story-row:last-child {
  margin-bottom: 0;
}

.vital-story-row-reversed {
  flex-direction: row-reverse;
}

.vital-story-img-col {
  width: 45%;
}

.vital-story-img-col img {
  width: 100%;
  height: auto;
  max-height: 550px;
  object-fit: cover;
  border-radius: 2px;
}

.vital-story-text-col {
  width: 55%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.vital-story-sup {
  font-size: 0.875rem;
  text-transform: uppercase;
  color: var(--vitalesta-glow-coral);
  font-weight: 700;
  letter-spacing: 2px;
}

.vital-story-h {
  font-size: 2.5rem;
  font-weight: 700;
}

.vital-story-desc {
  color: var(--vitalesta-ink-muted);
  font-size: 1.1rem;
}

/* Features Editorial Grid */
.mag-grid-section {
  max-width: 1300px;
  margin: 0 auto var(--editorial-gap) auto;
  padding: 0 2rem;
}

.mag-grid-header {
  margin-bottom: 4rem;
  text-align: center;
}

.mag-grid-header h2 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.mag-grid-header p {
  color: var(--vitalesta-ink-muted);
  max-width: 600px;
  margin: 0 auto;
}

.mag-grid-container {
  display: flex;
  gap: 3rem;
}

.mag-grid-large-box {
  width: 50%;
  position: relative;
  min-height: 450px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 3rem;
  color: var(--vitalesta-white);
  border-radius: 2px;
  overflow: hidden;
}

.mag-grid-large-box::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(26, 35, 31, 0.1) 0%, rgba(26, 35, 31, 0.9) 100%);
  z-index: 1;
}

.mag-grid-large-box img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.mag-grid-large-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mag-grid-large-content h3 {
  color: var(--vitalesta-white);
  font-size: 2rem;
}

.mag-grid-right-col {
  width: 50%;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.mag-grid-small-card {
  background-color: var(--vitalesta-surface);
  padding: 2.5rem;
  border-top: 4px solid var(--vitalesta-glow-sage);
  border-radius: 2px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mag-grid-small-card svg {
  fill: var(--vitalesta-glow-coral);
}

.mag-grid-small-card h4 {
  font-size: 1.5rem;
}

.mag-grid-small-card p {
  color: var(--vitalesta-ink-muted);
}

/* "How it Works" Vertical / Horizontal Roadmap */
.step-roadmap-section {
  max-width: 1300px;
  margin: 0 auto var(--editorial-gap) auto;
  padding: 0 2rem;
}

.step-roadmap-header {
  text-align: center;
  margin-bottom: 5rem;
}

.step-roadmap-header h2 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

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

.step-card-col {
  position: relative;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.step-card-col::after {
  content: '';
  position: absolute;
  top: 2rem;
  right: -1.5rem;
  height: 60%;
  width: 1px;
  background-color: rgba(26, 35, 31, 0.15);
}

.step-card-col:last-child::after {
  display: none;
}

.step-numerical-bg {
  font-size: 7rem;
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1;
  color: var(--vitalesta-glow-coral);
  opacity: 0.15;
}

.step-content-node h3 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

.step-content-node p {
  color: var(--vitalesta-ink-muted);
}

/* CTA Strip */
.mag-cta-strip {
  background-color: var(--vitalesta-surface);
  border-top: 1px solid rgba(26, 35, 31, 0.1);
  border-bottom: 1px solid rgba(26, 35, 31, 0.1);
  padding: 8rem 2rem;
  text-align: center;
  margin-bottom: var(--editorial-gap);
}

.mag-cta-content {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
}

.mag-cta-content h2 {
  font-size: 3.5rem;
}

.mag-cta-content p {
  font-size: 1.25rem;
  color: var(--vitalesta-ink-muted);
}

/* Cookie Banner */
.vitalesta-cookie-tray {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--vitalesta-ink-dark);
  color: var(--vitalesta-white);
  padding: 1.5rem 2rem;
  z-index: 10001;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.vitalesta-cookie-txt {
  font-size: 0.95rem;
  line-height: 1.5;
}

.vitalesta-cookie-buttons {
  display: flex;
  gap: 1rem;
  flex-shrink: 0;
}

.cookie-btn-accept {
  padding: 0.75rem 1.5rem;
  background-color: var(--vitalesta-glow-coral);
  color: var(--vitalesta-white);
  border: none;
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  transition: opacity 0.3s ease;
  border-radius: 2px;
}

.cookie-btn-decline {
  padding: 0.75rem 1.5rem;
  background-color: transparent;
  color: var(--vitalesta-white);
  border: 1px solid rgba(255, 255, 255, 0.5);
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 2px;
}

.cookie-btn-accept:hover, .cookie-btn-decline:hover {
  opacity: 0.9;
}

/* Expert Page Layout Details */
.stats-strip-holder {
  max-width: 1300px;
  margin: 0 auto var(--editorial-gap) auto;
  padding: 0 2rem;
}

.stats-grid-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat-item-box {
  background-color: var(--vitalesta-surface);
  padding: 3rem 2rem;
  border-radius: 2px;
}

.stat-big-num {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--vitalesta-glow-sage);
  margin-bottom: 0.5rem;
}

.stat-sub-txt {
  font-size: 0.95rem;
  color: var(--vitalesta-ink-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Reserve Page Layout Details */
.top-info-grid-row {
  max-width: 1300px;
  margin: 4rem auto var(--editorial-gap) auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}

.top-info-card-col {
  border-top: 4px solid var(--vitalesta-glow-coral);
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.top-info-card-col h3 {
  font-size: 1.5rem;
}

.top-info-card-col p {
  color: var(--vitalesta-ink-muted);
}

.top-info-bullet-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  list-style: none;
}

.top-info-bullet-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.bullet-dot {
  width: 8px;
  height: 8px;
  background-color: var(--vitalesta-glow-sage);
  border-radius: 50%;
  flex-shrink: 0;
}

.booking-form-block {
  max-width: 700px;
  margin: 0 auto var(--editorial-gap) auto;
  padding: 4rem;
  background-color: var(--vitalesta-surface);
  border-radius: 2px;
}

.booking-form-block h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  text-align: center;
}

.booking-form-block p {
  text-align: center;
  color: var(--vitalesta-ink-muted);
  margin-bottom: 3rem;
}

.contact-agency-mailto {
  display: block;
  text-align: center;
  margin-bottom: 2rem;
  font-weight: 600;
  color: var(--vitalesta-glow-coral);
}

.editorial-fields-frame {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.editorial-field-wrap {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.editorial-field-wrap label {
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.editorial-field-wrap input, .editorial-field-wrap textarea {
  width: 100%;
  padding: 1rem;
  border: 1px solid rgba(26, 35, 31, 0.2);
  background-color: var(--vitalesta-bg);
  color: var(--vitalesta-ink-dark);
  font-family: var(--font-body);
  border-radius: 2px;
  font-size: 1rem;
}

.editorial-field-wrap input:focus, .editorial-field-wrap textarea:focus {
  outline: none;
  border-color: var(--vitalesta-glow-sage);
}

.privacy-checkbox-tag {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9rem;
  cursor: pointer;
}

.privacy-checkbox-tag input {
  margin-top: 0.25rem;
}

/* FAQ Accordion */
.faq-accordion-box {
  max-width: 800px;
  margin: 0 auto var(--editorial-gap) auto;
  padding: 0 2rem;
}

.faq-accordion-box h2 {
  font-size: 2.5rem;
  margin-bottom: 3rem;
  text-align: center;
}

.faq-item-row {
  border-bottom: 1px solid rgba(26, 35, 31, 0.15);
  padding: 2rem 0;
}

.faq-item-question {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.faq-item-answer {
  color: var(--vitalesta-ink-muted);
}

/* Privacy & Terms Pages Layout */
.editorial-document-space {
  max-width: 900px;
  margin: 4rem auto var(--editorial-gap) auto;
  padding: 0 2rem;
}

.editorial-document-space h1 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.editorial-document-space h2 {
  font-size: 2rem;
  margin-top: 3rem;
  margin-bottom: 1rem;
}

.editorial-document-space p {
  margin-bottom: 1.5rem;
  color: var(--vitalesta-ink-muted);
}

/* Thank You Page specific */
.thank-box-screen {
  max-width: 800px;
  margin: 6rem auto var(--editorial-gap) auto;
  padding: 0 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
}

.thank-box-screen h1 {
  font-size: 3.5rem;
}

.thank-box-screen p {
  font-size: 1.25rem;
  color: var(--vitalesta-ink-muted);
  max-width: 600px;
}

.thank-box-screen img {
  width: 100%;
  max-height: 400px;
  object-fit: cover;
  border-radius: 2px;
}

/* Responsive breakpoint details */
@media (max-width: 991px) {
  .mag-nav-links-box {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--vitalesta-bg);
    flex-direction: column;
    padding: 2rem;
    gap: 1.5rem;
    border-bottom: 1px solid rgba(26, 35, 31, 0.1);
  }

  .mag-hamburger-icon {
    display: flex;
  }

  .mag-hamburger-input:checked ~ .mag-nav-links-box {
    display: flex;
  }

  .ed-hero-split {
    flex-direction: column;
  }

  .ed-hero-left-ribbon {
    width: 100%;
    height: auto;
    padding: 1rem;
  }

  .ed-hero-vertical-banner-text {
    writing-mode: horizontal-tb;
    transform: none;
    font-size: 1.25rem;
  }

  .ed-hero-right-body {
    width: 100%;
    padding: 3rem 2rem;
  }

  .vital-story-row {
    flex-direction: column;
    gap: 3rem;
  }

  .vital-story-img-col, .vital-story-text-col {
    width: 100%;
  }

  .mag-grid-container {
    flex-direction: column;
  }

  .mag-grid-large-box, .mag-grid-right-col {
    width: 100%;
  }

  .step-roadmap-track {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .step-card-col::after {
    display: none;
  }

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

  .top-info-grid-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 660px) {
  .editorial-pullquote-p {
    font-size: 1.5rem;
  }

  .editorial-pullquote-p::before, .editorial-pullquote-p::after {
    display: none;
  }

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

  .booking-form-block {
    padding: 2rem 1.5rem;
  }
}