:root {
  --gold: #c9a227;
  --gold-bright: #e7c765;
  --gold-deep: #7d5f13;
  --gold-soft: #f6eedc;
  --gold-shade: #a8801a;
  --gold-gradient: linear-gradient(
    100deg,
    #a8801a 0%,
    #c9a227 22%,
    #f2dfa0 42%,
    #c9a227 62%,
    #a8801a 100%
  );
  --gold-light: #f2dfa0;
  --black: #111111;
  --graphite: #272420;
  --white: #fffcf5;
  --muted: #6d665c;
  --line: rgba(17, 17, 17, 0.15);
  --display: "DM Serif Display", Georgia, serif;
  --body: "Manrope", Arial, sans-serif;
  --page-pad: clamp(1.25rem, 4vw, 4.5rem);
  --content: 88rem;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 5rem;
}

body {
  margin: 0;
  overflow-x: clip;
  background: var(--white);
  color: var(--black);
  font-family: var(--body);
  font-size: 1rem;
  line-height: 1.65;
}

body.menu-open {
  overflow: hidden;
}

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

main,
section,
article,
nav,
div {
  min-width: 0;
}

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

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

:focus-visible {
  outline: 3px solid var(--gold-deep);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 1000;
  padding: 0.7rem 1rem;
  background: var(--white);
  color: var(--black);
  transform: translateY(-150%);
}

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

.eyebrow {
  margin: 0 0 1.15rem;
  color: var(--gold-deep);
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.4;
  text-transform: uppercase;
}

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

h1,
h2,
h3 {
  letter-spacing: 0;
  overflow-wrap: break-word;
  text-wrap: balance;
}

h1,
h2 {
  font-family: var(--display);
  font-weight: 400;
  line-height: 0.98;
}

h2 {
  margin-bottom: 1.75rem;
  font-size: clamp(2.65rem, 5.2vw, 5.6rem);
}

em {
  color: var(--gold-deep);
  font-weight: 400;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  min-height: 5.2rem;
  padding: 0 var(--page-pad);
  background: rgba(255, 252, 245, 0.82);
  color: var(--black);
  backdrop-filter: blur(10px);
  transition: background 250ms ease, box-shadow 250ms ease, min-height 250ms ease;
}

.site-header.is-scrolled,
.site-header.menu-active {
  min-height: 4.7rem;
  background: rgba(255, 252, 245, 0.96);
  box-shadow: 0 1px 0 var(--line);
  backdrop-filter: blur(14px);
}

.brand {
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
}

.brand-mark {
  display: grid;
  width: 2.5rem;
  height: 2.5rem;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-family: var(--display);
  font-size: 1rem;
}

.brand-copy {
  display: grid;
  line-height: 1.15;
}

.brand-copy strong {
  font-family: var(--display);
  font-size: 1.1rem;
  font-weight: 400;
}

.brand-copy small {
  color: var(--muted);
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  justify-content: center;
  gap: clamp(1.3rem, 2.5vw, 2.8rem);
  font-size: 0.78rem;
  font-weight: 600;
}

.desktop-nav a {
  position: relative;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: -0.45rem;
  left: 0;
  height: 2px;
  background: var(--gold);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 200ms ease;
}

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

.button {
  display: inline-flex;
  min-height: 3.2rem;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 0.85rem 1.25rem;
  border: 1px solid var(--gold-shade);
  border-radius: 4px;
  background-image: var(--gold-gradient);
  background-size: 220% 100%;
  background-position: 0% 50%;
  color: var(--black);
  animation: gold-flow 7s linear infinite;
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.25;
  text-align: center;
  transition: background-color 200ms ease, color 200ms ease, transform 200ms ease;
}

.button:hover {
  border-color: var(--black);
  background-image: none;
  background-color: var(--black);
  color: #fff;
  transform: translateY(-2px);
}

.icon {
  width: 1em;
  height: 1em;
  flex-shrink: 0;
}

.button svg,
.inline-link svg,
.text-link svg {
  width: 1rem;
  height: 1rem;
  flex: 0 0 auto;
}

.button-small {
  min-height: 2.9rem;
  padding-inline: 1.1rem;
}

