:root {
  --maple-red: #ed0e11;
  --maple-red-dark: #a81815;
  --maple-wine: #770400;
  --maple-ink: #242424;
  --maple-white: #fff;
  --maple-off-white: #f6f6f5;
  --page-gutter: clamp(10px, 1.1vw, 18px);
  --hero-radius: clamp(22px, 2.2vw, 34px);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--maple-off-white);
  color: var(--maple-ink);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

.sr-only,
.skip-link {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link:focus {
  z-index: 1000;
  top: 12px;
  left: 12px;
  width: auto;
  height: auto;
  margin: 0;
  padding: 12px 18px;
  clip: auto;
  border-radius: 99px;
  background: #fff;
  color: var(--maple-red-dark);
  font-weight: 700;
}

.site-header {
  position: absolute;
  z-index: 20;
  top: calc(var(--page-gutter) + 8px);
  left: 0;
  right: var(--page-gutter);
  display: flex;
  align-items: center;
  min-height: 64px;
  padding-right: clamp(21px, 2.2vw, 38px);
  color: #fff;
  isolation: isolate;
  opacity: 0;
  transform: translateY(-18px);
  animation: reveal-header 0.85s 0.18s var(--ease-out) forwards;
}

.site-header::before,
.site-header::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

.site-header::before {
  z-index: -1;
  top: calc((var(--page-gutter) + 8px) * -1);
  bottom: -8px;
  left: 0;
  width: clamp(176px, 14vw, 210px);
  border-radius: 0 0 30px 0;
  background: var(--maple-off-white);
}

.site-header::after {
  display: none;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  flex: 0 0 clamp(176px, 14vw, 210px);
  padding-left: clamp(18px, 1.5vw, 28px);
  color: var(--maple-red-dark);
}

.brand__symbol {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 50%;
  background: var(--maple-red);
  box-shadow: 0 8px 28px rgb(81 0 0 / 20%);
}

.brand__symbol svg {
  width: 25px;
  fill: #fff;
}

.brand__symbol .brand__stem {
  fill: none;
  stroke: #fff;
  stroke-linecap: round;
  stroke-width: 2;
}

.brand__name {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand__name strong {
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.08em;
}

.brand__name small {
  margin-top: 5px;
  color: var(--maple-ink);
  font-size: 6px;
  font-weight: 700;
  letter-spacing: 0.22em;
  opacity: 0.62;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(20px, 2.2vw, 38px);
  margin-left: auto;
  margin-right: clamp(24px, 3vw, 52px);
}

.desktop-nav a {
  position: relative;
  padding: 12px 0;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: #fff;
  opacity: 0.88;
  transition: opacity 180ms ease;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 5px;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 280ms var(--ease-out);
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible {
  opacity: 1;
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 750;
  transition: transform 220ms var(--ease-out), background 220ms ease, color 220ms ease;
}

.header-cta {
  min-height: 47px;
  padding: 0 19px 0 22px;
  background: #fff;
  color: var(--maple-red-dark);
}

.header-cta svg,
.button svg {
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

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

.header-cta:hover {
  background: var(--maple-off-white);
}

.menu-toggle,
.mobile-menu {
  display: none;
}

.hero {
  position: relative;
  min-height: max(690px, calc(100svh - (var(--page-gutter) * 2)));
  margin: var(--page-gutter);
  overflow: hidden;
  border-radius: var(--hero-radius);
  background: var(--maple-wine);
  color: #fff;
  isolation: isolate;
}

.hero__media,
.hero__overlay,
.hero__accent {
  position: absolute;
  inset: 0;
}

.hero__media {
  z-index: -3;
  overflow: hidden;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% center;
  animation: hero-ken-burns 18s ease-in-out infinite alternate;
}

.hero__overlay {
  z-index: -2;
  background:
    linear-gradient(90deg, rgb(27 10 8 / 88%) 0%, rgb(63 9 7 / 68%) 38%, rgb(83 7 5 / 20%) 67%, transparent 88%),
    linear-gradient(180deg, rgb(20 9 7 / 48%) 0%, transparent 43%, rgb(27 6 5 / 55%) 100%);
}

.hero__accent {
  z-index: -1;
  left: auto;
  width: 42%;
  background: linear-gradient(110deg, transparent 15%, rgb(237 14 17 / 16%) 100%);
  mix-blend-mode: screen;
}

.maple-line {
  position: absolute;
  fill: none;
  pointer-events: none;
}

.maple-line path {
  vector-effect: non-scaling-stroke;
  stroke: currentColor;
  stroke-width: 16;
  stroke-linecap: round;
  stroke-linejoin: miter;
  stroke-miterlimit: 5;
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
}

.maple-line--hero {
  z-index: -1;
  top: 17%;
  right: -7%;
  width: min(38vw, 570px);
  color: rgb(255 255 255 / 72%);
  filter: drop-shadow(0 10px 24px rgb(64 0 0 / 18%));
}

.maple-line--hero path {
  animation: draw-maple 1.8s 1.05s var(--ease-out) forwards;
}

.maple-line--hero path:nth-child(2) {
  animation-delay: 1.28s;
}

.maple-line--hero path:nth-child(3) {
  animation-delay: 1.5s;
}

.hero__content {
  position: absolute;
  top: 52%;
  left: clamp(28px, 7.2vw, 136px);
  width: min(700px, 52vw);
  transform: translateY(-45%);
}

.hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 26px;
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(20px);
  animation: reveal-copy 0.8s 0.5s var(--ease-out) forwards;
}

.hero__eyebrow span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--maple-red);
  box-shadow: 0 0 0 5px rgb(237 14 17 / 22%);
}

.hero h1 {
  max-width: 680px;
  margin: 0;
  font-size: clamp(58px, 6.5vw, 116px);
  font-weight: 800;
  letter-spacing: -0.064em;
  line-height: 0.86;
  text-wrap: balance;
  opacity: 0;
  transform: translateY(34px);
  animation: reveal-copy 1s 0.62s var(--ease-out) forwards;
}

.hero h1 em {
  display: block;
  color: #ff3336;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.07em;
  font-weight: 400;
  letter-spacing: -0.06em;
}

.hero__description {
  max-width: 540px;
  margin: 29px 0 0;
  font-size: clamp(16px, 1.3vw, 20px);
  line-height: 1.55;
  opacity: 0;
  transform: translateY(24px);
  animation: reveal-copy 0.9s 0.78s var(--ease-out) forwards;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 34px;
  opacity: 0;
  transform: translateY(24px);
  animation: reveal-copy 0.9s 0.92s var(--ease-out) forwards;
}

.button {
  min-height: 54px;
  padding: 0 25px;
}

.button--primary {
  background: var(--maple-red);
  box-shadow: 0 14px 30px rgb(98 0 0 / 27%);
}

.button--primary:hover {
  background: #ff1c20;
}

.button--ghost {
  border: 1px solid rgb(255 255 255 / 46%);
  background: rgb(255 255 255 / 8%);
  backdrop-filter: blur(8px);
}

.button--ghost:hover {
  background: #fff;
  color: var(--maple-red-dark);
}

/* Botões em cápsula inspirados na interação da referência. */
.maple-button {
  --button-bg: var(--maple-red);
  --button-color: #fff;
  --button-border: var(--maple-red);
  --button-fill: #fff;
  --button-hover-color: var(--maple-red-dark);
  --button-start-bg: #fff;
  --button-start-color: var(--maple-red-dark);
  --button-end-bg: var(--maple-red);
  --button-end-color: #fff;
  position: relative;
  isolation: isolate;
  min-width: 208px;
  min-height: 56px;
  padding: 7px;
  overflow: hidden;
  border: 1.5px solid var(--button-border);
  border-radius: 999px;
  background: var(--button-bg);
  color: var(--button-color);
  box-shadow: 0 11px 27px rgb(91 8 7 / 17%);
}

.maple-button::before {
  position: absolute;
  z-index: -1;
  inset: 2px;
  border-radius: inherit;
  background: var(--button-fill);
  content: "";
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 430ms ease-in-out;
}

.maple-button strong {
  position: relative;
  z-index: 1;
  padding: 0 47px;
  font-size: 13px;
  white-space: nowrap;
}

.maple-button__icon {
  position: absolute;
  z-index: 2;
  top: 50%;
  display: grid;
  width: 40px;
  height: 40px;
  margin-top: -20px;
  place-items: center;
  border-radius: 50%;
  pointer-events: none;
  transition:
    opacity 430ms ease-in-out,
    transform 430ms ease-in-out,
    color 430ms ease-in-out,
    background 430ms ease-in-out;
}

.maple-button__icon svg {
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.maple-button__icon--start {
  left: 7px;
  background: var(--button-start-bg);
  color: var(--button-start-color);
  opacity: 1;
  transform: translateX(0) scale(1);
}

.maple-button__icon--end {
  right: 7px;
  background: var(--button-end-bg);
  color: var(--button-end-color);
  opacity: 0;
  transform: translateX(-7px) scale(0.88);
}

.maple-button:hover,
.maple-button:focus-visible {
  background: var(--button-bg);
  color: var(--button-hover-color);
  outline: 0;
  transform: translateY(-2px);
}

.maple-button:hover::before,
.maple-button:focus-visible::before {
  transform: scaleX(1);
}

.maple-button:hover .maple-button__icon--start,
.maple-button:focus-visible .maple-button__icon--start {
  opacity: 0;
  transform: translateX(7px) scale(0.88);
}

.maple-button:hover .maple-button__icon--end,
.maple-button:focus-visible .maple-button__icon--end {
  opacity: 1;
  transform: translateX(0) scale(1);
}

.maple-button--light {
  --button-bg: #fff;
  --button-color: var(--maple-red-dark);
  --button-border: #fff;
  --button-fill: var(--maple-red);
  --button-hover-color: #fff;
  --button-start-bg: var(--maple-red);
  --button-start-color: #fff;
  --button-end-bg: #fff;
  --button-end-color: var(--maple-red-dark);
}

.maple-button--ghost {
  --button-bg: rgb(255 255 255 / 8%);
  --button-color: #fff;
  --button-border: rgb(255 255 255 / 46%);
  --button-fill: #fff;
  --button-hover-color: var(--maple-red-dark);
  --button-start-bg: #fff;
  --button-start-color: var(--maple-red-dark);
  --button-end-bg: var(--maple-red);
  --button-end-color: #fff;
  min-width: 275px;
  box-shadow: none;
  backdrop-filter: blur(8px);
}

.header-cta.maple-button {
  min-width: 208px;
  min-height: 47px;
  padding: 6px;
}

.header-cta.maple-button strong {
  padding: 0 38px;
  font-size: 12px;
}

.header-cta .maple-button__icon {
  width: 33px;
  height: 33px;
  margin-top: -16.5px;
}

.header-cta .maple-button__icon--start { left: 6px; }
.header-cta .maple-button__icon--end { right: 6px; }

.hero__note {
  position: absolute;
  right: clamp(26px, 3.7vw, 70px);
  bottom: clamp(34px, 5vw, 82px);
  display: grid;
  grid-template-columns: auto 42px minmax(150px, 210px);
  align-items: center;
  gap: 15px;
  opacity: 0;
  animation: fade-in 0.9s 1.15s ease forwards;
}

.hero__note-number {
  font-family: Georgia, serif;
  font-size: 13px;
  font-style: italic;
  opacity: 0.72;
}

.hero__note-line {
  height: 1px;
  background: rgb(255 255 255 / 52%);
}

.hero__note p {
  margin: 0;
  font-size: 12px;
  line-height: 1.5;
  opacity: 0.78;
}

.hero__note strong {
  color: #fff;
  font-size: 13px;
  opacity: 1;
}

.hero__scroll {
  position: absolute;
  bottom: 35px;
  left: clamp(28px, 3.5vw, 66px);
  display: flex;
  align-items: center;
  gap: 13px;
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0;
  animation: fade-in 0.8s 1.2s ease forwards;
}

.hero__scroll-icon {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid rgb(255 255 255 / 48%);
  border-radius: 50%;
}

.hero__scroll-icon svg {
  width: 17px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
  animation: scroll-arrow 1.8s ease-in-out infinite;
}

.about {
  position: relative;
  padding: clamp(105px, 11vw, 185px) clamp(22px, 5.2vw, 96px) clamp(90px, 10vw, 170px);
  overflow: hidden;
  background: var(--maple-off-white);
}

.maple-line--section {
  z-index: 0;
  top: -17%;
  right: -9%;
  width: min(40vw, 610px);
  height: auto;
  color: rgb(237 14 17 / 9%);
  transform: rotate(9deg);
}

.maple-line--section path {
  stroke-width: 18;
}

.maple-line--section.is-visible path {
  animation: draw-maple 1.7s var(--ease-out) forwards;
}

.about__inner {
  position: relative;
  z-index: 1;
  width: min(100%, 1380px);
  margin: 0 auto;
}

.about__heading {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(300px, 0.55fr);
  gap: clamp(50px, 8vw, 140px);
  align-items: end;
}

.section-label {
  display: flex;
  align-items: center;
  gap: 13px;
  margin: 0 0 24px;
  color: var(--maple-red-dark);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.section-label span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgb(168 24 21 / 28%);
  border-radius: 50%;
  font-size: 9px;
}

.about__heading h2 {
  max-width: 850px;
  margin: 0;
  font-size: clamp(50px, 6.3vw, 104px);
  font-weight: 800;
  letter-spacing: -0.065em;
  line-height: 0.93;
}

.about__heading h2 em {
  display: block;
  color: var(--maple-red);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}

.about__intro {
  padding-bottom: 7px;
}

.about__intro > p {
  margin: 0;
  color: #5f5f5f;
  font-size: clamp(15px, 1.25vw, 19px);
  line-height: 1.65;
}

.about__intro > a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 27px;
  color: var(--maple-red-dark);
  font-size: 13px;
  font-weight: 800;
}

.about__intro svg {
  width: 19px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
  transition: transform 220ms var(--ease-out);
}

.about__intro a:hover svg {
  transform: translateX(5px);
}

.about__intro > a.maple-button {
  min-width: 220px;
  color: #fff;
}

.about__intro > a.maple-button:hover,
.about__intro > a.maple-button:focus-visible {
  color: var(--maple-red-dark);
}

.about__intro > a.maple-button:hover svg,
.about__intro > a.maple-button:focus-visible svg {
  transform: none;
}

.about__showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.28fr) minmax(330px, 0.72fr);
  gap: clamp(14px, 1.5vw, 24px);
  margin-top: clamp(62px, 7vw, 105px);
}

