:root {
  color-scheme: light;
  --navy: #071f3a;
  --navy-2: #0c2b4d;
  --navy-3: #163c60;
  --coral: #ff5b43;
  --coral-dark: #df4935;
  --ink: #10243a;
  --paper: #f7f3ed;
  --white: #fffdf9;
  --mist: #dfe9ed;
  --muted: #64717c;
  --line: rgba(16, 36, 58, 0.16);
  --light-line: rgba(255, 255, 255, 0.19);
  --header-height: 82px;
  --content: 1320px;
}

* {
  box-sizing: border-box;
  letter-spacing: 0;
}

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

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

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

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

.skip-link {
  position: fixed;
  top: -70px;
  left: 18px;
  z-index: 300;
  padding: 12px 16px;
  border-radius: 4px;
  background: var(--white);
  color: var(--ink);
  font-weight: 900;
}

.skip-link:focus {
  top: 18px;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  display: grid;
  grid-template-columns: auto 1fr auto auto auto;
  gap: 20px;
  align-items: center;
  min-height: var(--header-height);
  padding: 11px clamp(18px, 3.2vw, 54px);
  color: var(--white);
  border-bottom: 1px solid var(--light-line);
  transition: background-color 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled,
.site-header:has(.case-menu.is-open) {
  background: rgba(255, 253, 249, 0.97);
  color: var(--ink);
  border-bottom-color: var(--line);
  box-shadow: 0 14px 40px rgba(7, 31, 58, 0.14);
  backdrop-filter: blur(16px);
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand img,
.footer-brand img {
  width: 52px;
  height: 52px;
  object-fit: contain;
}

.brand img {
  width: 62px;
  height: 60px;
}

.brand strong,
.brand small,
.footer-brand strong,
.footer-brand small {
  display: block;
  line-height: 1.02;
}

.brand strong,
.footer-brand strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
}

.brand small,
.footer-brand small {
  margin-top: 6px;
  opacity: 0.72;
  font-size: 9px;
  font-weight: 900;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  font-size: 15px;
  font-weight: 800;
}

.desktop-nav > a,
.case-trigger {
  opacity: 0.82;
  transition: opacity 150ms ease;
}

.desktop-nav > a:hover,
.case-trigger:hover,
.case-menu.is-open .case-trigger {
  opacity: 1;
}

.case-menu {
  position: relative;
}

.case-trigger {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 16px 0;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
}

.chevron {
  width: 7px;
  height: 7px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform 150ms ease;
}

.case-menu.is-open .chevron {
  transform: rotate(225deg) translate(-1px, -1px);
}

.case-dropdown {
  position: absolute;
  top: calc(100% + 2px);
  left: 50%;
  width: 350px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  color: var(--ink);
  box-shadow: 0 26px 64px rgba(7, 31, 58, 0.22);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 8px);
  transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
}

.case-menu.is-open .case-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.case-dropdown a {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 10px;
  align-items: center;
  min-height: 50px;
  padding: 8px 12px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 800;
}

.case-dropdown a:hover {
  background: var(--paper);
}

.case-dropdown a span {
  color: var(--coral-dark);
  font-size: 11px;
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.language-switcher span {
  opacity: 0.4;
}

.language-switcher a {
  padding: 7px 3px;
  opacity: 0.58;
  transition: opacity 150ms ease, color 150ms ease;
}

.language-switcher a:hover,
.language-switcher a[aria-current="page"] {
  color: var(--coral);
  opacity: 1;
}

.header-phone {
  display: grid;
  gap: 2px;
  padding-left: 17px;
  border-left: 1px solid currentColor;
  white-space: nowrap;
}

.header-phone span {
  font-size: 10px;
  font-weight: 900;
}

.header-phone strong {
  color: var(--coral);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid currentColor;
  border-radius: 3px;
  font-size: 13px;
  font-weight: 900;
  cursor: pointer;
  transition: transform 150ms ease, background-color 150ms ease, color 150ms ease;
}

.header-cta,
.button.coral {
  background: var(--coral);
  border-color: var(--coral);
  color: var(--navy);
}

.header-cta:hover,
.button:hover {
  transform: translateY(-2px);
}

.mobile-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid currentColor;
  border-radius: 50%;
  background: transparent;
  color: inherit;
  cursor: pointer;
}

.mobile-toggle span {
  display: block;
  width: 18px;
  height: 1px;
  margin: 5px auto;
  background: currentColor;
  transition: transform 160ms ease, opacity 160ms ease;
}

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

.mobile-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

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

.mobile-panel {
  position: fixed;
  inset: var(--header-height) 0 auto;
  z-index: 90;
  display: grid;
  max-height: 0;
  overflow: hidden;
  visibility: hidden;
  background: var(--white);
  color: var(--ink);
  transition: max-height 240ms ease, visibility 240ms ease;
}

