@font-face {
  font-family: "Montserrat";
  src: url("assets/fonts/Montserrat-Regular.ttf") format("truetype");
  font-weight: 400;
}

@font-face {
  font-family: "Montserrat";
  src: url("assets/fonts/Montserrat-SemiBold.ttf") format("truetype");
  font-weight: 600;
}

@font-face {
  font-family: "Mazzard";
  src: url("assets/fonts/MazzardH-Black.otf") format("opentype");
  font-weight: 900;
}

:root {
  --navy: #001848;
  --blue: #1e488c;
  --orange: #fc7422;
  --white: #ffffff;
  --paper: #f6f8fc;
  --line: #d9e1ef;
  --ink: #071b42;
  --muted: #5c6780;
  --shadow: 0 22px 60px rgba(0, 24, 72, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Montserrat", Arial, sans-serif;
  line-height: 1.55;
}

body.menu-open {
  overflow: hidden;
}

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: 24px;
  min-height: 78px;
  padding: 14px clamp(18px, 5vw, 72px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(0, 24, 72, 0.09);
  backdrop-filter: blur(18px);
}

.brand img {
  width: 174px;
  height: auto;
}

.main-nav {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--navy);
  font-size: 0.9rem;
  font-weight: 700;
}

.main-nav a {
  position: relative;
  padding: 8px 0;
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  content: "";
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.main-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  background: var(--navy);
  border: 0;
  border-radius: 6px;
  place-items: center;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 3px auto;
  background: var(--white);
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 0;
  border-radius: 7px;
  cursor: pointer;
  font-weight: 900;
  color: var(--white);
  background: var(--orange);
  box-shadow: 0 14px 32px rgba(252, 116, 34, 0.32);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
  white-space: nowrap;
}

.header-cta:hover,
.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 38px rgba(252, 116, 34, 0.36);
}

.button.secondary {
  color: var(--white);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.36);
  box-shadow: none;
}

.button.secondary.light {
  color: var(--navy);
  border-color: rgba(0, 24, 72, 0.2);
}

.section-dark {
  color: var(--white);
  background: var(--navy);
}

.section-light {
  padding: clamp(56px, 7vw, 92px) clamp(18px, 5vw, 72px);
  background: var(--white);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 760px);
  align-items: center;
  min-height: min(820px, calc(100vh - 78px));
  padding: clamp(72px, 8vw, 120px) clamp(18px, 5vw, 72px);
  overflow: hidden;
  background: var(--navy);
}

.hero::before {
  position: absolute;
  inset: 0;
  content: "";
  background: url("assets/hero-delivery.jpg") center / cover no-repeat;
  opacity: 0.78;
}

.hero::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(0, 24, 72, 0.98) 0%, rgba(0, 24, 72, 0.86) 34%, rgba(0, 24, 72, 0.34) 68%, rgba(0, 24, 72, 0.1) 100%),
    linear-gradient(180deg, rgba(0, 24, 72, 0.26), rgba(0, 24, 72, 0.4));
}

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

.hero-content {
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Mazzard", "Montserrat", Arial, sans-serif;
  font-weight: 900;
  line-height: 1.04;
  letter-spacing: 0;
}

h1 {
  max-width: 820px;
  font-size: clamp(3rem, 5.85vw, 5.75rem);
  text-transform: uppercase;
}

h2 {
  max-width: 850px;
  color: var(--navy);
  font-size: clamp(2rem, 4.2vw, 3.85rem);
  text-transform: uppercase;
}

h3 {
  color: var(--navy);
  font-size: clamp(1.55rem, 3vw, 2.25rem);
  text-transform: uppercase;
}

.section-dark h2,
.section-dark h3,
.hero h1 {
  color: var(--white);
}

.hero-copy {
  max-width: 660px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1rem, 1.45vw, 1.2rem);
}

.hero .eyebrow {
  margin-bottom: 26px;
}

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

