:root {
  --ink: #13212a;
  --ink-soft: #41535d;
  --deep: #06313d;
  --teal: #0d6f73;
  --teal-light: #dcefee;
  --copper: #b9673a;
  --mist: #f3f6f3;
  --paper: #ffffff;
  --line: #d8e1df;
  --shadow: 0 16px 38px rgba(19, 33, 42, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, sans-serif;
  color: var(--ink);
  background: var(--paper);
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 40;
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(18px, 4vw, 54px);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 1px 0 var(--line);
  backdrop-filter: blur(14px);
  transition: background 220ms ease, color 220ms ease, box-shadow 220ms ease;
}

.site-header.is-scrolled,
.site-header.menu-active {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 1px 0 var(--line);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 800;
}

.brand-logo {
  width: clamp(168px, 17vw, 250px);
  height: auto;
}

.brand-symbol {
  width: 38px;
  height: 38px;
  border: 2px solid currentColor;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
  font-weight: 700;
}

.brand-text {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 13px;
}

.main-nav {
  display: flex;
  align-items: stretch;
  gap: 2px;
  height: 100%;
}

.main-nav > a,
.nav-item > a {
  display: inline-flex;
  align-items: center;
  padding: 0 15px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
}

.nav-contact {
  margin-left: 6px;
  color: #fff;
  background: var(--teal);
}

.site-header:not(.is-scrolled):not(.menu-active) .nav-contact {
  background: var(--teal);
  border: 1px solid var(--teal);
}

.nav-item {
  position: relative;
  display: flex;
}

.mega-panel {
  position: absolute;
  top: 82px;
  left: 0;
  width: 430px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 10px 22px;
  padding: 24px;
  background: #fff;
  color: var(--ink);
  box-shadow: var(--shadow);
  border-top: 3px solid var(--copper);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.nav-item:hover .mega-panel,
.nav-item:focus-within .mega-panel {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.mega-panel strong {
  display: block;
  margin-bottom: 8px;
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
  font-size: 20px;
}

.mega-panel p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.55;
}

.mega-panel a {
  color: var(--ink);
  text-decoration: none;
  font-weight: 700;
  border-bottom: 1px solid var(--line);
  padding: 8px 0;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid currentColor;
  background: transparent;
  color: inherit;
  padding: 10px;
}

.menu-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 86svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: #fff;
  background: var(--deep);
}

.hero-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 52% 46%;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(2, 31, 41, 0.82), rgba(2, 31, 41, 0.42) 46%, rgba(2, 31, 41, 0.08)),
    linear-gradient(0deg, rgba(2, 31, 41, 0.44), transparent 42%);
}

.hero-content {
  position: relative;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 170px 0 68px;
}

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

.hero .kicker {
  color: #ffcfaa;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
  letter-spacing: 0;
}

h1 {
  max-width: 920px;
  font-size: clamp(56px, 8vw, 116px);
  line-height: 0.92;
}

h2 {
  font-size: clamp(34px, 4.4vw, 68px);
  line-height: 1;
}

h3 {
  font-size: 27px;
  line-height: 1.12;
}

p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.72;
}

.hero-copy {
  max-width: 590px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 20px;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid currentColor;
  text-decoration: none;
  font-weight: 800;
  font-size: 14px;
  cursor: pointer;
}

.button::after {
  content: ">";
  margin-left: 12px;
}

.button.primary {
  color: #fff;
  background: var(--teal);
  border-color: var(--teal);
}

.button.secondary {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.55);
}

.metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.metric {
  min-height: 146px;
  padding: 28px clamp(18px, 4vw, 46px);
  border-right: 1px solid var(--line);
}

.metric strong {
  display: block;
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
  font-size: clamp(34px, 4vw, 48px);
  color: var(--deep);
  line-height: 1;
}

.metric span {
  display: block;
  margin-top: 12px;
  color: var(--ink-soft);
  font-weight: 700;
  line-height: 1.35;
}

.section {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(74px, 10vw, 132px) 0;
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.7fr);
  gap: 52px;
  align-items: start;
}

.intro-copy {
  display: grid;
  gap: 20px;
  padding-top: 8px;
}

.feature-band {
  position: relative;
  min-height: 640px;
  display: flex;
  align-items: flex-end;
  color: #fff;
  background: var(--deep);
  overflow: hidden;
}

