:root {
  --navy: #14263b;
  --blue: #13385e;
  --gold: #d6992e;
  --gold-text: #875a0c;
  --gold-soft: #edbd61;
  --ink: #302d28;
  --paper: #f0f0f0;
  --mist: #d3d8dd;
  --white: #ffffff;
  --muted: #59636f;
  --success: #197148;
  --danger: #b2433e;
  --container: min(1180px, calc(100vw - 40px));
  --header-height: 92px;
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 32px;
  --shadow-sm: 0 12px 34px rgb(20 38 59 / 8%);
  --shadow-lg: 0 26px 80px rgb(20 38 59 / 16%);
  --ease: cubic-bezier(.22, 1, .36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
}

body {
  margin: 0;
  color: var(--ink);
  background: #f7f7f4;
  font-family: "Astoria Sans", "Avenir Next", Avenir, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

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

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

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

h1,
h2,
h3,
h4 {
  color: var(--navy);
  font-family: "Proxima Nova", "Avenir Next", Avenir, "Segoe UI", sans-serif;
  font-weight: 650;
  line-height: 1.05;
  letter-spacing: -.035em;
}

h1 {
  font-size: clamp(3rem, 7vw, 6.6rem);
}

h2 {
  font-size: clamp(2.25rem, 4.8vw, 4.5rem);
}

h3 {
  font-size: clamp(1.35rem, 2vw, 1.75rem);
}

::selection {
  color: var(--white);
  background: var(--gold);
}

:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--gold) 78%, white);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: var(--navy);
  background: var(--white);
  border-radius: 8px;
  transform: translateY(-150%);
  transition: transform .2s ease;
}

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

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

.section {
  position: relative;
  padding: clamp(88px, 11vw, 152px) 0;
}

.section-sm {
  padding: clamp(64px, 8vw, 104px) 0;
}

.section--white {
  background: var(--white);
}

.section--paper {
  background: var(--paper);
}

.section--navy {
  color: rgb(255 255 255 / 78%);
  background: var(--navy);
  overflow: hidden;
}

.section--navy h2,
.section--navy h3 {
  color: var(--white);
}

.section--blue {
  color: rgb(255 255 255 / 82%);
  background: var(--blue);
}

.section--blue h2,
.section--blue h3 {
  color: var(--white);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  color: var(--gold-text);
  font-size: .73rem;
  font-weight: 700;
  letter-spacing: .19em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 34px;
  height: 1px;
  background: currentColor;
  content: "";
}

.eyebrow--no-line::before {
  display: none;
}

.eyebrow--light {
  color: var(--gold-soft);
}

.section-heading {
  max-width: 840px;
  margin-bottom: clamp(44px, 6vw, 76px);
}

.section-heading h2 {
  margin-bottom: 24px;
}

.section-heading p {
  max-width: 650px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.18rem);
}

.section--navy .section-heading p,
.section--blue .section-heading p {
  color: rgb(255 255 255 / 68%);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--navy);
  font-size: .86rem;
  font-weight: 700;
  letter-spacing: .04em;
}

.text-link::after {
  width: 28px;
  height: 1px;
  background: var(--gold);
  content: "";
  transform-origin: left;
  transition: width .3s var(--ease);
}

.text-link:hover::after {
  width: 42px;
}

.btn {
  position: relative;
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 11px;
  padding: 0 24px;
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-size: .83rem;
  font-weight: 750;
  letter-spacing: .045em;
  line-height: 1;
  text-align: center;
  transition: color .3s ease, background .3s ease, border-color .3s ease, transform .3s var(--ease), box-shadow .3s ease;
}

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

.btn svg {
  width: 18px;
  height: 18px;
  transition: transform .3s var(--ease);
}

.btn:hover svg {
  transform: translateX(3px);
}

.btn--gold {
  color: var(--navy);
  background: var(--gold);
  box-shadow: 0 12px 28px rgb(214 153 46 / 21%);
}

.btn--gold:hover {
  background: #e1a73f;
  box-shadow: 0 16px 34px rgb(214 153 46 / 29%);
}

.btn--navy {
  color: var(--white);
  background: var(--navy);
}

.btn--navy:hover {
  background: var(--blue);
}

.btn--outline {
  color: var(--navy);
  background: transparent;
  border-color: rgb(20 38 59 / 22%);
}

.btn--outline:hover {
  border-color: var(--gold);
}

.btn--outline-light {
  color: var(--white);
  background: transparent;
  border-color: rgb(255 255 255 / 28%);
}

.btn--outline-light:hover {
  border-color: var(--gold);
  background: rgb(255 255 255 / 5%);
}

.btn--full {
  width: 100%;
}

.site-header {
  position: fixed;
  z-index: 1000;
  top: 0;
  right: 0;
  left: 0;
  height: var(--header-height);
  color: var(--white);
  border-bottom: 1px solid rgb(255 255 255 / 10%);
  background: rgb(20 38 59 / 88%);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition: height .35s var(--ease), box-shadow .35s ease, background .35s ease;
}

