:root {
  --green: #126917;
  --navy: #012A61;
  --ink: #071420;
  --muted: #627083;
  --line: #dfe7ed;
  --paper: #f7faf8;
  --white: #ffffff;
  --gold: #c7a45b;
  --shadow: 0 22px 60px rgba(1, 42, 97, 0.14);
  --radius: 8px;
  --font-display: 'Plus Jakarta Sans', sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Inter", Arial, sans-serif;
  font-weight: 400;
  line-height: 1.65;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

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

h1,
h2,
h3 {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-display);
  line-height: 1;
  letter-spacing: -0.03em;
}

h1 {
  max-width: 980px;
  color: var(--white);
  font-size: clamp(36px, 6.5vw, 80px);
  font-weight: 800;
}

h2 {
  font-size: clamp(1.7rem, 2.6vw, 2.9rem);
  font-weight: 800;
  line-height: 1.15;
}

h3 {
  font-size: 1.04rem;
  font-weight: 800;
}

p {
  margin: 0;
}

.section-shell {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  width: 100%;
  padding: 18px 0;
  transition: padding 0.35s ease, background 0.35s ease, box-shadow 0.35s ease;
}

.site-header.scrolled,
.site-header.nav-open {
  padding: 10px 0;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 16px 44px rgba(1, 42, 97, 0.11);
  backdrop-filter: blur(18px);
}

.header-shell {
  width: min(1240px, calc(100% - 32px));
  min-height: 72px;
  margin: 0 auto;
  padding: 10px 12px 10px 16px;
  display: flex;
  align-items: center;
  gap: 22px;
  background: rgba(255, 255, 255, 0.91);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: var(--radius);
  box-shadow: 0 18px 55px rgba(1, 42, 97, 0.12);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand-logo {
  display: inline-flex;
  align-items: center;
}

.brand-logo img {
  width: auto;
  max-width: 190px;
  height: 52px;
  object-fit: contain;
}

.brand-mark {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: linear-gradient(135deg, var(--green), var(--navy));
  border-radius: 50%;
  box-shadow: inset 0 0 0 3px rgba(255, 255, 255, 0.72);
}

.brand-mark span {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 800;
}

.brand-copy {
  display: grid;
  gap: 0;
  line-height: 1;
}

.brand-copy strong {
  color: var(--navy);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 800;
}

.brand-copy small {
  color: var(--green);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.primary-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 4px;
}

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

.primary-nav .menu-item a {
  padding: 8px 13px;
  display: inline-flex;
  color: #26384d;
  font-size: 0.88rem;
  font-weight: 600;
  border-radius: 999px;
  transition: color 0.25s ease, background 0.25s ease;
}

.primary-nav .menu-item a:hover,
.primary-nav .current-menu-item > a {
  color: var(--navy);
  background: rgba(1, 42, 97, 0.07);
}

.nav-link {
  padding: 8px 13px;
  color: #26384d;
  font-size: 0.88rem;
  font-weight: 600;
  border-radius: 999px;
  transition: color 0.25s ease, background 0.25s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--navy);
  background: rgba(1, 42, 97, 0.07);
}

.header-cta {
  padding: 10px 17px;
  color: var(--white);
  background: var(--green);
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 600;
  box-shadow: 0 14px 30px rgba(18, 105, 23, 0.24);
  transition: transform 0.25s ease, background 0.25s ease;
}

.header-cta:hover {
  transform: translateY(-2px);
  background: #0f5a14;
}

.menu-toggle {
  width: 48px;
  height: 48px;
  display: none;
  place-items: center;
  border: 0;
  background: var(--navy);
  border-radius: 50%;
  cursor: pointer;
}

.menu-toggle span {
  width: 19px;
  height: 2px;
  display: block;
  background: var(--white);
  transition: transform 0.25s ease;
}

.menu-toggle span + span {
  margin-top: -13px;
}

.menu-open .menu-toggle span:first-child {
  transform: translateY(6px) rotate(45deg);
}

.menu-open .menu-toggle span:last-child {
  transform: translateY(-6px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 100vh;
  padding: 160px 0 72px;
  display: grid;
  align-items: end;
  overflow: hidden;
}

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

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(1, 17, 39, 0.92) 0%, rgba(1, 42, 97, 0.72) 45%, rgba(1, 42, 97, 0.18) 100%),
    linear-gradient(0deg, rgba(1, 20, 32, 0.55), rgba(1, 20, 32, 0.05));
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 42px;
  align-items: end;
}

