:root {
  --brand-blue: #0073a8;
  --brand-blue-dark: #005f8c;
  --brand-charcoal: #1f2a30;
  --brand-charcoal-soft: #40505a;
  --brand-orange: #f28c28;
  --brand-light: #f6f8f9;
  --brand-blue-soft: #e7f4f9;
  --brand-steel: #cbd8df;
  --brand-white: #ffffff;
  --brand-line: #dde6eb;
  --brand-shadow: 0 18px 45px rgba(31, 42, 48, 0.08);
  --max-width: 1180px;
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  display: flex;
  min-height: 100vh;
  flex-direction: column;
  margin: 0;
  background: var(--brand-white);
  color: var(--brand-charcoal);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
}

main {
  flex: 1;
}

body.nav-open {
  overflow: hidden;
}

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--brand-line);
  backdrop-filter: blur(12px);
  transition: box-shadow 160ms ease, background-color 160ms ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 10px 28px rgba(31, 42, 48, 0.08);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(100% - 40px, var(--max-width));
  min-height: 76px;
  margin: 0 auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 1 auto;
}

.brand-logo {
  width: 226px;
  height: 66px;
  object-fit: cover;
  object-position: center;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-links a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 10px 14px;
  border-radius: 5px;
  color: var(--brand-charcoal-soft);
  font-size: 0.95rem;
  font-weight: 700;
  transition: background-color 160ms ease, color 160ms ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  background: var(--brand-light);
  color: var(--brand-blue-dark);
  outline: none;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--brand-line);
  border-radius: 6px;
  background: var(--brand-white);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--brand-charcoal);
  transition: transform 160ms ease, opacity 160ms ease;
}

.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);
}

.section-band {
  padding: clamp(66px, 7vw, 96px) 0;
}

.section-inner {
  width: min(100% - 40px, var(--max-width));
  margin: 0 auto;
}

#products,
#about,
#contact {
  scroll-margin-top: 96px;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: clamp(620px, calc(100vh - 120px), 760px);
  display: flex;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(0, 115, 168, 0.07) 1px, transparent 1px),
    linear-gradient(180deg, rgba(0, 115, 168, 0.07) 1px, transparent 1px),
    linear-gradient(135deg, #ffffff 0%, #f6f8f9 100%);
  background-size: 44px 44px, 44px 44px, auto;
}

.hero::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 5px;
  background: linear-gradient(90deg, var(--brand-blue), var(--brand-orange));
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.98fr);
  gap: clamp(40px, 6vw, 72px);
  align-items: center;
}

.hero-copy {
  max-width: 680px;
}

.hero-copy,
.hero-panel,
.about-layout > *,
.contact-copy,
.contact-card,
.product-card {
  min-width: 0;
}

.eyebrow {
  margin-bottom: 12px;
  color: var(--brand-blue-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 720px;
  margin-bottom: 14px;
  color: var(--brand-charcoal);
  font-size: clamp(3rem, 7vw, 5.35rem);
  line-height: 1;
  letter-spacing: 0;
}

.hero-tagline {
  margin-bottom: 18px;
  color: var(--brand-blue-dark);
  font-size: clamp(1.2rem, 3vw, 1.65rem);
  font-weight: 800;
  line-height: 1.25;
}

.hero-intro {
  max-width: 610px;
  margin-bottom: 22px;
  color: var(--brand-charcoal-soft);
  font-size: 1.08rem;
}

.proof-points {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 30px;
}

.proof-points span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 10px;
  border: 1px solid rgba(0, 115, 168, 0.18);
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--brand-charcoal);
  font-size: 0.86rem;
  font-weight: 800;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 18px;
  border: 2px solid transparent;
  border-radius: 5px;
  font-weight: 800;
  line-height: 1;
  transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
  outline: none;
}

.button-primary {
  background: var(--brand-blue);
  color: var(--brand-white);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--brand-blue-dark);
}

.button-secondary {
  border-color: var(--brand-line);
  background: var(--brand-white);
  color: var(--brand-charcoal);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: var(--brand-blue);
  color: var(--brand-blue-dark);
}

.hero-panel {
  position: relative;
  padding: 28px;
  border: 1px solid var(--brand-line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--brand-shadow);
}

.hero-panel::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  border-radius: var(--radius) var(--radius) 0 0;
  background: linear-gradient(90deg, var(--brand-blue), var(--brand-orange));
}

.hero-logo {
  width: min(100%, 500px);
  max-width: 100%;
  height: 172px;
  margin: 0 auto 18px;
  object-fit: cover;
  object-position: center;
}

