:root {
  --green-950: #102818;
  --green-900: #173b25;
  --green-850: #1c4a2e;
  --green-800: #23613a;
  --green-700: #33774b;
  --green-200: #dfeade;
  --green-100: #edf5ec;
  --orange-700: #ff8a00;
  --orange-600: #ff6b2b;
  --orange-500: #ff8a00;
  --orange-200: #ffd7b7;
  --cream-50: #fffaf0;
  --cream-100: #f7efe1;
  --cream-200: #efe1cc;
  --white: #ffffff;
  --text: #213025;
  --muted: #68756b;
  --line: rgba(33, 48, 37, 0.12);
  --shadow: 0 24px 70px rgba(23, 59, 37, 0.12);
  --soft-shadow: 0 16px 36px rgba(23, 59, 37, 0.08);
  --radius-xl: 30px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --container: 1180px;
  --header-height: 84px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 100px; overflow-x: hidden; }
body {
  margin: 0;
  font-family: "Figtree", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--cream-50);
  line-height: 1.55;
  overflow-x: hidden;
  text-rendering: geometricPrecision;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }

.container {
  width: min(var(--container), calc(100% - 48px));
  margin-inline: auto;
}
.section { padding: 96px 0; }
.skip-link {
  position: absolute;
  top: -70px;
  left: 20px;
  background: var(--green-900);
  color: white;
  padding: 10px 14px;
  border-radius: 10px;
  z-index: 3000;
}
.skip-link:focus { top: 20px; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 250, 240, 0.9);
  border-bottom: 1px solid rgba(33, 48, 37, 0.08);
  backdrop-filter: blur(16px);
  transition: box-shadow .25s ease, background .25s ease;
}
.site-header.is-scrolled {
  background: rgba(255, 250, 240, 0.96);
  box-shadow: 0 10px 28px rgba(23, 59, 37, 0.08);
}
.nav-wrap {
  min-height: var(--header-height);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 26px;
}
.brand { display: inline-flex; align-items: center; width: auto; max-width: 200px; }
.brand-logo { width: 188px; height: auto; object-fit: contain; margin-right: 4px; }
.site-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(14px, 2.1vw, 30px);
}
.site-nav a {
  color: #294535;
  font-size: .88rem;
  font-weight: 800;
  letter-spacing: -.01em;
  transition: color .18s ease;
}
.site-nav a:hover { color: var(--orange-700); }
.mobile-nav-cta { display: none; }
.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  background: var(--orange-500);
  color: white;
  font-weight: 900;
  box-shadow: 0 12px 26px rgba(232, 75, 33, 0.22);
}
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 1px solid var(--line);
  background: white;
  border-radius: 14px;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--green-900);
  margin: 5px 0;
}

/* Reusable */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 900;
  letter-spacing: -.01em;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease, border-color .18s ease;
}
.btn:hover { transform: translateY(-2px); }
.plan-card .btn,
.segment-card .btn {
  will-change: transform;
}
.plan-card:hover .btn,
.plan-card.is-centered .btn,
.segment-card:hover .btn {
  animation: button-jump 1.15s ease-in-out infinite;
  animation-fill-mode: both;
}
.btn-primary {
  background: var(--green-800);
  color: white;
  box-shadow: 0 15px 32px rgba(35, 97, 58, .28);
}
.btn::after,
.header-cta::after {
  content: none;
}
.btn-ghost {
  color: white;
  background: rgba(255, 255, 255, .10);
  border-color: rgba(255, 255, 255, .52);
  backdrop-filter: blur(8px);
}
.btn-outline {
  background: white;
  color: var(--orange-700);
  border-color: rgba(232, 75, 33, .38);
}
.btn-orange {
  background: var(--orange-500);
  color: white;
  box-shadow: 0 14px 28px rgba(232, 75, 33, .24);
}
@keyframes button-jump {
  0%, 100% {
    transform: translateY(0);
  }
  20% {
    transform: translateY(-6px);
  }
  40% {
    transform: translateY(-10px);
  }
  55% {
    transform: translateY(-7px);
  }
  75% {
    transform: translateY(-9px);
  }
  90% {
    transform: translateY(-4px);
  }
}
.section-tag,
.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 16px;
  color: var(--orange-700);
  font-size: clamp(.76rem, 1vw, .84rem);
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.section-tag::after,
.hero-kicker::after {
  content: "";
  width: 42px;
  height: 2px;
  background: currentColor;
  border-radius: 10px;
}
.on-dark { color: var(--orange-500); }
.on-orange { color: var(--green-950); }
.section-head { max-width: 800px; margin: 0 0 38px; }
.section-head.center { text-align: center; margin-inline: auto; }
.section-head.center .section-tag { justify-content: center; }
.section-head.center .section-tag::before { content: ""; width: 42px; height: 2px; background: currentColor; border-radius: 10px; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 {
  line-height: .98;
  letter-spacing: -.055em;
  font-weight: 900;
}
h2 { font-size: clamp(2.2rem, 5vw, 4.25rem); }
h3 { font-size: clamp(1.35rem, 2.3vw, 2rem); }
.copy-block p,
.section-head p,
.includes-copy p,
.segment-content p,
.contact-panel p { color: var(--muted); font-size: 1.03rem; }

/* Hero */
.hero {
  position: relative;
  min-height: calc(100svh - var(--header-height));
  display: grid;
  align-items: center;
  overflow: hidden;
  background: #102818;
}
.hero-media {
  position: absolute;
  inset: 0;
  background-image: url('/static/img/hero-office-fruit.webp');
  background-size: cover;
  background-position: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(16, 40, 24, .86) 0%, rgba(16, 40, 24, .62) 39%, rgba(16, 40, 24, .08) 100%),
    linear-gradient(0deg, rgba(16, 40, 24, .26), rgba(16, 40, 24, .06));
}
.hero-content {
  position: relative;
  z-index: 1;
  padding: 120px 0 130px;
  color: white;
}
.hero-kicker { color: var(--orange-500); }
.hero h1 {
  max-width: 720px;
  margin: 0 0 22px;
  font-size: clamp(3rem, 7.6vw, 6.6rem);
}
.hero h1 .text-emphasis,
.includes-copy h2 .text-emphasis,
.snack-copy-panel h2 .text-emphasis {
  color: var(--orange-500);
  font-style: italic;
  font-family: "Fraunces", Georgia, serif;
  font-weight: 700;
}
.hero-line {
  display: block;
  color: inherit;
}
.text-emphasis {
  display: inline-block;
  color: var(--orange-700);
  font-style: normal;
  font-family: inherit;
  font-weight: inherit;
  transform: skewX(0deg);
  transform-origin: 18% 82%;
}
.reveal.is-visible .text-emphasis {
  animation: emphasisTilt .21s cubic-bezier(.2, .8, .22, 1) .26s forwards;
}
.hero-text {
  max-width: 610px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, .92);
  font-size: clamp(1rem, 1.55vw, 1.16rem);
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* Stats */
.stats-band {
  position: relative;
  z-index: 2;
  margin-top: 28px;
}
.stats-panel {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding: 0;
  background: rgba(255, 255, 255, .6);
  border: 1px solid rgba(33, 48, 37, 0.1);
  border-radius: 20px;
  box-shadow: var(--shadow);
  overflow: hidden;
  opacity: 1;
}
.stat-item {
  min-height: 96px;
  display: grid;
  grid-template-columns: 46px 1fr;
  grid-template-rows: auto auto;
  align-content: center;
  column-gap: 12px;
  padding: 18px;
  border-right: 1px solid var(--line);
}
.stat-item:last-child { border-right: 0; }
.stat-icon {
  grid-row: 1 / span 2;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--orange-700);
  background: rgba(255, 242, 233, .68);
  font-size: 1.2rem;
  font-weight: 900;
}
.stat-icon svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.stats-panel.reveal.is-visible .stat-icon {
  animation: icon-pop .55s ease-out .18s both;
}
.stats-panel.reveal.is-visible .stat-item:nth-child(2) .stat-icon {
  animation-delay: .24s;
}
.stats-panel.reveal.is-visible .stat-item:nth-child(3) .stat-icon {
  animation-delay: .30s;
}
.stats-panel.reveal.is-visible .stat-item:nth-child(4) .stat-icon {
  animation-delay: .36s;
}
.stat-item strong {
  display: block;
  color: var(--green-900);
  font-size: 1.05rem;
  line-height: 1.15;
}
.stat-item small { color: var(--muted); font-size: .82rem; line-height: 1.25; }

/* Intro */
.intro-section {
  padding-top: 86px;
  background:
    radial-gradient(circle at 10% 0%, rgba(255, 138, 0, .08), transparent 25%),
    var(--cream-50);
}
.editorial-grid {
  display: grid;
  grid-template-columns: .84fr 1.16fr;
  align-items: center;
  gap: 52px;
}
.copy-block h2 { color: var(--green-900); }
.copy-block h2 span { color: var(--orange-700); }
.intro-section,
.process-section,
.includes-section {
  position: relative;
  overflow: hidden;
}
.intro-section .container,
.process-section .container,
.includes-section .container {
  position: relative;
  z-index: 1;
}
.intro-section::before,
.intro-section::after,
.process-section::before,
.process-section::after,
.includes-section::before,
.includes-section::after {
  position: absolute;
  z-index: 0;
  pointer-events: none;
  display: grid;
  place-items: center;
  color: rgba(255, 138, 0, .11);
  font-size: 11rem;
  line-height: 1;
}
.intro-section::before {
  content: "🍊";
  right: 4%;
  top: 12%;
  transform: rotate(12deg);
}
.intro-section::after {
  content: "🍎";
  left: -48px;
  bottom: 10%;
  transform: rotate(-10deg);
}
.process-section::after {
  content: "🍌";
  left: -58px;
  top: 14%;
  transform: rotate(-20deg);
}
.includes-section::before {
  content: "🍑";
  right: -44px;
  top: 14%;
  transform: rotate(10deg);
}
.includes-section::after {
  content: "🍎";
  left: 5%;
  bottom: 8%;
  transform: rotate(-12deg);
}
.media-card, .process-media, .includes-media, .testimonial-image { margin: 0; }
.media-card img,
.process-media img,
.includes-media img,
.testimonial-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}
.media-card img { min-height: 470px; }

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 62px;
}
.benefit-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: white;
  border: 1px solid var(--line);
  box-shadow: var(--soft-shadow);
}
.benefit-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}
.benefit-icon {
  position: absolute;
  top: 184px;
  left: 22px;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--green-800);
  color: white;
  border: 5px solid white;
  font-weight: 900;
  transform: scale(0);
  transform-origin: center center;
}
.benefit-card.reveal.is-visible .benefit-icon {
  animation: icon-pop .55s ease-out .18s both;
}
.benefit-card:nth-child(1).reveal.is-visible .benefit-icon {
  animation-delay: .18s;
}
.benefit-card:nth-child(2).reveal.is-visible .benefit-icon {
  animation-delay: .24s;
}
.benefit-card:nth-child(3).reveal.is-visible .benefit-icon {
  animation-delay: .30s;
}
@keyframes icon-pop {
  0% { transform: scale(0); }
  70% { transform: scale(1.05); }
  100% { transform: scale(1); }
}
.benefit-card-body { padding: 34px 24px 26px; }
.benefit-card h3 {
  margin-bottom: 10px;
  color: var(--green-900);
  font-size: 1.35rem;
  line-height: 1.08;
}
.benefit-card p { margin-bottom: 0; color: var(--muted); }