.site-header.scrolled {
  height: 72px;
  background: rgb(20 38 59 / 96%);
  box-shadow: 0 12px 38px rgb(7 21 37 / 18%);
}

.header-inner {
  display: flex;
  width: var(--container);
  height: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-inline: auto;
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
}

.brand-logo {
  width: 166px;
  height: auto;
  transition: width .35s var(--ease);
}

.site-header.scrolled .brand-logo {
  width: 143px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.2vw, 32px);
}

.site-nav > a:not(.btn),
.nav-dropdown > button {
  position: relative;
  padding: 12px 0;
  color: rgb(255 255 255 / 72%);
  border: 0;
  background: transparent;
  cursor: pointer;
  font-size: .73rem;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
  transition: color .25s ease;
}

.site-nav > a:not(.btn)::after,
.nav-dropdown > button::after {
  position: absolute;
  right: 0;
  bottom: 5px;
  left: 0;
  height: 1px;
  background: var(--gold);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .3s var(--ease);
}

.site-nav > a:not(.btn):hover,
.site-nav > a[aria-current="page"],
.nav-dropdown > button:hover {
  color: var(--white);
}

.site-nav > a:not(.btn):hover::after,
.site-nav > a[aria-current="page"]::after,
.nav-dropdown > button:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown > button {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-dropdown > button svg {
  width: 13px;
  transition: transform .25s ease;
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  display: grid;
  width: 300px;
  padding: 10px;
  visibility: hidden;
  background: var(--white);
  border: 1px solid rgb(20 38 59 / 8%);
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  transform: translate(-50%, 10px);
  transition: opacity .25s ease, transform .25s var(--ease), visibility .25s;
}

.dropdown-menu a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 13px;
  color: var(--navy);
  border-radius: 9px;
  font-size: .87rem;
  transition: color .2s ease, background .2s ease;
}

.dropdown-menu a:hover {
  color: var(--blue);
  background: var(--paper);
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu {
  visibility: visible;
  opacity: 1;
  transform: translate(-50%, 0);
}

.nav-dropdown:hover > button svg,
.nav-dropdown:focus-within > button svg {
  transform: rotate(180deg);
}

.header-cta {
  min-height: 44px;
  padding-inline: 20px;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid rgb(255 255 255 / 22%);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 1px;
  margin: 5px auto;
  background: var(--white);
  transition: transform .25s ease, opacity .25s ease;
}

.menu-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(3px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-3px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  z-index: 990;
  inset: var(--header-height) 0 0;
  display: none;
  overflow-y: auto;
  color: var(--white);
  background: var(--navy);
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity .28s ease, transform .28s var(--ease);
}

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

.mobile-menu-inner {
  display: grid;
  width: var(--container);
  padding: 32px 0 56px;
  gap: 4px;
}

.mobile-menu a,
.mobile-menu summary {
  padding: 15px 0;
  color: rgb(255 255 255 / 84%);
  border-bottom: 1px solid rgb(255 255 255 / 10%);
  cursor: pointer;
  font-size: 1.12rem;
  list-style: none;
}

.mobile-menu summary::-webkit-details-marker {
  display: none;
}

.mobile-menu details a {
  padding-left: 18px;
  color: rgb(255 255 255 / 62%);
  font-size: .94rem;
}

.hero {
  position: relative;
  display: grid;
  min-height: min(940px, 100svh);
  align-items: center;
  padding: calc(var(--header-height) + 72px) 0 84px;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 74% 30%, rgb(19 56 94 / 78%), transparent 37%),
    linear-gradient(118deg, #102136 0%, var(--navy) 52%, #102943 100%);
}

.hero::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgb(255 255 255 / 3%) 1px, transparent 1px),
    linear-gradient(90deg, rgb(255 255 255 / 3%) 1px, transparent 1px);
  background-size: 88px 88px;
  content: "";
  mask-image: linear-gradient(to right, transparent, black 30%, black 80%, transparent);
}

.hero::after {
  position: absolute;
  top: 14%;
  right: -9vw;
  width: min(46vw, 680px);
  aspect-ratio: 1;
  border: 1px solid rgb(214 153 46 / 31%);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgb(214 153 46 / 4%), 0 0 0 140px rgb(214 153 46 / 2%);
  content: "";
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(350px, .64fr);
  align-items: end;
  gap: clamp(48px, 8vw, 116px);
}

.hero-copy {
  max-width: 780px;
}

.hero h1 {
  max-width: 860px;
  margin-bottom: 30px;
  color: var(--white);
}

.hero h1 em {
  color: var(--gold-soft);
  font-style: normal;
}

.hero-lead {
  max-width: 640px;
  margin-bottom: 36px;
  color: rgb(255 255 255 / 72%);
  font-size: clamp(1.05rem, 1.5vw, 1.23rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 24px 32px;
  margin-top: 48px;
  padding-top: 28px;
  border-top: 1px solid rgb(255 255 255 / 12%);
}

.hero-proof span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: rgb(255 255 255 / 68%);
  font-size: .82rem;
}

.hero-proof svg {
  width: 17px;
  color: var(--gold);
}