.about__media,
.about__statement {
  min-height: clamp(470px, 47vw, 680px);
  margin: 0;
  overflow: hidden;
  border-radius: clamp(25px, 2.4vw, 38px);
}

.about__media {
  position: relative;
  background: #c9b49d;
}

.about__media::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 48%, rgb(30 12 7 / 72%) 100%);
  content: "";
}

.about__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.1s var(--ease-out);
}

.about__media:hover img {
  transform: scale(1.035);
}

.about__media figcaption {
  position: absolute;
  z-index: 1;
  right: clamp(25px, 3vw, 50px);
  bottom: clamp(24px, 3vw, 45px);
  left: clamp(25px, 3vw, 50px);
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  color: #fff;
}

.about__media figcaption span {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.72;
}

.about__media figcaption strong {
  max-width: 390px;
  font-size: clamp(19px, 2vw, 31px);
  letter-spacing: -0.035em;
  line-height: 1.05;
  text-align: right;
}

.about__statement {
  position: relative;
  order: -1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(27px, 3.2vw, 52px);
  border: 1px solid rgb(255 255 255 / 18%);
  background: #3b2520;
  color: #fff;
  isolation: isolate;
}

.about__statement::before {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgb(119 4 0 / 72%) 0%,
    rgb(168 24 21 / 40%) 45%,
    rgb(119 4 0 / 8%) 100%
  );
  content: "";
}