.mobile-panel.is-open {
  max-height: calc(100svh - var(--header-height));
  visibility: visible;
  border-bottom: 1px solid var(--line);
  box-shadow: 0 26px 60px rgba(7, 31, 58, 0.22);
}

.mobile-panel a {
  display: flex;
  align-items: center;
  min-height: 58px;
  padding: 0 22px;
  border-bottom: 1px solid var(--line);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 25px;
}

.mobile-panel .mobile-call {
  background: var(--coral);
  color: var(--navy);
  font-family: inherit;
  font-size: 18px;
  font-weight: 900;
}

.mobile-language {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  padding: 10px 22px;
  border-bottom: 1px solid var(--line);
}

.mobile-language a {
  justify-content: center;
  min-height: 42px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 3px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 900;
}

.mobile-language a[aria-current="page"] {
  border-color: var(--navy);
  background: var(--navy);
  color: var(--white);
}

.hero {
  position: relative;
  min-height: 88svh;
  max-height: 930px;
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(420px, 0.97fr);
  align-items: end;
  overflow: hidden;
  padding: 140px max(clamp(26px, 4vw, 68px), calc((100vw - var(--content)) / 2)) 64px;
  background:
    radial-gradient(circle at 18% 22%, rgba(45, 66, 166, 0.24), transparent 32%),
    radial-gradient(circle at 78% 68%, rgba(255, 122, 22, 0.1), transparent 26%),
    linear-gradient(135deg, #061b33 0%, var(--navy-2) 52%, #071f3a 100%);
  color: var(--white);
  isolation: isolate;
}

.hero-crash-slide {
  position: absolute;
  inset: 0;
  z-index: 1;
  margin: 0;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition: opacity 600ms ease, visibility 600ms ease;
}

.hero-crash-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(4, 20, 38, 0.5), rgba(4, 20, 38, 0.08) 55%, rgba(4, 20, 38, 0.2));
}

.hero-crash-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.035) translate3d(-0.7%, 0, 0);
  will-change: transform;
}

.hero-crash-slide.is-active {
  opacity: 1;
  visibility: visible;
}

.hero-crash-slide.is-active img {
  animation: hero-crash-motion 6.5s cubic-bezier(0.2, 0.65, 0.25, 1) both;
}

@keyframes hero-crash-motion {
  from {
    transform: scale(1.035) translate3d(-0.7%, 0, 0);
  }
  to {
    transform: scale(1.105) translate3d(0.8%, -0.5%, 0);
  }
}

.hero-copy {
  position: relative;
  z-index: 3;
  width: min(700px, 100%);
  padding-bottom: 8px;
  will-change: transform, opacity;
}

.hero-message {
  min-height: 430px;
  transform: translateY(0);
  opacity: 1;
  transition: opacity 220ms ease, transform 220ms ease;
}

.hero-message.is-leaving {
  transform: translateY(-12px);
  opacity: 0;
}

.hero-message.is-entering {
  animation: hero-message-enter 480ms cubic-bezier(0.2, 0.72, 0.2, 1) both;
}

.hero.is-visual-slide .hero-message {
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
}

@keyframes hero-message-enter {
  from {
    transform: translateY(16px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.hero-rotation {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-top: 18px;
}

.hero-rotation-status {
  display: flex;
  gap: 6px;
  align-items: center;
  color: rgba(255, 255, 255, 0.58);
  font-size: 10px;
  font-weight: 900;
}

.hero-rotation-status strong {
  color: var(--coral);
}

.hero-rotation-dots {
  display: flex;
  gap: 8px;
  align-items: center;
}

.hero-rotation-dots button {
  width: 28px;
  height: 4px;
  padding: 0;
  border: 0;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: width 180ms ease, background-color 180ms ease;
}

.hero-rotation-dots button.active {
  width: 46px;
  background: var(--coral);
}

.eyebrow {
  display: flex;
  gap: 12px;
  align-items: center;
  margin: 0 0 17px;
  color: var(--coral-dark);
  font-size: 11px;
  line-height: 1.4;
  font-weight: 900;
  text-transform: uppercase;
}

.eyebrow > span {
  display: inline-block;
  width: 38px;
  height: 2px;
  background: currentColor;
}

.eyebrow.light {
  color: #ff8b78;
}

.eyebrow b {
  font: inherit;
}

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

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
}

.hero h1 {
  max-width: 730px;
  margin-bottom: 28px;
  font-size: 84px;
  line-height: 0.84;
}

.hero h1 em {
  color: var(--coral);
  font-weight: 500;
}

.hero-lead {
  max-width: 620px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 17px;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  align-items: center;
  margin-top: 30px;
}

.text-link {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  min-height: 46px;
  color: var(--white);
  border-bottom: 1px solid currentColor;
  font-size: 12px;
  font-weight: 900;
}

.dark-link {
  color: var(--navy);
}

.hero-identity {
  position: relative;
  z-index: 2;
  align-self: stretch;
  display: grid;
  place-items: end center;
  min-width: 0;
  will-change: transform;
  transition: opacity 500ms ease;
}

.hero.is-visual-slide .hero-identity {
  opacity: 0;
  pointer-events: none;
}

.hero-photo {
  position: relative;
  width: min(520px, 100%);
  height: min(760px, calc(88svh - 112px));
  min-height: 560px;
  margin: 0;
  isolation: isolate;
}

.hero-photo::before {
  content: "";
  position: absolute;
  inset: 14% 6% 4%;
  z-index: -1;
  border: 1px solid rgba(255, 91, 70, 0.52);
}

.hero-photo > img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
  filter: drop-shadow(0 24px 20px rgba(0, 0, 0, 0.34));
}

.hero-photo figcaption {
  position: absolute;
  right: 0;
  bottom: 8%;
  display: grid;
  gap: 4px;
  max-width: calc(100% - 36px);
  padding: 12px 15px;
  border-left: 3px solid var(--coral);
  background: rgba(7, 31, 58, 0.94);
  color: var(--white);
}

.hero-photo figcaption strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 17px;
}

