:root {
  --blue: #023f80;
  --blue-dark: #062e5f;
  --blue-soft: #eef5fb;
  --orange: #f19200;
  --ink: #1f2933;
  --text: #34404b;
  --muted: #65717d;
  --line: #d8e0e7;
  --paper: #ffffff;
  --soft: #f6f8fa;
  --max: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 17px;
  line-height: 1.62;
}

body.modal-open {
  overflow: hidden;
}

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

a {
  color: var(--blue);
  text-underline-offset: .18em;
}

a:hover,
a:focus {
  color: var(--blue-dark);
}

:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 1000;
  padding: .65rem 1rem;
  background: var(--blue-dark);
  color: #fff;
}

.skip-link:focus {
  top: 1rem;
}

.shell {
  width: min(100%, var(--max));
  margin: 0 auto;
}

.site-header {
  background: #fff;
  border-bottom: 1px solid #09417c;
}

.header-inner {
  width: min(100%, 1024px);
  min-height: 104px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  flex: 0 0 auto;
}

.brand img {
  display: block;
  width: min(300px, 58vw);
}

.header-actions {
  display: grid;
  gap: 10px;
  justify-items: end;
}

.header-phone {
  color: var(--blue);
  font-weight: 700;
  text-decoration: none;
}

.main-nav {
  display: flex;
  justify-content: flex-end;
}

.menu-toggle {
  display: none;
  min-height: 46px;
  border: 1px solid var(--blue);
  background: var(--blue);
  color: #fff;
  padding: .55rem .9rem;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 2px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-list a {
  display: flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: .45rem .9rem;
  color: var(--ink);
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  border-bottom: 3px solid transparent;
}

.nav-list a:hover,
.nav-list a[aria-current="page"] {
  color: var(--blue);
  border-color: var(--orange);
}

.nav-list .arcadia-nav-link {
  min-width: 118px;
  padding: .35rem .55rem;
}

.arcadia-nav-link img {
  display: block;
  width: 112px;
  max-height: 34px;
  object-fit: contain;
}

main {
  min-height: 60vh;
}

.section {
  padding: 42px 24px;
}

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

.page-hero {
  padding: 34px 24px;
  background: linear-gradient(180deg, #fff 0%, var(--blue-soft) 100%);
  border-bottom: 1px solid var(--line);
}

.home-main {
  margin: 0 0 5rem;
  font-family: system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
}

.home-cover {
  position: relative;
  min-height: 650px;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 82px 0 134px;
  background: var(--blue-dark);
}

.home-cover::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(2, 16, 35, .96) 0%, rgba(2, 35, 72, .9) 34%, rgba(2, 63, 128, .42) 62%, rgba(2, 63, 128, .08) 100%);
  pointer-events: none;
}

.home-cover-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: block;
}

.home-cover-media img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: 74% center;
  transform-origin: center right;
  animation: heroImageDrift 18s ease-in-out infinite alternate;
}

.home-cover-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
  color: #fff;
}

.home-cover h1 {
  color: #fff;
  max-width: 780px;
  font-size: clamp(2.7rem, 4.8vw, 4.1rem);
  line-height: 1.06;
  text-transform: none;
}

.home-cover .eyebrow {
  color: #ffb94a;
  max-width: 520px;
  margin-bottom: .72rem;
  font-size: .96rem;
  line-height: 1.4;
}

.home-cover p {
  max-width: 620px;
  font-size: 1.16rem;
}

.home-cover .intro-actions {
  justify-content: flex-start;
  margin: 2.05rem 0 0;
}

.home-cover .home-cover-description {
  max-width: 640px;
  margin: 1.8rem 0 0;
  padding-left: 18px;
  border-left: 3px solid var(--orange);
  color: rgba(255, 255, 255, .88);
  font-size: 1.04rem;
  line-height: 1.55;
}

.home-cover .button {
  min-width: 168px;
}

.home-cover .hero-primary {
  border-color: var(--orange);
  background: var(--orange);
  color: #102033;
}

.home-cover .hero-primary:hover,
.home-cover .hero-primary:focus {
  border-color: #ffad30;
  background: #ffad30;
  color: #102033;
}

.home-cover .hero-secondary {
  border-color: rgba(255, 255, 255, .86);
  background: transparent;
  color: #fff;
}

.home-cover .hero-secondary:hover,
.home-cover .hero-secondary:focus {
  border-color: #fff;
  background: rgba(255, 255, 255, .12);
  color: #fff;
}

.home-cover .button:focus-visible {
  outline: 3px solid #ffb94a;
  outline-offset: 4px;
}

@keyframes heroImageDrift {
  from {
    transform: scale(1);
  }

  to {
    transform: scale(1.04);
  }
}

.home-numbers {
  padding: 46px 0;
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 68%, #0d5aa0 100%);
  color: #fff;
}

.home-numbers .home-section-shell {
  display: grid;
  grid-template-columns: minmax(320px, 440px) minmax(0, 1fr);
  gap: 36px;
  align-items: center;
}

.home-numbers-heading h2 {
  color: #fff;
  font-size: clamp(1.5rem, 2.1vw, 1.9rem);
  line-height: 1.16;
}

.home-numbers-heading .eyebrow {
  color: #ffb94a;
}

.home-numbers-heading p:not(.eyebrow) {
  max-width: 430px;
  color: rgba(255, 255, 255, .82);
  font-size: 1rem;
  line-height: 1.62;
}

.home-numbers-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 20px 20px;
  align-items: end;
}

.home-number-item {
  position: relative;
  display: grid;
  gap: .55rem;
  align-content: start;
  justify-items: start;
  padding-top: 14px;
}

.home-number-item::before {
  content: "";
  width: 38px;
  height: 3px;
  background: #ffb94a;
}

.home-number-item:nth-child(1) {
  grid-column: 1 / span 6;
}

.home-number-item:nth-child(2) {
  grid-column: 7 / span 6;
}

.home-number-item:nth-child(3) {
  grid-column: 2 / span 5;
}

.home-number-item:nth-child(4) {
  grid-column: 7 / span 5;
}

.home-number-item strong {
  display: block;
  color: #fff;
  font-size: clamp(2.3rem, 3.8vw, 3.6rem);
  line-height: 1;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0;
}

.home-number-item > span {
  display: block;
  max-width: 190px;
  color: rgba(255, 255, 255, .86);
  font-size: .95rem;
  line-height: 1.4;
  font-weight: 600;
}

.home-section-shell {
  width: min(100%, 1180px);
  margin: 0 auto;
  padding: 0 24px;
}

.home-info-band {
  position: relative;
  z-index: 3;
  margin-top: -48px;
  background: transparent;
  color: #fff;
}

.home-info-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  padding-top: 24px;
  padding-bottom: 24px;
  background: var(--blue);
}

.home-info-item {
  min-height: 104px;
  display: grid;
  align-content: center;
  gap: .22rem;
  padding: 0 26px;
  border-left: 1px solid rgba(255, 255, 255, .38);
}

.home-info-item:first-child {
  border-left: 0;
}

.home-info-item strong {
  display: block;
  color: #fff;
  font-size: 1.28rem;
  line-height: 1.2;
}

.home-info-item span {
  color: rgba(255, 255, 255, .94);
  font-size: 1rem;
  line-height: 1.5;
}

.home-services {
  padding: 48px 0;
  background: #f6f8fa;
}

.home-services .home-section-shell {
  width: min(100%, 1240px);
}

.home-section-heading {
  max-width: 760px;
  margin-bottom: 24px;
}

.home-service-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.home-service-card {
  display: grid;
  gap: .7rem;
  min-height: 238px;
  height: 100%;
  align-content: start;
  padding: 24px 21px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--text);
  text-decoration: none;
}

.home-service-card:hover,
.home-service-card:focus {
  color: var(--blue);
  border-color: var(--blue);
  text-decoration: none;
}

.home-service-icon {
  width: 54px;
  height: 54px;
  fill: none;
  stroke: var(--blue);
  stroke-width: 2.25;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.home-service-card span {
  color: var(--ink);
  font-size: 1.08rem;
  font-weight: 700;
  line-height: 1.25;
}

.home-service-card p {
  margin: 0;
  color: var(--muted);
  font-size: .98rem;
  line-height: 1.5;
}

.home-values {
  padding: 96px 0;
  background: #fff;
}

.home-values .home-section-shell {
  display: block;
}

.home-values-intro {
  max-width: 760px;
  margin: 0 auto 58px;
  text-align: center;
}

.home-values-intro p:not(.eyebrow) {
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.66;
}

.home-values-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 34px;
  align-items: start;
}

.home-value-item {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 14px;
  padding: 8px 10px;
  text-align: center;
  transition: color .28s ease, transform .28s ease;
}

.home-value-icon {
  width: 50px;
  height: 50px;
  fill: none;
  stroke: var(--blue);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transform-origin: 50% 50%;
  transition: transform .65s cubic-bezier(.22, 1, .36, 1), stroke .28s ease;
}

.home-value-item h3 {
  color: var(--blue);
  margin: .15rem 0 0;
  font-size: 1.24rem;
  font-weight: 800;
  line-height: 1.25;
}

.home-value-item p {
  margin: 0;
  color: var(--muted);
  font-size: 1.03rem;
  line-height: 1.56;
}

.home-value-item:hover,
.home-value-item:focus-within {
  transform: translateY(-4px);
}

.home-value-item:hover .home-value-icon,
.home-value-item:focus-within .home-value-icon {
  stroke: var(--orange);
  transform: rotate(14deg);
}

.home-studio {
  padding: 92px 0;
  background: var(--blue-soft);
}

.home-studio-layout {
  display: grid;
  grid-template-columns: minmax(360px, 560px) minmax(0, 1fr);
  gap: 74px;
  align-items: center;
}

.home-studio-image {
  margin: 0;
}

.home-studio-image-empty {
  min-height: min(600px, 56vw);
  background: #fff;
}

.home-studio-image img {
  display: block;
  width: 100%;
  height: min(600px, 56vw);
  object-fit: cover;
  object-position: center 34%;
}

.home-studio-image img.mobile-studio-photo {
  display: none;
}

.home-studio-content {
  max-width: 690px;
}

.home-studio-content p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.68;
}

.home-studio-content .button {
  min-height: 52px;
  padding: .9rem 1.35rem;
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
}

.home-studio-content .button:hover,
.home-studio-content .button:focus {
  background: var(--blue-dark);
  border-color: var(--blue-dark);
  color: #fff;
}

.home-history {
  padding: 44px 0;
  background: #fff;
}

.home-history .home-section-shell {
  width: min(100%, 1120px);
}

.home-history-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.home-history p {
  max-width: 560px;
}

.home-history-copy {
  max-width: 760px;
}

.home-history-years {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px 18px;
  align-items: start;
}

.home-year-card {
  position: relative;
  display: grid;
  gap: 12px;
  overflow: visible;
  padding-top: 14px;
  background-image: linear-gradient(var(--line), var(--line));
  background-repeat: no-repeat;
  background-position: top left;
  background-size: calc(100% + 26px) 1px;
  background-color: transparent;
  color: var(--blue);
  text-decoration: none;
}

