/* ---------------------------------------------------------------------------
   Sunlight Seafoods — landing page
   Brand: teal script wordmark (#17a2a4 / #2f8182), copper fish-mandala emblem
   (#bd5f2c), Bristol Bay navy water, warm cream paper. Fonts: Quicksand +
   Mulish (from the live site) with a Sacramento script accent echoing the logo.
--------------------------------------------------------------------------- */

/* Metric-matched fallbacks (Capsize-computed) so the fallback occupies the same
   space as the web font — the swap on load causes ~zero layout shift (CLS). */
@font-face {
  font-family: "Quicksand Fallback";
  src: local("Arial"), local("ArialMT");
  ascent-override: 95.8711%;
  descent-override: 23.9678%;
  line-gap-override: 0%;
  size-adjust: 104.3067%;
}
@font-face {
  font-family: "Mulish Fallback";
  src: local("Arial"), local("ArialMT");
  ascent-override: 96.5581%;
  descent-override: 24.0194%;
  line-gap-override: 0%;
  size-adjust: 104.0824%;
}
@font-face {
  font-family: "Sacramento Fallback";
  src: local("Arial"), local("ArialMT");
  ascent-override: 126.3766%;
  descent-override: 71.9119%;
  line-gap-override: 0%;
  size-adjust: 73.6035%;
}

:root {
  --teal: #159ea0;
  --teal-700: #2f8182;
  --teal-900: #164e50;
  --copper: #bd5f2c;
  --copper-600: #a04e22;
  --sockeye: #d1462f;
  --navy: #112b31;
  --navy-800: #17383f;
  --paper: #faf5ec;
  --paper-2: #f2ebdd;
  --ink: #1f353b;
  --muted: #5f7278;
  --white: #ffffff;

  --maxw: 1160px;
  --radius: 20px;
  --radius-sm: 12px;
  --shadow: 0 24px 60px -26px rgba(17, 43, 49, 0.45);
  --shadow-sm: 0 12px 30px -16px rgba(17, 43, 49, 0.35);

  /* Strong custom easings (Emil / animations.dev) */
  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
  --ease-in-out: cubic-bezier(0.77, 0, 0.175, 1);

  --head: "Quicksand", "Quicksand Fallback", system-ui, sans-serif;
  --body: "Mulish", "Mulish Fallback", system-ui, -apple-system, sans-serif;
  --script: "Sacramento", "Sacramento Fallback", cursive;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
  background: var(--navy);
}

body {
  margin: 0;
  font-family: var(--body);
  color: var(--ink);
  background: var(--navy);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* Cream page background lives on <main> so the navy <body> can fill the
   mobile overscroll/rubber-band area below the footer (iOS draws the bottom
   bounce from the body background). */
main {
  background: var(--paper);
}

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

a {
  color: inherit;
}

.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 48px);
}

h1,
h2,
h3 {
  font-family: var(--head);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin: 0 0 0.5em;
  color: var(--navy);
}

h2 {
  font-size: clamp(1.9rem, 3.6vw, 2.9rem);
}

.eyebrow {
  font-family: var(--head);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.76rem;
  font-weight: 600;
  color: var(--copper);
  margin: 0 0 0.85rem;
}

.script-quote {
  font-family: var(--script);
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  line-height: 1.15;
  color: var(--teal-700);
  margin: 1.25rem 0;
}

.script-quote--light {
  color: var(--white);
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.35);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1.6rem;
  border-radius: 999px;
  font-family: var(--head);
  font-weight: 600;
  font-size: 0.98rem;
  text-decoration: none;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: transform 160ms var(--ease-out), background 180ms var(--ease-out),
    color 180ms var(--ease-out), box-shadow 180ms var(--ease-out);
}

.btn--primary {
  background: var(--copper);
  color: var(--white);
  box-shadow: 0 14px 30px -14px rgba(189, 95, 44, 0.8);
}

.btn--primary:hover {
  background: var(--copper-600);
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.55);
  color: var(--white);
  backdrop-filter: blur(4px);
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.18);
}

