/* DP Sales — Bootstrap 5 theme
   Visual tokens, type and breakpoints matched to the ChatGPT site export.
   Custom `dp` breakpoint: 901px (design) instead of Bootstrap lg (992px). */

:root {
  --ink: #0c1615;
  --ink-2: #152523;
  --paper: #f3f2ea;
  --paper-2: #e9e8df;
  --acid: #d8ff45;
  --muted: #9ba7a4;
  --line: rgba(255, 255, 255, 0.16);

  --bs-body-font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  --bs-body-bg: var(--paper);
  --bs-body-color: var(--ink);
  --bs-link-color: inherit;
  --bs-link-hover-color: inherit;
  --bs-link-decoration: none;
  --bs-border-radius: 0;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
  margin-top: 0;
  margin-bottom: 0;
  font-weight: inherit;
  line-height: inherit;
}

p {
  margin-top: 0;
  margin-bottom: 0;
}

svg {
  vertical-align: unset;
}

i {
  font-style: normal;
}

.shell {
  width: min(100% - 48px, 1440px);
  max-width: 1440px;
  margin-inline: auto;
  padding-left: 0;
  padding-right: 0;
}

/* Inner Bootstrap rows stay inside .shell; never cancel shell centering */
.shell.row,
.row.shell {
  margin-left: auto;
  margin-right: auto;
}

/* Design breakpoint utilities (900px, not Bootstrap lg 992px) */
@media (min-width: 901px) {
  .d-dp-flex {
    display: flex !important;
  }

  .col-dp {
    flex: 1 0 0%;
    width: auto;
  }

  .col-dp-6 {
    flex: 0 0 auto;
    width: calc(50% - 40px);
  }

  .col-dp-4 {
    flex: 0 0 auto;
    width: calc((100% - 24px) / 3);
  }

  .col-dp-approach-copy {
    flex: 0 0 auto;
    width: calc(57.5% - 60px);
  }

  .col-dp-approach-list {
    flex: 0 0 auto;
    width: calc(42.5% - 60px);
  }

  .col-dp-company-title {
    flex: 0 0 auto;
    width: calc(55% - 50px);
  }

  .col-dp-company-copy {
    flex: 0 0 auto;
    width: calc(45% - 50px);
  }

  .col-stat {
    flex: 0 0 auto;
    width: 240px;
  }

  .col-foot-brand,
  .col-foot-details,
  .col-foot-meta {
    flex: 0 0 auto;
    width: calc((100% - 96px) / 3);
  }
}

/* ——— Hero ——— */
.hero {
  min-height: 880px;
  background: var(--ink);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .08;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,.45) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.45) 1px, transparent 1px);
  background-size: 120px 120px;
  mask-image: linear-gradient(to bottom, black, transparent 82%);
}

.nav {
  height: 96px;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  position: relative;
  z-index: 5;
  padding: 0;
  margin-bottom: 0;
  min-width: 0;
}

.brand {
  display: inline-flex;
  align-items: baseline;
  letter-spacing: -.04em;
  flex-shrink: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 50px;
  height: 40px;
  border: 1px solid rgba(255,255,255,.48);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -.08em;
}

.brand-word {
  font-size: 19px;
  font-weight: 700;
  margin-left: 10px;
  letter-spacing: .14em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 38px;
  font-size: 13px;
  color: #bdc6c3;
}

.nav-links a,
.nav-cta {
  transition: color .2s ease;
}

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

.nav-cta {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  gap: 12px;
  border-bottom: 1px solid #fff;
  padding-bottom: 7px;
  font-size: 13px;
}

.nav-cta:hover {
  color: var(--acid);
  border-color: var(--acid);
}

.nav-cta svg,
.division-topline svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
}

.hero-grid {
  min-height: 612px;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.36fr .64fr;
  grid-template-rows: auto 1fr;
  column-gap: 80px;
  padding-top: 66px;
}

.eyebrow {
  text-transform: uppercase;
  font-size: 11px;
  line-height: 1;
  letter-spacing: .19em;
  font-weight: 650;
}

.hero-eyebrow {
  color: #aeb9b6;
  gap: 12px;
  grid-column: 1 / -1;
}

.signal {
  width: 7px;
  height: 7px;
  background: var(--acid);
  box-shadow: 0 0 0 5px rgba(216,255,69,.12);
  flex-shrink: 0;
}

