:root {
  --ink: #101828;
  --steel: #344054;
  --muted: #667085;
  --line: #d0d5dd;
  --paper: #ffffff;
  --mist: #f2f4f7;
  --navy: #102a43;
  --red: #c4372d;
  --green: #23735b;
  --gold: #d59b2a;
  --shadow: 0 18px 44px rgba(16, 24, 40, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, Arial, sans-serif;
  line-height: 1.5;
}

body.is-scrolled .site-header {
  box-shadow: 0 10px 28px rgba(16, 24, 40, 0.08);
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 40;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--red), var(--gold));
  transform: scaleX(var(--scroll-progress, 0));
  transform-origin: left center;
}

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  min-height: 72px;
  padding: 12px clamp(18px, 4vw, 56px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(208, 213, 221, 0.8);
  backdrop-filter: blur(14px);
  transition: box-shadow 220ms ease, background 220ms ease;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 250px;
}

.brand-logo {
  width: 128px;
  height: 48px;
  object-fit: contain;
  object-position: left center;
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 600;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 3vw, 36px);
  color: var(--steel);
  font-size: 0.92rem;
  font-weight: 700;
}

.site-nav a {
  padding: 10px 0;
}

.site-nav a:hover {
  color: var(--red);
}

.header-action,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-size: 0.94rem;
  font-weight: 800;
  text-align: center;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.header-action,
.button.primary {
  color: #fff;
  background: var(--red);
  box-shadow: 0 12px 26px rgba(196, 55, 45, 0.24);
}

.button.secondary {
  color: var(--navy);
  border-color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 12px 26px rgba(16, 24, 40, 0.14);
}

.header-action:hover,
.button:hover {
  transform: translateY(-1px);
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
}

.menu-button span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--navy);
}

.hero {
  position: relative;
  min-height: min(780px, calc(100vh - 72px));
  overflow: hidden;
  display: grid;
  align-items: end;
  padding: clamp(72px, 10vw, 128px) clamp(18px, 4vw, 56px) clamp(42px, 7vw, 86px);
  color: #fff;
}

.hero-media,
.hero-media img,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.14) contrast(1.02) brightness(1.18);
}

.hero-slide {
  opacity: 0;
  transform: scale(1.04);
  animation: heroFade 18s infinite;
}

.hero-slide.one {
  animation-delay: 0s;
}

.hero-slide.two {
  animation-delay: 6s;
}

.hero-slide.three {
  animation-delay: 12s;
}

.hero-overlay {
  background:
    radial-gradient(circle at 78% 22%, rgba(213, 155, 42, 0.22), rgba(213, 155, 42, 0) 32%),
    radial-gradient(circle at 94% 80%, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0) 34%),
    linear-gradient(90deg, rgba(8, 27, 43, 0.78) 0%, rgba(8, 27, 43, 0.52) 42%, rgba(8, 27, 43, 0.14) 100%),
    linear-gradient(0deg, rgba(8, 27, 43, 0.32), rgba(255, 255, 255, 0.1) 58%);
}

.hero-content {
  position: relative;
  max-width: 860px;
}

.hero-content > * {
  opacity: 0;
  transform: translateY(18px);
  animation: introLift 850ms cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-content > *:nth-child(2) {
  animation-delay: 90ms;
}

.hero-content > *:nth-child(3) {
  animation-delay: 180ms;
}

.hero-content > *:nth-child(4) {
  animation-delay: 270ms;
}

.hero-content > *:nth-child(5) {
  animation-delay: 360ms;
}

.hero-content > *:nth-child(6) {
  animation-delay: 450ms;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-logo {
  width: 174px;
  height: auto;
  margin-bottom: 22px;
}

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

h1 {
  max-width: 800px;
  margin-bottom: 20px;
  font-size: 5rem;
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  color: var(--navy);
  font-size: 3.25rem;
  line-height: 1.04;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  color: var(--navy);
  font-size: 1.12rem;
  line-height: 1.2;
}

.hero-copy {
  max-width: 720px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.18rem;
}

.hero-slogan {
  max-width: 760px;
  margin-bottom: 18px;
  color: #fff;
  font-size: 1.28rem;
  font-weight: 800;
}

.hero-actions,
.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-stats {
  margin-top: clamp(34px, 6vw, 74px);
}

.hero-stats span {
  min-width: 168px;
  padding: 14px 16px;
  border-left: 3px solid var(--gold);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
}

.hero-stats strong {
  display: block;
  color: #fff;
  font-size: 1.22rem;
}

.section-pad {
  padding: clamp(58px, 8vw, 96px) clamp(18px, 4vw, 56px);
}

section[id] {
  scroll-margin-top: 88px;
}

.section-heading {
  max-width: 980px;
  margin: 0 auto 30px;
}

.intro {
  background: var(--mist);
}

.intro-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 1180px;
  margin: 0 auto;
  border: 1px solid var(--line);
  background: #fff;
}

.intro-grid article {
  min-height: 190px;
  padding: clamp(24px, 4vw, 40px);
}

.intro-grid article + article {
  border-left: 1px solid var(--line);
}

.intro-grid p,
.manufacturing-copy p {
  color: var(--muted);
}

.facility-feature {
  background: #fff;
}

.facility-hero {
  position: relative;
  max-width: 1180px;
  min-height: clamp(330px, 42vw, 520px);
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid rgba(208, 213, 221, 0.9);
  border-radius: 8px;
  background: var(--navy);
  box-shadow: 0 18px 44px rgba(16, 24, 40, 0.12);
}

.facility-hero::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(7, 25, 39, 0.72), rgba(7, 25, 39, 0.32) 48%, rgba(7, 25, 39, 0.16)),
    linear-gradient(0deg, rgba(7, 25, 39, 0.28), rgba(7, 25, 39, 0.08));
}