.feature-band img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-band::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(5, 34, 45, 0.76), rgba(5, 34, 45, 0.05) 52%);
}

.feature-panel {
  position: relative;
  z-index: 1;
  width: min(620px, calc(100% - 40px));
  margin-left: max(20px, calc((100vw - 1180px) / 2));
  margin-bottom: 58px;
}

.feature-panel span,
.responsibility span,
.contact-band span {
  display: block;
  margin-bottom: 16px;
  color: #ffcfaa;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 12px;
  font-weight: 800;
}

.feature-panel p,
.responsibility p {
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 18px;
}

.section-head {
  display: grid;
  grid-template-columns: 1fr minmax(280px, 430px);
  gap: 48px;
  align-items: end;
  margin-bottom: 38px;
}

.service-mosaic {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 265px;
  gap: 18px;
}

.service-tile {
  position: relative;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 26px;
  overflow: hidden;
  color: var(--ink);
  background: var(--mist);
  border: 1px solid var(--line);
}

.service-tile.large {
  grid-column: span 2;
  grid-row: span 2;
  color: #fff;
}

.service-tile.image {
  grid-column: span 2;
  color: #fff;
}

.service-tile.accent {
  background: var(--teal-light);
}

.service-tile img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-tile.large::after,
.service-tile.image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(5, 35, 46, 0.78), rgba(5, 35, 46, 0.06));
}

.service-tile > div {
  position: relative;
  z-index: 1;
}

.service-tile span {
  display: block;
  margin-bottom: 12px;
  color: var(--copper);
  font-weight: 800;
}

.service-tile.large span,
.service-tile.image span {
  color: #ffcfaa;
}

.service-tile p {
  margin-top: 12px;
}

.service-tile.large p,
.service-tile.image p {
  color: rgba(255, 255, 255, 0.82);
}

.model-section {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  align-items: stretch;
  background: var(--deep);
  color: #fff;
}

.model-image {
  min-height: 640px;
}

.model-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.model-content {
  align-self: center;
  padding: clamp(48px, 8vw, 108px);
}

.model-content p {
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
}

.principles {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 32px;
}

.principles span {
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.08);
  border-left: 3px solid var(--copper);
  font-weight: 800;
}

.fleet {
  display: grid;
  grid-template-columns: 0.58fr 1.42fr;
  gap: 54px;
  align-items: start;
}

.fleet-copy p {
  margin-top: 24px;
  font-size: 18px;
}

.vessel-card {
  background: #fff;
  box-shadow: var(--shadow);
}

.vessel-card img {
  width: 100%;
  aspect-ratio: 16 / 8.7;
  object-fit: cover;
}

.fleet-cards {
  display: grid;
  gap: 26px;
}

.vessel-body {
  padding: 28px;
}

.vessel-eyebrow {
  margin-bottom: 10px;
  color: var(--copper);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 12px;
  font-weight: 800;
}

.vessel-body h3 {
  margin-bottom: 12px;
}

.vessel-specs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 24px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.vessel-specs div {
  padding: 20px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.vessel-specs strong {
  display: block;
  margin-bottom: 8px;
  color: var(--copper);
  font-size: 12px;
  text-transform: uppercase;
}

.vessel-specs span {
  display: block;
  font-weight: 800;
  line-height: 1.25;
}

.responsibility {
  position: relative;
  min-height: 560px;
  display: grid;
  align-items: end;
  color: #fff;
  overflow: hidden;
  background: var(--deep);
}

.responsibility img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.82;
}

.responsibility::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(3, 30, 39, 0.82), rgba(3, 30, 39, 0.16));
}

.responsibility > div {
  position: relative;
  z-index: 1;
  width: min(720px, calc(100% - 40px));
  margin: 0 auto;
  padding-bottom: 78px;
}

.insights {
  background: #fff;
}