.panel-label {
  margin: 0 0 14px;
  color: var(--brand-charcoal-soft);
  font-size: 0.88rem;
  font-weight: 800;
  text-align: center;
}

.capability-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.capability-list span {
  min-height: 44px;
  padding: 11px 12px;
  border-left: 4px solid var(--brand-blue);
  border-radius: 5px;
  background: var(--brand-light);
  color: var(--brand-charcoal);
  font-size: 0.92rem;
  font-weight: 800;
}

.section-heading {
  max-width: 710px;
  margin-bottom: 38px;
}

.section-heading h2,
.about h2,
.contact h2 {
  margin-bottom: 12px;
  color: var(--brand-charcoal);
  font-size: clamp(1.9rem, 4vw, 3rem);
  line-height: 1.1;
  letter-spacing: 0;
}

.section-lede {
  max-width: 640px;
  margin: 0;
  color: var(--brand-charcoal-soft);
  font-size: 1.03rem;
}

.product-card,
.contact-card {
  border: 1px solid var(--brand-line);
  border-radius: var(--radius);
  background: var(--brand-white);
  box-shadow: 0 12px 28px rgba(31, 42, 48, 0.06);
}

.product-card:hover {
  border-color: rgba(0, 115, 168, 0.34);
  box-shadow: 0 18px 38px rgba(31, 42, 48, 0.1);
  transform: translateY(-2px);
}

.product-card h3 {
  margin-bottom: 8px;
  color: var(--brand-charcoal);
  font-size: 1.14rem;
  line-height: 1.25;
}

.product-card p,
.contact-copy p,
.about-layout p {
  color: var(--brand-charcoal-soft);
}

.card-tag,
.product-kicker {
  width: fit-content;
  margin-bottom: 10px;
  color: var(--brand-blue-dark) !important;
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.featured-products,
.contact {
  background: var(--brand-light);
}

.featured-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.product-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  overflow: hidden;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.product-image {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 206px;
  margin: 0;
  overflow: hidden;
  border: 0;
  border-bottom: 1px solid var(--brand-line);
  border-radius: 0;
  background:
    linear-gradient(145deg, rgba(0, 115, 168, 0.12), rgba(255, 255, 255, 0.92)),
    repeating-linear-gradient(90deg, rgba(31, 42, 48, 0.05) 0 1px, transparent 1px 12px),
    var(--brand-white);
}

.product-image::before,
.product-image::after,
.product-image span::before,
.product-image span::after {
  content: "";
  position: absolute;
  display: block;
}

img.product-image {
  display: block;
  width: 100%;
  height: 206px;
  object-fit: cover;
}

.product-image-link {
  display: block;
  overflow: hidden;
  border-bottom: 1px solid var(--brand-line);
}

.product-photo {
  border-bottom: 0;
  transition: transform 180ms ease;
}

.product-image-link:hover .product-photo,
.product-image-link:focus-visible .product-photo {
  transform: scale(1.03);
}

.product-title-link {
  transition: color 160ms ease;
}

.product-title-link:hover,
.product-title-link:focus-visible {
  color: var(--brand-blue-dark);
  outline: none;
}

.product-wow::before {
  width: 116px;
  height: 56px;
  border: 8px solid var(--brand-blue);
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: inset 0 -14px 0 rgba(0, 115, 168, 0.12);
}

.product-wow::after {
  width: 72px;
  height: 8px;
  border-radius: 999px;
  background: var(--brand-charcoal);
  transform: translate(24px, -2px) rotate(-28deg);
}

.product-wow span::before {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--brand-orange);
  transform: translate(-42px, 26px);
}

.product-cans::before {
  width: 144px;
  height: 76px;
  border: 7px solid var(--brand-blue);
  border-radius: 8px;
}

.product-cans::after {
  width: 102px;
  height: 34px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 17px center, var(--brand-orange) 0 12px, transparent 13px),
    radial-gradient(circle at 51px center, var(--brand-blue) 0 12px, transparent 13px),
    radial-gradient(circle at 85px center, var(--brand-charcoal) 0 12px, transparent 13px);
}

.product-plates::before {
  width: 46px;
  height: 86px;
  border: 7px solid var(--brand-blue);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.7);
  transform: translateX(-42px);
}

.product-plates::after {
  width: 46px;
  height: 86px;
  border: 7px solid var(--brand-orange);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  transform: translateX(42px);
}

.product-plates span::before {
  width: 14px;
  height: 38px;
  border-radius: 4px;
  background: var(--brand-charcoal);
  transform: translateX(-42px);
}

.product-plates span::after {
  width: 14px;
  height: 38px;
  border-radius: 4px;
  background: var(--brand-charcoal);
  transform: translateX(42px);
}

