/* ===== NAV ===== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center;
  padding: 18px clamp(20px, 4vw, 40px);
  background: rgba(251, 246, 236, 0.4); /* Muito mais transparente para o efeito glass */
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  transition: all .4s var(--ease);
}
.nav-meta {
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--ink-soft);
}
.nav-logo {
  justify-self: center; color: var(--ink); height: 42px;
  display: flex; align-items: center;
}
.nav-logo svg, .nav-logo img { height: 100%; width: auto; display: block; }
.nav-cta {
  justify-self: end;
  font-family: var(--font-body); font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--orange-deep); padding: 10px 18px; border-radius: var(--r-pill);
  border: 1px solid var(--orange-deep); transition: all .4s var(--ease);
  background: transparent;
}
.nav-cta:hover { background: var(--orange-deep); color: #fff; border-color: var(--orange-deep); }
@media (max-width: 720px) {
  .nav-meta { display: none; }
  .nav { grid-template-columns: 1fr auto; }
  .nav-logo { justify-self: start; }
}

/* ===== HERO ===== */
.hero {
  position: relative; min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 120px 0 0;
  overflow: hidden;
  isolation: isolate;
  background-color: var(--bg);
}

.hero-mesh {
  position: absolute; inset: 0; z-index: -1;
  overflow: hidden;
  background: var(--bg);
  /* A sutil overlay de ruído (noise/grain) para manter a textura premium */
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.05'/%3E%3C/svg%3E");
}
.hero-mesh-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.65;
  animation: float-blob 20s infinite alternate ease-in-out;
  will-change: transform;
}
.hero-mesh-blob:nth-child(1) {
  top: -10%; left: -10%; width: 50vw; height: 50vw;
  background: var(--orange-soft);
  animation-delay: 0s;
}
.hero-mesh-blob:nth-child(2) {
  top: 40%; right: -20%; width: 60vw; height: 60vw;
  background: color-mix(in oklab, var(--moss) 35%, transparent);
  animation-delay: -5s;
  animation-duration: 24s;
}
.hero-mesh-blob:nth-child(3) {
  bottom: -20%; left: 20%; width: 55vw; height: 55vw;
  background: color-mix(in oklab, var(--orange-tint) 80%, transparent);
  animation-delay: -10s;
  animation-duration: 22s;
}
@keyframes float-blob {
  0% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(5%, 10%) scale(1.15) rotate(5deg); }
  66% { transform: translate(-5%, 5%) scale(0.9) rotate(-5deg); }
  100% { transform: translate(2%, -5%) scale(1.05) rotate(0deg); }
}

.hero-inner { 
  order: 1;
  width: min(1100px, 92vw); text-align: center; position: relative; z-index: 1; 
  padding-bottom: 60px;
}
.hero-eyebrow {
  order: 2;
  font-family: var(--font-mono); font-size: 18px; letter-spacing: 0.28em; text-transform: uppercase;
  color: #3f3d2d;
  background: #FFB696;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  overflow: hidden;
  white-space: nowrap;
  display: block;
  padding: 12px 0;
  margin-top: auto;
  margin-bottom: 0;
}
.hero-eyebrow br { display: none; }

.hero-eyebrow-inner {
    display: inline-block;
    animation: hero-marquee 20s linear infinite;
}

@keyframes hero-marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}
.hero h1 {
  font-family: var(--font-display); font-weight: 300;
  font-size: clamp(40px, 6.5vw, 88px);
  line-height: 1.02; letter-spacing: -0.015em;
  margin: 22px 0 20px;
  text-wrap: balance;
  color: var(--ink);
}
.hero h1 em {
  font-family: var(--font-display-it); font-style: italic; font-weight: 500;
  color: var(--orange-deep);
}
.hero-lede {
  max-width: 640px; margin: 0 auto 36px;
  font-size: clamp(15px, 1.3vw, 18px);
  line-height: 1.6; color: var(--ink-soft);
  text-wrap: pretty;
}

.hero-meta {
  display: flex; gap: clamp(20px, 5vw, 60px); justify-content: center; flex-wrap: wrap;
  margin-bottom: 36px; font-family: var(--font-mono); font-size: 12px;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink-soft);
}
.hero-meta-item { display: inline-flex; gap: 10px; align-items: center; }
.hero-meta-icon {
  width: 28px; height: 28px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--bg);
  border: 1px solid var(--rule);
}
.hero-cta-row { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.hero-microcopy {
  margin-top: 22px; font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--muted);
}