.btn:active {
  transform: scale(0.97);
}

.btn--block {
  width: 100%;
  margin-top: 1.4rem;
}

.link-arrow {
  display: inline-block;
  margin-top: 0.4rem;
  font-family: var(--head);
  font-weight: 600;
  color: var(--teal-700);
  text-decoration: none;
  transition: transform 200ms var(--ease-out);
}

/* ---------- Announcement bar ---------- */
.announce {
  background: var(--navy);
  color: var(--paper);
  font-family: var(--head);
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.6rem 1rem;
  text-align: center;
  flex-wrap: wrap;
}

.announce strong {
  color: #f2c14e;
}

/* Condensed copy is desktop-hidden; swapped in on mobile */
.announce__short {
  display: none;
}

.announce__dot {
  position: relative;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #f2c14e;
}

.announce__dot::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #f2c14e;
  animation: pulse-ring 2.4s var(--ease-out) infinite;
}

.announce__link {
  color: var(--white);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}

@keyframes pulse-ring {
  0%   { transform: scale(1); opacity: 0.6; }
  70%  { transform: scale(3); opacity: 0; }
  100% { transform: scale(3); opacity: 0; }
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  transition: background 300ms var(--ease-out), box-shadow 300ms var(--ease-out);
}

.site-header[data-transparent="true"] {
  background: linear-gradient(180deg, rgba(17, 43, 49, 0.55), rgba(17, 43, 49, 0));
}

.site-header[data-scrolled="true"] {
  background: rgba(250, 245, 236, 0.9);
  backdrop-filter: saturate(160%) blur(12px);
  box-shadow: 0 1px 0 rgba(17, 43, 49, 0.08);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 74px;
}

.brand__logo {
  height: 46px;
  width: auto;
  transition: filter 300ms var(--ease-out);
}

/* Logo is copper+teal on transparent art; drop a subtle shadow over the photo */
.site-header[data-transparent="true"] .brand__logo {
  filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.45)) brightness(1.08);
}

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

.nav a {
  font-family: var(--head);
  text-decoration: none;
  color: var(--navy);
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
  transition: color 200ms var(--ease-out);
}

.site-header[data-transparent="true"] .nav a {
  color: rgba(255, 255, 255, 0.92);
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.35);
}

.nav a:not(.nav__cta)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  background: var(--copper);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms var(--ease-out);
}

.nav__cta {
  background: var(--teal);
  color: var(--white) !important;
  padding: 0.55rem 1.15rem;
  border-radius: 999px;
  text-shadow: none !important;
  transition: background 200ms var(--ease-out), transform 160ms var(--ease-out);
}

.nav__cta:hover {
  background: var(--teal-700);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform 250ms var(--ease-out), opacity 250ms var(--ease-out);
}

.site-header[data-transparent="true"] .nav-toggle span {
  background: var(--white);
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  display: flex;
  flex-direction: column;
  padding: 0 clamp(20px, 5vw, 48px);
  background: var(--paper);
  box-shadow: 0 12px 24px -16px rgba(17, 43, 49, 0.4);
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transform: translateY(-8px);
  visibility: hidden;
  transition: max-height 220ms var(--ease-out),
    opacity 220ms var(--ease-out),
    transform 220ms var(--ease-out),
    padding 220ms var(--ease-out),
    visibility 220ms;
}

.mobile-nav a {
  font-family: var(--head);
  padding: 0.9rem 0;
  text-decoration: none;
  color: var(--navy);
  font-weight: 500;
  border-bottom: 1px solid rgba(17, 43, 49, 0.08);
}

.mobile-nav.open {
  max-height: 60vh;
  opacity: 1;
  transform: translateY(0);
  padding: 0.5rem clamp(20px, 5vw, 48px) 1rem;
  visibility: visible;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: min(92vh, 820px);
  display: flex;
  align-items: center;
  color: var(--white);
  overflow: hidden;
  isolation: isolate;
  /* pull up under the transparent sticky header */
  margin-top: -74px;
  padding-top: 74px;
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 60% 65%;
  transform: scale(1.06);
  animation: kenburns 26s ease-in-out infinite alternate;
}