.button-large {
  min-height: 3.75rem;
  padding-inline: 1.5rem;
}

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

.hero {
  position: relative;
  min-height: min(92svh, 58rem);
  overflow: hidden;
  background: #ede9e9;
}

.hero-image {
  position: absolute;
  top: 5.2rem;
  right: 0;
  bottom: 0;
  left: auto;
  width: 55%;
  height: calc(100% - 5.2rem);
  object-fit: cover;
  object-position: 72% 40%;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 18%, #000 100%);
  mask-image: linear-gradient(to right, transparent 0%, #000 18%, #000 100%);
}

.hero-shade {
  position: absolute;
  top: 5.2rem;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(90deg, rgba(255, 252, 245, 0.98) 0%, rgba(255, 252, 245, 0.88) 35%, rgba(255, 252, 245, 0.08) 66%, rgba(17, 17, 17, 0.08) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  width: min(100%, var(--content));
  min-height: min(92svh, 58rem);
  flex-direction: column;
  justify-content: center;
  margin: 0 auto;
  padding: 7.5rem var(--page-pad) 5rem;
}

.hero h1 {
  max-width: 44rem;
  margin-bottom: 1.6rem;
  font-size: clamp(2.8rem, 4.2vw, 4.46rem);
}

.hero-lead {
  max-width: 37rem;
  margin-bottom: 2.2rem;
  color: #4f494c;
  font-size: clamp(1rem, 1.4vw, 1.18rem);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1.4rem;
}

.text-link,
.inline-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  border-bottom: 1px solid currentColor;
  font-size: 0.8rem;
  font-weight: 700;
}

.text-link {
  padding: 0.65rem 0;
}

.hero-scroll {
  position: absolute;
  right: var(--page-pad);
  bottom: 1.8rem;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
}

.hero-scroll svg {
  width: 1rem;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--black);
  color: white;
}

.trust-strip div {
  display: flex;
  min-height: 6rem;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  padding: 1rem;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.77rem;
  font-weight: 600;
  text-align: center;
}

.trust-strip div:last-child {
  border-right: 0;
}

.trust-strip svg {
  width: 1.1rem;
  color: var(--gold-bright);
}

.whatsapp-brand-icon {
  display: block;
  width: 1.15rem;
  height: 1.15rem;
  flex: 0 0 auto;
}

.section {
  position: relative;
  width: min(100%, var(--content));
  margin: 0 auto;
  padding: clamp(5.5rem, 10vw, 10rem) var(--page-pad);
}

.section-number {
  position: absolute;
  top: 3.2rem;
  left: var(--page-pad);
  color: rgba(17, 17, 17, 0.08);
  font-family: var(--display);
  font-size: clamp(7rem, 13vw, 13rem);
  line-height: 1;
}

.intro-section {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(18rem, 0.55fr);
  align-items: end;
  gap: clamp(3rem, 8vw, 9rem);
}

.intro-heading,
.intro-copy {
  position: relative;
}

.intro-copy {
  padding-bottom: 0.5rem;
}

.intro-copy p {
  color: var(--muted);
}

.intro-copy .inline-link {
  margin-top: 1rem;
  color: var(--gold-deep);
}

.method-section {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: clamp(3rem, 8vw, 8rem);
  border-top: 1px solid var(--line);
}

.section-heading {
  position: sticky;
  top: 7rem;
  align-self: start;
}

.section-heading h2 {
  font-size: clamp(2.9rem, 4.8vw, 5.2rem);
}

.section-heading > p:last-child {
  max-width: 28rem;
  color: var(--muted);
}

.method-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.method-item {
  display: grid;
  grid-template-columns: 3rem 1fr auto;
  gap: 1.5rem;
  padding: 2.6rem 0;
  border-bottom: 1px solid var(--line);
}

.method-number {
  color: var(--gold-deep);
  font-size: 0.73rem;
  font-weight: 700;
}

.method-item h3 {
  margin-bottom: 0.8rem;
  font-family: var(--display);
  font-size: clamp(1.7rem, 2.6vw, 2.4rem);
  font-weight: 400;
}