.hero-photo figcaption span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.scroll-cue {
  position: absolute;
  right: 18px;
  bottom: 16px;
  z-index: 4;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 50%;
}

.case-intro,
.process,
.immigration,
.attorney,
.faq,
.contact,
.site-footer {
  padding-inline: max(clamp(22px, 5vw, 76px), calc((100vw - var(--content)) / 2));
}

.case-intro {
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr) minmax(280px, 0.58fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: end;
  padding-top: 108px;
  padding-bottom: 76px;
}

.section-number {
  align-self: start;
  color: var(--coral-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 48px;
  line-height: 1;
}

.section-heading h2,
.process h2,
.immigration h2,
.attorney h2,
.faq h2,
.contact h2 {
  margin-bottom: 0;
  font-size: 56px;
  line-height: 1.02;
}

.case-intro > p {
  margin-bottom: 1px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.case-list {
  border-top: 1px solid var(--line);
}

.case-list article {
  display: grid;
  grid-template-columns: 70px minmax(260px, 0.7fr) minmax(300px, 1fr) 46px;
  gap: clamp(24px, 4vw, 64px);
  align-items: center;
  min-height: 158px;
  max-width: var(--content);
  margin: 0 auto;
  padding: 30px clamp(22px, 5vw, 76px);
  border-bottom: 1px solid var(--line);
  transition: background-color 180ms ease, color 180ms ease;
}

.case-list article:hover {
  background: var(--navy);
  color: var(--white);
}

.case-list article > span {
  color: var(--coral-dark);
  font-weight: 900;
}

.case-list article:hover > span {
  color: var(--coral);
}

.case-list h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  font-weight: 500;
}

.case-list p {
  margin: 0;
  color: var(--muted);
  line-height: 1.62;
}

.case-list article:hover p {
  color: rgba(255, 255, 255, 0.72);
}

.case-list article > a {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 18px;
}

.story-section {
  position: relative;
  height: auto;
  margin-top: 86px;
  background: var(--navy);
  color: var(--white);
}

.story-sticky {
  position: relative;
  min-height: 760px;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(390px, 0.85fr);
  overflow: hidden;
}

.story-visual {
  position: relative;
  overflow: hidden;
  background: var(--navy-2);
}

.story-frame {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  transform: scale(1.07) translateY(16px);
  transition: opacity 620ms ease, transform 900ms cubic-bezier(0.2, 0.7, 0.2, 1);
  pointer-events: none;
}

.story-frame.is-active {
  opacity: 1;
  transform: scale(1) translateY(0);
}

.story-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(7, 31, 58, 0.12);
}

.story-art,
.mobile-story-art {
  display: flex;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: var(--navy-2);
}

.story-art-impact {
  align-items: center;
  justify-content: space-around;
  gap: 36px;
  padding: clamp(34px, 7vw, 100px);
}

.story-art-impact > strong {
  color: var(--coral);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 230px;
  font-weight: 500;
  line-height: 0.8;
}

.story-art-impact > div {
  display: grid;
  min-width: 190px;
  border-top: 1px solid var(--light-line);
}

.story-art-impact span {
  padding: 19px 0;
  border-bottom: 1px solid var(--light-line);
  font-size: 13px;
  font-weight: 900;
}

.story-art-evidence {
  flex-direction: column;
  justify-content: center;
  gap: 45px;
  padding: clamp(34px, 7vw, 100px);
  background: var(--paper);
  color: var(--navy);
}

.story-art-evidence > strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 68px;
  font-weight: 500;
}

.story-art-evidence > div {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.story-art-evidence span {
  min-height: 96px;
  padding: 24px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: var(--coral-dark);
  font-size: 13px;
  font-weight: 900;
}

.story-art-insurance {
  flex-direction: column;
  justify-content: center;
  padding: clamp(40px, 9vw, 130px);
  border: clamp(24px, 5vw, 70px) solid var(--navy-3);
  background: var(--navy);
}

.story-art-insurance p {
  margin: 0 0 22px;
  color: var(--coral);
  font-size: 12px;
  font-weight: 900;
}

.story-art-insurance strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 64px;
  font-weight: 500;
}