@keyframes kenburns {
  from { transform: scale(1.06) translate(0, 0); }
  to { transform: scale(1.14) translate(-1.5%, -1.5%); }
}

.hero__scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10, 28, 36, 0.55) 0%, rgba(10, 28, 36, 0.1) 40%, rgba(10, 28, 36, 0.15) 100%),
    linear-gradient(90deg, rgba(10, 28, 36, 0.6) 0%, rgba(10, 28, 36, 0) 60%);
}

.hero__inner {
  padding-block: clamp(3rem, 8vw, 6rem);
  max-width: 760px;
}

.hero__eyebrow {
  font-family: var(--head);
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 0.82rem;
  font-weight: 600;
  color: #ffd97a;
  margin: 0 0 1.2rem;
}

.hero__title {
  font-family: var(--head);
  font-weight: 700;
  font-size: clamp(2.5rem, 6.6vw, 4.6rem);
  line-height: 1.05;
  color: var(--white);
  margin: 0 0 1.3rem;
  text-shadow: 0 2px 30px rgba(0, 0, 0, 0.35);
}

.hero__title em {
  font-style: normal;
  color: #ffd97a;
}

.hero__lede {
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  color: rgba(255, 255, 255, 0.92);
  max-width: 600px;
  margin: 0 0 2rem;
  text-shadow: 0 1px 16px rgba(0, 0, 0, 0.3);
}

.hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ---------- Trust strip ---------- */
.trust {
  background: var(--teal-900);
  color: var(--white);
}

.trust__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  padding-block: 2.4rem;
}

.trust__item {
  text-align: center;
  padding-inline: 0.5rem;
}

.trust__k {
  display: block;
  font-family: var(--script);
  font-size: 2.4rem;
  line-height: 1;
  color: #ffd97a;
}

.trust__v {
  display: block;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.82);
  margin-top: 0.35rem;
}

/* ---------- Generic section ---------- */
.section {
  padding-block: clamp(3.5rem, 8vw, 6.5rem);
}

.section__head {
  max-width: 640px;
  margin: 0 auto 3rem;
  text-align: center;
}

.section__sub {
  color: var(--muted);
  font-size: 1.05rem;
}

/* ---------- Editorial two-column (story / source / owner) ---------- */
.story__inner,
.source__inner,
.owner__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}

.story__body p,
.source__body p,
.owner__body p {
  color: #3a4f56;
  font-size: 1.06rem;
}

.story__body em,
.owner__body em {
  font-style: italic;
  color: var(--teal-700);
}

/* Photo frames */
.story__media,
.source__media,
.owner__media {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  position: relative;
}

.story__media img,
.source__media img,
.owner__media img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  object-position: center top;
  transition: transform 400ms var(--ease-out);
}

.story__media { aspect-ratio: 4 / 5; }
.owner__media { aspect-ratio: 4 / 5; }
.source__media { aspect-ratio: 5 / 4; }

.source__media figcaption {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  padding: 1.4rem 1.25rem 1rem;
  font-family: var(--head);
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  color: var(--white);
  background: linear-gradient(0deg, rgba(10, 28, 36, 0.75), transparent);
}

.source {
  background: var(--paper-2);
}

.source__list {
  list-style: none;
  padding: 0;
  margin: 1.35rem 0;
  display: grid;
  gap: 0.6rem;
}

.source__list li {
  position: relative;
  padding-left: 1.6rem;
  color: #3a4f56;
}

.source__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--copper);
}

.source__list strong {
  color: var(--navy);
  font-weight: 700;
}

.source__give {
  background: var(--white);
  border-left: 4px solid var(--teal);
  padding: 1.1rem 1.35rem;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
}

/* ---------- Sunset parallax band ---------- */
.band {
  position: relative;
  min-height: clamp(320px, 46vw, 520px);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  isolation: isolate;
}

.band__media {
  position: absolute;
  inset: -12% 0;
  z-index: -1;
}