.hero-video-thumb {
  margin-top: clamp(48px, 6vw, 80px);
  width: 100%;
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
  aspect-ratio: 16/9;
  border-radius: var(--r-card);
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.1), 0 0 0 1px var(--rule);
  transform: translateZ(0); /* Safari border-radius fix */
}
.hero-video-thumb iframe {
  width: 100%;
  height: 100%;
  display: block;
}

/* ===== Video Modal ===== */
.video-modal {
  position: fixed; inset: 0; z-index: 100;
  background: rgba(20, 18, 16, 0.86);
  backdrop-filter: blur(8px);
  display: grid; place-items: center; padding: 24px;
  opacity: 0; pointer-events: none; transition: opacity .4s var(--ease);
}
.video-modal.open { opacity: 1; pointer-events: auto; }
.video-modal-frame {
  width: min(1100px, 100%);
  aspect-ratio: 16/9; background: #000; border-radius: 8px; overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,.5);
}
.video-modal-frame iframe { width: 100%; height: 100%; border: 0; }
.video-close {
  position: absolute; top: 24px; right: 28px;
  color: #F5EFE3; font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.18em; text-transform: uppercase;
  display: inline-flex; gap: 10px; align-items: center;
}

/* ===== PAIN ===== */
.pain {
  background: var(--bg);
  padding: clamp(100px, 14vw, 180px) 0;
  text-align: center;
}
.pain-eyebrow { margin-bottom: 32px; display: block; }
.pain-quote {
  font-family: var(--font-display); font-weight: 300;
  font-size: clamp(32px, 4.4vw, 60px); line-height: 1.08; letter-spacing: -0.01em;
  text-wrap: balance; max-width: 980px;
  margin: 0 auto 80px;
}
.pain-quote em {
  font-family: var(--font-display-it); font-style: italic; font-weight: 500;
  color: var(--orange-deep);
}
.pain-grid {
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px; background: var(--rule);
  border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule);
}
.pain-item {
  background: var(--bg);
  padding: 40px clamp(20px, 3vw, 36px);
  display: grid; grid-template-columns: auto 1fr; gap: 24px;
  align-items: start; text-align: left;
}
.pain-num {
  font-family: var(--font-mono); font-size: 16px; letter-spacing: 0.16em;
  color: var(--orange-deep); padding-top: 6px;
}
.pain-h {
  font-family: var(--font-display); font-weight: 400; font-style: italic;
  font-size: clamp(20px, 2vw, 26px); margin: 0 0 8px;
  color: var(--ink);
}
.pain-p {
  font-size: 15px; line-height: 1.55; color: var(--ink-soft); text-wrap: pretty;
}
.pain-foot {
  margin-top: 64px; max-width: 720px;
  font-size: 16px; color: var(--ink-soft); line-height: 1.6;
  margin-left: auto; margin-right: auto;
}
@media (max-width: 768px) {
  .pain-grid { grid-template-columns: minmax(0, 1fr); }
  .pain-item { padding-right: 0; }
}

/* ===== SOLUTION ===== */
.solution {
  background: var(--bg-soft);
  padding: clamp(100px, 14vw, 180px) 0;
  position: relative; overflow: hidden;
}
.solution-arc {
  position: absolute; left: 50%; top: -10%; width: min(900px, 90vw);
  aspect-ratio: 1.6/1; transform: translateX(-50%);
  background: radial-gradient(ellipse at center, var(--orange-tint) 0%, transparent 60%);
  opacity: 0.55; pointer-events: none;
}
.solution-grid {
  display: grid; grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: clamp(40px, 5vw, 80px); align-items: center; position: relative;
}
.solution h2 {
  font-family: var(--font-display); font-weight: 300;
  font-size: clamp(36px, 5vw, 64px); line-height: 1.05;
  margin: 16px 0 0; text-wrap: balance;
}
.solution h2 em {
  font-family: var(--font-display-it); font-style: italic; font-weight: 500;
  color: var(--orange-deep);
}
.solution-head {
  text-align: center;
  max-width: 1280px;
  margin: 0 auto 64px;
}
.solution-eyebrow { margin-bottom: 8px; }
.solution-block-h {
  font-family: var(--font-display); font-weight: 400; font-style: italic;
  font-size: clamp(18px, 1.6vw, 22px); color: var(--orange-deep);
  margin: 0 0 14px;
}
.solution-p {
  font-size: 17px; line-height: 1.65; color: var(--ink-soft);
  text-wrap: pretty; margin: 0 0 28px;
}
.solution-stamp {
  margin-top: 32px; width: 132px; height: 132px; color: var(--moss); opacity: .8;
}
@media (max-width: 880px) {
  .solution-grid { grid-template-columns: minmax(0, 1fr); gap: 32px; }
}