.about__statement-photo {
  position: absolute;
  z-index: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 52% center;
  transition: transform 1.2s var(--ease-out), filter 600ms ease;
}

.about__statement:hover .about__statement-photo {
  filter: saturate(1.06);
  transform: scale(1.035);
}

.about__statement > div {
  position: relative;
  z-index: 3;
  width: 100%;
  min-width: 0;
  max-width: 560px;
  margin-top: auto;
  margin-bottom: clamp(28px, 3vw, 46px);
}

.about__statement p {
  margin: 0 0 16px;
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  opacity: 0.75;
}

.about__statement h3 {
  max-width: 100%;
  margin: 0;
  font-size: clamp(30px, 3vw, 49px);
  font-weight: 780;
  letter-spacing: -0.065em;
  line-height: 0.96;
  overflow-wrap: normal;
}

.about__statement-button {
  position: relative;
  z-index: 3;
  align-self: flex-start;
}

.about__statement-mark {
  position: absolute;
  top: 5%;
  right: -32%;
  width: 95%;
  color: #fff;
  z-index: 2;
  opacity: 0.08;
  transform: rotate(12deg);
}

.about__statement-mark svg {
  display: block;
  width: 100%;
  fill: currentColor;
}

.about__pillars {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(14px, 1.5vw, 24px);
  margin: 0;
}