.story-art-insurance > span {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid var(--light-line);
  color: rgba(255, 255, 255, 0.66);
}

.story-art-strategy {
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--coral);
  color: var(--navy);
  text-align: center;
}

.story-art-strategy img {
  width: 150px;
  height: 150px;
  object-fit: contain;
}

.story-art-strategy > span {
  margin: 20px 0 12px;
  font-size: 12px;
  font-weight: 900;
}

.story-art-strategy > strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 60px;
  font-weight: 500;
  line-height: 0.94;
}

.story-frame figcaption {
  position: absolute;
  left: 28px;
  bottom: 30px;
  z-index: 3;
  padding: 10px 12px;
  background: rgba(7, 31, 58, 0.88);
  border-left: 3px solid var(--coral);
  font-size: 12px;
  font-weight: 900;
}

.strategy-frame::after {
  display: none;
}

.story-progress {
  position: absolute;
  inset: auto 0 0;
  z-index: 6;
  height: 5px;
  background: rgba(255, 255, 255, 0.2);
}

.story-progress span {
  display: block;
  width: 25%;
  height: 100%;
  background: var(--coral);
  transition: width 420ms ease;
}

.story-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  padding: 92px clamp(30px, 4vw, 66px) 40px;
  background: var(--navy);
}

.story-kicker {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: start;
  margin-bottom: 30px;
}

.story-kicker > span {
  color: rgba(255, 255, 255, 0.54);
  font-size: 12px;
  font-weight: 900;
}

.story-overline {
  margin: 0 0 16px;
  color: var(--coral);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.story-panel h2 {
  max-width: 600px;
  margin-bottom: 24px;
  font-size: 46px;
  line-height: 1.02;
}

.story-panel > p:not(.eyebrow):not(.story-overline) {
  max-width: 570px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 17px;
  line-height: 1.7;
}

.story-controls {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin-top: 24px;
  padding-top: 0;
  border-top: 1px solid var(--light-line);
}

.story-controls button {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr) 22px;
  gap: 10px;
  align-items: center;
  min-width: 0;
  min-height: 50px;
  padding: 8px 12px;
  border: 0;
  border-bottom: 1px solid var(--light-line);
  border-left: 3px solid transparent;
  background: transparent;
  color: rgba(255, 255, 255, 0.46);
  text-align: left;
  cursor: pointer;
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease;
}

.story-controls button::after {
  content: "+";
  justify-self: end;
  color: currentColor;
  font-size: 19px;
  font-weight: 400;
}

.story-controls button.active {
  border-left-color: var(--coral);
  background: rgba(255, 255, 255, 0.055);
  color: var(--white);
}

.story-controls button.active::after {
  content: "−";
  color: var(--coral);
}

.story-controls span,
.story-controls em {
  display: block;
}

.story-controls span {
  font-weight: 900;
}

.story-controls em {
  overflow: hidden;
  font-size: 12px;
  font-style: normal;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.mobile-story {
  display: none;
}

.process {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1fr);
  gap: clamp(50px, 8vw, 130px);
  padding-top: 112px;
  padding-bottom: 112px;
  background: var(--white);
}

.process-steps {
  border-top: 1px solid var(--line);
}

.process-steps article {
  display: grid;
  grid-template-columns: 62px minmax(180px, 0.7fr) minmax(220px, 1fr);
  gap: 24px;
  align-items: center;
  min-height: 116px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.process-steps strong {
  color: var(--coral-dark);
}

.process-steps h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 23px;
  font-weight: 500;
}

.process-steps p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.immigration {
  position: relative;
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(280px, 0.72fr);
  gap: 30px 90px;
  align-items: center;
  padding-top: 92px;
  padding-bottom: 92px;
  background: var(--mist);
  overflow: hidden;
}

.immigration-mark {
  position: absolute;
  right: 4%;
  bottom: -44%;
  width: 420px;
  opacity: 0.065;
  pointer-events: none;
}

.immigration-mark img {
  width: 100%;
}

.immigration > p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.immigration .text-link {
  width: max-content;
}

.attorney {
  display: grid;
  grid-template-columns: minmax(360px, 0.85fr) minmax(0, 1fr);
  gap: clamp(50px, 8vw, 120px);
  align-items: center;
  padding-top: 118px;
  padding-bottom: 118px;
  background: var(--paper);
}

.attorney-visual {
  position: relative;
  min-height: 660px;
  overflow: hidden;
  background: var(--navy);
}

.attorney-visual::before {
  content: "";
  position: absolute;
  inset: 9% 8% 7%;
  background: var(--coral);
  clip-path: polygon(14% 0, 100% 0, 100% 84%, 77% 100%, 0 90%, 0 16%);
}

