:root {
  color-scheme: light;
  --paper: #fbfaf6;
  --paper-soft: #f0ede6;
  --surface: #ffffff;
  --surface-deep: #f7f4ed;
  --ink: #131313;
  --graphite: #171615;
  --muted: #68645d;
  --line: #d6bd88;
  --line-soft: #e7dcc7;
  --gold: #ad8335;
  --gold-light: #dfc27a;
  --green: #28483f;
  --teal: #0f3d3a;
  --wine: #6f2438;
  --icon-blue: #162640;
  --shadow: 0 24px 70px rgba(37, 31, 19, .08);
  --radius: 22px;
  --container: min(1160px, calc(100% - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Montserrat, Poppins, Gotham, Arial, sans-serif;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .94), rgba(251, 250, 246, .98)),
    radial-gradient(circle at 82% 5%, rgba(173, 131, 53, .11), transparent 32%);
  line-height: 1.58;
}

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

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

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

.skip-link:focus {
  z-index: 100;
  width: auto;
  height: auto;
  clip: auto;
  padding: 12px 16px;
  background: var(--surface);
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.site-header {
  position: fixed;
  z-index: 30;
  top: 0;
  left: 0;
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr) 118px;
  gap: 18px;
  align-items: center;
  width: 100%;
  min-height: 88px;
  padding: 14px max(20px, calc((100vw - 1160px) / 2));
  border: 0;
  border-radius: 0;
  background: rgba(255, 253, 248, .92);
  box-shadow: 0 12px 34px rgba(37, 31, 19, .06);
  backdrop-filter: blur(14px);
  transform: none;
}

.site-header::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(185, 137, 47, .34), transparent);
}

.brand img {
  height: 54px;
  width: auto;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: var(--muted);
  font-size: .86rem;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}

.nav a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
}

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

.nav-condomino {
  padding: 0 13px;
  border: 1px solid rgba(185, 137, 47, .34);
  border-radius: 999px;
  color: var(--graphite) !important;
  background: rgba(255, 253, 248, .7);
}

.header-cta,
.button,
.sticky-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: .01em;
}

.header-cta {
  min-height: 42px;
  padding: 0 17px;
  color: #fff;
  background: var(--graphite);
  font-size: .86rem;
  white-space: nowrap;
}

.menu-button {
  display: none;
}

.hero {
  position: relative;
  padding: 132px 0 78px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(251, 250, 246, .96) 0%, rgba(251, 250, 246, .86) 42%, rgba(251, 250, 246, .32) 100%),
    url("assets/cinematic-building.webp") center right / cover no-repeat;
}

.hero::before {
  content: "";
  position: absolute;
  top: 92px;
  right: 0;
  width: min(46vw, 660px);
  height: 680px;
  background:
    linear-gradient(135deg, rgba(173, 131, 53, .12), rgba(255, 253, 248, 0) 64%),
    linear-gradient(180deg, rgba(255, 255, 255, .56), rgba(240, 237, 230, .34));
  clip-path: polygon(24% 0, 100% 0, 100% 100%, 0 82%);
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  right: max(20px, calc((100vw - 1160px) / 2));
  bottom: 92px;
  width: 420px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(185, 137, 47, .55), transparent);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(390px, .82fr);
  gap: 30px;
  align-items: end;
  min-height: 630px;
}

.hero-copy,
.premium-card,
.media-card,
.proposal-card,
.contact-card {
  border: 1px solid rgba(185, 137, 47, .34);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, .88);
  box-shadow: var(--shadow);
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 590px;
  padding: 0 0 42px;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--gold);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 760px;
  margin-bottom: 24px;
  font-size: 4.65rem;
  line-height: .96;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: 3.55rem;
  line-height: 1.03;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.16rem;
  line-height: 1.18;
}

.hero-copy p:not(.eyebrow),
.section-head p,
.premium-card p,
.note,
.contact-card p {
  color: var(--muted);
}

.hero-copy p:not(.eyebrow) {
  max-width: 600px;
  font-size: 1.15rem;
}

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