/* ===== Breath Orb (Solution dynamic graphic) ===== */
.breath-orb {
  position: relative;
  width: min(600px, 100%);
  aspect-ratio: 1/1;
  margin: 0 auto;
  display: grid; place-items: center;
  color: var(--moss);
}
.breath-rings {
  position: absolute; inset: 0;
  display: grid; place-items: center;
}
.breath-rings span {
  position: absolute;
  border-radius: 50%;
  border: 1px solid color-mix(in oklab, var(--orange) 60%, transparent);
  width: 100%; height: 100%;
  animation: breath 16s var(--ease) infinite;
}
.breath-rings span:nth-child(1) { animation-delay: 0s; }
.breath-rings span:nth-child(2) { animation-delay: -4s; }
.breath-rings span:nth-child(3) { animation-delay: -8s; }
.breath-rings span:nth-child(4) { animation-delay: -12s; }
@keyframes breath {
  0%   { transform: scale(0.40); opacity: 0; border-color: var(--orange); }
  25%  { transform: scale(0.78); opacity: 1; }
  50%  { transform: scale(0.78); opacity: 0.7; }
  75%  { transform: scale(1.0); opacity: 0.4; border-color: var(--moss); }
  100% { transform: scale(1.0); opacity: 0; }
}
.breath-core {
  position: relative; z-index: 2;
  width: 60%; aspect-ratio: 1/1; border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, var(--orange-soft), var(--orange) 60%, var(--orange-deep));
  display: grid; place-items: center; align-content: center; gap: 6px;
  color: #fff; text-align: center;
  box-shadow: 0 20px 60px color-mix(in oklab, var(--orange) 35%, transparent);
  animation: breathCore 16s var(--ease) infinite;
}
@keyframes breathCore {
  0%, 100% { transform: scale(0.92); }
  25% { transform: scale(1.06); }
  50% { transform: scale(1.06); }
  75% { transform: scale(0.92); }
}
.breath-phase {
  font-family: var(--font-display); font-style: italic; font-weight: 500;
  font-size: clamp(22px, 2.4vw, 32px); letter-spacing: -0.01em;
}
.breath-meta {
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.22em;
  text-transform: uppercase; opacity: 0.85;
}
.breath-orbit {
  position: absolute; inset: 0; width: 100%; height: 100%;
  animation: spin 60s linear infinite;
  pointer-events: none;
}

/* ===== Instagram Carousel ===== */
.insta-carousel-section {
  background: #FFD1BC;
  padding: 20px 0;
  overflow: hidden;
  position: relative;
}
.insta-carousel-cta-row {
  display: flex; justify-content: center; align-items: center;
  position: absolute; inset: 0; z-index: 10;
  pointer-events: none;
}
.insta-carousel-cta-row button {
  pointer-events: auto;
  /* Glass effect */
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1.5px solid rgba(255, 255, 255, 0.45);
  color: #fff;
  text-shadow: 0 1px 2px rgba(0,0,0,0.18);
  box-shadow: 0 8px 32px rgba(0,0,0,0.14), inset 0 1px 0 rgba(255,255,255,0.35);
  transition: background .4s var(--ease), transform .4s var(--ease), box-shadow .4s var(--ease);
}
.insta-carousel-cta-row button:hover {
  background: rgba(255, 255, 255, 0.30);
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.18), inset 0 1px 0 rgba(255,255,255,0.45);
}
.insta-carousel-top-space { height: 20px; }
.insta-carousel-bottom-space { height: 20px; }
.insta-carousel-mask {
  width: 100%;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
}
.insta-carousel-track {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: carouselScroll 36s linear infinite;
}
.insta-carousel-track:hover { animation-play-state: paused; }
.insta-carousel-slide {
  flex: 0 0 auto;
  width: clamp(260px, 33vw, 480px);
  aspect-ratio: 4/5;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #F68655;
}
.insta-carousel-slide img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s var(--ease);
}
.insta-carousel-slide:hover img { transform: scale(1.04); }
@keyframes carouselScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (max-width: 640px) {
  .insta-carousel-slide { width: 66vw; }
  .insta-carousel-track { animation-duration: 18s; }
}

