:root {
  --ink: #102338;
  --muted: #576878;
  --blue: #0a568f;
  --blue-deep: #172761;
  --blue-pale: #eaf3f8;
  --line: #d8e1e7;
  --paper: #f7f9fa;
  --white: #ffffff;
  --accent: #8ec5dc;
  --radius: 18px;
  --shadow: 0 24px 70px rgba(16, 35, 56, .09);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, Aptos, "Segoe UI", Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  height: auto;
  max-width: 100%;
}

a {
  color: inherit;
}

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

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

:focus-visible {
  outline: 3px solid #60b8df;
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: var(--white);
  background: var(--blue-deep);
  transform: translateY(-180%);
}

.skip-link:focus {
  transform: translateY(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;
}

.shell {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  background: rgba(255, 255, 255, .94);
  border-bottom: 1px solid rgba(216, 225, 231, .72);
  backdrop-filter: blur(14px);
}

.header-inner {
  display: flex;
  min-height: 84px;
  align-items: center;
  gap: 30px;
}

.brand {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  width: 136px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 27px;
  margin-left: auto;
}

.site-nav a {
  position: relative;
  color: #2a4053;
  font-size: 14px;
  font-weight: 650;
  text-decoration: none;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: -9px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--blue);
  transform: scaleX(0);
  transition: transform .2s ease;
}

.site-nav a:hover::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 13px 22px;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--blue-deep));
  border: 0;
  border-radius: 5px;
  box-shadow: 0 12px 30px rgba(23, 39, 97, .18);
  font-size: 14px;
  font-weight: 750;
  letter-spacing: .01em;
  text-decoration: none;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease;
}

.button:hover {
  box-shadow: 0 16px 34px rgba(23, 39, 97, .26);
  transform: translateY(-2px);
}

.button-small {
  min-height: 42px;
  padding: 10px 17px;
  white-space: nowrap;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 104px 0 110px;
  background:
    radial-gradient(circle at 85% 20%, rgba(142, 197, 220, .2), transparent 31%),
    linear-gradient(180deg, #fbfdfe 0%, #f4f8fa 100%);
}

.hero::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: .43;
  background-image: linear-gradient(rgba(16, 35, 56, .045) 1px, transparent 1px), linear-gradient(90deg, rgba(16, 35, 56, .045) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to right, transparent, black 62%, black);
}

.hero-grid {
  position: relative;
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 1.08fr) minmax(390px, .92fr);
  gap: 70px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 18px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.eyebrow span {
  margin-inline: 6px;
  color: #9cb3c1;
}

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

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: -.035em;
  line-height: 1.08;
}

h1 {
  max-width: 770px;
  margin-bottom: 26px;
  font-size: clamp(46px, 5.3vw, 76px);
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(36px, 4vw, 54px);
}

h3 {
  line-height: 1.3;
}

.hero-lead {
  max-width: 690px;
  margin-bottom: 34px;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.7;
}

.button-row {
  display: flex;
  align-items: center;
  gap: 28px;
}

.text-link {
  color: var(--ink);
  font-size: 14px;
  font-weight: 750;
  text-decoration: none;
}

.text-link span {
  display: inline-block;
  margin-left: 7px;
  color: var(--blue);
  transition: transform .2s ease;
}

.text-link:hover span {
  transform: translateX(4px);
}

.trust-line {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 30px 0 0;
  color: #637686;
  font-size: 13px;
  font-weight: 700;
}

.trust-line > span {
  width: 32px;
  height: 1px;
  background: #7baec6;
}

.hero-visual {
  position: relative;
  min-height: 520px;
}

.visual-orbit {
  position: absolute;
  border: 1px solid rgba(10, 86, 143, .22);
  border-radius: 50%;
}

.orbit-one {
  inset: 54px 25px 47px 23px;
}

.orbit-two {
  inset: 116px 87px 108px 85px;
  border-style: dashed;
}

.decision-core {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  width: 164px;
  height: 164px;
  align-content: center;
  color: var(--white);
  background: linear-gradient(145deg, var(--blue), var(--blue-deep));
  border: 10px solid rgba(255, 255, 255, .9);
  border-radius: 50%;
  box-shadow: 0 24px 60px rgba(23, 39, 97, .27);
  text-align: center;
  transform: translate(-50%, -50%);
}

.decision-core span {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.decision-core strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 29px;
  font-weight: 500;
}

.visual-node {
  position: absolute;
  display: flex;
  width: 142px;
  height: 55px;
  align-items: center;
  padding: 0 17px;
  color: var(--ink);
  background: rgba(255, 255, 255, .94);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  font-size: 13px;
  font-weight: 800;
}

