:root {
  --blue: #00629b;
  --blue-deep: #003d63;
  --blue-mid: #0a7ab8;
  --green: #7eb642;
  --green-deep: #5a8a2c;
  --ink: #102433;
  --muted: #516879;
  --line: rgba(0, 98, 155, 0.12);
  --paper: #f3f8fb;
  --white: #ffffff;
  --font-display: "Syne", system-ui, sans-serif;
  --font-body: "DM Sans", system-ui, sans-serif;
  --shadow: 0 22px 50px rgba(0, 61, 99, 0.14);
  --radius: 1.25rem;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }

.container {
  width: min(1120px, calc(100% - 2rem));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--blue);
  color: white;
  padding: 0.75rem 1rem;
  z-index: 100;
}
.skip-link:focus { left: 1rem; top: 1rem; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(243, 248, 251, 0.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s ease, background 0.25s ease;
}
.site-header.is-scrolled {
  border-bottom-color: var(--line);
  background: rgba(255, 255, 255, 0.92);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 4.5rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
.logo img {
  width: 3rem;
  height: 3rem;
  object-fit: contain;
}
.logo__text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  color: var(--blue);
  line-height: 1.15;
}
.logo__text span {
  display: block;
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.12em;
}

.nav {
  display: flex;
  align-items: center;
  gap: 0.2rem 1.35rem;
}
.nav a {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--muted);
  padding: 0.35rem 0;
  position: relative;
  line-height: 1.2;
}
.nav a:hover,
.nav a[aria-current="page"] { color: var(--blue); }
.nav a[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 2px;
  background: var(--green);
  border-radius: 2px;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.5rem;
  padding: 0.55rem 1.15rem !important;
  border-radius: 999px;
  background: var(--blue);
  color: white !important;
  font-weight: 700 !important;
  font-size: 0.9rem;
  line-height: 1 !important;
  box-sizing: border-box;
}
.nav-cta:hover { background: var(--blue-deep); color: white !important; }
.nav a.nav-cta[aria-current="page"]::after { display: none !important; }

.nav-toggle {
  display: none;
  border: 0;
  background: transparent;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.6rem;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--blue);
  border-radius: 2px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 3rem;
  padding: 0.7rem 1.35rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  border: 2px solid transparent;
  transition: transform 0.2s var(--ease), background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.btn:focus-visible {
  outline: 3px solid rgba(126, 182, 66, 0.45);
  outline-offset: 3px;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary { background: var(--green); color: white; }
.btn--primary:hover { background: var(--green-deep); }
.btn--blue { background: var(--blue); color: white; }
.btn--blue:hover { background: var(--blue-deep); }
.btn--ghost {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.4);
  color: white;
}
.btn--ghost:hover { background: rgba(255, 255, 255, 0.28); }
.btn--outline {
  background: transparent;
  border-color: rgba(0, 98, 155, 0.25);
  color: var(--blue);
}
.btn--outline:hover { border-color: var(--blue); }

