/* ==========================================================================
   Leandro Teixeira Ramos · REALTOR® · Orlando, FL
   Folha de estilo unica, sem dependencias externas (bom para Core Web Vitals)
   ========================================================================== */

/* --- Tokens ------------------------------------------------------------- */
:root {
  --navy-900: #08192b;
  --navy-800: #0f2740;
  --navy-700: #17395c;
  --navy-600: #1f4b78;
  --gold-600: #b8860f;
  --gold-500: #d9a520;
  --gold-400: #e8b530;
  --gold-200: #f6dc9a;
  --sky-50: #f2f7fb;
  --sky-100: #e4edf5;
  --ink: #0e1a26;
  --body: #3d4d5c;
  --muted: #6b7c8c;
  --line: #dde5ed;
  --white: #ffffff;

  --font-display: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, "Times New Roman", serif;
  --font-body: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;

  --wrap: 1180px;
  --radius: 14px;
  --radius-sm: 9px;
  --shadow-sm: 0 1px 2px rgba(8, 25, 43, .06), 0 4px 12px rgba(8, 25, 43, .06);
  --shadow-md: 0 8px 30px rgba(8, 25, 43, .10);
  --shadow-lg: 0 24px 60px rgba(8, 25, 43, .18);
}

/* --- Reset -------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: 88px; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--body);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg, video { max-width: 100%; height: auto; display: block; }
a { color: var(--navy-600); text-decoration-color: rgba(31, 75, 120, .35); text-underline-offset: 3px; }
a:hover { text-decoration-color: currentColor; }
h1, h2, h3, h4 { font-family: var(--font-display); color: var(--ink); line-height: 1.18; margin: 0 0 .5em; font-weight: 600; letter-spacing: -.015em; }
h1 { font-size: clamp(2.1rem, 5.2vw, 3.5rem); }
h2 { font-size: clamp(1.7rem, 3.6vw, 2.5rem); }
h3 { font-size: 1.22rem; }
p { margin: 0 0 1.1em; }
ul { margin: 0 0 1.1em; padding-left: 1.15em; }
li { margin-bottom: .4em; }
:focus-visible { outline: 3px solid var(--gold-500); outline-offset: 3px; border-radius: 4px; }

/* --- Utilitarios -------------------------------------------------------- */
.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: 22px; }
.section { padding: clamp(60px, 8vw, 104px) 0; }
.section--tint { background: var(--sky-50); }
.section--dark { background: var(--navy-800); color: rgba(255, 255, 255, .82); }
.section--dark h2, .section--dark h3 { color: var(--white); }
.eyebrow {
  display: inline-block; font-family: var(--font-body); font-size: .74rem; font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase; color: var(--gold-600); margin-bottom: 14px;
}
.section--dark .eyebrow { color: var(--gold-400); }
.lead { font-size: 1.1rem; color: var(--muted); max-width: 62ch; }
.section--dark .lead { color: rgba(255, 255, 255, .72); }
.head { max-width: 720px; margin-bottom: clamp(34px, 5vw, 54px); }
.head--center { margin-inline: auto; text-align: center; }
.skip {
  position: absolute; left: -9999px; top: 0; background: var(--navy-800); color: #fff;
  padding: 12px 20px; z-index: 999; border-radius: 0 0 var(--radius-sm) 0;
}
.skip:focus { left: 0; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}