.visual-node span {
  margin-right: 10px;
  color: var(--blue);
  font-size: 10px;
  letter-spacing: .1em;
}

.node-assess {
  top: 41px;
  left: 6%;
}

.node-balance {
  top: 44%;
  right: -2%;
}

.node-counsel {
  bottom: 33px;
  left: 9%;
}

.statement {
  padding: 82px 0;
  color: var(--white);
  background: var(--ink);
}

.statement-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 100px;
}

.statement h2 {
  margin-bottom: 0;
}

.statement .section-kicker {
  color: var(--accent);
}

.statement-copy {
  color: #c4d0d9;
  font-size: 17px;
}

.statement-copy p:last-child {
  margin-bottom: 0;
  color: var(--white);
}

.section {
  padding: 110px 0;
  scroll-margin-top: 82px;
}

.section-heading {
  display: grid;
  align-items: end;
  grid-template-columns: 1.2fr .8fr;
  gap: 90px;
  margin-bottom: 52px;
}

.section-heading h2 {
  margin-bottom: 0;
}

.section-heading > p {
  max-width: 490px;
  margin-bottom: 6px;
  color: var(--muted);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.service-card {
  position: relative;
  min-height: 330px;
  padding: 40px 35px;
  background: var(--paper);
  border: 1px solid var(--line);
}

.service-card + .service-card {
  border-left: 0;
}

.service-card.featured {
  color: var(--white);
  background: linear-gradient(155deg, var(--blue) 0%, var(--blue-deep) 100%);
  border: 0;
  box-shadow: var(--shadow);
}

.card-number {
  display: block;
  margin-bottom: 56px;
  color: #8397a6;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .14em;
}

.featured .card-number {
  color: var(--accent);
}

.service-card h3 {
  max-width: 280px;
  margin-bottom: 17px;
  font-size: 22px;
}

.service-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 15px;
}

.featured p {
  color: #d9e8f0;
}

.specialist-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-top: 32px;
}

.specialist-grid article {
  padding: 27px 0 0;
  border-top: 2px solid var(--line);
}

.service-icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin-bottom: 22px;
  color: var(--blue);
  background: var(--blue-pale);
  border-radius: 50%;
  font-size: 11px;
  font-weight: 850;
}

.specialist-grid h3 {
  margin-bottom: 12px;
  font-size: 16px;
}

.specialist-grid p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
}

.approach {
  color: var(--white);
  background:
    radial-gradient(circle at 80% 20%, rgba(142, 197, 220, .13), transparent 25%),
    linear-gradient(145deg, #102338 0%, #172761 100%);
}

.section-heading.inverse > p {
  color: #bfccd6;
}

.approach .section-kicker {
  color: var(--accent);
}

.approach-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255, 255, 255, .18);
  border-bottom: 1px solid rgba(255, 255, 255, .18);
}

.approach-grid article {
  padding: 44px 39px 48px;
}

.approach-grid article + article {
  border-left: 1px solid rgba(255, 255, 255, .18);
}

.step {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  margin-bottom: 32px;
  color: var(--ink);
  background: var(--white);
  border-radius: 50%;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
}

.approach-grid h3 {
  margin-bottom: 14px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  font-weight: 500;
}

.approach-grid p {
  margin-bottom: 0;
  color: #c5d3dc;
}

.deliverables {
  margin-top: 70px;
}

.deliverables-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 11px;
}

.deliverables-list span {
  padding: 14px 15px;
  color: #d9e4ea;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 5px;
  font-size: 13px;
}

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

.initiative-grid,
.insight-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.initiative-grid article {
  position: relative;
  min-height: 330px;
  padding: 36px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  transition: box-shadow .2s ease, transform .2s ease;
}

.initiative-grid article::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  content: "";
  background: linear-gradient(90deg, var(--blue), var(--accent));
}

