:root {
  --ink: #10182d;
  --ink-soft: #1b2947;
  --sun: #f4c430;
  --sun-deep: #c5960a;
  --paper: #f5f0e6;
  --paper-bright: #fffdf8;
  --white: #ffffff;
  --line: rgba(16, 24, 45, 0.16);
  --muted: #596276;
  --success: #1f6949;
  --danger: #9f3028;
  --shadow: 0 24px 70px rgba(16, 24, 45, 0.12);
  --radius: 22px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper-bright);
  color: var(--ink);
  font-family: "Avenir Next", Avenir, "Gill Sans", "Trebuchet MS", sans-serif;
  font-size: 17px;
  line-height: 1.65;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

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

:where(a, button, input, select, textarea):focus-visible {
  outline: 3px solid var(--sun);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: 0;
  z-index: 999;
  padding: 0.75rem 1rem;
  transform: translateY(-120%);
  background: var(--sun);
  color: var(--ink);
  font-weight: 800;
  text-decoration: none;
}

.skip-link:focus {
  transform: translateY(0);
}

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.shell {
  width: min(calc(100% - 2rem), var(--max));
  margin-inline: auto;
}

.eyebrow {
  margin: 0 0 0.85rem;
  color: var(--sun-deep);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

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

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

h1,
h2,
h3 {
  font-family: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  line-height: 1.08;
  text-wrap: balance;
}

h1 {
  margin-bottom: 1.4rem;
  font-size: clamp(2.8rem, 7vw, 6.4rem);
  letter-spacing: -0.045em;
}

h2 {
  margin-bottom: 1.1rem;
  font-size: clamp(2.1rem, 4.4vw, 4rem);
  letter-spacing: -0.035em;
}

h3 {
  margin-bottom: 0.65rem;
  font-size: clamp(1.35rem, 2vw, 1.75rem);
}

.lede {
  max-width: 720px;
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  color: var(--muted);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(16, 24, 45, 0.96);
  color: var(--white);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.utility {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.utility-inner {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.75rem;
}

.utility-links {
  display: flex;
  gap: 1rem;
}

.utility a {
  color: var(--sun);
  text-decoration: none;
}

.nav-row {
  min-height: 76px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 2rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--white);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.brand img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  border-radius: 50%;
  background: var(--ink);
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: 1.35rem;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--sun);
}

.nav-toggle {
  display: none;
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  padding: 0.6rem 0.8rem;
  font-weight: 800;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  min-height: 48px;
  padding: 0.8rem 1.2rem;
  border: 1px solid transparent;
  border-radius: 999px;
  background: var(--sun);
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.055em;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
  background: #ffd84e;
}

.button.dark {
  background: var(--ink);
  color: var(--white);
}

.button.outline {
  background: transparent;
  border-color: currentColor;
  color: inherit;
}

.button.small {
  min-height: 42px;
  padding: 0.65rem 1rem;
  font-size: 0.72rem;
}

.hero {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, black, transparent 85%);
}

.hero-inner {
  position: relative;
  min-height: 710px;
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(300px, 0.7fr);
  align-items: center;
  gap: 4rem;
  padding-block: 6rem;
}

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

.hero-copy {
  position: relative;
  z-index: 2;
}

.hero-copy .lede {
  color: rgba(255, 255, 255, 0.72);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2rem;
}

.manifest {
  position: relative;
  z-index: 1;
  padding: 1.35rem;
  transform: rotate(2.5deg);
  background: var(--paper);
  color: var(--ink);
  box-shadow: 18px 26px 0 rgba(244, 196, 48, 0.92), var(--shadow);
}

.manifest::before,
.manifest::after {
  content: "";
  position: absolute;
  left: -18px;
  width: 36px;
  height: 18px;
  background: var(--ink);
  border-radius: 0 0 20px 20px;
}

.manifest::before { top: 22%; }
.manifest::after { top: 68%; }

.manifest-top {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--ink);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.manifest-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.manifest-list li {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 0.8rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
}