.product-content {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 18px 18px 20px;
}

.product-content p {
  margin-bottom: 16px;
  font-size: 0.95rem;
}

.product-kicker {
  margin-bottom: 8px !important;
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--brand-line);
}

.price {
  margin-bottom: 0;
  color: var(--brand-charcoal);
  font-size: 1.05rem;
  font-weight: 900;
}

.product-footer span,
.product-card-cta {
  flex: 0 0 auto;
  padding: 5px 7px;
  border-radius: 4px;
  background: var(--brand-blue-soft);
  color: var(--brand-blue-dark);
  font-size: 0.74rem;
  font-weight: 900;
}

.product-card-cta {
  transition: background-color 160ms ease, color 160ms ease;
}

.product-card-cta:hover,
.product-card-cta:focus-visible {
  background: var(--brand-blue);
  color: var(--brand-white);
  outline: none;
}

.product-detail {
  background:
    linear-gradient(90deg, rgba(0, 115, 168, 0.055) 1px, transparent 1px),
    linear-gradient(180deg, rgba(0, 115, 168, 0.055) 1px, transparent 1px),
    linear-gradient(135deg, #ffffff 0%, #f6f8f9 100%);
  background-size: 44px 44px, 44px 44px, auto;
}

.product-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}

.product-detail-media {
  overflow: hidden;
  border: 1px solid var(--brand-line);
  border-radius: var(--radius);
  background: var(--brand-white);
  box-shadow: var(--brand-shadow);
}

.product-detail-media img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.product-image-note {
  margin: 0;
  padding: 12px 14px;
  border-top: 1px solid var(--brand-line);
  color: var(--brand-charcoal-soft);
  font-size: 0.9rem;
  font-weight: 800;
}

.product-detail-copy h1 {
  margin-bottom: 16px;
  color: var(--brand-charcoal);
  font-size: clamp(2.6rem, 6vw, 5rem);
  line-height: 1;
}

.product-detail-subtitle {
  margin-bottom: 28px;
  color: var(--brand-charcoal-soft);
  font-size: clamp(1.08rem, 2vw, 1.28rem);
}

.product-detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.product-info {
  background: var(--brand-white);
}

.product-info-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
  gap: clamp(24px, 4vw, 38px);
}

.detail-card {
  border: 1px solid var(--brand-line);
  border-radius: var(--radius);
  background: var(--brand-white);
  box-shadow: 0 12px 28px rgba(31, 42, 48, 0.06);
  padding: clamp(22px, 3vw, 34px);
}

.detail-card h2 {
  margin-bottom: 16px;
  color: var(--brand-charcoal);
  font-size: clamp(1.6rem, 3vw, 2.35rem);
  line-height: 1.12;
}

.detail-card p {
  color: var(--brand-charcoal-soft);
}

.detail-card p:last-child {
  margin-bottom: 0;
}

.pricing-table {
  display: grid;
  gap: 10px;
  margin: 22px 0;
}

.pricing-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 58px;
  padding: 14px 16px;
  border-left: 4px solid var(--brand-blue);
  border-radius: 5px;
  background: var(--brand-light);
}

.pricing-row span {
  color: var(--brand-charcoal);
  font-weight: 800;
}

.pricing-row strong {
  color: var(--brand-charcoal);
  font-size: 1.2rem;
}

.shipping-note {
  margin-bottom: 22px;
  padding: 12px 14px;
  border-left: 4px solid var(--brand-orange);
  background: var(--brand-blue-soft);
  color: var(--brand-charcoal) !important;
  font-weight: 800;
}

.included-note {
  margin-bottom: 12px;
  padding: 12px 14px;
  border-left: 4px solid var(--brand-charcoal);
  background: var(--brand-light);
  color: var(--brand-charcoal) !important;
  font-weight: 800;
}