.insight-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.insight-grid article {
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.insight-grid span {
  color: var(--copper);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 12px;
}

.insight-grid a {
  width: max-content;
  color: var(--teal);
  text-decoration: none;
  font-weight: 800;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.team-card {
  min-height: 188px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 26px;
  background: var(--mist);
  border: 1px solid var(--line);
  border-top: 3px solid var(--line);
}

.team-card.lead {
  grid-column: span 3;
  color: #fff;
  background: var(--deep);
  border-top-color: var(--copper);
}

.team-card span {
  color: var(--copper);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 12px;
  font-weight: 800;
}

.team-card.lead span {
  color: #ffcfaa;
}

.team-card h3 {
  margin: 18px 0 10px;
  font-size: 24px;
}

.team-card p {
  font-size: 14px;
  line-height: 1.55;
}

.team-card.lead p {
  color: rgba(255, 255, 255, 0.78);
}

.contact-band {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: clamp(44px, 7vw, 76px) clamp(20px, 6vw, 72px);
  color: #fff;
  background: var(--teal);
}

.contact-band h2 {
  max-width: 760px;
}

.contact-band .button.primary {
  background: #fff;
  border-color: #fff;
  color: var(--teal);
  flex: 0 0 auto;
}

.contact-details {
  display: grid;
  gap: 10px;
  padding: 28px;
  color: var(--ink);
  background: #fff;
}

.contact-details p,
.contact-details a {
  color: var(--ink);
}

.contact-details a {
  font-weight: 800;
  text-decoration: none;
}

.site-footer {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 34px;
  padding: 54px clamp(20px, 6vw, 72px);
  color: #dcefee;
  background: #071c21;
}

.footer-brand {
  display: grid;
  gap: 14px;
  align-content: start;
}

.footer-logo {
  width: min(300px, 100%);
  height: auto;
}

.footer-brand .brand-symbol {
  color: #fff;
}

.footer-brand p,
.footer-contact p {
  color: rgba(255, 255, 255, 0.66);
}

.footer-links {
  display: grid;
  gap: 12px;
  align-content: start;
}

.footer-links a {
  color: #fff;
  text-decoration: none;
  font-weight: 700;
}

.footer-contact {
  display: grid;
  gap: 10px;
  align-content: start;
}

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

.simple-shell {
  width: min(760px, 100%);
  padding: clamp(32px, 6vw, 64px);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.simple-logo {
  width: min(260px, 70%);
  margin-bottom: 34px;
}

.simple-shell h1 {
  margin-bottom: 18px;
  color: var(--deep);
}

.simple-shell h2 {
  margin: 34px 0 12px;
  font-size: 30px;
}

.simple-shell p {
  margin-bottom: 18px;
}

.legal-shell a:not(.button) {
  color: var(--teal);
  font-weight: 800;
}

.page-hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: flex-end;
  padding-top: 82px;
  color: #fff;
  overflow: hidden;
  background: var(--deep);
}

.page-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.88;
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(3, 31, 40, 0.84), rgba(3, 31, 40, 0.18));
}

.page-hero-content {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 0 0 70px;
}

.page-hero-content h1 {
  max-width: 900px;
  font-size: clamp(46px, 7vw, 92px);
}

.page-hero-content p {
  max-width: 720px;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 19px;
}

.content-grid {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 52px;
  align-items: start;
}

.sticky-note {
  position: sticky;
  top: 110px;
  padding: 28px;
  background: var(--mist);
  border-left: 4px solid var(--teal);
}

.rich-copy {
  display: grid;
  gap: 24px;
}

.rich-copy h2 {
  color: var(--deep);
}

.rich-copy h3 {
  margin-top: 12px;
}

.split-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.info-box {
  padding: 24px;
  background: var(--mist);
  border-top: 4px solid var(--copper);
}

.info-box p {
  margin-top: 10px;
}

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

.detail-card {
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.detail-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.detail-card-body {
  padding: 28px;
}

.spec-table {
  width: 100%;
  margin-top: 20px;
  border-collapse: collapse;
}

.spec-table th,
.spec-table td {
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
  text-align: left;
}

.spec-table th {
  width: 38%;
  color: var(--copper);
  font-size: 12px;
  text-transform: uppercase;
}

.contact-page-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 34px;
  align-items: start;
}