.eyebrow {
  margin-bottom: 18px;
  color: var(--green);
  font-size: 0.76rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.hero .eyebrow,
.cta .eyebrow {
  color: #9fe59e;
}

.page-hero .eyebrow,
.journey-band .eyebrow {
  width: max-content;
  max-width: 100%;
  padding: 9px 13px;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(14px);
}

.hero-subtitle {
  margin-top: 20px;
  color: #f0f6ff;
  font-size: clamp(1.2rem, 2vw, 1.75rem);
  font-weight: 300;
}

.hero-text {
  max-width: 660px;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.04rem;
  font-weight: 300;
}

.hero-actions,
.center-action {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  min-height: 52px;
  padding: 15px 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 600;
  line-height: 1;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.btn:hover {
  transform: translateY(-3px);
}

.btn-primary {
  color: var(--white);
  background: var(--green);
  box-shadow: 0 18px 34px rgba(18, 105, 23, 0.25);
}

.btn-primary:hover {
  background: #0f5a14;
}

.btn-ghost {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.08);
}

.btn-light {
  color: var(--navy);
  background: var(--white);
}

.hero-panel {
  padding: 28px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(20px);
}

.page-hero {
  position: relative;
  min-height: 72vh;
  padding: 170px 0 86px;
  display: grid;
  align-items: end;
  overflow: hidden;
}

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

.page-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero-overlay {
  background:
    linear-gradient(90deg, rgba(1, 17, 39, 0.9) 0%, rgba(1, 42, 97, 0.62) 52%, rgba(18, 105, 23, 0.14) 100%),
    linear-gradient(0deg, rgba(1, 20, 32, 0.5), rgba(1, 20, 32, 0.08));
}

.page-hero-content {
  position: relative;
  z-index: 2;
}

.page-hero h1 {
  max-width: 890px;
  font-size: clamp(36px, 6.5vw, 80px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.page-hero p:not(.eyebrow) {
  max-width: 660px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.08rem;
  font-weight: 300;
}

.panel-kicker {
  color: #bdebc0;
  font-size: 0.74rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.hero-panel strong {
  margin-top: 12px;
  display: block;
  font-family: var(--font-display);
  font-size: 1.85rem;
  line-height: 1;
}

.hero-panel p {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 300;
}

.panel-metrics {
  margin-top: 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.panel-metrics span {
  padding: 14px;
  display: grid;
  gap: 3px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  font-size: 0.8rem;
}

.panel-metrics b {
  color: #bdebc0;
  font-family: var(--font-display);
  font-size: 1.55rem;
}

.intro {
  padding: 112px 0;
  display: grid;
  grid-template-columns: minmax(320px, 0.86fr) 1fr;
  gap: 72px;
  align-items: center;
}

.intro-image {
  position: relative;
}

.intro-image::before {
  content: "";
  position: absolute;
  inset: 22px 22px -18px -18px;
  z-index: -1;
  background: var(--navy);
  border-radius: var(--radius);
}

.intro-image img {
  width: 100%;
  aspect-ratio: 4 / 4.7;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.intro-content {
  max-width: 660px;
}

.intro-copy {
  margin-top: 28px;
  display: grid;
  gap: 22px;
  color: #334258;
  font-size: 1.08rem;
}

.intro-copy strong {
  color: var(--navy);
  font-weight: 600;
}

.about-story {
  padding: 112px 0;
  display: grid;
  grid-template-columns: minmax(320px, 0.88fr) 1fr;
  gap: 72px;
  align-items: center;
}

.about-story-image {
  position: relative;
}

.about-story-image::before {
  content: "";
  position: absolute;
  inset: 22px 22px -18px -18px;
  z-index: -1;
  background: var(--green);
  border-radius: var(--radius);
}

.about-story-image img {
  width: 100%;
  aspect-ratio: 4 / 4.7;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.about-story-content {
  max-width: 660px;
}

.about-copy {
  margin-top: 28px;
  display: grid;
  gap: 20px;
  color: #334258;
  font-size: 1.06rem;
}

.journey-band {
  padding: 76px 0;
  background: var(--navy);
}

.journey-grid {
  display: grid;
  grid-template-columns: 0.82fr 1fr;
  gap: 72px;
  align-items: start;
}

.journey-copy h2 {
  color: var(--white);
}

.journey-text {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.08rem;
  font-weight: 300;
}

.difference {
  padding: 108px 0;
}

.difference-grid {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.difference-card {
  min-height: 270px;
  padding: 28px;
  background: var(--white);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.difference-card span,
.mv-card span {
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.difference-card h3 {
  margin-top: 58px;
  color: var(--navy);
}

.difference-card p {
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.94rem;
}

.commitment {
  position: relative;
  padding: 104px 0;
  overflow: hidden;
  background:
    linear-gradient(120deg, rgba(3, 26, 54, 0.97), rgba(1, 42, 97, 0.94)),
    url("https://images.unsplash.com/photo-1586528116311-ad8dd3c8310d?auto=format&fit=crop&w=1600&q=85");
  background-size: cover;
  background-position: center;
}

.commitment::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(1, 42, 97, 0.36), rgba(18, 105, 23, 0.12));
}

.commitment .section-shell {
  position: relative;
  z-index: 1;
}

.commitment-grid {
  display: grid;
  grid-template-columns: 0.72fr 1fr;
  gap: 72px;
  align-items: center;
}

.commitment-heading .eyebrow {
  width: max-content;
  max-width: 100%;
  padding: 9px 13px;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;
}

.commitment-heading h2 {
  color: var(--white);
}

.commitment-heading p:not(.eyebrow) {
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 300;
}

.commitment-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.commitment-item {
  position: relative;
  min-height: 260px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(18px);
  transition: transform 0.25s ease, background 0.25s ease;
}

.commitment-item:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.14);
}

.commitment-number {
  position: absolute;
  top: 20px;
  right: 22px;
  color: rgba(255, 255, 255, 0.18);
  font-family: var(--font-display);
  font-size: 3.4rem;
  font-weight: 900;
  line-height: 1;
}

.commitment-icon {
  width: 58px;
  height: 58px;
  margin-bottom: 34px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: linear-gradient(135deg, var(--green), #27a334);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.2);
}

.commitment-icon svg {
  width: 25px;
  height: 25px;
}

.commitment-item strong {
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 800;
  line-height: 1.22;
}

.commitment-item p {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  line-height: 1.55;
}

.mission-vision {
  padding: 108px 0 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.mv-card {
  min-height: 330px;
  padding: clamp(28px, 5vw, 48px);
  display: grid;
  align-content: start;
  background: #031a36;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.mv-card:nth-child(2) {
  background: var(--green);
}

.mv-card h2 {
  margin-top: 44px;
  color: var(--white);
}

.mv-card p {
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.76);
  font-weight: 300;
}

.contact-main {
  padding: 112px 0;
  display: grid;
  grid-template-columns: 0.86fr 1fr;
  gap: 72px;
  align-items: start;
}

.contact-info-panel {
  position: sticky;
  top: 120px;
}

.contact-lead {
  max-width: 560px;
  margin-top: 24px;
  color: var(--muted);
  font-size: 1.05rem;
}

.contact-detail-list {
  margin-top: 38px;
  display: grid;
  gap: 14px;
}

.contact-detail-card {
  min-height: 104px;
  padding: 20px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--paper);
  border: 1px solid #e6eee8;
  border-radius: var(--radius);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.contact-detail-card:hover {
  transform: translateY(-3px);
  border-color: rgba(18, 105, 23, 0.24);
  box-shadow: 0 18px 42px rgba(1, 42, 97, 0.1);
}

.contact-icon {
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: linear-gradient(135deg, var(--green), var(--navy));
  border-radius: 50%;
}

.contact-icon svg {
  width: 22px;
  height: 22px;
}

.contact-detail-card small {
  display: block;
  margin-bottom: 5px;
  color: var(--green);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.contact-detail-card strong {
  display: block;
  color: #26384d;
  font-weight: 600;
  line-height: 1.45;
}

.inquiry-form {
  padding: clamp(26px, 4vw, 42px);
  background: #031a36;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.form-heading {
  margin-bottom: 22px;
}

.form-heading span {
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.form-heading h2 {
  margin-top: 10px;
  color: var(--white);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  align-items: start;
}

.inquiry-form label {
  display: grid;
  gap: 6px;
  align-content: start;
}

.inquiry-form > .form-grid + .form-grid,
.inquiry-form > label + label,
.inquiry-form > .form-grid + label,
.inquiry-form > label + .form-grid {
  margin-top: 14px;
}

.inquiry-form label span {
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.inquiry-form input,
.inquiry-form select,
.inquiry-form textarea {
  width: 100%;
  padding: 0 14px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius);
  font: inherit;
  line-height: 1.2;
  outline: none;
  transition: border-color 0.25s ease, background 0.25s ease;
}

.inquiry-form input,
.inquiry-form select {
  height: 46px;
}

.inquiry-form select {
  appearance: none;
  cursor: pointer;
}

.inquiry-form option {
  color: var(--ink);
}

.inquiry-form textarea {
  padding-top: 12px;
  padding-bottom: 12px;
  resize: vertical;
  min-height: 108px;
  line-height: 1.55;
}

.inquiry-form input::placeholder,
.inquiry-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.38);
}

.inquiry-form input:focus,
.inquiry-form select:focus,
.inquiry-form textarea:focus {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(159, 229, 158, 0.72);
}

.form-submit {
  width: 100%;
  min-height: 48px;
  margin-top: 18px;
  border: 0;
  cursor: pointer;
}

.form-alert {
  margin-bottom: 18px;
  padding: 14px 16px;
  border-radius: var(--radius);
  font-weight: 600;
}

.form-alert.success {
  color: #dff4e0;
  background: rgba(18, 105, 23, 0.22);
  border: 1px solid rgba(159, 229, 158, 0.24);
}

.form-alert.error {
  color: #ffe1e1;
  background: rgba(180, 34, 34, 0.22);
  border: 1px solid rgba(255, 160, 160, 0.24);
}

.contact-social-section {
  padding: 0 0 104px;
}

.contact-social-inner {
  padding: clamp(30px, 5vw, 54px);
  display: grid;
  justify-items: center;
  text-align: center;
  background: var(--paper);
  border: 1px solid #e6eee8;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.contact-social-inner h2 {
  max-width: 680px;
}

.social-links {
  width: 100%;
  max-width: 760px;
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.social-link {
  min-height: 62px;
  padding: 14px 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--white);
  background: linear-gradient(135deg, var(--navy), #064176);
  border-radius: 999px;
  font-weight: 600;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.social-link svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
  flex: 0 0 20px;
}

.social-link:hover {
  transform: translateY(-3px);
  background: linear-gradient(135deg, var(--green), var(--navy));
  box-shadow: 0 16px 34px rgba(1, 42, 97, 0.16);
}

.catalog-intro {
  padding: 104px 0 34px;
  display: grid;
  grid-template-columns: 1fr 0.82fr;
  gap: 72px;
  align-items: end;
}

.catalog-intro-copy h2 {
  max-width: 780px;
}

.catalog-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.catalog-stats span {
  min-height: 138px;
  padding: 22px;
  display: grid;
  align-content: center;
  gap: 7px;
  background: var(--white);
  border-right: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 600;
}

.catalog-stats span:last-child {
  border-right: 0;
}

.catalog-stats strong {
  color: var(--green);
  font-family: var(--font-display);
  font-size: 2rem;
  line-height: 1;
}

.catalog-nav {
  position: sticky;
  z-index: 20;
  top: 98px;
  padding: 14px;
  display: flex;
  gap: 8px;
  overflow-x: auto;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: 0 18px 48px rgba(1, 42, 97, 0.1);
  backdrop-filter: blur(18px);
}

.catalog-nav a {
  padding: 12px 16px;
  color: #26384d;
  background: var(--paper);
  border-radius: 999px;
  font-size: 0.86rem;
  font-weight: 600;
  white-space: nowrap;
  transition: color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.catalog-nav a:hover {
  color: var(--white);
  background: var(--navy);
  transform: translateY(-2px);
}

.product-showcase {
  padding: 72px 0 112px;
  display: grid;
  gap: 28px;
}

.product-family {
  position: relative;
  scroll-margin-top: 180px;
  min-height: 620px;
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  overflow: hidden;
  background: #031a36;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.product-family-featured {
  min-height: 680px;
}

.product-family-flip {
  grid-template-columns: 1fr 0.9fr;
}

.product-family-flip .product-family-media {
  order: 2;
}

.product-family-flip .product-family-content {
  order: 1;
}

.product-family-media {
  min-height: 100%;
}

.product-family-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-family-content {
  position: relative;
  padding: clamp(34px, 6vw, 76px);
  display: grid;
  align-content: center;
  color: var(--white);
  overflow: hidden;
}

.product-family-content::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 90% 10%, rgba(18, 105, 23, 0.22), transparent 34%),
    linear-gradient(135deg, rgba(3, 26, 54, 0.96), rgba(1, 42, 97, 0.86));
}

.product-family-content > * {
  position: relative;
  z-index: 1;
}

.product-number {
  position: absolute;
  top: 34px;
  right: 38px;
  color: rgba(255, 255, 255, 0.09);
  font-family: var(--font-display);
  font-size: clamp(4rem, 9vw, 8rem);
  font-weight: 800;
  line-height: 1;
}

.product-family .eyebrow {
  width: max-content;
  padding: 9px 13px;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.92);
  border-radius: 999px;
}

.product-family h2 {
  max-width: 680px;
  margin-top: 10px;
  color: var(--white);
}

.product-family p:not(.eyebrow) {
  max-width: 620px;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 300;
}

.product-chips {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.product-chips span {
  padding: 11px 15px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
  backdrop-filter: blur(12px);
}

.product-features {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.product-features span {
  min-height: 78px;
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #dff4e0;
  background: rgba(18, 105, 23, 0.22);
  border: 1px solid rgba(159, 229, 158, 0.22);
  border-radius: var(--radius);
  font-size: 0.86rem;
  font-weight: 600;
  line-height: 1.35;
  text-align: center;
}

.packaging-section {
  scroll-margin-top: 180px;
  padding: 104px 0;
  background: var(--paper);
}

.packaging-grid {
  display: grid;
  grid-template-columns: 0.78fr 1fr;
  gap: 72px;
  align-items: start;
}

.packaging-copy {
  position: sticky;
  top: 128px;
}

.packaging-copy p:not(.eyebrow) {
  margin-top: 22px;
  color: var(--muted);
}

.packaging-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.packaging-card {
  min-height: 260px;
  padding: 28px;
  display: grid;
  align-content: start;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 18px 44px rgba(1, 42, 97, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.packaging-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.packaging-card span {
  color: var(--gold);
  font-family: var(--font-display);
  font-weight: 800;
}

.packaging-card h3 {
  margin-top: 12px;
  color: var(--navy);
  font-size: 1.26rem;
}

.packaging-card p {
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.94rem;
}

.product-inquiry {
  padding: 104px 0;
}

.product-inquiry-inner {
  padding: clamp(34px, 6vw, 76px);
  display: grid;
  justify-items: center;
  text-align: center;
  color: var(--white);
  background:
    linear-gradient(120deg, rgba(1, 42, 97, 0.94), rgba(18, 105, 23, 0.86)),
    url("https://images.unsplash.com/photo-1578575437130-527eed3abbec?auto=format&fit=crop&w=1600&q=85");
  background-size: cover;
  background-position: center;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.product-inquiry h2 {
  max-width: 760px;
  color: var(--white);
}

.product-inquiry p:not(.eyebrow) {
  max-width: 680px;
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.78);
}

.product-inquiry .btn {
  margin-top: 30px;
}

.proof-band {
  padding: 42px 0;
  background: var(--navy);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.proof-card {
  min-height: 240px;
  padding: 34px;
  color: var(--white);
  background: #052f67;
}

.proof-card span,
.product-card span,
.step span {
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 800;
}

.proof-card h3 {
  margin-top: 42px;
  color: var(--white);
}

.proof-card p {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 300;
}

.why {
  padding: 118px 0;
  display: grid;
  grid-template-columns: 1fr minmax(320px, 0.86fr);
  gap: 72px;
  align-items: center;
}

.why-visual {
  position: relative;
}

.why-visual::before {
  content: "";
  position: absolute;
  inset: 26px 26px -22px -22px;
  z-index: -1;
  background: var(--green);
  border-radius: var(--radius);
}

.why-visual img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.why-content h2 {
  max-width: 720px;
}

.feature-list {
  margin-top: 36px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.feature-item {
  min-height: 72px;
  padding: 18px;
  display: flex;
  align-items: center;
  gap: 13px;
  background: var(--paper);
  border: 1px solid #e6eee8;
  border-radius: var(--radius);
  color: #26384d;
  font-weight: 600;
}

.feature-item span {
  width: 12px;
  height: 12px;
  flex: 0 0 12px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(18, 105, 23, 0.12);
}

.products {
  padding: 78px 0;
  background: #f4f7fb;
}

.section-heading {
  max-width: 850px;
}

.section-heading.centered {
  margin: 0 auto;
  text-align: center;
}

.section-heading.centered p:not(.eyebrow) {
  max-width: 640px;
  margin: 22px auto 0;
  color: var(--muted);
}

.product-grid {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.product-card {
  position: relative;
  min-height: 330px;
  padding: 22px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.product-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(1, 42, 97, 0.05), rgba(1, 22, 41, 0.76));
}

.product-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.product-card:hover img {
  transform: scale(1.06);
}

.product-card div {
  position: relative;
  z-index: 2;
}

.product-card h3 {
  max-width: 260px;
  margin-top: 8px;
  color: var(--white);
  font-size: 1.3rem;
}

.center-action {
  justify-content: center;
}

.markets {
  padding: 118px 0;
  display: grid;
  grid-template-columns: 0.82fr 1fr;
  gap: 70px;
  align-items: center;
}

.markets-copy p:not(.eyebrow) {
  max-width: 560px;
  margin-top: 24px;
  color: var(--muted);
  font-size: 1.05rem;
}

.market-map {
  position: relative;
  min-height: 460px;
  overflow: hidden;
  background:
    linear-gradient(rgba(1, 42, 97, 0.88), rgba(1, 42, 97, 0.88)),
    url("https://images.unsplash.com/photo-1524661135-423995f22d0b?auto=format&fit=crop&w=1200&q=85");
  background-size: cover;
  background-position: center;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.market-map::before {
  content: "";
  position: absolute;
  inset: 34px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
}

.market-map span {
  position: absolute;
  left: var(--x);
  top: var(--y);
  padding: 9px 12px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  transform: translate(-50%, -50%);
  backdrop-filter: blur(12px);
}

.process {
  padding: 108px 0;
  background: var(--paper);
}

.process-steps {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.step {
  min-height: 246px;
  padding: 28px;
  background: var(--white);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.step h3 {
  margin-top: 54px;
  color: var(--navy);
}

.step p {
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.95rem;
}

.cta {
  padding: 100px 0;
}

.cta-inner {
  padding: clamp(36px, 7vw, 76px);
  color: var(--white);
  display: grid;
  justify-items: center;
  text-align: center;
  background:
    linear-gradient(120deg, rgba(1, 42, 97, 0.96), rgba(18, 105, 23, 0.9)),
    url("https://images.unsplash.com/photo-1578575437130-527eed3abbec?auto=format&fit=crop&w=1600&q=85");
  background-size: cover;
  background-position: center;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.cta h2 {
  max-width: 760px;
  color: var(--white);
}

.cta .btn {
  margin-top: 32px;
}

.site-footer {
  color: rgba(255, 255, 255, 0.78);
  background: #031a36;
}

.footer-shell {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 66px 0;
  display: grid;
  grid-template-columns: 1fr 0.45fr 0.7fr;
  gap: 54px;
}

.brand-footer .brand-copy strong {
  color: var(--white);
}

.footer-brand p {
  max-width: 420px;
  margin-top: 22px;
  font-weight: 300;
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-column h3 {
  margin-bottom: 10px;
  color: var(--white);
  font-size: 0.94rem;
}

.footer-column a,
.footer-column span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.94rem;
  transition: color 0.25s ease;
}

.footer-column a:hover {
  color: var(--white);
}

.footer-bottom {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.54);
  font-size: 0.84rem;
}

.reveal {
  will-change: transform, opacity;
}

@media (max-width: 1080px) {
  .primary-nav,
  .header-cta {
    display: none;
  }

  .menu-toggle {
    margin-left: auto;
    display: grid;
  }

  .primary-nav {
    position: fixed;
    top: 104px;
    right: 16px;
    left: 16px;
    padding: 18px;
    display: grid;
    gap: 6px;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
  }

  .menu-open .primary-nav {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .primary-nav .primary-menu {
    display: grid;
    gap: 6px;
  }

  .primary-nav .menu-item a {
    width: 100%;
    padding: 15px;
    border-radius: var(--radius);
  }

  .nav-link {
    padding: 15px;
    border-radius: var(--radius);
  }

  .hero-grid,
  .intro,
  .about-story,
  .journey-grid,
  .why,
  .markets,
  .contact-main,
  .catalog-intro,
  .product-family,
  .product-family-flip,
  .packaging-grid,
  .commitment-grid {
    grid-template-columns: 1fr;
  }

  .product-family-flip .product-family-media,
  .product-family-flip .product-family-content {
    order: initial;
  }

  .product-family-media {
    min-height: 360px;
  }

  .packaging-copy {
    position: static;
  }

  .hero-panel {
    max-width: 480px;
  }

  .contact-info-panel {
    position: static;
  }

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

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

  .difference-grid,
  .mission-vision,
  .packaging-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 760px) {
  .section-shell,
  .footer-shell,
  .footer-bottom {
    width: min(100% - 28px, 1180px);
  }

  .header-shell {
    width: calc(100% - 24px);
    min-height: 64px;
    padding: 8px 10px;
  }

  .brand-mark {
    width: 42px;
    height: 42px;
  }

  .brand-copy strong {
    font-size: 0.88rem;
  }

  .brand-copy small {
    font-size: 0.64rem;
  }

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

  .page-hero {
    min-height: auto;
    padding: 138px 0 62px;
  }

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

  .hero-grid {
    gap: 30px;
  }

  .hero-text,
  .intro-copy,
  .markets-copy p:not(.eyebrow) {
    font-size: 1rem;
  }

  .hero-actions,
  .center-action {
    display: grid;
  }

  .btn {
    width: 100%;
  }

  .hero-panel {
    padding: 22px;
  }

  .panel-metrics,
  .feature-list,
  .proof-grid,
  .product-grid,
  .process-steps,
  .difference-grid,
  .commitment-list,
  .mission-vision,
  .form-grid,
  .social-links,
  .catalog-stats,
  .product-features,
  .packaging-cards,
  .footer-shell {
    grid-template-columns: 1fr;
  }

  .intro,
  .about-story,
  .difference,
  .why,
  .markets,
  .contact-main,
  .catalog-intro,
  .product-showcase,
  .packaging-section,
  .product-inquiry,
  .process,
  .cta {
    padding: 72px 0;
  }

  .catalog-nav {
    top: 86px;
    width: min(100% - 28px, 1180px);
    border-radius: var(--radius);
  }

  .product-family,
  .product-family-featured {
    min-height: auto;
  }

  .product-family-media {
    min-height: 260px;
  }

  .product-family-content {
    padding: 30px;
  }

  .product-number {
    top: 24px;
    right: 24px;
    font-size: 4.2rem;
  }

  .packaging-card {
    min-height: 220px;
  }

  .products {
    padding: 60px 0;
  }

  .journey-band,
  .commitment {
    padding: 64px 0;
  }

  .mission-vision {
    padding: 72px 0 0;
  }

  .contact-social-section {
    padding: 0 0 72px;
  }

  .proof-card {
    min-height: 210px;
  }

  .why-visual::before,
  .intro-image::before,
  .about-story-image::before {
    inset: 18px -12px -12px 18px;
  }

  .product-card {
    min-height: 280px;
  }

  .market-map {
    min-height: 360px;
  }

  .difference-card,
  .mv-card {
    min-height: 240px;
  }

  .market-map span {
    max-width: 130px;
    text-align: center;
    white-space: normal;
  }

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

@media (max-width: 430px) {
  h1 {
    font-size: 2.65rem;
  }

  .page-hero h1 {
    font-size: 2.35rem;
  }

  h2 {
    font-size: 1.55rem;
  }

  .header-shell {
    gap: 10px;
  }

  .brand {
    gap: 9px;
  }

  .brand-copy small {
    letter-spacing: 0.08em;
  }

  .menu-toggle {
    width: 44px;
    height: 44px;
  }

  .hero-panel strong {
    font-size: 1.45rem;
  }
}