/* Process */
.process-section {
  background: #fff7eb;
  position: relative;
  overflow: hidden;
}
.process-section::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  right: -160px;
  bottom: -140px;
  border-radius: 50%;
  background: rgba(255, 138, 0, .10);
}
.process-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: .83fr 1.17fr;
  gap: 54px;
  align-items: center;
}
.process-copy .section-tag {
  font-weight: 900;
  letter-spacing: .17em;
  line-height: 1;
}
.process-copy h2 { color: var(--green-900); margin-bottom: 34px; }
.step-list { display: grid; gap: 22px; }
.step-item {
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 22px;
  align-items: start;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(232, 75, 33, .18);
}
.step-item:last-child { border-bottom: 0; padding-bottom: 0; }
.step-number {
  color: var(--orange-700);
  font-size: clamp(2.35rem, 4vw, 3.3rem);
  line-height: .9;
  font-weight: 900;
  letter-spacing: -.06em;
}
.step-content {
  position: relative;
  padding-left: 24px;
}
.step-content::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  bottom: 2px;
  width: 1px;
  background: rgba(35, 97, 58, .22);
}
.step-content::after {
  content: "";
  position: absolute;
  left: -4px;
  top: 5px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--green-800);
}
.step-content strong {
  display: block;
  margin-bottom: 8px;
  color: var(--green-900);
  font-size: 1.12rem;
  font-weight: 900;
}
.step-content p { margin: 0; color: var(--muted); }
.process-media img { min-height: 600px; }

/* Plans */
.section-plans {
  position: relative;
  overflow: hidden;
  color: white;
  background:
    radial-gradient(circle at 84% 14%, rgba(255, 138, 0, .22), transparent 20%),
    radial-gradient(circle at 12% 90%, rgba(159, 218, 134, .16), transparent 30%),
    linear-gradient(135deg, #0f2a19 0%, #19462a 45%, #0e3b22 100%);
}
.section-plans .section-head h2 { color: #fff8e8; }
.section-plans .section-head p { color: rgba(255,255,255,.78); }
.plans-deco,
.orange-deco {
  position: absolute;
  pointer-events: none;
  background-size: contain;
  background-repeat: no-repeat;
  opacity: .9;
}
.plans-deco-left {
  width: 190px;
  height: 190px;
  top: 18px;
  left: -28px;
  display: grid;
  place-items: center;
  background-image: none;
  color: rgba(255, 250, 240, .19);
  font-size: 9rem;
  line-height: 1;
  filter: none;
}
.plans-deco-left::before { content: "🍊"; }
.plans-deco-right {
  width: 210px;
  height: 210px;
  right: -70px;
  bottom: 16px;
  display: grid;
  place-items: center;
  border-radius: 0;
  background: none;
  color: rgba(255, 250, 240, .16);
  font-size: 10rem;
  line-height: 1;
}
.plans-deco-right::before { content: "🍎"; }
.plans-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.plan-card {
  position: relative;
  padding: 34px 30px 30px;
  border: 1px solid rgba(255,255,255,.55);
  border-radius: var(--radius-lg);
  background: #fffaf0;
  color: var(--text);
  box-shadow: 0 30px 70px rgba(0, 0, 0, .18);
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}
.plan-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 38px 88px rgba(0, 0, 0, .22);
  border-color: rgba(255, 138, 0, .55);
}
.plan-card.featured {
  background: white;
  border-color: rgba(255, 138, 0, .75);
  transform: translateY(-10px);
}
.plan-card.featured:hover { transform: translateY(-16px); }
.plan-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  padding: 7px 14px;
  border-radius: 999px;
  background: var(--orange-500);
  color: white;
  font-size: .78rem;
  font-weight: 900;
  white-space: nowrap;
}
.plan-card h3 { margin-bottom: 10px; color: var(--green-900); font-size: 1.65rem; }
.plan-size { margin-bottom: 2px; color: var(--orange-700); font-weight: 900; }
.plan-ideal { color: var(--muted); margin-bottom: 22px; }
.plan-price {
  margin: 0 0 24px;
  color: var(--green-900);
  font-size: clamp(2rem, 3.2vw, 2.75rem);
  line-height: 1;
  font-weight: 900;
  letter-spacing: -.05em;
}
.plan-price span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: .92rem;
  line-height: 1.25;
  letter-spacing: 0;
  font-weight: 800;
}
.plan-card ul,
.segment-content ul,
.check-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0 0 26px;
  list-style: none;
}
.plan-card li,
.check-list li,
.segment-content li {
  position: relative;
  padding-left: 28px;
  color: var(--muted);
}
.plan-card li::before,
.check-list li::before,
.segment-content li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 18px;
  height: 18px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--green-800);
  color: white;
  font-size: .7rem;
  font-weight: 900;
}
.plan-card .btn { width: 100%; }

/* Includes */
.includes-section {
  background: var(--cream-50);
}
.includes-grid {
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  gap: 48px;
  align-items: center;
}
.includes-copy h2 { color: var(--green-900); margin-bottom: 18px; }
.includes-copy .check-list { margin-top: 26px; margin-bottom: 0; }
.includes-media img { min-height: 520px; }

/* Segment */
.segment-section { background: #fff7eb; }
.event-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
}
.segment-card {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  background: white;
}
.segment-card > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.segment-card::after {
  content: "";
  position: absolute;
  inset: 0;
}
.dark-card::after { background: linear-gradient(90deg, rgba(7, 14, 10, .88), rgba(7, 14, 10, .28)); }
.light-card::after { background: linear-gradient(90deg, rgba(255, 250, 240, .92), rgba(255, 250, 240, .35)); }
.segment-content {
  position: relative;
  z-index: 1;
  max-width: 470px;
  padding: 46px;
}
.dark-card .segment-content { color: white; }
.dark-card .segment-content p,
.dark-card .segment-content li { color: rgba(255,255,255,.84); }
.dark-card .segment-content .section-tag { color: var(--orange-500); }
.light-card .segment-content h3 { color: var(--green-900); }
.light-card .segment-content .section-tag { color: var(--orange-700); }
.segment-content h3 { margin-bottom: 18px; }
.segment-content .btn { margin-top: 4px; }
.segment-content .btn {
  text-align: center;
  line-height: 1.08;
  white-space: normal;
}

/* Testimonials */
.testimonials { background: var(--cream-50); }
.testimonial-grid {
  position: relative;
  min-height: 690px;
  display: grid;
  place-items: center;
}
.testimonial-card {
  position: absolute;
  z-index: 2;
  width: min(290px, 28vw);
  padding: 22px 24px;
  background: rgba(255, 255, 255, .78);
  border: 1px solid rgba(255, 255, 255, .72);
  border-radius: 18px;
  box-shadow: 0 22px 44px rgba(24, 42, 27, .16);
  backdrop-filter: blur(10px);
  transform: var(--testimonial-transform, none);
}
.testimonial-card blockquote {
  margin: 0 0 12px;
  color: var(--green-900);
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.28;
}
.testimonial-card p {
  margin: 0;
  color: var(--green-950);
  font-size: .88rem;
  font-weight: 700;
}
.testimonial-card:nth-of-type(1) { top: 30px; left: 8%; --testimonial-transform: rotate(-2deg); }
.testimonial-card:nth-of-type(2) { right: 7%; bottom: 64px; --testimonial-transform: rotate(2deg); }
.testimonial-card:nth-of-type(3) { top: 120px; right: 4%; --testimonial-transform: rotate(1.5deg); }
.testimonial-card:nth-of-type(4) { left: 3%; bottom: 118px; --testimonial-transform: rotate(1.5deg); }
.testimonial-card:nth-of-type(5) { left: 50%; bottom: 18px; --testimonial-transform: translateX(-50%) rotate(-1deg); }
.testimonial-image {
  position: relative;
  z-index: 1;
  width: min(520px, 48vw);
}
.testimonial-image img { min-height: 640px; }

/* Orange FAQ/contact */
.orange-zone {
  position: relative;
  overflow: hidden;
  padding: 96px 0;
  background:
    radial-gradient(circle at 78% 22%, rgba(255,255,255,.32), transparent 28%),
    radial-gradient(circle at 8% 80%, rgba(33, 48, 37, .18), transparent 20%),
    linear-gradient(135deg, #ef5a24 0%, #ff7a26 30%, #ff9a35 58%, #ffb866 100%);
}
.orange-deco-left {
  width: 200px;
  height: 200px;
  left: -52px;
  bottom: -32px;
  background-image: url('/static/img/orange.webp');
  filter: drop-shadow(0 22px 24px rgba(0,0,0,.14));
}
.orange-deco-right {
  width: 360px;
  height: 360px;
  right: -130px;
  top: -100px;
  border-radius: 50%;
  background: rgba(255,255,255,.16);
}
.orange-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 30px;
}
.faq-panel,
.contact-panel {
  padding: clamp(28px, 4vw, 46px);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255,255,255,.34);
  background: rgba(255, 250, 240, .88);
  box-shadow: 0 26px 64px rgba(89, 32, 8, .17);
  backdrop-filter: blur(12px);
}
.faq-panel h2,
.contact-panel h2 { color: var(--green-900); margin-bottom: 24px; }
.faq-list { display: grid; gap: 12px; }
.faq-item {
  overflow: hidden;
  border-radius: 16px;
  background: white;
  border: 1px solid rgba(33,48,37,.1);
}
.faq-item button {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 18px 20px;
  border: 0;
  background: transparent;
  color: var(--green-900);
  text-align: left;
  font-weight: 900;
  cursor: pointer;
}
.faq-item button span {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #fff0e7;
  color: var(--orange-700);
  flex: 0 0 auto;
  transition: transform .2s ease;
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .25s ease;
}
.faq-answer p { margin: 0; padding: 0 20px 18px; color: var(--muted); }
.faq-item.is-open .faq-answer { max-height: 260px; }
.faq-item.is-open button span { transform: rotate(45deg); }
.contact-panel > p { max-width: 560px; margin-bottom: 24px; }
.contact-form { display: grid; gap: 16px; }
.field-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.contact-form label { display: grid; gap: 7px; }
.contact-form span {
  color: var(--green-900);
  font-size: .88rem;
  font-weight: 900;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(33,48,37,.14);
  border-radius: 14px;
  padding: 13px 15px;
  background: rgba(255,255,255,.96);
  color: var(--text);
  outline: none;
  transition: border-color .18s ease, box-shadow .18s ease;
}
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--green-800);
  box-shadow: 0 0 0 4px rgba(35, 97, 58, .12);
}
.contact-form textarea { resize: vertical; }
.form-note { margin: -6px 0 0; font-size: .88rem; color: var(--muted); }