/* ===== Stat row (Solution) ===== */
.stat-row {
  margin-top: 36px; padding-top: 28px;
  border-top: 1px solid var(--rule);
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
.stat-cell { display: flex; flex-direction: column; gap: 6px; }
.stat-n {
  font-family: var(--font-display); font-weight: 300;
  font-size: clamp(34px, 3.6vw, 48px); line-height: 1; color: var(--orange-deep);
  letter-spacing: -0.02em;
}
.stat-n span {
  font-family: var(--font-display-it); font-style: italic; font-weight: 400;
  font-size: 0.7em; margin-left: 2px;
}
.stat-l {
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--ink-soft);
}
@media (max-width: 768px) {
  .stat-row { grid-template-columns: minmax(0, 1fr); gap: 40px; text-align: center; }
  .stat-cell { align-items: center; }
  .stat-n { font-size: 52px; }
  .stat-l { font-size: 12px; }
}
@media (max-width: 480px) {
  .stat-row { grid-template-columns: minmax(0, 1fr); gap: 14px; }
}
.transformation {
  background: var(--bg);
  padding: clamp(100px, 14vw, 180px) 0;
}
.transformation-head {
  text-align: center; max-width: 820px; margin: 0 auto 80px;
}
.transformation-head h2 {
  font-family: var(--font-display); font-weight: 300;
  font-size: clamp(36px, 5.4vw, 68px); line-height: 1.05; letter-spacing: -0.01em;
  margin: 16px 0 0; text-wrap: balance;
}
.transformation-head h2 em {
  font-family: var(--font-display-it); font-style: italic; font-weight: 500;
  color: var(--orange-deep);
}
.transformation-grid {
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}
.pillar {
  border-radius: var(--r-card);
  padding: clamp(36px, 4vw, 56px);
  position: relative; overflow: hidden;
  min-height: 560px;
  display: flex; flex-direction: column;
}
.pillar-cream {
  background: var(--bg-warm);
  color: var(--ink);
}
.pillar-moss {
  background: var(--moss);
  color: var(--on-moss);
}
.pillar-arch {
  position: absolute; left: 50%; top: -45%; width: 130%;
  aspect-ratio: 1/1; transform: translateX(-50%);
  border-radius: 50%;
  background: radial-gradient(circle at 50% 50%, color-mix(in oklab, currentColor 8%, transparent) 0%, transparent 60%);
  pointer-events: none;
}
.pillar-eyebrow {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  opacity: .6;
}
.pillar h3 {
  font-family: var(--font-display); font-weight: 300;
  font-size: clamp(28px, 3.4vw, 44px); line-height: 1.05; letter-spacing: -0.01em;
  margin: 14px 0 6px;
}
.pillar h3 em {
  font-family: var(--font-display-it); font-style: italic; font-weight: 500;
}
.pillar-cream h3 em { color: var(--orange-deep); }
.pillar-moss h3 em { color: var(--orange-soft); }
.pillar-sub {
  font-size: 14px; opacity: .7; margin-bottom: 36px;
  font-family: var(--font-mono); letter-spacing: 0.05em;
}
.pillar ul { list-style: none; padding: 0; margin: 0; }
.pillar li {
  padding: 22px 0; display: grid; grid-template-columns: auto minmax(0, 1fr); gap: 16px;
  border-top: 1px solid color-mix(in oklab, currentColor 16%, transparent);
}
.pillar li:last-child { border-bottom: 1px solid color-mix(in oklab, currentColor 16%, transparent); }
.pillar li-num {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.14em;
  opacity: .55; padding-top: 4px;
}
.pillar li p { margin: 0; line-height: 1.55; font-size: 16px; }
.pillar-foot {
  margin-top: auto; padding-top: 40px;
  font-family: var(--font-display); font-style: italic; font-weight: 400;
  font-size: clamp(18px, 1.8vw, 24px); line-height: 1.3;
  opacity: .9;
}
@media (max-width: 880px) {
  .transformation-grid { grid-template-columns: minmax(0, 1fr); }
  .pillar { min-height: 0; }
}

