/* ==========================================================================
   Tomás Moraes Advocacia — Stylesheet
   Estrutura: 1 tokens (escala fluida) → 2 base → 3 tipografia → 4 botões
              5 header → 6 hero → 7–16 seções → 17 flutuante → 18 responsivo
              19 motion (entradas de SVG, reveal, keyframes)
   Breakpoints: desktop ≥1200 · laptop 1025–1199 · tablet 768–1024 · mobile ≤767 · compacto ≤480
   ========================================================================== */

/* ---------- 1. Tokens ---------- */
:root {
  /* cores */
  --navy-950: #08111e;
  --navy-900: #0b1729;
  --navy-850: #0e1d33;
  --navy-800: #11253f;
  --navy-700: #183358;
  --gold: #c9a961;
  --gold-light: #e2cb8c;
  --gold-dark: #a98a48;
  --cream: #f3efe6;
  --paper: #f7f4ee;
  --paper-2: #ede8de;
  --ink: #0f1826;
  --ink-2: #4b5665;
  --muted: #9aa7b9;
  --line-dark: rgba(201, 169, 97, 0.28);
  --line-dark-soft: rgba(201, 169, 97, 0.14);
  --line-light: rgba(15, 24, 38, 0.12);
  --whatsapp: #25d366;

  /* fontes */
  --font-display: "Cormorant Garamond", "Cormorant", Georgia, "Times New Roman", serif;
  --font-sans: "Jost", "Futura", "Century Gothic", system-ui, -apple-system, "Segoe UI", sans-serif;

  /* escala tipográfica fluida (360px → 1600px) */
  --fs-hero: clamp(2.7rem, 1.55rem + 4.7vw, 5.75rem);
  --fs-h2: clamp(2rem, 1.4rem + 2.1vw, 3.3rem);
  --fs-h3: clamp(1.25rem, 1.12rem + 0.45vw, 1.5rem);
  --fs-h3-sm: clamp(1.15rem, 1.06rem + 0.3vw, 1.3rem);
  --fs-lead: clamp(1rem, 0.94rem + 0.3vw, 1.15rem);
  --fs-body: clamp(0.95rem, 0.92rem + 0.15vw, 1.02rem);
  --fs-small: clamp(0.86rem, 0.84rem + 0.1vw, 0.92rem);
  --fs-label: clamp(0.66rem, 0.63rem + 0.12vw, 0.74rem);
  --fs-num: clamp(2.4rem, 1.9rem + 1.6vw, 3.4rem);

  /* escala de espaçamento fluida */
  --space-xs: 0.5rem;
  --space-s: clamp(0.75rem, 0.6rem + 0.5vw, 1rem);
  --space-m: clamp(1.25rem, 1rem + 1vw, 2rem);
  --space-l: clamp(2rem, 1.5rem + 2vw, 3.5rem);
  --space-xl: clamp(3rem, 2rem + 3.5vw, 5.5rem);
  --space-section: clamp(4.5rem, 3rem + 5.5vw, 8.5rem);
  --gap: clamp(1rem, 0.75rem + 0.8vw, 1.5rem);
  --gutter: clamp(1.25rem, 0.5rem + 3.5vw, 4rem);

  /* layout */
  --container: 1280px;
  --header-h: clamp(4.5rem, 3.6rem + 2vw, 6rem);
  --radius: 10px;
  --radius-s: 6px;

  /* motion */
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-pop: cubic-bezier(0.34, 1.56, 0.64, 1);
  --stagger: 90ms;
}

/* ---------- 2. Base ---------- */
*,
*::before,
*::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 5rem;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: var(--fs-body);
  line-height: 1.65;
  color: var(--cream);
  background: var(--navy-900);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
body.nav-open { overflow: hidden; }

img, svg, picture { display: block; max-width: 100%; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.08;
  margin: 0;
  letter-spacing: -0.005em;
}
p { margin: 0; }
a { color: inherit; text-decoration: none; }
ul, ol { margin: 0; padding: 0; list-style: none; }
button { font: inherit; color: inherit; background: none; border: 0; padding: 0; cursor: pointer; }
address { font-style: normal; }
em { font-style: italic; }

:focus-visible { outline: 2px solid var(--gold); outline-offset: 4px; border-radius: 2px; }
::selection { background: var(--gold); color: var(--navy-950); }

.container {
  width: min(100% - 2 * var(--gutter), var(--container));
  margin-inline: auto;
}

.skip-link {
  position: absolute; left: 1rem; top: -4rem; z-index: 1000;
  padding: 0.75rem 1.25rem; background: var(--gold); color: var(--navy-950);
  font-weight: 500; border-radius: 4px; transition: top 0.2s;
}
.skip-link:focus { top: 1rem; }

.icon { width: 1.25em; height: 1.25em; flex: none; }