/* Footer */
.site-footer {
  padding: 56px 0 22px;
  background: #fffaf0;
  color: var(--text);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr .8fr .8fr 1fr;
  gap: 36px;
  align-items: start;
}
.footer-brand img { width: 180px; margin-bottom: 14px; }
.footer-grid strong { display: block; margin-bottom: 14px; color: var(--green-900); }
.footer-grid p,
.footer-grid a,
.footer-grid span {
  display: block;
  margin-bottom: 9px;
  color: var(--muted);
}
.footer-grid a:hover { color: var(--orange-700); }
.footer-bottom {
  margin-top: 32px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.footer-bottom p { margin: 0; color: var(--muted); }

/* Motion */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .62s ease, transform .62s ease;
}
.hero .reveal {
  transform: translateX(26px);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.hero .reveal.is-visible { transform: translateX(0); }
.hero .reveal:nth-child(2) { transition-delay: .06s; }
.hero .reveal:nth-child(3) { transition-delay: .12s; }
.hero .reveal:nth-child(4) { transition-delay: .18s; }
.benefit-card.reveal,
.plan-card.reveal,
.segment-card.reveal,
.testimonial-card.reveal { transition: opacity .62s ease, transform .62s ease, box-shadow .28s ease, border-color .28s ease; }
.testimonial-card.reveal { transform: var(--testimonial-transform, none); }
.testimonial-card.reveal.is-visible { transform: var(--testimonial-transform, none); }
.step-item.reveal,
.animated-list li.reveal { transform: translateX(-26px); }
.step-item.reveal.is-visible,
.animated-list li.reveal.is-visible { transform: translateX(0); }

@keyframes emphasisTilt {
  from { transform: skewX(0deg); }
  to { transform: skewX(-10deg); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
  .text-emphasis { animation: none !important; transform: none; }
  .segment-content > * { opacity: 1; transform: none; }
}

@media (max-width: 1080px) {
  .site-nav { gap: 14px; }
  .site-nav a { font-size: .8rem; }
  .editorial-grid,
  .process-layout,
  .includes-grid,
  .orange-grid { grid-template-columns: 1fr; }
  .process-media img, .includes-media img, .media-card img { min-height: 360px; }
  .stats-panel { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: 0; }
  .stat-item:nth-child(1), .stat-item:nth-child(2) { border-bottom: 1px solid var(--line); }
}

@media (max-width: 900px) {
  :root { --header-height: 72px; }
  .container { width: min(100% - 32px, var(--container)); }
  .nav-wrap { grid-template-columns: auto 1fr auto; gap: 12px; }
  .brand { width: 160px; }
  .brand-logo { width: 154px; }
  .nav-toggle { display: block; justify-self: end; }
  .header-cta { min-height: 40px; padding: 0 14px; font-size: .86rem; }
  .site-nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 20px;
    border-radius: 22px;
    background: rgba(255, 250, 240, .98);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
  }
  .site-nav.is-open { display: flex; }
  .site-nav a { font-size: .95rem; }
  .site-nav .mobile-nav-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 46px;
    margin-top: 6px;
    border-radius: 999px;
    background: var(--orange-500);
    color: white;
    font-weight: 900;
    box-shadow: 0 12px 26px rgba(232, 75, 33, .22);
  }
  .hero { min-height: calc(92svh - var(--header-height)); }
  .hero-media { background-position: 60% center; }
  .hero-content { padding: 92px 0 108px; }
  .benefit-grid, .plans-grid, .event-grid, .testimonial-grid, .footer-grid { grid-template-columns: 1fr; }
  .plan-card.featured { transform: none; }
  .plan-card.featured:hover { transform: translateY(-8px); }
  .segment-card { min-height: 500px; }
  .testimonial-grid {
    min-height: 0;
    gap: 16px;
  }
  .testimonial-image {
    width: min(520px, 100%);
  }
  .testimonial-image img {
    min-height: 520px;
  }
  .testimonial-card {
    position: static;
    width: 100%;
    --testimonial-transform: none;
  }
}

@media (max-width: 620px) {
  html { scroll-padding-top: 78px; }
  .section { padding: 72px 0; }
  .header-cta { display: none; }
  .hero {
    min-height: calc(100svh - var(--header-height));
    align-items: end;
  }
  .hero-media { background-position: 68% center; }
  .hero-overlay {
    background:
      linear-gradient(0deg, rgba(16, 40, 24, .86) 0%, rgba(16, 40, 24, .52) 58%, rgba(16,40,24,.2) 100%);
  }
  .hero-content {
    min-height: calc(100svh - var(--header-height));
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: clamp(24px, 6svh, 54px) 0 clamp(14px, 3svh, 24px);
  }
  .hero h1 {
    margin-bottom: 14px;
    font-size: clamp(2rem, 10.8vw, 3.25rem);
  }
  .hero-text {
    margin-bottom: 18px;
    font-size: .95rem;
    line-height: 1.42;
  }
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }
  .btn { width: 100%; min-height: 44px; }
  .stats-band { margin-top: 14px; padding: 0; background: transparent; }
  .stats-panel {
    width: 100%;
    background: rgba(255, 255, 255, .65);
    border-radius: 18px;
    border-left: 1px solid rgba(33, 48, 37, 0.1);
    border-right: 1px solid rgba(33, 48, 37, 0.1);
    box-shadow: none;
    grid-template-columns: 1fr 1fr;
    opacity: 1;
  }
  .stat-item {
    background: transparent;
    min-height: 72px;
    grid-template-columns: 34px 1fr;
    grid-template-rows: min-content min-content;
    row-gap: 2px;
    column-gap: 9px;
    padding: 10px;
  }
  .stat-icon { width: 34px; height: 34px; font-size: .9rem; }
  .stat-icon svg { width: 17px; height: 17px; }
  .stat-item strong { font-size: .9rem; line-height: 1; }
  .stat-item small { font-size: .72rem; line-height: 1.06; }
  .editorial-grid,
  .process-layout,
  .includes-grid { gap: 28px; }
  .intro-section .media-card {
    display: none;
  }
  .process-section .process-media {
    display: none;
  }
  .includes-section .includes-media {
    display: none;
  }
  .intro-section,
  .process-section,
  .includes-section {
    position: relative;
    overflow: hidden;
  }
  .intro-section .container,
  .process-section .container,
  .includes-section .container {
    position: relative;
    z-index: 1;
  }
  .intro-section::before,
  .intro-section::after,
  .process-section::before,
  .process-section::after,
  .includes-section::before,
  .includes-section::after {
    content: "";
    position: absolute;
    pointer-events: none;
    z-index: 0;
    display: grid;
    place-items: center;
    color: rgba(255, 138, 0, .18);
    font-size: 8.5rem;
    line-height: 1;
    opacity: .34;
  }
  .intro-section::before {
    content: "🍊";
    width: 240px;
    height: 240px;
    right: -120px;
    top: 18%;
  }
  .intro-section::after {
    content: "🍎";
    width: 170px;
    height: 170px;
    left: -96px;
    bottom: 10%;
  }
  .process-section::before {
    content: "🍑";
    width: 260px;
    height: 260px;
    right: -132px;
    bottom: 16%;
  }
  .process-section::after {
    content: "🍌";
    width: 150px;
    height: 150px;
    left: -82px;
    top: 18%;
  }
  .includes-section::before {
    content: "🍊";
    width: 230px;
    height: 230px;
    left: -120px;
    top: 18%;
  }
  .includes-section::after {
    content: "🍎";
    width: 190px;
    height: 190px;
    right: -96px;
    bottom: 8%;
  }
  .section-plans::before,
  .section-plans::after {
    content: "";
    position: absolute;
    z-index: 0;
    pointer-events: none;
    display: grid;
    place-items: center;
    color: rgba(255, 250, 240, .16);
    font-size: 8rem;
    line-height: 1;
  }
  .section-plans::before {
    content: "🍌";
    right: -74px;
    top: 12%;
    transform: rotate(18deg);
  }
  .section-plans::after {
    content: "🍎";
    left: -66px;
    bottom: 10%;
    transform: rotate(-12deg);
  }
  h2 { font-size: clamp(2rem, 10vw, 3rem); }
  .copy-block p, .section-head p, .includes-copy p, .segment-content p, .contact-panel p { font-size: .96rem; }
  .media-card img, .process-media img, .includes-media img { min-height: 290px; border-radius: 22px; }
  .testimonial-image img { min-height: 430px; }
  .benefit-grid { margin-top: 38px; }
  .benefit-card img { height: 210px; }
  .step-item { grid-template-columns: 58px 1fr; gap: 14px; }
  .step-content { padding-left: 18px; }
  .plans-deco-left { width: 135px; height: 135px; top: -18px; left: -44px; }
  .plans-deco-left {
    font-size: 7rem;
  }
  .section-plans { padding-top: 84px; padding-bottom: 84px; }
  .plan-card { padding: 28px 22px; }
  .plan-card h3 { font-size: 1.42rem; }
  .segment-card { min-height: 560px; }
  .segment-content { padding: 28px; max-width: 100%; }
  .dark-card::after { background: linear-gradient(0deg, rgba(7,14,10,.9), rgba(7,14,10,.28)); }
  .light-card::after { background: linear-gradient(0deg, rgba(255,250,240,.94), rgba(255,250,240,.38)); }
  .field-grid { grid-template-columns: 1fr; }
  .orange-zone { padding: 72px 0; }
  .faq-panel, .contact-panel { padding: 24px; border-radius: 24px; }
  .footer-brand img { width: 160px; }
}

