/* ============================================================
   LaborLodge — site.css
   Direction: "site logistics board" — industrial-warm, confident.
   Display: Barlow Condensed 700 (uppercase). Body: Barlow.
   Signature: a surveyor's scale-rule (ticks + periodic orange marks)
   that recurs at section seams, echoing the core value — proximity.
   ============================================================ */

/* ---------- Design tokens ---------- */
:root {
  /* Palette */
  --navy-900: #0B1220;   /* darkest — footer, employer band */
  --navy-800: #101828;   /* deep navy — header, dark sections */
  --navy-700: #16213A;   /* elevated navy surface (cards on dark) */
  --navy-600: #1E2A44;   /* hairline / raised edges on dark */
  --orange:   #F97316;   /* safety orange — primary accent, CTAs */
  --orange-600: #EA580C; /* hover */
  --cream:    #FAF7F2;   /* warm off-white — light surfaces */
  --cream-200:#F1ECE3;   /* subtle warm panel */
  --cream-300:#E7E0D4;   /* warm border on light */

  --ink:      #16202E;   /* body text on light */
  --steel-700:#334155;   /* secondary text on light */
  --steel-500:#64748B;   /* muted text on light */
  --steel-400:#94A3B8;   /* secondary text on dark */
  --steel-300:#B8C2D0;   /* brighter muted on dark */

  /* Semantic */
  --bg: var(--cream);
  --text: var(--ink);

  --line-dark: rgba(255,255,255,.10);
  --line-light: rgba(16,24,40,.12);

  /* Type */
  --font-display: "Barlow Condensed", "Arial Narrow", sans-serif;
  --font-body: "Barlow", system-ui, -apple-system, "Segoe UI", sans-serif;
  --tracking-eyebrow: .2em;

  /* Shape */
  --radius: 8px;
  --radius-sm: 5px;
  --radius-pill: 999px;

  /* Layout */
  --header-h: 68px;
  --container: 1200px;
  --gutter: clamp(1.25rem, 4vw, 2.5rem);

  /* Shadow */
  --shadow-lg: 0 24px 60px -24px rgba(11,18,32,.55);
  --shadow-md: 0 14px 34px -18px rgba(11,18,32,.4);
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

h1, h2, h3 { margin: 0; font-family: var(--font-display); font-weight: 700; line-height: .98; }
p { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }

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

:where(a, button, input, select, textarea):focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 2px;
  border-radius: var(--radius-sm);
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -100px;
  z-index: 200;
  background: var(--orange);
  color: #fff;
  padding: .6rem 1rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  transition: top .2s ease;
}
.skip-link:focus { top: 1rem; }

/* ---------- Layout primitives ---------- */
.container {
  width: min(var(--container), 100%);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section { padding-block: clamp(3.75rem, 8vw, 7rem); position: relative; }
.section--light  { background: var(--cream); color: var(--ink); }
.section--cream  { background: var(--cream-200); color: var(--ink); }
.section--dark   { background: var(--navy-800); color: var(--cream); }
.section--darker { background: var(--navy-900); color: var(--cream); }

.section__head { max-width: 46rem; margin-bottom: clamp(2.25rem, 4vw, 3.25rem); }
.section__title {
  font-size: clamp(2rem, 4.6vw, 3.35rem);
  text-transform: uppercase;
  letter-spacing: -.005em;
  color: var(--ink);
}
.section__title--light { color: var(--cream); }
.section__intro {
  margin-top: 1.1rem;
  font-size: clamp(1.02rem, 1.5vw, 1.2rem);
  color: var(--steel-700);
  max-width: 42rem;
}
.section--dark .section__intro,
.section--darker .section__intro { color: var(--steel-300); }

/* ---------- Eyebrow (utility label + index tick) ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  margin: 0 0 1rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .8125rem;
  text-transform: uppercase;
  letter-spacing: var(--tracking-eyebrow);
  color: var(--steel-500);
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--orange);
  flex: none;
}
.eyebrow--light { color: var(--steel-300); }

/* ---------- Signature: surveyor's scale-rule ---------- */
/* Fine ticks every 9px + taller orange major ticks every 72px, anchored to the bottom edge. */
.scale-rule {
  height: 20px;
  width: 100%;
  background-image:
    repeating-linear-gradient(90deg, var(--line-light) 0 1px, transparent 1px 9px),
    repeating-linear-gradient(90deg, var(--orange) 0 2px, transparent 2px 72px);
  background-size: 9px 8px, 72px 16px;
  background-position: left bottom, left bottom;
  background-repeat: repeat-x, repeat-x;
}
.scale-rule--dark {
  background-image:
    repeating-linear-gradient(90deg, rgba(255,255,255,.14) 0 1px, transparent 1px 9px),
    repeating-linear-gradient(90deg, var(--orange) 0 2px, transparent 2px 72px);
  background-size: 9px 8px, 72px 16px;
  background-position: left bottom, left bottom;
  background-repeat: repeat-x, repeat-x;
}

/* ---------- Buttons ---------- */
.btn {
  --btn-bg: var(--orange);
  --btn-fg: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .8rem 1.4rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .95rem;
  letter-spacing: .02em;
  text-transform: uppercase;
  background: var(--btn-bg);
  color: var(--btn-fg);
  border: 2px solid transparent;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background-color .18s ease, transform .12s ease, border-color .18s ease, color .18s ease;
}
.btn--primary:hover { background: var(--orange-600); }
.btn--primary:active { transform: translateY(1px); }
.btn--lg { padding: 1rem 1.9rem; font-size: 1.02rem; }
.btn--ghost {
  --btn-bg: transparent;
  --btn-fg: var(--ink);
  border-color: var(--steel-500);
}
.btn--ghost:hover { border-color: var(--ink); background: rgba(16,24,40,.04); }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: color-mix(in srgb, var(--navy-800) 92%, transparent);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line-dark);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: var(--header-h);
}

