:root {
  --ink: #14313b;
  --muted: #5c6d72;
  --paper: #fbf8f1;
  --surface: #ffffff;
  --sea: #0f6f8b;
  --sea-dark: #0d4c61;
  --mint: #dff2e6;
  --sun: #f6c659;
  --rust: #bd4d3a;
  --line: #dde7e6;
  --shadow: 0 18px 50px rgba(20, 49, 59, 0.15);
  --radius: 8px;
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

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

a {
  color: inherit;
}

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

.skip-link,
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.skip-link:focus {
  z-index: 20;
  top: 1rem;
  left: 1rem;
  width: auto;
  height: auto;
  padding: 0.75rem 1rem;
  clip: auto;
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.site-header {
  position: fixed;
  z-index: 10;
  top: 0;
  right: 0;
  left: 0;
  background: rgba(251, 248, 241, 0.92);
  border-bottom: 1px solid rgba(221, 231, 230, 0.6);
  backdrop-filter: blur(16px);
}

.nav {
  width: min(100% - 2rem, var(--max));
  min-height: 72px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  min-width: 0;
  flex: 0 1 auto;
}

.brand-mark {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  background: var(--sea);
  color: #fff;
  font-weight: 800;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 1rem;
  line-height: 1.2;
}

.brand small {
  color: var(--muted);
  font-size: 0.78rem;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.nav-menu a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 0.85rem;
  border-radius: var(--radius);
  color: var(--ink);
  font-weight: 700;
  text-decoration: none;
}

.nav-menu a:hover,
.nav-menu a:focus-visible {
  background: var(--mint);
  outline: none;
}

.nav-menu .nav-cta {
  background: var(--ink);
  color: #fff;
}

.nav-menu .nav-cta:hover,
.nav-menu .nav-cta:focus-visible {
  background: var(--sea-dark);
}

.language-select {
  display: inline-flex;
  align-items: center;
  margin-left: auto;
  flex: 0 0 auto;
}

.language-select select {
  min-height: 42px;
  min-width: 116px;
  padding: 0.5rem 2.15rem 0.5rem 0.8rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  appearance: none;
  background:
    linear-gradient(45deg, transparent 50%, var(--sea-dark) 50%) right 1rem center / 7px 7px no-repeat,
    linear-gradient(135deg, var(--sea-dark) 50%, transparent 50%) right 0.65rem center / 7px 7px no-repeat,
    var(--surface);
  color: var(--ink);
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(20, 49, 59, 0.06);
}

.language-select select:hover,
.language-select select:focus-visible {
  border-color: rgba(15, 111, 139, 0.36);
  outline: none;
  box-shadow: 0 0 0 4px rgba(15, 111, 139, 0.1);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--ink);
}

.icon-bars,
.icon-bars::before,
.icon-bars::after {
  display: block;
  width: 20px;
  height: 2px;
  margin: 0 auto;
  border-radius: 99px;
  background: currentColor;
}

.icon-bars::before,
.icon-bars::after {
  content: "";
}

.icon-bars::before {
  transform: translateY(-7px);
}

.icon-bars::after {
  transform: translateY(5px);
}

.hero {
  position: relative;
  min-height: 82vh;
  padding: 9.5rem 1rem 5.5rem;
  display: grid;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
  background: var(--ink);
}

.shopfront,
.shopfront svg,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.shopfront svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  z-index: 1;
  background:
    radial-gradient(circle at 24% 62%, rgba(6, 22, 28, 0.72) 0%, rgba(6, 22, 28, 0.5) 34%, rgba(6, 22, 28, 0.08) 64%),
    linear-gradient(90deg, rgba(8, 31, 39, 0.72) 0%, rgba(8, 31, 39, 0.42) 46%, rgba(8, 31, 39, 0.08) 100%),
    linear-gradient(0deg, rgba(8, 31, 39, 0.36), rgba(8, 31, 39, 0.04) 54%);
}

.shopfront {
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(100%, var(--max));
  margin: 0 auto;
  color: #fff;
}

.eyebrow {
  margin: 0 0 0.85rem;
  color: var(--sea);
  font-size: 0.84rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--sun);
}

.hero h1,
.hero-copy,
.hero .eyebrow {
  text-shadow: 0 3px 24px rgba(0, 0, 0, 0.72);
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin-top: 0;
  line-height: 1.1;
}

h1 {
  max-width: 820px;
  margin-bottom: 1rem;
  font-size: 3.5rem;
}

h2 {
  font-size: 2.25rem;
}

h3 {
  font-size: 1.2rem;
}

.hero-copy {
  max-width: 720px;
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.1rem;
}