/* ---------- 3. Tipografia utilitária ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  font-family: var(--font-sans);
  font-size: var(--fs-label);
  font-weight: 500;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-s);
}
.eyebrow::before {
  content: "";
  width: 2rem;
  height: 1px;
  background: currentColor;
  opacity: 0.8;
  transform-origin: left;
}

.section-title { font-size: var(--fs-h2); max-width: 20ch; text-wrap: balance; }
.section-title em { color: var(--gold); }

.section-lead {
  margin-top: var(--space-s);
  max-width: 58ch;
  font-size: var(--fs-lead);
  line-height: 1.7;
}
.section--dark .section-lead { color: var(--muted); }
.section--light .section-lead { color: var(--ink-2); }

.section-head { margin-bottom: var(--space-l); }
.section-head--center { text-align: center; }
.section-head--center .section-title,
.section-head--center .section-lead { margin-inline: auto; }
.section-head--center .eyebrow::before { display: none; }

/* ---------- 4. Botões e links ---------- */
.btn {
  --btn-color: var(--gold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  min-height: 3.25rem;
  padding: 0.85rem clamp(1.4rem, 1rem + 1vw, 2rem);
  font-family: var(--font-sans);
  font-size: var(--fs-label);
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  border: 1px solid var(--btn-color);
  border-radius: 4px;
  color: var(--btn-color);
  background: transparent;
  white-space: nowrap;
  transition: background 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease), transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.btn:hover { background: var(--gold); color: var(--navy-950); transform: translateY(-2px); box-shadow: 0 12px 30px -12px rgba(201, 169, 97, 0.55); }
.btn--solid { background: var(--gold); color: var(--navy-950); }
.btn--solid:hover { background: var(--gold-light); border-color: var(--gold-light); }
.btn--dark { --btn-color: var(--navy-900); background: var(--navy-900); color: var(--cream); }
.btn--dark:hover { background: var(--navy-950); border-color: var(--navy-950); color: var(--cream); box-shadow: 0 12px 30px -12px rgba(8, 17, 30, 0.6); }
.btn .icon { width: 1.1rem; height: 1.1rem; }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  font-family: var(--font-sans);
  font-size: var(--fs-label);
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  transition: color 0.3s var(--ease), gap 0.3s var(--ease);
}
.link-arrow .icon { width: 1.15rem; height: 1.15rem; transition: transform 0.35s var(--ease-out); }
.link-arrow:hover { color: var(--gold-light); gap: 1.15rem; }
.link-arrow:hover .icon { transform: translate(2px, -2px); }

/* ---------- 5. Header ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  border-bottom: 1px solid transparent;
  transition: background 0.45s var(--ease), height 0.45s var(--ease), border-color 0.45s var(--ease);
}
.site-header.is-scrolled {
  --header-h: 4.5rem;
  background: rgba(11, 23, 41, 0.86);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-color: var(--line-dark-soft);
}
.header__inner { display: flex; align-items: center; justify-content: space-between; gap: var(--space-m); }

.brand { display: inline-flex; align-items: center; gap: clamp(0.8rem, 0.6rem + 0.5vw, 1.1rem); line-height: 1; }
.brand__mark {
  width: clamp(2rem, 1.6rem + 1vw, 2.6rem);
  height: auto;
  color: var(--gold);
  overflow: visible;
  transition: transform 0.4s var(--ease-out);
}
.brand:hover .brand__mark { transform: translateY(-2px); }
.brand__divider { width: 1px; height: clamp(2.4rem, 2rem + 1vw, 3.1rem); background: var(--gold); opacity: 0.7; transform-origin: top; }
.brand__text { display: flex; flex-direction: column; gap: 0.35rem; }
.brand__name {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 0.9rem + 0.6vw, 1.5rem);
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--cream);
  white-space: nowrap;
}
.brand__sub {
  font-family: var(--font-sans);
  font-size: clamp(0.56rem, 0.5rem + 0.2vw, 0.66rem);
  font-weight: 300;
  letter-spacing: 0.44em;
  text-transform: uppercase;
  color: var(--gold);
  padding-left: 0.1em;
}

.nav__list { display: flex; gap: clamp(1.5rem, 0.5rem + 2.2vw, 3.25rem); }
.nav__list > li { white-space: nowrap; }
.nav__cta { display: none; }
.nav__link {
  position: relative;
  display: block;
  padding: 0.5rem 0;
  font-size: var(--fs-label);
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--cream);
  transition: color 0.3s var(--ease);
}
.nav__link::after {
  content: ""; position: absolute; left: 0; bottom: 0; width: 100%; height: 1px;
  background: var(--gold); transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s var(--ease-out);
}
.nav__link:hover, .nav__link.is-active { color: var(--gold-light); }
.nav__link:hover::after, .nav__link.is-active::after { transform: scaleX(1); }

.nav-toggle {
  display: none;
  width: 2.75rem; height: 2.75rem;
  place-items: center;
  color: var(--cream);
  border: 1px solid var(--line-dark);
  border-radius: 4px;
}
.nav-toggle .icon { width: 1.4rem; height: 1.4rem; }
.nav-toggle .icon--close { display: none; }
.nav-open .nav-toggle .icon--menu { display: none; }
.nav-open .nav-toggle .icon--close { display: block; }

/* ---------- 6. Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: var(--header-h);
  overflow: hidden;
  isolation: isolate;
}
.hero__media { position: absolute; inset: 0; z-index: -1; background: var(--navy-900); }
.hero__media picture, .hero__bg { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero__bg { object-fit: cover; object-position: 62% 38%; animation: hero-zoom 2.6s var(--ease-out) both; }
.hero__portrait { display: none; }
.hero__overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 17, 30, 0.6) 0%, rgba(8, 17, 30, 0.3) 40%, rgba(8, 17, 30, 0) 68%),
    linear-gradient(180deg, rgba(8, 17, 30, 0.45) 0%, rgba(8, 17, 30, 0) 22%, rgba(8, 17, 30, 0) 78%, var(--navy-900) 100%);
}

.hero__content { position: relative; padding-block: clamp(3rem, 6vh, 6rem) clamp(7rem, 15vh, 11rem); }
.hero__text { max-width: 44rem; }
.hero__text > * { animation: fade-up 1s var(--ease-out) both; }
.hero__text > :nth-child(1) { animation-delay: 0.25s; }
.hero__text > :nth-child(2) { animation-delay: 0.4s; }
.hero__text > :nth-child(3) { animation-delay: 0.6s; }
.hero__text > :nth-child(4) { animation-delay: 0.75s; }
.hero__text > :nth-child(5) { animation-delay: 0.9s; }

.hero__title { font-size: var(--fs-hero); line-height: 1.02; font-weight: 500; color: var(--cream); text-wrap: balance; }
.hero__title em { font-style: normal; color: var(--gold); }
.hero__rule { display: block; width: 3.5rem; height: 1px; margin: var(--space-m) 0 var(--space-s); background: var(--gold); transform-origin: left; }
.hero__lead {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 1rem + 0.9vw, 1.7rem);
  line-height: 1.4;
  color: var(--cream);
  max-width: 34ch;
}
.hero__text .link-arrow { margin-top: var(--space-m); }

.hero__card {
  position: absolute;
  right: var(--gutter);
  bottom: clamp(7rem, 17vh, 11rem);
  width: min(24rem, 30vw);
  padding: clamp(1.4rem, 1.1rem + 0.8vw, 1.9rem) clamp(1.5rem, 1.2rem + 0.9vw, 2rem);
  border: 1px solid rgba(201, 169, 97, 0.65);
  border-radius: 8px;
  background: rgba(11, 23, 41, 0.35);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 30px 60px -30px rgba(0, 0, 0, 0.6);
  animation: fade-up 1s var(--ease-out) 1.1s both;
}
.hero__card-rule { display: block; width: 2.25rem; height: 1px; background: var(--gold); margin-bottom: 1.1rem; transform-origin: left; animation: grow-x 0.9s var(--ease-out) 1.5s both; }
.hero__card-label { font-size: var(--fs-label); font-weight: 500; letter-spacing: 0.34em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.5rem; }
.hero__card-text { font-family: var(--font-display); font-size: clamp(1.3rem, 1.1rem + 0.6vw, 1.65rem); line-height: 1.25; color: var(--cream); }

.hero__strip {
  position: absolute; left: 0; right: 0;
  bottom: clamp(1.75rem, 4vh, 2.75rem);
  display: flex; align-items: center; gap: 1.5rem;
  font-size: var(--fs-label);
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(243, 239, 230, 0.62);
  animation: fade-in 1.2s var(--ease-out) 1.3s both;
}
.hero__strip i { font-style: normal; color: var(--gold); margin-inline: 0.9rem; opacity: 0.7; }
.hero__strip-line { flex: 0 1 15rem; height: 1px; background: rgba(201, 169, 97, 0.4); transform-origin: left; animation: grow-x 1.2s var(--ease-out) 1.5s both; }

/* ---------- 7. Credenciais ---------- */
.credentials { position: relative; z-index: 2; background: var(--navy-900); border-block: 1px solid var(--line-dark-soft); }
.credentials__grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.credential {
  display: flex; align-items: center; gap: var(--space-s);
  padding: var(--space-m) var(--space-m) var(--space-m) 0;
  border-right: 1px solid var(--line-dark-soft);
}
.credential:not(:first-child) { padding-left: var(--space-m); }
.credential:last-child { border-right: 0; }
.credential .icon { width: 1.9rem; height: 1.9rem; color: var(--gold); }
.credential strong { display: block; font-family: var(--font-display); font-size: var(--fs-h3-sm); font-weight: 600; line-height: 1.1; color: var(--cream); }
.credential span { display: block; margin-top: 0.25rem; font-size: var(--fs-small); color: var(--muted); }