/* ===== SCHEDULE ===== */
.schedule {
  background: var(--moss); color: var(--on-moss);
  padding: clamp(100px, 14vw, 180px) 0;
  position: relative; overflow: hidden;
}
.schedule-orb {
  position: absolute; right: -10%; top: -20%;
  width: min(700px, 80vw); aspect-ratio: 1/1; border-radius: 50%;
  background: radial-gradient(circle at center, var(--orange) 0%, transparent 65%);
  opacity: 0.25; pointer-events: none; filter: blur(40px);
}
.schedule-head {
  display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 48px; align-items: end; margin-bottom: 80px;
  position: relative;
}
.schedule-head h2 {
  font-family: var(--font-display); font-weight: 300;
  font-size: clamp(36px, 5vw, 64px); line-height: 1.05; letter-spacing: -0.01em;
  margin: 16px 0 0; text-wrap: balance;
}
.schedule-head h2 em {
  font-family: var(--font-display-it); font-style: italic; font-weight: 500;
  color: var(--orange-soft);
}
.schedule-head p, .schedule-bullets {
  font-size: 17px; opacity: .75; line-height: 1.6; max-width: 380px;
  margin: 0;
}
.schedule-bullets {
  list-style: none; padding: 0; display: grid; gap: 10px;
}
.schedule-bullets li {
  position: relative; padding-left: 22px; font-size: 15px;
}
.schedule-bullets li::before {
  content: ""; position: absolute; left: 0; top: 10px;
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--orange);
}
.timeline {
  position: relative; display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  padding: 0;
}
.timeline::before {
  content: ""; position: absolute; left: 0; right: 0;
  top: 32px; height: 1px;
  background: rgba(242, 235, 221, 0.25);
}
.t-node {
  position: relative;
  padding-top: 80px;
}
.t-node-dot {
  position: absolute; top: 22px; left: 0;
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 6px var(--moss), 0 0 0 7px rgba(242, 235, 221, 0.25);
}
.t-time {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--orange-soft); margin-bottom: 12px;
}
.t-h {
  font-family: var(--font-display); font-weight: 400; font-style: italic;
  font-size: clamp(22px, 2.4vw, 30px); margin: 0 0 12px; line-height: 1.1;
}
.t-p { font-size: 15px; line-height: 1.55; opacity: .78; margin: 0; }
.schedule-bonus {
  margin-top: 64px; padding: 32px;
  border: 1px dashed rgba(242, 235, 221, 0.3);
  border-radius: var(--r-card);
  display: grid; grid-template-columns: auto minmax(0, 1fr) auto; gap: 28px; align-items: center;
}
.schedule-bonus-tag {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--orange-soft);
  padding: 8px 14px; border: 1px solid var(--orange-soft); border-radius: var(--r-pill);
}
.schedule-bonus-text {
  font-family: var(--font-display); font-style: italic; font-size: clamp(18px, 2vw, 24px);
}
@media (max-width: 880px) {
  .schedule-head { 
    grid-template-columns: minmax(0, 1fr); 
    align-items: center; 
    text-align: center;
    justify-items: center;
  }
  .schedule-head p, .schedule-bullets {
    margin: 0 auto;
  }
  .schedule-bullets {
    text-align: left;
    display: inline-grid;
  }
  .timeline { grid-template-columns: minmax(0, 1fr); gap: 8px; }
  .timeline::before { top: 0; bottom: 0; left: 9px; right: auto; width: 1px; height: auto; }
  .t-node { padding-top: 0; padding-left: 36px; padding-bottom: 32px; }
  .t-node-dot { top: 4px; left: 0; }
  .schedule-bonus { 
    grid-template-columns: minmax(0, 1fr); 
    text-align: center;
    justify-items: center;
    gap: 20px;
  }
  .schedule-bonus-tag { margin: 0 auto; }
}

