@font-face {
  font-family: "Sora";
  src: url("/assets/fonts/sora-latin-v1.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
}

@font-face {
  font-family: "Poppins";
  src: url("/assets/fonts/poppins-600-latin-v1.woff2") format("woff2");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

:root {
  --olive: #776237;
  --olive-deep: #5f4d2b;
  --rose: #d3a39f;
  --cream: #ede6dd;
  --cream-soft: #f7f0e7;
  --light-01: #fcfcfc;
  --light-02: #efefef;
  --surface: #ffffff;
  --ink: #171512;
  --muted: #655f58;
  --line: rgba(119, 98, 55, 0.42);
  --whatsapp: #25d366;
  --shadow: 0 24px 70px rgba(57, 41, 16, 0.13);
  --radius: 30px;
  --container: 1440px;
  --gutter: clamp(20px, 4vw, 48px);
  --header-height: 104px;
  color-scheme: light;
  font-family: "Sora", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-synthesis: none;
  scroll-behavior: smooth;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-padding-top: calc(var(--header-height) + 16px);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: clip;
  background: var(--surface);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.68;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

img {
  height: auto;
}

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button,
input,
textarea,
select {
  font: inherit;
}

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

h1,
h2,
h3,
h4 {
  text-wrap: balance;
}

h1,
h2 {
  letter-spacing: -0.045em;
  line-height: 1.1;
}

h2 {
  margin-bottom: clamp(22px, 3vw, 36px);
  font-size: clamp(2.25rem, 4.5vw, 4rem);
}

h3 {
  margin-bottom: 4px;
  font-size: clamp(1.65rem, 2.4vw, 2.35rem);
  letter-spacing: -0.03em;
  line-height: 1.2;
}

h4 {
  font-size: 0.84rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

address {
  font-style: normal;
}

.container {
  width: min(calc(100% - (2 * var(--gutter))), var(--container));
  margin-inline: auto;
}

.section {
  padding: clamp(78px, 9vw, 144px) 0;
}

.about,
.audience-section,
.services,
.office,
.pain-points,
.faq-section {
  content-visibility: auto;
  contain-intrinsic-size: auto 1000px;
}

.about {
  contain-intrinsic-size: auto 1800px;
}

.audience-section {
  contain-intrinsic-size: auto 1100px;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(44px, 6vw, 96px);
}

.content-block {
  min-width: 0;
}

.content-block > p:not(.eyebrow, .closing-copy) {
  max-width: 68ch;
  color: var(--muted);
  font-size: clamp(1rem, 1.25vw, 1.16rem);
}

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

.skip-link {
  position: fixed;
  z-index: 2000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  transform: translateY(-160%);
  border-radius: 10px;
  background: var(--surface);
  color: var(--ink);
  font-weight: 750;
}

.skip-link:focus {
  transform: translateY(0);
}

:focus-visible {
  outline: 3px solid #55e38a;
  outline-offset: 4px;
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 14px 22px;
  border: 0;
  border-radius: 999px;
  background: var(--olive);
  box-shadow: 8px 8px 15px rgba(0, 0, 0, 0.15);
  color: #fff;
  font-family: "Poppins", "Sora", sans-serif;
  font-size: 0.96rem;
  font-weight: 600;
  line-height: 1.2;
  text-decoration: none;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    box-shadow 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
  background: var(--olive-deep);
  box-shadow: 8px 12px 22px rgba(0, 0, 0, 0.18);
}

.button img {
  flex: 0 0 24px;
  width: 24px;
  height: 24px;
}

.button--primary {
  margin-top: 18px;
  outline: 9px solid rgba(119, 98, 55, 0.09);
}

.site-header {
  position: fixed;
  z-index: 1000;
  top: 0;
  right: 0;
  left: 0;
  height: var(--header-height);
  color: #fff;
  transition:
    background-color 180ms ease,
    box-shadow 180ms ease,
    height 180ms ease;
}

.site-header.is-scrolled,
.site-header.menu-open {
  height: 84px;
  background: rgba(77, 62, 34, 0.94);
  box-shadow: 0 12px 30px rgba(43, 31, 10, 0.18);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.header-inner {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 7px;
  color: #fff;
  text-decoration: none;
}

.brand__mark {
  width: 40px;
  height: 70px;
}

.brand__wordmark {
  display: grid;
  width: 160px;
  grid-template-columns: 1fr;
  grid-template-rows: auto;
}

.brand__wordmark img:first-child {
  width: 160px;
}

.brand__wordmark img:last-child {
  width: 50px;
  margin: -17px 0 0 103px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 1.8vw, 30px);
}

.site-nav > a:not(.button) {
  position: relative;
  padding: 10px 0;
  font-size: 0.96rem;
  text-decoration: none;
}

.site-nav > a:not(.button)::after {
  position: absolute;
  right: 0;
  bottom: 5px;
  left: 0;
  height: 1px;
  transform: scaleX(0);
  transform-origin: right;
  background: currentColor;
  content: "";
  transition: transform 180ms ease;
}

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

.button--header {
  min-height: 50px;
  padding: 13px 20px;
  outline: 9px solid rgba(255, 255, 255, 0.27);
  white-space: nowrap;
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 50%;
  background: rgba(119, 98, 55, 0.72);
  color: #fff;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  height: 2px;
  margin: 5px 0;
  border-radius: 999px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.site-header.menu-open .menu-toggle span:nth-child(2) {
  transform: translateY(7px) rotate(45deg);
}

.site-header.menu-open .menu-toggle span:nth-child(3) {
  opacity: 0;
}

.site-header.menu-open .menu-toggle span:nth-child(4) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  display: grid;
  min-height: 100svh;
  overflow: hidden;
  place-items: center;
  color: var(--light-01);
  isolation: isolate;
}

.hero__media,
.hero__media img,
.hero__overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero__media {
  z-index: -3;
}

.hero__media img {
  right: auto;
  width: 124%;
  max-width: none;
  object-fit: cover;
  object-position: 50% 32%;
}

.hero__overlay {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(58, 46, 23, 0.72) 0%, rgba(74, 58, 28, 0.5) 42%, rgba(58, 44, 19, 0.05) 78%),
    linear-gradient(180deg, rgba(36, 27, 13, 0.32) 0%, rgba(36, 27, 13, 0.02) 45%, rgba(36, 27, 13, 0.18) 100%);
}

.hero__content {
  width: min(calc(100% - (2 * var(--gutter))), var(--container));
  padding-top: calc(var(--header-height) + clamp(24px, 6svh, 140px));
  padding-bottom: clamp(52px, 9svh, 160px);
}

.hero__content > * {
  max-width: min(760px, 52vw);
}

.hero h1 {
  margin: clamp(16px, 3.8svh, 34px) 0 clamp(12px, 2.9svh, 26px);
  font-size: clamp(2.65rem, min(4.6vw, calc(-1.35rem + 10.67svh)), 4.65rem);
  line-height: 1.08;
}

.hero__lead {
  margin-bottom: clamp(14px, 3.8svh, 34px);
  color: var(--light-02);
  font-size: clamp(0.95rem, min(1.7vw, calc(-0.086rem + 2.73svh)), 1.45rem);
  line-height: 1.5;
}

.experience-badge {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 0.96rem;
  font-weight: 550;
}

.avatar-stack {
  display: grid;
  grid-template-columns: repeat(4, 34px);
  width: 142px;
}

.avatar-stack img {
  width: 48px;
  height: 48px;
  min-width: 48px;
  aspect-ratio: 1;
  border: 2px solid rgba(255, 255, 255, 0.86);
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
}

.button--hero {
  outline: 9px solid rgba(255, 255, 255, 0.27);
}

.button__phone {
  font-family: "Sora", sans-serif;
  font-weight: 500;
}

.hero__divider {
  position: absolute;
  z-index: 2;
  bottom: -1px;
  left: max(var(--gutter), calc((100% - var(--container)) / 2));
  width: 257px;
  height: 54px;
}

.eyebrow {
  margin-bottom: 10px;
  color: var(--olive);
  font-size: 0.9rem;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section-label {
  display: flex;
  align-items: center;
  gap: 0;
  margin: 28px 0 24px;
}

.section-label span {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  padding: 8px 16px;
  border: 1px solid var(--olive);
  border-radius: 999px;
  color: var(--olive);
  font-size: 0.88rem;
  font-weight: 650;
  letter-spacing: 0.02em;
}

.section-label--line::after {
  flex: 1 1 auto;
  height: 1px;
  background: var(--line);
  content: "";
}

.section-label--line span {
  flex: 0 0 auto;
}

.section-label--center {
  justify-content: center;
}

.section-label--center::before,
.section-label--center::after {
  width: min(18vw, 220px);
  height: 1px;
  background: var(--line);
  content: "";
}

.section-heading {
  margin-bottom: clamp(44px, 6vw, 82px);
}

.section-heading--center {
  text-align: center;
}

.section-heading--center h2 {
  max-width: 900px;
  margin-inline: auto;
}

.section-heading--narrow {
  max-width: 850px;
  margin-inline: auto;
}

.section-heading--narrow p {
  max-width: 64ch;
  margin-inline: auto;
  color: var(--muted);
  font-size: 1.06rem;
}

.about-layout {
  display: grid;
  grid-template-areas:
    "visual intro"
    "visual details";
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  grid-template-rows: auto 1fr;
  align-items: start;
  gap: clamp(34px, 4.5vw, 72px) clamp(44px, 6vw, 96px);
}

.about-intro {
  grid-area: intro;
  padding-top: clamp(4px, 1vw, 16px);
}

.about-details {
  min-width: 0;
  grid-area: details;
}

.formation-block > .section-label {
  margin-top: 0;
}

.photo-mosaic {
  position: relative;
  display: grid;
  height: 100%;
  min-height: 1050px;
  grid-template-columns: 1.15fr 0.75fr;
  grid-template-rows: 0.65fr 1.3fr 0.58fr;
  grid-area: visual;
  gap: 22px;
}

.photo-mosaic > img,
.photo-mosaic > picture,
.photo-mosaic__brand {
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 28px;
  object-fit: cover;
}

.photo-mosaic > picture {
  display: block;
}

.photo-mosaic > picture > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-mosaic__one {
  grid-column: 1;
  grid-row: 1;
}

.photo-mosaic__one > img {
  object-position: 50% 30%;
}

.photo-mosaic__two {
  grid-column: 2;
  grid-row: 1;
}

.photo-mosaic__two > img {
  object-position: 50% 24%;
}

.photo-mosaic__three,
.photo-mosaic__three > img {
  grid-column: 1 / -1;
  grid-row: 2;
  object-position: 50% 28%;
}

.photo-quote {
  position: absolute;
  right: 28px;
  bottom: 27%;
  left: 28px;
  display: grid;
  min-height: 170px;
  grid-template-columns: 54px 1fr;
  align-items: center;
  gap: 18px;
  margin: 0;
  padding: 24px 28px;
  border-radius: 24px;
  background: rgba(17, 15, 12, 0.76);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  color: #fff;
  font-size: clamp(0.92rem, 1.2vw, 1.05rem);
  line-height: 1.52;
}

.photo-quote > span {
  color: var(--rose);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 5rem;
  line-height: 1;
}

.photo-mosaic__brand {
  display: grid;
  grid-column: 1;
  grid-row: 3;
  background: var(--olive);
  place-items: center;
}

.photo-mosaic__brand img {
  width: 74px;
  max-height: 138px;
}

.photo-mosaic__four {
  grid-column: 2;
  grid-row: 3;
}

.photo-mosaic__four > img {
  object-position: 50% 28%;
}

.credential-list {
  display: flex;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
}

.credential-list li {
  padding: 9px 14px;
  border: 1px solid rgba(119, 98, 55, 0.48);
  border-radius: 999px;
  color: #494136;
  font-size: 0.9rem;
  line-height: 1.3;
}

.approach-card {
  margin-top: clamp(42px, 5vw, 70px);
  padding: clamp(28px, 3.6vw, 52px);
  border: 1px solid rgba(119, 98, 55, 0.14);
  border-radius: 30px;
  background: var(--cream-soft);
}

.approach-card .section-label {
  margin-top: 0;
}

.approach-card h2 {
  font-size: clamp(2.2rem, 3.7vw, 3.55rem);
}

.approach-card .callout {
  background: var(--surface);
  box-shadow: inset 0 0 0 1px rgba(119, 98, 55, 0.1);
}

.callout {
  display: grid;
  grid-template-columns: 72px 1fr;
  align-items: center;
  gap: 20px;
  margin: 34px 0;
  padding: 28px;
  border-radius: 24px;
  background: var(--cream-soft);
  color: #413b33;
}

.callout__mark {
  display: grid;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: var(--olive);
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 3.8rem;
  line-height: 1;
  place-items: center;
}

.portrait-frame {
  position: relative;
  align-self: stretch;
  min-height: 760px;
  overflow: hidden;
  margin: 0;
  border-radius: 32px;
  background: var(--cream);
  box-shadow: var(--shadow);
}

.portrait-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 35%;
}

.portrait-frame picture {
  display: block;
  width: 100%;
  height: 100%;
}

.audience-section,
.faq-section {
  border-radius: 46px;
  background: var(--cream);
}

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

.audience-card {
  position: relative;
  min-height: 450px;
  padding: clamp(28px, 4vw, 52px);
  overflow: hidden;
  border-radius: 28px;
  background: var(--olive);
  color: #fff;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.09);
}

.audience-card::after {
  position: absolute;
  right: -80px;
  bottom: -100px;
  width: 240px;
  height: 240px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  content: "";
}

.card-index {
  display: grid;
  width: 52px;
  height: 52px;
  margin-bottom: 46px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 50%;
  color: #fff;
  font-weight: 750;
  place-items: center;
}

.age-range {
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.94);
}

.audience-card h4 {
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.94);
}

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

.check-list li {
  position: relative;
  padding-left: 30px;
  line-height: 1.5;
}

.check-list li::before {
  position: absolute;
  top: 0.34em;
  left: 0;
  display: grid;
  width: 19px;
  height: 19px;
  border-radius: 50%;
  background: #42c772;
  color: #173a22;
  content: "✓";
  font-size: 0.7rem;
  font-weight: 800;
  line-height: 1;
  place-items: center;
}

.services {
  padding-bottom: clamp(100px, 10vw, 160px);
}

.split--services {
  align-items: stretch;
}

.service-list {
  display: grid;
  margin: 34px 0;
  padding: 0;
  gap: 14px;
  list-style: none;
}

.service-list li {
  display: flex;
  min-height: 116px;
  align-items: center;
  gap: 24px;
  padding: 20px 24px;
  border: 1px solid rgba(119, 98, 55, 0.1);
  border-radius: 20px;
  background: var(--cream-soft);
  transition: transform 180ms ease, border-color 180ms ease;
}

.service-list li:hover {
  transform: translateX(4px);
  border-color: rgba(119, 98, 55, 0.35);
}

.service-icon {
  display: grid;
  width: 58px;
  height: 58px;
  flex: 0 0 58px;
  border-radius: 50%;
  background: var(--surface);
  color: var(--olive);
  font-size: 0.8rem;
  font-weight: 750;
  place-items: center;
}

.service-list strong,
.service-list small {
  display: block;
}

.service-list strong {
  margin-bottom: 3px;
  font-size: 1.05rem;
}

.service-list small {
  color: var(--muted);
  font-size: 0.86rem;
}

.portrait-frame--services {
  min-height: 960px;
}

.portrait-frame--services img {
  object-position: 50% 45%;
}

.office {
  border-top: 1px solid rgba(119, 98, 55, 0.18);
  border-bottom: 1px solid rgba(211, 163, 159, 0.42);
}

.office-gallery {
  display: grid;
  width: min(1920px, 100%);
  height: min(440px, 31vw);
  margin: 0 auto;
  padding: 0 var(--gutter);
  grid-template-columns: 0.8fr 0.9fr 1.65fr 0.9fr 0.8fr;
  gap: 18px;
}

.office-gallery figure {
  overflow: hidden;
  margin: 0;
  border-radius: 24px;
}

.office-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.office-gallery__wide img {
  object-position: center 55%;
}

.pain-points .split {
  align-items: stretch;
}

.pain-list {
  display: grid;
  margin: 34px 0;
  padding: 0;
  counter-reset: pain;
  gap: 14px;
  list-style: none;
}

.pain-list li {
  display: grid;
  min-height: 96px;
  grid-template-columns: 56px 1fr;
  align-items: center;
  gap: 22px;
  padding: 18px 24px;
  border-radius: 20px;
  background: var(--cream-soft);
  counter-increment: pain;
  font-weight: 550;
  line-height: 1.5;
}

.pain-list li::before {
  display: grid;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #0f0f0e;
  color: #fff;
  content: counter(pain, decimal-leading-zero);
  font-size: 0.75rem;
  font-weight: 750;
  place-items: center;
}

.closing-copy {
  margin: 28px 0 24px;
  font-size: 1.08rem;
}

.portrait-frame--pain {
  min-height: 940px;
}

.portrait-frame--pain img {
  object-position: 50% 40%;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
  gap: 18px;
}

.faq-grid details {
  overflow: clip;
  border: 1px solid rgba(119, 98, 55, 0.42);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.28);
}