.brand { display: inline-flex; align-items: center; }
.brand-fallback {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.6rem;
  letter-spacing: .01em;
  text-transform: uppercase;
  color: var(--cream);
  line-height: 1;
}
.brand-fallback__accent { color: var(--orange); }

.site-nav { display: flex; align-items: center; gap: 2rem; }
.site-nav__list { display: flex; align-items: center; gap: 1.75rem; }
.site-nav__list a {
  font-weight: 500;
  font-size: .98rem;
  color: var(--steel-300);
  transition: color .16s ease;
}
.site-nav__list a:hover { color: var(--cream); }

/* Mobile nav */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  background: transparent;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-sm);
  cursor: pointer;
}
.nav-toggle__bar {
  display: block;
  width: 20px;
  height: 2px;
  margin-inline: auto;
  background: var(--cream);
  transition: transform .2s ease, opacity .2s ease;
}
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  border-bottom: 1px solid var(--line-dark);
  background: var(--navy-800);
}
.mobile-nav[hidden] { display: none; }
.mobile-nav nav {
  display: flex;
  flex-direction: column;
  gap: .25rem;
  padding: 1rem var(--gutter) 1.5rem;
}
.mobile-nav a {
  padding: .85rem .25rem;
  font-weight: 500;
  color: var(--steel-300);
  border-bottom: 1px solid var(--line-dark);
}
.mobile-nav a:last-child { border-bottom: 0; margin-top: .75rem; }
.mobile-nav .btn { color: #fff; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  isolation: isolate;
  background: var(--navy-900);
  color: var(--cream);
  overflow: hidden;
}
.hero__media {
  position: absolute;
  inset: 0;
  z-index: -2;
  /* Fallback if the photo is missing: an industrial navy gradient */
  background:
    radial-gradient(120% 90% at 80% 10%, #1B2740 0%, transparent 55%),
    linear-gradient(160deg, #101828 0%, #0B1220 70%);
}
.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 60%;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(11,18,32,.94) 0%, rgba(11,18,32,.72) 42%, rgba(11,18,32,.35) 100%),
    linear-gradient(0deg, rgba(11,18,32,.85) 0%, rgba(11,18,32,.1) 45%);
}
.hero__inner {
  padding-top: clamp(3.5rem, 9vw, 7rem);
  padding-bottom: clamp(3rem, 7vw, 5.5rem);
  max-width: 62rem;
}
.hero__title {
  font-size: clamp(3rem, 8.5vw, 6rem);
  text-transform: uppercase;
  letter-spacing: -.012em;
  color: var(--cream);
  text-shadow: 0 2px 30px rgba(0,0,0,.35);
}
.hero__lead {
  margin-top: 1.4rem;
  max-width: 38rem;
  font-size: clamp(1.08rem, 1.7vw, 1.32rem);
  line-height: 1.55;
  color: var(--steel-300);
}

/* Availability bar */
.availability {
  margin-top: clamp(2rem, 4vw, 2.75rem);
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr auto;
  gap: .75rem;
  align-items: end;
  padding: 1rem;
  background: var(--cream);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}
.availability__field { display: flex; flex-direction: column; gap: .35rem; min-width: 0; }
.availability__field label {
  font-size: .72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--steel-500);
}
.availability input,
.availability select {
  width: 100%;
  padding: .7rem .75rem;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--cream-300);
  border-radius: var(--radius-sm);
  min-width: 0;
}
.availability input::placeholder { color: var(--steel-400); }
.availability__submit { height: calc(.7rem * 2 + 1.5rem + 2px); white-space: nowrap; }