.method-item p {
  max-width: 37rem;
  margin-bottom: 0;
  color: var(--muted);
}

.method-item > svg,
.method-item > .whatsapp-brand-icon {
  width: 2rem;
  height: 2rem;
  color: var(--gold-deep);
  stroke-width: 1.4;
}

.services-section {
  padding: clamp(5rem, 9vw, 9rem) var(--page-pad);
  background: var(--gold-soft);
}

.services-intro {
  width: min(100%, var(--content));
  margin: 0 auto 3rem;
}

.services-intro h2 {
  max-width: 61rem;
}

.service-grid {
  display: grid;
  width: min(100%, var(--content));
  grid-template-columns: 1fr 1fr;
  margin: 0 auto;
}

.service-card {
  display: flex;
  min-height: 37rem;
  flex-direction: column;
  padding: clamp(2rem, 5vw, 5rem);
}

.service-card-light {
  background: var(--white);
}

.service-card-dark {
  background: linear-gradient(135deg, #8a6a16 0%, #5c4610 45%, var(--black) 100%);
  color: white;
}

.service-label {
  margin-bottom: auto;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
}

.service-card h3 {
  margin: 3rem 0 1.2rem;
  font-family: var(--display);
  font-size: clamp(2.5rem, 4.5vw, 4.7rem);
  font-weight: 400;
  line-height: 0.98;
}

.service-card p {
  max-width: 34rem;
}

.service-card ul {
  display: grid;
  gap: 0.6rem;
  margin: 1rem 0 2.2rem;
  padding: 0;
  list-style: none;
}

.service-card li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.86rem;
}

.service-card li svg {
  width: 1rem;
  color: var(--gold-deep);
}

.service-card-dark li svg {
  color: white;
}

.service-card .inline-link {
  align-self: flex-start;
}

.quote-band {
  position: relative;
  display: grid;
  min-height: 35rem;
  place-items: center;
  overflow: hidden;
  padding: 6rem var(--page-pad);
  background: var(--white);
}

.quote-mark {
  position: absolute;
  top: -5rem;
  left: 2vw;
  color: rgba(201, 162, 39, 0.16);
  font-family: var(--display);
  font-size: 30rem;
  line-height: 1;
}

.quote-band blockquote {
  position: relative;
  max-width: 69rem;
  margin: 0;
  text-align: center;
}

.quote-band blockquote p {
  margin-bottom: 2rem;
  font-family: var(--display);
  font-size: clamp(2.4rem, 5.2vw, 5.3rem);
  line-height: 1.04;
}

.quote-band footer {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
}

.benefits-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 8vw, 8rem);
  padding: clamp(6rem, 10vw, 10rem) var(--page-pad);
  background: var(--black);
  color: white;
}

.benefits-heading {
  max-width: 41rem;
}

.benefits-heading h2 {
  font-size: clamp(3rem, 5vw, 5.3rem);
}

.benefits-list {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.benefit {
  display: grid;
  grid-template-columns: 3rem 1fr;
  gap: 1rem;
  padding: 1.8rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.benefit span {
  color: var(--gold-bright);
  font-size: 0.7rem;
  font-weight: 700;
}

.benefit p {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.45rem, 2.2vw, 2rem);
  line-height: 1.25;
}

.about-section {
  display: grid;
  grid-template-columns: minmax(20rem, 0.92fr) minmax(20rem, 1.08fr);
  min-height: 50rem;
  background: var(--white);
}

.about-photo {
  position: relative;
  min-height: 50rem;
  overflow: hidden;
}

.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 43%;
}

.about-caption {
  position: absolute;
  right: 1.5rem;
  bottom: 1.5rem;
  display: grid;
  padding: 0.85rem 1rem;
  background: var(--gold);
  color: var(--black);
  font-size: 0.7rem;
  font-weight: 700;
  line-height: 1.45;
  text-transform: uppercase;
}

.about-copy {
  display: flex;
  max-width: 47rem;
  flex-direction: column;
  justify-content: center;
  padding: clamp(4.5rem, 9vw, 9rem) var(--page-pad);
}

.about-copy h2 {
  font-size: clamp(3.3rem, 5.5vw, 6rem);
}