.hero-title-wrap {
  align-self: center;
  position: relative;
  z-index: 2;
}

.hero h1 {
  margin: 0;
  font-size: clamp(72px, 9.5vw, 150px);
  line-height: .79;
  letter-spacing: -.075em;
  font-weight: 520;
}

.hero h1 span {
  color: var(--acid);
}

.hero-copy {
  align-self: end;
  padding-bottom: 52px;
  max-width: 430px;
  position: relative;
  z-index: 3;
}

.hero-lead {
  font-size: clamp(28px, 3vw, 46px);
  line-height: 1;
  letter-spacing: -.045em;
  margin: 0 0 30px;
}

.hero-lead em {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}

.hero-description {
  color: #b9c4c1;
  font-size: 18px;
  line-height: 1.55;
  max-width: 390px;
  margin: 0 0 38px;
}

.text-link {
  gap: 16px;
  font-size: 12px;
  letter-spacing: .14em;
  font-weight: 700;
}

.text-link svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: var(--acid);
  stroke-width: 1.5;
}

.hero-orbit {
  position: absolute;
  width: 530px;
  height: 530px;
  right: -112px;
  top: 102px;
  opacity: .78;
}

.orbit {
  position: absolute;
  border: 1px solid rgba(216,255,69,.35);
  inset: 0;
}

.orbit-b {
  inset: 76px;
  border-color: rgba(255,255,255,.17);
}

.orbit-c {
  inset: 168px;
  border-color: rgba(216,255,69,.23);
}

.orbit-dot {
  position: absolute;
  width: 9px;
  height: 9px;
  background: var(--acid);
  box-shadow: 0 0 18px rgba(216,255,69,.7);
}

.dot-a { left: 62px; top: 78px; }
.dot-b { right: 18px; top: 310px; }
.dot-c { left: 247px; bottom: 82px; }

.orbit-label {
  position: absolute;
  color: #85918f;
  font-size: 9px;
  letter-spacing: .18em;
}

.label-a { left: 4px; top: 59px; }
.label-b { right: 5px; top: 287px; }
.label-c { left: 214px; bottom: 57px; }

.hero-footer {
  min-height: 170px;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 240px 240px 1fr;
  align-items: center;
  position: relative;
  z-index: 2;
}

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

.stat strong {
  font-size: 30px;
  font-weight: 450;
  letter-spacing: -.05em;
}

.stat span {
  font-size: 11px;
  color: #97a5a2;
  line-height: 1.4;
  max-width: 90px;
}

.market-line {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 18px;
  color: #bac4c2;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.market-line i {
  width: 60px;
  height: 1px;
  background: #596563;
  position: relative;
  display: block;
  flex-shrink: 0;
}

.market-line i::after {
  content: "";
  position: absolute;
  right: 0;
  top: -2px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--acid);
}

/* ——— Expertise ——— */
.section {
  padding-block: 128px;
}

.section-heading {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 74px;
}

.eyebrow.dark {
  color: #6c7573;
  margin: 0 0 24px;
}

.section-heading h2 {
  font-size: clamp(50px, 6vw, 88px);
  line-height: .93;
  letter-spacing: -.06em;
  font-weight: 520;
  margin: 0;
}

.section-intro {
  margin: 0 0 7px;
  max-width: 520px;
  font-size: 19px;
  line-height: 1.62;
  color: #57615f;
}

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

.division-card {
  min-height: 610px;
  padding: 28px;
  position: relative;
  overflow: hidden;
  transition: transform .3s ease, box-shadow .3s ease;
}

