:root {
  --ink: #191c1d;
  --ink-soft: #4f5354;
  --paper: #ffffff;
  --wash: #f5f3ef;
  --wash-2: #ece9e3;
  --gold: #b88634;
  --gold-dark: #95691f;
  --line: #ddd9d1;
  --max: 1200px;
  --shadow: 0 24px 65px rgba(22, 24, 24, 0.09);
  --shadow-soft: 0 14px 38px rgba(22, 24, 24, 0.07);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 88px; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Montserrat, "Avenir Next", Avenir, "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img { display: block; width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }
.shell { width: min(calc(100% - 48px), var(--max)); margin-inline: auto; }
.section { padding: 108px 0; }
.skip-link {
  position: fixed; z-index: 1000; left: 16px; top: -80px;
  padding: 12px 18px; background: var(--ink); color: white;
}
.skip-link:focus { top: 16px; }
.eyebrow {
  margin: 0 0 14px; color: var(--gold-dark); font-size: .76rem; font-weight: 800;
  letter-spacing: .16em; text-transform: uppercase;
}
.eyebrow--light { color: #d7a956; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { line-height: 1.12; letter-spacing: -.035em; }
h1 { max-width: 720px; margin-bottom: 26px; font-size: clamp(2.6rem, 5vw, 5.2rem); font-weight: 720; }
h2 { margin-bottom: 20px; font-size: clamp(2rem, 3.4vw, 3.35rem); font-weight: 690; }
h3 { margin-bottom: 12px; font-size: 1.25rem; }

.site-header {
  position: sticky; z-index: 100; top: 0; border-bottom: 1px solid rgba(25,28,29,.1);
  background: rgba(255,255,255,.96); backdrop-filter: blur(14px);
}
.header-inner { min-height: 100px; display: flex; align-items: center; gap: 24px; }
.brand { display: block; flex: 0 0 auto; }
.brand img { width: 100%; height: auto; }
.brand--header { width: 245px; }
.main-nav { display: flex; align-items: center; justify-content: center; gap: clamp(17px, 2vw, 32px); margin-left: auto; }
.main-nav a { position: relative; font-size: .85rem; font-weight: 650; }
.main-nav a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: -9px; height: 2px;
  background: var(--gold); transition: right .25s ease;
}
.main-nav a:hover::after, .main-nav a:focus-visible::after { right: 0; }
.header-actions { display: flex; align-items: center; gap: 18px; }
.language { display: flex; align-items: center; gap: 5px; font-size: .75rem; font-weight: 700; }
.language a { padding: 0; color: #7b7d7d; }
.language .language__active { color: var(--ink); }
.nav-language { display: none; }
.header-phone { min-height: 42px; display: flex; align-items: center; gap: 9px; padding: 0 13px; border: 1px solid var(--line); border-radius: 2px; font-size: .76rem; font-weight: 750; white-space: nowrap; }
.header-phone svg, .button svg { width: 19px; fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.button {
  min-height: 50px; display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 0 25px; border: 1px solid transparent; border-radius: 2px; cursor: pointer;
  font-size: .73rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase;
  transition: transform .2s ease, background .2s ease, color .2s ease, box-shadow .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button--gold { background: var(--gold); color: white; box-shadow: 0 10px 25px rgba(184,134,52,.2); }
.button--gold:hover { background: var(--gold-dark); box-shadow: 0 14px 32px rgba(149,105,31,.26); }
.button--outline { border-color: var(--gold); color: var(--gold-dark); background: white; }
.button--dark { color: white; background: var(--ink); }
.button--dark:hover { background: #303435; }
.menu-toggle { display: none; width: 44px; height: 44px; border: 0; background: transparent; }
.menu-toggle span { display: block; width: 24px; height: 2px; margin: 5px auto; background: var(--ink); }

.hero { min-height: 720px; display: grid; align-items: stretch; background: var(--wash); }
.hero .shell { width: min(100%, 1440px); }
.hero-grid { display: grid; grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr); }
.hero-copy { padding: clamp(80px, 8vw, 138px) clamp(32px, 6vw, 92px); align-self: center; }
.hero-lead { max-width: 590px; margin-bottom: 34px; color: var(--ink-soft); font-size: clamp(1.1rem, 1.6vw, 1.32rem); }
.hero-buttons { display: flex; flex-wrap: wrap; gap: 14px; }
.language-proof { display: flex; align-items: center; gap: 10px; margin: 26px 0 0; font-size: .82rem; font-weight: 650; }
.language-proof span { color: var(--gold); font-size: 1.3rem; }
.hero-media { position: relative; min-height: 680px; overflow: hidden; background: #d9d2c7; }
.hero-media > img { width: 100%; height: 100%; object-fit: cover; }
.hero-media__badge {
  position: absolute; z-index: 1; right: 28px; bottom: 28px; padding: 16px 20px;
  border-left: 3px solid var(--gold); background: rgba(255,255,255,.93); box-shadow: var(--shadow);
}
.hero-media__badge span, .hero-media__badge strong { display: block; }
.hero-media__badge span { font-size: .69rem; letter-spacing: .1em; text-transform: uppercase; }

.trust { border-bottom: 1px solid var(--line); background: white; }
.trust-grid { min-height: 112px; display: grid; grid-template-columns: repeat(4, 1fr); }
.trust article { display: flex; align-items: center; gap: 14px; padding: 22px 26px; border-right: 1px solid var(--line); }
.trust article:first-child { border-left: 1px solid var(--line); }
.line-icon {
  flex: 0 0 52px; width: 52px; height: 52px; color: var(--ink); fill: none;
  stroke: currentColor; stroke-width: 2.15; stroke-linecap: round; stroke-linejoin: round;
}
.trust strong, .trust small { display: block; }
.trust strong { font-size: .88rem; }
.trust small { color: var(--ink-soft); font-size: .7rem; }

.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 60px; margin-bottom: 54px; }
.section-heading > div { max-width: 650px; }
.section-heading > p { max-width: 430px; margin-bottom: 5px; color: var(--ink-soft); }
.section-heading--compact { align-items: center; }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card { min-height: 440px; border: 1px solid var(--line); background: white; overflow: hidden; transition: transform .25s ease, box-shadow .25s ease; }
.service-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.service-card__image { aspect-ratio: 16 / 10; overflow: hidden; background: var(--wash-2); }
.service-card__image img { height: 100%; object-fit: cover; transition: transform .6s ease; }
.service-card:hover .service-card__image img { transform: scale(1.035); }
.service-card__body { padding: 28px 30px 30px; }
.service-card__body > span { display: block; margin-bottom: 18px; color: var(--gold); font-weight: 800; letter-spacing: .08em; }
.service-card p { color: var(--ink-soft); }
.service-card a, .audience-card a, .text-link { color: var(--gold-dark); font-size: .75rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.service-card a { display: inline-block; margin-top: 12px; }

.audiences { background: var(--wash); }
.center-heading { max-width: 790px; margin: 0 auto 54px; text-align: center; }
.audience-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.audience-card { display: grid; grid-template-columns: 1.08fr .92fr; min-height: 430px; background: white; box-shadow: 0 18px 55px rgba(24,25,24,.07); overflow: hidden; }
.audience-image { min-height: 430px; overflow: hidden; }
.audience-image img { height: 100%; object-fit: cover; transition: transform .7s ease; }
.audience-card:hover .audience-image img { transform: scale(1.035); }
.audience-content { padding: 42px 34px; align-self: center; }
.audience-label { margin-bottom: 8px; color: var(--gold-dark); font-size: .71rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.audience-content ul { margin: 24px 0 30px; padding: 0; list-style: none; color: var(--ink-soft); }
.audience-content li { position: relative; padding: 7px 0 7px 18px; border-bottom: 1px solid #edeae4; font-size: .86rem; }
.audience-content li::before { content: ""; position: absolute; left: 0; top: 17px; width: 5px; height: 5px; background: var(--gold); }

.promise-grid { display: grid; grid-template-columns: .86fr 1.14fr; min-height: 560px; }
.promise-visual {
  position: relative; display: flex; flex-direction: column; align-items: center; justify-content: center;
  min-height: 520px; overflow: hidden; color: white; background: var(--ink);
}
.promise-visual::after {
  content: ""; position: absolute; width: 360px; height: 360px; border: 1px solid rgba(184,134,52,.32); border-radius: 50%;
}
.sun-orbit {
  position: relative; z-index: 1; width: 180px; height: 180px; display: grid; place-items: center;
  border: 1px solid var(--gold); border-radius: 50%; box-shadow: 0 0 0 32px rgba(184,134,52,.06), 0 0 0 64px rgba(184,134,52,.035);
}
.sun-orbit span { color: var(--gold); font-size: 5rem; font-weight: 800; line-height: 1; }
.promise-visual p { position: relative; z-index: 1; margin: 44px 0 0; text-align: center; color: #e8e5de; font-size: .78rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
.promise-copy { padding: 34px clamp(28px, 6vw, 88px); align-self: center; }
.promise-copy > h2 { max-width: 640px; }
.promise-list { margin-top: 38px; }
.promise-list article { display: grid; grid-template-columns: 48px 1fr; gap: 18px; padding: 18px 0; border-top: 1px solid var(--line); }
.promise-list b { color: var(--gold); font-size: .9rem; }
.promise-list h3 { margin-bottom: 5px; font-size: 1rem; }
.promise-list p { margin: 0; color: var(--ink-soft); font-size: .89rem; }

.process { padding: 92px 0; color: white; background: #222526; }
.process-heading { max-width: 760px; margin-bottom: 48px; }
.process-heading h2 { margin-bottom: 0; }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid rgba(255,255,255,.2); }
.process-grid article { padding: 36px 30px 4px; border-right: 1px solid rgba(255,255,255,.2); }
.process-grid article:first-child { border-left: 1px solid rgba(255,255,255,.2); }
.process-grid b { color: #d6a34c; font-size: 1.8rem; font-weight: 500; }
.process-grid h3 { margin: 20px 0 10px; font-size: 1rem; }
.process-grid p { color: #c9cbca; font-size: .83rem; }

.projects { background: white; }
.project-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.project-card { border: 1px solid var(--line); background: white; overflow: hidden; }
.project-card > img { aspect-ratio: 4 / 3; object-fit: cover; }
.project-card > div { padding: 28px; }
.project-card small { display: block; margin-bottom: 12px; color: var(--gold-dark); font-weight: 750; text-transform: uppercase; letter-spacing: .07em; }
.project-card p { margin-bottom: 0; color: var(--ink-soft); font-size: .88rem; }
blockquote { margin: 54px 0 0; padding: 36px 42px; border: 1px solid var(--line); background: var(--wash); text-align: center; }
blockquote .stars { margin-bottom: 12px; color: var(--gold); letter-spacing: .25em; }
blockquote p { max-width: 820px; margin: 0 auto 12px; font-size: 1.05rem; }
blockquote cite { color: var(--ink-soft); font-size: .72rem; font-style: normal; }

.areas { padding: 86px 0; background: var(--wash); }
.areas-grid { display: grid; grid-template-columns: .8fr 1.2fr; align-items: center; gap: 80px; }
.areas h2 { max-width: 760px; }
.areas p:last-child { margin-bottom: 0; color: var(--ink-soft); font-weight: 650; }
.area-mark { position: relative; height: 180px; border-bottom: 2px solid rgba(184,134,52,.65); transform: rotate(-4deg); }
.area-mark::before, .area-mark::after { content: ""; position: absolute; border: 2px solid rgba(184,134,52,.7); border-radius: 50%; }
.area-mark::before { width: 160px; height: 86px; left: 10%; bottom: -18px; border-right-color: transparent; border-bottom-color: transparent; transform: rotate(22deg); }
.area-mark::after { width: 190px; height: 105px; right: 8%; bottom: -28px; border-left-color: transparent; border-bottom-color: transparent; transform: rotate(-16deg); }
.area-mark span { position: absolute; z-index: 1; bottom: -7px; width: 12px; height: 12px; border: 3px solid var(--wash); border-radius: 50%; background: var(--gold); }
.area-mark span:nth-child(1) { left: 8%; }.area-mark span:nth-child(2) { left: 29%; }.area-mark span:nth-child(3) { left: 50%; }.area-mark span:nth-child(4) { left: 72%; }.area-mark span:nth-child(5) { left: 91%; }

.guides { padding: 92px 0; border-bottom: 1px solid var(--line); }
.guides-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 90px; }
.guide-list { border-top: 1px solid var(--line); }
.guide-list a { display: grid; grid-template-columns: 40px 1fr auto; gap: 14px; align-items: center; padding: 22px 0; border-bottom: 1px solid var(--line); font-weight: 650; }
.guide-list span, .guide-list b { color: var(--gold-dark); }

.contact-cta { padding: 96px 0; background: #ece7dc; }
.contact-grid { display: grid; grid-template-columns: minmax(0, .9fr) minmax(460px, 1.1fr); align-items: start; gap: clamp(54px, 8vw, 110px); }
.contact-cta h2 { max-width: 820px; }
.contact-intro > p:not(.eyebrow):not(.contact-email) { max-width: 650px; color: var(--ink-soft); }
.contact-buttons { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.contact-cta .button { min-width: 190px; }
.contact-email { margin: 24px 0 0; color: var(--ink-soft); font-size: .86rem; }
.contact-email a { color: var(--gold-dark); font-weight: 750; }
.contact-form { padding: clamp(28px, 4vw, 46px); background: white; box-shadow: var(--shadow); }
.contact-form label { display: grid; gap: 8px; margin-bottom: 18px; color: var(--ink); font-size: .74rem; font-weight: 750; letter-spacing: .04em; }
.form-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.contact-form input:not([type="checkbox"]):not([type="file"]),
.contact-form textarea {
  width: 100%; min-height: 50px; padding: 12px 14px; border: 1px solid #cbc6bc; border-radius: 0;
  color: var(--ink); background: #fbfaf8; font: inherit; font-size: .92rem; outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.contact-form textarea { min-height: 128px; resize: vertical; }
.contact-form input:focus, .contact-form textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(184,134,52,.13); }
.file-field span { color: var(--ink-soft); font-size: .68rem; font-weight: 500; }
.file-field input { padding: 12px; border: 1px dashed #bbb5aa; background: #fbfaf8; font: inherit; font-size: .78rem; }
.privacy-field { grid-template-columns: 18px 1fr; align-items: start; gap: 10px !important; font-weight: 500 !important; letter-spacing: 0 !important; line-height: 1.45; }
.privacy-field input { width: 16px; height: 16px; margin: 2px 0 0; accent-color: var(--gold-dark); }
.privacy-field a { color: var(--gold-dark); text-decoration: underline; }
.privacy-summary { display: grid; gap: 5px; margin: 0 0 18px; padding: 15px 16px; border-left: 3px solid var(--gold); color: var(--ink-soft); background: #f6f3ed; font-size: .7rem; line-height: 1.5; }
.privacy-summary strong { color: var(--ink); font-size: .72rem; }
.privacy-summary a { color: var(--gold-dark); text-decoration: underline; }
.contact-form .button { width: 100%; }
.contact-form > small { display: block; margin-top: 13px; color: var(--ink-soft); text-align: center; font-size: .69rem; }

.site-footer { padding: 58px 0 20px; color: #e9e8e3; background: #1d2021; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 50px; }
.brand--footer { width: min(300px, 100%); }
.footer-grid > div:first-child > p { max-width: 360px; margin: 14px 0 0; color: #bfc1bf; font-size: .82rem; }
.footer-grid h2 { margin: 12px 0 17px; color: white; font-size: .72rem; letter-spacing: .13em; text-transform: uppercase; }
.footer-grid a, .footer-grid > div:not(:first-child) p { display: block; margin: 7px 0; color: #c8cac7; font-size: .78rem; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 44px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.12); color: #929592; font-size: .68rem; }
.footer-bottom a { color: #bfc1bf; text-decoration: underline; text-underline-offset: 3px; }

.legal-page { background: #f7f5f0; }
.legal-hero { padding: 78px 0 66px; color: white; background: #202324; }
.legal-hero .eyebrow { color: #d4aa62; }
.legal-hero h1 { max-width: 830px; margin-bottom: 18px; color: white; }
.legal-hero__lead { max-width: 760px; margin: 0; color: #d2d3d0; font-size: clamp(1.05rem, 1.8vw, 1.3rem); line-height: 1.65; }
.legal-meta { margin-top: 24px; color: #aeb1ae; font-size: .76rem; }
.legal-content { padding: 74px 0 100px; }
.legal-summary-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; margin-bottom: 58px; background: #d9d2c6; border: 1px solid #d9d2c6; }
.legal-summary-grid article { padding: 24px; background: white; }
.legal-summary-grid small { display: block; margin-bottom: 8px; color: var(--gold-dark); font-size: .66rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.legal-summary-grid strong { color: var(--ink); font-size: .92rem; line-height: 1.4; }
.legal-layout { display: grid; grid-template-columns: minmax(210px, .38fr) minmax(0, 1fr); align-items: start; gap: clamp(42px, 7vw, 100px); }
.legal-aside { position: sticky; top: 120px; padding: 28px; border-top: 3px solid var(--gold); background: white; box-shadow: var(--shadow-soft); }
.legal-aside h2 { margin: 0 0 12px; font-size: 1.05rem; }
.legal-aside p { margin: 0; color: var(--ink-soft); font-size: .78rem; line-height: 1.6; }
.legal-aside a { color: var(--gold-dark); font-weight: 750; }
.legal-sections { display: grid; gap: 42px; }
.legal-section { padding-bottom: 38px; border-bottom: 1px solid #d9d2c6; }
.legal-section:last-child { border-bottom: 0; }
.legal-section h2 { margin: 0 0 16px; font-size: clamp(1.35rem, 2vw, 1.8rem); }
.legal-section h3 { margin: 22px 0 8px; font-size: 1rem; }
.legal-section p, .legal-section li { color: var(--ink-soft); font-size: .9rem; line-height: 1.72; }
.legal-section p { margin: 0 0 13px; }
.legal-section ul { display: grid; gap: 8px; margin: 12px 0 0; padding-left: 20px; }
.legal-section a { color: var(--gold-dark); text-decoration: underline; text-underline-offset: 3px; }

.preview-toast {
  position: fixed; z-index: 200; right: 22px; bottom: 22px; max-width: min(390px, calc(100% - 44px));
  padding: 15px 18px; color: white; background: var(--ink); border-left: 3px solid var(--gold);
  box-shadow: var(--shadow); opacity: 0; transform: translateY(18px); pointer-events: none;
  transition: opacity .2s ease, transform .2s ease;
}
.preview-toast.is-visible { opacity: 1; transform: translateY(0); }
.whatsapp-float {
  position: fixed; z-index: 150; right: 22px; bottom: 22px; min-height: 54px; display: flex; align-items: center; gap: 10px;
  padding: 0 20px; border-radius: 30px; color: white; background: #1f9d55; box-shadow: 0 14px 34px rgba(18,98,52,.28);
  font-size: .75rem; font-weight: 800; letter-spacing: .04em; transition: transform .2s ease, background .2s ease;
}
.whatsapp-float:hover { transform: translateY(-3px); background: #188347; }
.whatsapp-float svg { width: 23px; fill: none; stroke: currentColor; stroke-width: 1.65; stroke-linecap: round; stroke-linejoin: round; }
.preview-toast { bottom: 90px; }

@media (max-width: 1120px) {
  .main-nav { gap: 17px; }
  .main-nav a { font-size: .77rem; }
  .language { display: flex; }
  .header-cta { display: none; }
  .header-phone { width: 38px; min-width: 38px; height: 38px; min-height: 38px; justify-content: center; padding: 0; border-radius: 50%; }
  .header-phone span { display: none; }
  .audience-card { grid-template-columns: 1fr; }
  .audience-image { min-height: 290px; }
}

@media (max-width: 900px) {
  .shell { width: min(calc(100% - 32px), var(--max)); }
  .section { padding: 80px 0; }
  .header-inner { min-height: 84px; justify-content: space-between; }
  .brand--header { width: 230px; }
  .menu-toggle { display: block; margin-left: auto; cursor: pointer; }
  .main-nav {
    position: fixed; inset: 84px 0 auto; display: grid; gap: 0; padding: 18px 24px 28px;
    background: white; border-bottom: 1px solid var(--line); box-shadow: var(--shadow);
    opacity: 0; transform: translateY(-12px); pointer-events: none; transition: .2s ease;
  }
  .main-nav a { padding: 14px 0; border-bottom: 1px solid var(--line); font-size: 1rem; }
  .main-nav a::after { display: none; }
  .main-nav.is-open { opacity: 1; transform: translateY(0); pointer-events: auto; }
  .header-actions .language { display: none; }
  .nav-language { display: flex; align-items: center; justify-content: flex-start; gap: 8px; padding-top: 18px; font-size: .9rem; font-weight: 800; }
  .nav-language a { padding: 4px 0; border: 0; color: var(--ink-soft); }
  .nav-language .language__active { color: var(--gold-dark); }
  .header-cta { display: none; }
  .hero-grid, .promise-grid, .areas-grid, .guides-grid, .contact-grid { grid-template-columns: 1fr; }
  .hero-copy { padding: 76px 16px 64px; }
  .hero-media { min-height: 480px; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .trust article:nth-child(3) { border-left: 1px solid var(--line); }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .audience-grid, .project-grid { grid-template-columns: 1fr; }
  .audience-card { grid-template-columns: 1.05fr .95fr; }
  .promise-copy { padding-top: 64px; padding-bottom: 0; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid article:nth-child(3) { border-left: 1px solid rgba(255,255,255,.2); border-top: 1px solid rgba(255,255,255,.2); }
  .process-grid article:nth-child(4) { border-top: 1px solid rgba(255,255,255,.2); }
  .areas-grid { gap: 48px; }
  .guides-grid { gap: 30px; }
  .contact-grid { gap: 46px; }
  .footer-grid { grid-template-columns: 1.6fr 1fr 1fr; }
  .footer-grid > div:last-child { grid-column: 2; }
  .legal-summary-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 620px) {
  .section { padding: 68px 0; }
  h1 { font-size: clamp(2.28rem, 11vw, 3.35rem); }
  h2 { font-size: 2rem; }
  .brand--header { width: 205px; }
  .hero { min-height: 0; }
  .hero-copy { padding-top: 58px; }
  .hero-media { min-height: 370px; }
  .hero-buttons { flex-direction: column; align-items: stretch; }
  .hero-buttons .button { width: 100%; }
  .trust-grid { grid-template-columns: 1fr; padding: 12px 0; }
  .trust article, .trust article:first-child, .trust article:nth-child(3) { border: 0; border-bottom: 1px solid var(--line); }
  .section-heading { display: block; }
  .section-heading > p { margin-top: 20px; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 0; }
  .service-card__body { padding: 25px; }
  .audience-card { grid-template-columns: 1fr; }
  .audience-image { min-height: 270px; }
  .audience-content { padding: 32px 25px; }
  .promise-visual { min-height: 430px; }
  .process-grid { grid-template-columns: 1fr; }
  .process-grid article, .process-grid article:first-child, .process-grid article:nth-child(3), .process-grid article:nth-child(4) { border: 0; border-top: 1px solid rgba(255,255,255,.2); }
  .process-grid article:last-child { border-bottom: 1px solid rgba(255,255,255,.2); }
  blockquote { padding: 28px 22px; }
  .area-mark { height: 135px; }
  .contact-buttons { display: grid; margin-top: 28px; }
  .contact-cta .button { width: 100%; min-width: 0; }
  .contact-form { padding: 26px 20px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 32px 22px; }
  .footer-grid > div:first-child { grid-column: 1 / -1; }
  .footer-grid > div:last-child { grid-column: auto; }
  .footer-bottom { display: grid; }
  .legal-summary-grid { grid-template-columns: 1fr; }
  .legal-layout { grid-template-columns: 1fr; }
  .legal-aside { position: static; }
  .whatsapp-float { right: 16px; bottom: 16px; width: 54px; padding: 0; justify-content: center; }
  .whatsapp-float span { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
  .preview-toast { right: 16px; bottom: 82px; max-width: calc(100% - 32px); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; }
}