.home-year-card:nth-child(3n) {
  background-size: 100% 1px;
}

.home-year-card::before {
  content: "";
  position: absolute;
  top: -5px;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 5px #fff;
}

.home-year-logo {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 448 / 246;
  overflow: hidden;
}

.home-year-card img {
  position: absolute;
  inset: 0 auto auto 0;
  display: block;
  width: 300%;
  max-width: none;
  height: 200%;
  object-fit: fill;
}

.home-year-card.year-1978 img {
  left: 0;
  top: 0;
}

.home-year-card.year-1983 img {
  left: -100%;
  top: 0;
}

.home-year-card.year-1990 img {
  left: -200%;
  top: 0;
}

.home-year-card.year-2002 img {
  left: 0;
  top: -100%;
}

.home-year-card.year-2013 img {
  left: -100%;
  top: -100%;
}

.home-year-card.year-2015 img {
  left: -200%;
  top: -100%;
}

.home-year-card > span:first-child {
  position: relative;
  z-index: 1;
  display: inline-flex;
  width: max-content;
  min-height: 26px;
  align-items: center;
  padding: 0;
  background: #fff;
  color: var(--blue);
  font-size: 1.05rem;
  font-weight: 800;
}

.home-year-card .home-year-logo {
  display: block;
  width: 100%;
  min-height: 0;
  align-items: initial;
  padding: 0;
  background: transparent;
}

.home-year-card:hover,
.home-year-card:focus {
  outline: 3px solid var(--orange);
  outline-offset: 4px;
}

.home-main .home-contact {
  width: min(100% - 48px, 1180px);
  margin: 46px auto 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px 36px;
  align-items: center;
  padding: 40px 0;
  border-top: 1px solid var(--line);
  background: transparent;
  color: var(--text);
  text-align: left;
}

.home-main .home-contact h2 {
  position: relative;
  color: var(--ink);
  margin-bottom: .75rem;
  font-size: clamp(1.85rem, 2.6vw, 2.45rem);
}

.home-main .home-contact h2::before {
  content: "";
  display: block;
  width: 42px;
  height: 3px;
  margin-bottom: .9rem;
  background: var(--orange);
}

.home-main .home-contact p {
  max-width: 620px;
  margin: .25rem 0;
  color: var(--muted);
}

.home-contact-copy .eyebrow {
  color: var(--orange);
}

.home-contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
  justify-content: flex-end;
}

.home-main .home-contact .button {
  min-width: 178px;
  min-height: 50px;
}

.home-contact-primary {
  border-color: var(--blue);
  background: var(--blue);
  color: #fff;
}

.home-contact-primary:hover,
.home-contact-primary:focus {
  border-color: var(--blue-dark);
  background: var(--blue-dark);
  color: #fff;
}

.home-contact-secondary {
  border-color: var(--blue);
  background: #fff;
  color: var(--blue);
}

.home-contact-secondary:hover,
.home-contact-secondary:focus {
  border-color: var(--blue-dark);
  background: var(--blue-soft);
  color: var(--blue-dark);
}

.home-contact-note {
  grid-column: 1 / -1;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  font-size: .98rem;
}

.home-hero {
  padding: 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
  gap: 48px;
  align-items: center;
}

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

.eyebrow {
  margin: 0 0 .65rem;
  color: var(--orange);
  font-weight: 700;
  letter-spacing: .03em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--ink);
  line-height: 1.16;
}

h1 {
  font-size: clamp(1.85rem, 3vw, 2.35rem);
}

h2,
.section-title {
  font-size: clamp(1.45rem, 2.2vw, 1.9rem);
}

h3 {
  font-size: 1.3rem;
}

.lead {
  max-width: 760px;
  color: var(--muted);
  font-size: 1.14rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
  margin-top: 1.6rem;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: .72rem 1.1rem;
  border: 1px solid var(--blue);
  background: var(--blue);
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
}

.clean-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 400px;
  gap: 54px;
  align-items: start;
  margin-top: 34px;
  padding: 0 0 24px;
}

.intro-text h1 {
  color: #000;
  font-weight: 500;
  text-align: center;
  text-transform: uppercase;
}

.intro-text p {
  font-size: 1.06rem;
}

.intro-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem;
  justify-content: center;
}

.years-panel {
  display: grid;
  gap: .8rem;
}

.history-image-map {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #fff;
}

.years-main-image {
  display: block;
  width: 100%;
}

.year-hotspot {
  position: absolute;
  display: block;
  border: 3px solid transparent;
  background: rgba(2, 63, 128, 0);
  transition: background .18s ease, border-color .18s ease;
}

.year-hotspot span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.year-hotspot:hover,
.year-hotspot:focus-visible {
  border-color: var(--orange);
  background: rgba(2, 63, 128, .08);
}

.year-hotspot.year-1978 {
  left: 0;
  top: 0;
  width: 29.5%;
  height: 43.5%;
}

.year-hotspot.year-1983 {
  left: 34.2%;
  top: 0;
  width: 29.7%;
  height: 43.5%;
}

.year-hotspot.year-1990 {
  left: 68%;
  top: 0;
  width: 32%;
  height: 43.5%;
}

.year-hotspot.year-2002 {
  left: 0;
  top: 50%;
  width: 29.5%;
  height: 43.5%;
}

.year-hotspot.year-2013 {
  left: 34.2%;
  top: 50%;
  width: 29.7%;
  height: 43.5%;
}

.year-hotspot.year-2015 {
  left: 68%;
  top: 50%;
  width: 32%;
  height: 43.5%;
}