.order-band {
  display: grid;
  grid-template-columns: minmax(260px, 0.36fr) 1fr;
  gap: clamp(20px, 3vw, 44px);
  align-items: center;
  padding: clamp(28px, 4vw, 42px) clamp(18px, 5vw, 72px);
  color: var(--navy);
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.section-heading {
  max-width: 980px;
  margin-bottom: 42px;
}

.section-heading.compact {
  max-width: 380px;
  margin-bottom: 0;
}

.section-heading.compact h2 {
  max-width: 360px;
  font-size: clamp(2rem, 3.2vw, 3.15rem);
}

.section-heading p:not(.eyebrow) {
  max-width: 690px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.section-dark .section-heading p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.74);
}

.order-form,
.contact-form {
  display: grid;
  gap: 14px;
}

.order-form {
  grid-template-columns: minmax(220px, 1.05fr) minmax(120px, 0.42fr) minmax(190px, 0.8fr) auto;
  align-items: end;
}

label {
  display: grid;
  gap: 8px;
  color: inherit;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  color: var(--navy);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 7px;
  outline: none;
}

textarea {
  min-height: 118px;
  padding-top: 12px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(252, 116, 34, 0.15);
}

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

.product-card {
  position: relative;
  display: grid;
  align-content: start;
  min-height: 520px;
  padding: 24px;
  overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
}

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

.product-card.featured {
  color: var(--white);
  background: var(--navy);
  border-color: var(--navy);
}

.product-card.featured h3 {
  color: var(--white);
}

.product-card::after {
  position: absolute;
  right: -120px;
  bottom: -128px;
  z-index: 0;
  width: 230px;
  height: 230px;
  content: "";
  background: var(--orange);
  transform: rotate(-13deg);
  clip-path: polygon(36% 0, 100% 0, 64% 100%, 0 100%);
}

.product-image {
  display: grid;
  place-items: center;
  height: 245px;
  margin-bottom: 18px;
}

.product-image img {
  max-height: 238px;
  object-fit: contain;
  filter: drop-shadow(0 18px 18px rgba(0, 24, 72, 0.22));
}

.product-kicker {
  margin: 0 0 8px;
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.product-card p:not(.product-kicker) {
  margin: 14px 0 0;
  color: var(--muted);
}

.product-card.featured p:not(.product-kicker) {
  color: rgba(255, 255, 255, 0.73);
}

.product-card a {
  z-index: 1;
  width: fit-content;
  margin-top: 24px;
  color: var(--orange);
  font-weight: 900;
}

.section-split {
  display: block;
  padding: clamp(56px, 7vw, 92px) clamp(18px, 5vw, 72px);
  background:
    linear-gradient(90deg, rgba(0, 24, 72, 0.045), transparent 58%),
    var(--paper);
}

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

.service-list article {
  display: grid;
  align-content: start;
  min-height: 250px;
  padding: 26px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 48px rgba(0, 24, 72, 0.08);
}

.service-list span {
  color: var(--orange);
  font-family: "Mazzard", "Montserrat", Arial, sans-serif;
  font-size: 2.1rem;
  font-weight: 900;
  line-height: 1;
}

.service-list p {
  max-width: 32rem;
  margin: 14px 0 0;
  color: var(--muted);
}

.numbers {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  padding: 0 clamp(18px, 5vw, 72px);
  background:
    linear-gradient(rgba(0, 24, 72, 0.88), rgba(0, 24, 72, 0.9)),
    url("assets/pattern-2.png") center / 520px auto;
}

.numbers div {
  padding: 42px 20px;
  text-align: center;
  background: rgba(255, 255, 255, 0.04);
}

.numbers strong,
.numbers span {
  display: block;
}

.numbers strong {
  color: var(--orange);
  font-family: "Mazzard", "Montserrat", Arial, sans-serif;
  font-size: clamp(2.4rem, 5vw, 4.5rem);
  line-height: 1;
}

.numbers span {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.76);
  font-weight: 700;
}

.representatives {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: end;
}