.about__pillar {
  position: relative;
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: clamp(20px, 2vw, 30px);
  min-height: 0;
  padding: clamp(29px, 2.7vw, 43px);
  overflow: hidden;
  border: 1px solid rgb(36 36 36 / 7%);
  border-radius: clamp(22px, 2vw, 30px);
  background: #fff;
  box-shadow: 0 14px 44px rgb(63 31 25 / 6%);
  transition:
    border-color 280ms ease,
    box-shadow 350ms ease,
    transform 350ms var(--ease-out);
}

.about__pillar:hover {
  border-color: rgb(237 14 17 / 18%);
  box-shadow: 0 22px 55px rgb(98 17 14 / 10%);
  transform: translateY(-7px);
}

.about__pillar-icon {
  position: relative;
  z-index: 1;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border: 1px solid rgb(237 14 17 / 13%);
  border-radius: 18px;
  background: #fff0ee;
  color: var(--maple-red);
  transition: background 280ms ease, color 280ms ease, transform 350ms var(--ease-out);
}

.about__pillar-icon svg {
  width: 27px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.55;
}

.about__pillar:hover .about__pillar-icon {
  background: var(--maple-red);
  color: #fff;
  transform: rotate(-4deg) scale(1.05);
}

.about__pillar > div {
  position: relative;
  z-index: 1;
  padding-top: 5px;
}