.clean-banner {
  margin-top: 1.5rem;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.clean-banner img {
  display: block;
  width: 100%;
}

.banner-caption {
  padding: .75rem 1rem;
  background: var(--blue);
  color: #fff;
  text-align: center;
}

.button:hover,
.button:focus {
  background: var(--blue-dark);
  color: #fff;
  text-decoration: none;
}

.button.secondary,
.button.light {
  background: #fff;
  color: var(--blue);
}

.button.secondary:hover,
.button.secondary:focus,
.button.light:hover,
.button.light:focus {
  background: var(--blue-soft);
  color: var(--blue-dark);
}

.hero-image,
.image-panel {
  margin: 0;
}

.hero-image img,
.image-panel img {
  display: block;
  width: 100%;
  border: 1px solid var(--line);
}

.section-heading {
  max-width: 820px;
  margin-bottom: 28px;
}

.clean-gallery {
  display: block;
  margin-top: 34px;
}

.clean-gallery h2 {
  text-align: center;
}

.section-note {
  text-align: center;
  color: var(--muted);
}

.section-heading p {
  color: var(--muted);
}

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

.simple-links,
.home-contact {
  margin: 34px 0 0;
  padding: 24px;
  border-top: 1px solid var(--line);
  text-align: center;
}

.service-card,
.contact-card,
.form-panel,
.page-index,
.service-section,
.map-panel,
.policy-panel {
  border: 1px solid var(--line);
  background: #fff;
}

.service-card {
  padding: 26px;
}

.service-card h3 {
  color: var(--blue);
  margin-bottom: .8rem;
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: 42px;
  align-items: center;
}

.owner-profile {
  padding-top: 72px;
  padding-bottom: 72px;
}

.owner-profile-layout {
  grid-template-columns: minmax(0, 1fr) minmax(340px, 460px);
  gap: 64px;
  align-items: center;
}

.owner-profile-copy {
  max-width: 720px;
  gap: 18px;
  align-content: center;
}

.owner-profile-copy .eyebrow {
  margin-bottom: .2rem;
}

.owner-profile-copy h2 {
  margin: 0;
  color: var(--blue);
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.12;
}

.owner-profile-copy .lead {
  max-width: 660px;
  margin: .25rem 0 .35rem;
  color: var(--ink);
  font-size: clamp(1.08rem, 1.5vw, 1.22rem);
  line-height: 1.58;
}

.owner-profile-copy p:not(.eyebrow):not(.lead) {
  max-width: 650px;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.64;
}

.owner-profile-button {
  margin-top: .4rem;
  background: var(--blue);
  border-color: var(--blue);
  color: #fff;
}

.owner-profile-button:hover,
.owner-profile-button:focus {
  background: var(--blue-dark);
  border-color: var(--blue-dark);
  color: #fff;
}

.owner-profile-image img {
  height: min(520px, 52vw);
  object-fit: cover;
  object-position: center top;
}

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

.gallery-item {
  border: 0;
  padding: 0;
  background: #fff;
  color: var(--ink);
  font: inherit;
  text-align: left;
  cursor: pointer;
  box-shadow: 0 0 0 1px var(--line);
}

.gallery-item-empty {
  cursor: default;
}

.gallery-item-empty::before {
  content: "";
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  background: #fff;
}

.gallery-item img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.gallery-item span {
  display: block;
  min-height: 52px;
  padding: .65rem .8rem;
  font-weight: 700;
}

.contact-cta {
  background: var(--blue-soft);
}

.cta-box {
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
  border-left: 5px solid var(--orange);
  background: #fff;
  padding: 28px;
}

.content-layout {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

.page-index {
  position: sticky;
  top: 16px;
  display: grid;
  gap: 8px;
  padding: 18px;
}

.page-index a {
  min-height: 42px;
  display: flex;
  align-items: center;
  font-weight: 700;
}

.content-flow {
  display: grid;
  gap: 22px;
}

.content-flow p {
  margin: 0;
}

.content-flow h2 {
  color: var(--blue);
  margin-top: .4rem;
}

.content-flow ul {
  margin: 0;
  padding-left: 1.35rem;
}

.service-section {
  padding: 28px;
}

.service-detail-toggle {
  display: none;
}

.timeline {
  display: grid;
  gap: 14px;
}

.timeline-item {
  display: block;
  border-left: 4px solid var(--orange);
  background: #fff;
  padding: 20px 24px;
  scroll-margin-top: 24px;
}

.timeline-item h3 {
  color: var(--blue);
  margin-bottom: .55rem;
  font-size: 1.55rem;
}

.timeline-item p {
  margin: 0;
}

.timeline-item p + p {
  margin-top: .8rem;
}

.contact-top {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.contact-card {
  display: grid;
  gap: .42rem;
  align-content: start;
  min-height: 150px;
  padding: 20px 19px;
  border-top: 3px solid var(--line);
}

.contact-card span,
.contact-card small {
  display: block;
  color: var(--muted);
}

.contact-card span {
  font-weight: 700;
  text-transform: uppercase;
  font-size: .8rem;
  letter-spacing: .03em;
}

.contact-card a,
.contact-card strong {
  display: block;
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.38;
}

.contact-card.featured {
  border-color: var(--blue);
  background: var(--blue);
  color: #fff;
}

.contact-card.featured a {
  color: #fff;
  font-size: 1.26rem;
  font-weight: 700;
}

.contact-card.featured span,
.contact-card.featured small {
  color: rgba(255, 255, 255, .82);
}

.contact-card-icon {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: var(--orange);
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(280px, 370px) minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

.contact-info {
  padding: 24px;
  background: #fff;
  border: 1px solid var(--line);
}

.contact-info h2,
.form-panel h2 {
  margin-bottom: .6rem;
  color: var(--blue);
}

.contact-info > p {
  margin-top: 0;
  color: var(--muted);
}

.contact-picker {
  display: grid;
  gap: .55rem;
}

.contact-picker-item {
  padding: 12px 14px;
  border: 1px solid var(--line);
  background: #fff;
}

.contact-picker-item:focus-within,
.contact-picker-item:hover {
  border-color: var(--blue);
}

.contact-picker button {
  border: 0;
  padding: 0;
  background: transparent;
  color: var(--blue);
  font: inherit;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
}

.contact-picker p {
  margin: .25rem 0 0;
  color: var(--muted);
  font-size: .9rem;
  line-height: 1.38;
}

.form-panel,
.map-panel,
.policy-panel {
  padding: 24px;
}

.form-grid {
  display: grid;
  gap: .85rem;
}

.form-grid > .button[type="submit"] {
  justify-self: start;
  min-width: 150px;
  border-color: var(--orange);
  background: var(--orange);
  color: #102033;
}

.form-grid > .button[type="submit"]:hover,
.form-grid > .button[type="submit"]:focus {
  border-color: #ffad30;
  background: #ffad30;
  color: #102033;
}

.field {
  display: grid;
  gap: .32rem;
}

.field label,
.field legend {
  font-weight: 700;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #aeb8c2;
  min-height: 44px;
  padding: .62rem .72rem;
  background: #fff;
  color: var(--ink);
  font: inherit;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--blue);
  outline: 3px solid rgba(241, 146, 0, .28);
  outline-offset: 1px;
}

textarea {
  min-height: 132px;
  resize: vertical;
}

.radio-row {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem 1rem;
}

.radio-row label {
  display: flex;
  gap: .4rem;
  align-items: center;
  min-height: 36px;
  padding: .35rem .55rem;
  border: 1px solid var(--line);
  background: #fff;
  font-weight: 400;
}

.radio-row input {
  width: auto;
  min-height: auto;
}

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

.privacy-note {
  color: var(--muted);
  font-size: .9rem;
  line-height: 1.42;
}

.form-message {
  min-height: 1.5rem;
  margin: 0;
  color: var(--blue);
  font-weight: 700;
}

.form-message.is-error {
  color: #9e1b1b;
}

.map-panel {
  display: grid;
  grid-template-columns: minmax(240px, 340px) minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  text-align: left;
  background: linear-gradient(135deg, #eef5fb, #fff);
}

.map-copy h2 {
  margin-bottom: .65rem;
  color: var(--blue);
}

.map-copy p {
  color: var(--muted);
}

.map-copy strong {
  color: var(--ink);
  font-size: 1rem;
}

.map-frame {
  display: grid;
  place-content: center;
  gap: .45rem;
  overflow: hidden;
  min-height: 340px;
  padding: 26px;
  border: 1px solid var(--line);
  background: #fff;
  text-align: center;
}

.map-placeholder p {
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
}

.policy-panel {
  max-width: 900px;
}

.site-footer {
  background: #06243f;
  border-top: 3px solid var(--orange);
  color: rgba(255, 255, 255, .88);
}

.footer-inner {
  margin: 0 auto;
  padding: 34px 24px 0;
}

.footer-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(280px, 1.2fr) minmax(160px, .7fr) minmax(260px, 1fr);
  gap: 36px;
}

.footer-brand img {
  display: block;
  width: min(240px, 72vw);
  margin-bottom: .95rem;
}

.footer-brand p,
.footer-column li,
.footer-bottom p {
  margin: 0;
  font-size: .96rem;
  line-height: 1.5;
}

.footer-tagline {
  margin-top: .6rem !important;
  color: #ffb94a;
  font-weight: 700;
}

.footer-column h2 {
  color: #fff;
  margin-bottom: .8rem;
  font-size: 1rem;
  text-transform: uppercase;
}

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

.footer-column a,
.footer-bottom a {
  color: rgba(255, 255, 255, .9);
  text-decoration: none;
}

.footer-column a:hover,
.footer-column a:focus,
.footer-bottom a:hover,
.footer-bottom a:focus {
  color: #ffb94a;
}

.footer-bottom {
  margin: 28px -24px 0;
  display: flex;
  flex-wrap: wrap;
  gap: .55rem 1rem;
  align-items: center;
  justify-content: space-between;
  padding: 14px max(24px, calc((100vw - 1180px) / 2 + 24px)) 16px;
  border-top: 1px solid rgba(255, 255, 255, .15);
  background: rgba(0, 0, 0, .22);
}

.footer-bottom p {
  color: rgba(255, 255, 255, .82);
}

.footer-bottom nav {
  display: flex;
  flex-wrap: wrap;
  gap: .45rem .9rem;
}

.maintenance-banner {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  background: rgba(6, 30, 56, .58);
  backdrop-filter: blur(3px);
}

.maintenance-banner.is-visible {
  display: flex;
  animation: maintenanceOverlayIn .3s ease both;
}

.maintenance-banner-card {
  position: relative;
  max-width: 420px;
  width: 100%;
  padding: 2.6rem 2.4rem 2.3rem;
  background: linear-gradient(180deg, #fff 0%, #fff 60%, var(--blue-soft) 160%);
  border-radius: 22px;
  overflow: hidden;
  color: var(--blue-dark);
  text-align: center;
  box-shadow: 0 30px 70px rgba(6, 46, 95, .32);
  animation: maintenanceCardIn .4s cubic-bezier(.22, 1, .36, 1) both;
}

.maintenance-banner-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--blue) 0%, var(--orange) 100%);
}

.maintenance-banner-icon {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  margin-bottom: 1.1rem;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--blue) 0%, var(--blue-dark) 100%);
  box-shadow: 0 10px 24px rgba(2, 63, 128, .35);
}

.maintenance-banner-icon-ring {
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 1.5px solid var(--orange);
  opacity: .55;
  animation: maintenanceRingPulse 2.4s ease-out infinite;
}

.maintenance-banner-icon svg {
  position: relative;
  width: 28px;
  height: 28px;
  fill: none;
  stroke: #fff;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.maintenance-banner-card .eyebrow {
  margin: 0 0 .3rem;
  font-size: .78rem;
}

.maintenance-banner-title {
  margin: 0 0 .55rem;
  font-size: 1.32rem;
  font-weight: 800;
  color: var(--blue-dark);
}

.maintenance-banner-text {
  position: relative;
  margin: 0;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--muted);
}

.maintenance-banner-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border: none;
  border-radius: 50%;
  background: var(--blue-soft);
  cursor: pointer;
  transition: background .2s ease, transform .2s ease;
}

.maintenance-banner-close svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: var(--blue-dark);
  stroke-width: 2.4;
  stroke-linecap: round;
}

.maintenance-banner-close:hover,
.maintenance-banner-close:focus-visible {
  background: var(--orange);
  transform: rotate(90deg);
}

.maintenance-banner-close:hover svg,
.maintenance-banner-close:focus-visible svg {
  stroke: #fff;
}