.hidden {
  display: none;
}

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

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.78rem 1rem;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
  outline: none;
}

.button svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
  flex: 0 0 auto;
}

.button-primary {
  background: #25d366;
  color: #113022;
  box-shadow: 0 14px 36px rgba(37, 211, 102, 0.22);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: #6be694;
}

.button-secondary {
  background: var(--surface);
  color: var(--sea-dark);
  border-color: rgba(15, 111, 139, 0.2);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  background: var(--mint);
}

.button-ghost {
  background: transparent;
  color: var(--sea-dark);
  border-color: var(--line);
}

.button-ghost:hover,
.button-ghost:focus-visible {
  background: var(--surface);
}

.status-strip {
  width: min(100% - 2rem, var(--max));
  margin: -2.6rem auto 0;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 0.7fr 1.2fr;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.status-strip > div {
  padding: 1rem;
  display: grid;
  gap: 0.1rem;
  background: var(--surface);
}

.status-strip strong {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.status-strip small,
.status-strip span {
  color: var(--muted);
}

.status-strip a {
  color: var(--sea-dark);
  font-weight: 800;
}

.status-dot {
  width: 10px;
  height: 10px;
  display: inline-block;
  border-radius: 50%;
  background: var(--sun);
  box-shadow: 0 0 0 4px rgba(246, 198, 89, 0.18);
}

.status-dot.open {
  background: #20a85c;
  box-shadow: 0 0 0 4px rgba(32, 168, 92, 0.16);
}

.status-dot.closed {
  background: var(--rust);
  box-shadow: 0 0 0 4px rgba(189, 77, 58, 0.16);
}

.section {
  width: min(100% - 2rem, var(--max));
  margin: 0 auto;
  padding: 5rem 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 2rem;
}

.section-heading.compact {
  margin-bottom: 1.4rem;
}

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

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.86fr);
  gap: 2rem;
  align-items: start;
}

.intro-grid > p {
  margin: 0;
  font-size: 1.08rem;
}

.multi-copy {
  display: grid;
  gap: 1rem;
}

.multi-copy p {
  margin: 0;
  padding-left: 1rem;
  border-left: 4px solid var(--sun);
}

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

.service-card {
  min-height: 245px;
  padding: 1.25rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 30px rgba(20, 49, 59, 0.06);
  transform: translateY(0);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.service-card:hover,
.service-card:focus-within {
  border-color: rgba(15, 111, 139, 0.28);
  box-shadow: 0 20px 46px rgba(20, 49, 59, 0.14);
  transform: translateY(-6px);
}

.service-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
  border-radius: var(--radius);
  background: var(--mint);
  color: var(--sea-dark);
  transition: transform 220ms ease, background-color 220ms ease;
}

.service-card:hover .service-icon,
.service-card:focus-within .service-icon {
  background: #caecd9;
  transform: scale(1.06);
}

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

.service-card h3 {
  margin-bottom: 0.6rem;
}

.service-card p {
  margin: 0;
  color: var(--muted);
}

.brands {
  overflow: hidden;
  padding-top: 0;
}

.brands .section-heading p:not(.eyebrow) {
  margin: 1rem 0 0;
  color: var(--muted);
}

.brand-marquee {
  width: 100%;
  overflow: hidden;
  padding: 0.5rem 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.brand-track {
  width: max-content;
  display: flex;
  animation: brandScroll 36s linear infinite;
}

.brand-set {
  display: flex;
  flex: 0 0 auto;
  gap: 3rem;
  padding-right: 3rem;
}

.brand-chip {
  min-width: 128px;
  min-height: 58px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--ink);
  font-size: 1rem;
  font-weight: 800;
  text-align: center;
  white-space: nowrap;
  box-shadow: none;
}

.brand-chip img {
  width: 100%;
  max-width: 128px;
  max-height: 42px;
  object-fit: contain;
}

.brand-chip img[src*="Acson_International_logo"] {
  max-width: 150px;
  max-height: 48px;
  transform: scale(1.32);
}

.brand-chip-text {
  color: var(--sea-dark);
  font-size: 1.08rem;
}

.trust {
  width: 100%;
  max-width: none;
  padding-right: max(1rem, calc((100% - var(--max)) / 2));
  padding-left: max(1rem, calc((100% - var(--max)) / 2));
  background: var(--ink);
  color: #fff;
}

.trust .eyebrow {
  color: var(--sun);
}

.trust-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  overflow: visible;
}

.trust-list div {
  min-height: 150px;
  padding: 1.25rem;
  display: grid;
  align-content: start;
  gap: 0.35rem;
  background: rgba(255, 255, 255, 0.06);
  transition: transform 220ms ease, background-color 220ms ease, box-shadow 220ms ease;
}