.button {
  min-height: 54px;
  padding: 0 24px;
  border: 1px solid transparent;
  transition: transform .2s ease, box-shadow .2s ease;
}

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

.button-primary {
  color: #fff;
  background: linear-gradient(135deg, #b9892f, #7f5b22);
  box-shadow: 0 16px 34px rgba(127, 91, 34, .24);
}

.button-secondary {
  color: var(--graphite);
  background: rgba(255, 253, 248, .68);
  border-color: rgba(185, 137, 47, .34);
}

.hero-form-card {
  position: relative;
  align-self: center;
  padding: clamp(26px, 4vw, 42px);
  border: 1px solid rgba(185, 137, 47, .34);
  border-radius: 28px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(185, 137, 47, .22), transparent 44%),
    linear-gradient(145deg, rgba(35, 31, 25, .96), rgba(20, 20, 19, .98));
  box-shadow: 0 28px 80px rgba(37, 31, 19, .18);
  scroll-margin-top: 110px;
}

.hero-form-card::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(224, 193, 117, .18);
  border-radius: 22px;
  pointer-events: none;
}

.hero-form-card .proposal-copy {
  margin-bottom: 22px;
}

.hero-form-card h2 {
  margin-bottom: 12px;
  color: #fff;
  font-size: clamp(2rem, 3vw, 3rem);
}

.hero-form-card .proposal-copy p:not(.eyebrow) {
  max-width: 560px;
  color: rgba(255, 255, 255, .74);
}

.hero-lead-form {
  position: relative;
  z-index: 1;
}

.hero-visual {
  position: relative;
  min-height: 590px;
  overflow: visible;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.media-card picture,
.media-card img {
  width: 100%;
  height: 100%;
}

.media-card img {
  object-fit: cover;
}

.media-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(23, 23, 23, .04), rgba(23, 23, 23, .44));
}

.media-caption {
  position: absolute;
  z-index: 1;
  left: 24px;
  right: 24px;
  bottom: 24px;
  padding: 20px;
  border: 1px solid rgba(224, 193, 117, .42);
  border-radius: 18px;
  color: #fff;
  background: rgba(23, 23, 23, .56);
  backdrop-filter: blur(14px);
}

