:root {
  --green: #009c4a;
  --green-dark: #073d2b;
  --green-deep: #062a20;
  --ink: #101716;
  --muted: #5f6b68;
  --line: #dbe4df;
  --surface: #f7faf8;
  --white: #ffffff;
  --gold: #c89438;
  --blue: #2f6f8f;
  --shadow: 0 18px 50px rgba(6, 42, 32, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Host Grotesk", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

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

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

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 16px clamp(20px, 4vw, 56px);
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(219, 228, 223, 0.75);
  backdrop-filter: blur(18px);
}

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

.nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 30px);
  color: #26332f;
  font-size: 0.92rem;
  font-weight: 650;
}

.nav a {
  white-space: nowrap;
}

.nav a:hover {
  color: var(--green);
}

.nav-cta {
  padding: 10px 16px;
  color: var(--white);
  background: var(--green-dark);
  border-radius: 6px;
}

.nav .nav-cta:hover {
  color: var(--white);
  background: var(--green);
}

.hero {
  position: relative;
  min-height: 86vh;
  display: grid;
  align-items: end;
  padding: 128px clamp(20px, 6vw, 80px) 76px;
  color: var(--white);
  overflow: hidden;
}

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

.hero-media {
  background-image: url("assets/duchis-logistics-hero.jpg");
  background-position: center;
  background-size: cover;
  transform: scale(1.01);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(5, 26, 20, 0.88) 0%, rgba(5, 26, 20, 0.6) 42%, rgba(5, 26, 20, 0.18) 100%),
    linear-gradient(0deg, rgba(5, 26, 20, 0.8) 0%, rgba(5, 26, 20, 0) 52%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

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

.hero .eyebrow,
.site-footer .eyebrow {
  color: #7ff0af;
}

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

h1 {
  margin-bottom: 18px;
  font-size: clamp(3.8rem, 9vw, 8rem);
  line-height: 0.9;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(2rem, 4vw, 4.3rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
  line-height: 1.2;
}

.hero-copy {
  max-width: 640px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.08rem, 2vw, 1.35rem);
}

.hero-actions,
.contact-strip {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 800;
  line-height: 1;
}

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

.button-primary:hover {
  background: #00ae55;
}

.button-secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.08);
}

.button-secondary:hover {
  background: rgba(255, 255, 255, 0.18);
}

.intro-band,
.sectors,
.portfolio,
.q1-report,
.contact-details {
  padding: clamp(72px, 10vw, 128px) clamp(20px, 6vw, 80px);
}

.intro-band {
  background: var(--surface);
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  gap: clamp(34px, 6vw, 86px);
  max-width: 1180px;
  margin: 0 auto;
  align-items: start;
}

.copy-stack {
  color: #35433e;
  font-size: 1.08rem;
}

.copy-stack p:last-child,
.split-copy p:last-child,
.portfolio-copy p:last-child,
.q1-report p:last-child,
.contact-hero p:last-child,
.detail-card p:last-child {
  margin-bottom: 0;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
  min-height: 640px;
}

.split-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.split-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(56px, 7vw, 92px);
  background: var(--green-deep);
  color: var(--white);
}

.split-copy p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.05rem;
}

.metric-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 34px 0 0;
}

.metric-list div {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
}

.metric-list dt {
  color: #7ff0af;
  font-size: 1.6rem;
  font-weight: 900;
  line-height: 1;
}

.metric-list dd {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.88rem;
}

.section-heading {
  max-width: 880px;
  margin: 0 auto 38px;
  text-align: center;
}

.sector-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  max-width: 1180px;
  margin: 0 auto;
}

.sector-card,
.detail-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.sector-card {
  min-height: 244px;
  padding: 26px;
}

.sector-mark {
  display: inline-grid;
  width: 48px;
  height: 48px;
  margin-bottom: 32px;
  place-items: center;
  color: var(--white);
  background: var(--green);
  border-radius: 6px;
  font-weight: 900;
}

.sector-card p {
  color: var(--muted);
}

.accent-gold .sector-mark {
  background: var(--gold);
}

.accent-blue .sector-mark {
  background: var(--blue);
}

.accent-ink .sector-mark {
  background: var(--ink);
}

.portfolio {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
  gap: clamp(32px, 6vw, 84px);
  align-items: center;
  background: #eef4f1;
}

.portfolio-copy,
.q1-report-copy,
.contact-hero-inner {
  max-width: 760px;
}

.portfolio-copy p,
.q1-report p,
.contact-hero p {
  color: #3e4b47;
  font-size: 1.08rem;
}

.portfolio-panels {
  display: grid;
  gap: 18px;
}