.about__pillar-mark {
  position: absolute;
  right: 16px;
  bottom: 12px;
  width: 82px;
  color: var(--maple-red);
  opacity: 0.065;
  transform: rotate(7deg);
  transition: opacity 350ms ease, transform 500ms var(--ease-out);
}

.about__pillar-mark svg {
  display: block;
  width: 100%;
  fill: currentColor;
}

.about__pillar:hover .about__pillar-mark {
  opacity: 0.12;
  transform: rotate(0) scale(1.07);
}

.about__pillar h3 {
  margin: 0;
  font-size: clamp(20px, 1.7vw, 27px);
  letter-spacing: -0.035em;
}

.about__pillar p {
  max-width: 300px;
  margin: 14px 0 0;
  color: #6b6868;
  font-size: 14px;
  line-height: 1.55;
}

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(35px);
  transition: opacity 800ms ease, transform 900ms var(--ease-out);
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.about__pillar:nth-child(2) { transition-delay: 100ms; }
.about__pillar:nth-child(3) { transition-delay: 200ms; }

.methodology {
  padding: 0 var(--page-gutter) clamp(100px, 10vw, 165px);
  background: var(--maple-off-white);
}

.methodology__shell {
  position: relative;
  padding: clamp(80px, 8vw, 135px) clamp(28px, 6vw, 105px);
  overflow: hidden;
  border-radius: var(--hero-radius);
  background: linear-gradient(135deg, var(--maple-wine) 0%, var(--maple-red-dark) 52%, var(--maple-red) 100%);
  color: #fff;
  isolation: isolate;
}

.methodology__leaf {
  position: absolute;
  z-index: -1;
  top: -20%;
  right: -9%;
  width: min(43vw, 650px);
  fill: #fff;
  opacity: 0.075;
  transform: rotate(10deg);
}

.methodology__heading {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(290px, 0.45fr);
  gap: clamp(45px, 8vw, 135px);
  align-items: end;
}

.methodology__label {
  display: flex;
  align-items: center;
  gap: 13px;
  margin: 0 0 25px;
  color: rgb(255 255 255 / 78%);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.methodology__label span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgb(255 255 255 / 36%);
  border-radius: 50%;
  font-size: 9px;
}

.methodology__heading h2 {
  margin: 0;
  font-size: clamp(48px, 5.7vw, 92px);
  font-weight: 800;
  letter-spacing: -0.065em;
  line-height: 0.94;
}

.methodology__heading h2 em {
  display: block;
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}

.methodology__heading > p {
  margin: 0 0 7px;
  color: rgb(255 255 255 / 74%);
  font-size: clamp(15px, 1.2vw, 18px);
  line-height: 1.65;
}

.methodology__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(350px, 0.92fr);
  gap: clamp(40px, 6vw, 95px);
  align-items: center;
  margin-top: clamp(65px, 7vw, 110px);
}

.methodology__media {
  position: relative;
  min-height: clamp(500px, 47vw, 670px);
  margin: 0;
  overflow: hidden;
  border-radius: clamp(24px, 2.4vw, 38px);
  background: #5d4a3f;
}

.methodology__media::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 52%, rgb(23 10 8 / 78%) 100%);
  content: "";
}

.methodology__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 52% center;
  transition: transform 1.1s var(--ease-out);
}

.methodology__media:hover img {
  transform: scale(1.035);
}

.methodology__media figcaption {
  position: absolute;
  z-index: 1;
  right: clamp(24px, 3vw, 46px);
  bottom: clamp(25px, 3vw, 44px);
  left: clamp(24px, 3vw, 46px);
}