.trust-list div:hover,
.trust-list div:focus-within {
  position: relative;
  z-index: 1;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.18);
  transform: translateY(-4px) scale(1.01);
}

.trust-list span {
  color: rgba(255, 255, 255, 0.76);
}

.info-band {
  width: 100%;
  max-width: none;
  padding-right: max(1rem, calc((100% - var(--max)) / 2));
  padding-left: max(1rem, calc((100% - var(--max)) / 2));
  background: #eff7f5;
}

.hours-layout,
.location-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.8fr);
  gap: 2rem;
  align-items: stretch;
}

.hours-table {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: visible;
}

.hours-table div {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  padding: 0.95rem 1.1rem;
  border-bottom: 1px solid var(--line);
  background: var(--surface);
  transition: transform 220ms ease, background-color 220ms ease, box-shadow 220ms ease;
}

.hours-table div:first-child {
  border-top-left-radius: var(--radius);
  border-top-right-radius: var(--radius);
}

.hours-table div:last-child {
  border-bottom-right-radius: var(--radius);
  border-bottom-left-radius: var(--radius);
}

.hours-table div:hover,
.hours-table div:focus-within {
  z-index: 1;
  background: #f7fbfa;
  box-shadow: 0 14px 30px rgba(20, 49, 59, 0.12);
  transform: translateY(-3px) scale(1.008);
}

.hours-table div:last-child {
  border-bottom: 0;
}

.hours-table span {
  color: var(--muted);
}

.hours-table strong {
  white-space: nowrap;
}

.hours-note {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--sea-dark);
  border-radius: var(--radius);
  color: #fff;
}

.hours-note h3 {
  margin-bottom: 0.7rem;
}

.hours-note p {
  margin-top: 0;
  color: rgba(255, 255, 255, 0.82);
}