/* --- Botoes ------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--font-body); font-size: .96rem; font-weight: 600; line-height: 1;
  padding: 15px 26px; border-radius: 999px; border: 1.5px solid transparent;
  text-decoration: none; cursor: pointer; transition: transform .16s ease, background .16s ease, color .16s ease, border-color .16s ease, box-shadow .16s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn svg { width: 18px; height: 18px; flex: none; }
.btn--primary { background: var(--gold-400); color: var(--navy-900); box-shadow: 0 6px 18px rgba(217, 165, 32, .32); }
.btn--primary:hover { background: var(--gold-500); }
.btn--dark { background: var(--navy-800); color: #fff; }
.btn--dark:hover { background: var(--navy-700); }
.btn--ghost { border-color: rgba(15, 39, 64, .22); color: var(--navy-800); background: transparent; }
.btn--ghost:hover { border-color: var(--navy-800); background: rgba(15, 39, 64, .04); }
.btn--light { background: #fff; color: var(--navy-800); }
.btn--outline-light { border-color: rgba(255, 255, 255, .4); color: #fff; }
.btn--outline-light:hover { border-color: #fff; background: rgba(255, 255, 255, .08); }
.btn--wide { width: 100%; }
.btn-row { display: flex; flex-wrap: wrap; gap: 12px; }

/* --- Header ------------------------------------------------------------- */
.header {
  position: sticky; top: 0; z-index: 60; background: rgba(255, 255, 255, .94);
  backdrop-filter: saturate(160%) blur(10px); border-bottom: 1px solid var(--line);
}
.header__inner { display: flex; align-items: center; gap: 18px; min-height: 74px; }
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; margin-right: auto; }
.brand__mark {
  width: 42px; height: 42px; flex: none; border-radius: 10px; background: var(--navy-800);
  color: var(--gold-400); display: grid; place-items: center;
  font-family: var(--font-display); font-size: .95rem; font-weight: 700; letter-spacing: .02em;
}
.brand__name { display: block; font-family: var(--font-display); font-size: 1.06rem; font-weight: 600; color: var(--ink); line-height: 1.15; }
.brand__role { display: block; font-size: .68rem; letter-spacing: .13em; text-transform: uppercase; color: var(--muted); }
.nav { display: flex; align-items: center; gap: 26px; }
.nav a { font-size: .93rem; font-weight: 500; color: var(--body); text-decoration: none; }
.nav a:hover { color: var(--navy-800); }
.header__actions { display: flex; align-items: center; gap: 12px; }
.header .btn { padding: 12px 20px; font-size: .9rem; }

/* Seletor de idioma */
.lang { position: relative; }
.lang__btn {
  display: inline-flex; align-items: center; gap: 7px; background: transparent; cursor: pointer;
  border: 1px solid var(--line); border-radius: 999px; padding: 9px 13px;
  font-family: var(--font-body); font-size: .85rem; font-weight: 600; color: var(--body);
}
.lang__btn:hover { border-color: var(--navy-600); color: var(--navy-800); }
.lang__btn svg { width: 15px; height: 15px; }
.lang__menu {
  position: absolute; right: 0; top: calc(100% + 8px); min-width: 172px; background: #fff;
  border: 1px solid var(--line); border-radius: var(--radius-sm); box-shadow: var(--shadow-md);
  padding: 6px; margin: 0; list-style: none; display: none;
}
.lang__menu[data-open="true"] { display: block; }
.lang__menu li { margin: 0; }
.lang__menu a {
  display: flex; align-items: center; gap: 9px; padding: 9px 11px; border-radius: 7px;
  font-size: .9rem; color: var(--body); text-decoration: none;
}
.lang__menu a:hover { background: var(--sky-50); color: var(--navy-800); }
.lang__menu a[aria-current="true"] { color: var(--navy-800); font-weight: 600; }

/* Menu mobile */
.burger {
  display: none; width: 44px; height: 44px; border: 1px solid var(--line); border-radius: 10px;
  background: #fff; cursor: pointer; padding: 0; place-items: center;
}
.burger span { display: block; width: 19px; height: 1.8px; background: var(--navy-800); margin: 3.5px auto; transition: transform .2s ease, opacity .2s ease; }
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(5.3px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-5.3px) rotate(-45deg); }