@media (max-width: 620px) and (max-height: 720px) {
  .hero-content {
    padding-top: 18px;
    padding-bottom: 14px;
  }

  .hero h1 {
    margin-bottom: 10px;
    font-size: clamp(1.9rem, 10vw, 2.65rem);
  }

  .hero-text {
    margin-bottom: 14px;
    font-size: .9rem;
    line-height: 1.34;
  }

  .hero-actions {
    gap: 8px;
  }

  .btn {
    min-height: 42px;
  }

  .stats-band {
    margin-top: 12px;
  }

  .stat-item {
    min-height: 62px;
    grid-template-columns: 30px 1fr;
    padding: 8px;
  }

  .stat-icon {
    width: 30px;
    height: 30px;
    font-size: .78rem;
  }
  .stat-icon svg {
    width: 15px;
    height: 15px;
  }

  .stat-item strong {
    font-size: .84rem;
  }

  .stat-item small {
    font-size: .68rem;
  }
}


/* Ajustes solicitados - Canastela V4 */
body {
  padding-top: var(--header-height);
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  width: 100%;
}

.hero h1 span,
.copy-block h2 span,
.includes-copy h2 span,
.section-head h2 span,
.process-copy h2 span,
.contact-panel h2 span,
.faq-panel h2 span {
  font-style: normal;
}

/* Misma interacción para las tres cards de planes */
.plan-card,
.plan-card.featured {
  transform: none;
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease, background .28s ease;
}

.plan-card:hover,
.plan-card.featured:hover {
  transform: translateY(-8px);
  box-shadow: 0 38px 88px rgba(0, 0, 0, .22);
  border-color: rgba(255, 138, 0, .55);
}

/* FAQ y contacto: mismo ancho, jerarquías alineadas y preguntas sin cards */
.orange-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
}

.faq-panel,
.contact-panel {
  display: flex;
  flex-direction: column;
}

.faq-panel h2,
.contact-panel h2 {
  margin-bottom: 22px;
  font-size: clamp(2rem, 3.1vw, 3rem);
  line-height: 1.02;
}

.faq-panel .section-tag,
.contact-panel .section-tag {
  color: #6f7a68;
  margin-bottom: 14px;
  font-size: .74rem;
  font-weight: 900;
  letter-spacing: .17em;
  line-height: 1;
}

.faq-list {
  gap: 0;
}

.faq-item {
  border-radius: 0;
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(33, 48, 37, .18);
  box-shadow: none;
}

.faq-item:first-child {
  border-top: 1px solid rgba(33, 48, 37, .18);
}

.faq-item button {
  padding: 18px 0;
  color: var(--green-900);
  font-size: 1rem;
  line-height: 1.35;
  font-weight: 900;
}

.faq-item button span {
  background: transparent;
  color: var(--orange-700);
  font-size: 1.25rem;
}

.faq-answer p {
  padding: 0 34px 18px 0;
  color: var(--muted);
  font-size: .98rem;
  line-height: 1.55;
}

.contact-panel > p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.55;
}

/* Segmentos fitness/eventos: imagen más protagonista y overlay solo en media horizontal */
.segment-card {
  min-height: 620px;
}

.segment-card::after {
  display: none;
}

.segment-card > img {
  object-position: center;
}

.segment-content {
  width: 50%;
  max-width: none;
  min-height: 0;
  padding: 38px 34px;
  position: absolute;
  inset: 0 auto 0 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.dark-card .segment-content {
  background: rgba(7, 14, 10, .80);
}

.light-card .segment-content {
  inset: 0 0 0 auto;
  margin-left: 0;
  background: rgba(255, 250, 240, .90);
}

.segment-content .section-tag {
  white-space: nowrap;
  letter-spacing: .11em;
}

.segment-content h3 {
  margin-bottom: 16px;
  font-size: clamp(1.5rem, 1.85vw, 1.9rem);
  line-height: 1.04;
}

.segment-content ul {
  gap: 10px;
  margin-bottom: 18px;
}

.segment-content li {
  font-size: .94rem;
  line-height: 1.42;
}

.segment-content .btn {
  margin-top: auto;
  align-self: flex-start;
}

.segment-content > * {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .58s ease, transform .58s ease;
}

.segment-card.is-visible .segment-content > * {
  opacity: 1;
  transform: translateY(0);
}

.segment-card.is-visible .segment-content > :nth-child(2) {
  transition-delay: .08s;
}

.segment-card.is-visible .segment-content > :nth-child(3) {
  transition-delay: .16s;
}

@media (max-width: 1080px) {
  .orange-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  body {
    padding-top: var(--header-height);
  }

  .plan-card.featured,
  .plan-card.featured:hover {
    transform: none;
  }

  .plan-card:hover,
  .plan-card.featured:hover {
    transform: translateY(-8px);
  }

  .segment-content {
    width: 58%;
  }
}

@media (max-width: 620px) {
  .segment-card {
    min-height: 620px;
  }

  .segment-content,
  .light-card .segment-content {
    width: auto;
    min-height: 0;
    margin: 0;
    position: absolute;
    top: auto;
    left: 18px;
    right: 18px;
    bottom: 18px;
    padding: 24px;
    border-radius: 22px;
  }

  .segment-content .btn {
    text-align: center;
    line-height: 1.08;
    white-space: normal;
  }

  .dark-card .segment-content {
    background: rgba(7, 14, 10, .86);
  }

  .light-card .segment-content {
    background: rgba(255, 250, 240, .92);
  }

  .segment-content .section-tag {
    white-space: normal;
    letter-spacing: .08em;
  }

  .orange-grid {
    grid-template-columns: 1fr;
  }
}

.segment-content .section-tag::after {
  width: 24px;
  flex: 0 0 24px;
}

/* Testimoniales alrededor de la imagen */
.testimonials {
  min-height: calc(100svh - var(--header-height));
  padding: 34px 0 28px;
  display: flex;
  align-items: center;
}

.testimonials .container {
  width: 100%;
}

.testimonials .section-head {
  max-width: 760px;
  margin-bottom: 18px;
}

.testimonials .section-head h2 {
  font-size: clamp(2.25rem, 4.15vw, 3.65rem);
}

.testimonials .section-tag {
  margin-bottom: 10px;
}

.testimonial-grid {
  position: relative;
  min-height: clamp(430px, 56svh, 520px);
  display: grid;
  grid-template-columns: 1fr;
  place-items: center;
}

.testimonial-image {
  position: relative;
  z-index: 1;
  width: min(430px, 36vw);
  margin: 0;
}

.testimonial-image img {
  min-height: clamp(390px, 52svh, 490px);
}

.testimonial-card {
  position: absolute;
  z-index: 2;
  width: min(270px, 23vw);
  padding: 18px 20px;
  background: rgba(255, 255, 255, .78);
  border: 1px solid rgba(255, 255, 255, .72);
  border-radius: 18px;
  box-shadow: 0 22px 44px rgba(24, 42, 27, .16);
  backdrop-filter: blur(10px);
  transform: var(--testimonial-transform, none);
}

.testimonial-card blockquote {
  margin: 0 0 10px;
  color: var(--green-900);
  font-size: .92rem;
  font-weight: 800;
  line-height: 1.28;
}

.testimonial-card p {
  margin: 0;
  color: var(--green-950);
  font-size: .88rem;
  font-weight: 700;
}

.testimonial-card:nth-of-type(1) { top: 8px; left: 25%; --testimonial-transform: rotate(-2deg); }
.testimonial-card:nth-of-type(2) { right: 24%; bottom: 30px; --testimonial-transform: rotate(2deg); }
.testimonial-card:nth-of-type(3) { top: 96px; right: 23%; --testimonial-transform: rotate(1.5deg); }
.testimonial-card:nth-of-type(4) { left: 22%; bottom: 76px; --testimonial-transform: rotate(1.5deg); }
.testimonial-card:nth-of-type(5) { left: 50%; bottom: 0; --testimonial-transform: translateX(-50%) rotate(-1deg); }

.testimonial-card.reveal,
.testimonial-card.reveal.is-visible {
  transform: var(--testimonial-transform, none);
}

@media (max-width: 900px) {
  .testimonial-grid {
    min-height: 0;
    gap: 16px;
  }

  .testimonial-image {
    width: min(520px, 100%);
  }

  .testimonial-image img {
    min-height: 520px;
  }

  .testimonial-card {
    position: static;
    width: 100%;
    --testimonial-transform: none;
  }
}

@media (max-width: 620px) {
  .testimonial-image img {
    min-height: 430px;
  }

  .testimonial-grid {
    position: relative;
    display: block;
  }

  .testimonial-card {
    position: absolute;
    z-index: 2;
    width: min(212px, 58vw);
    padding: 14px 16px;
    background: rgba(255, 255, 255, .78);
    border: 1px solid rgba(255, 255, 255, .72);
    border-radius: 14px;
    box-shadow: 0 16px 34px rgba(24, 42, 27, .16);
    backdrop-filter: blur(10px);
  }

  .testimonial-card blockquote {
    margin-bottom: 8px;
    font-size: .82rem;
    line-height: 1.18;
  }

  .testimonial-card blockquote::before {
    content: "“";
  }

  .testimonial-card blockquote::after {
    content: "”";
  }

  .testimonial-card p {
    font-size: .72rem;
  }

  .testimonial-card:nth-of-type(1) {
    top: 14px;
    left: 14px;
    --testimonial-transform: rotate(-2deg);
  }

  .testimonial-card:nth-of-type(2) {
    right: 14px;
    bottom: 18px;
    --testimonial-transform: rotate(2deg);
  }

  .testimonial-card:nth-of-type(3) {
    left: 18px;
    bottom: 118px;
    --testimonial-transform: rotate(-1deg);
  }

  .testimonial-card:nth-of-type(n+4) {
    display: none;
  }
}

@media (max-width: 620px) {
  .testimonial-grid {
    position: relative;
    display: block;
    min-height: 0;
  }

  .testimonial-image {
    width: 100%;
  }

  .testimonial-image img {
    height: min(74svh, 680px);
    min-height: 560px;
    object-position: center;
  }

  .testimonial-card {
    position: absolute;
    z-index: 2;
    width: min(250px, 74vw);
    padding: 14px 16px;
    border-radius: 14px;
    background: rgba(255, 255, 255, .78);
    box-shadow: 0 16px 34px rgba(16, 40, 24, .18);
    backdrop-filter: blur(10px);
  }

  .testimonial-card blockquote {
    margin-bottom: 8px;
    font-size: .9rem;
    line-height: 1.2;
  }

  .testimonial-card p {
    font-size: .78rem;
  }

  .testimonial-card:nth-of-type(1) {
    top: 14px;
    left: 14px;
    --testimonial-transform: rotate(-2deg);
  }

  .testimonial-card:nth-of-type(2) {
    right: 12px;
    bottom: 20px;
    --testimonial-transform: rotate(2deg);
  }

  .testimonial-card:nth-of-type(3) {
    left: 14px;
    bottom: 126px;
    --testimonial-transform: rotate(-1deg);
  }

  .testimonial-card:nth-of-type(n + 4) {
    display: none;
  }
}

@media (max-width: 620px) {
  .testimonial-grid {
    position: relative;
    display: block;
    min-height: 0;
  }

  .testimonial-image {
    width: calc(100% - 32px);
    margin-inline: auto;
  }

  .testimonial-image img {
    height: min(74svh, 680px);
    min-height: 560px;
    object-position: center;
  }

  .testimonial-card {
    position: absolute;
    inset: auto;
    z-index: 2;
    width: min(230px, 68vw);
    height: auto;
    max-height: none;
    min-height: 0;
    padding: 12px 14px;
    border-radius: 14px;
    background: rgba(255, 255, 255, .78);
    box-shadow: 0 16px 34px rgba(16, 40, 24, .18);
    backdrop-filter: blur(10px);
  }

  .testimonial-card blockquote {
    margin-bottom: 7px;
    font-size: .82rem;
    line-height: 1.18;
  }

  .testimonial-card p {
    font-size: .72rem;
  }

  .testimonial-card:nth-of-type(1),
  .testimonial-card:nth-of-type(2),
  .testimonial-card:nth-of-type(3) {
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
  }

  .testimonial-card:nth-of-type(1) {
    top: 14px;
    left: 28px;
    --testimonial-transform: rotate(-2deg);
  }

  .testimonial-card:nth-of-type(2) {
    top: 360px;
    right: 28px;
    --testimonial-transform: rotate(2deg);
  }

  .testimonial-card:nth-of-type(3) {
    left: 28px;
    bottom: 18px;
    --testimonial-transform: rotate(-1deg);
  }

  .testimonial-card:nth-of-type(n + 4) {
    display: none;
  }
}

/* Canastela V6 · fruta + snacks + blog */
.hero-split .hero-media {
  background-image: url('/static/img/hero-office-fruit.webp');
  background-position: center;
}

.hero-split .hero-overlay {
  background:
    linear-gradient(90deg, rgba(16, 40, 24, .92) 0%, rgba(16, 40, 24, .72) 46%, rgba(16, 40, 24, .34) 100%),
    radial-gradient(circle at 72% 22%, rgba(255, 138, 0, .30), transparent 24%);
}

.hero-split-content {
  display: grid;
  gap: 28px;
  padding-top: 104px;
  padding-bottom: 96px;
}

.hero-heading {
  max-width: 850px;
}

.hero-choice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  max-width: 1060px;
}