/* Hero — full bleed */
.hero {
  position: relative;
  min-height: min(92vh, 760px);
  display: grid;
  align-items: end;
  color: white;
  overflow: hidden;
}
.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  animation: heroZoom 18s ease-in-out infinite alternate;
}
.hero__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(110deg, rgba(0, 40, 70, 0.88) 0%, rgba(0, 70, 110, 0.55) 48%, rgba(0, 90, 80, 0.35) 100%),
    linear-gradient(to top, rgba(0, 30, 50, 0.75), transparent 45%);
}
.hero__content {
  position: relative;
  z-index: 1;
  padding: clamp(4rem, 12vh, 7rem) 0 clamp(3rem, 8vh, 5rem);
  width: min(720px, 100%);
  animation: fadeUp 0.9s var(--ease) both;
}
.brand-mark {
  margin: 0 0 1.1rem;
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 4vw, 2.5rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1;
}
.brand-mark span {
  color: var(--green);
}
.hero h1 {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 4.6vw, 3.1rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  font-weight: 700;
  max-width: 16ch;
}
.hero p {
  margin: 0 0 1.75rem;
  font-size: clamp(1rem, 2.2vw, 1.15rem);
  max-width: 36rem;
  color: rgba(255, 255, 255, 0.9);
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

@keyframes heroZoom {
  from { transform: scale(1.02); }
  to { transform: scale(1.08); }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Sections */
.section {
  padding: clamp(3.5rem, 8vw, 6rem) 0;
}
.section--white { background: white; }
.section--blue {
  background:
    radial-gradient(700px 280px at 100% 0%, rgba(126, 182, 66, 0.18), transparent 50%),
    linear-gradient(160deg, #004872, #00629b 55%, #0a6e8f);
  color: white;
}
.section__head {
  max-width: 40rem;
  margin-bottom: 2.25rem;
}
.eyebrow {
  margin: 0 0 0.55rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--green-deep);
}
.section--blue .eyebrow { color: #c6ef95; }
.section__head h2,
.page-hero h1 {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.8vw, 2.7rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--blue-deep);
}
.section--blue .section__head h2 { color: white; }
.section__head p {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}
.section--blue .section__head p { color: rgba(255, 255, 255, 0.88); }

/* Feature strips / product highlights — not cards unless interactive */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem 2rem;
  border-top: 1px solid var(--line);
  padding-top: 2rem;
}
.pillar h3 {
  margin: 0 0 0.4rem;
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--blue);
}
.pillar p { margin: 0; color: var(--muted); font-size: 0.98rem; }

.featured-products {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.product-card {
  display: flex;
  flex-direction: column;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.35s var(--ease), box-shadow 0.35s ease, opacity 0.35s ease, border-color 0.25s ease;
  color: inherit;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: rgba(0, 98, 155, 0.22);
}
.product-card:hover .product-card__media img {
  transform: scale(1.05) translateY(-4px);
}
.product-card__media {
  aspect-ratio: 5/4;
  background: linear-gradient(160deg, #f4f8fb, #ffffff);
  display: grid;
  place-items: center;
  padding: 1rem 1.1rem;
  overflow: hidden;
}
.product-card__media img {
  max-height: 100%;
  max-width: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 10px 20px rgba(0, 61, 99, 0.1));
  transition: transform 0.55s var(--ease);
}
.product-card__body {
  padding: 1.15rem 1.2rem 1.35rem;
  border-top: 1px solid var(--line);
}
.product-card__cat {
  margin: 0 0 0.35rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-deep);
}
.product-card__body h3 {
  margin: 0 0 0.25rem;
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--blue-deep);
}
.product-card__meta {
  margin: 0 0 0.55rem;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--blue);
  letter-spacing: 0.02em;
}
.product-card__body p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--muted);
}

.product-card--animated {
  opacity: 0;
  transform: translateY(28px) scale(0.98);
  animation: productIn 0.7s var(--ease) forwards;
}
.product-card--animated:nth-child(1) { animation-delay: 0.04s; }
.product-card--animated:nth-child(2) { animation-delay: 0.08s; }
.product-card--animated:nth-child(3) { animation-delay: 0.12s; }
.product-card--animated:nth-child(4) { animation-delay: 0.16s; }
.product-card--animated:nth-child(5) { animation-delay: 0.2s; }
.product-card--animated:nth-child(6) { animation-delay: 0.24s; }
.product-card--animated:nth-child(7) { animation-delay: 0.28s; }
.product-card--animated:nth-child(8) { animation-delay: 0.32s; }
.product-card--animated:nth-child(9) { animation-delay: 0.36s; }
.product-card--animated:nth-child(10) { animation-delay: 0.4s; }
.product-card--animated:nth-child(11) { animation-delay: 0.44s; }
.product-card--animated:nth-child(12) { animation-delay: 0.48s; }

