:root {
  --ink: #20201e;
  --muted: #76716a;
  --paper: #f7f5ef;
  --warm: #ded6c5;
  --gold: #b69a54;
  --gold-dark: #8c743b;
  --charcoal: #171716;
  --line: #e6e0d2;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--warm);
  color: var(--ink);
  font-family: Inter, Arial, sans-serif;
  letter-spacing: 0;
}

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

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

.site-shell {
  width: min(1180px, calc(100% - 36px));
  margin: 64px auto;
  background: var(--paper);
  box-shadow: 0 24px 80px rgba(32, 28, 20, 0.16);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 34px 12%;
  background: rgba(247, 245, 239, 0.92);
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(230, 224, 210, 0.7);
  transition: box-shadow 180ms ease;
}

.nav.is-scrolled {
  box-shadow: 0 10px 28px rgba(31, 28, 22, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
}

.brand span {
  font-size: 26px;
  letter-spacing: 0;
}

.nav nav {
  display: flex;
  gap: 34px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
}

.nav nav a,
.footer-links a {
  transition: color 180ms ease, transform 180ms ease;
}

.nav nav a:hover,
.footer-links a:hover {
  color: var(--gold-dark);
  transform: translateY(-1px);
}

.nav-cta,
.button {
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease;
}

.nav-cta {
  background: var(--charcoal);
  color: var(--white);
  padding: 13px 22px;
  font-size: 13px;
}

.nav-cta:hover,
.button.primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 28px rgba(21, 20, 18, 0.18);
  background: #2a2926;
}

.hero {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  align-items: start;
  min-height: auto;
  padding: 76px 11.5% 108px;
  position: relative;
}

.hero-copy {
  position: relative;
  z-index: 2;
  display: grid;
  justify-items: center;
  align-content: center;
  min-height: 430px;
  max-width: 760px;
  margin: 0 auto;
  width: 100%;
  text-align: center;
}

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

.eyebrow {
  color: var(--gold-dark);
  margin: 0;
  max-width: 420px;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.45;
  justify-self: center;
  text-align: center;
}

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

h1 {
  font-size: clamp(44px, 4.8vw, 68px);
  line-height: 1.08;
  letter-spacing: 0;
  margin: 24px 0 0;
  max-width: 620px;
  text-align: center;
  justify-self: center;
}

h2 {
  font-size: clamp(30px, 3.4vw, 48px);
  line-height: 1.08;
  letter-spacing: 0;
  margin-bottom: 20px;
}

h3 {
  font-size: 21px;
  line-height: 1.2;
  margin-bottom: 12px;
}

p {
  color: var(--muted);
  line-height: 1.7;
}

.hero-lede {
  font-size: 15px;
  max-width: 560px;
  line-height: 1.65;
  margin-top: 24px;
  margin-bottom: 0;
  justify-self: center;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  justify-self: center;
  margin-top: 0;
  padding-top: 34px;
}

.hero-actions .button {
  min-width: 220px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 28px;
  white-space: nowrap;
}

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

.button.secondary {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line);
}

.button.secondary:hover {
  transform: translateY(-3px);
  border-color: var(--gold);
  color: var(--gold-dark);
  box-shadow: 0 12px 26px rgba(157, 130, 68, 0.15);
}

.hero-media {
  aspect-ratio: 16 / 7.6;
  overflow: hidden;
  contain: paint;
  box-shadow: none;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.86) contrast(1.02);
  transform: translateZ(0);
}

.dark-band {
  background:
    linear-gradient(rgba(23, 23, 22, 0.96), rgba(23, 23, 22, 0.96)),
    radial-gradient(circle at 20% 10%, rgba(182, 154, 84, 0.2), transparent 25%);
  color: var(--white);
}

.dark-band p {
  color: #b9b4aa;
}

.intro {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 54px;
  padding: 96px 12%;
}

.metric-grid {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.08);
  margin-top: 16px;
}

.metric-grid div {
  background: rgba(255, 255, 255, 0.05);
  padding: 28px;
  transition: background 180ms ease, transform 180ms ease;
}

.metric-grid div:hover {
  background: rgba(182, 154, 84, 0.16);
  transform: translateY(-4px);
}

.metric-grid strong {
  display: block;
  font-size: 24px;
  margin-bottom: 8px;
}

.metric-grid span {
  color: #b9b4aa;
  font-size: 13px;
  font-weight: 700;
}

.section {
  padding: 104px 12%;
}

.section-heading {
  max-width: 680px;
  margin-bottom: 44px;
}

.section-heading.center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.service-card {
  min-height: 270px;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(182, 154, 84, 0.7);
  box-shadow: 0 20px 36px rgba(35, 31, 24, 0.12);
}

.icon-box,
.round-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin-bottom: 28px;
  border-radius: 50%;
  background: #efe7d4;
  color: var(--gold-dark);
  border: 1px solid rgba(182, 154, 84, 0.28);
}

.icon-box svg,
.round-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  padding: 0 12% 112px;
}

.split-media {
  overflow: hidden;
}

.split-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 360ms ease;
}