/* ===== SOCIAL PROOF ===== */
.social {
  background: var(--bg);
  padding: clamp(100px, 14vw, 180px) 0;
}
.social-head {
  display: grid; grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
  gap: 32px; align-items: end;
  margin-bottom: 56px;
}
.social-head h2 {
  font-family: var(--font-display); font-weight: 300;
  font-size: clamp(34px, 4.8vw, 60px); line-height: 1.05; margin: 16px 0 0;
}
.social-head h2 em {
  font-family: var(--font-display-it); font-style: italic; font-weight: 500;
  color: var(--orange-deep);
}
.carousel {
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  overflow: hidden;
}
/* Slide animations for testimonial pagination */
.carousel-slide-next {
  animation: carouselSlideNext 0.45s cubic-bezier(.22,.61,.36,1) both;
}
.carousel-slide-prev {
  animation: carouselSlidePrev 0.45s cubic-bezier(.22,.61,.36,1) both;
}
@keyframes carouselSlideNext {
  from { opacity: 0; transform: translateX(56px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes carouselSlidePrev {
  from { opacity: 0; transform: translateX(-56px); }
  to   { opacity: 1; transform: translateX(0); }
}
.t-card {
  padding: 36px; border: 1px solid var(--rule);
  border-radius: var(--r-card);
  background: var(--bg-soft);
  display: flex; flex-direction: column;
  transition: transform .6s var(--ease), background .6s var(--ease);
}
.t-card:hover { transform: translateY(-4px); background: var(--bg-warm); }
.t-card-quote {
  font-family: var(--font-display); font-style: italic; font-weight: 400;
  font-size: clamp(18px, 1.6vw, 22px); line-height: 1.35;
  color: var(--ink); margin: 0 0 28px;
  text-wrap: pretty;
}
.t-card-quote strong {
  font-weight: 600;
  font-style: normal;
  color: var(--orange-deep);
}
.t-card-meta {
  margin-top: auto; padding-top: 24px;
  border-top: 1px solid var(--rule);
  display: flex; gap: 14px; align-items: center;
}
.t-card-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--orange-soft), var(--orange));
  display: grid; place-items: center;
  color: #fff; font-family: var(--font-display); font-style: italic; font-size: 18px;
}
.t-card-name {
  font-size: 14px; color: var(--ink); font-weight: 500;
}
.t-card-loc {
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--muted);
}
.carousel-controls {
  display: flex; gap: 12px; justify-content: flex-end; margin-top: 32px;
}
.car-btn {
  width: 48px; height: 48px; border-radius: 50%;
  border: 1px solid var(--rule); display: grid; place-items: center;
  transition: all .4s var(--ease);
}
.car-btn:hover { background: var(--ink); color: var(--bg); border-color: var(--ink); }
.car-dots { display: inline-flex; gap: 8px; align-items: center; margin-right: auto; }
.car-dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--rule);
  transition: all .4s var(--ease);
}
.car-dot.is-active { background: var(--orange); width: 24px; border-radius: var(--r-pill); }
@media (max-width: 880px) {
  .social-head { 
    grid-template-columns: minmax(0, 1fr); 
    align-items: center; 
    text-align: center; 
  }
  .carousel { grid-template-columns: minmax(0, 1fr); }
}

/* ===== ABOUT ===== */
.about {
  background: var(--bg-soft);
  padding: clamp(100px, 14vw, 180px) 0;
  position: relative; overflow: hidden;
}
.about-grid {
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
  gap: clamp(40px, 6vw, 96px); align-items: center;
}
.about-photo {
  position: relative; aspect-ratio: 4/5; border-radius: var(--r-arch);
  overflow: hidden;
  background:
    repeating-linear-gradient(135deg, color-mix(in oklab, var(--orange) 30%, transparent) 0 2px, transparent 2px 14px),
    linear-gradient(180deg, var(--orange-tint), var(--orange-soft));
  display: grid; place-items: center;
}
.about-photo-img {
  width: 100%; height: 100%; object-fit: cover;
  display: block;
}
.about-photo-stamp {
  position: absolute; bottom: 60px; right: 18px;
  width: 100px; height: 100px;
}
@keyframes spin { to { transform: rotate(360deg); } }
.about h2 {
  font-family: var(--font-display); font-weight: 300;
  font-size: clamp(36px, 5vw, 64px); line-height: 1.05; margin: 16px 0 24px;
}
.about h2 em {
  font-family: var(--font-display-it); font-style: italic; font-weight: 500;
  color: var(--orange-deep);
}
.about-bio { font-size: 17px; line-height: 1.65; color: var(--ink-soft); text-wrap: pretty; }
.about-bio + .about-bio { margin-top: 18px; }
.about-creds {
  margin-top: 36px; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px; padding-top: 28px; border-top: 1px solid var(--rule);
}
.about-cred {
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink-soft);
}
.about-cred-num {
  display: block; font-family: var(--font-display); font-style: italic;
  font-size: clamp(28px, 3vw, 40px); color: var(--orange-deep);
  letter-spacing: -0.01em; margin-bottom: 4px;
}
@media (max-width: 880px) {
  .about-grid { grid-template-columns: minmax(0, 1fr); text-align: center; }
  .about-photo { max-width: 480px; margin: 0 auto; }
  .about-creds { grid-template-columns: minmax(0, 1fr); gap: 12px; justify-items: center; }
}

