:root {
  --sage: #6d8a4e;
  --olive: #3f5f2a;
  --beige: #e9ddcc;
  --cream: #faf7f1;
  --earth: #b98f6b;
  --ink: #2f332b;
  --muted: #697060;
  --line: rgba(63, 95, 42, 0.18);
  --white: #fffdf8;
  --shadow: 0 22px 70px rgba(47, 51, 43, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.7;
  overflow-x: hidden;
}

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

a {
  color: inherit;
}

p,
h1,
h2,
h3 {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: "Segoe UI", Arial, sans-serif;
  font-weight: 650;
  line-height: 1.12;
}

h1 {
  margin-bottom: 24px;
  color: var(--olive);
  font-size: clamp(2.75rem, 4.8vw, 5.2rem);
}

h2 {
  margin-bottom: 24px;
  color: var(--olive);
  font-size: clamp(1.85rem, 3.5vw, 3.25rem);
}

h3 {
  margin-bottom: 14px;
  color: var(--olive);
  font-size: 1.35rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  width: min(100%, 1440px);
  margin: 0 auto;
  padding: 16px clamp(18px, 4vw, 54px);
  background: rgba(250, 247, 241, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.brand img {
  width: 284px;
  height: 97px;
  object-fit: contain;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: clamp(14px, 2vw, 28px);
  color: var(--muted);
  font-size: 0.92rem;
}

.site-nav a,
.header-cta,
.button {
  text-decoration: none;
}

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

.header-cta {
  padding: 11px 18px;
  border: 1px solid var(--olive);
  color: var(--olive);
  font-size: 0.92rem;
}

.menu-toggle {
  display: none;
}

.section,
.trust-close {
  width: min(100%, 1440px);
  margin: 0 auto;
  padding: clamp(76px, 9vw, 138px) clamp(22px, 6vw, 84px);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(360px, 0.74fr);
  align-items: center;
  gap: clamp(36px, 6vw, 92px);
  min-height: calc(100vh - 88px);
  padding-top: clamp(44px, 7vw, 96px);
}

.hero-copy {
  max-width: 760px;
}

.hero-lead {
  color: var(--olive);
  font-size: clamp(1.35rem, 2.3vw, 2rem);
  line-height: 1.45;
}

.eyebrow {
  margin-bottom: 18px;
  color: var(--earth);
  font-size: 0.79rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 34px 0 18px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 13px 24px;
  border: 1px solid var(--olive);
  font-weight: 650;
  line-height: 1.2;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

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

.button.secondary {
  background: transparent;
  color: var(--olive);
}

.button.light {
  border-color: var(--white);
  color: var(--olive);
  background: var(--white);
}

.soft-note {
  color: var(--muted);
  font-size: 0.98rem;
}

.hero-image,
.image-card,
.portrait-card,
.trust-close figure {
  margin: 0;
  overflow: hidden;
  background: var(--beige);
  box-shadow: var(--shadow);
}

.hero-image {
  aspect-ratio: 4 / 5.6;
}

.hero-image img,
.image-card img,
.portrait-card img,
.trust-close img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.intro-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 420px);
  align-items: center;
  gap: clamp(34px, 6vw, 92px);
  background: var(--white);
}

.section-copy {
  max-width: 760px;
}

.statement {
  margin-top: 28px;
  padding-left: 22px;
  border-left: 3px solid var(--sage);
  color: var(--olive);
  font-size: clamp(1.35rem, 2vw, 1.9rem);
  line-height: 1.35;
}

.symbol-panel {
  display: grid;
  place-items: center;
  min-height: 420px;
  padding: clamp(28px, 4vw, 56px);
  background: var(--cream);
}

.symbol-panel img {
  width: min(100%, 340px);
  mix-blend-mode: multiply;
}

.audience {
  background: linear-gradient(180deg, rgba(233, 221, 204, 0.5), rgba(250, 247, 241, 0));
}

.section-heading {
  max-width: 930px;
  margin: 0 auto 46px;
  text-align: center;
}

.section-heading.narrow {
  max-width: 790px;
}

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

.audience-grid article,
.benefit-grid article {
  min-height: 132px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  color: var(--olive);
}

.centered-cta {
  max-width: 760px;
  margin: 42px auto 0;
  text-align: center;
}

@media (min-width: 1061px) {
  .audience-grid article:last-child {
    grid-column: 2;
  }
}

.method {
  background: var(--white);
}

.key-section {
  background: var(--beige);
}

.key-copy,
.method-closing {
  max-width: 860px;
  margin: 0 auto;
  color: var(--olive);
  text-align: center;
}

.key-copy p,
.method-closing p {
  font-size: clamp(1.08rem, 1.5vw, 1.28rem);
}

.method-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.method-grid article {
  min-height: 390px;
  padding: 34px 28px;
  border-right: 1px solid var(--line);
}

.method-grid article:last-child {
  border-right: 0;
}

.method-grid span {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 28px;
  border: 1px solid var(--sage);
  color: var(--olive);
  font-size: 1.3rem;
}

.method-closing {
  margin-top: 48px;
  padding: clamp(26px, 4vw, 44px);
  border: 1px solid var(--line);
  background: var(--cream);
}

.session,
.about,
.contact {
  display: grid;
  grid-template-columns: minmax(320px, 0.78fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(34px, 6vw, 86px);
}

.image-card {
  aspect-ratio: 4 / 5.4;
}

.check-list {
  display: grid;
  gap: 10px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  padding: 14px 16px;
  border-left: 3px solid var(--sage);
  background: var(--white);
  color: var(--olive);
}

.about {
  background: var(--white);
  grid-template-columns: minmax(0, 1fr) minmax(290px, 0.52fr);
}

.portrait-card {
  aspect-ratio: 4 / 5.2;
}

.benefits {
  background: var(--cream);
}

.section-closing {
  max-width: 820px;
  margin: 42px auto 0;
  color: var(--olive);
  text-align: center;
  font-size: clamp(1.3rem, 2vw, 1.9rem);
  line-height: 1.35;
}

.trust-close {
  display: grid;
  grid-template-columns: minmax(280px, 0.7fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(32px, 5vw, 74px);
  background: var(--olive);
  color: var(--white);
}

.trust-close h2,
.trust-close .eyebrow {
  color: var(--white);
}

.trust-close p {
  max-width: 620px;
}

.trust-close figure {
  aspect-ratio: 4 / 5;
  box-shadow: none;
}

.faq {
  background: var(--white);
}

.faq-list {
  max-width: 920px;
  margin: 0 auto;
  border-top: 1px solid var(--line);
}

details {
  border-bottom: 1px solid var(--line);
}

summary {
  cursor: pointer;
  padding: 24px 0;
  color: var(--olive);
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: clamp(1.08rem, 1.6vw, 1.32rem);
  font-weight: 650;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  float: right;
  color: var(--sage);
}

details[open] summary::after {
  content: "-";
}

details p {
  max-width: 790px;
  padding-bottom: 26px;
  color: var(--muted);
}

.contact {
  align-items: start;
  background: var(--beige);
}

.contact-copy {
  max-width: 710px;
}

address {
  margin-top: 34px;
  font-style: normal;
}

.contact-form {
  display: grid;
  gap: 18px;
  padding: clamp(24px, 4vw, 42px);
  background: var(--white);
  border: 1px solid rgba(63, 95, 42, 0.12);
  box-shadow: var(--shadow);
}

label {
  display: grid;
  gap: 8px;
  color: var(--olive);
  font-weight: 650;
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: var(--cream);
  color: var(--ink);
  font: inherit;
  padding: 13px 14px;
}

textarea {
  resize: vertical;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  gap: 28px;
  width: min(100%, 1440px);
  margin: 0 auto;
  padding: 52px clamp(22px, 6vw, 84px) 72px;
  background: var(--olive);
  color: rgba(255, 253, 248, 0.86);
}

.site-footer img {
  width: 160px;
  margin-bottom: 16px;
  background: var(--white);
}

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

.footer-line {
  grid-column: 1 / -1;
  margin: 0;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 253, 248, 0.22);
  color: var(--white);
  font-size: 1.25rem;
}

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 30;
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  background: var(--olive);
  color: var(--white);
  border: 1px solid rgba(255, 253, 248, 0.36);
  box-shadow: 0 14px 36px rgba(47, 51, 43, 0.24);
  font-weight: 700;
  text-decoration: none;
}

@media (max-width: 1060px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .menu-toggle {
    justify-self: end;
    display: inline-grid;
    gap: 6px;
    width: 44px;
    height: 44px;
    place-content: center;
    border: 1px solid var(--line);
    background: transparent;
  }

  .menu-toggle span {
    display: block;
    width: 22px;
    height: 1px;
    background: var(--olive);
  }

  .site-nav,
  .header-cta {
    display: none;
  }

  .site-header.nav-open .site-nav {
    grid-column: 1 / -1;
    display: grid;
    justify-content: stretch;
    gap: 0;
    width: 100%;
    padding-top: 12px;
  }

  .site-header.nav-open .site-nav a {
    padding: 13px 0;
    border-top: 1px solid var(--line);
  }

  .hero,
  .intro-band,
  .session,
  .about,
  .trust-close,
  .contact {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-image {
    aspect-ratio: 4 / 4.8;
    max-height: 760px;
  }

  .symbol-panel {
    min-height: 300px;
  }

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

  .method-grid article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
}

@media (max-width: 700px) {
  body {
    font-size: 16px;
  }

  .site-header {
    width: 100%;
    max-width: 100vw;
    padding: 12px 16px;
  }

  .brand img {
    width: 223px;
    height: 77px;
  }

  .section,
  .trust-close {
    width: 100%;
    max-width: 100vw;
    overflow: hidden;
    padding: 66px 18px;
  }

  .hero-copy,
  .section-copy,
  .section-heading,
  .centered-cta,
  .contact-copy {
    min-width: 0;
    max-width: 100%;
  }

  .hero-copy p,
  .section-copy p,
  .section-heading p,
  .centered-cta p,
  .contact-copy p {
    overflow-wrap: break-word;
  }

  h1 {
    font-size: clamp(2.55rem, 11.5vw, 3.55rem);
  }

  h2 {
    font-size: clamp(1.72rem, 7.6vw, 2.45rem);
  }

  .hero {
    padding-top: 34px;
  }

  .hero-actions,
  .contact-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .audience-grid,
  .benefit-grid,
  .method-grid {
    grid-template-columns: 1fr;
  }

  .audience-grid article,
  .benefit-grid article,
  .method-grid article {
    min-height: auto;
  }

  .about {
    display: flex;
    flex-direction: column-reverse;
  }

  .contact-form {
    padding: 22px;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }

  .footer-line {
    font-size: 1.12rem;
  }
}
