@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Montserrat:wght@600;700;800&display=swap");

:root {
  --navy: #294b71;
  --navy-dark: #17324f;
  --gold: #d19700;
  --gold-light: #f3c85d;
  --ink: #182535;
  --slate: #5c6a78;
  --light: #f4f7fa;
  --white: #ffffff;
  --border: #dce3e9;
  --success: #2f7755;
  --shadow: 0 12px 35px rgba(26, 50, 75, 0.12);
  --radius: 14px;
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "DM Sans", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
}

img {
  max-width: 100%;
  height: auto;
}

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

p {
  margin-top: 0;
}

h1,
h2,
h3,
h4 {
  margin-top: 0;
  color: var(--navy-dark);
  font-family: "Montserrat", Arial, sans-serif;
  line-height: 1.18;
}

h1 {
  font-size: clamp(2.25rem, 5vw, 4.2rem);
  letter-spacing: -0.04em;
}

h2 {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  letter-spacing: -0.03em;
}

h3 {
  font-size: 1.2rem;
}

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

.section {
  padding: 88px 0;
}

.section-sm {
  padding: 60px 0;
}

.alt {
  background: var(--light);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 16px;
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 30px;
  height: 3px;
  content: "";
  background: var(--gold);
}

.lead {
  max-width: 760px;
  color: var(--slate);
  font-size: 1.2rem;
}

.muted {
  color: var(--slate);
}

.text-gold {
  color: var(--gold);
}

/* Header */

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid rgba(220, 227, 233, 0.8);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
}

.navbar {
  display: flex;
  min-height: 82px;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
}

.brand img {
  display: block;
  width: 190px;
  height: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 25px;
  font-size: 0.92rem;
  font-weight: 700;
}

.nav-links a {
  position: relative;
  color: var(--navy-dark);
}

.nav-links a:not(.button)::after {
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 0;
  height: 2px;
  content: "";
  transition: width 0.2s ease;
  background: var(--gold);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-links .button::after {
  display: none;
}

.menu-button {
  display: none;
  padding: 8px;
  border: 0;
  color: var(--navy);
  background: none;
  cursor: pointer;
  font-size: 1.7rem;
}

/* Buttons */

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 21px;
  border: 2px solid var(--gold);
  border-radius: 7px;
  color: var(--white);
  background: var(--gold);
  font-size: 0.9rem;
  font-weight: 800;
  transition: all 0.2s ease;
}

.button:hover {
  border-color: #b57d00;
  background: #b57d00;
  transform: translateY(-2px);
}

.button-outline {
  border-color: var(--navy);
  color: var(--navy);
  background: transparent;
}

.button-outline:hover {
  border-color: var(--navy);
  color: var(--white);
  background: var(--navy);
}

.button-white {
  border-color: var(--white);
  color: var(--navy);
  background: var(--white);
}

.button-white:hover {
  color: var(--white);
  background: transparent;
}

/* Hero */

.hero {
  position: relative;
  overflow: hidden;
  padding: 120px 0 105px;
  color: var(--white);
  background:
    linear-gradient(115deg, rgba(23, 50, 79, 0.98) 0%, rgba(41, 75, 113, 0.94) 55%, rgba(30, 61, 94, 0.83) 100%);
}

.hero::before {
  position: absolute;
  top: -180px;
  right: -130px;
  width: 620px;
  height: 620px;
  border: 80px solid rgba(209, 151, 0, 0.16);
  border-radius: 50%;
  content: "";
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 55px;
  align-items: center;
}

.hero h1 {
  max-width: 800px;
  margin-bottom: 22px;
  color: var(--white);
}

.hero p {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.18rem;
}

.hero .eyebrow {
  color: var(--gold-light);
}

.hero .eyebrow::before {
  background: var(--gold-light);
}

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

.hero-panel {
  padding: 31px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow);
}

.hero-panel h3 {
  color: var(--white);
}

.hero-panel ul {
  padding: 0;
  margin: 16px 0 0;
  list-style: none;
}

.hero-panel li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin: 12px 0;
  color: rgba(255, 255, 255, 0.88);
}

.hero-panel li::before {
  color: var(--gold-light);
  content: "✓";
  font-weight: 800;
}

/* Page hero */

.page-hero {
  padding: 85px 0 76px;
  color: var(--white);
  background: linear-gradient(120deg, var(--navy-dark), var(--navy));
}

.page-hero h1 {
  margin-bottom: 14px;
  color: var(--white);
}

.page-hero p {
  max-width: 730px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.1rem;
}

/* Cards and grids */

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

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 35px;
}