.faq-grid summary {
  position: relative;
  padding: 24px 64px 24px 26px;
  cursor: pointer;
  font-weight: 650;
  line-height: 1.4;
  list-style: none;
}

.faq-grid summary::-webkit-details-marker {
  display: none;
}

.faq-grid summary::after {
  position: absolute;
  top: 50%;
  right: 22px;
  display: grid;
  width: 30px;
  height: 30px;
  transform: translateY(-50%);
  border: 1px solid rgba(119, 98, 55, 0.55);
  border-radius: 50%;
  content: "+";
  font-size: 1.2rem;
  font-weight: 400;
  place-items: center;
  transition: transform 180ms ease;
}

.faq-grid details[open] summary::after {
  transform: translateY(-50%) rotate(45deg);
}

.faq-grid details p {
  margin: 0;
  padding: 0 26px 26px;
  color: var(--muted);
}

.contact {
  background: var(--cream-soft);
}

.split--contact {
  align-items: stretch;
}

.contact-list {
  display: grid;
  margin: 34px 0;
  gap: 14px;
}

.contact-list a {
  display: flex;
  min-width: 0;
  min-height: 82px;
  align-items: center;
  gap: 18px;
  padding: 18px 22px;
  border: 1px solid rgba(119, 98, 55, 0.12);
  border-radius: 18px;
  background: #fff;
  color: #38322a;
  text-decoration: none;
  transition: border-color 180ms ease, transform 180ms ease;
}

