:root {
  /* HydroCAN app light palette (src/App.css [data-theme="light"]) */
  --bg: #e8ecee;
  --surface: #f5f7f8;
  --surface-raised: #ffffff;
  --surface-hover: #e9eef0;
  --surface-active: #dce7eb;
  --app-border: #cbd4d8;
  --border-strong: #aab8bf;
  --text: #273238;
  --text-strong: #10171b;
  --app-muted: #697980;
  --muted-strong: #4f5f67;
  --app-accent: #2e718d;
  --accent-strong: #205d77;
  --accent-soft: #d9e8ee;
  --positive: #2f7e5b;
  --warning: #9a641f;
  --warning-soft: #f4e9d8;
  --danger: #aa4141;
  --danger-soft: #f4dddd;
  --on-accent: #f7fbfc;

  /* Shadcn semantic tokens (bridged like the desktop app) */
  --background: var(--bg);
  --foreground: var(--text-strong);
  --card: var(--surface-raised);
  --card-foreground: var(--text-strong);
  --popover: var(--surface-raised);
  --popover-foreground: var(--text-strong);
  --primary: var(--app-accent);
  --primary-foreground: var(--on-accent);
  --secondary: var(--surface);
  --secondary-foreground: var(--muted-strong);
  --muted: var(--surface-hover);
  --muted-foreground: var(--app-muted);
  --accent: var(--accent-soft);
  --accent-foreground: var(--accent-strong);
  --destructive: var(--danger);
  --border: var(--app-border);
  --input: var(--app-border);
  --ring: var(--app-accent);

  /* Typography + radius match src/index.css / base-mira */
  --font-sans:
    "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  --font-heading: var(--font-sans);
  --font-mono: "Cascadia Mono", "Consolas", ui-monospace, monospace;
  --radius: 0.625rem;
  --radius-sm: calc(var(--radius) * 0.6);
  --radius-md: calc(var(--radius) * 0.8);
  --radius-lg: var(--radius);

  /* Site aliases used by layout rules */
  --paper: var(--background);
  --paper-raised: var(--card);
  --paper-muted: var(--muted);
  --ink: var(--text);
  --ink-strong: var(--foreground);
  --ink-muted: var(--muted-foreground);
  --river: var(--primary);
  --river-deep: var(--accent-strong);
  --river-soft: var(--accent-soft);
  --forest: var(--muted-strong);
  --line: var(--border);
  --maple: var(--destructive);
  --maple-soft: var(--danger-soft);
  --font-display: var(--font-heading);

  --max: 1180px;
  --header-h: 76px;
  --page-inline: clamp(16px, 4vw, 56px);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--foreground);
  background: var(--background);
  font-family: var(--font-sans);
  font-size: 14px;
  line-height: 1.5;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--primary);
  text-decoration: none;
}

a:hover {
  color: var(--accent-strong);
}

:focus-visible {
  outline: 2px solid var(--ring);
  outline-offset: 2px;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: var(--header-h);
  padding: 22px var(--page-inline) 0;
  border-bottom: 1px solid transparent;
  background: transparent;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    padding 180ms ease;
}

