:root {
  --bg: #f7f8f5;
  --bg-soft: #fbfaf7;
  --surface: #ffffff;
  --surface-2: #eef3ef;

  --text: #40524a;
  --text-soft: #6d7d76;
  --heading: #32463d;

  --primary: #84a98d;
  --primary-dark: #6f9379;

  --accent: #2391c7;
  --accent-dark: #1e7faf;

  --warm: #f2b37a;
  --rose: #ef4f87;

  --border: #dde4de;
  --shadow-soft: 0 10px 24px rgba(63, 74, 67, 0.04);
  --shadow-card: 0 14px 30px rgba(63, 74, 67, 0.05);
  --shadow-frame: 0 18px 40px rgba(64, 82, 74, 0.08);

  --radius-xl: 38px;
  --radius-lg: 32px;
  --radius-md: 28px;
  --radius-sm: 24px;
  --radius-xs: 18px;

  --container: 1200px;
  --transition: 0.3s ease;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "DM Sans", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
}

img {
  max-width: 100%;
  display: block;
}

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

ul {
  padding-left: 1.15rem;
}

.container {
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
}

.section {
  padding: 108px 0;
}

h1,
h2,
h3,
h4 {
  font-family: "Playfair Display", serif;
  color: var(--heading);
  line-height: 1.08;
  margin-top: 0;
  letter-spacing: -0.01em;
}

h1 {
  font-size: clamp(2.8rem, 5vw, 5.2rem);
  margin-bottom: 22px;
}

h2 {
  font-size: clamp(2.1rem, 4vw, 3.5rem);
  margin-bottom: 18px;
}

h3 {
  font-size: 1.95rem;
  margin-bottom: 14px;
}

p {
  margin-top: 0;
  color: var(--text-soft);
}

.section-tag,
.eyebrow,
.content-label,
.resource-kicker,
.program-topline,
.floating-label,
.manifesto-number,
.logo-subtext {
  display: inline-block;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
}

.section-tag,
.eyebrow {
  color: #7b8d83;
  margin-bottom: 14px;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 44px;
}

.section-heading.center {
  text-align: center;
  margin-inline: auto;
}

.narrow-heading {
  max-width: 900px;
}

.text-link {
  color: var(--heading);
  font-weight: 600;
}

/* HEADER */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(14px);
  background: rgba(247, 248, 245, 0.94);
  border-bottom: 1px solid rgba(221, 228, 222, 0.9);
}

.editorial-header {
  box-shadow: none;
}

.nav {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.logo-mark {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--primary);
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  box-shadow: none;
}

.logo-text-wrap {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.logo-text {
  font-weight: 600;
  color: var(--heading);
}

.logo-subtext {
  color: var(--text-soft);
  letter-spacing: 0.08em;
  font-size: 0.72rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 26px;
}

.site-nav a {
  color: var(--text);
  font-weight: 500;
}

.site-nav a:hover {
  color: var(--heading);
}

.site-nav .nav-cta {
  padding: 11px 20px;
  border-radius: 999px;
  background: #ffffff;
  color: var(--heading);
  border: 1px solid rgba(132, 169, 141, 0.28);
  box-shadow: none;
}

.menu-toggle {
  display: none;
  background: transparent;
  border: 0;
  padding: 0;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--heading);
  margin: 5px 0;
  transition: 0.25s ease;
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 26px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: background var(--transition), color var(--transition), border var(--transition), box-shadow var(--transition);
  cursor: pointer;
}

.btn:hover {
  transform: none;
}

.btn-primary {
  background: #7ea28a;
  color: #fff;
  box-shadow: 0 10px 24px rgba(126, 162, 138, 0.16);
}

.btn-primary:hover {
  background: #6f9379;
}

.btn-secondary {
  background: #ffffff;
  color: var(--heading);
  border-color: rgba(132, 169, 141, 0.28);
}

.btn-secondary:hover {
  background: #f7faf7;
}

.btn-outline {
  background: #ffffff;
  color: var(--heading);
  border-color: rgba(132, 169, 141, 0.22);
}

.btn-outline:hover {
  border-color: rgba(132, 169, 141, 0.4);
  background: #f8fbf8;
}