.initiative-grid article:hover {
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.initiative-grid article > span,
.insight-grid article > span {
  display: block;
  margin-bottom: 42px;
  color: var(--blue);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.initiative-grid h3 {
  margin-bottom: 16px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 25px;
  font-weight: 500;
}

.initiative-grid p {
  color: var(--muted);
  font-size: 14px;
}

.initiative-grid a {
  position: absolute;
  bottom: 32px;
  left: 36px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 750;
  text-decoration: none;
}

.about-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 70px;
}

.about-panel {
  padding-top: 18px;
}

.about-panel > p:not(.section-kicker) {
  color: var(--muted);
  font-size: 17px;
}

.principal-card {
  padding: 54px;
  background: linear-gradient(145deg, #f5f9fb, #eaf3f8);
  border: 1px solid #d3e4ec;
  border-radius: var(--radius);
}

.principal-card h3 {
  margin-bottom: 19px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 37px;
  font-weight: 500;
  letter-spacing: -.02em;
}

.principal-card > p {
  color: var(--muted);
}

.credential-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 30px 0;
}

.credential-row span {
  padding: 8px 11px;
  color: #355368;
  background: rgba(255, 255, 255, .7);
  border: 1px solid #cedde5;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 700;
}

.principal-note {
  margin-bottom: 0;
  padding-top: 25px;
  border-top: 1px solid #c9dbe4;
  font-size: 14px;
}

.insights {
  padding-top: 100px;
  background: #fbfcfd;
  border-top: 1px solid var(--line);
}

.insight-grid article {
  min-height: 280px;
  padding: 32px 30px;
  background: var(--white);
  border: 1px solid var(--line);
}

.insight-grid article > span {
  margin-bottom: 34px;
}

.insight-grid h3 {
  margin-bottom: 16px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 23px;
  font-weight: 500;
}

.insight-grid p {
  color: var(--muted);
  font-size: 14px;
}

.insight-grid small {
  color: #80909d;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.contact {
  color: var(--white);
  background: var(--ink);
}

.contact .section-kicker {
  color: var(--accent);
}

.contact-grid {
  display: grid;
  align-items: start;
  grid-template-columns: .76fr 1.24fr;
  gap: 85px;
}

.contact-intro {
  position: sticky;
  top: 130px;
}

.contact-intro > p:not(.section-kicker) {
  color: #c2ced6;
  font-size: 17px;
}

.contact-details {
  margin-top: 48px;
  border-top: 1px solid rgba(255, 255, 255, .17);
}

.contact-details a,
.contact-details p {
  display: block;
  margin: 0;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .17);
  font-size: 14px;
  text-decoration: none;
}

.contact-details span {
  display: block;
  margin-bottom: 2px;
  color: var(--accent);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.contact-form {
  padding: 42px;
  color: var(--ink);
  background: var(--white);
  border-radius: 14px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, .2);
}

.field-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 19px;
}

.contact-form label:not(.checkbox) {
  display: block;
  margin-bottom: 20px;
  color: #334a5c;
  font-size: 12px;
  font-weight: 750;
}

.contact-form label > span {
  color: #a32828;
}