@keyframes productIn {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.product-card.is-highlight {
  box-shadow: 0 0 0 3px rgba(126, 182, 66, 0.45), var(--shadow);
}

.product-card.is-filtering-out {
  opacity: 0;
  transform: scale(0.94);
  pointer-events: none;
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
  margin: 0;
  padding: 0;
  border: 0;
}

.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(1.5rem, 5vw, 3.5rem);
  align-items: center;
}
.split--reverse { direction: rtl; }
.split--reverse > * { direction: ltr; }
.split__visual {
  border-radius: 1.5rem;
  overflow: hidden;
  min-height: 320px;
  box-shadow: var(--shadow);
}
.split__visual img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
}
.split__copy .eyebrow { color: var(--green); }
.checklist {
  margin: 1.25rem 0 1.75rem;
  display: grid;
  gap: 0.65rem;
}
.checklist li {
  display: grid;
  grid-template-columns: 1.1rem 1fr;
  gap: 0.7rem;
  align-items: start;
  color: var(--ink);
}
.checklist li::before {
  content: "";
  width: 0.7rem;
  height: 0.7rem;
  margin-top: 0.4rem;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(126, 182, 66, 0.2);
}

.cta-band {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}
.cta-band h2 {
  margin: 0 0 0.4rem;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  letter-spacing: -0.02em;
}
.cta-band p { margin: 0; color: rgba(255, 255, 255, 0.88); max-width: 34rem; }
.cta-band__actions { display: flex; flex-wrap: wrap; gap: 0.7rem; }

/* Page hero (inner pages) */
.page-hero {
  padding: clamp(3rem, 8vw, 5rem) 0 2rem;
  background:
    radial-gradient(600px 260px at 90% 0%, rgba(126, 182, 66, 0.16), transparent 55%),
    radial-gradient(500px 240px at 0% 40%, rgba(0, 98, 155, 0.12), transparent 50%),
    white;
  border-bottom: 1px solid var(--line);
}
.page-hero p {
  margin: 0;
  max-width: 40rem;
  color: var(--muted);
  font-size: 1.08rem;
}

/* About / timeline */
.timeline {
  display: grid;
  gap: 0;
  border-left: 2px solid rgba(0, 98, 155, 0.18);
  margin-left: 0.4rem;
}
.timeline__item {
  position: relative;
  padding: 0 0 1.75rem 1.5rem;
}
.timeline__item::before {
  content: "";
  position: absolute;
  left: -0.4rem;
  top: 0.35rem;
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 4px white, 0 0 0 6px rgba(126, 182, 66, 0.35);
}
.timeline__year {
  font-weight: 700;
  color: var(--blue);
  font-size: 0.9rem;
  letter-spacing: 0.04em;
}
.timeline__item p { margin: 0.2rem 0 0; color: var(--muted); }

.people {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.person {
  padding: 1.25rem 1.15rem;
  border-top: 3px solid var(--green);
  background: white;
}
.person h3 {
  margin: 0 0 0.2rem;
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--blue-deep);
}
.person p { margin: 0; color: var(--muted); font-size: 0.9rem; }