.media-caption span {
  display: block;
  margin-bottom: 6px;
  color: var(--gold-light);
  font-size: .78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.media-caption strong {
  font-size: 1.18rem;
  line-height: 1.25;
}

.hero-visual {
  display: grid;
  place-items: end center;
  padding: 0;
}

.hero-person {
  position: relative;
  z-index: 1;
  width: min(520px, 104%);
  max-height: 640px;
  object-fit: contain;
  transform: translateX(16px);
  filter: drop-shadow(0 34px 44px rgba(37, 31, 19, .24));
}

.float-card {
  display: none;
}

.float-card-top {
  top: 56px;
  left: 0;
}

.float-card-bottom {
  right: 0;
  bottom: 48px;
}

.float-card span {
  display: block;
  color: var(--graphite);
  font-size: 1.22rem;
  font-weight: 900;
}

.float-card p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: .88rem;
  line-height: 1.35;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.metric-card {
  min-height: 150px;
  padding: 10px 26px 10px 0;
  border: 0;
  border-right: 1px solid rgba(185, 137, 47, .24);
  border-radius: 0;
  background: transparent;
}

.metric-card:last-child {
  border-right: 0;
}

.metric-card span {
  display: block;
  margin-bottom: 8px;
  color: var(--graphite);
  font-size: 2rem;
  font-weight: 900;
  letter-spacing: 0;
}

.metric-card p {
  margin: 0;
  color: rgba(42, 42, 42, .82);
  font-weight: 700;
  line-height: 1.45;
}

.article-header img {
  width: min(399px, 100%);
  height: auto;
  object-fit: contain;
}

.section {
  padding: 72px 0;
}

.anchor-target {
  position: relative;
  top: -96px;
  display: block;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.section-head {
  max-width: 800px;
  margin-bottom: 34px;
}

.seo-line {
  max-width: 880px;
  margin-top: 14px;
  font-size: .95rem;
}

.section-head.centered {
  margin-inline: auto;
  text-align: center;
}

.card-grid {
  display: grid;
  gap: 18px;
}

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

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

.audience-section {
  padding-top: 48px;
}

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

.audience-card {
  min-height: 260px;
  padding-right: 18px;
}

.audience-card span {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--gold);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.audience-card h3 {
  max-width: 360px;
}

.section-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 28px;
  padding-top: 26px;
  border-top: 1px solid rgba(185, 137, 47, .22);
}

.premium-card {
  position: relative;
  overflow: visible;
  padding: 28px 24px 30px 0;
  border: 0;
  border-top: 1px solid rgba(185, 137, 47, .34);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.premium-card::before {
  content: none;
}

.service-card {
  min-height: 392px;
}

.service-card.featured {
  color: var(--ink);
  background: transparent;
  border-top-color: var(--gold);
}

.service-card.featured p,
.service-card.featured li {
  color: var(--muted);
}

.icon-shell {
  position: relative;
  display: grid;
  place-items: start;
  width: 78px;
  height: 78px;
  margin-bottom: 22px;
  border: 0;
  border-radius: 0;
  overflow: hidden;
  background: transparent;
  box-shadow: none;
}

.featured .icon-shell {
  background: transparent;
}

.icon-shell svg {
  width: 72px;
  height: 72px;
  stroke: rgba(92, 57, 20, .86);
  stroke-width: 1.15;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
  filter: drop-shadow(0 14px 16px rgba(70, 42, 13, .16));
}

.icon-shell svg .icon-white {
  fill: rgba(255, 255, 255, .94);
  stroke: rgba(255, 255, 255, .94);
}

.icon-shell svg .icon-fill {
  fill: rgba(185, 137, 47, .13);
}

.icon-shell svg .icon-fill-soft {
  fill: rgba(245, 238, 224, .92);
}

.icon-shell svg .icon-dark {
  fill: var(--graphite);
  stroke: var(--graphite);
}

.icon-shell svg .icon-accent {
  stroke: var(--gold);
}

.icon-shell svg .icon-dot {
  fill: var(--gold);
  stroke: var(--gold);
}

.service-icon-img {
  width: 78px;
  height: 78px;
  object-fit: contain;
  filter: drop-shadow(0 14px 16px rgba(70, 42, 13, .15));
}

.card-label {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 7px 12px;
  border: 1px solid rgba(185, 137, 47, .32);
  border-radius: 999px;
  color: var(--gold);
  background: rgba(224, 193, 117, .12);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.service-card ul {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.service-card li {
  position: relative;
  padding-left: 22px;
  color: var(--muted);
}

.service-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .68em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
}

.note {
  margin-top: 18px;
  font-size: .92rem;
}

.soft-panel {
  position: relative;
  overflow: visible;
  margin-inline: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.soft-panel::before {
  content: none;
}

.soft-panel::after {
  content: "";
  position: absolute;
  top: 58px;
  right: min(9vw, 120px);
  width: 160px;
  height: 58px;
  border-bottom: 2px solid rgba(173, 131, 53, .34);
  background: linear-gradient(135deg, rgba(173, 131, 53, .2), transparent);
  clip-path: polygon(0 68%, 18% 20%, 35% 68%, 50% 8%, 65% 68%, 82% 20%, 100% 68%, 100% 100%, 0 100%);
  opacity: .72;
  pointer-events: none;
}

.soft-panel > .container {
  position: relative;
  z-index: 1;
}

.split-grid,
.proof-grid,
.proposal-card,
.contact-card {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 34px;
  align-items: start;
}

.sticky-copy {
  position: sticky;
  top: 130px;
  margin-bottom: 0;
}

.compact-card {
  min-height: 245px;
  padding-right: 18px;
  background: transparent;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.step-card {
  min-height: 250px;
}

.step-card span {
  display: inline-block;
  margin-bottom: 50px;
  color: var(--gold);
  font-size: 1.8rem;
  font-weight: 900;
}

.proposal-copy {
  position: relative;
  min-height: auto;
  overflow: hidden;
}

.proposal-card,
.contact-card {
  padding: clamp(28px, 5vw, 54px);
}

.proposal {
  background:
    linear-gradient(135deg, rgba(23, 23, 23, .96), rgba(45, 42, 36, .96)),
    var(--graphite);
}

.proposal-card {
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  color: #fff;
}

.proposal-card p {
  color: rgba(255, 255, 255, .74);
}

.lead-form {
  display: grid;
  gap: 14px;
}

.lead-form label {
  display: grid;
  gap: 7px;
  color: rgba(255, 255, 255, .78);
  font-size: .9rem;
  font-weight: 800;
}

.lead-form input,
.lead-form select {
  width: 100%;
  min-height: 52px;
  padding: 0 16px;
  border: 1px solid rgba(224, 193, 117, .34);
  border-radius: 999px;
  color: #fff;
  background: rgba(255, 255, 255, .08);
  font: inherit;
}

.lead-form select option {
  color: var(--ink);
}

.hero-form-card .lead-form {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.hero-form-card .lead-form label:nth-child(5),
.hero-form-card .lead-form button {
  grid-column: 1 / -1;
}

.quote-card {
  min-height: auto;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(185, 137, 47, .28), transparent 48%),
    linear-gradient(135deg, #2f5f4e, #1f2a25);
  border-top: 0;
  padding: 42px;
}

.quote-card p {
  color: #fff8e8;
  max-width: 780px;
  margin: 0;
  font-family: "Segoe Script", "Bradley Hand ITC", "Brush Script MT", cursive;
  font-size: 2.05rem;
  font-weight: 400;
  line-height: 1.35;
  letter-spacing: 0;
}

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

.proof-grid {
  grid-template-columns: 1fr;
  max-width: 860px;
  gap: 24px;
}

.faq-card {
  padding-top: 24px;
}

.faq-card summary {
  cursor: pointer;
  padding: 20px 0;
  font-weight: 900;
}

.faq-card details p {
  padding-bottom: 20px;
}

.articles {
  background:
    linear-gradient(180deg, transparent, rgba(255, 253, 248, .54)),
    var(--paper);
}

.article-header {
  display: grid;
  grid-template-columns: 1fr minmax(190px, 280px);
  gap: 42px;
  align-items: center;
}

.article-header img {
  justify-self: end;
  opacity: .9;
}

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

.article-list article {
  padding-top: 24px;
  border-top: 1px solid rgba(185, 137, 47, .32);
}

.article-list span {
  display: block;
  margin-bottom: 16px;
  color: var(--gold);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.article-list p {
  color: var(--muted);
}

.article-list a {
  display: inline-flex;
  margin-top: 12px;
  color: var(--gold);
  font-size: .82rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.contact {
  background:
    linear-gradient(135deg, rgba(185, 137, 47, .18), transparent),
    var(--graphite);
}

.contact-card {
  border: 0;
  border-radius: 0;
  box-shadow: none;
  color: #fff;
  background: transparent;
}

.contact-card p {
  color: rgba(255, 255, 255, .76);
}

.contact-locations {
  display: grid;
  gap: 24px;
}

address {
  padding: 28px;
  border: 1px solid rgba(224, 193, 117, .32);
  border-radius: var(--radius);
  color: rgba(255, 255, 255, .78);
  background: rgba(255, 255, 255, .06);
  font-style: normal;
}

address strong {
  display: block;
  margin-bottom: 14px;
  color: #fff;
  font-size: 1.35rem;
}

address a {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--gold-light);
}

.local-office span,
.office-title {
  display: block;
  margin: 0 0 10px;
  color: var(--gold-light);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.local-office strong {
  font-size: 1.7rem;
  line-height: 1.12;
}

.other-offices {
  display: grid;
  gap: 12px;
}

.other-offices address {
  padding: 18px 0 0;
  border: 0;
  border-top: 1px solid rgba(224, 193, 117, .24);
  border-radius: 0;
  background: transparent;
  font-size: .92rem;
}

.other-offices address strong {
  margin-bottom: 6px;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.site-footer {
  padding: 34px 0 96px;
}

.footer-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: var(--muted);
  font-size: .92rem;
}

.footer-grid > img {
  height: 72px;
  width: auto;
}

.footer-contact {
  display: grid;
  gap: 5px;
  color: var(--muted);
  line-height: 1.45;
}

.footer-contact strong {
  color: var(--graphite);
  font-size: 1rem;
}

.footer-contact a {
  color: var(--gold);
  font-weight: 800;
}

.footer-partners {
  display: grid;
  gap: 12px;
  justify-items: center;
}

.footer-partners span {
  color: var(--gold);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.partner-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  justify-content: center;
}

.partner-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
}

.partner-logo {
  display: block;
  height: 48px;
  width: auto;
  object-fit: contain;
  opacity: .9;
  background: transparent;
  mix-blend-mode: multiply;
}

.partner-logo-vouch {
  height: 36px;
  mix-blend-mode: normal;
}

.partner-logo-viva {
  height: 66px;
  mix-blend-mode: normal;
}

.partner-logo-garantidos {
  height: 54px;
  mix-blend-mode: normal;
}

.sticky-whatsapp {
  position: fixed;
  z-index: 25;
  right: 20px;
  bottom: 20px;
  min-height: 54px;
  padding: 0 22px;
  color: #fff;
  background: var(--green);
  box-shadow: 0 16px 36px rgba(18, 59, 43, .25);
}

@media (max-width: 1180px) {
  :root {
    --container: min(100% - 32px, 1080px);
  }

  .site-header {
    grid-template-columns: 160px minmax(0, 1fr) 104px;
    gap: 12px;
  }

  .nav {
    gap: 11px;
    font-size: .79rem;
  }

  .nav-condomino {
    padding-inline: 10px;
  }

  .header-cta {
    padding-inline: 14px;
    font-size: .8rem;
  }

  .hero-grid {
    grid-template-columns: minmax(0, .95fr) minmax(360px, .88fr);
    min-height: auto;
    align-items: center;
  }

  h1 {
    font-size: clamp(3.7rem, 5.3vw, 4.35rem);
  }

  h2 {
    font-size: clamp(2.65rem, 4.1vw, 3.25rem);
  }

  .hero-form-card .lead-form {
    grid-template-columns: 1fr;
  }

  .hero-form-card .lead-form label:nth-child(5),
  .hero-form-card .lead-form button {
    grid-column: auto;
  }
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto auto;
    min-height: 70px;
    top: 0;
    padding: 12px 16px;
  }

  .brand img {
    height: 50px;
  }

  .header-cta {
    display: none;
  }

  .menu-button {
    display: inline-grid;
    justify-self: end;
    gap: 5px;
    width: 46px;
    height: 46px;
    place-content: center;
    border: 1px solid rgba(185, 137, 47, .32);
    border-radius: 50%;
    background: transparent;
  }

  .menu-button span:not(.sr-only) {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--graphite);
  }

  .nav {
    position: absolute;
    top: 82px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    gap: 0;
    max-height: calc(100vh - 104px);
    overflow: auto;
    padding: 14px;
    border: 1px solid rgba(185, 137, 47, .28);
    border-radius: 24px;
    background: rgba(255, 253, 248, .98);
    box-shadow: var(--shadow);
  }

  .nav.is-open {
    display: flex;
  }

  .nav a {
    padding: 14px;
    min-height: auto;
  }

  .hero {
    padding: 112px 0 64px;
    background:
      linear-gradient(180deg, rgba(251, 250, 246, .98), rgba(251, 250, 246, .9)),
      url("assets/cinematic-building.webp") center right / cover no-repeat;
  }

  .hero-grid,
  .split-grid,
  .proof-grid,
  .proposal-card,
  .contact-card,
  .article-header,
  .hero-metrics,
  .audience-grid,
  .cards-3 {
    grid-template-columns: 1fr;
  }

  .hero-copy,
  .media-card {
    min-height: auto;
  }

  .hero-copy {
    padding-bottom: 0;
  }

  .hero-form-card {
    width: 100%;
  }

  .hero-form-card h2 {
    font-size: 2.4rem;
  }

  .media-card {
    aspect-ratio: 1 / .78;
  }

  .hero-visual {
    min-height: 560px;
  }

  .hero-form-card {
    scroll-margin-top: 92px;
  }

  .hero::before {
    width: 72vw;
    height: 540px;
    opacity: .64;
  }

  .hero::after {
    display: none;
  }

  .hero-person {
    transform: none;
    width: min(460px, 86%);
  }

  .sticky-copy {
    position: static;
  }

  .process-grid,
  .audience-grid,
  .cards-2,
  .article-list {
    grid-template-columns: 1fr 1fr;
  }

  .article-header img {
    justify-self: start;
  }

  h1 {
    font-size: 4.1rem;
  }

  h2 {
    font-size: 2.7rem;
  }

}

@media (max-width: 620px) {
  :root {
    --container: min(100% - 24px, 1160px);
  }

  .site-header {
    padding-left: 14px;
  }

  h1 {
    font-size: clamp(2.55rem, 12vw, 3.15rem);
    line-height: 1.02;
  }

  h2 {
    font-size: clamp(2rem, 9.5vw, 2.18rem);
  }

  .hero-copy {
    padding: 0;
  }

  .hero-copy p:not(.eyebrow) {
    font-size: 1rem;
  }

  .hero-actions,
  .section-cta {
    display: grid;
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
    min-height: 52px;
    padding-inline: 18px;
    text-align: center;
  }

  .hero-form-card {
    padding: 26px 18px;
    border-radius: 22px;
  }

  .hero-form-card::before {
    inset: 10px;
    border-radius: 17px;
  }

  .hero-form-card .lead-form {
    grid-template-columns: 1fr;
  }

  .lead-form input,
  .lead-form select {
    min-height: 50px;
    border-radius: 16px;
  }

  .hero-metrics {
    gap: 0;
    margin-top: 34px;
  }

  .metric-card {
    min-height: auto;
    padding: 18px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(185, 137, 47, .22);
  }

  .metric-card:last-child {
    border-bottom: 0;
  }

  .metric-card span {
    font-size: 1.55rem;
  }

  .section {
    padding: 54px 0;
  }

  .process-grid,
  .audience-grid,
  .cards-2,
  .article-list {
    grid-template-columns: 1fr;
  }

  .premium-card,
  .proposal-card,
  .contact-card {
    padding: 24px;
  }

  .hero-visual {
    min-height: 470px;
    padding-inline: 12px;
  }

  .float-card {
    max-width: 168px;
    padding: 12px 14px;
  }

  .float-card-top {
    top: 24px;
    left: 18px;
  }

  .float-card-bottom {
    right: 18px;
    bottom: 26px;
  }

  .quote-card p {
    font-size: 1.55rem;
  }

  .sticky-whatsapp {
    left: 14px;
    right: 14px;
    bottom: 14px;
  }

  .footer-grid {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 390px) {
  :root {
    --container: min(100% - 18px, 1160px);
  }

  .site-header {
    min-height: 66px;
    padding: 10px;
  }

  .brand img {
    height: 44px;
  }

  .menu-button {
    width: 42px;
    height: 42px;
  }

  .nav {
    top: 72px;
    left: 8px;
    right: 8px;
  }

  .hero {
    padding-top: 96px;
  }

  .hero-form-card {
    padding: 22px 14px;
  }

  .premium-card,
  .contact-card,
  address,
  .quote-card {
    padding: 20px 16px;
  }
}