.division-card--fm { background: #d8ff45; }
.division-card--wine { background: #b9c9ff; }
.division-card--agro { background: #0f211e; color: #f7f8f2; }

.division-topline {
  font-size: 11px;
  letter-spacing: .12em;
}

.division-spacer {
  flex: 1;
  position: relative;
  min-height: 180px;
}

.division-spacer span {
  position: absolute;
  right: -18px;
  top: 5px;
  font-size: 220px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: -.11em;
  opacity: .06;
}

.division-strapline {
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  font-size: 20px;
  margin: 0 0 9px;
}

.division-card h3 {
  margin: 0 0 21px;
  font-size: clamp(38px, 4vw, 61px);
  line-height: .95;
  letter-spacing: -.06em;
  font-weight: 540;
}

.division-body {
  font-size: 15px;
  line-height: 1.57;
  opacity: .76;
  margin: 0 0 30px;
  max-width: 365px;
}

.tag-list {
  gap: 7px;
}

.tag-list span {
  border: 1px solid currentColor;
  padding: 8px 12px;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .1em;
  opacity: .75;
}

.division-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 22px 50px rgba(12,22,21,.13);
}

/* ——— Approach ——— */
.approach {
  background: #0c1615;
  color: #f5f5ef;
  padding-block: 128px;
  position: relative;
  overflow: hidden;
}

.approach::after {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(216,255,69,.28);
  border-radius: 50%;
  left: -290px;
  bottom: -340px;
  box-shadow: 0 0 0 90px rgba(216,255,69,.025), 0 0 0 180px rgba(216,255,69,.018);
}

.approach-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 120px;
  position: relative;
  z-index: 2;
}

.approach-statement .eyebrow,
.contact .eyebrow {
  color: var(--acid);
  margin: 0 0 34px;
}

.approach-statement h2 {
  margin: 0;
  font-size: clamp(50px, 5.8vw, 88px);
  line-height: .98;
  letter-spacing: -.06em;
  font-weight: 500;
  max-width: 830px;
}

.approach-statement h2 span {
  color: #7b8986;
}

.approach-statement > p:last-child {
  color: #a9b5b2;
  font-size: 18px;
  line-height: 1.65;
  max-width: 580px;
  margin: 48px 0 0;
}

.process-list {
  border-top: 1px solid rgba(255,255,255,.18);
}

.process-list article {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 18px;
  padding: 28px 0;
  border-bottom: 1px solid rgba(255,255,255,.18);
}

.process-list article > span {
  font-size: 10px;
  color: var(--acid);
  letter-spacing: .1em;
  margin-top: 9px;
}

.process-list h3 {
  margin: 0 0 9px;
  font-size: 29px;
  font-weight: 500;
  letter-spacing: -.035em;
}

.process-list p {
  color: #98a5a2;
  font-size: 14px;
  line-height: 1.5;
  margin: 0;
  max-width: 355px;
}

/* ——— Company ——— */
.company-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 100px;
  align-items: start;
  margin-bottom: 110px;
}

.company h2 {
  font-size: clamp(50px, 5.6vw, 82px);
  line-height: .96;
  letter-spacing: -.06em;
  font-weight: 520;
  margin: 0;
}

.company-copy {
  padding-top: 38px;
}

.company-copy > p {
  color: #58625f;
  font-size: 17px;
  line-height: 1.65;
  max-width: 530px;
}

.company-copy .company-lead {
  color: var(--ink);
  font-size: 26px;
  line-height: 1.28;
  letter-spacing: -.035em;
  margin: 0 0 27px;
}

.company-values {
  gap: 8px;
  margin-top: 35px;
}

.company-values span {
  border: 1px solid #b9bfba;
  padding: 10px 14px;
  text-transform: uppercase;
  font-size: 10px;
  letter-spacing: .1em;
}

.scope-band {
  background: #b9c9ff;
  padding: 52px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}

.scope-band .eyebrow {
  margin: 0 0 24px;
}

.scope-band h3 {
  font-size: clamp(35px, 3.6vw, 54px);
  line-height: 1;
  letter-spacing: -.05em;
  font-weight: 520;
  margin: 0;
}

.scope-band ul {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(12,22,21,.3);
}

.scope-band li {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 15px;
  border-bottom: 1px solid rgba(12,22,21,.3);
  padding: 17px 0;
  font-size: 14px;
}

.scope-band li span {
  font-size: 10px;
  padding-top: 3px;
  opacity: .62;
}

/* ——— Contact ——— */
.contact {
  background: var(--acid);
  padding-block: 105px;
}

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

.contact .eyebrow {
  color: #415005;
}

.contact h2 {
  margin: 0;
  font-size: clamp(50px, 6.5vw, 100px);
  line-height: .9;
  letter-spacing: -.065em;
  font-weight: 530;
}

.contact h2 span {
  color: #657a14;
}