.hero-card {
  position: relative;
  padding: 30px;
  color: var(--ink);
  background: rgb(255 255 255 / 96%);
  border: 1px solid rgb(255 255 255 / 40%);
  border-radius: var(--radius-md);
  box-shadow: 0 34px 90px rgb(4 17 32 / 34%);
  backdrop-filter: blur(12px);
}

.hero-card::before {
  position: absolute;
  top: 0;
  left: 30px;
  width: 72px;
  height: 3px;
  background: var(--gold);
  content: "";
}

.hero-card-kicker {
  margin-bottom: 10px;
  color: var(--gold-text);
  font-size: .69rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.hero-card h2 {
  margin-bottom: 10px;
  font-size: 1.65rem;
  letter-spacing: -.025em;
}

.hero-card > p {
  margin-bottom: 22px;
  color: var(--muted);
  font-size: .91rem;
  line-height: 1.55;
}

.quick-options {
  display: grid;
  margin-bottom: 20px;
  gap: 8px;
}

.quick-option {
  position: relative;
}

.quick-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.quick-option label {
  display: flex;
  min-height: 46px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 14px;
  color: var(--navy);
  border: 1px solid rgb(20 38 59 / 12%);
  border-radius: 10px;
  cursor: pointer;
  font-size: .85rem;
  font-weight: 650;
  transition: border-color .2s ease, background .2s ease, transform .2s ease;
}

.quick-option label::after {
  width: 16px;
  height: 16px;
  border: 1px solid rgb(20 38 59 / 25%);
  border-radius: 50%;
  content: "";
}

.quick-option label:hover {
  border-color: var(--gold);
  transform: translateX(2px);
}

.quick-option input:checked + label {
  background: rgb(214 153 46 / 10%);
  border-color: var(--gold);
}

.quick-option input:checked + label::after {
  border: 4px solid var(--gold);
}

.quick-option input:focus-visible + label,
.problem-option input:focus-visible + label {
  outline: 3px solid color-mix(in srgb, var(--gold) 78%, white);
  outline-offset: 3px;
}

.hero-card-note {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: .72rem;
  line-height: 1.45;
}

.hero-card-note svg {
  flex: 0 0 auto;
  width: 14px;
  margin-top: 2px;
}

.page-hero {
  position: relative;
  padding: calc(var(--header-height) + clamp(76px, 10vw, 130px)) 0 clamp(78px, 10vw, 130px);
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 83% 24%, rgb(19 56 94 / 88%), transparent 33%),
    var(--navy);
}

.page-hero::before {
  position: absolute;
  right: -140px;
  bottom: -300px;
  width: 620px;
  height: 620px;
  border: 1px solid rgb(214 153 46 / 25%);
  border-radius: 50%;
  content: "";
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-bottom: 32px;
  color: rgb(255 255 255 / 55%);
  font-size: .76rem;
}

.breadcrumbs a:hover {
  color: var(--gold-soft);
}

.page-hero h1 {
  max-width: 960px;
  margin-bottom: 28px;
  color: var(--white);
  font-size: clamp(3rem, 7vw, 6rem);
}

.page-hero p {
  max-width: 720px;
  margin-bottom: 0;
  color: rgb(255 255 255 / 70%);
  font-size: clamp(1.05rem, 1.8vw, 1.3rem);
}

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

.intro-grid {
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  align-items: start;
  gap: clamp(50px, 9vw, 140px);
}

.intro-grid h2 {
  margin-bottom: 0;
}

.intro-copy > p:first-child {
  color: var(--navy);
  font-size: clamp(1.25rem, 2vw, 1.6rem);
  line-height: 1.45;
}

.intro-copy p:last-child {
  margin-bottom: 0;
}

.signature-line {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  margin-top: 24px;
  color: var(--navy);
  font-size: .78rem;
  font-weight: 750;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.signature-line::before {
  width: 42px;
  height: 1px;
  background: var(--gold);
  content: "";
}

.stats-strip {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: -1px;
  color: var(--white);
  background: var(--blue);
}

.stat-item {
  display: flex;
  min-height: 132px;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 28px;
  border-right: 1px solid rgb(255 255 255 / 12%);
  text-align: left;
}

.stat-item:last-child {
  border-right: 0;
}

.stat-icon {
  display: grid;
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  place-items: center;
  color: var(--gold-soft);
  border: 1px solid rgb(214 153 46 / 35%);
  border-radius: 50%;
}

.stat-icon svg {
  width: 19px;
}

.stat-item strong {
  display: block;
  margin-bottom: 2px;
  color: var(--white);
  font-size: .94rem;
}

.stat-item small {
  color: rgb(255 255 255 / 57%);
  font-size: .77rem;
}

.areas-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid rgb(20 38 59 / 14%);
}

.area-card {
  position: relative;
  display: grid;
  min-height: 246px;
  padding: 34px;
  overflow: hidden;
  border-right: 1px solid rgb(20 38 59 / 14%);
  border-bottom: 1px solid rgb(20 38 59 / 14%);
  transition: color .35s ease, background .35s ease;
}

.area-card:nth-child(even) {
  border-right: 0;
}