.split-media:hover img {
  transform: scale(1.04);
}

.step {
  padding: 22px 0;
  border-top: 1px solid var(--line);
}

.step p {
  margin-bottom: 0;
}

.assurance {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 72px;
  padding: 96px 12%;
}

.assurance-list {
  display: grid;
  gap: 22px;
}

.assurance-list article {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 18px;
  align-items: start;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.assurance-list article:hover {
  transform: translateX(8px);
  border-color: rgba(182, 154, 84, 0.6);
  background: rgba(255, 255, 255, 0.04);
}

.round-icon {
  margin: 0;
  background: rgba(182, 154, 84, 0.18);
}

.gallery-section {
  padding: 104px 12% 118px;
}

.gallery {
  display: grid;
  grid-template-columns: minmax(360px, 0.92fr) minmax(320px, 0.8fr);
  gap: 28px;
  align-items: stretch;
}

.gallery img {
  width: 100%;
  height: 520px;
  object-fit: cover;
}

.gallery-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--charcoal);
  color: var(--white);
  border: 1px solid rgba(182, 154, 84, 0.32);
  padding: 64px;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.gallery-panel h3 {
  font-size: clamp(28px, 3vw, 42px);
  max-width: 420px;
}

.gallery-panel p {
  color: #c9c3b7;
  max-width: 460px;
}

.gallery-panel:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 34px rgba(35, 31, 24, 0.11);
}

.contact-section {
  display: flex;
  justify-content: flex-start;
  padding: 104px 12%;
  background:
    linear-gradient(90deg, rgba(247, 245, 239, 0.94), rgba(247, 245, 239, 0.72)),
    url("assets/warehouse-hero.jpg") center / cover;
}

.contact-copy {
  max-width: 700px;
  padding: 48px;
  background: rgba(23, 23, 22, 0.94);
  color: var(--white);
  border: 1px solid rgba(182, 154, 84, 0.36);
  box-shadow: 0 24px 60px rgba(23, 23, 22, 0.2);
}

.contact-copy p:not(.eyebrow) {
  color: #c9c3b7;
}

.contact-email {
  display: grid;
  gap: 10px;
  margin-top: 34px;
}

.contact-email > span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

.email-card {
  width: fit-content;
  max-width: 100%;
  padding: 18px 24px;
  border-radius: 8px;
  background: var(--gold);
  color: var(--white);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.22);
}

.email-link {
  display: inline-flex;
  width: fit-content;
  max-width: 100%;
  color: var(--white);
  font-size: 19px;
  font-weight: 900;
  word-break: break-word;
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.email-link:hover {
  transform: translateX(4px);
}

.footer {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 28px;
  align-items: center;
  padding: 48px 12%;
  background: var(--charcoal);
  color: var(--white);
}

.footer-links {
  justify-self: center;
  display: flex;
  gap: 30px;
  color: #c9c3b7;
  font-size: 13px;
  font-weight: 700;
}

.footer p {
  margin: 0;
  color: #8f897f;
  font-size: 12px;
}

@media (max-width: 980px) {
  .site-shell {
    width: min(100%, calc(100% - 20px));
    margin: 20px auto;
  }

  .nav {
    padding: 22px 6%;
  }

  .nav nav {
    display: none;
  }

  .hero,
  .intro,
  .split-section,
  .assurance,
  .gallery,
  .footer {
    grid-template-columns: 1fr;
  }

  .hero,
  .section,
  .intro,
  .assurance,
  .gallery-section,
  .contact-section {
    padding-left: 6%;
    padding-right: 6%;
  }

  .hero {
    min-height: auto;
    padding-top: 68px;
    padding-bottom: 86px;
    gap: 46px;
  }

  .hero-copy {
    gap: 18px;
  }

  .hero .eyebrow,
  .hero-lede {
    max-width: 620px;
    margin-top: 0;
  }

  .hero h1 {
    text-align: center;
  }

  .hero-actions {
    display: flex;
    justify-content: center;
    justify-self: center;
  }

  .hero-actions .button {
    width: auto;
    min-width: 220px;
  }

  h1 {
    font-size: clamp(52px, 12vw, 82px);
  }

  .split-section {
    padding-left: 6%;
    padding-right: 6%;
  }

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

  .footer-links {
    justify-self: start;
  }
}

@media (max-width: 620px) {
  .site-shell {
    width: 100%;
    margin: 0;
  }

  .nav-cta {
    display: none;
  }

  .hero {
    padding-top: 52px;
    gap: 36px;
  }

  .hero-actions {
    width: 100%;
  }

  .hero-actions .button {
    width: 100%;
    min-width: 0;
  }

  h1 {
    font-size: 46px;
  }

  .hero-media,
  .hero-media img {
    aspect-ratio: 1 / 0.72;
  }

  .email-card {
    width: 100%;
  }

  .email-link {
    font-size: 16px;
  }

  .service-grid,
  .metric-grid {
    grid-template-columns: 1fr;
  }

  .gallery img {
    height: 360px;
  }

  .gallery-panel {
    padding: 32px;
  }
}