.facility-hero img {
  width: 100%;
  min-height: inherit;
  object-fit: cover;
  filter: grayscale(1) contrast(1.08);
  transform: scale(1.02);
}

.facility-hero figcaption {
  position: absolute;
  z-index: 1;
  inset: auto clamp(22px, 5vw, 64px) clamp(26px, 5vw, 58px);
  max-width: 760px;
  color: #fff;
}

.facility-hero span {
  display: inline-flex;
  margin-bottom: 14px;
  color: #ffddd9;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.facility-hero h2 {
  margin-bottom: 16px;
  color: #fff;
}

.facility-hero p {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.2rem;
  font-weight: 800;
}

.range-showcase {
  background: linear-gradient(180deg, #fff 0%, #f8fafc 100%);
}

.range-showcase-inner {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(28px, 5vw, 60px);
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
}

.range-copy {
  max-width: 520px;
}

.range-copy h2 {
  margin-bottom: 16px;
}

.range-media {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(208, 213, 221, 0.9);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 44px rgba(16, 24, 40, 0.1);
}

.range-media::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0));
}

.range-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transform: translateY(var(--range-parallax, 0)) scale(var(--range-scale, 1));
  transition: transform 800ms ease, filter 800ms ease;
  will-change: transform;
}

.range-media:hover img {
  --range-scale: 1.035;
  filter: saturate(1.04) contrast(1.02);
}

.comparison {
  background: #fff;
}

.comparison-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 1180px;
  margin: 0 auto;
}