/* Products page */
.product-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.85rem 1.25rem;
  margin-bottom: 1.15rem;
}
.product-search {
  position: relative;
  flex: 1 1 280px;
  max-width: 520px;
}
.product-search__icon {
  position: absolute;
  left: 0.95rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--blue);
  pointer-events: none;
  display: grid;
  place-items: center;
}
.product-search input {
  width: 100%;
  min-height: 3rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.7rem 1.1rem 0.7rem 2.7rem;
  font: inherit;
  font-size: 0.95rem;
  background: white;
  color: var(--ink);
  box-shadow: 0 8px 24px rgba(0, 61, 99, 0.05);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.product-search input:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(0, 98, 155, 0.12);
}
.product-count {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 650;
  color: var(--muted);
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.75rem;
}
.filter-btn {
  border: 1px solid var(--line);
  background: white;
  color: var(--muted);
  border-radius: 999px;
  padding: 0.5rem 1rem;
  font: inherit;
  font-weight: 650;
  font-size: 0.88rem;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.filter-btn:hover {
  border-color: var(--blue);
  color: var(--blue);
  transform: translateY(-1px);
}
.filter-btn.is-active {
  background: var(--blue);
  border-color: var(--blue);
  color: white;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  position: relative;
}
.product-grid .product-card.is-hidden { display: none; }

.product-empty {
  margin: 0 0 1.5rem;
  padding: 1.25rem 1.35rem;
  border-radius: var(--radius);
  background: #eaf4fa;
  color: var(--muted);
  font-weight: 600;
  text-align: center;
}
.product-empty.is-hidden { display: none; }

.disclaimer {
  margin-top: 2.5rem;
  padding: 1rem 1.15rem;
  border-left: 4px solid var(--blue);
  background: #eaf4fa;
  color: var(--muted);
  font-size: 0.92rem;
}

/* Quality */
.standards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}
.standard {
  padding: 1.5rem 1.35rem;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.standard h3 {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  color: var(--blue);
}
.standard p { margin: 0; color: var(--muted); }

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}
.badge {
  display: inline-flex;
  align-items: center;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  background: rgba(126, 182, 66, 0.14);
  color: var(--green-deep);
  font-weight: 700;
  font-size: 0.88rem;
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(1.5rem, 4vw, 3rem);
}
.contact-list {
  display: grid;
  gap: 1.15rem;
}
.contact-item h3 {
  margin: 0 0 0.25rem;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-deep);
}
.contact-item p,
.contact-item a {
  margin: 0;
  font-size: 1.05rem;
  color: var(--ink);
  font-weight: 600;
}
.contact-item a:hover { color: var(--blue); text-decoration: underline; text-underline-offset: 3px; }

.contact-form {
  display: grid;
  gap: 0.9rem;
  padding: 1.5rem;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.contact-form label {
  display: grid;
  gap: 0.35rem;
  font-weight: 650;
  font-size: 0.9rem;
  color: var(--blue-deep);
}
.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 0.7rem;
  padding: 0.75rem 0.9rem;
  font: inherit;
  background: #fbfdfe;
  color: var(--ink);
}
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: 3px solid rgba(0, 98, 155, 0.18);
  border-color: var(--blue);
}
.form-note {
  margin: 0;
  font-size: 0.85rem;
  color: var(--muted);
  font-weight: 500;
}

.map-embed {
  margin-top: 2rem;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  min-height: 280px;
  background: #dfeaf1;
}
.map-embed iframe {
  width: 100%;
  height: 320px;
  border: 0;
}

/* Footer */
.site-footer {
  background: var(--blue-deep);
  color: rgba(255, 255, 255, 0.85);
  padding: 3rem 0 1.5rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}
.site-footer .logo__text { color: white; }
.site-footer .logo__text span { color: rgba(255, 255, 255, 0.65); }
.site-footer h3 {
  margin: 0 0 0.85rem;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #c6ef95;
}
.site-footer a:hover { color: white; }
.footer-links { display: grid; gap: 0.45rem; }
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.65);
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 900px) {
  .nav-toggle { display: inline-block; }
  .nav {
    position: absolute;
    top: 4.5rem;
    left: 0; right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.75rem 1rem 1rem;
    background: white;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
  }
  .nav.is-open { display: flex; }
  .nav a { padding: 0.75rem 0.4rem; }
  .pillars,
  .featured-products,
  .product-grid,
  .people,
  .standards {
    grid-template-columns: 1fr;
  }
  .split,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .split--reverse { direction: ltr; }
  .featured-products,
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .featured-products,
  .product-grid { grid-template-columns: 1fr; }
  .logo__text { display: none; }
  .hero__actions,
  .cta-band__actions { width: 100%; }
  .hero__actions .btn,
  .cta-band__actions .btn { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
  .reveal { opacity: 1; transform: none; }
  .product-card--animated {
    opacity: 1;
    transform: none;
  }
}