.attorney-mark {
  position: absolute;
  inset: 15% 14% 13%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: var(--navy);
}

.attorney-mark img {
  width: 110px;
  height: 110px;
  margin-bottom: 35px;
  object-fit: contain;
}

.attorney-mark span,
.attorney-mark small {
  font-size: 11px;
  font-weight: 900;
}

.attorney-mark strong {
  margin: 10px 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 120px;
  font-weight: 500;
  line-height: 0.88;
}

.attorney-copy {
  max-width: 720px;
}

.attorney h2 {
  margin-bottom: 26px;
}

.attorney-lead {
  color: var(--muted);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 23px;
  line-height: 1.55;
}

.attorney-facts {
  display: grid;
  margin: 38px 0 30px;
  border-top: 1px solid var(--line);
}

.attorney-facts div {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 22px;
  align-items: center;
  min-height: 74px;
  border-bottom: 1px solid var(--line);
}

.attorney-facts strong {
  color: var(--coral-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
}

.attorney-facts span {
  color: var(--muted);
}

.button.navy-outline {
  border-color: var(--navy);
  color: var(--navy);
  background: transparent;
}

.button.navy-outline:hover {
  background: var(--navy);
  color: var(--white);
}

.faq {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(430px, 1fr);
  gap: clamp(48px, 8vw, 130px);
  padding-top: 108px;
  padding-bottom: 108px;
  background: var(--white);
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq details {
  border-bottom: 1px solid var(--line);
}

.faq summary {
  display: grid;
  grid-template-columns: 1fr 32px;
  gap: 18px;
  align-items: center;
  min-height: 82px;
  padding: 18px 0;
  list-style: none;
  font-size: 17px;
  font-weight: 850;
  cursor: pointer;
}

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

.faq summary span {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border: 1px solid var(--line);
  border-radius: 50%;
  transition: transform 150ms ease;
}

.faq details[open] summary span {
  transform: rotate(45deg);
}

.faq details p {
  max-width: 690px;
  padding: 0 50px 24px 0;
  color: var(--muted);
  line-height: 1.7;
}

.contact {
  display: grid;
  grid-template-columns: minmax(320px, 0.83fr) minmax(430px, 1fr);
  gap: clamp(50px, 8vw, 130px);
  padding-top: 110px;
  padding-bottom: 110px;
  background: var(--navy);
  color: var(--white);
}

.contact h2 {
  max-width: 660px;
  margin-bottom: 25px;
}

.contact-copy > p:not(.eyebrow) {
  max-width: 590px;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.7;
}

.contact-details {
  display: grid;
  margin-top: 36px;
  border-top: 1px solid var(--light-line);
}

.contact-details a {
  display: grid;
  grid-template-columns: 84px 1fr;
  gap: 20px;
  min-height: 74px;
  align-items: center;
  border-bottom: 1px solid var(--light-line);
}

.contact-details span {
  color: var(--coral);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-details strong {
  overflow-wrap: anywhere;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  line-height: 1.35;
}

.contact-form {
  position: relative;
  display: grid;
  gap: 14px;
  align-self: start;
  padding: clamp(22px, 3vw, 32px);
  border-radius: 6px;
  background: var(--white);
  color: var(--ink);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.24);
}

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

.contact-form label:not(.consent) {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 3px;
  background: #fbfaf7;
  color: var(--ink);
  font-size: 16px;
  text-transform: none;
}

.contact-form input {
  min-height: 44px;
}

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

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--coral-dark);
  outline: 2px solid rgba(255, 91, 67, 0.18);
}

.consent {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 8px;
  align-items: start;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.45;
}

.consent input {
  width: 18px;
  min-height: 18px;
  margin: 1px 0 0;
  accent-color: var(--coral-dark);
}