.comparison-card {
  position: relative;
  display: grid;
  grid-template-rows: minmax(250px, auto) 1fr;
  min-height: 430px;
  overflow: hidden;
  border-radius: 8px;
  color: var(--ink);
  border: 1px solid rgba(208, 213, 221, 0.9);
  background: #fff;
  box-shadow: 0 16px 40px rgba(16, 24, 40, 0.1);
  cursor: pointer;
  transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.comparison-card:focus-visible {
  outline: 3px solid rgba(205, 54, 47, 0.34);
  outline-offset: 4px;
}

.comparison-card::before {
  position: absolute;
  right: 24px;
  bottom: 24px;
  left: 24px;
  height: 3px;
  content: "";
  background: var(--gold);
  transform: scaleX(0.22);
  transform-origin: left center;
  transition: transform 360ms ease;
}

.comparison-card::after {
  display: none;
}

.category-art {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 270px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 58%, rgba(16, 42, 67, 0.16), rgba(16, 42, 67, 0) 46%),
    linear-gradient(135deg, #f8fafc 0%, #e8eef3 100%);
  border-bottom: 1px solid #dde5ec;
}

.category-art::after {
  position: absolute;
  inset: auto 18% 22px;
  height: 18px;
  content: "";
  background: rgba(16, 24, 40, 0.14);
  border-radius: 999px;
  filter: blur(16px);
}

.category-product {
  position: absolute;
  z-index: 1;
  width: 62%;
  max-height: 78%;
  object-fit: contain;
  filter: drop-shadow(0 18px 18px rgba(16, 24, 40, 0.22));
  transition: transform 520ms ease, filter 520ms ease;
}

.category-product.primary {
  transform: translate(-5%, -4%) scale(1.08);
}

.category-product.secondary {
  width: 44%;
  transform: translate(36%, 24%) scale(0.92);
  opacity: 1;
}

.category-product.accent {
  width: 34%;
  transform: translate(-47%, 27%) scale(0.88);
  opacity: 1;
}

.plastic-art .category-product.primary,
.lids-art .category-product.primary {
  width: 66%;
}

.plastic-art .category-product.secondary {
  width: 48%;
  transform: translate(36%, 21%) scale(0.78);
}

.plastic-art {
  background:
    radial-gradient(circle at 50% 55%, rgba(16, 42, 67, 0.14), rgba(16, 42, 67, 0) 50%),
    linear-gradient(135deg, #f8fafc 0%, #e8eef3 100%);
}

.plastic-art .category-product {
  filter:
    contrast(1.14)
    drop-shadow(0 18px 18px rgba(16, 24, 40, 0.28))
    drop-shadow(0 0 1px rgba(16, 42, 67, 0.78));
  opacity: 1;
}

.plastic-art .category-product.primary {
  width: 60%;
  transform: translate(-3%, -4%) scale(1.08);
}

.plastic-art .category-product.secondary,
.plastic-art .category-product.accent {
  filter:
    contrast(1.18)
    drop-shadow(0 16px 16px rgba(16, 24, 40, 0.3))
    drop-shadow(0 0 2px rgba(16, 42, 67, 0.82));
}

.plastic-art .category-product.accent {
  width: 42%;
  transform: translate(-43%, 27%) scale(0.72);
}

.plastic-art .category-product.secondary {
  width: 58%;
  transform: translate(35%, 25%) scale(0.72);
}

.lids-art .category-product.secondary {
  transform: translate(34%, 24%) scale(0.9);
}

.lids-art {
  background:
    radial-gradient(circle at 50% 56%, rgba(16, 42, 67, 0.24), rgba(16, 42, 67, 0) 48%),
    linear-gradient(135deg, #f7f9fb 0%, #dfe7ee 100%);
}

.lids-art .category-product {
  filter: drop-shadow(0 18px 18px rgba(16, 24, 40, 0.24));
}

.comparison-copy {
  display: grid;
  align-content: start;
  padding: 24px 24px 34px;
}

.comparison-card span {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--red);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.comparison-card h3 {
  color: var(--navy);
  font-size: 1.45rem;
}

.comparison-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.comparison-card:hover {
  border-color: rgba(16, 42, 67, 0.24);
  box-shadow: 0 18px 42px rgba(16, 24, 40, 0.13);
  transform: translateY(-3px);
}

.comparison-card:hover .category-product.primary {
  filter: drop-shadow(0 22px 20px rgba(16, 24, 40, 0.18));
  transform: translate(-5%, -7%) scale(1.1);
}

.comparison-card:hover .plastic-art .category-product.primary {
  transform: translate(-3%, -7%) scale(1.1);
}

.comparison-card:hover .plastic-art .category-product.secondary {
  transform: translate(37%, 22%) scale(0.74);
}

.comparison-card:hover .plastic-art .category-product.accent {
  transform: translate(-45%, 24%) scale(0.74);
}

.comparison-card:hover .category-product.secondary {
  transform: translate(38%, 21%) scale(0.95);
}

.comparison-card:hover .category-product.accent {
  transform: translate(-49%, 24%) scale(0.9);
}

.comparison-card:hover::before {
  transform: scaleX(1);
}

.products {
  background: #fff;
}

.product-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: flex-start;
  max-width: 1180px;
  margin: 0 auto 24px;
}

.filter-menu {
  position: relative;
}

.filter {
  min-height: 42px;
  padding: 9px 15px;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--steel);
  background: #fff;
  font-weight: 800;
  cursor: pointer;
}

.filter.active {
  color: #fff;
  border-color: var(--navy);
  background: var(--navy);
}

.filter-menu-toggle::after {
  display: inline-block;
  margin-left: 8px;
  content: "▾";
  font-size: 0.78rem;
  transform: translateY(-1px);
}

.filter-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  z-index: 12;
  display: grid;
  min-width: 220px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 16px 34px rgba(16, 24, 40, 0.14);
}

.filter-dropdown[hidden] {
  display: none;
}

.filter-option {
  min-height: 38px;
  padding: 9px 11px;
  border: 0;
  border-radius: 6px;
  color: var(--steel);
  background: transparent;
  font-weight: 800;
  text-align: left;
  cursor: pointer;
}