.contact-card,
.inquiry-form {
  padding: 30px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.contact-card {
  display: grid;
  gap: 18px;
}

.contact-card a {
  color: var(--teal);
  font-weight: 800;
  text-decoration: none;
}

.inquiry-form {
  display: grid;
  gap: 16px;
}

.inquiry-form label {
  display: grid;
  gap: 8px;
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 800;
}

.inquiry-form input,
.inquiry-form select,
.inquiry-form textarea {
  width: 100%;
  padding: 13px;
  border: 1px solid var(--line);
  color: var(--ink);
  background: #fff;
  font: inherit;
}

.inquiry-form textarea {
  min-height: 130px;
  resize: vertical;
}

.inquiry-form .button {
  width: max-content;
  border: 0;
}

.policy-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

@media (max-width: 1040px) {
  .content-grid,
  .contact-page-grid,
  .fleet-detail-grid,
  .policy-strip {
    grid-template-columns: 1fr;
  }

  .sticky-note {
    position: static;
  }
}

@media (max-width: 700px) {
  .page-hero {
    min-height: 460px;
    padding-top: 72px;
  }

  .page-hero-content {
    width: calc(100% - 32px);
    padding-bottom: 46px;
  }

  .split-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1040px) {
  .main-nav {
    position: fixed;
    top: 82px;
    right: 0;
    bottom: 0;
    width: min(420px, 100%);
    height: auto;
    display: none;
    padding: 26px;
    flex-direction: column;
    align-items: stretch;
    background: #fff;
    color: var(--ink);
    box-shadow: var(--shadow);
    overflow-y: auto;
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav > a,
  .nav-item > a {
    min-height: 52px;
    padding: 0;
    border-bottom: 1px solid var(--line);
  }

  .nav-contact {
    justify-content: center;
    margin: 12px 0 0;
    color: #fff;
  }

  .nav-item {
    display: block;
  }

  .mega-panel {
    position: static;
    width: auto;
    display: grid;
    grid-template-columns: 1fr;
    padding: 16px 0 22px;
    box-shadow: none;
    border-top: 0;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .menu-toggle {
    display: block;
  }

  .metrics,
  .service-mosaic,
  .insight-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .intro-grid,
  .section-head,
  .model-section,
  .fleet,
  .contact-band,
  .site-footer {
    grid-template-columns: 1fr;
  }

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

  .team-card.lead {
    grid-column: span 2;
  }

  .model-image {
    min-height: 420px;
  }

  .service-tile.large,
  .service-tile.image {
    grid-column: span 2;
  }
}

@media (max-width: 700px) {
  .site-header {
    height: 72px;
    padding: 0 16px;
  }

  .brand-text {
    max-width: 170px;
    font-size: 11px;
  }

  .brand-logo {
    width: 158px;
  }

  .main-nav {
    top: 72px;
  }

  .hero {
    min-height: 78svh;
  }

  .hero-media {
    object-position: 67% center;
  }

  .hero-content {
    width: calc(100% - 32px);
    padding: 120px 0 44px;
  }

  h1 {
    font-size: 48px;
  }

  h2 {
    font-size: 38px;
  }

  h3 {
    font-size: 24px;
  }

  .hero-copy {
    font-size: 17px;
  }

  .button {
    width: 100%;
  }

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

  .table-wrap,
  .detail-card {
    overflow-x: auto;
  }

  .metrics,
  .service-mosaic,
  .insight-grid,
  .team-grid,
  .vessel-specs,
  .principles {
    grid-template-columns: 1fr;
  }

  .team-card.lead {
    grid-column: auto;
  }

  .metric {
    min-height: 118px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .section {
    width: calc(100% - 32px);
  }

  .feature-band {
    min-height: 560px;
  }

  .feature-panel {
    width: calc(100% - 32px);
    margin-left: 16px;
    margin-bottom: 42px;
  }

  .service-mosaic {
    grid-auto-rows: auto;
  }

  .service-tile,
  .service-tile.large,
  .service-tile.image {
    grid-column: auto;
    min-height: 270px;
  }

  .contact-band {
    display: grid;
  }

  .contact-details {
    padding: 20px;
  }
}
/* Accessibility and production form helpers */
.skip-link{position:fixed;z-index:9999;left:1rem;top:-5rem;background:#fff;color:#10233a;padding:.8rem 1rem;border-radius:.35rem}
.skip-link:focus{top:1rem}
.form-honeypot{position:absolute!important;left:-10000px!important;width:1px!important;height:1px!important;overflow:hidden!important}
:focus-visible{outline:3px solid #58b8e8;outline-offset:3px}
@media(prefers-reduced-motion:reduce){*,*::before,*::after{scroll-behavior:auto!important;animation-duration:.01ms!important;animation-iteration-count:1!important;transition-duration:.01ms!important}}