.consent a {
  color: var(--coral-dark);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.sms-consent {
  margin-top: 0;
  padding-top: 12px;
  border-top: 1px solid var(--line);
  font-size: 10px;
  line-height: 1.5;
}

.honeypot-field {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.contact-form .robot-check {
  display: grid;
  grid-template-columns: 25px max-content;
  justify-content: center;
  column-gap: 13px;
  align-items: center;
  min-height: 68px;
  padding: 13px 15px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--paper);
  color: var(--navy);
  text-transform: none;
  cursor: pointer;
  transition: border-color 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

.contact-form .robot-check:hover,
.contact-form .robot-check:has(input:focus-visible) {
  border-color: var(--coral-dark);
  box-shadow: 0 0 0 3px rgba(255, 91, 67, 0.12);
}

.contact-form .robot-check:has(input:checked) {
  border-color: rgba(16, 36, 58, 0.42);
  background: #f1f5f4;
}

.contact-form .robot-check input {
  flex: 0 0 25px;
  width: 25px;
  min-height: 25px;
  margin: 0;
  padding: 0;
  accent-color: var(--coral-dark);
  cursor: pointer;
}

.robot-check span {
  display: grid;
  gap: 4px;
  align-content: center;
  text-align: left;
}

.robot-check strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.15;
}

.robot-check small {
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 1.2;
  text-transform: uppercase;
}

.contact-form .form-status {
  min-height: 14px;
  margin: -2px 0 -6px;
  color: var(--coral-dark);
  font-size: 12px;
  font-weight: 800;
  text-align: left;
}

.contact-form .button {
  width: 100%;
}

.contact-form > p {
  margin: -6px 0 0;
  color: var(--muted);
  font-size: 11px;
  text-align: center;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 36px 80px;
  align-items: start;
  padding-top: 66px;
  padding-bottom: 44px;
  background: #04172b;
  color: var(--white);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  padding-top: 15px;
  font-size: 12px;
  font-weight: 900;
}

.footer-contact {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  font-style: normal;
}

.footer-contact a {
  display: grid;
  gap: 7px;
  min-width: 0;
  padding: 24px clamp(16px, 3vw, 34px);
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.footer-contact a:first-child {
  padding-left: 0;
}

.footer-contact a:last-child {
  border-right: 0;
}

.footer-contact span {
  color: var(--coral);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.footer-contact strong {
  overflow-wrap: anywhere;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(16px, 2vw, 21px);
  line-height: 1.35;
}

.footer-security {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(170px, 0.28fr) minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  padding: 18px 20px;
  border-left: 3px solid var(--coral);
  background: rgba(255, 255, 255, 0.06);
}

.footer-security strong {
  color: var(--coral);
  font-size: 11px;
  text-transform: uppercase;
}

.footer-security p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  line-height: 1.6;
}

.footer-security a {
  color: var(--white);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.site-footer > p {
  max-width: 760px;
  margin: 0;
  color: rgba(255, 255, 255, 0.56);
  font-size: 11px;
  line-height: 1.65;
}

.site-footer .copyright {
  justify-self: end;
  text-align: right;
}

.powered-by {
  display: block;
  margin-top: 8px;
}

.powered-by a {
  color: var(--coral);
  font-weight: 900;
}

.chatbot {
  position: fixed;
  right: 18px;
  bottom: max(18px, env(safe-area-inset-bottom));
  z-index: 1000;
  display: grid;
  justify-items: end;
}

.chatbot-launcher {
  display: grid;
  place-items: center;
  width: 60px;
  height: 60px;
  padding: 0;
  border: 2px solid var(--navy);
  border-radius: 50%;
  background: var(--coral);
  color: var(--navy);
  box-shadow: 0 14px 30px rgba(4, 23, 43, 0.28);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 30px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 160ms ease, background-color 160ms ease;
}

.chatbot-launcher:hover,
.chatbot-launcher:focus-visible {
  transform: translateY(-2px);
  background: var(--white);
}

.chatbot-panel {
  position: absolute;
  right: 0;
  bottom: 74px;
  display: grid;
  grid-template-rows: auto minmax(70px, 1fr) auto;
  width: min(370px, calc(100vw - 24px));
  max-height: min(620px, calc(100svh - 112px));
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 6px;
  background: var(--white);
  color: var(--ink);
  box-shadow: 0 24px 64px rgba(4, 23, 43, 0.34);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
}

.chatbot.is-open .chatbot-panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.chatbot-header {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  min-height: 74px;
  padding: 14px 16px;
  background: var(--navy);
  color: var(--white);
}

.chatbot-header > div {
  display: grid;
  gap: 4px;
}

.chatbot-header strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
}

.chatbot-header span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.chatbot-close {
  flex: 0 0 38px;
  width: 38px;
  height: 38px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 50%;
  background: transparent;
  color: var(--white);
  font-size: 24px;
  cursor: pointer;
}

.chatbot-messages {
  display: grid;
  gap: 10px;
  align-content: start;
  min-height: 92px;
  overflow-y: auto;
  padding: 18px 16px 10px;
  background: var(--paper);
}

.chatbot-message {
  width: fit-content;
  max-width: 88%;
  margin: 0;
  padding: 11px 13px;
  border-left: 3px solid var(--coral);
  background: var(--white);
  font-size: 13px;
  line-height: 1.55;
}

.chatbot-message.user {
  justify-self: end;
  border-right: 3px solid var(--coral);
  border-left: 0;
  background: var(--navy);
  color: var(--white);
}

.chatbot-options {
  display: grid;
  gap: 8px;
  max-height: 300px;
  overflow-y: auto;
  padding: 12px 16px 16px;
  border-top: 1px solid var(--line);
  background: var(--white);
}

.chatbot-option {
  min-height: 42px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 3px;
  background: var(--white);
  color: var(--ink);
  font: inherit;
  font-size: 12px;
  font-weight: 800;
  text-align: left;
  cursor: pointer;
}

.chatbot-option:hover,
.chatbot-option:focus-visible {
  border-color: var(--coral-dark);
}

.chatbot-option.primary {
  border-color: var(--navy);
  background: var(--navy);
  color: var(--white);
}

@media (max-width: 1260px) {
  .site-header {
    grid-template-columns: auto 1fr auto;
  }

  .desktop-nav,
  .language-switcher,
  .header-phone,
  .header-cta {
    display: none;
  }

  .mobile-toggle {
    display: block;
  }

  .hero h1 {
    font-size: 72px;
  }

  .story-panel h2 {
    font-size: 46px;
  }
}

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

  .hero {
    grid-template-columns: minmax(0, 1fr) minmax(330px, 0.7fr);
    padding-top: 124px;
  }

  .hero h1 {
    font-size: 62px;
  }

  .hero-photo {
    height: min(680px, calc(100svh - 138px));
    min-height: 520px;
  }

  .case-intro {
    grid-template-columns: 54px 1fr;
  }

  .case-intro > p {
    grid-column: 2;
  }

  .case-list article {
    grid-template-columns: 50px 1fr 44px;
    gap: 20px;
  }

  .case-list p {
    grid-column: 2 / 3;
  }

  .case-list article > a {
    grid-column: 3;
    grid-row: 1 / span 2;
  }

  .story-sticky {
    grid-template-columns: minmax(0, 1.05fr) minmax(350px, 0.95fr);
  }

  .process,
  .attorney,
  .faq,
  .contact {
    grid-template-columns: 1fr;
  }

  .process {
    gap: 46px;
  }

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

  .attorney-visual {
    width: min(620px, 100%);
  }

  .faq {
    gap: 42px;
  }
}

@media (max-width: 760px) {
  .hero {
    min-height: 90svh;
    max-height: none;
    grid-template-columns: 1fr;
    align-items: end;
    padding: 108px 18px 38px;
  }

  .hero-crash-slide img {
    object-position: 61% center;
  }

  .hero.is-visual-slide .hero-copy {
    position: absolute;
    inset: auto 18px 38px;
    width: auto;
    padding: 0;
  }

  .hero.is-visual-slide .hero-message {
    display: none;
  }

  .hero.is-visual-slide .hero-rotation {
    margin-top: 0;
  }

  .hero-copy {
    z-index: 4;
    padding-top: 46svh;
  }

  .hero-message {
    min-height: 390px;
  }

  .hero h1 {
    font-size: 54px;
  }

  .hero-lead {
    font-size: 15px;
  }

  .hero-identity {
    position: absolute;
    inset: var(--header-height) 0 auto;
    z-index: 1;
    height: 50svh;
  }

  .hero-photo {
    width: min(430px, calc(100% - 36px));
    min-height: 0;
    height: calc(100% - 8px);
  }

  .hero::after {
    content: "";
    position: absolute;
    inset: 50% 0 0;
    z-index: 2;
    background: rgba(7, 31, 58, 0.92);
  }

  .hero-photo figcaption {
    display: none;
  }

  .scroll-cue {
    display: none;
  }

  .story-section {
    height: auto;
    margin-top: 50px;
  }

  .story-sticky {
    display: none;
  }

  .mobile-story {
    display: block;
    padding: 44px 18px 64px;
    background: var(--navy);
  }

  .mobile-story details {
    width: 100%;
    min-width: 0;
    max-width: 680px;
    margin: 0 auto;
    overflow: hidden;
    border-top: 1px solid var(--light-line);
  }

  .mobile-story details:last-child {
    border-bottom: 1px solid var(--light-line);
  }

  .mobile-story summary {
    display: grid;
    grid-template-columns: 38px minmax(0, 1fr) 34px;
    gap: 12px;
    align-items: center;
    min-height: 72px;
    color: var(--white);
    cursor: pointer;
    list-style: none;
  }

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

  .mobile-story summary > span {
    color: var(--coral);
    font-size: 12px;
    font-weight: 900;
  }

  .mobile-story summary > strong {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 21px;
    font-weight: 500;
  }

  .mobile-story summary > i {
    display: grid;
    width: 32px;
    height: 32px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.32);
    border-radius: 50%;
    color: var(--coral);
    font-size: 18px;
    font-style: normal;
    transition: transform 240ms ease, background-color 240ms ease;
  }

  .mobile-story details[open] summary > i {
    transform: rotate(45deg);
    background: rgba(255, 91, 70, 0.12);
  }

  .mobile-story-content {
    padding: 2px 0 36px;
    animation: mobile-story-reveal 420ms cubic-bezier(0.2, 0.72, 0.2, 1) both;
  }

  @keyframes mobile-story-reveal {
    from {
      transform: translateY(-10px);
      opacity: 0;
    }
    to {
      transform: translateY(0);
      opacity: 1;
    }
  }

  .mobile-story-content > .mobile-story-art {
    width: 100%;
    aspect-ratio: 4 / 3;
    margin-bottom: 25px;
  }

  .mobile-story-art.story-art-impact,
  .mobile-story-art.story-art-evidence,
  .mobile-story-art.story-art-insurance {
    min-width: 0;
    padding: 28px;
  }

  .mobile-story-art.story-art-impact {
    gap: 18px;
  }

  .mobile-story-art.story-art-impact > strong {
    font-size: 118px;
  }

  .mobile-story-art.story-art-impact > div {
    width: min(120px, 42%);
    min-width: 120px;
  }

  .mobile-story-art.story-art-impact span {
    padding: 12px 0;
    font-size: 10px;
  }

  .mobile-story-art.story-art-evidence {
    gap: 22px;
  }

  .mobile-story-art.story-art-evidence > strong {
    font-size: 37px;
  }

  .mobile-story-art.story-art-evidence span {
    min-height: 62px;
    padding: 15px;
    font-size: 10px;
  }

  .mobile-story-art.story-art-insurance {
    border-width: 24px;
  }

  .mobile-story-art.story-art-insurance strong {
    font-size: 36px;
  }

  .mobile-story .mobile-story-overline {
    display: block;
    margin-bottom: 12px;
    color: var(--coral);
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
  }

  .mobile-story h2 {
    margin-bottom: 18px;
    font-size: 38px;
    line-height: 1.03;
  }

  .mobile-story p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
  }

  .mobile-attorney .story-art-strategy {
    position: relative;
    overflow: hidden;
    background: var(--coral);
  }

  .mobile-attorney .story-art-strategy img {
    position: static;
    width: 90px;
    height: 90px;
    transform: none;
  }

  .mobile-attorney .story-art-strategy > strong {
    font-size: 38px;
  }

  .immigration-mark {
    width: 300px;
  }
}