.contact-form input:not([type="checkbox"]),
.contact-form select,
.contact-form textarea {
  width: 100%;
  margin-top: 7px;
  padding: 12px 13px;
  color: var(--ink);
  background: #fbfcfd;
  border: 1px solid #c8d4dc;
  border-radius: 4px;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.contact-form textarea {
  min-height: 150px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(10, 86, 143, .12);
  outline: 0;
}

.honeypot {
  position: absolute;
  left: -9999px;
}

.form-warning {
  margin: -2px 0 22px;
  padding: 12px 14px;
  color: #6b552d;
  background: #fff8e8;
  border-left: 3px solid #d9ad52;
  font-size: 12px;
}

.checkbox {
  display: grid;
  align-items: start;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  margin: 0 0 17px;
  color: #4d6070;
  font-size: 12px;
  line-height: 1.55;
}

.checkbox input {
  width: 16px;
  height: 16px;
  margin: 2px 0 0;
  accent-color: var(--blue);
}

.checkbox a,
.form-summary a {
  color: var(--blue);
  font-weight: 750;
}

.checkbox strong {
  color: #a32828;
}

.submit-button {
  width: 100%;
  margin-top: 8px;
}

.submit-button span {
  margin-left: 10px;
}

.form-summary {
  margin: 18px 0 0;
  color: #6a7a87;
  font-size: 11px;
  line-height: 1.55;
}

.site-footer {
  padding: 70px 0 24px;
  color: #c8d4dc;
  background: #091725;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.65fr .65fr .9fr .9fr;
  gap: 55px;
}

.footer-brand img {
  width: 190px;
  margin-bottom: 22px;
  padding: 11px;
  background: var(--white);
  border-radius: 4px;
}

.footer-brand p {
  max-width: 350px;
  color: #93a5b3;
  font-size: 13px;
}

.footer-grid h2 {
  margin-bottom: 17px;
  color: var(--white);
  font-family: inherit;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.footer-grid > div:not(.footer-brand) a {
  display: block;
  margin-bottom: 10px;
  color: #a8b7c2;
  font-size: 12px;
  text-decoration: none;
}

.footer-grid a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  margin-top: 50px;
  padding-top: 23px;
  color: #7e919f;
  border-top: 1px solid rgba(255, 255, 255, .1);
  font-size: 11px;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom span {
  margin-inline: 4px;
}

.legal-hero {
  padding: 82px 0 58px;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.legal-hero h1 {
  max-width: 900px;
  font-size: clamp(42px, 5vw, 64px);
}

.legal-hero p {
  max-width: 760px;
  margin-bottom: 0;
  color: var(--muted);
}

.legal-content {
  width: min(820px, calc(100% - 40px));
  margin: 0 auto;
  padding: 74px 0 110px;
}

.legal-content h1,
.legal-content h2,
.legal-content h3 {
  margin-top: 1.8em;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
}

.legal-content h1 {
  font-size: 38px;
}

.legal-content h2 {
  font-size: 29px;
}

.legal-content h3 {
  font-size: 22px;
}

.legal-content p,
.legal-content li {
  color: #405566;
}

.legal-content blockquote {
  margin: 30px 0;
  padding: 20px 24px;
  color: #36566d;
  background: var(--blue-pale);
  border-left: 4px solid var(--blue);
}

.legal-content blockquote p {
  margin: 0;
}

.legal-content hr {
  margin: 50px 0;
  border: 0;
  border-top: 1px solid var(--line);
}

.notice-banner {
  padding: 13px 16px;
  color: #6b552d;
  background: #fff8e8;
  border: 1px solid #ead6a5;
  border-radius: 5px;
  font-size: 13px;
}

.simple-page {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 40px 20px;
  background: var(--paper);
}

.simple-card {
  width: min(620px, 100%);
  padding: 50px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-align: center;
}

.simple-card img {
  width: 150px;
  margin: 0 auto 35px;
}

.simple-card h1 {
  margin-bottom: 18px;
  font-size: 45px;
}

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

@media (max-width: 1020px) {
  .header-cta {
    display: none;
  }

  .hero-grid {
    grid-template-columns: 1fr .8fr;
    gap: 30px;
  }

  .hero-visual {
    transform: scale(.86);
  }

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

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

  .footer-grid > div:last-child {
    grid-column: 2 / 4;
  }
}

@media (max-width: 820px) {
  .header-inner {
    min-height: 72px;
  }

  .brand {
    width: 112px;
  }

  .menu-toggle {
    display: grid;
    width: 42px;
    height: 42px;
    place-content: center;
    gap: 5px;
    margin-left: auto;
    padding: 0;
    background: transparent;
    border: 1px solid var(--line);
    border-radius: 4px;
  }

  .menu-toggle span:not(.sr-only) {
    width: 20px;
    height: 2px;
    background: var(--ink);
  }

  .site-nav {
    position: absolute;
    top: 72px;
    right: 0;
    left: 0;
    display: none;
    align-items: stretch;
    gap: 0;
    padding: 10px 20px 20px;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 20px 40px rgba(16, 35, 56, .1);
  }

  .site-nav.is-open {
    display: block;
  }

  .site-nav a {
    display: block;
    padding: 12px 8px;
  }

  .site-nav a::after {
    display: none;
  }

  .hero {
    padding: 75px 0 65px;
  }

  .hero-grid,
  .statement-grid,
  .section-heading,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 420px;
    margin-top: 15px;
    transform: none;
  }

  .statement-grid,
  .section-heading,
  .about-grid,
  .contact-grid {
    gap: 40px;
  }

  .service-grid,
  .approach-grid,
  .initiative-grid,
  .insight-grid {
    grid-template-columns: 1fr;
  }

  .service-card + .service-card {
    border-top: 0;
    border-left: 1px solid var(--line);
  }

  .approach-grid article + article {
    border-top: 1px solid rgba(255, 255, 255, .18);
    border-left: 0;
  }

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

  .contact-intro {
    position: static;
  }

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

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

  .footer-grid > div:last-child {
    grid-column: auto;
  }
}

@media (max-width: 560px) {
  .shell {
    width: min(100% - 30px, 1180px);
  }

  .hero {
    padding-top: 58px;
  }

  h1 {
    font-size: 45px;
  }

  h2 {
    font-size: 38px;
  }

  .button-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
  }

  .hero-visual {
    min-height: 340px;
    transform: scale(.85);
    transform-origin: center top;
  }

  .visual-node {
    width: 126px;
  }

  .section,
  .statement {
    padding: 78px 0;
  }

  .specialist-grid,
  .deliverables-list,
  .field-row {
    grid-template-columns: 1fr;
  }

  .principal-card,
  .contact-form {
    padding: 30px 23px;
  }

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

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

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

  .simple-card {
    padding: 38px 24px;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: .01ms !important;
  }
}