.methodology__media figcaption span {
  display: block;
  margin-bottom: 10px;
  color: #ff696c;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.methodology__media figcaption strong {
  display: block;
  max-width: 480px;
  font-size: clamp(22px, 2.3vw, 35px);
  letter-spacing: -0.04em;
  line-height: 1.05;
}

.methodology__topics {
  border-top: 1px solid rgb(255 255 255 / 15%);
}

.methodology__topic {
  border-bottom: 1px solid rgb(255 255 255 / 15%);
}

.methodology__topic button {
  display: grid;
  grid-template-columns: 52px 1fr 42px;
  gap: 20px;
  align-items: center;
  width: 100%;
  padding: 25px 0;
  border: 0;
  background: transparent;
  color: #fff;
  cursor: pointer;
  font: inherit;
  text-align: left;
}

.methodology__topic button > strong {
  font-size: clamp(20px, 1.8vw, 28px);
  letter-spacing: -0.035em;
}

.methodology__topic-icon {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border-radius: 17px;
  background: rgb(255 255 255 / 12%);
  color: #fff;
  transition: background 280ms ease, color 280ms ease;
}

.methodology__topic-icon svg {
  width: 25px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.55;
}

.methodology__topic.is-open .methodology__topic-icon {
  background: #fff;
  color: var(--maple-red-dark);
}

.methodology__toggle {
  position: relative;
  width: 42px;
  height: 42px;
  border: 1px solid rgb(255 255 255 / 26%);
  border-radius: 50%;
}

.methodology__toggle::before,
.methodology__toggle::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 1.5px;
  background: #fff;
  content: "";
  transform: translate(-50%, -50%);
  transition: transform 280ms var(--ease-out);
}

.methodology__toggle::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.methodology__topic.is-open .methodology__toggle::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.methodology__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 480ms var(--ease-out);
}

.methodology__topic.is-open .methodology__answer {
  max-height: 150px;
}

.methodology__answer p {
  max-width: 500px;
  margin: -4px 54px 28px 72px;
  color: rgb(255 255 255 / 60%);
  font-size: 14px;
  line-height: 1.65;
}

/* Metodologia no formato de painel Impact Stats. */
.methodology-impact {
  padding: 0;
  background: var(--maple-off-white);
}

.impact__wrapper {
  display: flex;
  align-items: stretch;
  width: 100%;
  margin: 0 auto;
}

.impact__stories {
  flex: 0 0 40%;
  padding-left: var(--page-gutter);
}

.impact__story {
  display: flex;
  min-height: 100svh;
  max-width: 30rem;
  padding: clamp(88px, 10vh, 120px) clamp(32px, 4vw, 64px) clamp(88px, 10vh, 120px) 0;
  flex-direction: column;
  justify-content: center;
}

.impact__story:first-child {
  justify-content: flex-end;
  padding-bottom: 18vh;
}

.impact__eyebrow {
  margin: 0 0 14px;
  color: var(--maple-ink);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.035em;
  text-transform: uppercase;
}

.impact__story h2 {
  margin: 0;
  font-size: clamp(35px, 2.85vw, 43px);
  font-weight: 450;
  letter-spacing: -0.055em;
  line-height: 0.96;
}

.impact__description {
  margin: 32px 0 0;
  color: #4d4d4a;
  font-size: 16px;
  line-height: 1.48;
}

.impact__story .maple-button {
  align-self: flex-start;
  margin-top: 32px;
}

.impact__visual {
  position: sticky;
  top: 1.875rem;
  flex: 0 0 60%;
  height: 100svh;
  overflow: hidden;
  background: var(--maple-off-white);
}

.impact__digits,
.impact__images {
  position: absolute;
  inset: 0;
}

.impact__digits {
  z-index: auto;
}

.impact__digit-window {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 53%;
  overflow: hidden;
}

.impact__digit-window:first-child {
  left: 0;
}

.impact__digit-window:last-child {
  right: 0;
}

.impact__train {
  position: absolute;
  inset: 0 0 auto;
  height: 300svh;
  color: #181817;
  will-change: transform;
}

.impact__train span {
  display: flex;
  width: 100%;
  height: 100svh;
  align-items: center;
  justify-content: center;
  font-size: 56vw;
  font-weight: 800;
  letter-spacing: -0.105em;
  line-height: 100svh;
}

.impact__images {
  z-index: auto;
  pointer-events: none;
}