.about {
  background: var(--brand-white);
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(240px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(28px, 5vw, 56px);
  align-items: start;
  padding: clamp(38px, 5vw, 56px) 0;
  border-top: 1px solid var(--brand-line);
  border-bottom: 1px solid var(--brand-line);
}

.about-layout p {
  margin-bottom: 0;
  font-size: 1.08rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(32px, 5vw, 58px);
  align-items: start;
}

.contact-copy p {
  max-width: 540px;
  font-size: 1.04rem;
}

.contact-domain {
  display: inline-flex;
  margin-top: 8px;
  padding: 8px 10px;
  border-left: 4px solid var(--brand-orange);
  background: var(--brand-white);
  color: var(--brand-charcoal);
  font-weight: 800;
  box-shadow: 0 8px 22px rgba(31, 42, 48, 0.05);
}

.contact-card {
  display: grid;
  gap: 20px;
  padding: clamp(24px, 4vw, 40px);
}

.contact-card-header h3 {
  margin-bottom: 0;
  color: var(--brand-charcoal);
  font-size: clamp(1.55rem, 3vw, 2.25rem);
  line-height: 1.12;
}

.contact-card p {
  max-width: 640px;
  margin: 0;
  color: var(--brand-charcoal-soft);
  font-size: 1.02rem;
}

.email-link {
  display: inline-flex;
  width: fit-content;
  max-width: 100%;
  padding: 12px 14px;
  border-left: 4px solid var(--brand-orange);
  background: var(--brand-light);
  color: var(--brand-charcoal);
  font-size: clamp(1.08rem, 2vw, 1.28rem);
  font-weight: 900;
  overflow-wrap: anywhere;
  transition: background-color 160ms ease, color 160ms ease;
}

.email-link:hover,
.email-link:focus-visible {
  background: var(--brand-blue-soft);
  color: var(--brand-blue-dark);
  outline: none;
}

.site-footer {
  padding: 34px 0;
  background: var(--brand-charcoal);
  color: var(--brand-white);
}

.footer-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}

.footer-inner p {
  margin-bottom: 6px;
  color: rgba(255, 255, 255, 0.78);
}

.footer-brand {
  color: var(--brand-white) !important;
  font-weight: 900;
}

.footer-meta {
  text-align: right;
}

@media (max-width: 1100px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.85fr);
    gap: 36px;
  }
}

@media (max-width: 900px) {
  .navbar {
    min-height: 72px;
  }

  .brand-logo {
    width: 204px;
    height: 60px;
  }

  .nav-toggle {
    display: inline-block;
    flex: 0 0 auto;
  }

  .nav-links {
    position: fixed;
    inset: 72px 0 auto 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 16px 20px 22px;
    border-bottom: 1px solid var(--brand-line);
    background: var(--brand-white);
    box-shadow: 0 24px 50px rgba(31, 42, 48, 0.12);
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links a {
    justify-content: center;
    width: 100%;
  }

  .hero {
    min-height: auto;
    padding: 70px 0;
  }

  .hero-grid,
  .about-layout,
  .contact-grid,
  .product-detail-grid,
  .product-info-grid {
    grid-template-columns: 1fr;
  }

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

  .hero-copy {
    max-width: 720px;
  }

  .about-layout {
    gap: 20px;
  }
}

@media (max-width: 680px) {
  .navbar,
  .section-inner {
    width: min(100% - 28px, var(--max-width));
    max-width: min(100% - 28px, var(--max-width));
  }

  .brand-logo {
    width: 172px;
    height: 52px;
  }

  .section-band {
    padding: 56px 0;
  }

  .hero {
    align-items: stretch;
    padding: 52px 0 58px;
  }

  .hero-grid {
    gap: 30px;
    max-width: 100%;
    overflow: hidden;
  }

  .hero h1 {
    font-size: clamp(2.65rem, 12vw, 3.15rem);
  }

  .hero h1,
  .hero-tagline,
  .hero-intro,
  .section-heading h2,
  .product-detail-copy h1 {
    max-width: 100%;
    overflow-wrap: break-word;
  }

  .hero-intro {
    font-size: 1rem;
  }

  .proof-points {
    margin-bottom: 24px;
  }

  .proof-points span {
    flex: 1 1 auto;
    justify-content: center;
  }

  .button-row,
  .button {
    width: 100%;
  }

  .hero-panel,
  .contact-card {
    padding: 18px;
  }

  .hero-panel {
    border: 0;
    background: transparent;
    box-shadow: none;
    overflow: hidden;
    padding: 4px 0 0;
  }

  .hero-panel::before,
  .hero-logo,
  .panel-label {
    display: none;
  }

  .capability-list,
  .featured-grid {
    grid-template-columns: 1fr;
  }

  .product-image {
    min-height: 190px;
  }

  img.product-image {
    height: 190px;
  }

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

  .product-card {
    transform: none;
  }

  .section-heading {
    margin-bottom: 28px;
  }

  .footer-inner {
    flex-direction: column;
  }

  .footer-meta {
    text-align: left;
  }
}

@media (max-width: 420px) {
  .brand-logo {
    width: 148px;
    height: 46px;
  }

  .hero h1 {
    font-size: 2.55rem;
  }

  .hero-tagline {
    font-size: 1.14rem;
  }

  .capability-list {
    grid-template-columns: 1fr;
  }

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