.hero-choice-card {
  position: relative;
  overflow: hidden;
  padding: clamp(24px, 3.2vw, 36px);
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, .32);
  box-shadow: 0 28px 70px rgba(0, 0, 0, .20);
  backdrop-filter: blur(16px);
}

.hero-choice-card::before {
  content: "";
  position: absolute;
  inset: auto -42px -72px auto;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .10);
  pointer-events: none;
}

.office-choice {
  background: rgba(255, 250, 240, .94);
  color: var(--green-900);
}

.wellness-choice {
  background: rgba(10, 30, 18, .74);
  color: white;
}

.choice-label {
  display: inline-flex;
  margin-bottom: 16px;
  color: var(--orange-700);
  font-size: .74rem;
  font-weight: 900;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.wellness-choice .choice-label {
  color: var(--orange-500);
}

.hero-choice-card h2 {
  margin-bottom: 14px;
  font-size: clamp(1.55rem, 2.8vw, 2.55rem);
  line-height: 1;
  letter-spacing: -.055em;
}

.hero-choice-card p {
  max-width: 540px;
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.5;
}

.wellness-choice p {
  color: rgba(255, 255, 255, .82);
}

.hero-choice-card .btn {
  width: auto;
}

.blog-preview-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 16% 0%, rgba(255, 138, 0, .10), transparent 28%),
    linear-gradient(180deg, #fffaf0 0%, #fff7eb 100%);
}

.blog-preview-section::before {
  content: "";
  position: absolute;
  right: -120px;
  top: -120px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: rgba(35, 97, 58, .08);
}

.blog-preview-head {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 36px;
}

.blog-preview-head .section-head {
  margin: 0;
}

.blog-carousel {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 52px 1fr 52px;
  gap: 14px;
  align-items: center;
}

.blog-carousel-window {
  overflow: hidden;
  padding: 34px 0 42px;
  touch-action: pan-y;
  cursor: grab;
}

.blog-carousel-window:active {
  cursor: grabbing;
}

.blog-carousel-track {
  display: flex;
  gap: 22px;
  will-change: transform;
}

.blog-card {
  flex: 0 0 min(360px, 74vw);
  border-radius: 26px;
  overflow: hidden;
  background: rgba(255, 255, 255, .92);
  border: 1px solid rgba(33, 48, 37, .10);
  box-shadow: none;
  transform: scale(.92);
  opacity: .72;
  transition: transform .42s ease, opacity .42s ease, box-shadow .42s ease, border-color .42s ease;
}

.blog-card.is-active {
  transform: scale(1.06);
  opacity: 1;
  border-color: rgba(255, 138, 0, .52);
  box-shadow: none;
}

.blog-card a,
.magazine-card a,
.featured-article a {
  display: grid;
  color: inherit;
  height: 100%;
}

.blog-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.blog-card-body {
  padding: 24px;
}

.blog-meta {
  margin: 0 0 10px;
  color: var(--orange-700);
  font-size: clamp(.76rem, 1vw, .84rem);
  line-height: 1.1;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.blog-card h3,
.magazine-card h2,
.featured-article h2 {
  margin-bottom: 12px;
  color: var(--green-900);
  line-height: 1.04;
}

.blog-card h3 {
  font-size: 1.36rem;
}

.blog-card p:not(.blog-meta),
.magazine-card p:not(.blog-meta),
.featured-article p:not(.blog-meta) {
  color: var(--muted);
  font-size: .96rem;
  line-height: 1.5;
}

.blog-card span,
.magazine-card span,
.featured-article span {
  display: inline-flex;
  margin-top: 4px;
  color: var(--green-800);
  font-weight: 900;
}

.carousel-button {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(33, 48, 37, .12);
  border-radius: 50%;
  background: white;
  color: var(--green-900);
  font-size: 2.1rem;
  line-height: 1;
  font-weight: 700;
  box-shadow: 0 18px 34px rgba(23, 59, 37, .12);
  cursor: pointer;
  transition: transform .18s ease, color .18s ease, border-color .18s ease;
}

.carousel-button:hover {
  transform: translateY(-2px);
  color: var(--orange-700);
  border-color: rgba(255, 138, 0, .36);
}

.snack-note {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: center;
  margin-top: 28px;
  padding: 24px 28px;
  border: 1px solid rgba(255, 255, 255, .32);
  border-radius: 22px;
  background: rgba(255, 250, 240, .12);
  color: white;
}

.snack-note strong {
  color: var(--orange-500);
  font-size: 1.05rem;
  font-weight: 900;
}

.snack-note p {
  margin: 0;
  color: rgba(255, 255, 255, .78);
}

.blog-hero {
  padding: 96px 0 60px;
  background:
    radial-gradient(circle at 86% 8%, rgba(255, 138, 0, .14), transparent 28%),
    linear-gradient(135deg, #fffaf0 0%, #fff7eb 100%);
}

.blog-hero-grid {
  display: grid;
  grid-template-columns: .84fr 1.16fr;
  gap: 42px;
  align-items: center;
}

.blog-hero h1 {
  max-width: 680px;
  margin-bottom: 22px;
  color: var(--green-900);
  font-size: clamp(2.7rem, 6.4vw, 5.8rem);
}

.blog-hero p {
  color: var(--muted);
  font-size: 1.06rem;
}

.featured-article,
.magazine-card {
  overflow: hidden;
  border: 1px solid rgba(33, 48, 37, .10);
  border-radius: 28px;
  background: rgba(255, 255, 255, .86);
  box-shadow: var(--soft-shadow);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.featured-article:hover,
.magazine-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 138, 0, .36);
  box-shadow: var(--shadow);
}

.featured-article img {
  width: 100%;
  height: 340px;
  object-fit: cover;
}

.featured-article div,
.magazine-card div {
  padding: 26px;
}

.featured-article h2 {
  font-size: clamp(1.55rem, 2.6vw, 2.25rem);
}

.magazine-section {
  padding-top: 56px;
  background: var(--cream-50);
}

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

.magazine-card img {
  width: 100%;
  height: 235px;
  object-fit: cover;
}

.magazine-card h2 {
  font-size: 1.35rem;
  letter-spacing: -.04em;
}

.article-page {
  padding: 72px 0 92px;
  background:
    radial-gradient(circle at 12% 2%, rgba(255, 138, 0, .10), transparent 26%),
    var(--cream-50);
}

.article-shell {
  max-width: 980px;
}

.back-link {
  display: inline-flex;
  margin-bottom: 28px;
  color: var(--green-800);
  font-weight: 900;
}

.article-kicker {
  max-width: 860px;
  margin-bottom: 34px;
}

.article-kicker h1 {
  margin-bottom: 20px;
  color: var(--green-900);
  font-size: clamp(2.5rem, 6vw, 5.2rem);
}

.article-kicker > p:not(.blog-meta) {
  color: var(--muted);
  font-size: 1.14rem;
}

.article-hero-image {
  margin: 0 0 42px;
}

.article-hero-image img {
  width: 100%;
  min-height: 440px;
  max-height: 560px;
  object-fit: cover;
  border-radius: 32px;
  box-shadow: var(--shadow);
}

.article-content {
  display: grid;
  gap: 28px;
  max-width: 760px;
  margin-inline: auto;
}

.article-content section {
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(33, 48, 37, .12);
}

.article-content h2 {
  margin-bottom: 12px;
  color: var(--green-900);
  font-size: clamp(1.75rem, 3.4vw, 2.55rem);
  letter-spacing: -.045em;
}

.article-content p {
  margin-bottom: 0;
  color: #445246;
  font-size: 1.05rem;
  line-height: 1.72;
}

.article-source,
.article-cta {
  padding: 26px;
  border-radius: 24px;
  background: white;
  border: 1px solid rgba(33, 48, 37, .10);
  box-shadow: var(--soft-shadow);
}

.article-source strong {
  display: block;
  margin-bottom: 8px;
  color: var(--orange-700);
  font-weight: 900;
}

.article-source p {
  color: var(--muted);
  font-size: .94rem;
  line-height: 1.55;
}

.article-cta {
  background: var(--green-900);
  color: white;
}

.article-cta h2 {
  color: white;
  font-size: clamp(1.8rem, 3.6vw, 2.75rem);
}

.article-cta p {
  margin-bottom: 20px;
  color: rgba(255, 255, 255, .78);
}

.article-cta .btn {
  width: auto;
}

@media (max-width: 1080px) {
  .blog-hero-grid,
  .magazine-grid {
    grid-template-columns: 1fr 1fr;
  }

  .blog-hero-grid > :first-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 900px) {
  .hero-choice-grid,
  .blog-preview-head,
  .blog-hero-grid,
  .magazine-grid {
    grid-template-columns: 1fr;
  }

  .blog-preview-head {
    display: grid;
    align-items: start;
  }

  .blog-preview-head .btn {
    width: fit-content;
  }

  .blog-carousel {
    grid-template-columns: 44px 1fr 44px;
    gap: 8px;
  }

  .carousel-button {
    width: 44px;
    height: 44px;
    font-size: 1.75rem;
  }

  .blog-card {
    flex-basis: min(340px, 72vw);
  }

  .segment-content {
    width: 62%;
  }
}

@media (max-width: 620px) {
  .hero-split {
    min-height: auto;
  }

  .hero-split .hero-media {
    background-position: 58% center;
  }

  .hero-split-content {
    min-height: auto;
    padding-top: 46px;
    padding-bottom: 40px;
    justify-content: start;
  }

  .hero-heading h1 {
    font-size: clamp(2.35rem, 11vw, 3.45rem);
  }

  .hero-choice-grid {
    gap: 12px;
  }

  .hero-choice-card {
    padding: 22px;
    border-radius: 22px;
  }

  .hero-choice-card h2 {
    font-size: 1.55rem;
  }

  .hero-choice-card p {
    font-size: .93rem;
  }

  .hero-choice-card .btn,
  .blog-preview-head .btn,
  .article-cta .btn {
    width: 100%;
  }

  .blog-carousel {
    grid-template-columns: 1fr;
  }

  .carousel-button {
    position: absolute;
    z-index: 4;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, .92);
  }

  .carousel-button:hover {
    transform: translateY(-50%);
  }

  .carousel-prev { left: -4px; }
  .carousel-next { right: -4px; }

  .blog-card {
    flex-basis: min(310px, 78vw);
    transform: scale(.94);
  }

  .blog-card.is-active {
    transform: scale(1.01);
  }

  .blog-card img,
  .magazine-card img {
    height: 210px;
  }

  .blog-hero {
    padding-top: 58px;
  }

  .featured-article img {
    height: 260px;
  }

  .snack-note {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 22px;
  }

  .article-page {
    padding-top: 52px;
  }

  .article-hero-image img {
    min-height: 300px;
    border-radius: 24px;
  }

  .article-content p {
    font-size: 1rem;
  }
}


