:root {
  --navy: #0f2742;
  --blue: #1f6fc2;
  --blue-hover: #195b9f;
  --light-blue: #eaf3ff;
  --text: #152033;
  --muted: #5f6b7a;
  --warm-white: #f7f9fc;
  --white: #ffffff;
  --border: #d9e2ec;
  --shadow-sm: 0 10px 30px rgba(15, 39, 66, 0.08);
  --shadow-lg: 0 28px 70px rgba(15, 39, 66, 0.16);
  --radius-sm: 0.65rem;
  --radius-md: 1rem;
  --radius-lg: 1.5rem;
  --container: 1200px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 100px; }
body {
  margin: 0;
  background: var(--warm-white);
  color: var(--text);
  font-family: 'Manrope Variable', 'Manrope', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 18px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
button, input, textarea, select { font: inherit; }
a { color: inherit; }
img, svg { max-width: 100%; }
button, a { -webkit-tap-highlight-color: transparent; }

.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 1000;
  background: var(--navy);
  color: white;
  padding: .7rem 1rem;
  border-radius: .5rem;
  transform: translateY(-160%);
}
.skip-link:focus { transform: none; }
.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.container { width: min(calc(100% - 2.5rem), var(--container)); margin-inline: auto; }
.narrow { max-width: 800px; }
.section { padding: 6rem 0; }
.section--light-blue { background: var(--light-blue); }
.section--navy { background: var(--navy); color: white; }