.service-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 31px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 7px 24px rgba(26, 50, 75, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.icon-box {
  display: grid;
  width: 55px;
  height: 55px;
  margin-bottom: 22px;
  border-radius: 10px;
  place-items: center;
  color: var(--gold);
  background: #fff5db;
  font-size: 1.7rem;
}

.service-card p {
  color: var(--slate);
}

.card-link {
  display: inline-flex;
  gap: 9px;
  align-items: center;
  margin-top: auto;
  padding-top: 14px;
  color: var(--navy);
  font-size: 0.9rem;
  font-weight: 800;
}

.card-link:hover {
  color: var(--gold);
}

.feature-card {
  padding: 25px;
  border-left: 4px solid var(--gold);
  border-radius: 0 10px 10px 0;
  background: var(--white);
}

.feature-card h3 {
  margin-bottom: 10px;
}

.feature-card p {
  margin-bottom: 0;
  color: var(--slate);
}

/* Content components */

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.info-panel {
  padding: 35px;
  border-radius: var(--radius);
  color: var(--white);
  background: var(--navy);
}

.info-panel h2,
.info-panel h3 {
  color: var(--white);
}

.info-panel p {
  color: rgba(255, 255, 255, 0.82);
}

.check-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}

.check-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.check-list li::before {
  display: grid;
  width: 21px;
  height: 21px;
  flex: 0 0 21px;
  border-radius: 50%;
  place-items: center;
  color: var(--white);
  content: "✓";
  background: var(--gold);
  font-size: 0.75rem;
  font-weight: 800;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  padding: 0;
  list-style: none;
}

.feature-list li {
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--white);
  color: var(--navy-dark);
  font-weight: 700;
}

.feature-list li::before {
  margin-right: 9px;
  color: var(--gold);
  content: "◆";
  font-size: 0.75rem;
}

.callout {
  padding: 38px;
  border-radius: var(--radius);
  color: var(--white);
  text-align: center;
  background: linear-gradient(120deg, var(--navy-dark), var(--navy));
}

.callout h2 {
  margin-bottom: 14px;
  color: var(--white);
}

.callout p {
  max-width: 700px;
  margin: 0 auto 25px;
  color: rgba(255, 255, 255, 0.84);
}

/* Warehousing */

.warehouse-logo {
  display: block;
  width: min(100%, 450px);
  margin-bottom: 25px;
  padding: 13px;
  border-radius: 8px;
  background: #fff;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  counter-reset: process;
}

.process-item {
  position: relative;
  min-height: 170px;
  padding: 24px 20px;
  border-radius: 10px;
  color: var(--white);
  background: var(--navy);
}

.process-item::before {
  display: block;
  margin-bottom: 17px;
  color: var(--gold-light);
  content: "0" counter(process);
  counter-increment: process;
  font-family: "Montserrat", sans-serif;
  font-size: 1.55rem;
  font-weight: 800;
}

.process-item h3 {
  margin-bottom: 8px;
  color: var(--white);
  font-size: 1rem;
}

.process-item p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.9rem;
  line-height: 1.45;
}

/* Forms */

.contact-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 50px;
}

.contact-detail {
  margin: 25px 0;
}

.contact-detail strong {
  display: block;
  margin-bottom: 3px;
  color: var(--navy);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-detail a {
  color: var(--navy-dark);
  font-size: 1.1rem;
  font-weight: 700;
}

.form-card {
  padding: 35px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 17px;
}

.field {
  margin-bottom: 18px;
}

label {
  display: block;
  margin-bottom: 7px;
  color: var(--navy-dark);
  font-size: 0.87rem;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid #cbd5de;
  border-radius: 7px;
  outline: none;
  color: var(--ink);
  background: var(--white);
  font: inherit;
}

textarea {
  min-height: 135px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(209, 151, 0, 0.15);
}

.form-note {
  margin-top: 14px;
  color: var(--slate);
  font-size: 0.82rem;
}

/* Footer */

.site-footer {
  padding: 60px 0 24px;
  color: rgba(255, 255, 255, 0.72);
  background: var(--navy-dark);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 50px;
}

.footer-logo {
  width: 190px;
  margin-bottom: 17px;
}

.site-footer h3 {
  margin-bottom: 17px;
  color: var(--white);
  font-size: 0.95rem;
}

.footer-links {
  display: grid;
  gap: 9px;
}

.footer-links a:hover {
  color: var(--gold-light);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 48px;
  padding-top: 21px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.83rem;
}

/* Mobile */

@media (max-width: 850px) {
  .menu-button {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 82px;
    left: 0;
    display: none;
    width: 100%;
    padding: 20px;
    border-top: 1px solid var(--border);
    flex-direction: column;
    align-items: stretch;
    background: var(--white);
  }

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

  .nav-links .button {
    text-align: center;
  }

  .hero,
  .page-hero {
    padding: 75px 0;
  }

  .hero-grid,
  .split,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }

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

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

@media (max-width: 580px) {
  .container {
    width: min(calc(100% - 30px), var(--max-width));
  }

  .section {
    padding: 62px 0;
  }

  .grid-3,
  .grid-2,
  .feature-list,
  .process-grid,
  .footer-grid,
  .form-row {
    grid-template-columns: 1fr;
  }

  .brand img {
    width: 155px;
  }

  .navbar {
    min-height: 70px;
  }

  .nav-links {
    top: 70px;
  }

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

  .hero-panel,
  .form-card {
    padding: 24px;
  }

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