/* Canastela V7 · ajustes visuales, split panels y tipografías */
body,
button,
input,
textarea {
  font-family: "Figtree", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 400;
}

h1,
h2 {
  font-family: "Figtree", system-ui, sans-serif;
  font-weight: 800;
}

h3,
.benefit-card h3,
.step-content strong,
.plan-card h3,
.segment-panel-content h3,
.blog-card h3,
.magazine-card h2,
.featured-article h2,
.faq-item button,
.contact-form span,
.footer-grid strong {
  font-family: "Figtree", system-ui, sans-serif;
  font-weight: 700;
}

.section-tag,
.hero-kicker,
.blog-meta,
.btn,
.header-cta,
.stat-item strong,
.plan-price,
.plan-size,
.back-link {
  font-family: "Figtree", system-ui, sans-serif;
  font-weight: 800;
}

.text-emphasis,
.blog-preview-title {
  font-family: "Fraunces", Georgia, serif;
  font-style: italic;
  font-weight: 700;
  letter-spacing: -.035em;
}

.intro-section .section-tag,
.process-copy .section-tag,
.segment-panel-content .section-tag {
  font-size: .74rem !important;
}

.section-plans .plan-card-v12 .plan-size {
  font-weight: 900 !important;
}

.article-journal .article-kicker,
.article-journal .article-content {
  max-width: 980px !important;
}

.article-story h2 {
  margin: 42px 0 16px;
  color: var(--green-900);
  font-size: clamp(1.65rem, 2.8vw, 2.35rem);
  line-height: 1.04;
  letter-spacing: -.045em;
}

.article-story .article-lead + h2 {
  margin-top: 34px;
}

@media (min-width: 901px) {
  .article-split-hero .article-shell {
    display: grid;
    grid-template-columns: minmax(0, .92fr) minmax(420px, 1.08fr);
    gap: 34px 42px;
    align-items: center;
  }

  .article-split-hero .back-link,
  .article-split-hero .article-content {
    grid-column: 1 / -1;
  }

  .article-split-hero .article-kicker {
    grid-column: 1;
    margin-bottom: 0;
  }

  .article-split-hero .article-hero-image {
    grid-column: 2;
    margin: 0;
  }

  .article-split-hero .article-hero-image img {
    min-height: 520px;
  }
}

/* Final logo sizing lock: keeps the PNG from clipping in header/footer. */
.brand {
  max-width: none !important;
  overflow: visible;
  padding-right: 12px;
}

.brand-logo {
  width: 170px !important;
  max-width: none;
  display: block;
  object-fit: contain;
  object-position: left center;
  margin-right: 0;
}

.footer-brand img {
  width: 170px !important;
  max-width: none;
  display: block;
  object-fit: contain;
  object-position: left center;
  padding-right: 12px;
}

@media (max-width: 760px) {
  .brand {
    padding-right: 8px;
  }

  .brand-logo {
    width: 166px !important;
  }

  .footer-brand img {
    width: 166px !important;
  }
}


.brand {
  max-width: none !important;
  overflow: visible;
  padding-right: 12px;
}

.brand-logo {
  width: 188px;
  max-width: none;
  display: block;
  object-fit: contain;
  object-position: left center;
  margin-right: 0;
}

.footer-brand img {
  width: 180px;
  max-width: none;
  display: block;
  object-fit: contain;
  object-position: left center;
  padding-right: 12px;
}

@media (max-width: 760px) {
  .brand {
    padding-right: 8px;
  }

  .brand-logo {
    width: 166px;
  }

  .footer-brand img {
    width: 166px;
  }
}

@media (min-width: 901px) {
  .article-split-hero .article-shell {
    display: grid;
    grid-template-columns: minmax(0, .92fr) minmax(420px, 1.08fr);
    gap: 34px 42px;
    align-items: center;
  }

  .article-split-hero .back-link,
  .article-split-hero .article-content {
    grid-column: 1 / -1;
  }

  .article-split-hero .article-kicker {
    grid-column: 1;
    margin-bottom: 0;
  }

  .article-split-hero .article-hero-image {
    grid-column: 2;
    margin: 0;
  }

  .article-split-hero .article-hero-image img {
    min-height: 520px;
  }
}

.article-journal .article-kicker,
.article-journal .article-content {
  max-width: 980px !important;
}

.article-story h2 {
  margin: 42px 0 16px;
  color: var(--green-900);
  font-size: clamp(1.65rem, 2.8vw, 2.35rem);
  line-height: 1.04;
  letter-spacing: -.045em;
}

.article-story .article-lead + h2 {
  margin-top: 34px;
}

.article-journal .article-content {
  max-width: 980px;
}

.article-journal .article-kicker {
  max-width: 980px;
}

.article-story h2 {
  margin: 42px 0 16px;
  color: var(--green-900);
  font-size: clamp(1.65rem, 2.8vw, 2.35rem);
  line-height: 1.04;
  letter-spacing: -.045em;
}

.article-story .article-lead + h2 {
  margin-top: 34px;
}

.text-emphasis {
  color: var(--orange-700);
}

.reveal.is-visible .text-emphasis {
  animation: none;
  transform: none;
}

/* Logo: misma presencia, sin fondo rectangular */
.brand,
.footer-brand img {
  background: transparent;
}

/* Hero dividido en dos mitades definidas */
.hero-dual {
  position: relative;
  min-height: calc(100svh - var(--header-height));
  display: block;
  background: var(--green-950);
  overflow: hidden;
}

.hero-dual-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  min-height: calc(100svh - var(--header-height));
}

.hero-panel {
  position: relative;
  min-height: calc(100svh - var(--header-height));
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
}

.hero-panel::before,
.hero-panel::after,
.segment-panel::before,
.segment-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-panel::before,
.segment-panel::before {
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
}

.hero-panel-office::before {
  background-image: url('/static/img/hero-office-fruit.webp');
  background-position: 48% center;
}

.hero-panel-wellness::before {
  background-image: url('/static/img/gym-basket.webp');
  background-position: 54% center;
}

.hero-panel-office::after {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(16, 40, 24, .94), rgba(16, 40, 24, .70) 58%, rgba(16, 40, 24, .30)),
    radial-gradient(circle at 18% 76%, rgba(255, 138, 0, .30), transparent 28%);
}

.hero-panel-wellness::after {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(255, 250, 240, .94), rgba(255, 250, 240, .76) 50%, rgba(255, 250, 240, .38)),
    radial-gradient(circle at 82% 18%, rgba(35, 97, 58, .20), transparent 24%);
}