.impact__images img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  mix-blend-mode: lighten;
  opacity: 0;
  will-change: opacity;
}

.impact__images img.is-active {
  opacity: 1;
}

@keyframes reveal-header {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes reveal-copy {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fade-in {
  to { opacity: 1; }
}

@keyframes hero-ken-burns {
  from { transform: scale(1.03) translate3d(0, 0, 0); }
  to { transform: scale(1.1) translate3d(-1.8%, -1%, 0); }
}

@keyframes scroll-arrow {
  0%, 100% { transform: translateY(-2px); }
  50% { transform: translateY(3px); }
}

@keyframes draw-maple {
  to { stroke-dashoffset: 0; }
}

@media (max-width: 1100px) {
  .desktop-nav { display: none; }
  .site-header { padding-right: 18px; }
  .header-cta { margin-left: auto; margin-right: 12px; }
  .menu-toggle {
    position: relative;
    z-index: 22;
    display: grid;
    width: 47px;
    height: 47px;
    padding: 0;
    place-content: center;
    gap: 6px;
    border: 1px solid rgb(255 255 255 / 40%);
    border-radius: 50%;
    background: rgb(255 255 255 / 10%);
    color: #fff;
    cursor: pointer;
    backdrop-filter: blur(8px);
  }
  .menu-toggle > span:not(.sr-only) {
    display: block;
    width: 18px;
    height: 1.5px;
    background: currentColor;
    transition: transform 280ms ease;
  }
  .menu-toggle[aria-expanded="true"] > span:nth-last-child(2) { transform: translateY(3.75px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] > span:last-child { transform: translateY(-3.75px) rotate(-45deg); }
  .mobile-menu {
    position: fixed;
    z-index: 21;
    inset: var(--page-gutter);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(32px, 8vw, 90px);
    border-radius: var(--hero-radius);
    background: var(--maple-wine);
    opacity: 0;
    pointer-events: none;
    transform: scale(0.98);
    transition: opacity 280ms ease, transform 450ms var(--ease-out);
  }
  .mobile-menu.is-open { opacity: 1; pointer-events: auto; transform: scale(1); }
  .mobile-menu nav { display: flex; flex-direction: column; }
  .mobile-menu nav a {
    padding: 8px 0;
    font-size: clamp(32px, 7vw, 62px);
    font-weight: 750;
    letter-spacing: -0.045em;
  }
  .mobile-menu__cta {
    align-self: flex-start;
    margin-top: 34px;
    padding: 15px 22px;
    border-radius: 999px;
    background: #fff;
    color: var(--maple-red-dark);
    font-size: 14px;
    font-weight: 750;
  }
  .hero__content { width: min(690px, 69vw); }
  .about__heading { grid-template-columns: 1fr; gap: 34px; }
  .about__intro { max-width: 650px; }
  .about__showcase { grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr); }
  .about__pillar { grid-template-columns: 52px 1fr; padding: 30px 24px; }
  .about__pillar-icon { width: 52px; height: 52px; border-radius: 16px; }
  .methodology__heading { grid-template-columns: 1fr; gap: 30px; }
  .methodology__heading > p { max-width: 650px; }
  .methodology__layout { grid-template-columns: minmax(0, 1fr) minmax(330px, 0.9fr); gap: 40px; }
  .methodology__topic button { grid-template-columns: 48px 1fr 38px; gap: 15px; }
  .methodology__topic-icon { width: 48px; height: 48px; }
}

@media (max-width: 860px) {
  .about__showcase { grid-template-columns: 1fr; }
  .about__media { min-height: min(72vw, 570px); }
  .about__statement { min-height: 440px; }
  .about__pillars { grid-template-columns: 1fr; }
  .about__pillar { min-height: 190px; }
  .methodology__layout { grid-template-columns: 1fr; }
  .methodology__media { min-height: min(76vw, 570px); }
}

@media (max-width: 720px) {
  :root { --page-gutter: 8px; --hero-radius: 22px; }
  .site-header { top: 16px; left: 0; right: 8px; padding-right: 14px; }
  .site-header::before { top: -16px; bottom: -7px; width: 172px; border-radius: 0 0 24px 0; }
  .brand { flex-basis: 172px; padding-left: 17px; }
  .brand__symbol { width: 36px; height: 36px; }
  .brand__name strong { font-size: 13px; }
  .brand__name small { font-size: 6px; }
  .header-cta { display: none; }
  .hero { min-height: max(680px, calc(100svh - 16px)); }
  .hero__media img { object-position: 64% center; }
  .hero__overlay {
    background:
      linear-gradient(90deg, rgb(29 8 7 / 82%) 0%, rgb(57 7 6 / 54%) 62%, rgb(57 7 6 / 12%) 100%),
      linear-gradient(180deg, rgb(26 7 6 / 50%) 0%, transparent 33%, rgb(28 6 5 / 78%) 100%);
  }
  .maple-line--hero { top: 9%; right: -42%; width: 108vw; opacity: 0.72; }
  .hero__content {
    top: auto;
    right: 23px;
    bottom: 105px;
    left: 23px;
    width: auto;
    transform: none;
  }
  .hero__eyebrow { margin-bottom: 18px; font-size: 10px; }
  .hero h1 { max-width: 520px; font-size: clamp(50px, 16vw, 76px); line-height: 0.9; }
  .hero__description { max-width: 470px; margin-top: 22px; font-size: 15px; line-height: 1.48; }
  .hero__actions { margin-top: 25px; }
  .button { min-height: 49px; padding: 0 20px; font-size: 12px; }
  .button.maple-button { min-height: 52px; padding: 6px; }
  .button.maple-button strong { padding: 0 43px; font-size: 12px; }
  .button.maple-button .maple-button__icon { width: 38px; height: 38px; margin-top: -19px; }
  .hero__actions .button--ghost { display: none; }
  .hero__note { display: none; }
  .hero__scroll { bottom: 25px; left: auto; right: 23px; }
  .hero__scroll > span:first-child { display: none; }
  .about { padding: 90px 18px 92px; }
  .maple-line--section { top: -2%; right: -45%; left: auto; width: 120vw; transform: rotate(12deg); }
  .about__heading h2 { font-size: clamp(46px, 14vw, 66px); }
  .about__intro > p { font-size: 15px; }
  .about__showcase { margin-top: 50px; }
  .about__media { min-height: 430px; }
  .about__media img { object-position: 53% center; }
  .about__media figcaption { display: block; }
  .about__media figcaption strong { display: block; margin-top: 9px; text-align: left; }
  .about__statement { min-height: 390px; }
  .about__statement h3 { font-size: clamp(30px, 9.2vw, 38px); }
  .about__pillar { grid-template-columns: 50px 1fr; min-height: 0; padding: 27px 23px; }
  .about__pillar-icon { width: 50px; height: 50px; }
  .methodology { padding-right: 8px; padding-bottom: 95px; padding-left: 8px; }
  .methodology__shell { padding: 72px 20px 58px; border-radius: 22px; }
  .methodology__leaf { top: -7%; right: -48%; width: 125vw; }
  .methodology__heading h2 { font-size: clamp(45px, 13.5vw, 62px); }
  .methodology__layout { gap: 42px; margin-top: 52px; }
  .methodology__media { min-height: 430px; }
  .methodology__media img { object-position: 56% center; }
  .methodology__topic button { grid-template-columns: 46px 1fr 38px; gap: 13px; padding: 21px 0; }
  .methodology__topic-icon { width: 46px; height: 46px; border-radius: 15px; }
  .methodology__topic button > strong { font-size: 19px; }
  .methodology__toggle { width: 38px; height: 38px; }
  .methodology__answer p { margin: -2px 4px 24px 59px; font-size: 13px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

@media (max-width: 991px) {
  .methodology.methodology-impact {
    padding: 105px clamp(22px, 5vw, 52px);
  }

  .impact__wrapper {
    display: block;
  }

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

  .impact__story {
    min-height: 0;
    padding: 36px 28px;
    border: 1px solid rgb(36 36 36 / 7%);
    border-radius: 27px;
    background: #fff;
    box-shadow: 0 14px 40px rgb(63 31 25 / 5%);
  }

  .impact__story h2 {
    font-size: clamp(36px, 4.8vw, 50px);
  }

  .impact__description {
    font-size: 14px;
  }

  .impact__story .maple-button {
    min-width: 0;
    width: 100%;
  }

  .impact__story .maple-button strong {
    padding-right: 39px;
    padding-left: 39px;
    font-size: 11px;
  }

  .impact__visual {
    display: none;
  }
}

@media (max-width: 720px) {
  .methodology.methodology-impact {
    padding: 82px 18px 96px;
  }

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

  .impact__story {
    padding: 38px 25px;
  }

  .impact__story h2 {
    font-size: clamp(39px, 11.8vw, 52px);
  }

  .impact__story .maple-button {
    width: max-content;
    max-width: 100%;
  }
}