/* ===== FAQ ===== */
.faq { background: var(--bg); padding: clamp(100px, 14vw, 180px) 0; }
.faq-grid {
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.4fr);
  gap: clamp(40px, 6vw, 96px); align-items: start;
}
.faq h2 {
  font-family: var(--font-display); font-weight: 300;
  font-size: clamp(34px, 5vw, 60px); line-height: 1.05; margin: 16px 0 0;
}
.faq h2 em {
  font-family: var(--font-display-it); font-style: italic; font-weight: 500;
  color: var(--orange-deep);
}
.faq-list {
  border-top: 1px solid var(--rule);
}
.faq-item {
  border-bottom: 1px solid var(--rule);
  padding: 28px 0;
  cursor: pointer;
}
.faq-q {
  display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 24px; align-items: center;
  font-family: var(--font-display); font-weight: 400; font-style: italic;
  font-size: clamp(18px, 1.8vw, 24px); color: var(--ink);
  text-wrap: balance;
}
.faq-toggle {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid var(--rule); display: grid; place-items: center;
  transition: all .4s var(--ease);
  flex-shrink: 0;
}
.faq-item[data-open="true"] .faq-toggle {
  background: var(--ink); color: var(--bg); border-color: var(--ink);
  transform: rotate(45deg);
}
.faq-a {
  max-height: 0; overflow: hidden; opacity: 0;
  transition: max-height var(--slow) var(--ease), opacity var(--slow) var(--ease), margin-top var(--slow) var(--ease);
  font-size: 16px; line-height: 1.6; color: var(--ink-soft); text-wrap: pretty;
  margin-top: 0;
  max-width: 60ch;
}
.faq-item[data-open="true"] .faq-a {
  max-height: 240px; opacity: 1; margin-top: 18px;
}
@media (max-width: 880px) {
  .faq-grid { grid-template-columns: minmax(0, 1fr); text-align: center; }
  .faq-list { text-align: left; }
}