.about-copy > p:not(.eyebrow, .about-signoff) {
  color: var(--muted);
}

.about-signoff {
  margin: 0.7rem 0 2rem;
  font-family: var(--display);
  font-size: 1.55rem;
  line-height: 1.3;
}

.about-copy .button {
  align-self: flex-start;
}

.button-dark {
  border-color: var(--black);
  background-image: none;
  background-color: var(--black);
  color: #fff;
  animation: none;
}

.button-dark:hover {
  border-color: var(--gold-shade);
  background-image: var(--gold-gradient);
  background-size: 220% 100%;
  color: var(--black);
  animation: gold-flow 7s linear infinite;
}

.story-section {
  display: grid;
  grid-template-columns: 0.35fr 1fr;
  gap: clamp(3rem, 8vw, 8rem);
  padding: clamp(5rem, 9vw, 9rem) var(--page-pad);
  background: var(--gold-soft);
}

.story-kicker {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  color: var(--gold-deep);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
}

.story-content {
  max-width: 59rem;
}

.story-content blockquote {
  margin: 0 0 2rem;
  font-family: var(--display);
  font-size: clamp(2.7rem, 5vw, 5rem);
  line-height: 1.04;
}

.story-content > p:last-child {
  max-width: 43rem;
  color: var(--muted);
}

.faq-section {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: clamp(3rem, 8vw, 8rem);
  padding: clamp(6rem, 10vw, 10rem) var(--page-pad);
}

.faq-heading h2 {
  font-size: clamp(3rem, 5vw, 5.3rem);
}

.faq-heading > p:not(.eyebrow) {
  margin-bottom: 0.3rem;
  color: var(--muted);
}

.faq-heading .inline-link {
  color: var(--gold-deep);
}

.faq-list {
  border-top: 1px solid var(--line);
}

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

summary {
  display: flex;
  min-height: 5.2rem;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.2rem 0;
  cursor: pointer;
  font-family: var(--display);
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  list-style: none;
}

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

summary svg {
  width: 1.2rem;
  transition: transform 200ms ease;
}

details[open] summary svg {
  transform: rotate(45deg);
}

details p {
  max-width: 43rem;
  padding: 0 3rem 1.8rem 0;
  color: var(--muted);
}

.contact-section {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 3rem;
  padding: clamp(5rem, 8vw, 8rem) var(--page-pad);
  background: var(--graphite);
  color: white;
}

.contact-copy h2 {
  margin-bottom: 0;
  font-size: clamp(3rem, 5.5vw, 5.5rem);
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.75rem;
}

.button-light {
  border-color: white;
  background-image: none;
  background-color: white;
  color: var(--black);
  animation: none;
}

.button-outline-light {
  border-color: rgba(255, 255, 255, 0.55);
  background-image: none;
  background-color: transparent;
  color: #fff;
  animation: none;
}

.button-light:hover,
.button-outline-light:hover {
  border-color: var(--gold-shade);
  background-image: var(--gold-gradient);
  background-size: 220% 100%;
  color: var(--black);
  animation: gold-flow 7s linear infinite;
}