.band__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 75%;
}

.band__inner {
  text-align: center;
  padding-block: 3rem;
}

.band .script-quote {
  max-width: 18ch;
  margin-inline: auto;
  font-size: clamp(2rem, 5vw, 3.4rem);
}

/* ---------- Seafood grid ---------- */
.seafood {
  background: var(--navy);
}

.seafood .eyebrow { color: #ffd97a; }
.seafood h2 { color: var(--white); }
.seafood .section__sub { color: rgba(255, 255, 255, 0.78); }

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

/* Sockeye-focused layout: two cards, centered */
.product-grid--focus {
  grid-template-columns: repeat(2, 1fr);
  max-width: 720px;
  margin-inline: auto;
}

.product-card {
  background: var(--navy-800);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 300ms var(--ease-out), border-color 300ms var(--ease-out),
    box-shadow 300ms var(--ease-out);
}

.product-card__media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.product-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 400ms var(--ease-out);
}

.product-card__body {
  padding: 1.15rem 1.3rem 1.5rem;
}

.product-card h3 {
  font-size: 1.15rem;
  color: var(--white);
  margin-bottom: 0.4rem;
}

.product-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.92rem;
}

@media (hover: hover) and (pointer: fine) {
  .btn--primary:hover,
  .btn--ghost:hover { transform: translateY(-2px); }
  .nav__cta:hover { transform: translateY(-1px); }
  .link-arrow:hover { transform: translateX(3px); }
  .nav a:not(.nav__cta):hover::after { transform: scaleX(1); }

  .product-card:hover {
    transform: translateY(-6px);
    border-color: rgba(242, 193, 78, 0.5);
    box-shadow: var(--shadow);
  }
  .product-card:hover .product-card__media img {
    transform: scale(1.06);
  }
  .story__media:hover img,
  .owner__media:hover img,
  .source__media:hover img {
    transform: scale(1.04);
  }
}

.seafood__cta {
  text-align: center;
  margin-top: 2.75rem;
}

/* ---------- Contact ---------- */
.contact__inner {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.contact__body p {
  color: #3a4f56;
  font-size: 1.06rem;
}

.contact__list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
  display: grid;
  gap: 1.15rem;
}

.contact__list li {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.contact__label {
  font-family: var(--head);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--copper);
}

.contact__list a {
  color: var(--teal-700);
  font-weight: 600;
  text-decoration: none;
  font-size: 1.1rem;
}

.contact__list a:hover {
  text-decoration: underline;
}

.contact__card {
  background: var(--paper-2);
  border-radius: var(--radius);
  padding: clamp(1.5rem, 3vw, 2rem);
  box-shadow: var(--shadow-sm);
}

.contact__card h3 {
  font-size: 1.35rem;
}

.hours {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}

.hours th,
.hours td {
  text-align: left;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(17, 43, 49, 0.1);
}

.hours th {
  font-family: var(--head);
  font-weight: 600;
  color: var(--navy);
  width: 40%;
}

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

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.78);
  padding-block: 3rem;
}

.site-footer__inner {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  align-items: center;
  text-align: center;
}

.site-footer__logo {
  height: 66px;
  width: auto;
  filter: brightness(1.15);
}

.site-footer__note {
  max-width: 540px;
  margin: 0;
  font-size: 0.95rem;
}

.site-footer__social {
  display: flex;
  gap: 0.7rem;
  align-items: center;
  font-family: var(--head);
  font-weight: 600;
}

.site-footer__social a {
  color: var(--teal);
  text-decoration: none;
}

.site-footer__social a:hover {
  color: #ffd97a;
}

.site-footer__legal {
  margin: 0.4rem 0 0;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.5);
}

.built-by {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
  text-decoration: none;
}

.built-by__label {
  font-family: var(--head);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.62rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.4);
}

.built-by__mark {
  height: 34px;
  width: auto;
  opacity: 0.45;
  transition: opacity 200ms var(--ease-out);
}

.built-by:hover .built-by__mark {
  opacity: 0.7;
}