.manifest-list strong {
  display: block;
  font-family: "Iowan Old Style", Georgia, serif;
  font-size: 1.15rem;
}

.manifest-list span {
  color: var(--muted);
  font-size: 0.84rem;
}

.manifest-no {
  color: var(--sun-deep);
  font-weight: 900;
}

.proof-strip {
  background: var(--sun);
  color: var(--ink);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.proof-item {
  padding: 1.4rem 1.6rem;
  border-right: 1px solid rgba(16, 24, 45, 0.18);
}

.proof-item:last-child {
  border-right: 0;
}

.proof-item strong {
  display: block;
  font-family: "Iowan Old Style", Georgia, serif;
  font-size: 1.25rem;
}

.proof-item span {
  font-size: 0.8rem;
  font-weight: 700;
}

.section {
  padding-block: clamp(4.5rem, 9vw, 8rem);
}

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

.section.ink {
  background: var(--ink);
  color: var(--white);
}

.section-heading {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 4rem;
  align-items: end;
  margin-bottom: 3rem;
}

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

.ink .section-heading p,
.ink .muted {
  color: rgba(255, 255, 255, 0.68);
}

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

.service-card {
  position: relative;
  min-height: 330px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 2rem;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  text-decoration: none;
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.service-card:nth-child(1),
.service-card:nth-child(4) { grid-column: span 7; }
.service-card:nth-child(2),
.service-card:nth-child(3) { grid-column: span 5; }

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.service-card::after {
  content: attr(data-number);
  position: absolute;
  right: -0.05em;
  bottom: -0.25em;
  color: rgba(16, 24, 45, 0.045);
  font-family: "Iowan Old Style", Georgia, serif;
  font-size: 10rem;
  font-weight: 800;
  line-height: 1;
}

.service-card p {
  max-width: 520px;
  color: var(--muted);
}

.card-link {
  position: relative;
  z-index: 2;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.sector-band {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  border-left: 1px solid rgba(255, 255, 255, 0.14);
}

.sector {
  min-height: 190px;
  padding: 1.4rem;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.sector span {
  display: block;
  margin-bottom: 3rem;
  color: var(--sun);
  font-size: 0.75rem;
  font-weight: 900;
}

.process-grid {
  counter-reset: steps;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
}

.process-step {
  counter-increment: steps;
  padding: 1.4rem 0;
  border-top: 4px solid var(--ink);
}

.process-step::before {
  content: "0" counter(steps);
  display: block;
  margin-bottom: 2.5rem;
  color: var(--sun-deep);
  font-size: 0.78rem;
  font-weight: 900;
}

.process-step p {
  color: var(--muted);
  font-size: 0.9rem;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 6rem);
  align-items: center;
}

.medal-panel {
  display: grid;
  grid-template-columns: minmax(240px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
  padding: clamp(1.5rem, 4vw, 3rem);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.medal-image {
  display: block;
  padding: 1rem;
  background: #f7f7f7;
  border-radius: calc(var(--radius) - 8px);
}

.medal-image img {
  width: 100%;
  height: auto;
}

.medal-note {
  color: var(--muted);
  font-size: 0.84rem;
}

.control-panel {
  background: var(--ink-soft);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  padding: clamp(1.5rem, 4vw, 3rem);
}

.control-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.control-list li {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 0.9rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.control-list li:last-child {
  border-bottom: 0;
}

.control-list b {
  color: var(--sun);
}

.callout {
  position: relative;
  overflow: hidden;
  background: var(--sun);
}

.callout::after {
  content: "PACK / CHECK / DELIVER";
  position: absolute;
  right: -2rem;
  bottom: -1.4rem;
  color: rgba(16, 24, 45, 0.08);
  font-size: clamp(3rem, 9vw, 8rem);
  font-weight: 900;
  letter-spacing: -0.06em;
  white-space: nowrap;
}

.callout-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.2fr auto;
  gap: 2rem;
  align-items: center;
  padding-block: 4rem;
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding-block: clamp(5rem, 10vw, 9rem);
  background: var(--ink);
  color: var(--white);
}

.page-hero::after {
  content: attr(data-code);
  position: absolute;
  right: -0.05em;
  bottom: -0.28em;
  color: rgba(244, 196, 48, 0.1);
  font-family: "Iowan Old Style", Georgia, serif;
  font-size: clamp(9rem, 28vw, 25rem);
  font-weight: 900;
  line-height: 1;
}

.page-hero .shell {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  max-width: 880px;
  font-size: clamp(3rem, 7vw, 6rem);
}

.page-hero .lede {
  color: rgba(255, 255, 255, 0.72);
}

.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(2rem, 7vw, 7rem);
}

.content-grid + .content-grid {
  margin-top: 5rem;
}

.content-grid p,
.content-grid li {
  color: var(--muted);
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
}

.feature-list li {
  position: relative;
  padding: 0.9rem 0 0.9rem 2rem;
  border-bottom: 1px solid var(--line);
}

.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.45rem;
  width: 10px;
  height: 10px;
  transform: rotate(45deg);
  background: var(--sun);
}

.note {
  padding: 1.25rem 1.4rem;
  background: var(--paper);
  border-left: 4px solid var(--sun-deep);
  color: var(--muted);
}

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

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

.faq summary {
  padding: 1.2rem 0;
  cursor: pointer;
  font-weight: 800;
}

.faq details p {
  max-width: 800px;
  color: var(--muted);
}

.quote-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.25fr);
  gap: clamp(2rem, 6vw, 6rem);
  align-items: start;
}

.contact-card {
  position: sticky;
  top: 140px;
  padding: 1.8rem;
  background: var(--ink);
  color: var(--white);
  border-radius: var(--radius);
}

.contact-card a {
  color: var(--sun);
}

.contact-card dl {
  margin: 2rem 0 0;
}

.contact-card dt {
  color: rgba(255,255,255,.56);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.contact-card dd {
  margin: .15rem 0 1rem;
}

.quote-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.1rem;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.field.full {
  grid-column: 1 / -1;
}

.field label,
.field legend {
  color: var(--ink);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 50px;
  padding: 0.75rem 0.85rem;
  border: 1px solid rgba(16, 24, 45, 0.25);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
}

.field textarea {
  min-height: 150px;
  resize: vertical;
}

.form-note,
.form-status {
  grid-column: 1 / -1;
  font-size: 0.84rem;
  color: var(--muted);
}

.form-status {
  display: none;
  padding: 0.8rem 1rem;
  border-radius: 8px;
}

.form-status.success {
  display: block;
  background: #e8f4ee;
  color: var(--success);
}

.form-status.error {
  display: block;
  background: #fbecea;
  color: var(--danger);
}

.employee-page {
  min-height: 100vh;
  background: var(--paper);
}

.employee-nav-row {
  grid-template-columns: 1fr auto;
}

.employee-hero {
  min-height: 440px;
}

.employee-hero .shell {
  padding-right: clamp(2rem, 20vw, 16rem);
}

.employee-access-shell {
  display: grid;
  grid-template-columns: minmax(260px, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(2rem, 7vw, 7rem);
  align-items: start;
}

.employee-intro {
  position: sticky;
  top: 130px;
}

.employee-security-note {
  display: grid;
  gap: 0.25rem;
  margin-top: 2rem;
  padding: 1.2rem 1.3rem;
  border-left: 4px solid var(--sun);
  background: var(--white);
  color: var(--muted);
}

.employee-security-note strong {
  color: var(--ink);
}

.employee-panel,
.employee-resources {
  min-width: 0;
  padding: clamp(1.5rem, 4vw, 3rem);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.employee-panel[hidden],
.employee-resources[hidden] {
  display: none;
}

.employee-login-form {
  display: grid;
  gap: 1.35rem;
}

.employee-login-form h2,
.employee-resources h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

.employee-login-form .field input {
  min-height: 64px;
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: 0.35em;
  text-align: center;
}

.employee-resources-heading {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--line);
}

.employee-logout {
  color: var(--ink);
}

.employee-resources > h3 {
  margin-top: 2rem;
  font-family: inherit;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.employee-resource-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.employee-resource-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 1rem;
  min-height: 94px;
  padding: 1rem 1.1rem;
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--ink);
  text-decoration: none;
  transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.employee-resource-card:hover {
  transform: translateY(-2px);
  border-color: var(--sun-deep);
  box-shadow: 0 12px 30px rgba(16, 24, 45, 0.1);
}

.employee-resource-card strong,
.employee-resource-card small {
  display: block;
}

.employee-resource-card small {
  margin-top: 0.3rem;
  color: var(--muted);
  line-height: 1.45;
}

.employee-resource-card.featured {
  grid-template-columns: auto minmax(0, 1fr) auto;
  min-height: 128px;
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}

.employee-resource-card.featured small {
  color: rgba(255, 255, 255, 0.66);
}

.resource-number {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--sun);
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 900;
}

.employee-footer {
  padding-top: 0;
}

.honeypot {
  position: absolute;
  left: -9999px;
}

.site-footer {
  padding-top: 4rem;
  background: #0a1020;
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 3rem;
  padding-bottom: 3rem;
}

.footer-grid h2 {
  font-family: inherit;
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-grid p,
.footer-grid address,
.footer-grid a {
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.86rem;
  font-style: normal;
  text-decoration: none;
}

.footer-grid a:hover {
  color: var(--sun);
}

.footer-links {
  display: grid;
  gap: 0.55rem;
}

.footer-legal {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  padding-block: 1.4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.75rem;
}

.legal-content {
  max-width: 860px;
}

.legal-content h2 {
  margin-top: 2.8rem;
  font-size: 2rem;
}

.legal-content h3 {
  margin-top: 2rem;
}

.legal-content p,
.legal-content li {
  color: var(--muted);
}

.legal-content table {
  width: 100%;
  border-collapse: collapse;
}

.legal-content th,
.legal-content td {
  padding: 0.8rem;
  border: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 600ms ease, transform 600ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 960px) {
  .utility { display: none; }
  .nav-row { grid-template-columns: 1fr auto; }
  .nav-toggle { display: inline-flex; }
  .header-cta { display: none; }
  .nav-links {
    position: fixed;
    inset: 76px 0 auto;
    display: none;
    padding: 1rem;
    background: var(--ink);
    border-top: 1px solid rgba(255,255,255,.12);
    flex-direction: column;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 0.8rem; }
  .hero-inner,
  .section-heading,
  .split,
  .medal-panel,
  .content-grid,
  .quote-layout,
  .employee-access-shell,
  .callout-inner { grid-template-columns: 1fr; }
  .hero-inner { min-height: auto; }
  .manifest { max-width: 560px; }
  .proof-grid { grid-template-columns: 1fr; }
  .proof-item { border-right: 0; border-bottom: 1px solid rgba(16,24,45,.18); }
  .service-card:nth-child(n) { grid-column: span 6; }
  .sector-band { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-card { position: static; }
  .employee-intro { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 620px) {
  body { font-size: 16px; }
  .shell { width: min(calc(100% - 1.25rem), var(--max)); }
  .brand span { max-width: 150px; line-height: 1.1; }
  .hero-inner { padding-block: 4rem; gap: 3rem; }
  .manifest { margin-right: 1rem; padding: 1rem; }
  .service-card:nth-child(n) { grid-column: 1 / -1; min-height: 280px; }
  .sector-band,
  .process-grid,
  .quote-form,
  .footer-grid { grid-template-columns: 1fr; }
  .field.full { grid-column: auto; }
  .footer-legal { flex-direction: column; }
  .callout-inner { padding-block: 3rem; }
  .employee-nav-row .brand span { display: none; }
  .employee-hero .shell { padding-right: 0; }
  .employee-resource-grid { grid-template-columns: 1fr; }
  .employee-resources-heading { align-items: stretch; flex-direction: column; }
}

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