:root {
  --ink: #171714;
  --ink-soft: #2c2b26;
  --muted: #656156;
  --paper: #f4f6f1;
  --paper-strong: #ffffff;
  --line: #d8ded4;
  --green: #255c43;
  --green-dark: #102f24;
  --red: #b5262f;
  --red-dark: #821a25;
  --gold: #d7a843;
  --blue: #263d63;
  --white: #ffffff;
  --shadow: 0 14px 34px rgba(17, 25, 20, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 15px;
  line-height: 1.6;
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 74px;
  padding: 12px 5vw;
  background: rgba(255, 250, 240, 0.97);
  border-bottom: 1px solid rgba(23, 23, 20, 0.09);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  text-decoration: none;
}

.brand-logo {
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 0.96rem;
  line-height: 1.1;
}

.brand small {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
}

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

.site-nav a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 11px;
  border-radius: 6px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 800;
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a.active {
  color: var(--ink);
  background: rgba(37, 92, 67, 0.12);
  outline: none;
}

.site-nav .nav-cta {
  color: var(--white);
  background: var(--green);
}

.site-nav .nav-cta:hover,
.site-nav .nav-cta:focus-visible {
  color: var(--white);
  background: var(--green-dark);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--paper-strong);
}

.menu-toggle span {
  display: block;
  width: 19px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

.hero,
.page-hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
}

.hero {
  min-height: 72svh;
  display: grid;
  align-items: center;
  padding: 72px 5vw 58px;
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: 32% center;
}

.hero-shade {
  background:
    linear-gradient(270deg, rgba(13, 24, 18, 0.88) 0%, rgba(13, 24, 18, 0.68) 42%, rgba(13, 24, 18, 0.2) 100%),
    linear-gradient(0deg, rgba(13, 24, 18, 0.38), transparent 45%);
}

.hero-content {
  position: relative;
  max-width: 690px;
  margin-left: auto;
}

.eyebrow,
.section-kicker {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.section-kicker {
  color: var(--red);
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

.hero h1,
.page-hero h1,
.section-heading h2,
.split-copy h2,
.sensei-content h1,
.sensei-content h2,
.contact-band h2,
.next-strip h2,
.deep-copy h2 {
  margin: 0;
  line-height: 1.03;
}

.hero h1 {
  max-width: 18ch;
  font-size: 3.38rem;
  font-weight: 950;
}

.hero-copy,
.page-hero p {
  max-width: 680px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.08rem;
}

.hero-actions,
.inline-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 13px 18px;
  border: 0;
  border-radius: 6px;
  font-size: 0.94rem;
  font-weight: 900;
  text-decoration: none;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
  outline: 3px solid rgba(215, 168, 67, 0.46);
  outline-offset: 2px;
}

.button.primary {
  color: var(--white);
  background: var(--red);
}

.button.whatsapp {
  color: var(--white);
  background: var(--green);
}

.button.whatsapp:hover,
.button.whatsapp:focus-visible {
  background: #1e7a52;
}

.button.secondary {
  color: var(--ink);
  background: var(--paper-strong);
}

.button.ghost-light {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.08);
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.hero-proof span {
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 6px;
  color: rgba(255, 255, 255, 0.86);
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.9rem;
  font-weight: 800;
}

.quick-info {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--line);
  background: var(--paper-strong);
}

.quick-info div {
  padding: 22px 5vw;
  border-right: 1px solid var(--line);
}

.quick-info div:last-child {
  border-right: 0;
}

.quick-info span,
.sensei-list dt,
.contact-card span,
.pillar-grid article span,
.story-card span {
  display: block;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.quick-info strong {
  display: block;
  margin-top: 4px;
  font-size: 0.94rem;
}

.section {
  padding: 78px 5vw;
}

.section.contrast {
  background: var(--paper-strong);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-heading.wide {
  max-width: 940px;
}

.section-heading h2,
.split-copy h2,
.sensei-content h1,
.sensei-content h2,
.contact-band h2,
.next-strip h2,
.deep-copy h2 {
  font-size: 2.22rem;
}

.section-heading p,
.split-copy p,
.feature-panel p,
.sensei-content p,
.deep-copy p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 0.98rem;
}

.story-grid,
.benefit-grid,
.contact-grid,
.audience-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.story-card,
.audience-grid article,
.benefit-grid article,
.contact-card,
.pillar-grid article {
  min-height: 200px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper-strong);
}

.audience-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0 0 18px;
}

.audience-grid article {
  min-height: 150px;
  display: grid;
  gap: 8px;
  border-color: rgba(37, 92, 67, 0.26);
  background: #fffdf7;
}

.audience-grid strong {
  color: var(--green-dark);
  font-size: 1.05rem;
}

.audience-grid span {
  color: var(--muted);
}