.hero-panel + .hero-panel {
  border-left: 8px solid var(--orange-500);
}

.hero-panel-inner {
  width: min(560px, calc(100% - 80px));
  margin-inline: auto;
  padding: 110px 0 190px;
}

.hero-panel-office,
.hero-panel-office .hero-text {
  color: white;
}

.hero-panel-office .hero-text {
  color: rgba(255,255,255,.88);
}

.hero-panel-wellness {
  color: var(--green-950);
}

.hero-panel-wellness .hero-text {
  color: #46594d;
}

.hero-panel h1 {
  max-width: 640px;
  margin: 0 0 22px;
  font-size: clamp(2.85rem, 5.1vw, 5.6rem);
  line-height: .96;
  letter-spacing: -.06em;
}

.hero-panel .hero-text {
  max-width: 560px;
  margin-bottom: 28px;
  font-size: clamp(1rem, 1.3vw, 1.12rem);
  line-height: 1.55;
}

.hero-stats {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 28px;
  z-index: 3;
  margin: 0;
  pointer-events: none;
}

.hero-stats .stats-panel {
  pointer-events: auto;
  background: rgba(255, 250, 240, .88);
  backdrop-filter: blur(16px);
}

/* Sección de espacios a todo el ancho, dividida por mitad */
.segment-dual-section {
  padding: 0;
  background: var(--green-950);
}

.segment-split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  min-height: 720px;
}

.segment-panel {
  position: relative;
  min-height: 720px;
  display: flex;
  align-items: stretch;
  overflow: hidden;
  isolation: isolate;
}

.segment-panel-wellness::before {
  background-image: url('/static/img/gym-basket.webp');
  background-position: center;
}

.segment-panel-events::before {
  background-image: url('/static/img/event-baskets.webp');
  background-position: center;
}

.segment-panel-wellness::after {
  z-index: -1;
  background: linear-gradient(90deg, rgba(7,14,10,.88), rgba(7,14,10,.34));
}

.segment-panel-events::after {
  z-index: -1;
  background: linear-gradient(90deg, rgba(255,250,240,.94), rgba(255,250,240,.50));
}

.segment-panel + .segment-panel {
  border-left: 8px solid var(--orange-500);
}

.segment-panel-content {
  width: min(520px, calc(100% - 76px));
  margin: auto;
  padding: 42px 0;
}

.process-copy .section-tag,
.segment-panel-content .section-tag {
  font-size: .74rem;
}

.segment-panel-wellness .segment-panel-content {
  color: white;
}

.segment-panel-wellness .segment-panel-content li,
.segment-panel-wellness .segment-panel-content p {
  color: rgba(255,255,255,.84);
}

.segment-panel-events .segment-panel-content {
  color: var(--green-950);
}

.segment-panel-events .segment-panel-content li,
.segment-panel-events .segment-panel-content p {
  color: #4a5a4f;
}

.segment-panel-content h3 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 3.2vw, 3.35rem);
  line-height: 1;
  letter-spacing: -.055em;
}

.segment-panel-content ul {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0 0 26px;
  list-style: none;
}

.segment-panel-content li {
  position: relative;
  padding-left: 30px;
  line-height: 1.48;
}

.segment-panel-content li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 1px;
  width: 19px;
  height: 19px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--orange-500);
  color: white;
  font-size: .72rem;
  font-weight: 800;
}

.segment-panel-content .btn {
  width: auto;
}

/* Blog landing: título simple al centro y carrusel abajo */
.blog-preview-section {
  padding-top: 92px;
}

.blog-preview-title-wrap {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  text-align: center;
  gap: 20px;
  margin-bottom: 26px;
}

.blog-preview-title {
  margin: 0;
  color: var(--orange-700);
  font-size: clamp(3rem, 6.8vw, 6.2rem);
  line-height: .92;
}

.blog-preview-title-wrap .btn {
  width: auto;
}

.blog-card img,
.magazine-card img,
.featured-article img,
.article-hero-image img {
  background: var(--cream-100);
}

.blog-card h3 {
  font-weight: 700;
}

/* V7 mobile */
@media (max-width: 980px) {
  .hero-dual-grid,
  .segment-split {
    grid-template-columns: 1fr;
  }

  .hero-panel,
  .hero-dual-grid {
    min-height: auto;
  }

  .hero-panel {
    min-height: 72svh;
  }

  .hero-panel + .hero-panel,
  .segment-panel + .segment-panel {
    border-left: 0;
    border-top: 7px solid var(--orange-500);
  }

  .hero-panel-inner {
    width: min(640px, calc(100% - 48px));
    padding: 82px 0 120px;
  }

  .hero-stats {
    position: relative;
    bottom: auto;
    padding: 18px 0;
    background: var(--cream-50);
  }

  .segment-split,
  .segment-panel {
    min-height: 620px;
  }
}

@media (max-width: 620px) {
  .hero-dual {
    min-height: auto;
  }

  .hero-panel {
    min-height: 78svh;
  }

  .hero-panel-inner {
    width: min(100% - 32px, 560px);
    padding: 58px 0 84px;
  }

  .hero-panel h1 {
    font-size: clamp(2.25rem, 11vw, 3.45rem);
  }

  .hero-panel .btn,
  .segment-panel-content .btn,
  .blog-preview-title-wrap .btn {
    width: 100%;
  }

  .segment-split,
  .segment-panel {
    min-height: 560px;
  }

  .segment-panel-content {
    width: min(100% - 36px, 520px);
    margin: auto auto 30px;
    padding: 24px;
    border-radius: 24px;
    background: rgba(255,250,240,.90);
    color: var(--green-950);
    box-shadow: 0 24px 60px rgba(0,0,0,.18);
  }

  .segment-panel-wellness .segment-panel-content {
    background: rgba(7,14,10,.84);
    color: white;
  }

  .segment-panel-content h3 {
    font-size: clamp(1.65rem, 8vw, 2.5rem);
  }

  .blog-preview-title {
    font-size: clamp(2.6rem, 14vw, 4.4rem);
  }
}


/* Canastela V8 refinements */
.section-tag,
.hero-kicker,
.choice-label,
.blog-meta,
.featured-label,
.plan-badge {
  font-size: .74rem;
}

h1,
h2 {
  font-family: "Figtree", system-ui, sans-serif;
  font-weight: 800;
}

h3,
.benefit-card h3,
.step-content strong,
.plan-card h3,
.segment-panel-content h3,
.blog-card h3,
.magazine-card h2,
.featured-article h2,
.faq-item button,
.contact-form span,
.footer-grid strong {
  font-family: "Figtree", system-ui, sans-serif;
  font-weight: 700;
}

body,
p,
li,
input,
textarea,
button {
  font-family: "Figtree", system-ui, sans-serif;
  font-weight: 400;
}

.btn,
.header-cta,
.section-tag,
.hero-kicker,
.blog-meta,
.featured-label,
.stat-item strong,
.plan-price,
.plan-size,
.back-link {
  font-family: "Figtree", system-ui, sans-serif;
  font-weight: 800;
}

.text-emphasis,
.blog-preview-title {
  font-family: "Fraunces", Georgia, serif;
  font-style: italic;
  font-weight: 700;
  letter-spacing: -.035em;
}

.text-emphasis {
  display: inline-block;
  color: var(--orange-700);
  transform: skewX(0deg);
  transform-origin: 18% 82%;
}

.hero h1 .text-emphasis {
  color: var(--orange-500);
}

.reveal.is-visible .text-emphasis {
  animation: emphasisTilt .21s cubic-bezier(.2, .8, .22, 1) .26s forwards;
}

.hero.full-bleed .hero-content {
  padding-top: 120px;
  padding-bottom: 120px;
}

.hero.full-bleed .stats-band {
  max-width: 100%;
}

.hero.full-bleed .stats-panel {
  background: rgba(255, 250, 240, .88);
  backdrop-filter: blur(14px);
}

.section-plans .section-head {
  margin-bottom: 40px;
}

.section-plans .section-head h2 {
  margin-bottom: 10px;
}

.section-plans .section-head h2 + p {
  margin-top: 0;
}

.blog-index-hero {
  padding: 98px 0 54px;
}

.blog-index-heading {
  text-align: center;
  margin-bottom: 34px;
}

.blog-index-heading .blog-preview-title {
  margin: 0;
  color: var(--orange-700);
  font-size: clamp(3.2rem, 7vw, 6.4rem);
  line-height: .95;
}

.featured-wrap {
  max-width: 1080px;
}

.featured-label {
  display: block;
  margin: 0 0 14px;
  color: var(--green-900);
  letter-spacing: .05em;
  text-transform: none;
}

.blog-hero-grid {
  grid-template-columns: 1fr;
}

.featured-article a {
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, .92fr);
  align-items: stretch;
}

.featured-article img {
  height: 100%;
  min-height: 420px;
}

.article-journal .article-content {
  max-width: 790px;
  gap: 34px;
}

.article-journal .article-content section {
  padding-bottom: 0;
  border-bottom: 0;
}

.article-story p {
  margin-bottom: 26px;
  color: #38473d;
  font-size: 1.08rem;
  line-height: 1.82;
}

.article-story p:last-child {
  margin-bottom: 0;
}

.article-story .article-lead {
  color: var(--green-900);
  font-size: clamp(1.22rem, 2vw, 1.45rem);
  line-height: 1.62;
  letter-spacing: -.02em;
}

.article-source ul {
  margin: 14px 0 0;
  padding-left: 20px;
  color: #4d5c52;
}

.article-source li {
  margin: 8px 0;
}

.article-source a {
  color: var(--green-800);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

@media (max-width: 900px) {
  .featured-article a {
    grid-template-columns: 1fr;
  }
  .featured-article img {
    min-height: 300px;
  }
  .hero.full-bleed .hero-content {
    padding-top: 92px;
    padding-bottom: 104px;
  }
}


/* Canastela V9 · blog editorial refinements */
.blog-index-hero {
  padding: 106px 0 66px;
}

.blog-index-layout {
  display: grid;
  grid-template-columns: minmax(260px, .72fr) minmax(0, 1.28fr);
  gap: clamp(34px, 5vw, 72px);
  align-items: center;
}

.blog-index-heading {
  text-align: left;
  margin-bottom: 0;
}

.blog-index-heading .blog-preview-title {
  max-width: 440px;
  margin: 0;
  color: var(--orange-700);
  font-size: clamp(3.2rem, 7.5vw, 7rem);
  line-height: .9;
}

.featured-wrap {
  max-width: none;
  width: 100%;
}

.featured-label {
  margin-bottom: 16px;
  font-size: .74rem;
}

.featured-article a {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr);
}