.area-card::before {
  position: absolute;
  inset: 0;
  background: var(--navy);
  content: "";
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform .45s var(--ease);
}

.area-card:hover::before {
  transform: scaleY(1);
}

.area-card > * {
  position: relative;
  z-index: 1;
}

.area-card-number {
  color: var(--gold-text);
  font-size: .7rem;
  font-weight: 750;
  letter-spacing: .15em;
}

.area-card h3 {
  align-self: end;
  max-width: 390px;
  margin: 46px 0 12px;
  transition: color .35s ease;
}

.area-card p {
  max-width: 470px;
  margin-bottom: 24px;
  color: var(--muted);
  font-size: .91rem;
  transition: color .35s ease;
}

.area-card-arrow {
  position: absolute;
  z-index: 1;
  top: 28px;
  right: 28px;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--navy);
  border: 1px solid rgb(20 38 59 / 18%);
  border-radius: 50%;
  transition: color .35s ease, border-color .35s ease, transform .35s var(--ease);
}

.area-card-arrow svg {
  width: 17px;
}

.area-card:hover h3,
.area-card:hover .area-card-arrow,
.area-card:hover .area-card-number {
  color: var(--white);
}

.area-card:hover p {
  color: rgb(255 255 255 / 63%);
}

.area-card:hover .area-card-arrow {
  border-color: rgb(255 255 255 / 25%);
  transform: rotate(45deg);
}

.areas-grid .area-card:last-child:nth-child(odd) {
  grid-column: 1 / -1;
  border-right: 0;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgb(255 255 255 / 13%);
}

.process-card {
  min-height: 300px;
  padding: 36px;
  background: var(--navy);
}

.process-number {
  display: grid;
  width: 46px;
  height: 46px;
  margin-bottom: 68px;
  place-items: center;
  color: var(--gold-soft);
  border: 1px solid rgb(214 153 46 / 35%);
  border-radius: 50%;
  font-size: .75rem;
}

.process-card h3 {
  margin-bottom: 14px;
}

.process-card p {
  margin-bottom: 0;
  color: rgb(255 255 255 / 59%);
  font-size: .92rem;
}

.team-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 560px;
  overflow: hidden;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.team-visual {
  position: relative;
  display: grid;
  min-height: 460px;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 25% 20%, rgb(214 153 46 / 23%), transparent 28%),
    linear-gradient(145deg, var(--blue), var(--navy));
}

.team-visual::before,
.team-visual::after {
  position: absolute;
  width: 330px;
  height: 330px;
  border: 1px solid rgb(255 255 255 / 12%);
  border-radius: 50%;
  content: "";
}

.team-visual::after {
  width: 230px;
  height: 230px;
  border-color: rgb(214 153 46 / 26%);
}

.team-monogram {
  position: relative;
  z-index: 1;
  color: var(--gold);
  font-size: clamp(7rem, 17vw, 13rem);
  font-weight: 250;
  letter-spacing: -.16em;
  line-height: 1;
  opacity: .92;
  transform: translateX(-.08em);
}

.team-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(42px, 7vw, 86px);
}

.team-copy h2 {
  margin-bottom: 24px;
  font-size: clamp(2.25rem, 4.2vw, 4rem);
}

.team-copy p {
  margin-bottom: 28px;
  color: var(--muted);
}

.experience-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  align-items: start;
  gap: clamp(56px, 10vw, 140px);
}

.experience-grid h2 {
  position: sticky;
  top: 120px;
}

.experience-list {
  display: grid;
}

.experience-item {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 20px;
  padding: 28px 0;
  border-bottom: 1px solid rgb(20 38 59 / 13%);
}

.experience-item:first-child {
  padding-top: 0;
}

.experience-item span {
  color: var(--gold-text);
  font-size: .74rem;
  font-weight: 700;
}

.experience-item h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.experience-item p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: .92rem;
}

.insights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.insight-card {
  display: flex;
  min-height: 390px;
  flex-direction: column;
  padding: 28px;
  background: var(--white);
  border: 1px solid rgb(20 38 59 / 10%);
  border-radius: var(--radius-md);
  transition: transform .35s var(--ease), box-shadow .35s ease, border-color .35s ease;
}

.insight-card:hover {
  border-color: rgb(214 153 46 / 45%);
  box-shadow: var(--shadow-sm);
  transform: translateY(-7px);
}

.insight-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 66px;
  color: var(--muted);
  font-size: .69rem;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.insight-meta span:first-child {
  color: var(--gold-text);
}

.insight-card h3 {
  margin-bottom: 16px;
  font-size: 1.46rem;
  line-height: 1.16;
}

.insight-card p {
  margin-bottom: 28px;
  color: var(--muted);
  font-size: .9rem;
}

.insight-card .text-link {
  margin-top: auto;
}

.quote-band {
  position: relative;
  padding: clamp(88px, 12vw, 160px) 0;
  overflow: hidden;
  text-align: center;
}

.quote-band::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 520px;
  height: 520px;
  border: 1px solid rgb(214 153 46 / 20%);
  border-radius: 50%;
  content: "";
  transform: translate(-50%, -50%);
}