/* HERO */
.hero {
  padding-top: 0;
}

.hero-editorial {
  background: #f7f7f2;
  padding-top: 34px;
  padding-bottom: 92px;
}

.hero-editorial-shell {
  display: grid;
  gap: 28px;
}

.hero-editorial-intro {
  width: 100%;
  max-width: none;
  display: grid;
  gap: 18px;
  justify-items: center;
  text-align: center;
}

.hero-editorial-intro .eyebrow {
  max-width: none;
  text-align: center;
}

.hero-editorial-intro h1 {
  width: 100%;
  max-width: none;
  margin: 0;
  line-height: 0.96;
  text-align: center;
  text-wrap: balance;
}

.hero-text {
  font-size: 1.08rem;
  max-width: none;
}

.hero-text.hero-text-large {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  font-size: 1.08rem;
  line-height: 1.9;
  text-align: center;
}

.hero-actions {
  margin: 10px 0 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.editorial-mini-note {
  margin-top: 0;
  width: 100%;
  max-width: 1100px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.mini-line {
  width: 72px;
  height: 2px;
  border-radius: 999px;
  background: #cfd9d2;
  flex-shrink: 0;
}

.editorial-mini-note p {
  margin: 0;
  color: var(--heading);
  text-align: center;
}

.hero-stage-visual {
  position: relative;
  width: 100%;
  background: #ffffff;
  border: 1px solid #dde4de;
  border-radius: 36px;
  padding: 18px;
  min-height: 620px;
  box-shadow: 0 18px 34px rgba(63, 74, 67, 0.06);
  overflow: hidden;
}

.hero-carousel {
  position: relative;
}

.hero-carousel-track {
  position: relative;
  width: 100%;
  min-height: 584px;
  border-radius: 28px;
  overflow: hidden;
  background: #eef2ef;
}

.hero-carousel-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.55s ease, visibility 0.55s ease;
}

.hero-carousel-slide.is-active {
  opacity: 1;
  visibility: visible;
}

.hero-carousel-image {
  width: 100%;
  height: 100%;
  min-height: 584px;
  object-fit: cover;
  display: block;
}

.hero-carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  color: #2f3a34;
  font-size: 1.7rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(63, 74, 67, 0.12);
  z-index: 2;
  transition: background var(--transition), box-shadow var(--transition), opacity var(--transition);
}

.hero-carousel-btn:hover {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 10px 24px rgba(63, 74, 67, 0.16);
}

.hero-carousel-prev {
  left: 24px;
}

.hero-carousel-next {
  right: 24px;
}

.hero-carousel-dots {
  position: absolute;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 2;
}

.hero-carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 0;
  background: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  padding: 0;
  transition: transform var(--transition), background var(--transition);
}

.hero-carousel-dot.is-active {
  background: #ffffff;
  transform: scale(1.15);
}

.hero-image-placeholder,
.image-placeholder,
.content-thumb {
  display: grid;
  place-items: center;
  border-radius: 24px;
  color: var(--text-soft);
  font-weight: 600;
  text-align: center;
  background: #eef2ef;
  border: 1px dashed rgba(132, 169, 141, 0.24);
}

.hero-image-placeholder {
  min-height: 460px;
}

.image-placeholder {
  min-height: 430px;
}

.image-soft {
  background: #f5efe5;
}

.editorial-image {
  background: #eef2ef;
  border: 1px dashed rgba(35, 145, 199, 0.18);
}

/* INTRO */
.editorial-intro {
  background: #fafaf7;
}

.editorial-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
  align-items: stretch;
}

/* ABOUT */
.about-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 54px;
  align-items: center;
}

.about-editorial {
  background: #f7f8f5;
}

.about-editorial-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 52px;
  align-items: center;
}

.about-points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0;
}

.info-chip {
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text);
  font-weight: 500;
}

/* MANIFESTO */
.manifesto {
  background: #f5f7f4;
}

.manifesto-shell {
  background: #ffffff;
  border: 1px solid rgba(221, 228, 222, 0.9);
  border-radius: 36px;
  padding: 52px;
  box-shadow: 0 16px 34px rgba(64, 82, 74, 0.05);
}