/* No chrome on the hero; floating glass controls only */
.site-header[data-on-hero="true"] {
  border-bottom-color: transparent;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.site-header[data-on-hero="false"] {
  align-items: center;
  padding-top: 0;
  border-bottom-color: var(--border);
  background: color-mix(in srgb, var(--background) 94%, transparent);
  box-shadow: 0 1px 0 color-mix(in srgb, var(--foreground) 6%, transparent);
  backdrop-filter: blur(10px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  height: auto;
  padding: 0;
  border: 0;
  border-radius: 0;
  color: #17313b;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  font-size: 17px;
  font-weight: 720;
  letter-spacing: 0.045em;
  text-transform: uppercase;
}

.site-header[data-on-hero="false"] .brand {
  height: auto;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.brand img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(14px, 1.8vw, 26px);
}

.nav-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: auto;
  padding: 0.35rem 0;
  border: 0;
  border-radius: 0;
  color: #17313b;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: 0.055em;
  line-height: 1;
  text-transform: uppercase;
  transition:
    color 150ms ease,
    opacity 150ms ease;
}

.nav-chip:hover {
  color: #17313b;
  opacity: 0.65;
}

.nav-chip-primary {
  padding: 0.76rem 1.1rem;
  border-radius: 2px;
  color: #fff;
  background: #d94e40;
}

.nav-chip-primary:hover {
  color: #fff;
  background: #c84337;
  opacity: 1;
}

.site-header[data-on-hero="false"] .nav-chip {
  border: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.site-header[data-on-hero="false"] .nav-chip:hover {
  background: transparent;
}

.site-header[data-on-hero="false"] .nav-chip-primary {
  color: #fff;
  background: #d94e40;
}

.site-header[data-on-hero="false"] .nav-chip-primary:hover {
  background: #c84337;
}

/* Immersive full-viewport hero with no overlay wash */
.hero {
  position: relative;
  height: 100vh;
  min-height: 560px;
  overflow: hidden;
  color: var(--ink-strong);
  background: #cfd9de;
}

.hero-picture {
  position: absolute;
  inset: 0;
  margin: 0;
}

.hero-image {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  /* Keep station, river bend, forests, and mountain layers in frame */
  object-position: 42% 46%;
  image-rendering: auto;
  -ms-interpolation-mode: bicubic;
}

@supports (image-rendering: high-quality) {
  .hero-image {
    image-rendering: high-quality;
  }
}

.hero-copy {
  position: absolute;
  z-index: 1;
  top: clamp(120px, 21vh, 210px);
  left: 50%;
  width: min(42rem, calc(100vw - 2 * var(--page-inline)));
  color: #fff;
  text-align: center;
  transform: translateX(-50%);
}

.hero-copy h1 {
  max-width: 40rem;
  margin: 0 auto;
  color: #f05a3d;
  font-size: clamp(2.2rem, 4.2vw, 3.9rem);
  font-weight: 560;
  letter-spacing: -0.045em;
  line-height: 1.04;
  text-shadow: 0 2px 18px rgb(5 31 29 / 62%);
  text-wrap: balance;
}

.hero-copy p {
  max-width: 29rem;
  margin: 16px auto 0;
  color: #fff4e7;
  font-size: clamp(0.82rem, 1.2vw, 0.95rem);
  line-height: 1.6;
  text-shadow: 0 2px 12px rgb(5 31 29 / 68%);
}

.hero-action {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
  padding: 0.75rem 1rem;
  border-radius: 2px;
  color: #fff;
  background: #d94e40;
  box-shadow: 0 8px 22px rgb(5 31 29 / 24%);
  font-size: 0.78rem;
  font-weight: 600;
  transition:
    background 150ms ease,
    transform 150ms ease;
}

.hero-action:hover {
  color: #fff;
  background: #c84337;
  transform: translateY(-1px);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

/*
 * Shadcn Button (src/components/ui/button.tsx)
 * default + outline / lg for marketing CTAs
 */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  height: 2rem;
  padding: 0 0.625rem;
  border: 1px solid transparent;
  border-radius: var(--radius-md);
  background-clip: padding-box;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.5;
  white-space: nowrap;
  cursor: pointer;
  user-select: none;
  transition: all 150ms ease;
}

.btn:focus-visible {
  border-color: var(--ring);
  outline: none;
  box-shadow: 0 0 0 2px color-mix(in srgb, var(--ring) 30%, transparent);
}

.btn-primary {
  color: var(--primary-foreground);
  background: var(--primary);
}

.btn-primary:hover {
  color: var(--primary-foreground);
  background: color-mix(in srgb, var(--primary) 80%, transparent);
}

.btn-secondary,
.btn-outline {
  color: var(--foreground);
  background: color-mix(in srgb, var(--card) 85%, transparent);
  border-color: var(--border);
}

.btn-secondary:hover,
.btn-outline:hover {
  color: var(--foreground);
  background: color-mix(in srgb, var(--input) 50%, transparent);
}

.meta-line {
  margin-top: 10px;
  color: var(--muted-foreground);
  font-family: var(--font-mono);
  font-size: 11px;
}

/* The landscape continues as a field guide, not a dashboard */
.content {
  position: relative;
  overflow: hidden;
  padding: 0 var(--page-inline) 64px;
  background: #e7ece9;
}

.content-inner {
  position: relative;
  width: min(100%, var(--max));
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  padding-left: 10px;
  border-left: 2px solid var(--maple);
  color: #315e6d;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.eyebrow-light {
  color: rgb(245 247 239 / 72%);
}

.field-intro {
  padding: clamp(64px, 9vw, 116px) 0 clamp(60px, 8vw, 96px);
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(260px, 0.7fr);
  gap: clamp(36px, 8vw, 104px);
  align-items: end;
  margin-top: 24px;
}

.intro-grid h2,
.field-notes h2,
.technical h2 {
  margin: 0;
  color: #17313b;
  font-size: clamp(2rem, 4vw, 3.8rem);
  font-weight: 520;
  letter-spacing: -0.045em;
  line-height: 1.03;
  text-wrap: balance;
}

.intro-grid p,
.field-notes-copy > p {
  margin: 0;
  color: #50656d;
  font-size: clamp(0.95rem, 1.35vw, 1.12rem);
  line-height: 1.7;
}

.field-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: clamp(48px, 7vw, 84px);
  border-top: 1px solid rgb(32 93 119 / 24%);
  border-bottom: 1px solid rgb(32 93 119 / 24%);
}

.field-facts article {
  min-height: 190px;
  padding: 30px clamp(20px, 3vw, 40px);
}

.field-facts article + article {
  border-left: 1px solid rgb(32 93 119 / 24%);
}

.fact-number {
  display: block;
  color: #9f4036;
  font-family: var(--font-mono);
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.field-facts h3 {
  margin: 22px 0 8px;
  color: #17313b;
  font-size: 1rem;
  font-weight: 600;
}

.field-facts p {
  margin: 0;
  color: #5c6d73;
  font-size: 0.86rem;
  line-height: 1.6;
}

.workflow {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(360px, 1.1fr);
  gap: clamp(48px, 9vw, 120px);
  margin-inline: calc(-1 * clamp(18px, 3vw, 46px));
  padding: clamp(52px, 7vw, 84px) clamp(24px, 5vw, 72px);
  border-top: 1px solid rgb(32 93 119 / 22%);
  border-bottom: 1px solid rgb(32 93 119 / 22%);
  color: #17313b;
  background: #d8e4e4;
}

.workflow-head {
  position: relative;
  z-index: 1;
}

.workflow h2 {
  margin: 24px 0;
  color: #17313b;
  font-size: clamp(2rem, 3.6vw, 3.4rem);
  font-weight: 520;
  letter-spacing: -0.045em;
  line-height: 1.03;
}

.workflow-head > p {
  max-width: 32rem;
  margin: 0;
  color: #536970;
  font-size: 0.95rem;
  line-height: 1.7;
}

.workflow-steps {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.workflow-steps li {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid rgb(32 93 119 / 24%);
}

.workflow-steps li:first-child {
  border-top: 1px solid rgb(32 93 119 / 24%);
}

.workflow-steps li > span {
  padding-top: 3px;
  color: #a13f35;
  font-family: var(--font-mono);
  font-size: 0.68rem;
}

.workflow-steps h3 {
  margin: 0;
  color: #17313b;
  font-size: 1rem;
  font-weight: 600;
}

.workflow-steps p {
  margin: 5px 0 0;
  color: #5b6f75;
  font-size: 0.84rem;
  line-height: 1.5;
}

.field-notes {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(360px, 1.2fr);
  gap: clamp(54px, 10vw, 140px);
  padding: clamp(80px, 11vw, 138px) 0;
}

.field-notes h2 {
  margin-top: 24px;
  font-size: clamp(2.1rem, 4vw, 3.8rem);
}

.field-notes-copy > p {
  margin-top: 24px;
}

.principles {
  margin: 0;
}

.principles > div {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 28px;
  padding: 24px 0;
  border-bottom: 1px solid rgb(32 93 119 / 23%);
}

.principles > div:first-child {
  border-top: 1px solid rgb(32 93 119 / 23%);
}

.principles dt {
  color: #17313b;
  font-size: 0.82rem;
  font-weight: 650;
}

.principles dd {
  margin: 0;
  color: #5c6d73;
  font-size: 0.86rem;
  line-height: 1.6;
}

.download-station {
  position: relative;
  display: grid;
  grid-template-columns: minmax(250px, 0.75fr) minmax(290px, 1fr) minmax(
      290px,
      1fr
    );
  gap: 0;
  padding: 0;
  overflow: hidden;
  color: #f7f3eb;
  background: #244b42;
}

.download-landscape {
  grid-row: 1 / 3;
  min-height: 100%;
  margin: 0;
  overflow: hidden;
}

.download-landscape img {
  width: 100%;
  height: 100%;
  min-height: 470px;
  max-width: none;
  object-fit: cover;
  object-position: 15% 52%;
}

.download-copy {
  padding: clamp(48px, 6vw, 72px) clamp(28px, 4vw, 52px);
}

.download-copy h2 {
  margin: 24px 0 14px;
  color: #fffaf2;
  font-size: clamp(2rem, 4vw, 3.7rem);
  font-weight: 480;
  letter-spacing: -0.05em;
  line-height: 1;
}

.download-copy > p {
  max-width: 34rem;
  margin: 0;
  color: rgb(247 243 235 / 67%);
  font-size: 0.9rem;
  line-height: 1.65;
}

.btn-download {
  height: 2.85rem;
  margin-top: 28px;
  padding-inline: 1rem;
  border: 0;
  border-radius: 2px;
  color: #fff;
  background: #d94e40;
  box-shadow: 0 10px 24px rgb(11 27 24 / 25%);
  font-size: 0.82rem;
}

.btn-download:hover {
  color: #fff;
  background: #c84337;
  transform: translateY(-1px);
}

.btn-download span {
  margin-left: 12px;
  font-size: 1rem;
}

.download-copy .meta-line {
  margin-top: 12px;
  color: rgb(247 243 235 / 52%);
  font-size: 0.68rem;
}

.release-data {
  align-content: start;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: clamp(48px, 6vw, 72px) clamp(28px, 4vw, 52px) 0 0;
  border-top: 1px solid rgb(255 255 255 / 15%);
}

.release-data > div {
  padding: 15px 0;
  border-bottom: 1px solid rgb(255 255 255 / 15%);
}

.release-data dt {
  margin-bottom: 4px;
  color: rgb(247 243 235 / 48%);
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.release-data dd {
  margin: 0;
  color: rgb(255 255 255 / 88%);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  line-height: 1.5;
  overflow-wrap: anywhere;
}

.release-data .checksum {
  grid-column: 1 / -1;
}

.download-note {
  grid-column: 2 / -1;
  margin: 0 clamp(28px, 4vw, 52px) clamp(32px, 4vw, 48px);
  padding-top: 18px;
  border-top: 1px solid rgb(255 255 255 / 15%);
  color: rgb(247 243 235 / 62%);
  font-size: 0.76rem;
  line-height: 1.6;
}

.download-note strong {
  color: #efa094;
}

.technical {
  padding: clamp(76px, 10vw, 126px) 0 40px;
}

.technical > header {
  display: grid;
  grid-template-columns: 0.65fr 1.35fr;
  gap: 40px;
  align-items: start;
  margin-bottom: 50px;
}

.technical h2 {
  max-width: 760px;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
}

.technical-list {
  border-top: 1px solid rgb(32 93 119 / 28%);
}

.technical details {
  border-bottom: 1px solid rgb(32 93 119 / 28%);
}

.technical summary {
  display: grid;
  grid-template-columns: minmax(180px, 0.7fr) 1fr auto;
  gap: 30px;
  align-items: center;
  padding: 24px 0;
  color: #17313b;
  cursor: pointer;
  list-style: none;
}

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

.technical summary::after {
  color: var(--maple);
  font-family: var(--font-mono);
  font-size: 1rem;
  content: "+";
}

.technical details[open] summary::after {
  content: "-";
}

.technical summary span {
  font-size: 0.92rem;
  font-weight: 650;
}

.technical summary small {
  color: #687a80;
  font-size: 0.78rem;
}

.detail-content {
  padding: 4px 44px 30px min(35%, 350px);
  color: #53666d;
  font-size: 0.82rem;
  line-height: 1.7;
}

.detail-content p {
  margin: 0;
}

.release-columns,
.limitation-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px 48px;
}

.release-columns ul {
  margin: 0;
  padding-left: 1rem;
}

.release-columns li + li {
  margin-top: 6px;
}

.limitation-grid p {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 14px;
}

.limitation-grid strong {
  color: #17313b;
  font-size: 0.75rem;
}

.disclaimer {
  margin: 32px 0 0;
  color: #78878c;
  font-size: 0.68rem;
  line-height: 1.5;
}

.content code,
.site-footer code {
  color: var(--foreground);
  font-family: var(--font-mono);
  font-size: 0.85em;
}

.site-footer {
  padding: 16px var(--page-inline) 24px;
  border-top: 0;
  background: linear-gradient(
    180deg,
    var(--background) 0%,
    color-mix(in srgb, var(--primary) 6%, var(--background)) 100%
  );
  color: var(--muted-foreground);
  font-size: 12px;
}

.footer-inner {
  width: min(100%, var(--max));
  margin: 0 auto;
  display: grid;
  gap: 6px;
}

.footer-brand {
  color: var(--foreground);
  font-weight: 500;
}

.footer-inner p {
  margin: 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 14px;
  margin-top: 2px;
}

.footer-links a {
  color: var(--muted-foreground);
}

.footer-links a:hover {
  color: var(--accent-strong);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .btn:hover {
    animation: none;
    transform: none;
  }

  .site-header {
    transition: none;
  }
}

@media (max-width: 860px) {
  .nav-hide-sm {
    display: none;
  }

  .intro-grid,
  .field-notes,
  .workflow,
  .download-station {
    grid-template-columns: 1fr;
  }

  .intro-grid {
    align-items: start;
    gap: 24px;
  }

  .workflow {
    gap: 46px;
  }

  .download-landscape {
    grid-row: auto;
    height: 320px;
  }

  .download-landscape img {
    min-height: 0;
    object-position: 18% 58%;
  }

  .release-data {
    margin: 0 clamp(28px, 6vw, 52px);
  }

  .download-note {
    grid-column: 1;
    margin: 0 clamp(28px, 6vw, 52px) clamp(32px, 5vw, 48px);
  }

  .field-notes {
    gap: 48px;
  }

  .technical > header {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .detail-content {
    padding-left: 0;
  }
}

@media (max-width: 720px) {
  .site-header {
    flex-wrap: nowrap;
    padding: 10px 16px 0;
  }

  .brand {
    gap: 6px;
    font-size: 13px;
  }

  .brand img {
    width: 28px;
    height: 28px;
  }

  .nav {
    width: auto;
    flex-wrap: nowrap;
    justify-content: flex-end;
    gap: 10px;
  }

  .nav #hub-link {
    display: none;
  }

  .nav-chip-primary {
    padding: 0.55rem 0.7rem;
  }

  .nav-chip {
    font-size: 11px;
  }

  .hero-image {
    object-position: 40% 42%;
  }

  .hero-copy {
    top: 24%;
    left: 50%;
    width: min(24rem, calc(100vw - 40px));
    transform: translateX(-50%);
  }

  .hero-copy h1 {
    max-width: 20rem;
    font-size: clamp(2rem, 10vw, 2.75rem);
  }

  .hero-copy p {
    max-width: 21rem;
  }

  .content {
    padding-inline: 18px;
  }

  .field-intro {
    padding-block: 58px 64px;
  }

  .field-facts {
    grid-template-columns: 1fr;
  }

  .field-facts article {
    min-height: 0;
    padding: 24px 0;
  }

  .field-facts article + article {
    border-top: 1px solid rgb(32 93 119 / 24%);
    border-left: 0;
  }

  .field-facts h3 {
    margin-top: 10px;
  }

  .workflow {
    margin-inline: -18px;
    padding: 48px 24px;
  }

  .field-notes {
    padding-block: 72px;
  }

  .principles > div {
    grid-template-columns: 90px 1fr;
    gap: 18px;
  }

  .download-station {
    margin-inline: -18px;
  }

  .download-landscape {
    height: 240px;
  }

  .download-copy {
    padding: 42px 24px;
  }

  .release-data {
    margin-inline: 24px;
  }

  .release-data {
    grid-template-columns: 1fr;
  }

  .download-note {
    margin-inline: 24px;
  }

  .release-data .checksum {
    grid-column: auto;
  }

  .technical summary {
    grid-template-columns: 1fr auto;
    gap: 12px;
  }

  .technical summary small {
    display: none;
  }

  .release-columns,
  .limitation-grid {
    grid-template-columns: 1fr;
  }

  .limitation-grid p {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}

@media (min-aspect-ratio: 21/9) {
  .hero-image {
    object-position: 45% 48%;
  }
}

@media (max-aspect-ratio: 4/3) {
  .hero-image {
    object-position: 38% 40%;
  }
}