/* --- Hero --------------------------------------------------------------- */
.hero {
  position: relative; overflow: hidden; color: rgba(255, 255, 255, .84);
  background:
    radial-gradient(1100px 520px at 88% -12%, rgba(232, 181, 48, .16), transparent 62%),
    radial-gradient(760px 420px at 4% 108%, rgba(31, 75, 120, .55), transparent 60%),
    linear-gradient(158deg, var(--navy-900) 0%, var(--navy-800) 52%, var(--navy-700) 100%);
}
.hero::after {
  content: ""; position: absolute; inset: 0; pointer-events: none; opacity: .32;
  background-image: linear-gradient(rgba(255, 255, 255, .045) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .045) 1px, transparent 1px);
  background-size: 62px 62px;
  mask-image: radial-gradient(700px 460px at 25% 40%, #000, transparent 78%);
}
.hero__inner {
  position: relative; z-index: 1; display: grid; grid-template-columns: 1.08fr .92fr;
  gap: clamp(32px, 5vw, 68px); align-items: center;
  padding: clamp(56px, 7vw, 96px) 0 clamp(64px, 8vw, 104px);
}
.hero h1 { color: #fff; margin-bottom: .38em; }
.hero h1 .accent { color: var(--gold-400); }
.hero__sub { font-size: clamp(1.02rem, 1.6vw, 1.16rem); color: rgba(255, 255, 255, .78); max-width: 54ch; }
.hero__badge {
  display: inline-flex; align-items: center; gap: 9px; padding: 7px 15px 7px 9px; border-radius: 999px;
  background: rgba(255, 255, 255, .08); border: 1px solid rgba(255, 255, 255, .16);
  font-size: .8rem; font-weight: 600; letter-spacing: .04em; color: rgba(255, 255, 255, .9); margin-bottom: 22px;
}
.hero__badge b { color: var(--gold-400); font-weight: 700; }
.hero__badge .dot { width: 7px; height: 7px; border-radius: 50%; background: #4ade80; box-shadow: 0 0 0 4px rgba(74, 222, 128, .18); margin-left: 4px; }
.hero .btn-row { margin-top: 30px; }
.hero__meta { display: flex; flex-wrap: wrap; gap: 10px 26px; margin-top: 32px; font-size: .87rem; color: rgba(255, 255, 255, .62); }
.hero__meta span { display: inline-flex; align-items: center; gap: 7px; }
.hero__meta svg { width: 15px; height: 15px; color: var(--gold-400); flex: none; }

/* Cartao do retrato */
.portrait { position: relative; }
.portrait__frame {
  position: relative; border-radius: 18px; overflow: hidden; background: linear-gradient(160deg, var(--navy-700), var(--navy-900));
  box-shadow: var(--shadow-lg); border: 1px solid rgba(255, 255, 255, .14); aspect-ratio: 4 / 5;
}
.portrait__frame img { width: 100%; height: 100%; object-fit: cover; object-position: center 12%; }
.portrait__fallback {
  position: absolute; inset: 0; display: grid; place-items: center; text-align: center; padding: 24px;
  font-family: var(--font-display); color: rgba(255, 255, 255, .3);
}
.portrait__fallback b { display: block; font-size: 3.6rem; letter-spacing: .06em; color: var(--gold-400); opacity: .55; }
.portrait__fallback small { font-size: .74rem; letter-spacing: .16em; text-transform: uppercase; }
.portrait__card {
  position: absolute; left: -18px; bottom: 26px; background: #fff; border-radius: 12px;
  padding: 14px 18px; box-shadow: var(--shadow-md); max-width: 240px;
}
.portrait__card strong { display: block; font-family: var(--font-display); font-size: 1rem; color: var(--ink); }
.portrait__card span { font-size: .78rem; color: var(--muted); }
.portrait__logo {
  position: absolute; right: -14px; top: 22px; background: #fff; border-radius: 10px; padding: 10px 14px;
  box-shadow: var(--shadow-md); text-align: center; line-height: 1.25;
}
.portrait__logo b { display: block; font-size: .84rem; color: var(--navy-800); letter-spacing: .02em; }
.portrait__logo span { font-size: .62rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }

/* --- Faixa de credibilidade --------------------------------------------- */
.trust { border-bottom: 1px solid var(--line); background: #fff; }
.trust__inner { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); }
.trust__item { background: #fff; padding: 26px 22px; text-align: center; }
.trust__item b { display: block; font-family: var(--font-display); font-size: 1.02rem; color: var(--ink); margin-bottom: 3px; }
.trust__item span { font-size: .8rem; color: var(--muted); }

/* --- Grades genericas --------------------------------------------------- */
.grid { display: grid; gap: 22px; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

/* --- Cards de servico --------------------------------------------------- */
.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 28px 26px;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: #cbd8e5; }
.card__icon {
  width: 46px; height: 46px; border-radius: 11px; display: grid; place-items: center; margin-bottom: 18px;
  background: linear-gradient(160deg, var(--sky-100), #fff); border: 1px solid var(--line); color: var(--navy-700);
}
.card__icon svg { width: 22px; height: 22px; }
.card h3 { margin-bottom: .35em; }
.card p { font-size: .95rem; margin-bottom: 0; color: var(--body); }

/* --- Areas atendidas ---------------------------------------------------- */
.areas { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 6px; }
.areas a, .areas span {
  display: inline-flex; align-items: center; padding: 9px 16px; border-radius: 999px;
  background: #fff; border: 1px solid var(--line); font-size: .89rem; color: var(--body); text-decoration: none;
}
.areas a:hover { border-color: var(--navy-600); color: var(--navy-800); }
.areas .is-primary { background: var(--navy-800); border-color: var(--navy-800); color: #fff; font-weight: 600; }

/* --- Destaques de mercado ----------------------------------------------- */
.pillar { display: flex; gap: 16px; align-items: flex-start; }
.pillar__num {
  flex: none; width: 38px; height: 38px; border-radius: 10px; display: grid; place-items: center;
  background: rgba(232, 181, 48, .14); color: var(--gold-400); font-weight: 700; font-size: .95rem;
  border: 1px solid rgba(232, 181, 48, .28);
}
.pillar h3 { font-size: 1.08rem; margin-bottom: .3em; }
.pillar p { font-size: .94rem; margin-bottom: 0; }

/* --- Processo (timeline) ------------------------------------------------ */
.steps { counter-reset: step; display: grid; gap: 0; margin-top: 8px; }
.step {
  position: relative; padding: 24px 0 24px 66px; border-bottom: 1px solid var(--line);
}
.step:last-child { border-bottom: 0; }
.step::before {
  counter-increment: step; content: counter(step, decimal-leading-zero);
  position: absolute; left: 0; top: 24px; width: 44px; height: 44px; border-radius: 12px;
  display: grid; place-items: center; background: var(--navy-800); color: var(--gold-400);
  font-family: var(--font-display); font-size: .95rem; font-weight: 700;
}
.step h3 { margin-bottom: .25em; font-size: 1.1rem; }
.step p { margin-bottom: 0; font-size: .95rem; }

/* --- Sobre -------------------------------------------------------------- */
.about { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(30px, 5vw, 64px); align-items: center; }
.about__media { position: relative; }
.about__media img, .about__ph {
  border-radius: var(--radius); box-shadow: var(--shadow-md); width: 100%; aspect-ratio: 4 / 5; object-fit: cover;
}
.about__ph {
  display: grid; place-items: center; background: linear-gradient(160deg, var(--navy-700), var(--navy-900));
  color: rgba(255, 255, 255, .34); font-family: var(--font-display); font-size: 3rem; letter-spacing: .08em;
}
.creds { display: grid; gap: 12px; margin: 26px 0 0; padding: 0; list-style: none; }
.creds li { display: flex; gap: 11px; align-items: flex-start; margin: 0; font-size: .95rem; }
.creds svg { width: 19px; height: 19px; flex: none; color: var(--gold-500); margin-top: 3px; }

/* --- FAQ ---------------------------------------------------------------- */
.faq { max-width: 860px; margin-inline: auto; }
.faq details {
  border: 1px solid var(--line); border-radius: var(--radius-sm); background: #fff; margin-bottom: 12px;
  transition: border-color .16s ease, box-shadow .16s ease;
}
.faq details[open] { border-color: #c9d7e5; box-shadow: var(--shadow-sm); }
.faq summary {
  cursor: pointer; list-style: none; padding: 19px 54px 19px 22px; position: relative;
  font-family: var(--font-display); font-size: 1.06rem; font-weight: 600; color: var(--ink);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ""; position: absolute; right: 22px; top: 50%; width: 10px; height: 10px;
  border-right: 2px solid var(--gold-500); border-bottom: 2px solid var(--gold-500);
  transform: translateY(-70%) rotate(45deg); transition: transform .2s ease;
}
.faq details[open] summary::after { transform: translateY(-30%) rotate(-135deg); }
.faq .faq__body { padding: 0 22px 20px; font-size: .96rem; }
.faq .faq__body p:last-child { margin-bottom: 0; }

/* --- CTA final ---------------------------------------------------------- */
.cta {
  background:
    radial-gradient(760px 380px at 82% 0%, rgba(232, 181, 48, .18), transparent 60%),
    linear-gradient(150deg, var(--navy-800), var(--navy-900));
  color: rgba(255, 255, 255, .82); text-align: center;
}
.cta h2 { color: #fff; }
.cta .lead { margin-inline: auto; }

/* --- Contato ------------------------------------------------------------ */
.contact { display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(30px, 5vw, 60px); align-items: start; }
.contact__list { display: grid; gap: 14px; margin: 26px 0 0; padding: 0; list-style: none; }
.contact__list li { margin: 0; }
.contact__list a, .contact__list .row {
  display: flex; gap: 14px; align-items: center; padding: 16px 18px; border: 1px solid var(--line);
  border-radius: var(--radius-sm); background: #fff; text-decoration: none; color: inherit;
  transition: border-color .16s ease, box-shadow .16s ease;
}
.contact__list a:hover { border-color: var(--navy-600); box-shadow: var(--shadow-sm); }
.contact__list .ico { width: 40px; height: 40px; flex: none; border-radius: 10px; display: grid; place-items: center; background: var(--sky-50); color: var(--navy-700); }
.contact__list .ico svg { width: 19px; height: 19px; }
.contact__list b { display: block; font-size: .95rem; color: var(--ink); font-family: var(--font-body); font-weight: 600; }
.contact__list span { font-size: .82rem; color: var(--muted); }

.form { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(22px, 3vw, 32px); box-shadow: var(--shadow-sm); }
.field { margin-bottom: 16px; }
.field label { display: block; font-size: .85rem; font-weight: 600; color: var(--ink); margin-bottom: 6px; }
.field input, .field select, .field textarea {
  width: 100%; font-family: inherit; font-size: .97rem; color: var(--ink); background: #fff;
  border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 13px 15px; transition: border-color .16s ease, box-shadow .16s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--navy-600); box-shadow: 0 0 0 3px rgba(31, 75, 120, .12);
}
.field textarea { min-height: 118px; resize: vertical; }
.field--split { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form__note { font-size: .78rem; color: var(--muted); margin: 12px 0 0; text-align: center; }
.form__alt { text-align: center; margin: 14px 0 0; font-size: .86rem; }

/* --- Rodape ------------------------------------------------------------- */
.footer { background: var(--navy-900); color: rgba(255, 255, 255, .58); font-size: .9rem; padding: clamp(46px, 6vw, 68px) 0 30px; }
.footer a { color: rgba(255, 255, 255, .78); text-decoration: none; }
.footer a:hover { color: var(--gold-400); }
.footer__grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 34px; padding-bottom: 34px; border-bottom: 1px solid rgba(255, 255, 255, .1); }
.footer h4 { color: #fff; font-size: .78rem; letter-spacing: .14em; text-transform: uppercase; font-family: var(--font-body); font-weight: 700; margin-bottom: 14px; }
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer li { margin-bottom: 9px; }
.footer .brand__name { color: #fff; }
.footer .brand__role { color: rgba(255, 255, 255, .5); }
.footer__legal { padding-top: 26px; font-size: .8rem; line-height: 1.7; color: rgba(255, 255, 255, .45); }
.footer__legal p { margin-bottom: .7em; }
.footer__bottom { display: flex; flex-wrap: wrap; gap: 14px; justify-content: space-between; align-items: center; margin-top: 10px; }
.footer__social { display: flex; gap: 10px; }
.footer__social a {
  width: 38px; height: 38px; border-radius: 10px; display: grid; place-items: center;
  border: 1px solid rgba(255, 255, 255, .16); color: rgba(255, 255, 255, .78);
}
.footer__social a:hover { border-color: var(--gold-400); color: var(--gold-400); }
.footer__social svg { width: 17px; height: 17px; }
.eho { display: flex; align-items: center; gap: 10px; }
.eho svg { width: 26px; height: 26px; flex: none; opacity: .6; }

/* --- Barra fixa mobile -------------------------------------------------- */
.dock {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 70; display: none;
  background: rgba(255, 255, 255, .96); backdrop-filter: blur(10px); border-top: 1px solid var(--line);
  padding: 9px 12px calc(9px + env(safe-area-inset-bottom)); gap: 9px;
}
.dock .btn { flex: 1; padding: 13px 10px; font-size: .88rem; }

/* --- Responsivo --------------------------------------------------------- */
@media (max-width: 1000px) {
  .hero__inner { grid-template-columns: 1fr; }
  .portrait { max-width: 400px; margin-inline: auto; width: 100%; }
  .about { grid-template-columns: 1fr; }
  .about__media { max-width: 380px; }
  .contact { grid-template-columns: 1fr; }
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 860px) {
  .nav {
    position: absolute; top: 100%; left: 0; right: 0; flex-direction: column; align-items: stretch;
    gap: 0; background: #fff; border-bottom: 1px solid var(--line); box-shadow: var(--shadow-md);
    padding: 8px 22px 18px; display: none;
  }
  .nav[data-open="true"] { display: flex; }
  .nav a { padding: 13px 0; border-bottom: 1px solid var(--line); font-size: 1rem; }
  .nav a:last-child { border-bottom: 0; }
  .burger { display: grid; }
  .header__actions .btn--primary { display: none; }
  .dock { display: flex; }
  body { padding-bottom: 68px; }
}
@media (max-width: 720px) {
  .grid--3, .grid--2, .grid--4 { grid-template-columns: 1fr; }
  .trust__inner { grid-template-columns: repeat(2, 1fr); }
  .field--split { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 26px; }
  .step { padding-left: 56px; }
  .step::before { width: 38px; height: 38px; font-size: .86rem; }
  .portrait__card { left: 0; }
  .portrait__logo { right: 0; }
}

@media (max-width: 430px) {
  h1 { font-size: 1.95rem; hyphens: auto; }
  .header__inner { gap: 10px; }
  .brand__role { display: none; }
  .brand__name { font-size: 1rem; white-space: nowrap; }
  .brand__mark { width: 38px; height: 38px; font-size: .85rem; }
}

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

@media print {
  .header, .dock, .cta, .form { display: none !important; }
  body { color: #000; }
}