.quote-band blockquote {
  position: relative;
  z-index: 1;
  max-width: 920px;
  margin: 0 auto;
  color: var(--white);
  font-family: "Proxima Nova", "Avenir Next", sans-serif;
  font-size: clamp(2rem, 4.5vw, 4.25rem);
  font-weight: 550;
  letter-spacing: -.035em;
  line-height: 1.13;
}

.quote-band cite {
  display: block;
  margin-top: 30px;
  color: var(--gold-soft);
  font-size: .72rem;
  font-style: normal;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.lead-section {
  background:
    radial-gradient(circle at 94% 6%, rgb(214 153 46 / 15%), transparent 22%),
    var(--paper);
}

.lead-layout {
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  align-items: start;
  gap: clamp(48px, 8vw, 112px);
}

.lead-intro {
  position: sticky;
  top: 112px;
}

.lead-intro h2 {
  margin-bottom: 24px;
}

.lead-intro > p {
  color: var(--muted);
  font-size: 1.05rem;
}

.contact-points {
  display: grid;
  margin-top: 36px;
  gap: 12px;
}

.contact-point {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--navy);
  font-size: .88rem;
  font-weight: 650;
}

.contact-point-icon {
  display: grid;
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  place-items: center;
  color: var(--gold-text);
  border: 1px solid rgb(20 38 59 / 15%);
  border-radius: 50%;
}

.contact-point-icon svg {
  width: 17px;
}