.filter-option:hover,
.filter-option.active {
  color: var(--navy);
  background: #eef3f7;
}

.photo-catalog-heading {
  max-width: 1180px;
  margin: 34px auto 18px;
}

.photo-catalog-heading h3 {
  margin: 0;
  font-size: 1.75rem;
}

.uploaded-products {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 1180px;
  margin: 0 auto 34px;
}

.product-photo-card {
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(16, 24, 40, 0.06);
  transition: border-color 200ms ease, box-shadow 200ms ease, transform 200ms ease;
  cursor: pointer;
}

.product-photo-card:hover,
.product-photo-card.is-expanded {
  border-color: rgba(35, 115, 91, 0.34);
  box-shadow: 0 14px 34px rgba(16, 24, 40, 0.1);
  transform: translateY(-2px);
}

.product-photo-card img {
  display: block;
  width: 100%;
  aspect-ratio: 1.28 / 1;
  object-fit: contain;
  object-position: center center;
  padding: 24px;
  background: linear-gradient(180deg, #f7f9fb 0%, #edf1f5 100%);
  border-bottom: 1px solid #dde5ec;
}

.product-photo-details {
  display: grid;
  gap: 12px;
  align-content: start;
  padding: 16px 18px 18px;
  border-top: 1px solid #eaecf0;
}

.product-photo-card span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.product-photo-card strong {
  color: var(--navy);
  font-size: 1.35rem;
  line-height: 1;
}

.product-photo-card small {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 700;
}

.product-photo-card a {
  display: inline-flex;
  justify-self: start;
  color: var(--red);
  font-size: 0.9rem;
  font-weight: 800;
}

.product-photo-card a:hover {
  text-decoration: underline;
}

.product-details-toggle {
  display: inline-flex;
  justify-self: start;
  min-height: 34px;
  padding: 7px 11px;
  border: 1px solid rgba(16, 42, 67, 0.18);
  border-radius: 6px;
  color: var(--navy);
  background: #f6f8fb;
  font-size: 0.82rem;
  font-weight: 800;
  cursor: pointer;
}

.product-details-toggle:hover,
.product-photo-card.is-expanded .product-details-toggle {
  color: #fff;
  border-color: var(--navy);
  background: var(--navy);
}

.product-specs {
  padding: 12px;
  border: 1px solid #e1e7ee;
  border-radius: 8px;
  background: #f8fafc;
}

.product-specs[hidden] {
  display: none;
}

.product-specs dl {
  display: grid;
  gap: 8px;
  margin: 0;
}

.product-specs dl div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.product-specs dt {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
}

.product-specs dd {
  margin: 0;
  color: var(--navy);
  font-size: 0.84rem;
  font-weight: 900;
  text-align: right;
}

.catalog-note {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 16px;
  align-items: center;
  max-width: 1180px;
  margin: 0 auto 18px;
  padding: 14px 18px;
  border: 1px solid rgba(35, 115, 91, 0.24);
  border-left: 4px solid var(--green);
  border-radius: 8px;
  color: var(--steel);
  background: #f4faf7;
}

.kosher-logo {
  width: 46px;
  height: 46px;
  object-fit: contain;
  flex: 0 0 auto;
}

.catalog-note div {
  display: grid;
  gap: 2px;
}

.catalog-note strong {
  color: var(--green);
}

.product-photo-card.is-hidden {
  display: none;
}

.filter-pop {
  animation: filterPop 260ms ease;
}

.manufacturing {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(28px, 6vw, 84px);
  align-items: center;
  background: var(--navy);
}

.manufacturing h2,
.manufacturing h3 {
  color: #fff;
}

.manufacturing-copy {
  max-width: 640px;
}

.manufacturing-copy .eyebrow {
  color: #ffb5ad;
}

.manufacturing-copy p {
  color: rgba(255, 255, 255, 0.74);
}

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

.process-list span {
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 6px;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  font-weight: 800;
}

.manufacturing-media {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.manufacturing-media img {
  width: 100%;
  min-height: 430px;
  object-fit: cover;
}

.image-band {
  display: grid;
  grid-template-columns: minmax(240px, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: center;
  background: #fff;
}

.image-band-copy {
  max-width: 520px;
}

.image-band-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  grid-template-rows: repeat(2, minmax(190px, 1fr));
  gap: 16px;
}

.image-band-grid figure {
  position: relative;
  min-height: 220px;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: var(--navy);
}

.image-band-grid figure:nth-child(2) {
  grid-row: span 2;
}

.image-band-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.9;
  transition: transform 700ms ease, opacity 700ms ease;
}

.image-band-grid figcaption {
  position: absolute;
  right: 14px;
  bottom: 14px;
  left: 14px;
  padding: 10px 12px;
  border-left: 3px solid var(--gold);
  color: #fff;
  background: rgba(7, 25, 39, 0.74);
  font-weight: 800;
  backdrop-filter: blur(10px);
}

.image-band-grid figure:hover img {
  opacity: 1;
  transform: scale(1.07);
}

.contact {
  background: #fff;
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1.15fr);
  gap: clamp(28px, 5vw, 70px);
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(28px, 5vw, 56px);
  border-radius: 8px;
  background: #f8fafc;
  box-shadow: var(--shadow);
}