.final-cta {
  position: relative;
  min-height: 42rem;
  overflow: hidden;
  padding: clamp(6rem, 11vw, 11rem) var(--page-pad);
  background: linear-gradient(120deg, #8a6a16 0%, #6f5410 38%, #43350c 70%, var(--black) 100%);
  color: white;
}

.final-cta-copy {
  position: relative;
  z-index: 2;
  max-width: 67rem;
}

.final-cta .eyebrow,
.final-cta em {
  color: white;
}

/* dourado escuro é o padrão sobre fundo claro; sobre fundo escuro usa o tom claro */
.benefits-section .eyebrow,
.benefits-section em,
.contact-section .eyebrow,
.contact-section em {
  color: var(--gold-bright);
}

.final-cta h2 {
  font-size: clamp(3.4rem, 7vw, 7rem);
}

.final-cta-copy > p:not(.eyebrow) {
  max-width: 38rem;
  margin-bottom: 2rem;
}

.final-cta-monogram {
  position: absolute;
  right: -2rem;
  bottom: -8rem;
  color: rgba(255, 255, 255, 0.08);
  font-family: var(--display);
  font-size: clamp(18rem, 37vw, 38rem);
  line-height: 1;
}

.site-footer {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: start;
  gap: 2rem;
  padding: 4rem var(--page-pad) 2rem;
  background: var(--black);
  color: white;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.footer-brand div {
  display: grid;
}

.footer-brand strong {
  font-family: var(--display);
  font-size: 1.2rem;
  font-weight: 400;
}

.footer-brand span:not(.brand-mark) {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
}

.site-footer > p {
  max-width: 22rem;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.82rem;
}

.site-footer nav {
  display: grid;
  gap: 0.4rem;
  font-size: 0.78rem;
  font-weight: 600;
}

.footer-bottom {
  display: flex;
  grid-column: 1 / -1;
  justify-content: space-between;
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.68rem;
}

.location-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(2.5rem, 6vw, 6rem);
  padding: clamp(5rem, 9vw, 9rem) var(--page-pad);
  border-top: 1px solid var(--line);
}

.location-copy h2 {
  margin-bottom: 1.5rem;
  font-size: clamp(2.6rem, 4.4vw, 4.4rem);
}

.location-copy > p:not(.eyebrow) {
  max-width: 34rem;
  color: var(--muted);
}

.location-nap {
  display: grid;
  gap: 1.2rem;
  margin: 2.4rem 0;
  font-style: normal;
}

.location-nap > div {
  display: flex;
  align-items: start;
  gap: 0.9rem;
}

.location-nap svg {
  width: 1.15rem;
  height: 1.15rem;
  margin-top: 0.15rem;
  flex-shrink: 0;
  color: var(--gold-deep);
}

.location-nap strong {
  display: block;
  margin-bottom: 0.2rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.location-nap span,
.location-nap a {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.55;
}

.location-nap a:hover {
  color: var(--gold-deep);
}

.location-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.5rem;
}

.location-map {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  aspect-ratio: 4 / 3;
  background: var(--gold-soft);
}

.location-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.footer-nap {
  display: grid;
  gap: 0.7rem;
  max-width: 22rem;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.82rem;
  font-style: normal;
  line-height: 1.5;
}

.footer-nap a {
  color: white;
  font-weight: 600;
}

.footer-nap a:hover {
  color: var(--gold-bright);
}

.footer-social {
  display: grid;
  gap: 0.55rem;
  font-size: 0.78rem;
  font-weight: 600;
}

.footer-social a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-social a:hover {
  color: var(--gold-bright);
}

.footer-social svg,
.footer-social .whatsapp-brand-icon {
  width: 1rem;
  height: 1rem;
}

.whatsapp-float {
  position: fixed;
  right: 1.2rem;
  bottom: 1.2rem;
  z-index: 80;
  display: flex;
  min-height: 3.2rem;
  align-items: center;
  gap: 0.6rem;
  padding: 0.75rem 1rem;
  border-radius: 4px;
  background: var(--black);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.24);
  color: white;
  font-size: 0.72rem;
  font-weight: 700;
  transition: transform 200ms ease, background 200ms ease;
}

.whatsapp-float:hover {
  background: var(--gold);
  color: var(--black);
  transform: translateY(-3px);
}

.whatsapp-float svg,
.whatsapp-float .whatsapp-brand-icon {
  width: 1.1rem;
  height: 1.1rem;
}

/* ---------- Páginas legais ---------- */