.magazine-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.magazine-card h2 {
  font-size: 1.18rem;
}

.article-story p {
  font-size: 1.1rem;
  line-height: 1.86;
}

.article-story .article-lead {
  font-size: clamp(1.24rem, 2.05vw, 1.48rem);
  line-height: 1.66;
}

.article-source {
  padding: 2px 0 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  color: rgba(56, 71, 61, .54);
  font-size: .825rem;
  line-height: 1.45;
}

.article-source h3 {
  margin: 0 0 7px;
  color: rgba(56, 71, 61, .58);
  font-size: .93rem;
  font-family: "Figtree", system-ui, sans-serif;
  font-weight: 700;
  letter-spacing: .02em;
}

.article-source ul {
  margin: 0;
  padding-left: 14px;
  color: rgba(56, 71, 61, .54);
}

.article-source li {
  margin: 4px 0;
}

.article-source a {
  color: inherit;
  font-weight: inherit;
  text-decoration: none;
  pointer-events: none;
}

.article-cta {
  text-align: center;
  display: grid;
  justify-items: center;
}

.article-cta .btn {
  justify-self: center;
  margin-inline: auto;
}

@media (max-width: 1120px) {
  .magazine-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .blog-index-layout,
  .featured-article a {
    grid-template-columns: 1fr;
  }

  .blog-index-heading {
    text-align: center;
  }

  .blog-index-heading .blog-preview-title {
    max-width: none;
    margin-inline: auto;
  }
}

@media (max-width: 640px) {
  .magazine-grid {
    grid-template-columns: 1fr;
  }
}


/* Canastela V10 · blog/carousel/snacks fixes */
.blog-preview-section::before {
  display: none;
}

.blog-carousel {
  grid-template-columns: 58px minmax(0, 1fr) 58px;
  gap: 20px;
}

.blog-carousel-window {
  padding: 40px 6px 48px;
}

.blog-carousel-track {
  align-items: stretch;
}

.blog-card {
  flex: 0 0 min(372px, 72vw);
}

.blog-card.is-active {
  transform: scale(1.05);
}

.blog-card-body {
  min-height: 292px;
}

.blog-preview-title-wrap {
  margin-bottom: 34px;
}

.carousel-button {
  position: relative;
  z-index: 3;
}

.blog-index-layout {
  grid-template-columns: minmax(280px, .58fr) minmax(0, 1.42fr);
  gap: clamp(36px, 5vw, 78px);
  align-items: start;
}

.blog-index-heading,
.featured-wrap {
  min-width: 0;
}

.blog-index-heading {
  padding-top: 32px;
}

.blog-index-heading .blog-preview-title {
  max-width: 380px;
  font-size: clamp(3rem, 5.9vw, 5.9rem);
  line-height: .9;
}

.featured-wrap {
  justify-self: end;
}

.featured-article a {
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, .88fr);
}

.snack-focus-section {
  padding-top: 0;
  padding-bottom: 0;
  background: var(--cream-50);
}

.snack-split {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, .92fr);
  min-height: 700px;
}

.snack-visual-panel {
  position: relative;
  background:
    radial-gradient(circle at 20% 16%, rgba(255, 138, 0, .14), transparent 28%),
    linear-gradient(180deg, #fff9f0 0%, #fff3e0 100%);
  overflow: hidden;
}

.snack-visual-shell {
  position: relative;
  width: min(760px, calc(100% - 80px));
  height: 100%;
  min-height: 700px;
  margin: 0 auto;
}

.snack-woodbox {
  position: absolute;
  display: grid;
  gap: 18px;
  align-items: end;
  padding: 26px 22px 22px;
  border-radius: 20px;
  background: linear-gradient(180deg, #c79a67 0%, #a86e3f 100%);
  box-shadow: 0 26px 60px rgba(90, 44, 13, .22);
}

.snack-woodbox::before {
  content: "";
  position: absolute;
  inset: 12px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.22);
  pointer-events: none;
}

.snack-woodbox-large {
  left: 6%;
  top: 15%;
  width: clamp(320px, 58%, 440px);
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.snack-woodbox-small {
  right: 10%;
  bottom: 16%;
  width: clamp(240px, 38%, 310px);
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.snack-woodbox img,
.snack-floating img {
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 14px 20px rgba(0,0,0,.12));
}

.snack-floating {
  position: absolute;
  width: clamp(120px, 18%, 170px);
  padding: 16px 14px;
  border-radius: 18px;
  background: rgba(255,255,255,.9);
  box-shadow: 0 22px 48px rgba(23,59,37,.12);
}

.snack-floating-a {
  right: 18%;
  top: 14%;
}

.snack-floating-b {
  left: 16%;
  bottom: 10%;
}

.snack-copy-panel {
  display: grid;
  align-items: center;
  background: var(--green-950);
  color: white;
}

.snack-copy-inner {
  width: min(560px, calc(100% - 72px));
  margin: 0 auto;
  padding: 90px 0;
  text-align: right;
}

.snack-copy-inner .section-tag {
  color: rgba(255,255,255,.76);
}

.snack-copy-inner h2 {
  margin-bottom: 20px;
  color: white;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1.02;
}

.snack-copy-inner p {
  color: rgba(255,255,255,.84);
  font-size: 1rem;
  line-height: 1.72;
}

.snack-copy-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 30px;
  display: grid;
  gap: 12px;
}

.snack-copy-list li {
  position: relative;
  padding-right: 20px;
  color: rgba(255,255,255,.92);
  line-height: 1.6;
}

.snack-copy-list li::after {
  content: "•";
  position: absolute;
  right: 0;
  top: 0;
  color: var(--orange-500);
  font-size: 1.1rem;
}

.snack-copy-inner .btn {
  width: auto;
  margin-left: auto;
}

@media (max-width: 1120px) {
  .blog-index-layout {
    grid-template-columns: minmax(240px, .7fr) minmax(0, 1.3fr);
    gap: 28px;
  }

  .snack-split {
    grid-template-columns: 1fr;
  }

  .snack-visual-shell,
  .snack-visual-panel {
    min-height: 620px;
  }

  .snack-copy-inner {
    width: min(680px, calc(100% - 56px));
    text-align: left;
    padding: 72px 0 84px;
  }

  .snack-copy-inner .btn {
    margin-left: 0;
  }

  .snack-copy-list li {
    padding-right: 0;
    padding-left: 20px;
  }

  .snack-copy-list li::after {
    right: auto;
    left: 0;
  }
}

@media (max-width: 900px) {
  .blog-carousel {
    grid-template-columns: 44px minmax(0, 1fr) 44px;
    gap: 10px;
  }

  .blog-card {
    flex-basis: min(320px, 76vw);
  }

  .blog-card-body {
    min-height: 0;
  }

  .blog-index-layout,
  .featured-article a {
    grid-template-columns: 1fr;
  }

  .blog-index-heading {
    text-align: left;
    padding-top: 0;
  }

  .blog-index-heading .blog-preview-title {
    max-width: 320px;
  }

  .featured-wrap {
    justify-self: stretch;
  }

  .snack-visual-shell,
  .snack-visual-panel {
    min-height: 560px;
  }

  .snack-woodbox-large {
    left: 4%;
    width: min(88%, 400px);
  }

  .snack-woodbox-small {
    right: 4%;
    width: min(68%, 280px);
  }

  .snack-floating-a { right: 8%; top: 10%; }
  .snack-floating-b { left: 10%; bottom: 8%; }
}

@media (max-width: 640px) {
  .blog-index-heading .blog-preview-title {
    max-width: none;
    font-size: clamp(2.6rem, 13vw, 4.5rem);
  }

  .blog-preview-title-wrap {
    gap: 16px;
  }

  .snack-visual-shell,
  .snack-visual-panel {
    min-height: 500px;
  }

  .snack-visual-shell {
    width: min(100% - 32px, 640px);
  }

  .snack-woodbox {
    padding: 20px 16px 16px;
    gap: 12px;
  }

  .snack-woodbox-large {
    top: 14%;
    width: min(92%, 360px);
  }

  .snack-woodbox-small {
    bottom: 18%;
    width: min(70%, 250px);
  }

  .snack-floating {
    width: 110px;
    padding: 10px;
  }

  .snack-copy-inner {
    width: min(100% - 32px, 560px);
    padding: 56px 0 64px;
  }
}

/* Final locks for shared eyebrow, plan price, article, and logo treatments. */
.intro-section .section-tag,
.process-copy .section-tag,
.segment-panel-content .section-tag {
  font-size: .74rem !important;
}

.section-plans .plan-card-v12 .plan-size {
  font-weight: 900 !important;
}

.article-journal .article-kicker,
.article-journal .article-content {
  max-width: 980px !important;
}

.article-story h2 {
  margin: 42px 0 16px;
  color: var(--green-900);
  font-size: clamp(1.65rem, 2.8vw, 2.35rem);
  line-height: 1.04;
  letter-spacing: -.045em;
}

.article-story .article-lead + h2 {
  margin-top: 34px;
}

@media (min-width: 901px) {
  .article-split-hero .article-shell {
    display: grid;
    grid-template-columns: minmax(0, .92fr) minmax(420px, 1.08fr);
    gap: 34px 42px;
    align-items: center;
  }

  .article-split-hero .back-link,
  .article-split-hero .article-content {
    grid-column: 1 / -1;
  }

  .article-split-hero .article-kicker {
    grid-column: 1;
    margin-bottom: 0;
  }

  .article-split-hero .article-hero-image {
    grid-column: 2;
    margin: 0;
  }

  .article-split-hero .article-hero-image img {
    min-height: 520px;
  }
}

.brand {
  max-width: none !important;
  overflow: visible;
  padding-right: 12px;
}

.brand-logo {
  width: 218px !important;
  max-width: none;
  display: block;
  object-fit: contain;
  object-position: left center;
  margin-right: 0;
}

.footer-brand img {
  width: 210px !important;
  max-width: none;
  display: block;
  object-fit: contain;
  object-position: left center;
  padding-right: 12px;
}

@media (max-width: 760px) {
  .brand {
    padding-right: 8px;
  }

  .brand-logo {
    width: 194px !important;
  }

  .footer-brand img {
    width: 194px !important;
  }
}