.manifesto-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.manifesto-card {
  padding: 32px;
  border-radius: 28px;
  border: 1px solid rgba(221, 228, 222, 0.8);
  box-shadow: none;
}

.accent-sage {
  background: #eef4ef;
}

.accent-lilac {
  background: #faf1f4;
}

.accent-cream {
  background: #fcf5eb;
}

.accent-stone {
  background: #f1f6f7;
}

.manifesto-number {
  margin-bottom: 16px;
  color: #7b8d83;
}

.manifesto-card p {
  margin: 0;
  color: var(--heading);
  font-size: 1.06rem;
}

/* PAIN POINTS */
.pain-editorial {
  background: #f7f8f5;
}

.pain-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.soft-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 30px 26px;
  box-shadow: var(--shadow-soft);
}

.editorial-soft-card {
  background: #ffffff;
}

/* PROGRAMS */
.programs-editorial {
  background: #f8f8f4;
}

.program-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.program-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 36px 28px;
  box-shadow: var(--shadow-card);
  transition: box-shadow var(--transition), border-color var(--transition), background var(--transition);
}

.program-card:hover {
  transform: none;
  box-shadow: 0 18px 34px rgba(63, 74, 67, 0.08);
}

.editorial-program-card {
  padding-top: 54px;
}

.program-card.featured {
  background: #f6fbfc;
  border-color: rgba(35, 145, 199, 0.18);
}

.program-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  background: #f9e3ea;
  color: #9d4b68;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
}

.program-topline {
  margin-bottom: 16px;
  color: #7b8d83;
}

.program-safe {
  background: #f6faf7;
}

.program-desinflamarte {
  background: #f6fbfc;
}

.program-color {
  background: #fdf8f1;
}

.program-icon {
  font-size: 2rem;
  margin-bottom: 8px;
}

.program-subtitle {
  color: var(--primary-dark);
  font-weight: 600;
  margin-bottom: 16px;
}

.program-card ul {
  margin: 18px 0 24px;
  color: var(--text-soft);
}

/* VLOG */
.vlog-editorial {
  background: #fafaf7;
}

.vlog-editorial-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 34px;
  align-items: start;
}

.content-grid,
.resource-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.editorial-content-grid {
  grid-template-columns: repeat(2, 1fr);
}