/* ===== FINAL CTA ===== */
.final {
  position: relative; overflow: hidden;
  padding: clamp(100px, 14vw, 180px) 0;
  background: linear-gradient(160deg, var(--orange-soft) 0%, var(--orange) 50%, var(--orange-deep) 100%);
  color: #fff;
}
.final::before {
  content: ""; position: absolute; left: 50%; top: -30%;
  width: min(900px, 90vw); aspect-ratio: 1/1; border-radius: 50%;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(255,255,255,.18) 0%, transparent 60%);
  pointer-events: none;
}
.final-inner { text-align: center; position: relative; max-width: 880px; margin: 0 auto; }
.final-eyebrow {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase;
  color: rgba(255,255,255, .8);
  display: inline-flex; gap: 12px; align-items: center;
}
.final-eyebrow::before, .final-eyebrow::after {
  content: ""; width: 28px; height: 1px; background: rgba(255,255,255, .5);
}
.final h2 {
  font-family: var(--font-display); font-weight: 300;
  font-size: clamp(40px, 6.4vw, 84px); line-height: 1.02;
  margin: 28px 0 22px;
  text-wrap: balance;
}
.final h2 em {
  font-family: var(--font-display-it); font-style: italic; font-weight: 500;
  color: #3f3d2d;
}
.final-p {
  max-width: 560px; margin: 0 auto 36px;
  font-size: 17px; line-height: 1.6; color: rgba(255,255,255, .9);
  text-wrap: pretty;
}
.final .btn-primary { background: #3f3d2d; color: #fff; }
.final .btn-primary:hover { background: #fff; color: #3f3d2d; }

/* ===== FOOTER ===== */
.footer {
  background: #FCDFCB; /* Soft peach/orange tint as per image */
  color: var(--ink);
  padding: 80px 0 40px;
}
.footer-grid {
  display: grid; 
  grid-template-columns: minmax(0, 1.8fr) repeat(3, minmax(0, 1fr));
  gap: 64px; 
  align-items: start;
}
.footer-logo { color: var(--ink); height: 42px; margin-bottom: 24px; }
.footer-logo img { height: 100%; width: auto; }
.footer-tagline { 
  font-size: 14px; 
  line-height: 1.6; 
  max-width: 320px; 
  opacity: 0.85; 
  color: var(--ink);
}
.footer h4 {
  font-family: var(--font-mono); 
  font-size: 12px; 
  letter-spacing: 0.2em; 
  text-transform: uppercase;
  margin: 0 0 24px; 
  color: var(--orange-deep);
  font-weight: 700;
}
.footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 14px; }
.footer li { font-size: 15px; color: var(--ink); }
.footer li a { 
  font-size: 15px; 
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color .3s var(--ease);
}
.footer li a:hover { border-bottom-color: var(--ink); }
.footer-bottom {
  margin-top: 80px; 
  padding-top: 24px;
  border-top: 1px solid rgba(63, 61, 45, 0.1);
  display: flex; 
  justify-content: space-between;
  font-family: var(--font-mono); 
  font-size: 10px; 
  letter-spacing: 0.18em; 
  text-transform: uppercase;
  color: var(--ink);
  opacity: 0.6;
  flex-wrap: wrap; 
  gap: 12px;
}
.footer-bottom-links a {
  text-decoration: none;
}
.footer-bottom-links a:hover {
  text-decoration: underline;
}
@media (max-width: 880px) {
  .footer-grid { 
    grid-template-columns: minmax(0, 1fr); 
    text-align: center; 
    gap: 40px;
  }
  /* Reorder: Info(1), When(4), Connect(3), Workshop(2) */
  .footer-grid > div:nth-child(1) { order: 1; border-bottom: 1px solid rgba(242, 235, 221, 0.1); padding-bottom: 40px; }
  .footer-grid > div:nth-child(4) { order: 2; border-bottom: 1px solid rgba(242, 235, 221, 0.1); padding-bottom: 40px; }
  .footer-grid > div:nth-child(3) { order: 3; border-bottom: 1px solid rgba(242, 235, 221, 0.1); padding-bottom: 40px; }
  .footer-grid > div:nth-child(2) { order: 4; }

  .footer-logo { 
    margin: 0 auto 24px; 
    display: flex;
    justify-content: center;
  }
  .footer-tagline { margin: 0 auto; }
  .footer-bottom { 
    justify-content: center; 
    text-align: center;
    margin-top: 40px;
    flex-direction: column;
    gap: 16px;
  }
}

/* ===== Tweaks panel ===== */
.tweaks-panel {
  position: fixed; bottom: 24px; right: 24px; z-index: 200;
  width: 280px; background: var(--bg); color: var(--ink);
  border: 1px solid var(--rule); border-radius: 16px;
  padding: 20px; box-shadow: 0 20px 50px rgba(0,0,0,.18);
  font-family: var(--font-body); font-size: 13px;
  transform: translateY(20px); opacity: 0; pointer-events: none;
  transition: opacity .4s var(--ease), transform .4s var(--ease);
}
.tweaks-panel.open { transform: none; opacity: 1; pointer-events: auto; }
.tweaks-head {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 18px; padding-bottom: 14px; border-bottom: 1px solid var(--rule);
}
.tweaks-title {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
}
.tweaks-close { width: 24px; height: 24px; display: grid; place-items: center; opacity: .6; }
.tweaks-close:hover { opacity: 1; }
.tweaks-section { margin-bottom: 18px; }
.tweaks-label {
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 10px;
}
.tweaks-segments {
  display: grid; grid-auto-flow: column; grid-auto-columns: 1fr; gap: 4px;
  background: var(--bg-soft); border-radius: var(--r-pill); padding: 4px;
}
.tweaks-seg {
  padding: 8px 10px; border-radius: var(--r-pill); font-size: 11px;
  letter-spacing: 0.06em; text-transform: uppercase; transition: all .3s var(--ease);
  font-family: var(--font-mono);
}
.tweaks-seg.is-on { background: var(--ink); color: var(--bg); }

/* ===== User Requested Mobile Fixes ===== */
@media (max-width:767px) {
.hero {
    padding-top: 82px !important;
}

.hero-inner {
    order: 2;
}

.hero-eyebrow {
    order: 1;
    margin-bottom: 40px;
}

h1.reveal.reveal-d1 {
    font-size: 36px !important;
}

.hero-meta {
    letter-spacing: 0.1em;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}
    letter-spacing: 0.1em;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.solution-block-h {
    font-size: 30px !important;
    text-align: center;
}

.solution-p {
    text-align: center;
}

.solution .btn-primary {
    width: 100%;
    justify-content: center;
}

.pillar-eyebrow, 
.pillar h3, 
.pillar-sub, 
.pillar-foot {
    text-align: center;
}

.pillar-eyebrow {
    font-size: 13px;
    letter-spacing: 0.22em;
}

.pillar h3 {
    font-size: 42px !important;
}

.pillar-sub {
    font-size: 16px;
}

.pillar li {
    text-align: left; /* Keep list items readable but you can change if needed */
}

.insta-carousel-section {
    padding: 0px 0;
}

}