.contact-button {
  width: 188px;
  height: 188px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 0;
  text-align: center;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -.03em;
  line-height: 1.2;
  box-shadow: 0 14px 36px rgba(12, 22, 21, .14);
  transition: transform .3s ease, background .3s ease, box-shadow .3s ease;
}

.contact-button-label {
  display: block;
}

.contact-button:hover {
  transform: rotate(-6deg) scale(1.04);
  background: #152523;
  color: #fff;
  box-shadow: 0 18px 42px rgba(12, 22, 21, .2);
}

.contact-button:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 6px;
}

.contact-button svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: var(--acid);
  stroke-width: 1.6;
  align-self: center;
}

/* ——— Footer ——— */
.footer {
  background: #07100f;
  color: #fff;
  padding-block: 54px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: end;
  gap: 48px;
}

.footer-brand .brand-mark {
  border-color: #62706d;
}

.footer-details {
  color: #8f9c99;
  font-size: 12px;
  line-height: 1.6;
}

.footer-details p {
  margin: 0;
}

.footer-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 20px;
  font-size: 11px;
  color: #aeb9b6;
}

.footer-meta span {
  width: 100%;
  text-align: right;
  color: #5e6b68;
}

.footer-meta a:hover {
  color: var(--acid);
}

@media (max-width: 900px) {
  .nav-links { display: none; }
  .hero { min-height: auto; }
  .hero-grid { grid-template-columns: 1fr; min-height: 650px; padding-top: 48px; }
  .hero-title-wrap { align-self: end; }
  .hero-copy { align-self: end; padding: 35px 0 50px; }
  .hero-orbit { width: 420px; height: 420px; right: -190px; top: 185px; }
  .hero-footer { grid-template-columns: 1fr 1fr; min-height: 135px; }
  .market-line { display: none !important; }
  .section-heading { grid-template-columns: 1fr; gap: 32px; }
  .division-grid { grid-template-columns: 1fr; }
  .division-card { min-height: 500px; }
  .approach-grid, .company-grid { grid-template-columns: 1fr; gap: 70px; }
  .scope-band { grid-template-columns: 1fr; gap: 50px; }
  .contact-inner { grid-template-columns: 1fr; }
  .contact-button { width: 160px; height: 160px; justify-self: end; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-meta { grid-column: 1 / -1; justify-content: flex-start; border-top: 1px solid rgba(255,255,255,.13); padding-top: 30px; }
  .footer-meta span { width: auto; text-align: left; margin-left: auto; }
}

@media (max-width: 560px) {
  .shell { width: min(100% - 32px, 1440px); }
  .nav { height: 78px; }
  .brand-mark { width: 44px; height: 35px; }
  .brand-word { font-size: 16px; }
  .nav-cta {
    position: relative;
    gap: 0;
    padding: 9px;
    border: 1px solid rgba(255,255,255,.45);
  }
  .nav-cta-label {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }
  .nav-cta svg { width: 17px; height: 17px; }
  .hero-grid { min-height: 625px; row-gap: 16px; }
  .hero h1 { font-size: clamp(64px, 20vw, 93px); }
  .hero-copy { max-width: 330px; }
  .hero-lead { font-size: 31px; }
  .hero-description { font-size: 16px; }
  .hero-footer { grid-template-columns: 1fr 1fr; gap: 14px; }
  .stat { grid-template-columns: 50px 1fr; gap: 8px; }
  .stat strong { font-size: 25px; }
  .stat span { font-size: 10px; }
  .section { padding-block: 88px; }
  .section-heading { margin-bottom: 48px; }
  .section-heading h2 { font-size: 52px; }
  .section-intro { font-size: 17px; }
  .division-card { min-height: 470px; padding: 24px; }
  .approach { padding-block: 88px; }
  .approach-grid { gap: 55px; }
  .approach-statement h2 { font-size: 50px; }
  .company-grid { margin-bottom: 75px; }
  .company-copy { padding-top: 0; }
  .scope-band { padding: 32px 24px; }
  .contact { padding-block: 82px; }
  .contact-inner { gap: 48px; }
  .contact h2 { font-size: 50px; }
  .contact-button { justify-self: start; width: 148px; height: 148px; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-meta { grid-column: auto; gap: 15px; }
  .footer-meta span { width: 100%; margin-left: 0; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .division-card, .contact-button { transition: none; }
}