.contact-list a:hover {
  transform: translateY(-2px);
  border-color: rgba(119, 98, 55, 0.45);
}

.contact-list a > span:last-child {
  min-width: 0;
  overflow-wrap: anywhere;
}

.contact-list__social {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.contact-list__social a {
  font-size: 0.9rem;
}

.contact-list__social img {
  width: 26px;
  height: 26px;
}

.contact-icon {
  display: grid;
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  border-radius: 50%;
  background: var(--cream);
  color: var(--olive);
  font-size: 1.25rem;
  font-weight: 700;
  place-items: center;
}

.map-card {
  position: relative;
  display: block;
  min-height: 650px;
  overflow: hidden;
  border: 24px solid #fff;
  border-radius: 34px;
  box-shadow: var(--shadow);
}

.map-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.map-card span {
  position: absolute;
  right: 24px;
  bottom: 24px;
  padding: 12px 18px;
  border-radius: 999px;
  background: rgba(23, 21, 18, 0.86);
  color: #fff;
  font-size: 0.88rem;
  font-weight: 650;
  text-decoration: none;
}

.site-footer {
  padding: 70px 0 24px;
  background: var(--olive);
  color: rgba(255, 255, 255, 0.86);
}

.footer-top {
  display: grid;
  grid-template-columns: minmax(240px, 1.2fr) repeat(3, minmax(150px, 0.75fr));
  gap: 50px;
  padding-bottom: 54px;
}

.footer-brand {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}

.footer-brand p {
  margin: 6px 0 0;
  white-space: nowrap;
  font-size: 0.82rem;
}

.site-footer nav {
  display: grid;
  align-content: start;
  gap: 8px;
}

.site-footer nav h2 {
  margin-bottom: 10px;
  color: #fff;
  font-size: 0.88rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.site-footer nav a {
  display: inline-flex;
  width: fit-content;
  min-height: 28px;
  align-items: center;
  font-size: 0.82rem;
  text-decoration: none;
}

.site-footer nav a:hover {
  text-decoration: underline;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.94);
  font-size: 0.72rem;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom span {
  color: var(--rose);
}

.whatsapp-float {
  position: fixed;
  z-index: 900;
  right: max(18px, env(safe-area-inset-right));
  bottom: max(18px, env(safe-area-inset-bottom));
  display: flex;
  width: 58px;
  height: 58px;
  align-items: center;
  padding: 13px;
  border: 2px solid rgba(255, 255, 255, 0.9);
  border-radius: 999px;
  background: var(--whatsapp);
  box-shadow: 0 14px 34px rgba(15, 82, 40, 0.3);
  color: #fff;
  font-size: 0.86rem;
  font-weight: 750;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.whatsapp-float::before {
  position: absolute;
  right: calc(100% + 12px);
  width: max-content;
  max-width: 220px;
  padding: 9px 12px;
  transform: translateX(8px);
  border-radius: 10px;
  background: #171512;
  color: #fff;
  content: "Agendar pelo WhatsApp";
  font-size: 0.78rem;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
}

.whatsapp-float:hover::before,
.whatsapp-float:focus-visible::before {
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
}

.whatsapp-float:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(15, 82, 40, 0.36);
}

.whatsapp-float img {
  width: 28px;
  height: 28px;
}

.whatsapp-float span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

/* O container legado injeta um segundo botão; o botão acessível do site é o canônico. */
#whatsappButton {
  display: none !important;
}

@media (max-width: 1180px) {
  :root {
    --header-height: 88px;
  }

  .site-nav {
    gap: 16px;
  }

  .site-nav > a:not(.button) {
    font-size: 0.84rem;
  }

  .button--header {
    padding-inline: 16px;
    font-size: 0.82rem;
  }

  .brand__mark {
    width: 34px;
    height: 60px;
  }

  .brand__wordmark {
    width: 132px;
  }

  .brand__wordmark img:first-child {
    width: 132px;
  }

  .brand__wordmark img:last-child {
    width: 42px;
    margin: -14px 0 0 84px;
  }

  .photo-mosaic {
    min-height: 760px;
  }

  .portrait-frame,
  .portrait-frame--pain,
  .portrait-frame--services {
    min-height: 760px;
  }
}

@media (max-width: 960px) {
  .about {
    contain-intrinsic-size: auto 3000px;
  }

  .audience-section {
    contain-intrinsic-size: auto 2200px;
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    z-index: 1100;
    top: 84px;
    right: var(--gutter);
    left: var(--gutter);
    display: grid;
    max-height: 0;
    padding: 0 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 24px;
    background: rgba(77, 62, 34, 0.98);
    box-shadow: 0 24px 50px rgba(42, 31, 13, 0.28);
    opacity: 0;
    visibility: hidden;
    transition: max-height 220ms ease, padding 220ms ease, opacity 180ms ease, visibility 180ms ease;
  }

  .site-header.menu-open .site-nav {
    max-height: calc(100svh - 104px);
    padding: 18px 20px 24px;
    overflow-y: auto;
    opacity: 1;
    visibility: visible;
  }

  .site-nav > a:not(.button) {
    min-height: 48px;
    padding: 13px 4px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 1rem;
  }

  .button--header {
    margin-top: 10px;
  }

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

  .split--services .content-block {
    order: -1;
  }

  .about-layout {
    grid-template-areas:
      "intro"
      "visual"
      "details";
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 52px;
  }

  .photo-mosaic {
    height: auto;
    min-height: 850px;
  }

  .portrait-frame,
  .portrait-frame--pain,
  .portrait-frame--services {
    min-height: min(900px, 120vw);
  }

  .audience-card {
    min-height: 500px;
  }

  .office-gallery {
    height: 400px;
    padding-right: var(--gutter);
    overflow-x: auto;
    grid-auto-columns: min(78vw, 430px);
    grid-auto-flow: column;
    grid-template-columns: none;
    overscroll-behavior-inline: contain;
    scroll-padding-inline: var(--gutter);
    scroll-snap-type: inline mandatory;
    scrollbar-width: thin;
  }

  .office-gallery figure {
    scroll-snap-align: center;
  }

  .map-card {
    min-height: 500px;
  }

  .footer-top {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 700px) {
  :root {
    --gutter: 20px;
    --header-height: 82px;
  }

  body {
    font-size: 15px;
  }

  h2 {
    font-size: clamp(2.1rem, 10vw, 3.15rem);
  }

  .site-header,
  .site-header.is-scrolled,
  .site-header.menu-open {
    height: 82px;
  }

  .brand__mark {
    width: 30px;
    height: 53px;
  }

  .brand__wordmark {
    width: 118px;
  }

  .brand__wordmark img:first-child {
    width: 118px;
  }

  .brand__wordmark img:last-child {
    width: 38px;
    margin: -13px 0 0 75px;
  }

  .site-nav {
    top: 82px;
  }

  .hero {
    height: 100svh;
    min-height: 100svh;
    align-items: end;
  }

  .hero__media img {
    top: -7%;
    right: 0;
    bottom: auto;
    width: 100%;
    height: 107%;
    object-position: center;
  }

  .hero__overlay {
    background:
      linear-gradient(180deg, rgba(54, 41, 18, 0.12) 0%, rgba(54, 41, 18, 0.28) 38%, rgba(54, 41, 18, 0.94) 76%, rgba(54, 41, 18, 0.98) 100%);
  }

  .hero__content {
    padding-top: 0;
    padding-bottom: clamp(51px, calc(-15px + 11.62svh), 84px);
  }

  .hero__content > * {
    max-width: 100%;
  }

  .hero h1 {
    margin: clamp(10px, calc(-18px + 4.93svh), 24px) 0
      clamp(8px, calc(-12px + 3.52svh), 18px);
    font-size: clamp(1.6rem, min(9.4vw, calc(-1rem + 6.2svh)), 3.1rem);
    line-height: 1.03;
  }

  .hero__lead {
    margin-bottom: clamp(10px, calc(-22px + 5.63svh), 26px);
    font-size: clamp(0.8rem, calc(0.4rem + 1.13svh), 1rem);
    line-height: clamp(1.056rem, calc(0.071rem + 2.78svh), 1.55rem);
  }

  .experience-badge {
    gap: clamp(8px, calc(0px + 1.41svh), 12px);
    font-size: clamp(0.74rem, calc(0.5rem + 0.68svh), 0.86rem);
  }

  .avatar-stack {
    flex: 0 0 clamp(88px, calc(38px + 8.8svh), 113px);
    grid-template-columns: repeat(4, clamp(21px, calc(9px + 2.11svh), 27px));
    width: clamp(88px, calc(38px + 8.8svh), 113px);
  }

  .avatar-stack img {
    width: clamp(30px, calc(14px + 2.82svh), 38px);
    height: clamp(30px, calc(14px + 2.82svh), 38px);
    min-width: clamp(30px, calc(14px + 2.82svh), 38px);
  }

  .experience-badge > span:last-child {
    white-space: nowrap;
  }

  .button--hero {
    width: 100%;
    max-width: 390px;
    min-height: clamp(44px, calc(24px + 3.52svh), 54px);
    gap: clamp(8px, calc(0px + 1.41svh), 14px);
    padding-block: clamp(10px, calc(2px + 1.41svh), 14px);
    padding-inline: clamp(14px, calc(6px + 1.41svh), 18px);
    outline-width: clamp(5px, calc(-3px + 1.41svh), 9px);
    font-size: clamp(0.8rem, calc(0.48rem + 0.9svh), 0.96rem);
  }

  .button--hero img {
    width: clamp(20px, calc(12px + 1.41svh), 24px);
    height: clamp(20px, calc(12px + 1.41svh), 24px);
    flex-basis: clamp(20px, calc(12px + 1.41svh), 24px);
  }

  .button__phone {
    display: none;
  }

  .hero__divider {
    width: clamp(160px, calc(100px + 10.56svh), 190px);
    height: auto;
  }

  .section {
    padding: 76px 0;
  }

  .section-label--center::before,
  .section-label--center::after {
    width: 12vw;
  }

  .about-layout {
    gap: 42px;
  }

  .photo-mosaic {
    min-height: 680px;
    grid-template-columns: 1.1fr 0.9fr;
    grid-template-rows: 0.65fr 1.2fr 0.55fr;
    gap: 12px;
  }

  .photo-mosaic > img,
  .photo-mosaic > picture,
  .photo-mosaic__brand {
    border-radius: 20px;
  }

  .photo-quote {
    right: 14px;
    bottom: 25%;
    left: 14px;
    min-height: 140px;
    grid-template-columns: 36px 1fr;
    gap: 10px;
    padding: 18px;
    border-radius: 18px;
    font-size: 0.8rem;
  }

  .photo-quote > span {
    font-size: 3.6rem;
  }

  .photo-mosaic__brand img {
    width: 52px;
  }

  .callout {
    grid-template-columns: 52px 1fr;
    gap: 14px;
    padding: 20px;
  }

  .callout__mark {
    width: 52px;
    height: 52px;
    font-size: 3rem;
  }

  .approach-card {
    margin-top: 38px;
    padding: 24px 20px;
    border-radius: 24px;
  }

  .approach-card h2 {
    font-size: clamp(2.1rem, 9.5vw, 3rem);
  }

  .portrait-frame,
  .portrait-frame--pain,
  .portrait-frame--services {
    min-height: 118vw;
    max-height: 760px;
    border-radius: 24px;
  }

  .audience-section,
  .faq-section {
    border-radius: 32px;
  }

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

  .audience-card {
    min-height: 0;
    padding: 28px;
    border-radius: 22px;
  }

  .card-index {
    margin-bottom: 28px;
  }

  .service-list li {
    min-height: 100px;
    padding: 16px;
  }

  .service-icon {
    width: 50px;
    height: 50px;
    flex-basis: 50px;
  }

  .office-gallery {
    height: 360px;
    grid-auto-columns: 82vw;
  }

  .pain-list li {
    min-height: 90px;
    grid-template-columns: 48px 1fr;
    gap: 16px;
    padding: 16px;
  }

  .pain-list li::before {
    width: 44px;
    height: 44px;
  }

  .contact-list__social {
    grid-template-columns: 1fr;
  }

  .map-card {
    min-height: 410px;
    border-width: 14px;
    border-radius: 26px;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 36px 24px;
  }

  .footer-brand {
    display: flex;
    grid-column: 1 / -1;
  }

  .footer-top nav:last-child {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
  }

  .whatsapp-float {
    width: 58px;
    height: 58px;
    padding: 13px;
    justify-content: center;
  }
}

@media (max-width: 380px) {
  .whatsapp-float {
    right: max(12px, env(safe-area-inset-right));
    bottom: max(12px, env(safe-area-inset-bottom));
    width: 52px;
    height: 52px;
    padding: 11px;
  }

  .whatsapp-float img {
    width: 26px;
    height: 26px;
  }

  .photo-mosaic {
    min-height: 620px;
  }

  .photo-quote {
    grid-template-columns: 1fr;
  }

  .photo-quote > span {
    display: none;
  }

  .credential-list {
    display: grid;
  }

  .credential-list li {
    width: fit-content;
  }

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

  .footer-brand,
  .footer-top nav:last-child {
    grid-column: auto;
  }

  .footer-brand {
    flex-direction: column;
  }
}

/* Faixa de tablet em paisagem baixa: preserva todo o hero dentro da viewport. */
@media (min-width: 701px) and (max-width: 960px) and (max-height: 700px) {
  .hero__content {
    padding-top: var(--header-height);
    padding-bottom: 42px;
  }

  .experience-badge {
    gap: 12px;
    font-size: 0.84rem;
  }

  .avatar-stack {
    width: 113px;
    grid-template-columns: repeat(4, 27px);
  }

  .avatar-stack img {
    width: 38px;
    height: 38px;
    min-width: 38px;
  }

  .hero h1 {
    margin: 12px 0 10px;
    font-size: clamp(2.15rem, 5.2vw, 2.5rem);
    line-height: 1.03;
  }

  .hero__lead {
    margin-bottom: 12px;
    font-size: 0.84rem;
    line-height: 1.35;
  }

  .button__phone {
    display: none;
  }
}

/* Celulares e tablets deitados usam composição horizontal e escala pela altura. */
@media (max-width: 960px) and (orientation: landscape) and (max-height: 700px) {
  :root {
    --header-height: clamp(56px, calc(42px + 4.5svh), 68px);
  }

  .site-header,
  .site-header.is-scrolled,
  .site-header.menu-open {
    height: var(--header-height);
  }

  .brand {
    gap: 5px;
  }

  .brand__mark {
    width: clamp(22px, calc(12px + 3svh), 28px);
    height: clamp(39px, calc(21px + 5svh), 49px);
  }

  .brand__wordmark {
    width: clamp(96px, calc(64px + 8svh), 112px);
  }

  .brand__wordmark img:first-child {
    width: 100%;
  }

  .brand__wordmark img:last-child {
    width: 34px;
    margin: -11px 0 0 62px;
  }

  .menu-toggle {
    width: 44px;
    height: 44px;
    padding: 10px;
  }

  .site-nav {
    top: var(--header-height);
  }

  .hero {
    align-items: center;
  }

  .hero__media img {
    top: 0;
    right: auto;
    bottom: 0;
    width: 124%;
    height: 100%;
    object-position: 50% 32%;
  }

  .hero__overlay {
    background:
      linear-gradient(90deg, rgba(58, 46, 23, 0.8) 0%, rgba(74, 58, 28, 0.58) 45%, rgba(58, 44, 19, 0.08) 78%),
      linear-gradient(180deg, rgba(36, 27, 13, 0.26) 0%, rgba(36, 27, 13, 0.04) 50%, rgba(36, 27, 13, 0.32) 100%);
  }

  .hero__content {
    padding-top: var(--header-height);
    padding-bottom: clamp(28px, 7svh, 42px);
  }

  .hero__content > * {
    max-width: min(52vw, 500px);
  }

  .experience-badge {
    gap: clamp(7px, 2svh, 12px);
    font-size: clamp(0.68rem, calc(0.44rem + 1svh), 0.84rem);
  }

  .avatar-stack {
    width: clamp(76px, calc(47px + 8svh), 103px);
    grid-template-columns: repeat(4, clamp(18px, calc(11px + 2svh), 25px));
  }

  .avatar-stack img {
    width: clamp(26px, calc(15px + 3svh), 36px);
    height: clamp(26px, calc(15px + 3svh), 36px);
    min-width: clamp(26px, calc(15px + 3svh), 36px);
  }

  .hero h1 {
    margin: clamp(7px, 2svh, 12px) 0 clamp(6px, 1.7svh, 10px);
    font-size: clamp(1.4rem, calc(0.375rem + 4.8svh), 2.5rem);
    line-height: 1.03;
  }

  .hero__lead {
    margin-bottom: clamp(8px, 2svh, 12px);
    font-size: clamp(0.68rem, calc(0.33rem + 1.4svh), 0.86rem);
    line-height: 1.35;
  }

  .button--hero {
    width: fit-content;
    min-height: clamp(40px, calc(25px + 4svh), 48px);
    gap: 8px;
    padding: 9px 14px;
    outline-width: 5px;
    font-size: clamp(0.74rem, calc(0.5rem + 1svh), 0.84rem);
  }

  .button--hero img {
    width: 20px;
    height: 20px;
    flex-basis: 20px;
  }

  .button__phone {
    display: none;
  }

  .hero__divider {
    width: clamp(150px, calc(90px + 16svh), 220px);
  }
}

/* Janelas desktop muito baixas mantêm CTA e dobra separados. */
@media (min-width: 961px) and (max-height: 560px) {
  .hero__content {
    padding-top: var(--header-height);
    padding-bottom: 64px;
  }

  .experience-badge {
    gap: 12px;
    font-size: 0.84rem;
  }

  .avatar-stack {
    width: 119px;
    grid-template-columns: repeat(4, 28px);
  }

  .avatar-stack img {
    width: 40px;
    height: 40px;
    min-width: 40px;
  }

  .hero h1 {
    margin: 12px 0 10px;
    font-size: clamp(2.25rem, 4vw, 2.5rem);
    line-height: 1.03;
  }

  .hero__lead {
    margin-bottom: 12px;
    font-size: 0.86rem;
    line-height: 1.4;
  }

  .button--hero {
    min-height: 48px;
    gap: 10px;
    padding: 11px 18px;
    outline-width: 7px;
    font-size: 0.86rem;
  }

  .button--hero img {
    width: 22px;
    height: 22px;
    flex-basis: 22px;
  }
}

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