.legal-header {
  position: relative;
  grid-template-columns: auto auto;
  justify-content: space-between;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

/* o CTA do cabeçalho é ocultado no mobile na home, mas na página legal
   ele é o único caminho de volta, então precisa continuar visível */
.legal-header .header-cta {
  display: inline-flex;
}

.legal-page {
  max-width: 62rem;
  margin: 0 auto;
  padding: clamp(3.5rem, 8vw, 7rem) var(--page-pad) clamp(4rem, 8vw, 8rem);
}

.legal-intro {
  padding-bottom: clamp(2.5rem, 5vw, 4rem);
  border-bottom: 1px solid var(--line);
}

.legal-intro h1 {
  margin-bottom: 1.5rem;
  font-size: clamp(3rem, 6vw, 5.5rem);
  line-height: 1.02;
}

.legal-lead {
  max-width: 42rem;
  color: var(--muted);
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  line-height: 1.65;
}

.legal-dates {
  margin-top: 2rem;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.9;
}

.legal-dates strong {
  color: var(--black);
  font-weight: 700;
}

.legal-body section {
  padding-top: clamp(2.5rem, 5vw, 3.5rem);
}

.legal-body h2 {
  margin-bottom: 1.1rem;
  font-size: clamp(1.6rem, 2.6vw, 2.3rem);
  line-height: 1.15;
}

.legal-body h3 {
  margin: 1.8rem 0 0.7rem;
  font-family: var(--body);
  font-size: 0.98rem;
  font-weight: 700;
}

.legal-body p {
  max-width: 46rem;
  margin-bottom: 1rem;
  color: var(--muted);
  line-height: 1.7;
}

.legal-body strong {
  color: var(--black);
}

.legal-body ul {
  max-width: 46rem;
  margin: 0 0 1.2rem;
  padding: 0;
  list-style: none;
}

.legal-body li {
  position: relative;
  margin-bottom: 0.6rem;
  padding-left: 1.4rem;
  color: var(--muted);
  line-height: 1.65;
}

.legal-body li::before {
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold-deep);
  content: "";
}