.lead-form {
  padding: clamp(28px, 5vw, 52px);
  background: var(--white);
  border: 1px solid rgb(20 38 59 / 8%);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.form-progress {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 34px;
}

.form-progress span {
  height: 3px;
  flex: 1;
  background: var(--mist);
  border-radius: 9px;
  transition: background .3s ease;
}

.form-progress span.active {
  background: var(--gold);
}

.form-step[hidden] {
  display: none;
}

.form-step-title {
  margin-bottom: 8px;
  font-size: clamp(1.5rem, 3vw, 2.1rem);
}

.form-step-intro {
  margin-bottom: 26px;
  color: var(--muted);
  font-size: .92rem;
}

.form-topic-fieldset {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

.form-topic-fieldset .form-step-title {
  width: 100%;
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.problem-option {
  position: relative;
}

.problem-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.problem-option label {
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  color: var(--navy);
  border: 1px solid rgb(20 38 59 / 13%);
  border-radius: 12px;
  cursor: pointer;
  font-size: .86rem;
  font-weight: 650;
  line-height: 1.35;
  transition: border-color .2s ease, background .2s ease, transform .2s ease;
}

.problem-option label::after {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
  border: 1px solid rgb(20 38 59 / 25%);
  border-radius: 50%;
  content: "";
}

.problem-option label:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
}

.problem-option input:checked + label {
  background: rgb(214 153 46 / 9%);
  border-color: var(--gold);
}

.problem-option input:checked + label::after {
  border: 4px solid var(--gold);
}

.form-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 28px;
}

.form-actions .btn:only-child {
  margin-left: auto;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.field--full {
  grid-column: 1 / -1;
}

.field label {
  display: block;
  margin-bottom: 7px;
  color: var(--navy);
  font-size: .77rem;
  font-weight: 700;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 52px;
  padding: 13px 15px;
  color: var(--ink);
  background: #fbfbf9;
  border: 1px solid rgb(20 38 59 / 15%);
  border-radius: 10px;
  outline: 0;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.field textarea {
  min-height: 120px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  background: var(--white);
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgb(214 153 46 / 12%);
}

.field input::placeholder,
.field textarea::placeholder {
  color: #9ba1a7;
}

.checkbox-field {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  margin-top: 18px;
  color: var(--muted);
  font-size: .76rem;
  line-height: 1.5;
}

.checkbox-field input {
  width: 17px;
  height: 17px;
  margin: 2px 0 0;
  accent-color: var(--gold);
}

.checkbox-field a {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.form-feedback {
  min-height: 22px;
  margin: 16px 0 0;
  color: var(--danger);
  font-size: .8rem;
}

.privacy-note {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 18px;
  color: var(--muted);
  font-size: .72rem;
}

.privacy-note svg {
  width: 15px;
  flex: 0 0 auto;
  margin-top: 2px;
}

.faq-list {
  max-width: 900px;
  margin-left: auto;
}

.faq-item {
  border-bottom: 1px solid rgb(20 38 59 / 14%);
}

.faq-item summary {
  display: grid;
  grid-template-columns: 1fr 34px;
  align-items: center;
  gap: 20px;
  padding: 25px 0;
  color: var(--navy);
  cursor: pointer;
  font-size: clamp(1rem, 1.6vw, 1.16rem);
  font-weight: 650;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border: 1px solid rgb(20 38 59 / 15%);
  border-radius: 50%;
  content: "+";
  font-size: 1.2rem;
  font-weight: 400;
  transition: color .2s ease, border-color .2s ease, transform .25s ease;
}

.faq-item[open] summary::after {
  color: var(--gold-text);
  border-color: var(--gold);
  transform: rotate(45deg);
}

.faq-answer {
  max-width: 760px;
  padding: 0 50px 24px 0;
  color: var(--muted);
  font-size: .94rem;
}

.faq-answer p:last-child {
  margin-bottom: 0;
}

.cta-panel {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 44px;
  padding: clamp(42px, 7vw, 78px);
  overflow: hidden;
  color: rgb(255 255 255 / 68%);
  background: var(--navy);
  border-radius: var(--radius-lg);
}

.cta-panel::before {
  position: absolute;
  top: -180px;
  right: -120px;
  width: 420px;
  height: 420px;
  border: 1px solid rgb(214 153 46 / 22%);
  border-radius: 50%;
  content: "";
}

.cta-panel > * {
  position: relative;
  z-index: 1;
}

.cta-panel h2 {
  max-width: 690px;
  margin-bottom: 16px;
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3.8rem);
}

.cta-panel p {
  max-width: 620px;
  margin-bottom: 0;
}

.content-sidebar-layout {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  align-items: start;
  gap: clamp(48px, 8vw, 110px);
}

.sticky-nav {
  position: sticky;
  top: 114px;
  display: grid;
  padding: 12px;
  background: var(--white);
  border: 1px solid rgb(20 38 59 / 10%);
  border-radius: 15px;
}

.sticky-nav a {
  padding: 11px 13px;
  color: var(--muted);
  border-radius: 9px;
  font-size: .83rem;
  transition: color .2s ease, background .2s ease;
}

.sticky-nav a:hover,
.sticky-nav a.active {
  color: var(--navy);
  background: var(--paper);
}

.content-sections {
  display: grid;
  min-width: 0;
  gap: 80px;
}

.content-section h2 {
  margin-bottom: 24px;
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.content-section h3 {
  margin: 34px 0 15px;
}

.content-section p,
.content-section li {
  color: var(--muted);
}

.content-section ul {
  padding-left: 20px;
}

.content-section li {
  margin-bottom: 8px;
}

.values-grid,
.office-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.value-card,
.office-card {
  padding: 28px;
  background: var(--white);
  border: 1px solid rgb(20 38 59 / 10%);
  border-radius: 16px;
}

.value-card span {
  display: block;
  margin-bottom: 54px;
  color: var(--gold-text);
  font-size: .72rem;
  font-weight: 700;
}

.value-card h3,
.office-card h3 {
  margin: 0 0 12px;
}

.value-card p,
.office-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: .89rem;
}

.office-card small {
  display: block;
  margin-bottom: 18px;
  color: var(--gold-text);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.practice-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  align-items: start;
  gap: clamp(48px, 8vw, 110px);
}

.practice-content {
  max-width: 760px;
}

.practice-content > p:first-child {
  color: var(--navy);
  font-size: clamp(1.25rem, 2vw, 1.55rem);
  line-height: 1.45;
}

.practice-content h2 {
  margin: 56px 0 20px;
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.practice-content h3 {
  margin: 38px 0 14px;
}

.practice-content p,
.practice-content li {
  color: var(--muted);
}

.practice-list {
  display: grid;
  padding: 0;
  gap: 10px;
  list-style: none;
}

.practice-list li {
  position: relative;
  padding: 14px 16px 14px 46px;
  background: var(--white);
  border: 1px solid rgb(20 38 59 / 9%);
  border-radius: 10px;
}

.practice-list li::before {
  position: absolute;
  top: 21px;
  left: 19px;
  width: 12px;
  height: 1px;
  background: var(--gold);
  content: "";
}

.practice-aside {
  position: sticky;
  top: 112px;
  padding: 28px;
  color: rgb(255 255 255 / 68%);
  background: var(--navy);
  border-radius: 17px;
}

.practice-aside h3 {
  margin-bottom: 13px;
  color: var(--white);
}

.practice-aside p {
  margin-bottom: 23px;
  font-size: .88rem;
}

.practice-aside .btn {
  width: 100%;
}

.practice-aside small {
  display: block;
  margin-top: 14px;
  color: rgb(255 255 255 / 62%);
  font-size: .69rem;
  text-align: center;
}

.article-header {
  max-width: 920px;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  margin-bottom: 26px;
  color: rgb(255 255 255 / 58%);
  font-size: .76rem;
}

.article-meta span:first-child {
  color: var(--gold-soft);
}

.article-body {
  display: grid;
  grid-template-columns: minmax(0, 760px) 220px;
  justify-content: center;
  gap: 80px;
}

.article-content {
  color: #4e555c;
  font-size: clamp(1rem, 1.4vw, 1.1rem);
}

.article-content > p:first-child {
  color: var(--navy);
  font-size: clamp(1.28rem, 2.1vw, 1.65rem);
  line-height: 1.5;
}

.article-content h2 {
  margin: 58px 0 22px;
  font-size: clamp(2rem, 3.7vw, 3.1rem);
}

.article-content h3 {
  margin: 38px 0 16px;
}

.article-content li {
  margin-bottom: 9px;
}

.article-note {
  margin: 40px 0;
  padding: 24px 28px;
  color: var(--navy);
  background: rgb(214 153 46 / 9%);
  border-left: 3px solid var(--gold);
}

.article-share {
  position: sticky;
  top: 120px;
  align-self: start;
}

.article-share > span {
  display: block;
  margin-bottom: 12px;
  color: var(--muted);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.share-links {
  display: flex;
  gap: 8px;
}

.share-links button,
.share-links a {
  display: grid;
  width: 40px;
  height: 40px;
  padding: 0;
  place-items: center;
  color: var(--navy);
  background: transparent;
  border: 1px solid rgb(20 38 59 / 16%);
  border-radius: 50%;
  cursor: pointer;
  transition: color .2s ease, border-color .2s ease;
}

.share-links button:hover,
.share-links a:hover {
  color: var(--gold-text);
  border-color: var(--gold);
}

.share-links svg {
  width: 17px;
}

.career-card,
.client-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.career-copy,
.client-copy {
  padding: clamp(36px, 7vw, 76px);
}

.career-copy h2,
.client-copy h2 {
  margin-bottom: 22px;
}

.career-copy p,
.client-copy p {
  color: var(--muted);
}

.career-visual,
.client-visual {
  position: relative;
  min-height: 480px;
  background:
    linear-gradient(135deg, rgb(19 56 94 / 85%), rgb(20 38 59 / 97%)),
    var(--navy);
}

.career-visual::before,
.client-visual::before {
  position: absolute;
  inset: 12%;
  border: 1px solid rgb(214 153 46 / 28%);
  border-radius: 50% 50% 8px 50%;
  content: "";
  transform: rotate(13deg);
}

.career-visual::after,
.client-visual::after {
  position: absolute;
  right: 18%;
  bottom: 17%;
  width: 90px;
  height: 90px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 0 26px rgb(214 153 46 / 9%);
  content: "";
}

.site-footer {
  color: rgb(255 255 255 / 62%);
  background: #0f1f32;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.4fr .8fr .8fr .9fr;
  gap: clamp(32px, 6vw, 84px);
  padding: 76px 0 62px;
}

.footer-brand img {
  width: 250px;
  height: auto;
  margin-bottom: 24px;
}

.footer-brand p {
  max-width: 310px;
  margin-bottom: 26px;
  font-size: .86rem;
}

.footer-social {
  display: flex;
  gap: 9px;
}

.footer-social a {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: var(--white);
  border: 1px solid rgb(255 255 255 / 16%);
  border-radius: 50%;
  transition: color .2s ease, border-color .2s ease, transform .2s ease;
}

.footer-social a:hover {
  color: var(--gold-soft);
  border-color: var(--gold);
  transform: translateY(-2px);
}

.footer-social svg {
  width: 16px;
}

.footer-column h2 {
  margin-bottom: 24px;
  color: var(--white);
  font-size: .72rem;
  font-weight: 750;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.footer-column ul {
  display: grid;
  margin: 0;
  padding: 0;
  gap: 9px;
  list-style: none;
}

.footer-column a {
  font-size: .84rem;
  transition: color .2s ease;
}

.footer-column a:hover {
  color: var(--gold-soft);
}

.footer-address {
  margin-bottom: 20px;
}

.footer-address strong {
  display: block;
  margin-bottom: 2px;
  color: var(--white);
  font-size: .88rem;
}

.footer-address span {
  font-size: .79rem;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 0;
  border-top: 1px solid rgb(255 255 255 / 10%);
  font-size: .7rem;
}

.footer-bottom a:hover {
  color: var(--gold-soft);
}

.whatsapp-float {
  position: fixed;
  z-index: 900;
  right: 24px;
  bottom: 24px;
  display: flex;
  min-height: 54px;
  align-items: center;
  gap: 10px;
  padding: 0 18px;
  color: var(--white);
  background: var(--success);
  border-radius: 999px;
  box-shadow: 0 14px 35px rgb(9 84 47 / 27%);
  font-size: .8rem;
  font-weight: 750;
  transition: background .25s ease, transform .25s var(--ease), box-shadow .25s ease;
}

.whatsapp-float:hover {
  background: #125b3a;
  box-shadow: 0 18px 42px rgb(9 84 47 / 35%);
  transform: translateY(-3px);
}

.whatsapp-float svg {
  width: 21px;
}

.toast {
  position: fixed;
  z-index: 2000;
  right: 24px;
  bottom: 92px;
  max-width: 340px;
  padding: 14px 18px;
  color: var(--white);
  background: var(--navy);
  border-radius: 10px;
  box-shadow: var(--shadow-lg);
  font-size: .82rem;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity .25s ease, transform .25s var(--ease);
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
}

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

.js-ready .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}

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

.reveal-delay-1 {
  transition-delay: .08s;
}

.reveal-delay-2 {
  transition-delay: .16s;
}

.reveal-delay-3 {
  transition-delay: .24s;
}

@media (max-width: 1120px) {
  .site-nav {
    gap: 16px;
  }

  .site-nav .nav-hide-tablet {
    display: none;
  }

  .hero-inner {
    grid-template-columns: 1fr 350px;
    gap: 48px;
  }

  .content-sidebar-layout {
    grid-template-columns: 1fr;
  }

  .sticky-nav {
    position: static;
    grid-auto-flow: column;
    overflow-x: auto;
  }

  .sticky-nav a {
    white-space: nowrap;
  }

  .footer-main {
    grid-template-columns: 1.3fr repeat(3, 1fr);
    gap: 32px;
  }
}

@media (max-width: 920px) {
  :root {
    --header-height: 74px;
  }

  .site-nav {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .mobile-menu {
    display: block;
    visibility: hidden;
  }

  .mobile-menu.is-open {
    visibility: visible;
  }

  .hero {
    min-height: auto;
    padding-top: calc(var(--header-height) + 70px);
  }

  .hero-inner {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .hero-copy {
    max-width: 760px;
  }

  .hero-card {
    max-width: 620px;
  }

  .intro-grid,
  .lead-layout,
  .experience-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .lead-intro,
  .experience-grid h2 {
    position: static;
  }

  .team-feature {
    grid-template-columns: 1fr;
  }

  .team-visual {
    min-height: 360px;
  }

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

  .insight-card:last-child {
    grid-column: 1 / -1;
  }

  .content-sidebar-layout {
    grid-template-columns: 1fr;
  }

  .sticky-nav {
    position: static;
    grid-auto-flow: column;
    overflow-x: auto;
  }

  .sticky-nav a {
    white-space: nowrap;
  }

  .practice-layout {
    grid-template-columns: 1fr;
  }

  .practice-aside {
    position: static;
  }

  .article-body {
    grid-template-columns: minmax(0, 760px);
  }

  .article-share {
    position: static;
    order: -1;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 700px) {
  :root {
    --container: min(100% - 32px, 1180px);
    --header-height: 78px;
    --radius-lg: 24px;
  }

  h1 {
    font-size: clamp(2.72rem, 15vw, 4.6rem);
  }

  h2 {
    font-size: clamp(2.1rem, 11vw, 3.5rem);
  }

  .brand-logo,
  .site-header.scrolled .brand-logo {
    width: 126px;
  }

  .hero {
    padding-bottom: 62px;
  }

  .hero::after {
    top: 22%;
    right: -50vw;
    width: 100vw;
  }

  .hero-proof {
    display: grid;
    gap: 12px;
  }

  .hero-card {
    padding: 27px 22px 24px;
  }

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

  .stat-item {
    min-height: 102px;
    justify-content: flex-start;
    border-right: 0;
    border-bottom: 1px solid rgb(255 255 255 / 12%);
  }

  .areas-grid,
  .process-grid,
  .insights-grid,
  .problem-grid,
  .form-grid,
  .values-grid,
  .office-grid {
    grid-template-columns: 1fr;
  }

  .area-card,
  .area-card:nth-child(even) {
    border-right: 0;
  }

  .areas-grid .area-card:last-child:nth-child(odd),
  .insight-card:last-child,
  .field--full {
    grid-column: auto;
  }

  .area-card {
    min-height: 220px;
    padding: 28px 24px;
  }

  .process-card {
    min-height: auto;
    padding: 30px 26px;
  }

  .process-number {
    margin-bottom: 40px;
  }

  .team-copy {
    padding: 42px 26px 48px;
  }

  .team-visual {
    min-height: 300px;
  }

  .insight-card {
    min-height: 340px;
  }

  .lead-form {
    padding: 27px 20px;
  }

  .form-actions {
    align-items: stretch;
    flex-direction: column-reverse;
  }

  .form-actions .btn {
    width: 100%;
  }

  .cta-panel {
    grid-template-columns: 1fr;
    padding: 44px 26px;
  }

  .content-sections {
    gap: 62px;
  }

  .career-card,
  .client-card {
    grid-template-columns: 1fr;
  }

  .career-visual,
  .client-visual {
    min-height: 300px;
    order: -1;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-main .footer-column:last-child {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .whatsapp-float {
    right: 16px;
    bottom: 16px;
    width: 54px;
    padding: 0;
    justify-content: center;
  }

  .whatsapp-float span {
    display: none;
  }

  .toast {
    right: 16px;
    bottom: 82px;
    left: 16px;
    max-width: none;
  }
}

@media (max-width: 420px) {
  .brand-logo,
  .site-header.scrolled .brand-logo {
    width: 116px;
  }

  .hero-actions .btn,
  .page-hero-actions .btn {
    width: 100%;
  }

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

  .footer-brand,
  .footer-main .footer-column:last-child {
    grid-column: auto;
  }
}

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

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

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

@media print {
  .site-header,
  .mobile-menu,
  .whatsapp-float,
  .site-footer,
  .article-share,
  .page-hero-actions {
    display: none !important;
  }

  .page-hero {
    padding: 40px 0;
    color: var(--ink);
    background: var(--white);
  }

  .page-hero h1,
  .page-hero p {
    color: var(--ink);
  }

  .article-body {
    display: block;
  }
}