.portfolio-panels div {
  padding: 28px;
  border-left: 6px solid var(--green);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.portfolio-panels strong,
.portfolio-panels span {
  display: block;
}

.portfolio-panels strong {
  margin-bottom: 8px;
  font-size: 1.1rem;
}

.portfolio-panels span {
  color: var(--muted);
}

.q1-report {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.55fr);
  gap: clamp(32px, 6vw, 84px);
  align-items: center;
  background: var(--white);
}

.report-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

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

.button-outline:hover {
  color: var(--white);
  background: var(--green-dark);
}

.report-photo {
  margin: 0;
}

.report-photo,
.report-page-photo {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.report-photo img,
.report-page-photo img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
}

.report-photo figcaption,
.report-page-photo figcaption {
  padding: 14px 16px;
  color: #4d5a56;
  background: var(--white);
  border-top: 1px solid var(--line);
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.35;
}

.contact-strip {
  justify-content: space-between;
  padding: clamp(48px, 7vw, 76px) clamp(20px, 6vw, 80px);
  color: var(--white);
  background: var(--green-dark);
}

.contact-strip h2 {
  max-width: 760px;
  margin-bottom: 0;
  font-size: clamp(2rem, 4vw, 3.6rem);
}

.site-footer {
  padding: 42px clamp(20px, 6vw, 80px);
  color: rgba(255, 255, 255, 0.78);
  background: #071512;
}

.site-footer img {
  width: 156px;
  margin-bottom: 20px;
}

.site-footer p {
  max-width: 620px;
  margin-bottom: 8px;
}

.contact-hero {
  padding: 170px clamp(20px, 6vw, 80px) 92px;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(6, 42, 32, 0.9), rgba(6, 42, 32, 0.58)),
    url("assets/duchis-office.jpg") center / cover;
}

.report-hero {
  padding: 170px clamp(20px, 6vw, 80px) 92px;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(6, 42, 32, 0.92), rgba(6, 42, 32, 0.62)),
    url("assets/duchis-logistics-hero.jpg") center / cover;
}

.contact-hero h1 {
  max-width: 920px;
  font-size: clamp(3.2rem, 7vw, 6.6rem);
}

.report-hero h1 {
  max-width: 920px;
  font-size: clamp(3.2rem, 7vw, 6.6rem);
}

.contact-hero p,
.report-hero p {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.86);
}

.report-hero .button {
  margin-top: 14px;
}

.pdf-section {
  padding: clamp(42px, 7vw, 80px) clamp(20px, 6vw, 80px);
  background: var(--surface);
}

.pdf-viewer {
  display: block;
  width: 100%;
  min-height: 78vh;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.pdf-viewer p {
  padding: 28px;
}

.report-signoff {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.55fr);
  gap: clamp(32px, 6vw, 84px);
  align-items: center;
  padding: clamp(72px, 10vw, 128px) clamp(20px, 6vw, 80px);
  background: var(--white);
}

.report-signoff > div {
  max-width: 760px;
}

.report-signoff p {
  color: #3e4b47;
  font-size: 1.08rem;
}

.contact-details {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(0, 1.3fr);
  gap: 18px;
  background: var(--surface);
}

.detail-card {
  padding: 32px;
}

.detail-card span {
  display: block;
  margin-bottom: 18px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.detail-card a,
.detail-card p {
  color: var(--ink);
  font-size: clamp(1.25rem, 2.8vw, 2rem);
  font-weight: 800;
  line-height: 1.2;
}

.detail-card a:hover {
  color: var(--green);
}

@media (max-width: 980px) {
  .site-header {
    position: static;
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }

  .nav {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .hero {
    min-height: 78vh;
    padding-top: 80px;
  }

  .section-grid,
  .split-section,
  .portfolio,
  .q1-report,
  .report-signoff,
  .contact-details {
    grid-template-columns: 1fr;
  }

  .split-image {
    min-height: 420px;
  }

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

@media (max-width: 640px) {
  .brand img {
    width: 142px;
  }

  .nav {
    gap: 12px;
    font-size: 0.86rem;
  }

  .nav-cta {
    padding: 9px 13px;
  }

  .hero {
    min-height: 76vh;
    padding-bottom: 54px;
  }

  h1 {
    font-size: clamp(3.2rem, 17vw, 4.8rem);
  }

  h2 {
    font-size: 2.2rem;
  }

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

  .split-copy,
  .sector-card,
  .portfolio-panels div,
  .pdf-viewer p,
  .detail-card {
    padding: 24px;
  }

  .pdf-viewer {
    min-height: 62vh;
  }

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