.content-card,
.resource-card {
  background: var(--surface);
  border-radius: 28px;
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.editorial-content-card {
  border-radius: 30px;
}

.content-thumb {
  min-height: 220px;
  border-radius: 20px 20px 0 0;
  position: relative;
  overflow: hidden;
  background: none;
  padding: 0;
  border: 0;
}

.editorial-thumb {
  background: none;
}

.content-thumb img,
.editorial-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.content-body,
.resource-card {
  padding: 24px;
}

.content-label {
  color: #7b8d83;
  margin-bottom: 10px;
}

/* RESOURCES */
.resources-editorial {
  background: #f5f7f3;
}

.editorial-resource-card {
  background: #ffffff;
}

.resource-kicker {
  margin-bottom: 12px;
  color: #7b8d83;
}

.resource-card h3 {
  margin-bottom: 10px;
}

/* CTA */
.cta-box,
.cta-editorial-box {
  text-align: center;
  background: #eef3ef;
  border: 1px solid rgba(221, 228, 222, 0.95);
  border-radius: 38px;
  padding: 68px 32px;
  box-shadow: 0 16px 34px rgba(64, 82, 74, 0.06);
}

.cta-box p,
.cta-editorial-box p {
  max-width: 760px;
  margin-inline: auto;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 26px;
}

/* FOOTER */
.site-footer {
  background: #edf1ec;
  border-top: 1px solid var(--border);
  padding-top: 64px;
}

.editorial-footer {
  background: #edf1ec;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr 0.8fr;
  gap: 28px;
}

.site-footer h3,
.site-footer h4 {
  margin-bottom: 14px;
}

.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.site-footer li {
  margin-bottom: 10px;
}

.site-footer a {
  color: var(--text-soft);
}

.site-footer a:hover {
  color: var(--heading);
}

.footer-bottom {
  padding: 22px 0 34px;
  margin-top: 30px;
  border-top: 1px solid rgba(221, 228, 222, 0.9);
}

.footer-bottom p {
  margin: 0;
  font-size: 0.95rem;
  text-align: center;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .editorial-intro-grid,
  .about-editorial-grid,
  .pain-grid,
  .program-grid,
  .vlog-editorial-grid,
  .manifesto-grid,
  .editorial-content-grid,
  .content-grid,
  .resource-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-image-placeholder {
    min-height: 360px;
  }

  .image-placeholder {
    min-height: 360px;
  }
}

@media (max-width: 860px) {
  .site-nav {
    position: absolute;
    top: 84px;
    left: 0;
    right: 0;
    background: rgba(247, 248, 245, 0.98);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 14px 1rem 20px;
    display: none;
  }

  .site-nav.open {
    display: flex;
  }

  .site-nav a {
    width: 100%;
    padding: 14px 0;
    border-bottom: 1px solid rgba(221, 228, 222, 0.75);
  }

  .site-nav .nav-cta {
    margin-top: 12px;
    text-align: center;
    border-bottom: 0;
    width: auto;
  }

  .menu-toggle {
    display: block;
  }

  .logo-text {
    font-size: 0.95rem;
  }

  .logo-subtext {
    font-size: 0.68rem;
  }

  .section {
    padding: 84px 0;
  }

  .hero {
    padding-top: 0;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(100% - 1.2rem, var(--container));
  }

  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 2.1rem;
  }

  .hero-actions,
  .cta-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }

  .manifesto-shell,
  .intro-block,
  .cta-editorial-box,
  .cta-box,
  .program-card,
  .soft-card,
  .resource-card,
  .content-body,
  .friends-box {
    padding-left: 20px;
    padding-right: 20px;
  }

  .about-editorial-grid,
  .vlog-editorial-grid {
    gap: 34px;
  }

  .hero.hero-editorial {
    padding-top: 20px;
    padding-bottom: 64px;
  }

  .hero-stage-visual {
    min-height: auto;
    padding: 14px;
  }

  .hero-carousel-track {
    min-height: 340px;
  }

  .hero-carousel-image {
    min-height: 340px;
  }

  .hero-carousel-btn {
    width: 38px;
    height: 38px;
    font-size: 1.4rem;
  }

  .hero-carousel-prev {
    left: 14px;
  }

  .hero-carousel-next {
    right: 14px;
  }

  .editorial-mini-note {
    flex-direction: column;
  }

  .mini-line {
    width: 56px;
  }
}

.whatsapp-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  margin-right: 10px;
  flex-shrink: 0;
}

.whatsapp-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.btn.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}

/* VLOG PAGE */
.vlog-page-hero {
  background: #f7f7f2;
  padding-top: 34px;
  padding-bottom: 72px;
}

.vlog-page-hero-grid {
  display: grid;
  gap: 32px;
}

.vlog-page-copy {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}

.vlog-page-text {
  max-width: 980px;
}

.vlog-page-featured-card {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 34px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.vlog-page-featured-thumb {
  min-height: 360px;
}

.vlog-page-featured-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.vlog-page-featured-body {
  padding: 34px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.vlog-video-section {
  background: #fafaf7;
}

.vlog-video-list {
  display: grid;
  gap: 20px;
}

.vlog-video-item {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 22px;
  align-items: stretch;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.vlog-video-thumb {
  min-height: 220px;
  background: #eef2ef;
}

.vlog-video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.vlog-video-content {
  padding: 24px 26px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.vlog-video-content h3 {
  font-size: 1.65rem;
  margin-bottom: 12px;
}

.vlog-video-content p {
  margin-bottom: 14px;
}

.vlog-video-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 14px;
}

.vlog-video-meta span {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: #f4f6f3;
  border: 1px solid rgba(221, 228, 222, 0.9);
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 500;
}

@media (max-width: 1024px) {
  .vlog-page-featured-card,
  .vlog-video-item {
    grid-template-columns: 1fr;
  }

  .vlog-page-featured-thumb,
  .vlog-video-thumb {
    min-height: 260px;
  }
}

@media (max-width: 560px) {
  .vlog-page-featured-body,
  .vlog-video-content {
    padding: 20px;
  }

  .vlog-video-content h3 {
    font-size: 1.4rem;
  }
}