/* ============================================================
   TRUST STRIP
   ============================================================ */
.trust { background: var(--navy-800); color: var(--cream); }
.trust__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem 2.5rem;
  padding-block: clamp(1.75rem, 3.5vw, 2.5rem);
}
.trust__sectors {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .65rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.05rem, 2vw, 1.4rem);
  text-transform: uppercase;
  letter-spacing: .02em;
  color: var(--cream);
}
.trust__sectors .dot { color: var(--orange); }

.trust__stats {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 4vw, 3rem);
}
.stat { display: flex; flex-direction: column; gap: .15rem; }
.stat__value {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.9rem, 3.4vw, 2.6rem);
  line-height: 1;
  color: var(--orange);
}
.stat__label {
  margin: 0;
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--steel-400);
}

/* ============================================================
   SECTORS
   ============================================================ */
.sector-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.25rem, 2.5vw, 1.75rem);
}
.sector-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--cream-300);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform .2s ease, box-shadow .2s ease;
}
.sector-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.sector-card__media {
  aspect-ratio: 4 / 3;
  background:
    linear-gradient(150deg, #1B2740 0%, #0B1220 100%);
  position: relative;
}
.sector-card__media img { width: 100%; height: 100%; object-fit: cover; }
.sector-card__body { padding: 1.4rem 1.5rem 1.6rem; }
.sector-card__title {
  font-size: 1.55rem;
  text-transform: uppercase;
  letter-spacing: .005em;
  color: var(--ink);
  margin-bottom: .5rem;
}
.sector-card__body p { color: var(--steel-700); font-size: 1rem; }

/* ============================================================
   STAYS
   ============================================================ */
.stay-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(1.25rem, 2.5vw, 1.75rem);
  margin-bottom: clamp(1.75rem, 3vw, 2.5rem);
}
.stay-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 340px;
  display: flex;
  align-items: flex-end;
  background:
    linear-gradient(150deg, #1B2740 0%, #0B1220 100%);
  box-shadow: var(--shadow-md);
  isolation: isolate;
}
.stay-card__media { position: absolute; inset: 0; z-index: -2; }
.stay-card__media img { width: 100%; height: 100%; object-fit: cover; }
.stay-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(0deg, rgba(11,18,32,.92) 0%, rgba(11,18,32,.35) 55%, rgba(11,18,32,.05) 100%);
}
.stay-card__body { padding: 1.5rem 1.6rem 1.7rem; color: var(--cream); }
.stay-card__title {
  font-size: 1.7rem;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: .45rem;
}
.stay-card__body p { color: var(--steel-300); max-width: 32rem; }

/* Amenities checklist */
.amenities {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: .85rem 1.5rem;
  padding-top: clamp(1.5rem, 3vw, 2rem);
  border-top: 1px solid var(--cream-300);
}
.amenities li {
  display: flex;
  align-items: center;
  gap: .7rem;
  font-weight: 500;
  color: var(--ink);
}
.amenities__tick {
  flex: none;
  width: 22px;
  height: 22px;
  border-radius: var(--radius-sm);
  background: color-mix(in srgb, var(--orange) 14%, transparent);
  position: relative;
}
.amenities__tick::after {
  content: "";
  position: absolute;
  left: 7px;
  top: 4px;
  width: 6px;
  height: 11px;
  border: solid var(--orange-600);
  border-width: 0 2.5px 2.5px 0;
  transform: rotate(45deg);
}

/* ============================================================
   HOW IT WORKS  (mobilization)
   ============================================================ */
.section--dark .scale-rule--dark {
  position: absolute;
  top: 0;
  left: 0;
}
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 3vw, 2.5rem);
}
.step {
  padding: 1.75rem 1.6rem 1.9rem;
  background: var(--navy-700);
  border: 1px solid var(--navy-600);
  border-radius: var(--radius);
  position: relative;
}
.step__index {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 2.6rem;
  line-height: 1;
  color: var(--orange);
  display: block;
  margin-bottom: .9rem;
}
.step__title {
  font-size: 1.5rem;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: .6rem;
}
.step__body { color: var(--steel-300); }

/* ============================================================
   FOR EMPLOYERS
   ============================================================ */