h1, h2, h3, h4 { margin: 0 0 1.2rem; color: var(--navy); line-height: 1.12; letter-spacing: -.025em; }
h1 { font-size: clamp(2.75rem, 5.4vw, 5.2rem); line-height: 1.02; letter-spacing: -.048em; }
h2 { font-size: clamp(2.1rem, 3.7vw, 3.55rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.65rem); letter-spacing: -.015em; }
p { margin: 0 0 1.25rem; }
.eyebrow { margin: 0 0 1rem; color: var(--blue); font-size: .76rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.eyebrow--light { color: #a9cefa; }
.section-lead { font-size: clamp(1.08rem, 1.6vw, 1.3rem); line-height: 1.65; color: #314052; }
.section--navy h2, .section--navy h3 { color: white; }
.section--navy p { color: #d7e2ee; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: .82rem 1.25rem;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  font-size: .91rem;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  transition: background-color .18s ease, border-color .18s ease, transform .18s ease;
}
.button:hover { transform: translateY(-1px); }
.button:focus-visible, a:focus-visible, button:focus-visible { outline: 3px solid #73aef0; outline-offset: 3px; }
.button--primary { background: var(--blue); color: white; }
.button--primary:hover { background: var(--blue-hover); }
.button--secondary { background: white; color: var(--navy); border-color: var(--border); }
.button--secondary:hover { border-color: var(--navy); }
.button--small { min-height: 42px; padding: .65rem .9rem; font-size: .82rem; }
.button--light { background: white; color: var(--navy); }
.button--light:hover { background: var(--light-blue); }
.button--outline-light { color: white; border-color: rgba(255,255,255,.5); }
.button--outline-light:hover { border-color: white; }

.brand-logo { display: inline-flex; align-items: center; gap: .65rem; white-space: nowrap; }
.brand-logo__mark { position: relative; width: 2rem; height: 1.55rem; flex: 0 0 auto; }
.brand-logo__circle { position: absolute; width: 1.45rem; height: 1.45rem; border-radius: 50%; top: .05rem; }
.brand-logo__circle--navy { left: 0; background: var(--navy); }
.brand-logo__circle--blue { right: 0; background: var(--blue); opacity: .94; }
.brand-logo__wordmark { color: var(--navy); font-size: 1.12rem; font-weight: 750; letter-spacing: -.045em; line-height: 1; }
.brand-logo__seen { color: var(--blue); }
.brand-logo--reversed .brand-logo__wordmark { color: white; }
.brand-logo--reversed .brand-logo__seen { color: #66a7ed; }
.brand-logo--reversed .brand-logo__circle--navy { background: white; }
.brand-logo--reversed .brand-logo__circle--blue { background: #66a7ed; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(247, 249, 252, .96);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(14px);
  transition: border-color .2s ease, box-shadow .2s ease;
}
.site-header.is-scrolled { border-color: var(--border); box-shadow: 0 6px 20px rgba(15,39,66,.06); }
.site-header__inner { min-height: 80px; display: flex; align-items: center; gap: 1.4rem; }
.site-header__logo { display: flex; text-decoration: none; }
.desktop-nav { margin-left: auto; display: flex; align-items: center; gap: 1rem; }
.desktop-nav a { color: #314052; font-size: .73rem; font-weight: 700; text-decoration: none; white-space: nowrap; }
.desktop-nav a:hover { color: var(--blue); }
.site-header__actions { display: flex; align-items: center; gap: .9rem; }
.site-header__currency { display: none; }
.currency-selector { display: inline-flex; align-items: center; gap: .38rem; color: var(--muted); font-size: .76rem; white-space: nowrap; }
.currency-selector__label { font-weight: 600; }
.currency-selector button { appearance: none; border: 0; background: none; color: inherit; padding: .25rem .12rem; cursor: pointer; font-weight: 700; }
.currency-selector button[aria-pressed="true"] { color: var(--blue); text-decoration: underline; text-underline-offset: .22rem; }
.menu-toggle { display: none; width: 44px; height: 44px; border: 0; background: transparent; padding: .65rem; cursor: pointer; }
.menu-toggle span:not(.sr-only) { display: block; height: 2px; margin: 5px 0; background: var(--navy); transition: transform .2s ease, opacity .2s ease; }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(4) { transform: translateY(-7px) rotate(-45deg); }
.mobile-menu { display: none; }

.hero { position: relative; overflow: hidden; padding: 7.5rem 0 7rem; background: var(--warm-white); }
.hero__grid { display: grid; grid-template-columns: minmax(0, 1.02fr) minmax(420px, .98fr); gap: 5rem; align-items: center; }
.hero h1 span { color: var(--blue); }
.hero__lead { max-width: 680px; font-size: clamp(1.1rem, 1.65vw, 1.35rem); color: #354457; }
.hero__actions { display: flex; flex-wrap: wrap; gap: .8rem; margin: 2rem 0 1.5rem; }
.hero__support { color: var(--muted); font-size: .91rem; font-weight: 500; }
.hero__decor { position: absolute; border-radius: 50%; pointer-events: none; }
.hero__decor--one { width: 360px; height: 360px; background: var(--light-blue); right: -190px; top: 10%; }
.hero__decor--two { width: 150px; height: 150px; border: 28px solid #d5e8fd; left: -90px; bottom: 10%; }
.hero-visual { position: relative; padding: 3rem 1rem 2.5rem; }
.browser-window { position: relative; background: white; border: 1px solid var(--border); border-radius: 1.2rem; box-shadow: var(--shadow-lg); overflow: hidden; transform: rotate(1deg); }
.browser-window__bar { height: 46px; background: #edf2f7; display: flex; align-items: center; gap: .4rem; padding: 0 .9rem; }
.browser-window__bar > span { width: 9px; height: 9px; border-radius: 50%; background: #b4c1cf; }
.browser-window__address { margin-left: .7rem; height: 24px; flex: 1; background: white; border-radius: 999px; color: #8895a5; font-size: .62rem; line-height: 24px; padding-left: .9rem; }
.mock-site { padding: 1.2rem; }
.mock-site__nav { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.8rem; }
.mock-logo { display: flex; align-items: center; position: relative; height: 20px; }
.mock-logo i { display: block; width: 18px; height: 18px; border-radius: 50%; }
.mock-logo i:first-child { background: var(--navy); }
.mock-logo i:nth-child(2) { background: var(--blue); margin-left: -5px; }
.mock-logo span { display: block; width: 70px; height: 7px; background: var(--navy); margin-left: 8px; border-radius: 5px; }
.mock-site__navlinks { display: flex; gap: 10px; }
.mock-site__navlinks b { width: 28px; height: 4px; background: #cbd5df; border-radius: 4px; }
.mock-site__hero { display: grid; grid-template-columns: 1.15fr .85fr; gap: 1.2rem; align-items: center; min-height: 250px; padding: 2rem; background: var(--light-blue); border-radius: .9rem; }
.mock-site__hero h2 { margin: .7rem 0 .85rem; font-size: clamp(1.5rem, 3vw, 2.2rem); }
.mock-label { display: block; width: 65px; height: 5px; background: var(--blue); border-radius: 4px; }
.mock-site__hero p { width: 95%; height: 7px; margin: 0 0 8px; background: #a9b8c7; border-radius: 4px; }
.mock-site__hero p.short { width: 65%; }
.mock-site__hero button { margin-top: 1rem; border: 0; border-radius: .45rem; background: var(--blue); width: 115px; height: 30px; color: white; font-size: .54rem; }
.mock-site__image { position: relative; height: 180px; }
.mock-site__circle { position: absolute; border-radius: 50%; }
.mock-site__circle--navy { width: 150px; height: 150px; background: var(--navy); left: 0; bottom: 0; }
.mock-site__circle--blue { width: 110px; height: 110px; background: var(--blue); right: 0; top: 0; opacity: .92; }
.mock-site__cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: .7rem; margin-top: .9rem; }
.mock-site__cards article { border: 1px solid var(--border); border-radius: .65rem; padding: .8rem; }
.mock-site__cards span { color: var(--blue); font-size: .55rem; font-weight: 700; }
.mock-site__cards b, .mock-site__cards p { display: block; border-radius: 4px; }
.mock-site__cards b { width: 70%; height: 6px; margin: .55rem 0; background: var(--navy); }
.mock-site__cards p { width: 90%; height: 4px; background: #d3dde7; }
.hero-visual__tag { position: absolute; z-index: 2; padding: .65rem .85rem; border-radius: .55rem; background: white; color: var(--navy); font-size: .7rem; font-weight: 700; box-shadow: var(--shadow-sm); }
.hero-visual__tag--top { right: -1rem; top: .4rem; }
.hero-visual__tag--bottom { left: -1.5rem; bottom: .2rem; }

.problem { background: white; text-align: center; }
.problem__list { display: flex; flex-wrap: wrap; justify-content: center; gap: .65rem; margin: 2rem 0; }
.problem__list span { padding: .55rem .8rem; background: var(--warm-white); border: 1px solid var(--border); border-radius: 999px; color: #3c4b5b; font-size: .83rem; font-weight: 600; }

.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 3rem; margin-bottom: 3rem; }
.section-heading > div { max-width: 650px; }
.section-heading > p { max-width: 490px; margin: 0; color: var(--muted); }
.section-heading--center { align-items: center; flex-direction: column; text-align: center; }
.section-heading--center > p { max-width: 650px; }
.card-grid { display: grid; gap: 1rem; }
.card-grid--four { grid-template-columns: repeat(4, 1fr); }
.service-card { min-height: 300px; padding: 1.6rem; background: white; border: 1px solid var(--border); border-radius: var(--radius-md); }
.service-card__number { display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; margin-bottom: 2rem; border-radius: 50%; background: var(--light-blue); color: var(--blue); font-size: .72rem; font-weight: 800; }
.service-card p { color: var(--muted); font-size: .94rem; }

.split-layout { display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: 5rem; }
.split-layout--reverse { grid-template-columns: .9fr 1.1fr; }
.check-list { display: grid; gap: .7rem; padding: 0; margin: 2rem 0; list-style: none; }
.check-list li { position: relative; padding-left: 1.8rem; }
.check-list li::before { content: ''; position: absolute; left: 0; top: .62rem; width: .75rem; height: .75rem; border: 3px solid var(--blue); border-radius: 50%; }
.business-only-note, .direct-note { color: var(--navy); font-weight: 700; }
.audience-panel { display: grid; gap: .9rem; }
.audience-panel article { padding: 1.5rem; background: white; border: 1px solid rgba(15,39,66,.08); border-radius: var(--radius-md); box-shadow: var(--shadow-sm); }
.audience-panel span { display: block; margin-bottom: .5rem; color: var(--blue); font-size: .74rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.audience-panel strong { color: var(--navy); font-size: 1.05rem; line-height: 1.4; }

.process-list { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1rem; padding: 0; margin: 0; list-style: none; counter-reset: step; }
.process-list li { position: relative; min-height: 250px; padding: 1.5rem 1.25rem; background: white; border: 1px solid var(--border); border-radius: var(--radius-md); }
.process-list li:not(:last-child)::after { content: ''; position: absolute; right: -1rem; top: 3.1rem; width: 1rem; border-top: 2px solid #b8d7f8; }
.process-list span { color: var(--blue); font-size: .78rem; font-weight: 800; }
.process-list h3 { margin-top: 1.5rem; }
.process-list p { color: var(--muted); font-size: .88rem; }

.case-study__grid { display: grid; grid-template-columns: .8fr 1.2fr; align-items: center; gap: 4rem; }
.case-study__content { max-width: 520px; }
.case-study__list { display: grid; gap: .5rem; padding-left: 1.1rem; margin: 1.8rem 0 2rem; color: #e6eef6; }
.comparison { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.comparison-card { padding: 1rem; border-radius: var(--radius-md); background: white; color: var(--text); }
.comparison-card > span { display: inline-block; margin-bottom: .8rem; color: var(--blue); font-size: .7rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.comparison-card > p { margin: .8rem 0 0; color: var(--muted); font-size: .73rem; line-height: 1.45; }
.comparison-browser { overflow: hidden; border: 1px solid var(--border); border-radius: .55rem; }
.comparison-browser__bar { height: 22px; background: #e8edf2; }
.old-site, .new-site { min-height: 270px; padding: 1rem; background: #f4f5f6; }
.old-site b, .old-site p, .old-site div { display: block; background: #aeb7c0; }
.old-site b { width: 75%; height: 15px; margin: .4rem 0 1rem; }
.old-site p { width: 100%; height: 5px; margin: .4rem 0; }
.old-site div { display: inline-block; width: 43%; height: 70px; margin: 1.1rem .3rem 0 0; }
.new-site { background: var(--light-blue); }
.new-site b { display: block; width: 55px; height: 5px; background: var(--blue); border-radius: 4px; }
.new-site h3 { width: 78%; height: 36px; margin: 1rem 0; background: var(--navy); border-radius: 5px; }
.new-site p { width: 90%; height: 6px; background: #94a9bc; border-radius: 4px; }
.new-site button { width: 100px; height: 26px; margin: .9rem 0 1.2rem; border: 0; border-radius: 5px; background: var(--blue); }
.new-site div { display: grid; grid-template-columns: repeat(3,1fr); gap: .4rem; }
.new-site i { height: 65px; background: white; border-radius: 6px; }

.portrait-placeholder { position: relative; min-height: 500px; border-radius: var(--radius-lg); background: var(--navy); overflow: hidden; box-shadow: var(--shadow-lg); }
.portrait-placeholder::before, .portrait-placeholder::after { content: ''; position: absolute; border-radius: 50%; }
.portrait-placeholder::before { width: 310px; height: 310px; background: var(--blue); top: 70px; left: -70px; }
.portrait-placeholder::after { width: 260px; height: 260px; border: 55px solid rgba(255,255,255,.12); right: -100px; bottom: -50px; }
.portrait-placeholder__initials { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; color: white; font-size: 5.5rem; font-weight: 800; letter-spacing: -.08em; }
.portrait-placeholder__label { position: absolute; left: 1.2rem; top: 1.2rem; padding: .55rem .7rem; border-radius: .45rem; background: rgba(255,255,255,.94); color: var(--navy); font-size: .68rem; font-weight: 700; }
.portrait-placeholder__experience { position: absolute; left: 1.2rem; right: 1.2rem; bottom: 1.2rem; display: flex; align-items: center; gap: 1rem; padding: 1rem; border-radius: .75rem; background: white; color: var(--navy); }
.portrait-placeholder__experience strong { color: var(--blue); font-size: 2rem; }
.portrait-placeholder__experience span { font-size: .75rem; font-weight: 700; line-height: 1.35; }

.review__grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 5rem; align-items: center; }
.price-card { padding: 2rem; background: white; border: 1px solid rgba(15,39,66,.08); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); }
.price-card > span { color: var(--blue); font-size: .75rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.price-card > p { margin: 1.3rem 0 .2rem; color: var(--muted); font-size: .88rem; }
.price-card > strong { display: block; margin-bottom: .25rem; color: var(--navy); font-size: clamp(2.4rem, 4vw, 3.8rem); line-height: 1.1; letter-spacing: -.045em; }
.price-card small { display: block; margin-bottom: 1.5rem; color: var(--muted); }
.price-card .button { width: 100%; }
.price-card .price-card__note { margin: 1rem 0 0; color: var(--muted); font-size: .72rem; line-height: 1.5; }

.contact-cta { background: var(--blue); color: white; }
.contact-cta h2 { color: white; }
.contact-cta p { color: #eaf3ff; }
.contact-cta__inner { display: grid; grid-template-columns: 1.1fr .9fr; gap: 4rem; align-items: center; }
.contact-cta__actions { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: .8rem; }
.contact-cta__phone { width: 100%; text-align: right; color: white; font-weight: 700; text-decoration: none; }

.site-footer { padding: 5rem 0 2rem; background: var(--navy); color: #cdd9e5; font-size: .82rem; }
.site-footer__grid { display: grid; grid-template-columns: 1.5fr .7fr .7fr 1fr; gap: 3rem; padding-bottom: 3.5rem; }
.site-footer h2 { margin-bottom: 1.1rem; color: white; font-size: .88rem; letter-spacing: .02em; }
.site-footer a { display: block; margin-bottom: .55rem; color: #d9e5ef; text-decoration: none; }
.site-footer a:hover { color: white; }
.site-footer__brand p { max-width: 380px; margin-top: 1.3rem; }
.site-footer__promise { color: white; font-weight: 700; }
.site-footer address { margin-top: 1rem; font-style: normal; }
.site-footer address span { display: block; }
.site-footer__bottom { display: flex; justify-content: space-between; gap: 2rem; padding-top: 2rem; border-top: 1px solid rgba(255,255,255,.14); }
.site-footer__bottom p { margin: 0 0 .35rem; }
.site-footer__utility { display: flex; flex-wrap: wrap; justify-content: flex-end; align-items: center; gap: .8rem 1.2rem; }
.site-footer__utility a { margin: 0; }
.site-footer .currency-selector { color: #d9e5ef; }
.site-footer .currency-selector button[aria-pressed="true"] { color: white; }

@media (min-width: 1280px) {
  .site-header__currency { display: block; }
  .desktop-nav { gap: 1.15rem; }
}

@media (max-width: 1180px) {
  .desktop-nav { display: none; }
  .site-header__actions { margin-left: auto; }
  .site-header__currency { display: block; }
  .menu-toggle { display: block; }
  .mobile-menu {
    display: flex;
    position: fixed;
    inset: 80px 0 0;
    z-index: 99;
    max-height: none;
    overflow-y: auto;
    flex-direction: column;
    gap: 1.4rem;
    padding: 2rem max(1.25rem, calc((100vw - var(--container)) / 2));
    background: var(--warm-white);
    border-top: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
    transform: translateY(-125%);
    opacity: 0;
    visibility: hidden;
    transition: transform .22s ease, opacity .22s ease, visibility .22s ease;
  }
  .mobile-menu.is-open { transform: none; opacity: 1; visibility: visible; }
  .mobile-menu nav { display: grid; grid-template-columns: repeat(2, 1fr); gap: .3rem 1rem; }
  .mobile-menu nav a { padding: .6rem 0; color: var(--navy); font-weight: 700; text-decoration: none; }
  .mobile-menu .button { align-self: flex-start; }
  .mobile-menu__contacts { display: flex; flex-wrap: wrap; gap: 1rem; font-size: .82rem; }
  .mobile-menu__contacts a { color: var(--blue); }
  .hero__grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .card-grid--four { grid-template-columns: repeat(2, 1fr); }
  .process-list { grid-template-columns: repeat(3, 1fr); }
  .process-list li:not(:last-child)::after { display: none; }
}

@media (max-width: 900px) {
  body { font-size: 17px; }
  .section { padding: 4.7rem 0; }
  .hero { padding: 5.5rem 0 5rem; }
  .hero__grid, .split-layout, .split-layout--reverse, .case-study__grid, .review__grid, .contact-cta__inner { grid-template-columns: 1fr; }
  .hero__content { max-width: 760px; }
  .hero-visual { max-width: 680px; margin-inline: auto; }
  .section-heading { align-items: start; flex-direction: column; gap: 1rem; }
  .case-study__content { max-width: none; }
  .contact-cta__actions { justify-content: flex-start; }
  .contact-cta__phone { text-align: left; }
  .site-footer__grid { grid-template-columns: 1.4fr 1fr 1fr; }
  .site-footer__grid > div:last-child { grid-column: 1 / -1; }
}

@media (max-width: 680px) {
  .container { width: min(calc(100% - 2rem), var(--container)); }
  .site-header__inner { min-height: 66px; }
  .site-header__currency, .site-header__actions > .button { display: none; }
  .brand-logo__wordmark { font-size: .94rem; }
  .brand-logo__online { display: none; }
  .mobile-menu { inset: 66px 0 0; max-height: none; }
  .mobile-menu nav { grid-template-columns: 1fr; }
  .hero { padding-top: 4.5rem; }
  .hero h1 { font-size: clamp(2.45rem, 13vw, 3.9rem); }
  .hero__actions { flex-direction: column; align-items: stretch; }
  .hero__actions .button { width: 100%; }
  .hero-visual { padding: 2.3rem 0 .5rem; }
  .hero-visual__tag--top { right: -.3rem; }
  .hero-visual__tag--bottom { left: -.3rem; bottom: -.6rem; }
  .mock-site { padding: .7rem; }
  .mock-site__hero { grid-template-columns: 1fr; min-height: 330px; padding: 1.2rem; }
  .mock-site__image { height: 100px; }
  .mock-site__circle--navy { width: 105px; height: 105px; }
  .mock-site__circle--blue { width: 75px; height: 75px; }
  .mock-site__cards { grid-template-columns: 1fr; }
  .mock-site__cards article:nth-child(n+2) { display: none; }
  .problem { text-align: left; }
  .problem__list { justify-content: flex-start; }
  .card-grid--four, .process-list, .comparison { grid-template-columns: 1fr; }
  .service-card { min-height: auto; }
  .process-list li { min-height: auto; }
  .portrait-placeholder { min-height: 410px; }
  .portrait-placeholder__initials { font-size: 4.2rem; }
  .site-footer__grid { grid-template-columns: 1fr 1fr; gap: 2.5rem 1.5rem; }
  .site-footer__brand { grid-column: 1 / -1; }
  .site-footer__grid > div:last-child { grid-column: 1 / -1; }
  .site-footer__bottom { flex-direction: column; }
  .site-footer__utility { justify-content: flex-start; }
}

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