.contact-lines {
  display: grid;
  gap: 8px;
  margin-top: 28px;
  color: var(--navy);
  font-weight: 800;
}

.contact-lines a {
  color: var(--red);
}

.quote-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.quote-form label {
  display: grid;
  gap: 7px;
  color: var(--steel);
  font-size: 0.86rem;
  font-weight: 800;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 11px 12px;
  color: var(--ink);
  background: #fff;
}

.quote-form textarea {
  resize: vertical;
}

.wide {
  grid-column: 1 / -1;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 32px clamp(18px, 4vw, 56px);
  color: rgba(255, 255, 255, 0.7);
  background: #071927;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-brand img {
  width: 112px;
  height: 46px;
  padding: 5px 9px;
  object-fit: contain;
  border-radius: 6px;
  background: #fff;
}

.site-footer strong {
  color: #fff;
}

.site-footer p {
  margin: 6px 0 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  color: #fff;
  font-weight: 800;
}

.reveal {
  opacity: 0;
  transform: translateY(34px) scale(0.985);
  transition: opacity 780ms cubic-bezier(0.16, 1, 0.3, 1), transform 780ms cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

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

@keyframes introLift {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroFade {
  0%,
  100% {
    opacity: 0;
    transform: scale(1.04);
  }

  8%,
  33% {
    opacity: 1;
    transform: scale(1);
  }

  42% {
    opacity: 0;
    transform: scale(1.02);
  }
}

@keyframes filterPop {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .menu-button {
    display: block;
    justify-self: end;
  }

  .site-nav,
  .header-action {
    display: none;
  }

  .site-nav.is-open {
    display: grid;
    grid-column: 1 / -1;
    justify-content: stretch;
    gap: 0;
    border-top: 1px solid var(--line);
  }

  .site-nav.is-open a {
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
  }

  .hero {
    min-height: 720px;
  }

  h1 {
    font-size: 4rem;
  }

  h2 {
    font-size: 2.65rem;
  }

  .photo-catalog-heading,
  .intro-grid,
  .range-showcase-inner,
  .comparison-grid,
  .manufacturing,
  .image-band,
  .contact-panel {
    grid-template-columns: 1fr;
  }

  .intro-grid article + article {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .uploaded-products {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .comparison-card {
    min-height: 380px;
  }

  .image-band-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .image-band-grid figure:nth-child(2) {
    grid-row: auto;
  }
}

@media (max-width: 640px) {
  .site-header {
    min-height: 68px;
    padding: 12px 16px;
  }

  .brand {
    min-width: 0;
  }

  .brand-logo {
    width: 112px;
    height: 46px;
  }

  .brand small {
    display: none;
  }

  .hero {
    min-height: 760px;
    padding: 72px 16px 36px;
  }

  h1 {
    font-size: 2.85rem;
  }

  h2 {
    font-size: 2.15rem;
  }

  .hero-copy {
    font-size: 1.05rem;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-stats span {
    width: 100%;
  }

  .section-pad {
    padding: 58px 16px;
  }

  .uploaded-products {
    grid-template-columns: 1fr;
  }

  .comparison-card {
    min-height: 340px;
  }

  .range-showcase-inner {
    gap: 26px;
  }

  .range-media img {
    aspect-ratio: 4 / 3;
  }

  .product-photo-details {
    display: grid;
  }

  .process-list,
  .quote-form {
    grid-template-columns: 1fr;
  }

  .manufacturing-media img {
    min-height: 280px;
  }

  .contact-panel {
    padding: 22px;
  }

  .site-footer {
    display: grid;
  }

  .footer-brand {
    align-items: flex-start;
    flex-direction: column;
  }
}