/* ---------- Back to top ---------- */
.to-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--copper);
  color: var(--white);
  display: grid;
  place-items: center;
  text-decoration: none;
  font-size: 1.2rem;
  box-shadow: var(--shadow-sm);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 250ms var(--ease-out), transform 250ms var(--ease-out),
    visibility 250ms, background 180ms var(--ease-out);
  z-index: 60;
}

.to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.to-top:hover { background: var(--copper-600); }
.to-top:active { transform: scale(0.94); }

/* ---------- Reveal on scroll ---------- */
.reveal,
.stagger {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 600ms var(--ease-out), transform 600ms var(--ease-out);
}

.reveal.in,
.stagger.in {
  opacity: 1;
  transform: none;
}

/* Staggered hero entrance */
.stagger.in:nth-of-type(1) { transition-delay: 0ms; }
.hero__eyebrow.in { transition-delay: 60ms; }
.hero__title.in { transition-delay: 140ms; }
.hero__lede.in { transition-delay: 240ms; }
.hero__actions.in { transition-delay: 340ms; }

/* Staggered grid entrances */
.trust__item.reveal.in:nth-child(1) { transition-delay: 0ms; }
.trust__item.reveal.in:nth-child(2) { transition-delay: 60ms; }
.trust__item.reveal.in:nth-child(3) { transition-delay: 120ms; }
.trust__item.reveal.in:nth-child(4) { transition-delay: 180ms; }

@media (min-width: 621px) {
  .product-card.reveal-img.in:nth-child(1) { transition-delay: 0ms; }
  .product-card.reveal-img.in:nth-child(2) { transition-delay: 60ms; }
  .product-card.reveal-img.in:nth-child(3) { transition-delay: 120ms; }
  .product-card.reveal-img.in:nth-child(4) { transition-delay: 180ms; }
}

/* Image reveal: a gentle fade + slide on the container (no clip-path curtain —
   it read as sluggish). The inner <img> keeps a transform transition only for
   the hover-zoom. */
.reveal-img {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 600ms var(--ease-out), transform 600ms var(--ease-out);
}

.reveal-img.in {
  opacity: 1;
  transform: none;
}

.reveal-img img {
  transition: transform 400ms var(--ease-out);
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .nav { display: none; }
  .nav-toggle { display: flex; }

  .story__inner,
  .source__inner,
  .owner__inner,
  .contact__inner {
    grid-template-columns: 1fr;
  }

  .story__media,
  .owner__media { order: -1; }

  .story__media,
  .owner__media { aspect-ratio: 16 / 11; }

  .story__media img,
  .source__media img,
  .owner__media img { min-height: 0; }

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

@media (max-width: 620px) {
  .trust__grid { grid-template-columns: repeat(2, 1fr); gap: 1.6rem 1rem; }
  .product-grid { grid-template-columns: 1fr; }
  .hero { min-height: 88vh; }

  /* Keep the banner to a single line and stop the dot from crowding the logo */
  .announce {
    font-size: 0.78rem;
    flex-wrap: nowrap;
    gap: 0.4rem;
  }
  .announce__dot { display: none; }
  .announce__full,
  .announce__detail { display: none; }
  .announce__short { display: inline; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal,
  .stagger,
  .reveal-img {
    opacity: 1;
    transform: none;
    transition: opacity 300ms ease;
  }
  .hero__img { animation: none; transform: scale(1.04); }
  .announce__dot::after { animation: none; display: none; }
  .product-card:hover .product-card__media img,
  .story__media:hover img,
  .owner__media:hover img,
  .source__media:hover img { transform: none; }
  .mobile-nav {
    transition: opacity 150ms ease, max-height 150ms ease, visibility 150ms;
    transform: none;
  }
  .mobile-nav.open { transform: none; }
  .trust__item.reveal.in,
  .product-card.reveal-img.in { transition-delay: 0ms; }
  .btn--primary:hover,
  .btn--ghost:hover,
  .nav__cta:hover,
  .link-arrow:hover { transform: none; }
  .nav a:not(.nav__cta)::after { transition: none; }
}