/* ---------- 8. Seções genéricas ---------- */
.section { position: relative; padding-block: var(--space-section); }
.section--light { background: var(--paper); color: var(--ink); }
.section--dark { background: var(--navy-900); color: var(--cream); }
.section--light .section-title { color: var(--ink); }
.section--light .section-title em { color: var(--gold-dark); }

/* ---------- 9. O Escritório ---------- */
.about__grid {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: var(--space-xl);
  align-items: center;
}
.about__media { position: relative; padding-bottom: 2rem; }
.portrait-frame {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-s);
  overflow: hidden;
  background: radial-gradient(120% 90% at 30% 15%, #1b3558 0%, var(--navy-900) 62%);
  box-shadow: 0 40px 80px -40px rgba(8, 17, 30, 0.7);
}
.portrait-frame::before {
  content: ""; position: absolute; inset: 0;
  background: url("../img/skyline-blur.webp") center / cover no-repeat;
  opacity: 0.45; mix-blend-mode: screen;
}
.portrait-frame::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(11, 23, 41, 0) 55%, rgba(11, 23, 41, 0.55) 100%);
}
.portrait-frame img {
  position: absolute; left: 50%; bottom: 0; z-index: 1;
  height: 97%; width: auto; max-width: none;
  transform: translateX(-50%);
  object-fit: contain; object-position: bottom;
}
.about__media .frame-offset {
  position: absolute; inset: 1.1rem -1.1rem 0.9rem 1.1rem; z-index: 0;
  border: 1px solid var(--gold); border-radius: var(--radius-s);
  pointer-events: none; opacity: 0.8;
}
.about__badge {
  position: absolute; left: 1.5rem; bottom: 0; z-index: 2;
  display: flex; flex-direction: column; gap: 0.15rem;
  padding: 0.9rem 1.25rem;
  background: var(--paper);
  border: 1px solid var(--line-light);
  border-left: 3px solid var(--gold);
  box-shadow: 0 20px 40px -24px rgba(8, 17, 30, 0.5);
}
.about__badge strong { font-family: var(--font-display); font-size: var(--fs-h3-sm); font-weight: 600; color: var(--ink); line-height: 1.1; }
.about__badge span { font-size: var(--fs-label); letter-spacing: 0.24em; text-transform: uppercase; color: var(--gold-dark); }

.about__text { margin-top: var(--space-m); color: var(--ink-2); font-size: var(--fs-body); line-height: 1.75; }
.about__text p + p { margin-top: 1rem; }
.about__text strong { color: var(--ink); font-weight: 500; }

.pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-m) var(--space-l);
  margin-top: var(--space-l);
  padding-top: var(--space-l);
  border-top: 1px solid var(--line-light);
}
.pillar { display: flex; gap: 1rem; align-items: flex-start; }
.pillar__icon {
  display: grid; place-items: center; flex: none;
  width: 2.9rem; height: 2.9rem;
  border: 1px solid rgba(169, 138, 72, 0.45);
  border-radius: var(--radius-s);
  color: var(--gold-dark);
  transition: background 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease);
}
.pillar__icon .icon { width: 1.35rem; height: 1.35rem; }
.pillar:hover .pillar__icon { background: var(--gold); color: var(--navy-950); border-color: var(--gold); }
.pillar h3 { font-size: var(--fs-h3-sm); font-weight: 600; color: var(--ink); }
.pillar p { margin-top: 0.2rem; font-size: var(--fs-small); color: var(--ink-2); line-height: 1.55; }
.about__body .btn { margin-top: var(--space-l); }

/* ---------- 10. Áreas de atuação ---------- */
.areas { overflow: hidden; }
.areas::before {
  content: ""; position: absolute; inset: -20% -10% auto auto;
  width: 60vw; height: 60vw; max-width: 900px; max-height: 900px;
  background: radial-gradient(circle at center, rgba(24, 51, 88, 0.55) 0%, rgba(11, 23, 41, 0) 60%);
  pointer-events: none;
}
.areas__grid { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--gap); }
.area-card {
  position: relative;
  padding: clamp(1.5rem, 1.2rem + 0.9vw, 2.1rem) clamp(1.25rem, 1rem + 0.8vw, 1.75rem);
  background: var(--navy-850);
  border: 1px solid var(--line-dark-soft);
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.45s var(--ease-out), border-color 0.45s var(--ease), background 0.45s var(--ease);
}
.area-card::before {
  content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.5s var(--ease-out);
}
.area-card:hover { transform: translateY(-5px); border-color: rgba(201, 169, 97, 0.55); background: var(--navy-800); }
.area-card:hover::before { transform: scaleX(1); }
.area-card__icon { color: var(--gold); margin-bottom: var(--space-s); }
.area-card__icon .icon { width: 2rem; height: 2rem; }
.area-card h3 { font-size: var(--fs-h3); font-weight: 600; color: var(--cream); }
.area-card p { margin-top: 0.6rem; font-size: var(--fs-small); line-height: 1.6; color: var(--muted); }

/* ---------- 11. Serviços ---------- */
.services__grid {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: var(--space-xl);
  align-items: start;
}
.services__intro { position: sticky; top: 7rem; }
.services__intro .btn { margin-top: var(--space-m); }
.services__note {
  margin-top: var(--space-m);
  padding: 1.1rem 1.4rem;
  border-left: 3px solid var(--gold);
  background: var(--paper-2);
  font-size: var(--fs-small);
  color: var(--ink-2);
  line-height: 1.6;
}
.services__list { border-top: 1px solid var(--line-light); }
.service {
  display: grid;
  grid-template-columns: 3.25rem 1fr;
  gap: 1rem;
  padding: var(--space-m) 0;
  border-bottom: 1px solid var(--line-light);
  transition: padding-left 0.35s var(--ease);
}
.service:hover { padding-left: 0.5rem; }
.service__num { font-family: var(--font-display); font-size: var(--fs-h3-sm); font-weight: 600; color: var(--gold-dark); line-height: 1.4; }
.service h3 { font-size: var(--fs-h3); font-weight: 600; color: var(--ink); }
.service p { margin-top: 0.4rem; font-size: var(--fs-small); line-height: 1.6; color: var(--ink-2); }

/* ---------- 12. Processo ---------- */
.process { background: linear-gradient(180deg, var(--navy-900) 0%, var(--navy-850) 100%); }
.process__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-l); border-top: 1px solid var(--line-dark); }
.step { position: relative; padding-top: var(--space-m); }
.step::before { content: ""; position: absolute; top: -1px; left: 0; width: 3rem; height: 2px; background: var(--gold); transform-origin: left; }
.step__num { display: block; font-family: var(--font-display); font-size: var(--fs-num); font-weight: 500; line-height: 1; color: var(--gold); opacity: 0.9; }
.step h3 { margin-top: var(--space-s); font-size: var(--fs-h3); font-weight: 600; }
.step p { margin-top: 0.6rem; font-size: var(--fs-body); line-height: 1.65; color: var(--muted); max-width: 34ch; }

/* ---------- 13. Conteúdo / Instagram ---------- */
.posts__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--gap); }
.post-card {
  position: relative;
  display: flex; flex-direction: column; justify-content: flex-end;
  aspect-ratio: 4 / 4.6;
  padding: clamp(1.25rem, 1rem + 0.8vw, 1.75rem);
  border-radius: 8px;
  overflow: hidden;
  color: var(--cream);
  background: radial-gradient(120% 80% at 20% 0%, #1b3558 0%, var(--navy-900) 60%);
  isolation: isolate;
}
.post-card::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: url("../img/skyline-blur.webp") center / cover no-repeat;
  opacity: 0.35; mix-blend-mode: screen;
  transition: transform 0.8s var(--ease-out), opacity 0.5s var(--ease);
}
.post-card:hover::before { transform: scale(1.06); opacity: 0.5; }
.post-card__mark { position: absolute; right: -1.2rem; top: -1.2rem; z-index: -1; width: 8.5rem; color: var(--gold); opacity: 0.12; }
.post-card__tag { display: inline-flex; align-items: center; gap: 0.5rem; margin-bottom: auto; font-size: var(--fs-label); letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); }
.post-card__tag .icon { width: 1rem; height: 1rem; }
.post-card h3 { font-size: var(--fs-h3); font-weight: 600; line-height: 1.15; }
.post-card__link { display: inline-flex; align-items: center; gap: 0.6rem; margin-top: 1rem; font-size: var(--fs-label); letter-spacing: 0.26em; text-transform: uppercase; color: var(--gold); }
.post-card__link .icon { width: 1rem; height: 1rem; transition: transform 0.35s var(--ease-out); }
.post-card:hover .post-card__link .icon { transform: translateX(4px); }
.posts__cta { text-align: center; margin-top: var(--space-l); }