@media (max-width: 560px) {
  :root {
    --header-height: 68px;
  }

  .site-header {
    padding: 8px 14px;
  }

  .brand img {
    width: 50px;
    height: 48px;
  }

  .brand strong {
    font-size: 18px;
  }

  .brand small {
    display: none;
  }

  .mobile-toggle {
    width: 42px;
    height: 42px;
  }

  .hero {
    min-height: 96svh;
    padding: 82px 18px 24px;
  }

  .hero-copy {
    padding-top: 34svh;
  }

  .hero-message {
    min-height: 360px;
  }

  .hero h1 {
    margin-bottom: 20px;
    font-size: 42px;
    line-height: 0.9;
  }

  .hero-lead {
    line-height: 1.55;
  }

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

  .hero-actions .button,
  .hero-actions .text-link {
    flex: 1 1 0;
    width: auto;
    min-width: 0;
    font-size: 10px;
  }

  .hero-actions .text-link {
    justify-content: center;
    text-align: center;
  }

  .hero-identity {
    height: 36svh;
  }

  .case-intro {
    grid-template-columns: 1fr;
    gap: 18px;
    padding-top: 70px;
    padding-bottom: 50px;
  }

  .case-intro > p {
    grid-column: auto;
  }

  .section-number {
    font-size: 38px;
  }

  .section-heading h2,
  .process h2,
  .immigration h2,
  .attorney h2,
  .faq h2,
  .contact h2 {
    font-size: 41px;
  }

  .case-list article {
    grid-template-columns: 34px 1fr 40px;
    min-height: 0;
    padding: 27px 18px;
  }

  .case-list h3 {
    font-size: 23px;
  }

  .case-list p {
    font-size: 14px;
  }

  .case-list article > a {
    width: 40px;
    height: 40px;
  }

  .process,
  .immigration,
  .attorney,
  .faq,
  .contact {
    padding-top: 76px;
    padding-bottom: 76px;
  }

  .process-steps article {
    grid-template-columns: 42px 1fr;
  }

  .process-steps p {
    grid-column: 2;
    font-size: 14px;
  }

  .attorney-visual {
    min-height: 500px;
  }

  .attorney-mark img {
    width: 78px;
    height: 78px;
    margin-bottom: 24px;
  }

  .attorney-mark strong {
    font-size: 84px;
  }

  .attorney-lead {
    font-size: 20px;
  }

  .attorney-facts div {
    grid-template-columns: 82px 1fr;
  }

  .faq summary {
    font-size: 15px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-form {
    padding: 20px 16px;
  }

  .contact-details a {
    grid-template-columns: 70px 1fr;
  }

  .site-footer {
    grid-template-columns: 1fr;
    padding-top: 54px;
  }

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

  .footer-contact a,
  .footer-contact a:first-child {
    padding: 18px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .footer-contact a:last-child {
    border-bottom: 0;
  }

  .footer-security {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 16px;
  }

  .site-footer .copyright {
    justify-self: start;
    text-align: left;
  }

  .chatbot {
    right: 12px;
    bottom: max(12px, env(safe-area-inset-bottom));
  }

  .chatbot-launcher {
    width: 54px;
    height: 54px;
  }

  .chatbot-panel {
    bottom: 66px;
    max-height: calc(100svh - 92px);
  }
}

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

  .hero-copy,
  .hero-identity,
  .story-frame {
    transform: none !important;
  }
}