.location-layout {
  align-items: center;
  padding: 1.5rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

address {
  display: grid;
  gap: 0.25rem;
  font-style: normal;
}

address strong {
  margin-bottom: 0.4rem;
}

address span {
  color: var(--muted);
}

.answers {
  padding-top: 4rem;
}

.faq-list {
  display: grid;
  gap: 0.8rem;
}

details {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: height 280ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

summary {
  padding: 1rem 1.1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
  font-weight: 800;
  list-style: none;
}

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

summary::after {
  content: "▾";
  width: 2.25rem;
  height: 2.25rem;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  margin-left: auto;
  border-radius: 999px;
  background: #e8f4f1;
  color: var(--sea-dark);
  font-size: 1.2rem;
  line-height: 1;
  transform: rotate(0deg);
  transition: transform 220ms ease, background-color 180ms ease;
}

details[open] summary::after {
  transform: rotate(180deg);
  background: var(--mint);
}

details[open] {
  border-color: rgba(15, 111, 139, 0.24);
  box-shadow: 0 12px 28px rgba(20, 49, 59, 0.07);
}

details p {
  margin: 0;
  padding: 0 1.1rem 1.1rem;
  color: var(--muted);
  opacity: 1;
  transform: translateY(0);
  transition: opacity 220ms ease, transform 220ms ease;
}

details:not([open]) p {
  opacity: 0;
  transform: translateY(-4px);
}

.facts {
  padding-top: 0;
}

.facts-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin: 0;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.facts-list div {
  min-height: 150px;
  padding: 1rem;
  background: var(--surface);
}

.facts-list dt {
  margin-bottom: 0.5rem;
  color: var(--sea-dark);
  font-weight: 800;
}

.facts-list dd {
  margin: 0;
  color: var(--muted);
}

.facts-list a {
  color: var(--sea-dark);
  font-weight: 800;
}

.site-footer {
  width: min(100% - 2rem, var(--max));
  margin: 0 auto;
  padding: 2.2rem 0 2.75rem;
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.35fr);
  gap: 2rem;
  align-items: start;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.footer-main {
  display: grid;
  gap: 0.35rem;
}

.footer-main strong {
  color: var(--ink);
}

.footer-details {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.footer-details > div {
  min-height: 126px;
  padding: 1rem;
  display: grid;
  align-content: start;
  gap: 0.35rem;
  background: var(--surface);
}

.footer-details span {
  color: var(--sea-dark);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.footer-details address,
.footer-details p {
  margin: 0;
  color: var(--muted);
}

.site-footer a {
  color: var(--sea-dark);
  font-weight: 800;
}

.toast {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 12;
  max-width: min(320px, calc(100% - 2rem));
  padding: 0.8rem 1rem;
  background: var(--ink);
  color: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transform: translateY(120%);
  opacity: 0;
  transition: opacity 180ms ease, transform 180ms ease;
}

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

@keyframes headerIn {
  from {
    opacity: 0;
    transform: translateY(-14px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroImageIn {
  from {
    opacity: 0.82;
    transform: scale(1.04);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes heroContentIn {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes brandScroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: no-preference) {
  .site-header {
    animation: headerIn 520ms ease both;
  }

  .shopfront {
    animation: heroImageIn 1400ms ease both;
  }

  .hero-content > * {
    opacity: 0;
    animation: heroContentIn 680ms ease both;
  }

  .hero-content > .eyebrow {
    animation-delay: 120ms;
  }

  .hero-content > h1 {
    animation-delay: 220ms;
  }

  .hero-content > .hero-copy {
    animation-delay: 340ms;
  }

  .hero-content > .hero-actions {
    animation-delay: 460ms;
  }

  body.reveal-ready .reveal-item {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 620ms ease, transform 620ms ease;
  }

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

@media (max-width: 980px) {
  h1 {
    font-size: 2.7rem;
  }

  h2 {
    font-size: 1.9rem;
  }

  .service-grid,
  .trust-list,
  .facts-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .status-strip,
  .intro-grid,
  .hours-layout,
  .location-layout,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .status-strip {
    margin-top: -1.5rem;
  }
}

@media (max-width: 760px) {
  .nav {
    min-height: 64px;
  }

  .nav-toggle {
    display: grid;
    place-items: center;
  }

  .nav-menu {
    position: absolute;
    top: 64px;
    right: 1rem;
    left: 1rem;
    display: none;
    padding: 0.6rem;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

  .nav-menu.open {
    display: grid;
  }

  .nav-menu a {
    justify-content: flex-start;
  }

  .language-select,
  .language-select select {
    width: auto;
  }

  .language-select select {
    min-width: 104px;
    max-width: 112px;
    padding-right: 1.95rem;
  }

  .hero {
    min-height: 84vh;
    padding-top: 7.5rem;
    padding-bottom: 4.5rem;
  }

  .hero-overlay {
    background:
      radial-gradient(circle at 34% 62%, rgba(7, 27, 34, 0.78) 0%, rgba(7, 27, 34, 0.54) 42%, rgba(7, 27, 34, 0.12) 78%),
      linear-gradient(0deg, rgba(7, 27, 34, 0.58) 0%, rgba(7, 27, 34, 0.34) 58%, rgba(7, 27, 34, 0.14) 100%);
  }

  h1 {
    font-size: 2.15rem;
  }

  h2 {
    font-size: 1.55rem;
  }

  .hero-copy {
    font-size: 1rem;
  }

  .section {
    padding: 3.5rem 0;
  }

  .trust,
  .info-band {
    padding-right: 0;
    padding-left: 0;
  }

  .trust .section-heading,
  .trust-list,
  .info-band .section-heading,
  .hours-layout {
    width: min(100% - 2rem, var(--max));
    margin-right: auto;
    margin-left: auto;
  }

  .trust-list {
    border-radius: var(--radius);
  }

  .hours-layout {
    gap: 1rem;
  }

  .hours-note {
    margin-right: 0;
    margin-left: 0;
  }

  .service-grid,
  .trust-list,
  .facts-list {
    grid-template-columns: 1fr;
  }

  .brand-chip {
    min-width: 108px;
    min-height: 58px;
    font-size: 0.94rem;
  }

  .brand-set {
    gap: 2rem;
    padding-right: 2rem;
  }

  .service-card,
  .trust-list div,
  .facts-list div {
    min-height: auto;
  }

  .site-footer {
    gap: 1.2rem;
  }

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

@media (max-width: 430px) {
  .nav {
    gap: 0.45rem;
  }

  .brand {
    gap: 0.5rem;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .brand strong {
    font-size: 0.92rem;
    max-width: 6.2rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .brand small {
    display: none;
  }

  .language-select select {
    min-width: 88px;
    max-width: 94px;
    padding: 0.45rem 1.65rem 0.45rem 0.58rem;
  }

  .hero-actions,
  .location-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .status-strip {
    width: min(100% - 1rem, var(--max));
  }

  .section,
  .nav,
  .site-footer {
    width: min(100% - 1rem, var(--max));
  }
}

@media (prefers-reduced-motion: reduce) {
  .brand-marquee {
    overflow: visible;
    mask-image: none;
  }

  .brand-track,
  .brand-set {
    width: auto;
    flex-wrap: wrap;
  }

  .brand-track {
    animation: none;
  }

  .brand-set[aria-hidden="true"] {
    display: none;
  }
}