.employers {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
.employers__lead .btn { margin-top: 1.75rem; }
.employers__intro {
  margin-top: 1.1rem;
  font-size: clamp(1.02rem, 1.5vw, 1.18rem);
  color: var(--steel-300);
  max-width: 30rem;
}
.employers__list { display: grid; gap: 1.1rem; }
.employers__list li {
  padding: 1.4rem 1.5rem;
  background: var(--navy-800);
  border: 1px solid var(--navy-600);
  border-left: 3px solid var(--orange);
  border-radius: var(--radius);
}
.employers__list h3 {
  font-size: 1.35rem;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: .3rem;
}
.employers__list p { color: var(--steel-300); }

/* ============================================================
   BOOKING FORM
   ============================================================ */
.book__inner { max-width: 62rem; }
.book-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.15rem 1.5rem;
}
.field { display: flex; flex-direction: column; gap: .4rem; min-width: 0; }
.field--full { grid-column: 1 / -1; }
.field label {
  font-size: .82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--steel-700);
}
.field__optional { color: var(--steel-500); font-weight: 500; text-transform: none; letter-spacing: 0; }
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: .8rem .85rem;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--cream-300);
  border-radius: var(--radius-sm);
  transition: border-color .16s ease, box-shadow .16s ease;
}
.field textarea { resize: vertical; min-height: 96px; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--orange) 22%, transparent);
  outline: none;
}
.field input:user-invalid,
.field.has-error input,
.field.has-error select { border-color: #C2410C; }
.field__error {
  font-size: .82rem;
  color: #C2410C;
  min-height: 0;
}
.field.has-error .field__error { min-height: 1rem; }

.book-form__actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  margin-top: .5rem;
}
.book-form__note { color: var(--steel-500); font-size: .9rem; }

/* Confirmation */
.confirmation {
  max-width: 40rem;
  padding: clamp(2rem, 5vw, 3rem);
  background: #fff;
  border: 1px solid var(--cream-300);
  border-top: 4px solid var(--orange);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  text-align: center;
  margin-inline: auto;
}
.confirmation[hidden] { display: none; }
.confirmation__mark {
  display: inline-flex;
  width: 56px;
  height: 56px;
  border-radius: var(--radius-pill);
  background: color-mix(in srgb, var(--orange) 16%, transparent);
  position: relative;
  margin-bottom: 1.25rem;
}
.confirmation__mark::after {
  content: "";
  position: absolute;
  left: 21px;
  top: 15px;
  width: 11px;
  height: 21px;
  border: solid var(--orange-600);
  border-width: 0 3px 3px 0;
  transform: rotate(45deg);
}
.confirmation__title {
  font-size: 2rem;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: .75rem;
}
/* Focused only programmatically to announce the result — not keyboard-interactive. */
.confirmation__title:focus { outline: none; }
.confirmation__body { color: var(--steel-700); margin-bottom: 1.75rem; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--navy-900); color: var(--steel-300); }
.site-footer__inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  padding-block: clamp(3rem, 6vw, 4.5rem) clamp(1.5rem, 3vw, 2.5rem);
}
.site-footer .brand-fallback { font-size: 1.6rem; margin-bottom: 1rem; display: inline-block; }
.site-footer__blurb { max-width: 30rem; color: var(--steel-400); }
.site-footer__heading {
  font-size: .78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--steel-400);
  margin-bottom: 1rem;
}
.site-footer__nav, .site-footer__contact { display: flex; flex-direction: column; gap: .6rem; }
.site-footer__nav a, .site-footer__contact a {
  color: var(--steel-300);
  transition: color .16s ease;
  width: fit-content;
}
.site-footer__nav a:hover, .site-footer__contact a:hover { color: var(--orange); }
.site-footer__hours { color: var(--steel-500); font-size: .9rem; margin-top: .35rem; }

.site-footer__base {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding-block: 1.5rem;
  border-top: 1px solid var(--line-dark);
  font-size: .88rem;
  color: var(--steel-500);
  text-transform: uppercase;
  letter-spacing: .06em;
}

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .6s ease, transform .6s cubic-bezier(.22,.61,.36,1);
}
.reveal.is-visible { opacity: 1; transform: none; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1000px) {
  .employers { grid-template-columns: 1fr; }
  .availability { grid-template-columns: 1fr 1fr; }
  .availability__submit { grid-column: 1 / -1; }
}

@media (max-width: 820px) {
  .site-nav { display: none; }
  .nav-toggle { display: flex; }

  .sector-grid { grid-template-columns: 1fr; }
  .stay-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .amenities { grid-template-columns: repeat(2, 1fr); }
  .site-footer__inner { grid-template-columns: 1fr 1fr; }
  .site-footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 560px) {
  body { font-size: 1rem; }
  .availability { grid-template-columns: 1fr; }
  .book-form { grid-template-columns: 1fr; }
  .trust__inner { flex-direction: column; align-items: flex-start; }
  .trust__stats { gap: 1.5rem 2rem; }
  .site-footer__inner { grid-template-columns: 1fr; }
  .site-footer__base { flex-direction: column; gap: .35rem; }
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  * { animation-duration: .001ms !important; transition-duration: .001ms !important; }
  .sector-card:hover { transform: none; }
}