.rep-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.faq {
  display: grid;
  grid-template-columns: 0.68fr 1fr;
  gap: clamp(28px, 6vw, 80px);
  color: var(--white);
  background:
    linear-gradient(110deg, rgba(0, 24, 72, 0.18), transparent 54%),
    var(--orange);
  border-top: 1px solid rgba(0, 24, 72, 0.12);
  border-bottom: 1px solid rgba(0, 24, 72, 0.12);
}

.faq h2,
.faq .eyebrow {
  color: var(--white);
}

.faq-list {
  display: grid;
  gap: 12px;
}

details {
  background: var(--white);
  border: 1px solid rgba(0, 24, 72, 0.12);
  border-radius: 8px;
  box-shadow: 0 18px 46px rgba(0, 24, 72, 0.13);
}

summary {
  cursor: pointer;
  padding: 20px 22px;
  color: var(--navy);
  font-weight: 900;
}

details p {
  margin: 0;
  padding: 0 22px 22px;
  color: var(--muted);
}

.contact {
  position: relative;
  display: grid;
  grid-template-columns: 1fr minmax(300px, 480px);
  gap: clamp(28px, 7vw, 90px);
  padding: clamp(72px, 9vw, 120px) clamp(18px, 5vw, 72px);
  overflow: hidden;
  background: var(--navy);
}

.contact::before {
  position: absolute;
  inset: 0;
  content: "";
  background: url("assets/pattern-1.png") center / 360px auto repeat;
  opacity: 0.16;
}

.contact::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(0, 24, 72, 0.96), rgba(0, 24, 72, 0.82));
}

.contact > * {
  position: relative;
  z-index: 1;
}

.contact-copy p:not(.eyebrow) {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 1.08rem;
}

address {
  display: grid;
  gap: 8px;
  margin-top: 26px;
  color: rgba(255, 255, 255, 0.86);
  font-style: normal;
  font-weight: 700;
}

address a {
  color: var(--white);
}

.contact-form {
  padding: 24px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.18);
}

.footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 26px clamp(18px, 5vw, 72px);
  background: var(--white);
  border-top: 1px solid var(--line);
}

.footer img {
  width: 148px;
}

.footer p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.footer a {
  color: var(--navy);
  font-weight: 900;
}

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

  .menu-toggle {
    display: block;
    order: 3;
    justify-self: end;
  }

  .main-nav {
    position: fixed;
    top: 78px;
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 18px 24px;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
  }

  .menu-open .main-nav {
    display: flex;
  }

  .main-nav a {
    padding: 15px 4px;
    border-bottom: 1px solid var(--line);
  }

  .header-cta {
    justify-self: end;
  }

  .hero,
  .faq,
  .contact,
  .representatives {
    grid-template-columns: 1fr;
  }

  .order-band {
    grid-template-columns: 1fr;
  }

  .order-form {
    grid-template-columns: 1fr 1fr;
  }

  .order-form .button {
    grid-column: 1 / -1;
  }

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

  .product-card {
    min-height: auto;
  }

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

  .rep-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .site-header {
    min-height: 70px;
    gap: 12px;
  }

  .brand img {
    width: 132px;
  }

  .header-cta {
    display: none;
  }

  .main-nav {
    top: 70px;
  }

  .hero {
    min-height: auto;
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .hero::before {
    background-position: 66% center;
  }

  .hero::after {
    background:
      linear-gradient(90deg, rgba(0, 24, 72, 0.98) 0%, rgba(0, 24, 72, 0.9) 48%, rgba(0, 24, 72, 0.36) 100%),
      linear-gradient(180deg, rgba(0, 24, 72, 0.38), rgba(0, 24, 72, 0.48));
  }

  h1 {
    font-size: clamp(2.45rem, 13vw, 4rem);
  }

  .order-form,
  .service-list,
  .numbers {
    grid-template-columns: 1fr;
  }

  .section-heading.compact {
    max-width: none;
    margin-bottom: 6px;
  }

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