/* ---------- 14. Faixa de urgência ---------- */
.cta-band { background: linear-gradient(100deg, var(--gold-dark) 0%, var(--gold) 45%, var(--gold-light) 100%); color: var(--navy-950); }
.cta-band__inner { display: flex; align-items: center; justify-content: space-between; gap: var(--space-l); padding-block: var(--space-l); }
.cta-band h2 { font-size: clamp(1.8rem, 1.4rem + 1.3vw, 2.6rem); font-weight: 600; }
.cta-band p { margin-top: 0.4rem; font-size: var(--fs-body); max-width: 52ch; color: rgba(8, 17, 30, 0.8); }

/* ---------- 15. Contato ---------- */
.contact__grid { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); gap: var(--space-xl); align-items: start; }
.contact__list { margin-top: var(--space-l); display: grid; gap: var(--space-m); }
.contact__item { display: flex; gap: 1rem; align-items: flex-start; }
.contact__icon { display: grid; place-items: center; flex: none; width: 2.9rem; height: 2.9rem; border: 1px solid var(--line-dark); border-radius: var(--radius-s); color: var(--gold); }
.contact__icon .icon { width: 1.3rem; height: 1.3rem; }
.contact__item span { display: block; font-size: var(--fs-label); letter-spacing: 0.28em; text-transform: uppercase; color: var(--muted); margin-bottom: 0.2rem; }
.contact__item a, .contact__item address { font-family: var(--font-display); font-size: var(--fs-h3-sm); font-weight: 500; line-height: 1.3; color: var(--cream); transition: color 0.3s var(--ease); }
.contact__item a:hover { color: var(--gold-light); }

.contact__form { padding: clamp(1.4rem, 1rem + 1.4vw, 2.5rem); background: var(--navy-850); border: 1px solid var(--line-dark-soft); border-radius: var(--radius); }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-m); }
.field { display: flex; flex-direction: column; gap: 0.35rem; margin-bottom: var(--space-m); }
.field label { font-size: var(--fs-label); letter-spacing: 0.26em; text-transform: uppercase; color: var(--muted); }
.field input, .field select, .field textarea {
  width: 100%; padding: 0.8rem 0;
  font: inherit; font-size: 1rem; color: var(--cream);
  background: transparent; border: 0; border-bottom: 1px solid rgba(243, 239, 230, 0.2); border-radius: 0;
  outline: none; transition: border-color 0.3s var(--ease);
}
.field input::placeholder, .field textarea::placeholder { color: rgba(154, 167, 185, 0.6); }
.field input:focus, .field select:focus, .field textarea:focus { border-bottom-color: var(--gold); }
.field textarea { min-height: 7.5rem; resize: vertical; }
.field select {
  appearance: none; -webkit-appearance: none; padding-right: 2rem; cursor: pointer;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23c9a961' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E") right center / 1.1rem no-repeat;
}
.field select option { color: var(--ink); background: #fff; }
.form__actions { display: flex; flex-wrap: wrap; align-items: center; gap: var(--space-s) var(--space-m); margin-top: 0.5rem; }
.form__actions .btn { flex: 1 1 14rem; }
.form__note { flex: 1 1 14rem; font-size: 0.8rem; color: var(--muted); line-height: 1.5; }
.form__feedback { margin-top: 1rem; font-size: 0.85rem; color: var(--gold-light); min-height: 1.2em; }

.contact__map { margin-top: var(--space-xl); height: clamp(16rem, 12rem + 12vw, 22rem); border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line-dark-soft); background: var(--navy-850); }
.contact__map iframe { display: block; width: 100%; height: 100%; border: 0; filter: grayscale(1) invert(0.92) contrast(0.85) brightness(0.95); }

/* ---------- 16. Footer ---------- */
.site-footer { background: var(--navy-950); color: var(--muted); border-top: 1px solid var(--line-dark-soft); }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1.2fr 1.3fr; gap: var(--space-l); padding-block: var(--space-xl) var(--space-l); }
.footer__brand p { margin-top: var(--space-m); max-width: 34ch; font-size: var(--fs-small); line-height: 1.65; }
.footer__social { display: flex; gap: 0.75rem; margin-top: var(--space-m); }
.footer__social a { display: grid; place-items: center; width: 2.6rem; height: 2.6rem; border: 1px solid var(--line-dark); border-radius: var(--radius-s); color: var(--gold); transition: background 0.3s var(--ease), color 0.3s var(--ease); }
.footer__social a:hover { background: var(--gold); color: var(--navy-950); }
.footer__social .icon { width: 1.15rem; height: 1.15rem; }
.footer__col h4 { font-family: var(--font-sans); font-size: var(--fs-label); font-weight: 500; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); margin-bottom: var(--space-s); }
.footer__col li + li { margin-top: 0.55rem; }
.footer__col a { font-size: var(--fs-small); color: var(--cream); opacity: 0.8; transition: opacity 0.3s, color 0.3s; }
.footer__col a:hover { opacity: 1; color: var(--gold-light); }
.footer__col address { font-size: var(--fs-small); line-height: 1.7; color: var(--cream); opacity: 0.8; }
.footer__bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 0.75rem 2rem; padding-block: var(--space-m) var(--space-l); border-top: 1px solid var(--line-dark-soft); font-size: 0.78rem; }
.footer__bottom .footer__oab { color: var(--gold); letter-spacing: 0.1em; }