.legal-body a {
  color: var(--gold-deep);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-body a:hover {
  color: var(--black);
}

.legal-table-wrap {
  margin: 1.5rem 0 1.2rem;
  overflow-x: auto;
}

.legal-table {
  width: 100%;
  min-width: 34rem;
  border-collapse: collapse;
  font-size: 0.9rem;
  text-align: left;
}

.legal-table th {
  padding: 0.85rem 1rem 0.85rem 0;
  border-bottom: 1px solid var(--black);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.legal-table td {
  padding: 0.9rem 1rem 0.9rem 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  line-height: 1.55;
  vertical-align: top;
}

.legal-table td:first-child {
  color: var(--black);
  font-weight: 500;
}

.legal-cta-line {
  margin-top: clamp(3rem, 6vw, 4.5rem);
  padding-top: 2rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.legal-cta-line .inline-link {
  color: var(--gold-deep);
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.55);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-bottom a:hover {
  color: white;
}

@keyframes gold-flow {
  from {
    background-position: 0% 50%;
  }

  to {
    background-position: 220% 50%;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(1.4rem);
  transition: opacity 650ms ease, transform 650ms ease;
}

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

@media (max-width: 960px) {
  .location-section {
    grid-template-columns: 1fr;
  }

  .location-map {
    aspect-ratio: 16 / 11;
  }

  .site-footer {
    grid-template-columns: 1fr 1fr;
    row-gap: 2.5rem;
  }

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

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

  .menu-toggle {
    z-index: 2;
    display: grid;
    width: 2.8rem;
    height: 2.8rem;
    place-items: center;
    border: 0;
    background: transparent;
    color: currentColor;
    cursor: pointer;
    width: auto;
    padding: 0.4rem;
    font-family: var(--body);
    font-size: 0.72rem;
    font-weight: 700;
    line-height: 1;
    text-transform: uppercase;
  }

  .mobile-menu {
    position: fixed;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1.2rem;
    padding: 7rem var(--page-pad) 3rem;
    background: var(--white);
    overflow-y: auto;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-1rem);
    transition: opacity 200ms ease, transform 200ms ease;
  }

  .mobile-menu.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .mobile-menu > a:not(.button) {
    font-family: var(--display);
    font-size: clamp(2.1rem, 8vw, 3.3rem);
    line-height: 1.1;
  }

  .mobile-menu .button {
    align-self: flex-start;
    margin-top: 1rem;
  }

  .hero-image {
    object-position: 67% 45%;
  }

  .hero-shade {
    background: linear-gradient(90deg, rgba(255, 252, 245, 0.98) 0%, rgba(255, 252, 245, 0.9) 46%, rgba(255, 252, 245, 0.12) 78%);
  }

  .hero-content {
    justify-content: end;
    padding-bottom: 7rem;
  }

  .hero h1 {
    font-size: clamp(2.54rem, 5.6vw, 3.85rem);
  }

  .intro-section,
  .method-section,
  .benefits-section,
  .faq-section {
    grid-template-columns: 1fr;
  }

  .intro-section {
    gap: 1.5rem;
  }

  .section-heading {
    position: static;
  }

  .benefits-section {
    gap: 2rem;
  }

  .contact-section {
    align-items: start;
    flex-direction: column;
  }

  .contact-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 720px) {
  .site-footer {
    grid-template-columns: 1fr;
  }

  .location-actions {
    gap: 1rem;
  }

  :root {
    --page-pad: clamp(1rem, 5vw, 1.25rem);
  }

  body {
    font-size: 0.98rem;
    line-height: 1.7;
  }

  p {
    text-wrap: pretty;
  }

  .eyebrow {
    margin-bottom: 0.9rem;
    font-size: 0.68rem;
    line-height: 1.5;
  }

  .site-header {
    min-height: 4.7rem;
  }

  .brand {
    max-width: calc(100vw - 6rem);
  }

  .brand-copy strong {
    font-size: 1rem;
  }

  .brand-copy small {
    display: none;
  }

  .hero {
    min-height: 0;
  }

  .hero-image {
    top: 4.7rem;
    width: 70%;
    height: 22rem;
    object-position: 58% 27%;
    -webkit-mask-image: linear-gradient(
      to right,
      transparent 0%,
      rgba(0, 0, 0, 0.12) 12%,
      rgba(0, 0, 0, 0.45) 30%,
      rgba(0, 0, 0, 0.82) 50%,
      #000 68%,
      #000 100%
    );
    mask-image: linear-gradient(
      to right,
      transparent 0%,
      rgba(0, 0, 0, 0.12) 12%,
      rgba(0, 0, 0, 0.45) 30%,
      rgba(0, 0, 0, 0.82) 50%,
      #000 68%,
      #000 100%
    );
  }

  .hero-shade {
    top: 4.7rem;
    background: linear-gradient(
      180deg,
      rgba(255, 252, 245, 0) 0%,
      rgba(255, 252, 245, 0) 32%,
      rgba(255, 252, 245, 0.16) 42%,
      rgba(255, 252, 245, 0.52) 52%,
      rgba(255, 252, 245, 0.88) 62%,
      var(--white) 70%,
      var(--white) 100%
    );
  }

  .hero-content {
    min-height: 0;
    justify-content: flex-start;
    padding: 26.9rem var(--page-pad) 2.4rem;
  }

  .hero h1 {
    margin-bottom: 1rem;
    font-size: 2.65rem;
    line-height: 0.96;
  }

  .hero-lead {
    margin-bottom: 1.5rem;
    max-width: 34rem;
    font-size: 0.98rem;
    line-height: 1.65;
    overflow-wrap: anywhere;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 0.65rem;
  }

  .hero-actions .button {
    width: 100%;
    max-width: 100%;
    padding-inline: 0.75rem;
    font-size: 0.72rem;
  }

  .hero-actions .text-link {
    align-self: flex-start;
  }

  .hero-scroll {
    display: none;
  }

  .trust-strip {
    grid-template-columns: 1fr 1fr;
  }

  .trust-strip div {
    min-height: 5rem;
    flex-direction: column;
    gap: 0.4rem;
    padding: 0.9rem 0.55rem;
    border-right: 1px solid rgba(255, 255, 255, 0.14);
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    font-size: 0.67rem;
    line-height: 1.35;
    overflow-wrap: anywhere;
  }

  h2 {
    font-size: 3.25rem;
    line-height: 1;
  }

  .section {
    padding-block: 5rem;
  }

  .section-number {
    top: 2.8rem;
  }

  .method-item {
    grid-template-columns: 2rem 1fr;
    gap: 1rem;
    padding-block: 2rem;
  }

  .method-item h3 {
    font-size: 1.8rem;
    line-height: 1.15;
  }

  .method-item p {
    line-height: 1.7;
  }

  .method-item > svg,
  .method-item > .whatsapp-brand-icon {
    display: none;
  }

  .service-grid,
  .about-section,
  .story-section {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 34rem;
    padding: 2rem;
  }

  .service-card h3 {
    font-size: 2.85rem;
    line-height: 1;
  }

  .quote-band {
    min-height: 30rem;
    padding-block: 5rem;
  }

  .quote-band blockquote p {
    font-size: 2.85rem;
    line-height: 1.08;
  }

  .about-photo {
    min-height: 0;
    aspect-ratio: 4 / 5;
  }

  .about-copy {
    padding-block: 5rem;
  }

  .story-section {
    gap: 2rem;
    padding-block: 5rem;
  }

  .story-kicker {
    flex-direction: row;
    justify-content: space-between;
  }

  .story-content blockquote {
    font-size: 3rem;
    line-height: 1.08;
  }

  .faq-section {
    padding-block: 5rem;
  }

  summary {
    min-height: 4.6rem;
    font-size: 1.3rem;
    line-height: 1.3;
  }

  .contact-actions,
  .contact-actions .button {
    width: 100%;
    max-width: 100%;
  }

  .final-cta {
    min-height: 0;
    padding-block: 5.5rem;
  }

  .final-cta h2 {
    font-size: 3.6rem;
    line-height: 1;
  }

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

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.3rem;
  }

  .whatsapp-float {
    right: 0.75rem;
    bottom: 0.75rem;
    width: 3rem;
    min-height: 3rem;
    justify-content: center;
    padding: 0.65rem;
  }

  .whatsapp-float span {
    display: none;
  }
}

@media (max-width: 420px) {
  body {
    font-size: 0.95rem;
  }

  .site-header {
    padding-inline: 1rem;
  }

  .mobile-menu {
    padding-inline: 1rem;
  }

  .mobile-menu > a:not(.button) {
    font-size: 2.25rem;
    line-height: 1.12;
  }

  .hero-image {
    object-position: 55% 27%;
  }

  .hero-content {
    padding-top: 26.7rem;
  }

  .hero .eyebrow {
    max-width: 20rem;
    font-size: 0.64rem;
    line-height: 1.45;
  }

  .hero h1 {
    max-width: 100%;
    font-size: 2.35rem;
    line-height: 0.98;
  }

  .hero-lead {
    font-size: 0.94rem;
    line-height: 1.68;
  }

  .button {
    white-space: normal;
  }

  .intro-section,
  .method-section,
  .services-section,
  .benefits-section,
  .about-copy,
  .story-section,
  .faq-section,
  .contact-section,
  .final-cta {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .service-card {
    min-height: 0;
    padding: 1.5rem;
  }

  .service-card h3 {
    margin-top: 2.2rem;
    font-size: 2.45rem;
  }

  .service-card .service-label {
    margin-bottom: 0;
  }

  .quote-band {
    min-height: 0;
    padding: 4.5rem 1rem;
  }

  .quote-band blockquote p {
    font-size: 2.35rem;
  }

  .benefit {
    grid-template-columns: 2rem 1fr;
  }

  .benefit p {
    font-size: 1.4rem;
    line-height: 1.3;
  }

  .about-copy h2,
  .faq-heading h2,
  .contact-copy h2 {
    font-size: 2.75rem;
    line-height: 1.02;
  }

  .story-content blockquote {
    font-size: 2.55rem;
    line-height: 1.1;
  }

  details p {
    padding-right: 0;
  }

  .contact-actions {
    flex-direction: column;
  }

  .final-cta h2 {
    font-size: 3rem;
    line-height: 1.02;
  }

  .site-footer {
    padding-inline: 1rem;
  }
}

@media (max-width: 360px) {
  .hero h1 {
    font-size: 2.15rem;
  }

  h2,
  .about-copy h2,
  .faq-heading h2,
  .contact-copy h2 {
    font-size: 2.45rem;
  }

  .service-card h3 {
    font-size: 2.2rem;
  }

  .quote-band blockquote p,
  .story-content blockquote {
    font-size: 2.2rem;
  }

  .final-cta h2 {
    font-size: 2.7rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