@keyframes maintenanceOverlayIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes maintenanceCardIn {
  from { opacity: 0; transform: translateY(18px) scale(.94); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes maintenanceRingPulse {
  0% { transform: scale(.85); opacity: .6; }
  70% { transform: scale(1.25); opacity: 0; }
  100% { transform: scale(1.25); opacity: 0; }
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  background: rgba(0, 0, 0, .82);
}

.lightbox.is-open {
  display: flex;
}

.lightbox figure {
  margin: 0;
}

.lightbox img {
  max-height: 82vh;
  width: auto;
  box-shadow: 0 8px 30px rgba(0, 0, 0, .5);
}

.lightbox-caption {
  margin-top: .75rem;
  color: #fff;
  text-align: center;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  border: 1px solid #fff;
  background: rgba(2, 63, 128, .9);
  color: #fff;
  cursor: pointer;
}

.lightbox-close {
  top: 1rem;
  right: 1rem;
  width: 46px;
  height: 46px;
  font-size: 1.35rem;
}

.lightbox-prev,
.lightbox-next {
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 58px;
  font-size: 1.6rem;
}

.lightbox-prev {
  left: 1rem;
}

.lightbox-next {
  right: 1rem;
}

@media (max-width: 960px) {
  .header-inner {
    display: grid;
    gap: 12px;
    padding: 16px 20px;
  }

  .header-actions {
    justify-items: stretch;
  }

  .main-nav {
    display: block;
  }

  .menu-toggle {
    display: block;
    width: 100%;
  }

  .nav-list {
    display: none;
    background: var(--blue);
  }

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

  .nav-list a {
    justify-content: flex-start;
    color: #fff;
    border-bottom: 1px solid rgba(255, 255, 255, .35);
  }

  .nav-list a:hover,
  .nav-list a[aria-current="page"] {
    color: #fff;
    background: var(--blue-dark);
  }

  .home-cover {
    min-height: 580px;
    padding: 72px 0 96px;
  }

  .home-cover h1 {
    font-size: clamp(2.35rem, 6vw, 3.35rem);
  }

  .home-cover-media img {
    object-position: 68% center;
  }

  .home-info-band {
    margin-top: -36px;
  }

  .home-numbers .home-section-shell {
    grid-template-columns: 1fr;
  }

  .home-numbers-heading p:not(.eyebrow) {
    max-width: 620px;
  }

  .home-numbers-grid,
  .home-values-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-values .home-section-shell {
    display: block;
  }

  .home-values-intro {
    max-width: 680px;
    margin-bottom: 38px;
  }

  .home-number-item:nth-child(n) {
    grid-column: auto;
  }

  .clean-intro,
  .home-history-grid,
  .home-studio-layout,
  .hero-grid,
  .split-layout,
  .content-layout,
  .contact-layout,
  .map-panel {
    grid-template-columns: 1fr;
  }

  .page-index {
    position: static;
  }

  .contact-top {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .map-frame,
  .gallery-grid,
  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-info-grid,
  .home-service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-info-item:nth-child(odd) {
    border-left: 0;
  }

  .home-history-grid {
    gap: 28px;
  }

  .owner-profile {
    padding-top: 56px;
    padding-bottom: 56px;
  }

  .owner-profile-layout {
    gap: 34px;
  }

  .owner-profile-image img {
    height: 420px;
  }

  .home-history-years {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-year-card:nth-child(n) {
    background-size: calc(100% + 26px) 1px;
  }

  .home-year-card:nth-child(2n) {
    background-size: 100% 1px;
  }

  .home-main .home-contact {
    grid-template-columns: 1fr;
    gap: 28px;
    align-items: flex-start;
  }

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

@media (max-width: 620px) {
  body {
    font-size: 17px;
  }

  .section,
  .page-hero {
    padding-left: 18px;
    padding-right: 18px;
  }

  .home-cover {
    min-height: 620px;
    padding: 58px 0;
  }

  .home-cover::after {
    background: linear-gradient(180deg, rgba(2, 22, 45, .92) 0%, rgba(2, 47, 93, .86) 56%, rgba(2, 63, 128, .72) 100%);
  }

  .home-cover-media img {
    object-position: 68% center;
    animation: none;
  }

  .home-cover-content {
    max-width: 100%;
  }

  .home-cover h1 {
    font-size: clamp(2.08rem, 10vw, 2.65rem);
  }

  .home-cover p {
    font-size: 1.02rem;
  }

  .home-cover .eyebrow {
    font-size: .9rem;
  }

  .home-cover .intro-actions {
    display: grid;
    margin-top: 1.6rem;
  }

  .home-cover .button {
    width: 100%;
  }

  .home-cover .home-cover-description {
    max-width: 100%;
    margin-top: 1.25rem;
    padding-left: 14px;
    font-size: .94rem;
    line-height: 1.5;
  }

  .home-section-shell {
    padding-left: 20px;
    padding-right: 20px;
  }

  .brand img {
    width: min(240px, 78vw);
  }

  .home-info-grid {
    grid-template-columns: 1fr;
  }

  .home-info-band {
    margin-top: 0;
    background: var(--blue);
  }

  .home-info-grid {
    box-shadow: none;
  }

  .home-info-item,
  .home-info-item:nth-child(odd) {
    min-height: auto;
    padding: 16px 0;
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, .36);
  }

  .home-info-item:first-child {
    border-top: 0;
  }

  .home-services,
  .home-values,
  .home-history,
  .home-studio {
    padding: 34px 0;
  }

  .home-numbers {
    margin-top: 0;
    padding: 38px 0;
    background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 100%);
  }

  .home-numbers-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px 20px;
  }

  .home-number-item {
    min-height: auto;
    padding: 8px 0 0;
    border-left: 0;
    border-top: 0;
  }

  .home-number-item strong {
    font-size: clamp(2.1rem, 11vw, 2.85rem);
  }

  .home-service-grid {
    grid-template-columns: 1fr;
  }

  .home-service-card {
    min-height: auto;
  }

  .home-values-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 26px 22px;
  }

  .home-studio-image-empty,
  .home-studio-image img {
    min-height: 300px;
    height: 300px;
  }

  .home-history-years {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px 18px;
  }

  .home-year-card {
    gap: 10px;
  }

  .owner-profile {
    padding-top: 38px;
    padding-bottom: 38px;
  }

  .owner-profile-copy {
    gap: 14px;
  }

  .owner-profile-image img {
    height: 320px;
  }

  .home-main .home-contact {
    width: calc(100% - 40px);
    display: grid;
    padding: 32px 22px;
  }

  .home-contact-actions {
    display: grid;
  }

  .home-main .home-contact .button {
    width: 100%;
  }

  .footer-inner {
    padding-top: 34px;
  }

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

  .footer-brand img {
    width: min(230px, 78vw);
  }

  .footer-bottom {
    gap: .45rem .85rem;
    text-align: left;
  }

  .gallery-grid,
  .service-grid {
    grid-template-columns: 1fr;
  }

  .gallery-item-empty::before {
    min-height: 220px;
  }

  .contact-top {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .contact-card.featured {
    grid-column: 1 / -1;
  }

  .contact-card {
    min-height: auto;
    gap: .3rem;
    padding: 14px;
    border-radius: 10px;
    border: 1px solid var(--line);
  }

  .contact-card-icon {
    width: 24px;
    height: 24px;
  }

  .contact-card span {
    font-size: .68rem;
  }

  .contact-card a,
  .contact-card strong {
    font-size: .9rem;
    line-height: 1.32;
  }

  .contact-card.featured a {
    font-size: 1.08rem;
  }

  .contact-card small {
    font-size: .68rem;
  }

  .contact-info {
    padding: 18px 16px;
  }

  .contact-picker {
    gap: 0;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: #fff;
    overflow: hidden;
  }

  .contact-picker-item {
    padding: 11px 14px;
    border: 0;
    border-top: 1px solid var(--line);
  }

  .contact-picker-item:first-child {
    border-top: 0;
  }

  .contact-picker-item:hover,
  .contact-picker-item:focus-within {
    border-color: var(--line);
    background: #f6f8fa;
  }

  .contact-picker button {
    font-size: .86rem;
  }

  .contact-picker p {
    font-size: .74rem;
    line-height: 1.34;
  }

  .form-panel,
  .map-panel {
    padding: 20px 18px;
  }

  .map-frame {
    min-height: 300px;
  }

  .timeline-item {
    grid-template-columns: 1fr;
  }

  .cta-box {
    display: grid;
  }

  .radio-row {
    display: grid;
  }

  .lightbox {
    padding: 1rem;
  }

  .lightbox-prev,
  .lightbox-next {
    top: auto;
    bottom: 1rem;
    transform: none;
  }

}

@media (max-width: 420px) {
  .home-numbers-grid {
    grid-template-columns: 1fr;
  }

  .home-values-grid {
    grid-template-columns: 1fr;
  }

  .home-history-years {
    grid-template-columns: 1fr;
  }

  .home-year-card:nth-child(n) {
    background-size: 100% 1px;
  }

  .home-number-item:first-child {
    border-top: 0;
  }
}

@media (max-width: 767px) {
  html,
  body {
    width: 100%;
    max-width: 100%;
  }

  html {
    overflow-x: hidden;
  }

  body * {
    min-width: 0;
  }

  body {
    font-size: 16px;
    line-height: 1.58;
  }

  .site-header,
  main,
  .site-footer {
    width: 100%;
    max-width: 100vw;
    overflow: hidden;
  }

  h1,
  h2,
  h3,
  p,
  li,
  a,
  span {
    overflow-wrap: break-word;
  }

  .shell,
  .home-section-shell {
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }

  .section {
    padding: 34px 20px;
  }

  .site-header {
    position: relative;
    z-index: 20;
  }

  .header-inner {
    grid-template-columns: 1fr;
    justify-items: center;
    min-height: 74px;
    padding: 14px 20px 10px;
    gap: 14px;
    align-items: center;
  }

  .brand {
    justify-self: center;
  }

  .brand img {
    width: min(230px, 70vw);
  }

  .header-actions {
    width: 100%;
    gap: 6px;
    justify-items: center;
  }

  .header-phone {
    font-size: .88rem;
    line-height: 1.25;
    white-space: nowrap;
  }

  .main-nav {
    width: 100%;
  }

  .menu-toggle {
    width: 100%;
    max-width: 340px;
    min-height: 44px;
    padding: .55rem .9rem;
    font-size: .95rem;
  }

  .nav-list {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    z-index: 30;
    padding: 4px 16px 12px;
    box-shadow: 0 12px 22px rgba(6, 46, 95, .18);
  }

  .nav-list a {
    min-height: 40px;
    padding: .45rem .7rem;
    font-size: .92rem;
  }

  .nav-list .arcadia-nav-link {
    justify-content: flex-start;
    min-width: 0;
  }

  .arcadia-nav-link img {
    width: 96px;
  }

  .home-main {
    margin-bottom: 3rem;
  }

  .home-cover {
    min-height: 540px;
    padding: 42px 0 54px;
  }

  .home-cover::after {
    background: linear-gradient(180deg, rgba(2, 14, 31, .95) 0%, rgba(2, 34, 70, .9) 58%, rgba(2, 63, 128, .72) 100%);
  }

  .home-cover-content {
    width: 100%;
    max-width: 100%;
  }

  .home-cover .eyebrow {
    width: 100%;
    max-width: 100%;
    margin-bottom: .65rem;
    font-size: .9rem;
    line-height: 1.38;
    white-space: normal;
  }

  .home-cover h1 {
    display: block;
    width: 100%;
    max-width: 100%;
    font-size: clamp(2rem, 8.2vw, 2.45rem);
    line-height: 1.04;
    white-space: normal;
    word-break: normal;
    overflow-wrap: normal;
  }

  .home-cover .intro-actions {
    display: grid;
    gap: .7rem;
    margin-top: 1.35rem;
  }

  .home-cover .button {
    width: 100%;
    min-height: 48px;
  }

  .home-cover .home-cover-description {
    width: 100%;
    max-width: 100%;
    margin-top: 1.05rem;
    padding-left: 13px;
    font-size: .98rem;
    line-height: 1.55;
    white-space: normal;
  }

  .home-info-band {
    margin-top: 0;
    background: var(--blue);
  }

  .home-info-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .home-info-item,
  .home-info-item:nth-child(odd) {
    min-height: 98px;
    padding: 15px 12px;
    border-top: 1px solid rgba(255, 255, 255, .28);
    border-left: 1px solid rgba(255, 255, 255, .28);
  }

  .home-info-item:nth-child(odd) {
    border-left: 0;
  }

  .home-info-item:nth-child(-n + 2) {
    border-top: 0;
  }

  .home-info-item strong {
    font-size: 1.05rem;
    line-height: 1.16;
  }

  .home-info-item span {
    font-size: .88rem;
    line-height: 1.36;
  }

  .home-services,
  .home-values,
  .home-history,
  .home-studio,
  .home-numbers {
    padding-top: 36px;
    padding-bottom: 36px;
  }

  .home-section-heading {
    margin-bottom: 18px;
  }

  .home-service-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .home-service-card {
    grid-template-columns: 42px minmax(0, 1fr);
    gap: .25rem .75rem;
    min-height: auto;
    padding: 16px 15px;
  }

  .home-service-icon {
    width: 38px;
    height: 38px;
    grid-row: span 2;
  }

  .home-service-card span {
    font-size: 1rem;
    overflow-wrap: anywhere;
  }

  .home-service-card p {
    font-size: .92rem;
    line-height: 1.42;
    overflow-wrap: anywhere;
  }

  .home-numbers .home-section-shell,
  .home-values .home-section-shell,
  .home-studio-layout,
  .home-history-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .home-numbers-heading p:not(.eyebrow) {
    max-width: 100%;
    font-size: .95rem;
  }

  .home-numbers-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px 18px;
  }

  .home-number-item:nth-child(n) {
    grid-column: auto;
  }

  .home-number-item strong {
    font-size: clamp(2.2rem, 12vw, 3.25rem);
  }

  .home-number-item > span {
    max-width: 130px;
    font-size: .94rem;
    line-height: 1.35;
  }

  .home-history-years {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .home-year-card {
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 0 16px;
    padding: 0 0 0 18px;
    background-image: none;
    border-left: 1px solid var(--line);
  }

  .home-year-card::before {
    top: 4px;
    left: -5px;
  }

  .home-year-card > span:first-child {
    min-height: auto;
    background: transparent;
    font-size: 1.02rem;
    line-height: 1.2;
  }

  .home-year-card .home-year-logo {
    width: 100%;
    max-width: 210px;
  }

  .home-values-intro {
    max-width: 100%;
  }

  .home-values-intro p:not(.eyebrow),
  .home-value-item p,
  .home-studio-content p:not(.eyebrow) {
    font-size: .98rem;
    line-height: 1.55;
  }

  .home-values-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .home-value-item {
    padding: 4px 6px;
    transform: none;
  }

  .home-value-item:hover,
  .home-value-item:focus-within {
    transform: none;
  }

  .home-value-item:hover .home-value-icon,
  .home-value-item:focus-within .home-value-icon {
    stroke: var(--blue);
    transform: none;
  }

  .home-value-icon {
    width: 36px;
    height: 36px;
    transition: none;
  }

  .home-value-item h3 {
    font-size: 1.08rem;
  }

  .home-studio-image-empty,
  .home-studio-image img {
    min-height: 290px;
    height: 290px;
  }

  .gallery-item-empty::before {
    min-height: 210px;
  }

  .home-studio-content .button {
    width: 100%;
  }

  .home-main .home-contact {
    width: calc(100% - 36px);
    margin-top: 28px;
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 28px 0;
  }

  .home-contact-actions {
    display: grid;
    width: 100%;
    gap: .7rem;
    justify-content: stretch;
  }

  .home-main .home-contact .button {
    width: 100%;
  }

  .home-contact-note {
    font-size: .92rem;
    line-height: 1.45;
  }

  .footer-inner {
    padding: 28px 18px 0;
  }

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

  .footer-brand,
  .footer-column {
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(255, 255, 255, .16);
  }

  .footer-brand img {
    width: min(210px, 72vw);
  }

  .footer-brand p,
  .footer-column li,
  .footer-bottom p,
  .footer-bottom a {
    font-size: .9rem;
    line-height: 1.48;
  }

  .footer-column h2 {
    margin-bottom: .55rem;
    font-size: .95rem;
  }

  .footer-bottom {
    margin-top: 0;
    padding: 16px 0 20px;
    gap: .65rem;
  }

  .footer-bottom nav {
    gap: .55rem .8rem;
  }

  .page-hero {
    padding: 30px 18px;
  }

  .page-hero h1 {
    font-size: clamp(1.9rem, 8vw, 2.45rem);
    line-height: 1.12;
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .lead,
  .page-hero .lead,
  .content-flow p,
  .service-section p,
  .service-section li {
    font-size: 1rem;
    line-height: 1.62;
  }

  .content-layout {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .page-index {
    position: static;
    padding: 0;
    border: 0;
    background: transparent;
  }

  .page-index a {
    min-height: 48px;
    padding: .72rem .9rem;
    border: 1px solid var(--blue);
    background: #fff;
    color: var(--blue);
    text-decoration: none;
  }

  .page-index a + a {
    margin-top: 8px;
  }

  .service-section {
    padding: 20px 0;
    border-width: 0 0 1px;
    background: transparent;
  }

  .service-section h2 {
    margin-bottom: .6rem;
    color: var(--blue);
    font-size: clamp(1.45rem, 6vw, 1.85rem);
    line-height: 1.18;
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .page-index a,
  .site-footer p,
  .cta-box h2,
  .cta-box p {
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .service-section ul {
    padding-left: 1.15rem;
  }

  .service-section li + li {
    margin-top: .55rem;
  }

  .service-detail-toggle {
    display: inline-flex;
    width: 100%;
    min-height: 46px;
    align-items: center;
    justify-content: center;
    margin: .8rem 0 0;
    border: 1px solid var(--blue);
    background: var(--blue);
    color: #fff;
    font: inherit;
    font-weight: 700;
    cursor: pointer;
  }

  .service-detail-toggle:focus-visible {
    outline: 3px solid var(--orange);
    outline-offset: 3px;
  }

  .service-section[data-mobile-collapsible="true"][data-collapsed="true"] > :not(h2):not(.service-detail-toggle) {
    display: none;
  }

  .contact-cta {
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .cta-box {
    display: grid;
    gap: 18px;
    padding: 20px 0;
    border-left: 0;
    border-top: 3px solid var(--orange);
    background: transparent;
  }

  .cta-box .button {
    width: 100%;
  }
}

@media (max-width: 430px) {
  .header-inner {
    padding-left: 18px;
    padding-right: 18px;
  }

  .brand img {
    width: min(220px, 72vw);
  }

  .home-cover {
    min-height: 520px;
  }

  .home-cover-content {
    max-width: 100%;
  }
}

@media (max-width: 390px) {
  .home-cover-content {
    max-width: 100%;
  }

  .home-info-item {
    padding-left: 10px;
    padding-right: 10px;
  }

  .home-number-item strong {
    font-size: clamp(2rem, 11vw, 2.8rem);
  }

  .footer-brand p,
  .footer-column li,
  .footer-bottom p,
  .footer-bottom a {
    font-size: .88rem;
  }
}

@media (max-width: 375px) {
  .home-cover-content {
    max-width: 100%;
  }

  .home-cover h1 {
    font-size: clamp(1.82rem, 7.8vw, 2.05rem);
  }

  .home-service-card {
    grid-template-columns: 36px minmax(0, 1fr);
  }

  .home-service-icon {
    width: 34px;
    height: 34px;
  }
}

@media (max-width: 320px) {
  .shell,
  .home-section-shell {
    padding-left: 14px;
    padding-right: 14px;
  }

  .section,
  .page-hero {
    padding-left: 14px;
    padding-right: 14px;
  }

  .brand img {
    width: 168px;
  }

  .home-cover-content {
    max-width: 100%;
  }

  .home-cover h1 {
    font-size: 1.52rem;
  }

  .home-cover .eyebrow,
  .home-cover .home-cover-description {
    font-size: .92rem;
  }

  .home-service-card {
    grid-template-columns: 32px minmax(0, 180px);
  }

  .page-hero h1 {
    font-size: 1.55rem;
  }

  .service-section h2 {
    font-size: 1.35rem;
  }

  .home-service-icon {
    width: 30px;
    height: 30px;
  }

  .home-info-item strong {
    font-size: .98rem;
  }

  .home-info-item span {
    font-size: .84rem;
  }

  .header-phone {
    font-size: .78rem;
  }

}

.footer-cta {
  padding: 40px 24px 30px;
  background: #fff;
}

.footer-cta-card {
  width: min(100%, 1320px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  padding: 28px 40px;
  border: 1px solid rgba(6, 46, 95, .14);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(6, 46, 95, .16);
}

.footer-cta-panel {
  display: grid;
  grid-template-columns: 68px minmax(0, 1fr);
  gap: 22px;
}

.footer-cta-panel + .footer-cta-panel {
  margin-left: 36px;
  padding-left: 36px;
  border-left: 1px solid var(--line);
}

.footer-cta-icon {
  display: grid;
  width: 62px;
  height: 62px;
  place-items: center;
  border-radius: 50%;
  background: #f5f6f8;
  color: #092a59;
}

.footer-cta-icon svg,
.footer-action svg,
.footer-contact-list svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-cta-copy {
  display: flex;
  flex-direction: column;
}

.footer-cta-copy h2 {
  margin: .1rem 0 .6rem;
  color: #092a59;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.5rem, 2vw, 2rem);
  font-weight: 700;
  line-height: 1.12;
}

.footer-cta-copy p {
  max-width: 470px;
  margin: 0;
  color: #5d6470;
  font-size: 1rem;
  line-height: 1.48;
}

.footer-cta-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(190px, 1fr));
  gap: 18px;
  margin-top: auto;
  padding-top: 26px;
}

.footer-action {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: .7rem 1.1rem;
  border: 1px solid #092a59;
  border-radius: 6px;
  color: #092a59;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.15;
  text-decoration: none;
  box-shadow: 0 8px 18px rgba(6, 46, 95, .12);
}

.footer-action svg {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
}

.footer-action-primary {
  border-color: #082f63;
  background: linear-gradient(135deg, #001f48, #063b78);
  color: #fff;
}

.footer-action-light {
  background: #fff;
}

.footer-action-orange {
  border-color: #ff6b1a;
  background: #fff;
  color: #ff6b1a;
  box-shadow: none;
}

.footer-action:hover,
.footer-action:focus {
  transform: translateY(-1px);
  text-decoration: none;
}

.footer-action-primary:hover,
.footer-action-primary:focus {
  color: #fff;
  background: linear-gradient(135deg, #001936, #062e5f);
}

.footer-action-light:hover,
.footer-action-light:focus {
  color: #092a59;
  background: var(--blue-soft);
}

.footer-action-orange:hover,
.footer-action-orange:focus {
  color: #d9570c;
  background: #fff7f1;
}

.site-footer {
  border-top: 6px solid #ff7a1a;
  background:
    radial-gradient(circle at 18% 18%, rgba(12, 92, 166, .28), transparent 34%),
    linear-gradient(135deg, #001d42 0%, #052f66 55%, #002c5a 100%);
  color: rgba(255, 255, 255, .9);
}

.footer-inner {
  width: min(100% - 96px, 1460px);
  margin: 0 auto;
  padding: 38px 0 28px;
}

.footer-grid {
  max-width: none;
  display: grid;
  grid-template-columns: minmax(280px, 1.25fr) minmax(230px, .8fr) minmax(360px, 1.2fr);
  gap: 56px;
  align-items: start;
}

.footer-logo {
  display: block;
  width: 230px;
  height: 74px;
  background: url("../images/logo_white.png") left center / contain no-repeat;
  text-decoration: none;
}

.footer-logo span,
.footer-logo small {
  display: none;
}

.footer-brand::after,
.footer-column h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  margin: 12px 0 0;
  background: #ff7a1a;
}

.footer-brand p {
  max-width: 410px;
  margin-top: 22px;
  color: #fff;
  font-size: 1rem;
  line-height: 1.5;
}

.footer-column h2 {
  color: #fff;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  line-height: 1.15;
  text-transform: none;
}

.footer-column ul {
  gap: 0;
  margin-top: 16px;
}

.footer-column:not(:last-child) li {
  border-bottom: 1px solid rgba(255, 255, 255, .16);
}

.footer-column a {
  color: #fff;
}

.footer-column:not(:last-child) a {
  display: flex;
  min-height: 42px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-size: 1rem;
}

.footer-contact-list {
  display: grid;
  gap: 14px !important;
}

.footer-contact-list li {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  color: #fff;
  font-size: 1rem;
  line-height: 1.4;
}

.footer-contact-list svg {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  color: #fff;
}

.footer-bottom {
  margin: 30px 0 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px 32px;
  align-items: center;
  padding: 20px 24px 0;
  border-top: 1px solid rgba(255, 255, 255, .24);
  background: transparent;
}

.footer-bottom p,
.footer-bottom a {
  color: rgba(255, 255, 255, .82);
  font-size: .9rem;
}

.footer-bottom nav {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem 1.35rem;
}

.footer-bottom nav a + a::before {
  content: "•";
  margin-right: 1.35rem;
  color: #ff7a1a;
}

.footer-bottom p:last-child {
  grid-column: 1 / -1;
  justify-self: center;
  text-align: center;
}

@media (max-width: 1100px) {
  .footer-cta-card {
    padding: 26px;
  }

  .footer-cta-panel {
    grid-template-columns: 60px minmax(0, 1fr);
    gap: 18px;
  }

  .footer-cta-panel + .footer-cta-panel {
    margin-left: 24px;
    padding-left: 24px;
  }

  .footer-cta-icon {
    width: 56px;
    height: 56px;
  }

  .footer-cta-actions {
    grid-template-columns: 1fr;
    gap: 14px;
    padding-top: 20px;
  }

  .footer-grid {
    grid-template-columns: minmax(280px, 1fr) minmax(220px, .8fr);
    gap: 40px;
  }

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

@media (max-width: 767px) {
  .footer-cta {
    padding: 34px 18px 28px;
  }

  .footer-cta-card {
    grid-template-columns: 1fr;
    padding: 24px 18px;
  }

  .footer-cta-panel {
    grid-template-columns: 1fr;
    gap: 18px;
    justify-items: start;
  }

  .footer-cta-panel + .footer-cta-panel {
    margin: 28px 0 0;
    padding: 28px 0 0;
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .footer-cta-copy h2 {
    font-size: clamp(1.65rem, 8vw, 2.25rem);
  }

  .footer-cta-copy p {
    font-size: 1rem;
  }

  .footer-action {
    min-height: 58px;
    width: 100%;
    font-size: 1rem;
  }

  .footer-inner {
    width: min(100% - 36px, 1460px);
    padding: 36px 0 28px;
  }

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

  .footer-brand,
  .footer-column {
    padding-bottom: 0;
    border-bottom: 0;
  }

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

  .footer-logo span {
    font-size: clamp(3rem, 16vw, 4rem);
  }

  .footer-logo small {
    font-size: clamp(1.05rem, 6vw, 1.42rem);
  }

  .footer-brand p,
  .footer-contact-list li,
  .footer-column:not(:last-child) a {
    font-size: 1rem;
  }

  .footer-bottom {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 22px 0 0;
  }

  .footer-bottom nav {
    gap: .7rem 1rem;
  }

  .footer-bottom nav a + a::before {
    margin-right: 1rem;
  }

  .footer-bottom p:last-child {
    justify-self: start;
    text-align: left;
  }
}

.mobile-hero-title,
.mobile-info-icon,
.mobile-number-icon,
.mobile-assistance-item,
.mobile-studio-photo,
.mobile-studio-summary,
.mobile-footer-essentials,
.mobile-footer-accordions,
.hero-mobile-services {
  display: none;
}

@media (max-width: 767px) {
  body {
    background: #f5f7fb;
    color: #102033;
    font-size: 16px;
    line-height: 1.5;
  }

  .site-header {
    position: sticky;
    top: 0;
    z-index: 60;
    overflow: visible;
    border-bottom: 0;
    background: rgba(0, 32, 69, .96);
    box-shadow: 0 8px 24px rgba(0, 25, 54, .18);
  }

  .header-inner {
    min-height: 68px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 52px;
    align-items: center;
    justify-items: stretch;
    gap: 14px;
    padding: 10px 20px;
  }

  .brand {
    justify-self: start;
  }

  .brand img {
    width: auto;
    height: 38px;
    max-width: 172px;
    max-height: 40px;
    object-fit: contain;
    filter: brightness(0) invert(1);
  }

  .header-actions,
  .main-nav {
    width: auto;
    justify-self: end;
  }

  .menu-toggle {
    position: relative;
    width: 48px;
    min-width: 48px;
    max-width: 48px;
    min-height: 48px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 8px;
    background: rgba(255, 255, 255, .08);
    color: #fff;
    font-size: 0;
  }

  .menu-toggle::before {
    content: "";
    position: absolute;
    left: 13px;
    top: 15px;
    width: 22px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    box-shadow: 0 8px 0 currentColor, 0 16px 0 currentColor;
  }

  .nav-list {
    left: 20px;
    right: 20px;
    top: calc(100% + 8px);
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 10px;
    background: #062e5f;
    box-shadow: 0 18px 36px rgba(0, 20, 44, .32);
  }

  .nav-list a {
    min-height: 48px;
    justify-content: space-between;
    border: 0;
    border-radius: 7px;
    color: #fff;
    font-size: .95rem;
  }

  .nav-list a::after {
    content: "›";
    color: #ffad30;
    font-size: 1.25rem;
    line-height: 1;
  }

  .nav-list a:hover,
  .nav-list a[aria-current="page"] {
    background: rgba(255, 255, 255, .1);
  }

  .mobile-assistance-item {
    display: block;
  }

  .mobile-assistance-item a {
    margin-top: 4px;
    background: var(--orange);
    color: #102033;
  }

  .mobile-assistance-item a::after {
    color: #102033;
  }

  .nav-list .arcadia-nav-link {
    min-height: 48px;
    justify-content: flex-start;
  }

  .nav-list .arcadia-nav-link::after {
    content: "";
  }

  .arcadia-nav-link img {
    width: 106px;
    filter: none;
  }

  .home-main {
    margin-bottom: 0;
    background: #f5f7fb;
  }

  .home-cover {
    min-height: 560px;
    align-items: start;
    padding: 68px 0 126px;
    border-radius: 0 0 22px 22px;
  }

  .home-cover::after {
    background:
      linear-gradient(180deg, rgba(0, 22, 50, .96) 0%, rgba(0, 36, 79, .84) 46%, rgba(0, 42, 87, .76) 100%),
      linear-gradient(90deg, rgba(0, 22, 50, .95) 0%, rgba(0, 22, 50, .52) 74%, rgba(0, 22, 50, .18) 100%);
  }

  .home-cover-media img {
    object-position: 67% center;
    animation: none;
  }

  .home-cover .home-section-shell {
    padding-left: 20px;
    padding-right: 20px;
  }

  .home-cover-content {
    display: grid;
    max-width: 100%;
    gap: 0;
  }

  .home-cover h1 {
    display: none;
  }

  .mobile-hero-title {
    order: 1;
    display: block;
    max-width: 330px;
    margin: 0;
    color: #fff;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2rem, 8.8vw, 2.25rem);
    font-weight: 700;
    line-height: 1.08;
  }

  .mobile-hero-title span {
    display: block;
    color: #ff9b18;
  }

  .home-cover .eyebrow {
    order: 0;
    max-width: 280px;
    margin: 0 0 12px;
    color: #ffad30;
    font-size: .875rem;
    line-height: 1.35;
  }

  .home-cover .home-cover-description {
    order: 2;
    max-width: 340px;
    margin: 18px 0 0;
    padding-left: 0;
    border-left: 0;
    color: rgba(255, 255, 255, .92);
    font-size: 1rem;
    line-height: 1.5;
  }

  .home-cover .home-cover-description br {
    display: none;
  }

  .home-cover .intro-actions {
    order: 3;
    display: grid;
    gap: 12px;
    max-width: 100%;
    margin-top: 26px;
  }

  .home-cover .button {
    width: 100%;
    min-height: 52px;
    justify-content: space-between;
    padding: .82rem 1rem;
    border-radius: 6px;
    font-size: .92rem;
    text-transform: uppercase;
  }

  .home-cover .button::after {
    content: "→";
    font-size: 1.1rem;
  }

  .home-cover .hero-secondary {
    order: 1;
    border-color: var(--orange);
    background: var(--orange);
    color: #102033;
  }

  .home-cover .hero-primary {
    order: 2;
    border-color: rgba(255, 255, 255, .62);
    background: rgba(255, 255, 255, .04);
    color: #fff;
  }

  .home-info-band {
    z-index: 5;
    margin: -76px 0 0;
    padding: 0 20px;
    background: transparent;
    color: #092a59;
  }

  .home-info-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
    padding: 20px;
    border: 1px solid rgba(6, 46, 95, .12);
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 16px 34px rgba(6, 46, 95, .16);
  }

  .home-info-item,
  .home-info-item:nth-child(odd) {
    min-height: 136px;
    grid-template-columns: 38px minmax(0, 1fr);
    align-content: center;
    gap: 7px 12px;
    padding: 18px 10px;
    border: 0;
    border-top: 1px solid var(--line);
    border-left: 1px solid var(--line);
  }

  .home-info-item:nth-child(odd) {
    border-left: 0;
  }

  .home-info-item:nth-child(-n + 2) {
    border-top: 0;
  }

  .mobile-info-icon {
    grid-row: span 2;
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    color: #092a59;
  }

  .mobile-info-icon svg {
    width: 28px;
    height: 28px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .home-info-item strong {
    color: #092a59;
    font-size: .98rem;
    line-height: 1.15;
  }

  .home-info-item span:not(.mobile-info-icon) {
    color: #4d5968;
    font-size: .875rem;
    line-height: 1.4;
  }

  .home-services,
  .home-history,
  .home-values,
  .home-studio {
    padding: 34px 0;
    background: #f5f7fb;
  }

  .home-section-heading,
  .home-values-intro,
  .home-history-copy {
    margin-bottom: 16px;
    text-align: center;
  }

  .home-section-heading .eyebrow,
  .home-values-intro .eyebrow,
  .home-history-copy .eyebrow,
  .home-studio-content .eyebrow {
    display: none;
  }

  .home-section-heading h2,
  .home-history-copy h2,
  .home-values-intro h2,
  .home-studio-content h2,
  .home-numbers-heading h2 {
    color: #092a59;
    font-size: 1.22rem;
    line-height: 1.2;
    text-align: center;
  }

  .home-service-grid {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    padding: 2px 20px 18px;
    margin: 0 -20px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .home-service-grid::-webkit-scrollbar,
  .home-history-years::-webkit-scrollbar {
    display: none;
  }

  .home-service-card {
    position: relative;
    flex: 0 0 84vw;
    display: grid;
    min-height: 244px;
    align-content: start;
    gap: 12px;
    padding: 22px 20px 48px;
    border: 1px solid rgba(6, 46, 95, .1);
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 8px 18px rgba(6, 46, 95, .08);
    scroll-snap-align: start;
  }

  .home-service-card::after {
    content: "→";
    position: absolute;
    right: 22px;
    bottom: 18px;
    color: var(--orange);
    font-size: 1.35rem;
  }

  .home-service-icon {
    width: 52px;
    height: 52px;
    margin: 0;
    stroke: #092a59;
  }

  .home-service-card span {
    color: #092a59;
    font-size: 1.15rem;
    line-height: 1.18;
    text-align: left;
  }

  .home-service-card p {
    color: #4d5968;
    font-size: .98rem;
    line-height: 1.5;
    text-align: left;
  }

  .home-numbers {
    padding: 48px 0;
    background:
      radial-gradient(circle at 18% 0, rgba(13, 90, 160, .35), transparent 45%),
      linear-gradient(135deg, #001d42, #05376f);
  }

  .home-numbers .home-section-shell {
    display: grid;
    gap: 18px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .home-numbers-heading {
    text-align: center;
  }

  .home-numbers-heading .eyebrow,
  .home-numbers-heading p:not(.eyebrow) {
    display: none;
  }

  .home-numbers-heading h2 {
    color: #fff;
  }

  .home-numbers-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px;
  }

  .home-number-item {
    min-height: 110px;
    padding: 18px 14px;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 14px;
    background: rgba(255, 255, 255, .04);
  }

  .home-number-item::before {
    display: none;
  }

  .home-number-item strong {
    color: #ff9b18;
    font-size: clamp(2rem, 9vw, 2.55rem);
    line-height: 1;
  }

  .home-number-item > span {
    max-width: none;
    color: #fff;
    font-size: .9rem;
    line-height: 1.35;
  }

  .home-history {
    padding-bottom: 26px;
  }

  .home-history-copy p:not(.eyebrow):not(:last-child) {
    display: none;
  }

  .home-history-copy p:last-child {
    margin: 0;
  }

  .home-history-copy .button {
    min-height: 0;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--orange);
    font-size: .875rem;
  }

  .home-history-copy .button::after {
    content: " →";
  }

  .home-history-years {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    padding: 2px 20px 22px;
    margin: 0 -20px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .home-year-card {
    flex: 0 0 84vw;
    display: grid;
    gap: 8px;
    min-height: 280px;
    padding: 0 0 18px;
    overflow: hidden;
    border: 1px solid rgba(6, 46, 95, .1);
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 8px 18px rgba(6, 46, 95, .08);
    scroll-snap-align: start;
  }

  .home-year-card::before {
    display: none;
  }

  .home-year-logo {
    order: -1;
    max-width: none !important;
    height: 170px;
    aspect-ratio: auto;
  }

  .home-year-card > span:first-child {
    margin: 4px 18px 0;
    color: var(--orange);
    background: transparent;
    font-size: 1.05rem;
  }

  .home-year-card::after {
    content: "Scopri la tappa";
    margin: 0 18px;
    color: #4d5968;
    font-size: .95rem;
    line-height: 1.45;
  }

  .home-values {
    padding-top: 26px;
  }

  .home-values-intro p:not(.eyebrow) {
    display: none;
  }

  .home-values-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .home-value-item {
    min-height: 0;
    grid-template-columns: 42px minmax(0, 1fr);
    justify-items: start;
    align-content: start;
    gap: 6px 14px;
    padding: 18px;
    border: 1px solid rgba(6, 46, 95, .1);
    border-radius: 14px;
    background: #fff;
    text-align: left;
    box-shadow: 0 6px 14px rgba(6, 46, 95, .06);
  }

  .home-value-icon {
    width: 34px;
    height: 34px;
    grid-row: span 2;
    stroke: #092a59;
  }

  .home-value-item h3 {
    color: #092a59;
    font-size: 1.06rem;
  }

  .home-value-item p {
    color: #4d5968;
    font-size: .95rem;
    line-height: 1.45;
  }

  .home-studio {
    padding-top: 24px;
  }

  .home-studio-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    padding-left: 20px;
    padding-right: 20px;
  }

  .home-studio-image-empty {
    min-height: 0;
    height: auto;
    overflow: hidden;
    border-radius: 16px 16px 0 0;
    background: #fff;
  }

  .mobile-studio-photo {
    display: block;
    width: 100%;
    height: auto !important;
    aspect-ratio: 4 / 3;
    min-height: 0 !important;
    border: 0;
    object-fit: cover;
    object-position: center 34%;
  }

  .home-studio-content {
    max-width: none;
    padding: 20px;
    border: 1px solid rgba(6, 46, 95, .1);
    border-top: 0;
    border-radius: 0 0 16px 16px;
    background: #fff;
    box-shadow: 0 8px 18px rgba(6, 46, 95, .08);
  }

  .home-studio-content h2 {
    text-align: left;
    font-size: 1.5rem;
  }

  .home-studio-content p:not(.eyebrow) {
    color: #4d5968;
    font-size: 1rem;
    line-height: 1.5;
  }

  .mobile-studio-summary {
    display: block;
  }

  .home-studio-content p:nth-of-type(3),
  .home-studio-content p:nth-of-type(4) {
    display: none;
  }

  .home-studio-content .button {
    width: 100%;
    min-height: 50px;
    margin-top: 4px;
    justify-content: space-between;
    border-radius: 6px;
    background: #062e5f;
    color: #fff;
  }

  .home-studio-content .button::after {
    content: "→";
    color: var(--orange);
  }

  .footer-cta {
    padding: 0;
    background: linear-gradient(135deg, #00234d, #06407d);
  }

  .footer-cta-card {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    padding: 28px 20px;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .footer-cta-panel {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    color: #fff;
  }

  .footer-cta-panel + .footer-cta-panel {
    margin: 18px 0 0;
    padding: 18px 0 0;
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, .18);
  }

  .footer-cta-icon {
    display: none;
  }

  .footer-cta-copy h2 {
    color: #fff;
    font-family: system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
    font-size: 1.32rem;
    line-height: 1.15;
  }

  .footer-cta-copy p {
    color: rgba(255, 255, 255, .84);
    font-size: 1rem;
  }

  .footer-cta-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 14px;
  }

  .footer-action {
    min-height: 50px;
    width: 100%;
    border-radius: 6px;
    font-size: .95rem;
  }

  .footer-action-light,
  .footer-action-orange {
    border-color: rgba(255, 255, 255, .65);
    background: transparent;
    color: #fff;
  }

  .footer-action-primary {
    border-color: var(--orange);
    background: var(--orange);
    color: #102033;
  }

  .footer-cta-panel:first-child .footer-action-light {
    order: 1;
    border-color: var(--orange);
    background: var(--orange);
    color: #102033;
  }

  .footer-cta-panel:first-child .footer-action-primary {
    order: 2;
    border-color: rgba(255, 255, 255, .65);
    background: transparent;
    color: #fff;
  }

  .site-footer {
    border-top-width: 0;
  }

  .footer-inner {
    width: 100%;
    padding: 28px 20px 24px;
  }

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

  .footer-column {
    display: none;
  }

  .mobile-footer-essentials,
  .mobile-footer-accordions {
    display: grid;
  }

  .mobile-footer-essentials {
    gap: 8px;
    margin-top: 18px;
    padding: 16px 0 0;
    border-top: 1px solid rgba(255, 255, 255, .16);
  }

  .mobile-footer-essentials p {
    margin: 0;
    color: rgba(255, 255, 255, .9);
    font-size: .95rem;
    line-height: 1.45;
  }

  .mobile-footer-essentials a {
    color: #fff;
    text-decoration: none;
  }

  .mobile-footer-accordions {
    gap: 10px;
    margin-top: 20px;
  }

  .mobile-footer-accordions details {
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 12px;
    background: rgba(255, 255, 255, .04);
  }

  .mobile-footer-accordions summary {
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 14px;
    color: #fff;
    font-weight: 700;
    cursor: pointer;
  }

  .mobile-footer-accordions summary::after {
    content: "+";
    color: var(--orange);
    font-size: 1.25rem;
  }

  .mobile-footer-accordions details[open] summary::after {
    content: "-";
  }

  .mobile-footer-accordions nav,
  .mobile-footer-accordions details > div {
    display: grid;
    gap: 8px;
    padding: 0 14px 14px;
  }

  .mobile-footer-accordions a,
  .mobile-footer-accordions p {
    min-height: 36px;
    margin: 0;
    color: rgba(255, 255, 255, .86);
    font-size: .95rem;
    text-decoration: none;
  }

  .footer-logo span {
    font-size: 2.55rem;
  }

  .footer-logo small {
    font-size: 1rem;
  }

  .footer-brand::after,
  .footer-column h2::after {
    width: 44px;
    height: 2px;
    margin-top: 10px;
  }

  .footer-brand p {
    max-width: 320px;
    margin-top: 18px;
    font-size: .95rem;
  }

  .footer-column h2 {
    font-size: 1.15rem;
  }

  .footer-column ul {
    margin-top: 12px;
  }

  .footer-column:not(:last-child) a,
  .footer-contact-list li {
    min-height: 42px;
    font-size: .95rem;
  }

  .footer-bottom {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 24px;
    padding: 18px 0 0;
  }

  .footer-bottom p,
  .footer-bottom a {
    font-size: .875rem;
    line-height: 1.45;
  }

  .footer-bottom nav {
    gap: .55rem .8rem;
  }

  .footer-bottom p:last-child {
    justify-self: start;
    text-align: left;
  }
}

@media (max-width: 767px) {
  body {
    background: #f4f7fb;
    font-size: 15px;
    line-height: 1.45;
  }

  .site-header {
    position: sticky;
    top: 0;
    z-index: 80;
    background: rgba(255, 255, 255, .72);
    backdrop-filter: saturate(180%) blur(14px);
    -webkit-backdrop-filter: saturate(180%) blur(14px);
    box-shadow: 0 2px 16px rgba(0, 25, 54, .12);
  }

  .header-inner {
    min-height: 66px;
    grid-template-columns: minmax(0, 1fr) 46px;
    padding: 12px 22px;
  }

  .brand {
    background: none;
  }

  .brand img {
    height: 44px;
    width: auto;
    max-width: 200px;
    filter: none;
    opacity: 1;
  }

  .menu-toggle {
    width: 42px;
    min-width: 42px;
    max-width: 42px;
    min-height: 42px;
    border: 0;
    background: transparent;
    color: #00264f;
  }

  .menu-toggle::before {
    left: 9px;
    top: 10px;
    width: 25px;
    height: 3px;
    box-shadow: 0 10px 0 currentColor, 0 20px 0 currentColor;
  }

  .nav-list {
    left: 14px;
    right: 14px;
    top: calc(100% + 6px);
  }

  .mobile-assistance-item {
    display: none;
  }

  .nav-list .arcadia-nav-link {
    margin-top: 4px;
  }

  .home-cover {
    min-height: 470px;
    align-items: center;
    padding: 40px 0 102px;
    border-radius: 0;
  }

  .home-cover::after {
    background:
      linear-gradient(180deg, rgba(0, 26, 58, .42) 0%, rgba(0, 30, 66, .5) 60%, rgba(0, 30, 66, .72) 100%),
      linear-gradient(90deg, rgba(0, 20, 46, .95) 0%, rgba(0, 22, 50, .8) 38%, rgba(0, 24, 54, .18) 100%);
  }

  .home-cover-media img {
    object-position: 70% 42%;
  }

  .home-cover .mobile-hero-title {
    max-width: 100%;
    font-size: clamp(2.1rem, 9.2vw, 42px);
    line-height: 1.08;
    overflow-wrap: normal;
    word-break: keep-all;
    white-space: normal;
  }

  .home-cover .eyebrow {
    display: none;
  }

  .home-cover .home-cover-description {
    max-width: 310px;
    margin-top: 14px;
    font-size: .92rem;
    line-height: 1.44;
  }

  .home-cover .intro-actions {
    max-width: 100%;
    gap: 12px;
    margin-top: 24px;
  }

  .home-cover .hero-primary {
    display: none;
  }

  .home-cover .hero-mobile-services {
    order: 2;
    display: inline-flex;
    border-color: rgba(255, 255, 255, .62);
    background: rgba(255, 255, 255, .04);
    color: #fff;
  }

  .home-cover .button {
    min-height: 42px;
    padding: .58rem .85rem;
    border-radius: 5px;
    font-size: .78rem;
  }

  .home-info-band {
    margin-top: -62px;
    padding: 0 20px;
  }

  .home-info-grid {
    padding: 8px 14px;
    border-radius: 14px;
    box-shadow: 0 10px 22px rgba(6, 46, 95, .14);
  }

  .home-info-item,
  .home-info-item:nth-child(odd) {
    min-height: 64px;
    grid-template-columns: 26px minmax(0, 1fr);
    gap: 2px 10px;
    padding: 9px 6px;
  }

  .mobile-info-icon {
    width: 24px;
    height: 24px;
    color: #092a59;
  }

  .home-info-item .mobile-info-icon svg {
    width: 20px;
    height: 20px;
    stroke: #092a59;
  }

  .home-info-item strong {
    font-size: .86rem;
  }

  .home-info-item span:not(.mobile-info-icon) {
    font-size: .72rem;
    line-height: 1.26;
  }

  .home-services,
  .home-history,
  .home-values,
  .home-studio {
    padding: 30px 0;
  }

  .home-section-heading {
    margin-bottom: 18px;
  }

  .home-section-heading h2,
  .home-history-copy h2,
  .home-values-intro h2,
  .home-numbers-heading h2 {
    font-size: 1.25rem;
  }

  .home-section-heading .eyebrow,
  .home-numbers-heading .eyebrow,
  .home-history-copy .eyebrow,
  .home-values-intro .eyebrow,
  .home-studio-content .eyebrow,
  .home-numbers-heading p,
  .home-values-intro p,
  .home-history-copy > p:not(:last-child):not(.eyebrow) {
    display: none;
  }

  .home-section-heading h2,
  .home-numbers-heading h2,
  .home-history-copy h2,
  .home-values-intro h2,
  .home-studio-content h2 {
    font-size: 0;
  }

  .home-section-heading h2::after,
  .home-numbers-heading h2::after,
  .home-history-copy h2::after,
  .home-values-intro h2::after,
  .home-studio-content h2::after {
    display: block;
    font-size: 1.25rem;
    line-height: 1.18;
  }

  .home-section-heading h2::after {
    content: "I nostri servizi";
  }

  .home-numbers-heading h2::after {
    content: "I nostri numeri";
    color: #fff;
  }

  .home-history-copy h2::after {
    content: "La nostra storia";
  }

  .home-values-intro h2::after {
    content: "I nostri valori";
  }

  .home-studio-content h2::after {
    content: "Lo studio";
    font-size: 1.15rem;
  }

  .home-history-copy .button {
    font-size: 0;
  }

  .home-history-copy .button::after {
    content: "Vedi tutta la timeline";
    font-size: .82rem;
  }

  .home-service-grid {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    overflow-y: visible;
    margin: 0 -20px;
    padding: 4px 20px 20px;
    scroll-padding-left: 20px;
    scroll-snap-type: x proximity;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .home-service-grid::-webkit-scrollbar {
    display: none;
  }

  .home-service-card {
    flex: 0 0 42vw;
    min-width: 172px;
    max-width: 224px;
    grid-template-columns: minmax(0, 1fr);
    justify-items: center;
    min-height: 190px;
    gap: 10px;
    padding: 18px 14px 34px;
    border-radius: 12px;
    box-shadow: 0 6px 16px rgba(6, 46, 95, .1);
    scroll-snap-align: start;
  }

  .home-service-icon {
    grid-row: auto;
  }

  .home-service-card::after {
    right: 50%;
    bottom: 14px;
    transform: translateX(50%);
    font-size: 1.2rem;
  }

  .home-service-icon {
    width: 40px;
    height: 40px;
    margin: 0 auto;
  }

  .home-service-card span {
    font-size: 0;
    line-height: 1.18;
    text-align: center;
  }

  .home-service-card span::after {
    display: block;
    font-size: .9rem;
    line-height: 1.18;
    font-weight: 700;
    color: #092a59;
  }

  .home-service-card:nth-child(1) span::after {
    content: "Condomini";
  }

  .home-service-card:nth-child(2) span::after {
    content: "Patrimonio";
  }

  .home-service-card:nth-child(3) span::after {
    content: "Tecnica";
  }

  .home-service-card:nth-child(4) span::after {
    content: "Sinistri";
  }

  .home-service-card:nth-child(5) span::after {
    content: "Consulenza";
  }

  .home-service-card p {
    font-size: .7rem;
    line-height: 1.36;
    text-align: center;
    overflow-wrap: break-word;
    word-break: normal;
    hyphens: auto;
  }

  .home-numbers {
    padding: 30px 0 28px;
  }

  .home-numbers .home-section-shell {
    gap: 18px;
  }

  .home-numbers-grid {
    gap: 10px;
  }

  .home-number-item {
    position: relative;
    min-height: 92px;
    padding: 16px 18px;
    border-radius: 12px;
  }

  .mobile-number-icon {
    position: absolute;
    top: 14px;
    right: 14px;
    display: block;
    width: 22px;
    height: 22px;
    color: rgba(255, 255, 255, .45);
  }

  .mobile-number-icon svg {
    width: 100%;
    height: 100%;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .home-number-item strong {
    font-size: 2.25rem;
  }

  .home-number-item > span {
    font-size: .82rem;
    line-height: 1.28;
  }

  .home-history {
    padding-top: 26px;
  }

  .home-history-copy {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    margin-bottom: 10px;
    text-align: left;
  }

  .home-history-copy h2 {
    text-align: left;
  }

  .home-history-copy p:last-child {
    display: block;
  }

  .home-history-copy .button {
    font-size: 0;
    white-space: nowrap;
  }

  .home-history-years {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(150px, 46vw);
    gap: 14px;
    overflow-x: auto;
    padding: 4px 20px 16px;
    margin: 0 -20px;
    scroll-snap-type: x proximity;
  }

  .home-year-card {
    position: relative;
    display: block;
    flex: initial;
    height: auto;
    min-height: 0;
    padding: 0;
    border: 0;
    border-radius: 10px;
    background: transparent;
    box-shadow: none;
    overflow: hidden;
    scroll-snap-align: start;
  }

  .home-year-logo {
    position: relative;
    inset: auto;
    display: block;
    width: 100%;
    height: auto;
    max-width: none;
    aspect-ratio: 448 / 246;
    overflow: hidden;
  }

  .home-year-card > span:first-child {
    display: none;
  }

  .home-year-card::after {
    display: none;
    content: none;
  }

  .home-values {
    padding-top: 26px;
  }

  .home-values-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
    border: 1px solid rgba(6, 46, 95, .1);
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 8px 18px rgba(6, 46, 95, .07);
    overflow: hidden;
  }

  .home-value-item {
    grid-template-columns: 30px minmax(0, 1fr);
    align-items: center;
    gap: 3px 12px;
    min-height: 0;
    padding: 12px 14px;
    border-radius: 0;
    border-top: 1px solid var(--line);
    background: transparent;
    box-shadow: none;
  }

  .home-value-item:first-child {
    border-top: 0;
  }

  .home-value-icon {
    width: 28px;
    height: 28px;
    stroke-width: 2.4;
  }

  .home-value-item h3 {
    font-size: .86rem;
  }

  .home-value-item p {
    font-size: .72rem;
    line-height: 1.28;
  }

  .home-studio {
    padding: 26px 0 30px;
  }

  .home-studio-layout {
    grid-template-columns: minmax(0, 1fr) minmax(0, .95fr);
    gap: 0;
    align-items: stretch;
  }

  .home-studio-image-empty {
    border-radius: 12px 0 0 12px;
  }

  .home-studio-image img.mobile-studio-photo {
    display: none;
  }

  .home-studio-content {
    display: grid;
    align-content: center;
    padding: 16px 16px;
    border-top: 1px solid rgba(6, 46, 95, .1);
    border-left: 0;
    border-radius: 0 12px 12px 0;
  }

  .home-studio-content p:not(.eyebrow) {
    font-size: .8rem;
    line-height: 1.4;
  }

  .home-studio-content .button {
    min-height: 44px;
    padding: .6rem .85rem;
    font-size: .78rem;
    border-radius: 6px;
  }

  .footer-cta {
    background: linear-gradient(135deg, #00234d, #06407d);
  }

  .footer-cta-card {
    grid-template-columns: 1fr;
    align-items: stretch;
    gap: 0;
    padding: 28px 20px;
  }

  .footer-cta-panel {
    gap: 8px;
  }

  .footer-cta-panel:first-child {
    grid-template-columns: 1fr;
  }

  .footer-cta-panel:nth-child(2) {
    display: none;
  }

  .footer-cta-panel + .footer-cta-panel {
    margin: 0;
    padding: 0;
    border-top: 0;
  }

  .footer-cta-copy h2 {
    font-size: 1.35rem;
  }

  .footer-cta-copy p {
    font-size: .92rem;
  }

  .footer-cta-actions {
    gap: 10px;
    margin-top: 16px;
  }

  .footer-action {
    min-height: 50px;
    padding: .7rem 1rem;
    border-radius: 6px;
    font-size: .9rem;
  }

  .site-footer {
    background: linear-gradient(135deg, #001e42, #00366f);
  }

  .footer-inner {
    padding: 26px 20px 22px;
  }

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

  .footer-column {
    display: none;
  }

  .mobile-footer-essentials,
  .mobile-footer-accordions {
    display: grid;
  }

  .footer-logo {
    display: block;
    width: 168px;
    max-width: 62%;
    height: 50px;
    background: url("../images/logo_white.png") left center / auto 50px no-repeat;
  }

  .footer-logo span,
  .footer-logo small {
    display: none;
  }

  .footer-brand::after,
  .footer-column h2::after {
    display: none;
  }

  .footer-brand p {
    margin-top: 10px;
    max-width: 340px;
    font-size: .82rem;
    line-height: 1.45;
  }

  .footer-column h2 {
    font-family: system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
    font-size: .78rem;
    letter-spacing: .04em;
    text-transform: uppercase;
  }

  .footer-column ul {
    gap: 6px;
    margin-top: 10px;
  }

  .footer-column:not(:last-child) li {
    border-bottom: 0;
  }

  .footer-column:not(:last-child) a,
  .footer-contact-list li {
    min-height: 0;
    display: block;
    font-size: .82rem;
    line-height: 1.4;
  }

  .footer-column:not(:last-child) a span,
  .footer-contact-list svg {
    display: none;
  }

  .footer-bottom {
    margin-top: 22px;
    padding-top: 16px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    text-align: center;
  }

  .footer-bottom p,
  .footer-bottom a {
    font-size: .72rem;
    line-height: 1.4;
  }

  .footer-bottom nav {
    justify-content: center;
    gap: .35rem .65rem;
  }

  .footer-bottom nav a + a::before {
    margin-right: .65rem;
  }

  .footer-bottom p:last-child {
    justify-self: center;
    text-align: center;
  }
}

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

  .home-cover-media img {
    animation: none !important;
  }

  .home-value-icon {
    transform: none !important;
  }
}