.story-card {
  color: var(--ink);
  text-decoration: none;
}

.story-card:hover,
.story-card:focus-visible,
.contact-card:hover,
.contact-card:focus-visible {
  border-color: var(--gold);
  outline: none;
}

.story-card h3,
.benefit-grid h3,
.pillar-grid h3 {
  margin: 24px 0 10px;
  font-size: 1.14rem;
  line-height: 1.15;
}

.story-card p,
.benefit-grid p,
.pillar-grid p,
.contact-card p {
  margin: 0;
  color: var(--muted);
}

.split-section,
.deep-section,
.sensei-section,
.contact-band,
.next-strip {
  display: grid;
  gap: 48px;
  padding: 78px 5vw;
}

.split-section {
  grid-template-columns: minmax(290px, 1.1fr) minmax(280px, 0.9fr);
  align-items: center;
  background: #173b2b;
  color: var(--white);
}

.split-section.light {
  background: var(--paper);
  color: var(--ink);
}

.split-section .split-copy p {
  color: rgba(255, 255, 255, 0.78);
}

.split-section.light .split-copy p {
  color: var(--muted);
}

.check-list,
.stack-list {
  display: grid;
  gap: 12px;
  margin-top: 30px;
}

.check-list span,
.stack-list div,
.wide-list div {
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
}

.check-list span {
  padding: 14px 16px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 800;
}

.feature-panel {
  padding: 34px;
  border-radius: 8px;
  color: var(--ink);
  background: var(--paper-strong);
  border-left: 6px solid var(--gold);
  box-shadow: none;
}

.feature-panel.red {
  background: var(--paper-strong);
  border-left-color: var(--red);
}

.feature-panel h3 {
  margin: 0;
  font-size: 1.5rem;
  line-height: 1.12;
}

.feature-panel p {
  color: var(--muted);
}