/* ---------- 17. Botão flutuante WhatsApp ---------- */
.whatsapp-float {
  position: fixed; right: 1.5rem; bottom: 1.5rem; z-index: 90;
  display: flex; align-items: center; gap: 0.6rem;
  height: 3.5rem; padding: 0 1.1rem 0 0.9rem;
  border-radius: 999px;
  background: var(--whatsapp); color: #fff;
  font-size: 0.78rem; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase;
  box-shadow: 0 16px 36px -14px rgba(37, 211, 102, 0.75);
  transform-origin: bottom right;
  animation: pop-in 0.7s var(--ease-pop) 1.9s both;
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease);
}
.whatsapp-float .icon { width: 1.6rem; height: 1.6rem; }
.whatsapp-float:hover { transform: translateY(-3px); box-shadow: 0 20px 40px -14px rgba(37, 211, 102, 0.85); }

/* ==========================================================================
   18. Responsivo
   ========================================================================== */

/* ----- Desktop baixo (altura ≤ 720): hero mais compacta ----- */
@media (min-width: 1025px) and (max-height: 720px) {
  .hero__title { font-size: min(var(--fs-hero), 4.4rem); }
  .hero__content { padding-block: 2rem 6rem; }
  .hero__card { bottom: 5.5rem; width: min(22rem, 30vw); padding-block: 1.2rem; }
  .hero__strip { bottom: 1.5rem; }
}

/* ----- Laptop (1025–1199): header compacto, grids de 4 viram 2 com card horizontal ----- */
@media (max-width: 1199px) {
  .header__inner { gap: var(--space-s); }
  .brand__name { font-size: 1.15rem; letter-spacing: 0.2em; }
  .brand__sub { font-size: 0.56rem; letter-spacing: 0.36em; }
  .brand__mark { width: 2.1rem; }
  .brand__divider { height: 2.5rem; }
  .nav__list { gap: 1.25rem; }
  .nav__link { letter-spacing: 0.22em; }
  .header__cta { padding-inline: 1.25rem; letter-spacing: 0.2em; }
  .hero__card { width: min(25rem, 35vw); }
  .hero__strip { padding-right: 8rem; }
  .areas__grid { grid-template-columns: repeat(2, 1fr); }
  .area-card { display: grid; grid-template-columns: auto 1fr; column-gap: var(--space-m); align-items: start; }
  .area-card__icon { margin-bottom: 0; padding-top: 0.15rem; }
  .area-card__body { grid-column: 2; }
  .footer__grid { grid-template-columns: 1.4fr 1fr 1fr; }
  .footer__col--contact { grid-column: span 3; }
}