.text-link {
  display: inline-flex;
  margin-top: 22px;
  color: inherit;
  font-weight: 900;
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.sensei-section {
  grid-template-columns: minmax(230px, 0.52fr) minmax(320px, 1fr);
  align-items: center;
  background: var(--green-dark);
  color: var(--white);
}

.sensei-section.profile {
  min-height: calc(100svh - 74px);
}

.sensei-section.compact {
  background: #173b2b;
}

.sensei-photo-wrap {
  overflow: hidden;
  width: min(100%, 380px);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.sensei-photo-wrap.half {
  justify-self: center;
}

.sensei-photo {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 38%;
}

.sensei-content {
  max-width: 760px;
}

.sensei-content p {
  color: rgba(255, 255, 255, 0.78);
}

.sensei-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 32px 0 0;
}

.sensei-list div {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.sensei-list dt {
  color: rgba(255, 255, 255, 0.58);
}

.sensei-list dd {
  margin: 6px 0 0;
  font-weight: 900;
}

.page-hero {
  min-height: 48svh;
  display: grid;
  align-items: end;
  padding: 96px 5vw 64px;
  color: var(--ink);
  background: var(--paper-strong);
  border-bottom: 1px solid var(--line);
}

.page-hero.kids {
  background: #f7f1e7;
}

.page-hero.self {
  background: #f7f1e7;
}

.page-hero > div {
  max-width: 920px;
}

.page-hero h1 {
  font-size: 3rem;
  font-weight: 950;
}

.page-hero p {
  color: var(--muted);
}

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

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

.pillar-grid article span,
.story-card span {
  color: var(--red);
}

.deep-section {
  grid-template-columns: minmax(280px, 0.7fr) minmax(320px, 1.3fr);
  align-items: start;
  color: var(--white);
  background: var(--ink-soft);
}

.deep-copy p {
  color: rgba(255, 255, 255, 0.75);
}

.timeline {
  display: grid;
  gap: 14px;
}

.timeline article {
  display: grid;
  grid-template-columns: 58px 150px 1fr;
  gap: 18px;
  align-items: start;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.timeline span {
  color: var(--gold);
  font-weight: 950;
}

.timeline h3,
.timeline p {
  margin: 0;
}

.timeline p {
  color: rgba(255, 255, 255, 0.74);
}

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

.wide-list div,
.stack-list div {
  display: grid;
  gap: 6px;
  padding: 18px;
  border-color: var(--line);
  background: var(--paper-strong);
}

.wide-list.dark div {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
}

.wide-list span,
.stack-list span {
  color: var(--muted);
}

.wide-list.dark span {
  color: rgba(255, 255, 255, 0.68);
}

.quote-panel {
  max-width: 940px;
  padding: 34px;
  border-left: 8px solid var(--red);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.quote-panel p {
  margin: 0;
  color: var(--ink);
  font-size: 1.48rem;
  font-weight: 900;
  line-height: 1.2;
}

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

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

.contact-card {
  display: grid;
  gap: 9px;
  color: var(--ink);
  text-decoration: none;
}

.contact-card strong {
  font-size: 1.08rem;
}

.contact-band,
.next-strip {
  grid-template-columns: minmax(280px, 1fr) auto;
  align-items: center;
  color: var(--white);
  background: #173b2b;
}

.next-strip {
  background: var(--green-dark);
}

.contact-band h2,
.next-strip h2 {
  max-width: 800px;
}

.floating-whatsapp {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 35;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 13px 18px;
  border-radius: 6px;
  color: var(--white);
  background: var(--green);
  box-shadow: var(--shadow);
  font-weight: 950;
  text-decoration: none;
}

.floating-whatsapp:hover,
.floating-whatsapp:focus-visible {
  background: #1e7a52;
  outline: 3px solid rgba(215, 168, 67, 0.46);
  outline-offset: 2px;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 28px 5vw 92px;
  color: var(--muted);
  background: var(--paper-strong);
  border-top: 1px solid var(--line);
}

.site-footer p {
  margin: 0;
}

.site-footer div {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.site-footer a {
  font-weight: 900;
  text-decoration: none;
}

@media (max-width: 1120px) {
  .site-nav a {
    padding-inline: 8px;
    font-size: 0.82rem;
  }

  .story-grid,
  .audience-grid,
  .benefit-grid.compact,
  .pillar-grid.four {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .hero h1,
  .page-hero h1 {
    font-size: 2.72rem;
  }

  .quick-info,
  .pillar-grid,
  .wide-list,
  .contact-grid,
  .sensei-section,
  .split-section,
  .deep-section,
  .contact-band,
  .next-strip {
    grid-template-columns: 1fr;
  }

  .quick-info div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .quick-info div:last-child {
    border-bottom: 0;
  }

  .section-heading h2,
  .split-copy h2,
  .sensei-content h1,
  .sensei-content h2,
  .contact-band h2,
  .next-strip h2,
  .deep-copy h2 {
    font-size: 2rem;
  }

  .timeline article {
    grid-template-columns: 48px 1fr;
  }

  .timeline p {
    grid-column: 2;
  }

  .sensei-photo-wrap {
    width: min(100%, 330px);
  }

  .sensei-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .site-header {
    min-height: 68px;
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 67px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 10px 5vw 16px;
    background: var(--paper-strong);
    border-bottom: 1px solid var(--line);
  }

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

  .site-nav a {
    justify-content: flex-start;
    padding: 12px;
    font-size: 0.9rem;
  }

  .site-nav .nav-cta {
    justify-content: center;
  }

  .hero {
    min-height: 70svh;
    padding: 56px 5vw 44px;
  }

  .hero-image {
    object-position: 28% center;
  }

  .hero-shade {
    background:
      linear-gradient(0deg, rgba(13, 24, 18, 0.82), rgba(13, 24, 18, 0.44)),
      linear-gradient(90deg, rgba(13, 24, 18, 0.4), rgba(13, 24, 18, 0.08));
  }

  .hero-content {
    margin-left: 0;
  }

  .hero h1,
  .page-hero h1 {
    font-size: 2.18rem;
  }

  .page-hero {
    min-height: auto;
    padding: 72px 5vw 50px;
  }

  .hero-copy,
  .page-hero p {
    font-size: 1rem;
  }

  .hero-actions,
  .inline-actions,
  .site-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .story-grid,
  .audience-grid,
  .benefit-grid,
  .benefit-grid.compact,
  .pillar-grid.four {
    grid-template-columns: 1fr;
  }

  .section,
  .split-section,
  .deep-section,
  .sensei-section,
  .contact-band,
  .next-strip {
    padding: 58px 5vw;
  }

  .story-card,
  .audience-grid article,
  .benefit-grid article,
  .contact-card,
  .pillar-grid article {
    min-height: auto;
  }

  .floating-whatsapp {
    left: 5vw;
    right: 5vw;
    bottom: 14px;
  }

  .quote-panel p {
    font-size: 1.24rem;
  }
}

@media (max-width: 430px) {
  .brand strong {
    font-size: 0.9rem;
  }

  .brand small {
    font-size: 0.72rem;
  }

  .brand-logo {
    width: 42px;
    height: 42px;
  }

  .hero h1,
  .page-hero h1 {
    font-size: 1.98rem;
  }

  .section-heading h2,
  .split-copy h2,
  .sensei-content h1,
  .sensei-content h2,
  .contact-band h2,
  .next-strip h2,
  .deep-copy h2 {
    font-size: 1.6rem;
  }

  .timeline article {
    grid-template-columns: 1fr;
  }

  .timeline p {
    grid-column: auto;
  }
}