/* ----- Tablet (≤1024): hero em camadas, colunas simples, menu mobile ----- */
@media (max-width: 1024px) {
  html { scroll-padding-top: 4.5rem; }

  /* menu */
  .nav {
    position: fixed; inset: 0; z-index: 95;
    display: grid; place-items: center;
    background: rgba(11, 23, 41, 0.97);
    opacity: 0; visibility: hidden; pointer-events: none;
    transform: translateY(-1rem);
    transition: opacity 0.4s var(--ease), transform 0.4s var(--ease), visibility 0.4s;
  }
  .nav-open .nav { opacity: 1; visibility: visible; pointer-events: auto; transform: none; backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); }
  .nav__list { flex-direction: column; align-items: center; gap: clamp(1.25rem, 3vh, 2rem); text-align: center; }
  .nav__link { font-family: var(--font-display); font-size: clamp(1.7rem, 1.2rem + 2vw, 2.2rem); font-weight: 500; letter-spacing: 0.06em; text-transform: none; }
  .nav__link::after { bottom: -0.2rem; }
  .nav__cta { display: block; margin-top: 0.75rem; }
  .header__cta { display: none; }
  .nav-toggle { display: grid; position: relative; z-index: 96; }
  .brand { position: relative; z-index: 96; }

  /* hero: retrato em camada + texto embaixo */
  .hero { justify-content: flex-end; padding-bottom: var(--space-xl); }
  .hero__bg { object-position: 50% 50%; }
  .hero__portrait {
    display: block; position: absolute; z-index: 0;
    right: 0; top: 4%;
    height: 66%; width: auto; max-width: 92%;
    object-fit: contain; object-position: bottom right;
    -webkit-mask-image: linear-gradient(180deg, #000 60%, transparent 100%);
    mask-image: linear-gradient(180deg, #000 60%, transparent 100%);
    animation: fade-in 1.4s var(--ease-out) 0.2s both;
  }
  .hero__overlay { background: linear-gradient(180deg, rgba(8, 17, 30, 0.5) 0%, rgba(8, 17, 30, 0.1) 30%, rgba(11, 23, 41, 0.75) 62%, var(--navy-900) 100%); }
  .hero__content { padding-block: 0; margin-top: 44vh; margin-top: max(42svh, 20rem); }
  .hero__text { max-width: 36rem; }
  .hero__card { position: static; width: min(100% - 2 * var(--gutter), 24rem); margin: var(--space-m) auto 0 var(--gutter); animation-delay: 0.9s; }
  .hero__strip { position: static; margin-top: var(--space-l); flex-wrap: wrap; row-gap: 0.75rem; }
  .hero__strip-line { flex: 1 1 4rem; }

  /* grids */
  .credentials__grid { grid-template-columns: 1fr 1fr; }
  .credential { padding: var(--space-m) var(--space-m) var(--space-m) 0; }
  .credential:not(:first-child) { padding-left: 0; }
  .credential:nth-child(odd) { border-right: 1px solid var(--line-dark-soft); }
  .credential:nth-child(even) { border-right: 0; padding-left: var(--space-m); padding-right: 0; }
  .credential:nth-child(-n + 2) { border-bottom: 1px solid var(--line-dark-soft); }

  .about__grid { grid-template-columns: 1fr; gap: var(--space-xl); }
  .about__media { width: min(100%, 26rem); margin-inline: auto; }

  .services__grid { grid-template-columns: 1fr; gap: var(--space-l); }
  .services__intro { position: static; }

  .process__grid { grid-template-columns: 1fr; gap: 0; border-top: 0; }
  .step { display: grid; grid-template-columns: 4.5rem 1fr; column-gap: var(--space-m); padding: var(--space-m) 0; border-top: 1px solid var(--line-dark); }
  .step::before { display: none; }
  .step__num { grid-row: 1 / span 2; font-size: var(--fs-num); }
  .step h3 { margin-top: 0.15rem; }
  .step p { max-width: 60ch; }

  .contact__grid { grid-template-columns: 1fr; gap: var(--space-l); }
  .contact__list { grid-template-columns: 1fr 1fr; }
  .contact__item--full { grid-column: span 2; }

  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__col--contact { grid-column: auto; }
}

/* ----- Tablet em paisagem (768–1024): retrato ao lado do texto ----- */
@media (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {
  .hero { justify-content: center; padding-bottom: var(--space-l); }
  .hero__portrait { top: auto; bottom: 0; right: 1%; height: 86%; max-width: 48%; -webkit-mask-image: none; mask-image: none; }
  .hero__overlay { background: linear-gradient(90deg, rgba(8, 17, 30, 0.6) 0%, rgba(8, 17, 30, 0.25) 45%, rgba(8, 17, 30, 0) 70%), linear-gradient(180deg, rgba(8, 17, 30, 0.45) 0%, rgba(8, 17, 30, 0) 25%, rgba(8, 17, 30, 0) 75%, var(--navy-900) 100%); }
  .hero__content { margin-top: 0; padding-block: var(--space-l) var(--space-m); }
  .hero__text { max-width: 52%; }
  .hero__title { font-size: min(var(--fs-hero), 4.3vw); }
  .hero__card { width: min(50%, 22rem); margin-top: var(--space-m); }
  .hero__strip { margin-top: var(--space-m); }
}

/* ----- Posts: 2 colunas com o terceiro card em destaque ----- */
@media (min-width: 600px) and (max-width: 899px) {
  .posts__grid { grid-template-columns: 1fr 1fr; }
  .post-card:last-child { grid-column: span 2; aspect-ratio: 16 / 7; }
  .post-card:last-child h3 { max-width: 28ch; }
}

/* ----- Mobile (≤767) ----- */
@media (max-width: 767px) {
  .hero__portrait { top: 5%; height: 64%; right: -4%; }
  .cta-band__inner { flex-direction: column; align-items: flex-start; }
  .cta-band .btn { align-self: stretch; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__brand, .footer__col--contact { grid-column: span 2; }
}

/* ----- Compacto (≤599 / ≤480) ----- */
@media (max-width: 599px) {
  .hero__strip { display: none; }
  .credentials__grid { grid-template-columns: 1fr; }
  .credential, .credential:nth-child(odd), .credential:nth-child(even) { border-right: 0; padding: 1.1rem 0; border-bottom: 1px solid var(--line-dark-soft); }
  .credential:last-child { border-bottom: 0; }
  .pillars { grid-template-columns: 1fr; }
  .areas__grid { grid-template-columns: 1fr; }
  .posts__grid { grid-template-columns: 1fr; }
  .post-card { aspect-ratio: 4 / 3.4; }
  .service { grid-template-columns: 2.5rem 1fr; }
  .form__row { grid-template-columns: 1fr; gap: 0; }
  .contact__list { grid-template-columns: 1fr; }
  .contact__item--full { grid-column: auto; }
  .btn { white-space: normal; text-align: center; line-height: 1.4; }
  .hero__card { width: calc(100% - 2 * var(--gutter) - 3.75rem); }
  .whatsapp-float { width: 3.5rem; padding: 0; justify-content: center; }
  .whatsapp-float span { display: none; }
}
@media (max-width: 480px) {
  .brand__text { gap: 0.25rem; }
  .step { grid-template-columns: 3.5rem 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__brand, .footer__col--contact { grid-column: auto; }
  .about__badge { left: 1rem; padding: 0.75rem 1rem; }
}

/* ==========================================================================
   19. Motion — entradas de SVG, reveal ao rolar, keyframes
   ========================================================================== */

/* Reveal genérico (blocos) */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
  transition-delay: calc(var(--i, 0) * var(--stagger));
}
.reveal.is-visible { opacity: 1; transform: none; }

/* Ícones de traço (.d = shape com pathLength=100): desenham-se ao entrar */
.reveal .d {
  stroke-dasharray: 100;
  stroke-dashoffset: 100;
  transition: stroke-dashoffset 1.1s var(--ease-out);
  transition-delay: calc(var(--i, 0) * var(--stagger) + 200ms);
}
.reveal.is-visible .d { stroke-dashoffset: 0; }

/* Partes preenchidas dos ícones (.f): surgem após o traço */
.reveal .f { opacity: 0; transition: opacity 0.5s var(--ease); transition-delay: calc(var(--i, 0) * var(--stagger) + 850ms); }
.reveal.is-visible .f { opacity: 1; }

/* Caixas de ícone: leve “pop” junto com o traço */
.reveal .pillar__icon, .reveal .contact__icon, .reveal .area-card__icon, .reveal .credential .icon, .reveal .footer__social a {
  transform: scale(0.85);
  transition: transform 0.8s var(--ease-pop), background 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease);
  transition-delay: calc(var(--i, 0) * var(--stagger) + 150ms), 0s, 0s, 0s;
}
.reveal.is-visible .pillar__icon, .reveal.is-visible .contact__icon, .reveal.is-visible .area-card__icon, .reveal.is-visible .credential .icon, .reveal.is-visible .footer__social a { transform: none; }

/* Linhas ornamentais: crescem da esquerda */
.eyebrow.reveal::before, .reveal .eyebrow::before { transform: scaleX(0); transition: transform 0.9s var(--ease-out) calc(var(--i, 0) * var(--stagger) + 250ms); }
.eyebrow.reveal.is-visible::before, .reveal.is-visible .eyebrow::before { transform: scaleX(1); }
.step.reveal::before { transform: scaleX(0); transition: transform 0.9s var(--ease-out) calc(var(--i, 0) * var(--stagger) + 250ms); }
.step.reveal.is-visible::before { transform: scaleX(1); }

/* Moldura do retrato: “desenha-se” do canto superior esquerdo */
.about__media.reveal .frame-offset { clip-path: inset(0 100% 100% 0); transition: clip-path 1.4s var(--ease-out) 0.35s; }
.about__media.reveal.is-visible .frame-offset { clip-path: inset(0 0 0 0); }

/* Marca d’água do monograma nos cards de conteúdo */
.post-card.reveal .post-card__mark { opacity: 0; transform: translate(1.25rem, -0.75rem) rotate(-8deg) scale(0.92); transition: opacity 1.1s var(--ease-out), transform 1.1s var(--ease-out); transition-delay: calc(var(--i, 0) * var(--stagger) + 300ms); }
.post-card.reveal.is-visible .post-card__mark { opacity: 0.12; transform: none; }

/* Monograma: traço desenhado → preenchimento (header no load, footer no reveal) */
.brand__mark path { stroke: currentColor; stroke-width: 1.2; stroke-linejoin: round; stroke-dasharray: 100; stroke-opacity: 0; }
.site-header .brand__mark path { animation: mono-draw 2.4s var(--ease-out) 0.1s both; }
.footer__brand.reveal.is-visible .brand__mark path { animation: mono-draw 2.4s var(--ease-out) 0.1s both; }

/* Header e hero: entradas no carregamento */
.site-header .brand__divider { animation: grow-y 0.9s var(--ease-out) 0.5s both; }
.site-header .brand__text > * { animation: fade-up 0.9s var(--ease-out) both; }
.site-header .brand__name { animation-delay: 0.65s; }
.site-header .brand__sub { animation-delay: 0.8s; }
.site-header .nav__list > li { animation: fade-in 0.8s var(--ease-out) both; }
.site-header .nav__list > li:nth-child(1) { animation-delay: 0.7s; }
.site-header .nav__list > li:nth-child(2) { animation-delay: 0.78s; }
.site-header .nav__list > li:nth-child(3) { animation-delay: 0.86s; }
.site-header .nav__list > li:nth-child(4) { animation-delay: 0.94s; }
.site-header .nav__list > li:nth-child(5) { animation-delay: 1.02s; }
.site-header .header__cta, .site-header .nav-toggle { animation: fade-in 0.8s var(--ease-out) 1.05s both; }
.hero__text .eyebrow::before { animation: grow-x 0.9s var(--ease-out) 0.45s both; }
.hero__rule { animation: grow-x 1s var(--ease-out) 0.85s both; }
.hero .link-arrow .d { stroke-dasharray: 100; animation: draw 1s var(--ease-out) 1.35s both; }
.whatsapp-float .d { stroke-dasharray: 100; animation: draw 1s var(--ease-out) 2.3s both; }
.whatsapp-float .f { animation: fade-in 0.5s var(--ease) 2.9s both; }

/* Keyframes */
@keyframes hero-zoom { from { transform: scale(1.06); } to { transform: scale(1); } }
@keyframes fade-up { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: none; } }
@keyframes fade-in { from { opacity: 0; } to { opacity: 1; } }
@keyframes grow-x { from { transform: scaleX(0); } to { transform: scaleX(1); } }
@keyframes grow-y { from { transform: scaleY(0); } to { transform: scaleY(1); } }
@keyframes draw { from { stroke-dashoffset: 100; } to { stroke-dashoffset: 0; } }
@keyframes pop-in { from { opacity: 0; transform: scale(0.4); } to { opacity: 1; transform: scale(1); } }
@keyframes mono-draw {
  0%   { stroke-dashoffset: 100; stroke-opacity: 1; fill-opacity: 0; }
  55%  { stroke-dashoffset: 0;   stroke-opacity: 1; fill-opacity: 0; }
  80%  { stroke-dashoffset: 0;   stroke-opacity: 1; fill-opacity: 1; }
  100% { stroke-dashoffset: 0;   stroke-opacity: 0; fill-opacity: 1; }
}

/* Acessibilidade: sem movimento */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition-duration: 0.01ms !important; transition-delay: 0s !important; }
  .reveal { opacity: 1; transform: none; }
  .reveal .d, .hero .link-arrow .d, .whatsapp-float .d { stroke-dashoffset: 0; }
  .reveal .f { opacity: 1; }
  .reveal .pillar__icon, .reveal .contact__icon, .reveal .area-card__icon, .reveal .credential .icon, .reveal .footer__social a { transform: none; }
  .eyebrow.reveal::before, .reveal .eyebrow::before, .step.reveal::before { transform: scaleX(1); }
  .about__media.reveal .frame-offset { clip-path: none; }
  .post-card.reveal .post-card__mark { opacity: 0.12; transform: none; }
  .brand__mark path { stroke-opacity: 0; fill-opacity: 1; }
}
