:root {
  --ink: #0b1012;
  --ink-soft: #263136;
  --paper: #f3f6f5;
  --white: #ffffff;
  --teal: #0798a7;
  --teal-bright: #18b9c1;
  --teal-pale: #dff3f3;
  --coral: #ef4d55;
  --muted: #647176;
  --line: #d9e1e0;
  --radius-lg: 30px;
  --radius-md: 22px;
  --shadow: 0 24px 70px rgba(11, 16, 18, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html[data-lang="nl"] .lang-en,
html[data-lang="en"] .lang-nl {
  display: none !important;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.58;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  z-index: -1;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 5% 9%, rgba(7, 152, 167, 0.08), transparent 23rem),
    radial-gradient(circle at 94% 42%, rgba(7, 152, 167, 0.05), transparent 28rem);
}

::selection {
  color: var(--ink);
  background: var(--teal-bright);
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

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

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

h1,
h2,
h3 {
  font-family: "Manrope", system-ui, sans-serif;
  letter-spacing: -0.052em;
}

.shell {
  width: min(calc(100% - 48px), 1380px);
  margin-inline: auto;
}

.section {
  padding-block: clamp(84px, 9vw, 140px);
  scroll-margin-top: 96px;
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  border-bottom: 1px solid rgba(11, 16, 18, 0.08);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: grid;
  grid-template-columns: 230px 1fr auto;
  align-items: center;
  width: min(calc(100% - 48px), 1380px);
  min-height: 86px;
  margin-inline: auto;
}

.brand,
.footer-brand {
  display: block;
  width: fit-content;
}

.brand-crop {
  display: flex;
  align-items: center;
  width: 210px;
  height: 62px;
  overflow: hidden;
}

.brand-crop img {
  position: static;
  width: 100%;
  height: 100%;
  max-width: 100%;
  object-fit: contain;
  object-position: left center;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: clamp(24px, 3vw, 48px);
}

.main-nav a {
  position: relative;
  color: #364247;
  font-size: 0.92rem;
  font-weight: 650;
}

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

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

.header-actions {
  display: flex;
  align-items: center;
  gap: 22px;
}

.language-switch {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #8a9497;
  font-size: 0.8rem;
  font-weight: 800;
}

.language-switch button {
  padding: 6px 2px;
  color: #8a9497;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.language-switch button[aria-pressed="true"] {
  color: var(--teal);
}

.header-contact {
  padding: 12px 21px;
  color: var(--white);
  background: var(--ink);
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 750;
  transition: color 180ms ease, background 180ms ease;
}

.header-contact:hover {
  color: var(--ink);
  background: var(--teal-bright);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(520px, 1.06fr);
  min-height: 676px;
  margin-top: 30px;
  margin-bottom: 32px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(11, 16, 18, 0.07);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(48px, 5.3vw, 84px);
}

.eyebrow {
  margin-bottom: 20px;
  color: var(--teal);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.17em;
  line-height: 1.35;
}

.experience-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
}

.experience-eyebrow::before {
  content: "";
  flex: 0 0 34px;
  height: 2px;
  background: var(--teal);
}

.hero h1 {
  max-width: 710px;
  margin-bottom: 27px;
  font-size: clamp(3.6rem, 5.45vw, 6.25rem);
  line-height: 0.98;
}

.hero-lead {
  max-width: 650px;
  margin-bottom: 0;
  color: #4d5a5f;
  font-size: clamp(1.04rem, 1.25vw, 1.2rem);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 54px;
  padding: 0 21px;
  border-radius: 10px;
  font-size: 0.92rem;
  font-weight: 750;
}

.button-dark {
  color: var(--white);
  background: var(--ink);
  transition: color 180ms ease, background 180ms ease;
}

.button-dark:hover {
  color: var(--ink);
  background: var(--teal-bright);
}

.button-link {
  padding-block: 9px;
  border-bottom: 1px solid var(--ink);
  font-size: 0.92rem;
  font-weight: 750;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 11px 22px;
  margin-top: 47px;
  color: var(--muted);
  font-size: 0.77rem;
  font-weight: 700;
  letter-spacing: 0.035em;
  text-transform: uppercase;
}

.hero-points > span {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-points i {
  width: 6px;
  height: 6px;
  background: var(--teal);
  border-radius: 50%;
}

.hero-media {
  position: relative;
  min-height: 676px;
  margin: 0;
  overflow: hidden;
  background: #afbec1;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 52%, rgba(2, 10, 12, 0.78));
  pointer-events: none;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 51% center;
}

.hero-media figcaption {
  position: absolute;
  z-index: 2;
  right: 30px;
  bottom: 27px;
  left: 30px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 22px;
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.78rem;
  font-weight: 650;
  letter-spacing: 0.045em;
}

.hero-caption-label {
  color: var(--white);
  font-weight: 800;
  letter-spacing: 0.12em;
}

.intro-strip {
  color: var(--white);
  background: var(--ink);
}

.intro-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 112px;
}

.intro-strip p {
  max-width: 920px;
  margin: 0;
  font-family: "Manrope", system-ui, sans-serif;
  font-size: clamp(1.15rem, 2vw, 1.75rem);
  font-weight: 650;
  letter-spacing: -0.035em;
}

.intro-strip-inner > span {
  color: var(--teal-bright);
  font-size: 3rem;
  line-height: 1;
}

.section-heading {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: clamp(40px, 7vw, 110px);
  align-items: end;
  margin-bottom: clamp(48px, 6vw, 82px);
}

.section-heading .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -8px;
}

.section-heading h2,
.brand-world h2,
.retail-solutions h2,
.source-chain h2,
.distribution h2,
.fulfilment h2,
.about h2,
.contact h2 {
  margin-bottom: 0;
  font-size: clamp(2.65rem, 4.8vw, 5.25rem);
  line-height: 1.03;
}

.section-intro {
  max-width: 570px;
  margin: 0 0 7px;
  color: #526065;
  font-size: 1.08rem;
}

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

.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 398px;
  padding: clamp(28px, 3vw, 42px);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.service-card:hover {
  border-color: rgba(7, 152, 167, 0.45);
  box-shadow: 0 22px 50px rgba(11, 16, 18, 0.08);
  transform: translateY(-4px);
}

.service-card::after {
  content: "";
  position: absolute;
  right: -52px;
  bottom: -52px;
  width: 142px;
  height: 142px;
  border: 26px solid var(--teal-pale);
  border-radius: 50%;
}

.service-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #899396;
  font-size: 0.78rem;
  font-weight: 800;
}

.service-top :is(i, a) {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: var(--ink);
  background: var(--teal-pale);
  border-radius: 50%;
  font-style: normal;
  font-size: 1rem;
}

.service-type {
  margin: auto 0 11px;
  color: var(--teal);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.135em;
}

.service-card h3 {
  position: relative;
  z-index: 2;
  margin-bottom: 17px;
  font-size: clamp(1.55rem, 2.1vw, 2.15rem);
  line-height: 1.08;
}

.service-card > p:last-child,
.service-card > p:nth-last-child(2) {
  position: relative;
  z-index: 2;
  max-width: 490px;
  margin-bottom: 0;
  color: #59666a;
}

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

.featured-card .service-top,
.featured-card .service-type,
.featured-card > p:last-child,
.featured-card > p:nth-last-child(2) {
  color: rgba(255, 255, 255, 0.82);
}

.featured-card .service-top :is(i, a) {
  background: var(--white);
}

.featured-card::after {
  border-color: rgba(255, 255, 255, 0.14);
}

.dark-card {
  color: var(--white);
  background: var(--ink);
  border-color: var(--ink);
}

.dark-card .service-top,
.dark-card > p:last-child,
.dark-card > p:nth-last-child(2) {
  color: #b7c0c2;
}

.dark-card .service-top :is(i, a) {
  color: var(--ink);
  background: var(--teal-bright);
}

.dark-card::after {
  border-color: rgba(24, 185, 193, 0.13);
}

.wide-card {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1.7fr;
  align-items: end;
  min-height: 310px;
}

.wide-card .service-top {
  position: absolute;
  top: clamp(28px, 3vw, 42px);
  right: clamp(28px, 3vw, 42px);
  left: clamp(28px, 3vw, 42px);
}

.wide-card .service-type,
.wide-card h3 {
  grid-column: 1;
}

.wide-card .service-type {
  margin-top: auto;
}

.wide-card > p:last-child,
.wide-card > p:nth-last-child(2) {
  grid-column: 2;
  grid-row: 2 / span 2;
  align-self: end;
  max-width: 650px;
  margin-left: clamp(30px, 6vw, 100px);
  font-size: 1.06rem;
}

.brand-world {
  background: var(--white);
}

.brand-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(360px, 0.85fr);
  gap: clamp(50px, 8vw, 125px);
  align-items: end;
  margin-bottom: clamp(46px, 6vw, 78px);
}

.brand-heading h2 {
  margin-bottom: 0;
}

.brand-intro {
  max-width: 610px;
  padding-bottom: 8px;
}

.brand-intro p {
  margin: 0;
  color: #526065;
  font-size: 1.08rem;
}

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

.consumer-brand {
  overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}

.consumer-brand-visual {
  height: clamp(330px, 30vw, 450px);
  padding: clamp(18px, 2.2vw, 32px);
  overflow: hidden;
  background: var(--white);
}

.consumer-brand-visual img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.consumer-brand-copy {
  padding: clamp(30px, 3.5vw, 48px);
}

.brand-number {
  margin-bottom: 19px;
  color: var(--teal);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.14em;
}

.candy-brand .brand-number {
  color: var(--coral);
}

.consumer-brand h3 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 3vw, 3.35rem);
  line-height: 1;
}

.consumer-brand-copy > p:not(.brand-number) {
  margin-bottom: 0;
  color: #566469;
}

.brand-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}

.brand-tags span {
  padding: 8px 12px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 750;
}

.retail-solutions {
  padding-top: 24px;
  background: var(--white);
}

.retail-solutions-inner {
  display: grid;
  grid-template-columns: minmax(400px, 0.92fr) minmax(0, 1.08fr);
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.retail-stand-media {
  position: relative;
  min-height: 760px;
  margin: 0;
  overflow: hidden;
  background: #263136;
}

.retail-stand-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 66%, rgba(5, 10, 12, 0.68));
  pointer-events: none;
}

.retail-stand-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.retail-stand-media figcaption {
  position: absolute;
  z-index: 2;
  right: 25px;
  bottom: 22px;
  left: 25px;
  margin: 0;
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.15em;
}

.retail-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(50px, 6vw, 92px);
}

.retail-copy > p:not(.eyebrow) {
  max-width: 660px;
  margin: 28px 0 0;
  color: #b5c0c2;
  font-size: 1.06rem;
}

.retail-services {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 22px;
  padding: 0;
  margin: 42px 0 0;
  list-style: none;
  border-top: 1px solid #394346;
}

.retail-services li {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 11px;
  align-items: center;
  min-height: 74px;
  border-bottom: 1px solid #394346;
}

.retail-services li > span {
  color: var(--teal-bright);
  font-size: 0.7rem;
  font-weight: 850;
}

.retail-services strong {
  font-family: "Manrope", system-ui, sans-serif;
  font-size: 0.92rem;
  letter-spacing: -0.025em;
}

.source-chain {
  color: var(--white);
  background: var(--ink);
}

.source-chain-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(430px, 0.98fr);
  gap: clamp(56px, 8vw, 130px);
  align-items: center;
}

.source-copy > p:not(.eyebrow) {
  max-width: 620px;
  margin: 30px 0 0;
  color: #aeb9bb;
  font-size: 1.08rem;
}

.market-tags,
.region-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 9px;
  margin-top: 38px;
}

.market-tags span,
.region-list span {
  padding: 9px 14px;
  border: 1px solid rgba(255, 255, 255, 0.19);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 750;
}

.market-tags i {
  margin-inline: 4px;
  color: var(--teal-bright);
  font-style: normal;
}

.chain-steps {
  padding: 0;
  margin: 0;
  list-style: none;
  border-top: 1px solid #354044;
}

.chain-steps li {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 19px;
  align-items: start;
  padding: 25px 0;
  border-bottom: 1px solid #354044;
}

.chain-steps li > span {
  display: grid;
  place-items: center;
  width: 45px;
  height: 45px;
  color: var(--ink);
  background: var(--teal-bright);
  border-radius: 50%;
  font-size: 0.77rem;
  font-weight: 850;
}

.chain-steps strong {
  display: block;
  font-family: "Manrope", system-ui, sans-serif;
  font-size: 1.15rem;
  letter-spacing: -0.025em;
}

.chain-steps p {
  margin: 4px 0 0;
  color: #9dabad;
  font-size: 0.91rem;
}

.distribution {
  display: grid;
  grid-template-columns: minmax(0, 1.22fr) minmax(380px, 0.78fr);
  gap: clamp(48px, 7vw, 100px);
  align-items: center;
}

.distribution-media {
  position: relative;
  min-height: 590px;
  margin: 0;
  overflow: hidden;
  background: #cdd8d9;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.distribution-media::after {
  content: "03 VEHICLES · EUROPEAN DISTRIBUTION";
  position: absolute;
  right: 22px;
  bottom: 20px;
  padding: 8px 12px;
  color: var(--white);
  background: rgba(11, 16, 18, 0.76);
  border-radius: 999px;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  backdrop-filter: blur(8px);
}

.distribution-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.distribution-copy > p:not(.eyebrow) {
  margin: 28px 0 0;
  color: #566469;
  font-size: 1.06rem;
}

.region-list span {
  color: var(--ink);
  border-color: var(--line);
  background: var(--white);
}

.fulfilment {
  padding-block: 0;
}

.fulfilment-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(430px, 0.95fr);
  gap: clamp(54px, 8vw, 130px);
  padding: clamp(68px, 8vw, 120px);
  color: var(--ink);
  background: var(--teal-bright);
  border-radius: var(--radius-lg);
}

.fulfilment .eyebrow {
  color: var(--ink);
}

.fulfilment-copy > p:not(.eyebrow) {
  max-width: 620px;
  margin: 29px 0 0;
  color: rgba(11, 16, 18, 0.72);
  font-size: 1.07rem;
}

.fulfilment-list {
  border-top: 1px solid rgba(11, 16, 18, 0.25);
}

.fulfilment-list > div {
  display: grid;
  grid-template-columns: 46px minmax(100px, 0.7fr) 1.3fr;
  gap: 14px;
  align-items: center;
  min-height: 82px;
  border-bottom: 1px solid rgba(11, 16, 18, 0.25);
}

.fulfilment-list > div > span {
  font-size: 0.74rem;
  font-weight: 850;
}

.fulfilment-list strong {
  font-family: "Manrope", system-ui, sans-serif;
  font-size: 1.02rem;
  letter-spacing: -0.02em;
}

.fulfilment-list small {
  color: rgba(11, 16, 18, 0.7);
  font-size: 0.82rem;
  line-height: 1.4;
}

.about {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(55px, 10vw, 160px);
  align-items: center;
}

.experience-mark {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 420px;
  padding: clamp(34px, 5vw, 72px);
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
  border-radius: var(--radius-lg);
}

.experience-mark::after {
  content: "∞";
  position: absolute;
  right: -26px;
  bottom: -85px;
  color: rgba(24, 185, 193, 0.17);
  font-family: "Manrope", system-ui, sans-serif;
  font-size: 16rem;
  font-weight: 800;
  line-height: 1;
}

.experience-mark strong {
  position: relative;
  z-index: 2;
  font-family: "Manrope", system-ui, sans-serif;
  font-size: clamp(4.6rem, 8vw, 8rem);
  letter-spacing: -0.085em;
  line-height: 0.92;
}

.experience-mark > span {
  position: relative;
  z-index: 2;
  margin: 20px 0 13px;
  color: var(--teal-bright);
  font-size: 2rem;
}

.experience-mark small {
  position: relative;
  z-index: 2;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.about-copy {
  max-width: 820px;
}

.about-text {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
  margin-top: 35px;
}

.about-text p {
  margin-bottom: 0;
  color: #526065;
}

.founder-line {
  margin: 38px 0 0;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  font-weight: 800;
}

.founder-line span {
  color: var(--muted);
  font-weight: 500;
}

.contact {
  color: var(--white);
  background: var(--ink);
}

.contact-inner {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(54px, 9vw, 150px);
}

.contact-details > p {
  max-width: 620px;
  margin-bottom: 30px;
  color: #aeb8ba;
  font-size: 1.05rem;
}

.contact-details > a {
  display: grid;
  grid-template-columns: 100px 1fr auto;
  gap: 20px;
  align-items: center;
  min-height: 88px;
  border-top: 1px solid #394346;
  transition: color 180ms ease;
}

.contact-details > a:nth-of-type(2) {
  border-bottom: 1px solid #394346;
}

.contact-details > a:hover {
  color: var(--teal-bright);
}

.contact-details small {
  color: #8e9b9e;
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.13em;
}

.contact-details strong {
  font-family: "Manrope", system-ui, sans-serif;
  font-size: clamp(1.35rem, 2.4vw, 2.3rem);
  letter-spacing: -0.035em;
}

.contact-details > a > span:last-child {
  color: var(--teal-bright);
  font-size: 1.5rem;
}

.social-heading {
  margin-top: 34px;
  color: #8e9b9e;
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.15em;
}

.social-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 14px;
}

.social-links a {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  min-height: 78px;
  padding: 13px;
  color: var(--white);
  background: #161d20;
  border: 1px solid #354044;
  border-radius: 14px;
  transition: color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.social-links a:hover {
  color: var(--teal-bright);
  border-color: var(--teal);
  transform: translateY(-2px);
}

.social-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--ink);
  background: var(--teal-bright);
  border-radius: 50%;
}

.social-icon svg {
  width: 21px;
  height: 21px;
  overflow: visible;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.social-icon svg .social-dot,
.social-links a:last-child .social-icon path {
  fill: currentColor;
  stroke: none;
}

.social-links small,
.social-links strong {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
}

.social-links small {
  color: #8e9b9e;
  font-size: 0.64rem;
  letter-spacing: 0.08em;
}

.social-links strong {
  margin-top: 3px;
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0;
  white-space: nowrap;
}

.social-links i {
  color: var(--teal-bright);
  font-style: normal;
}

.site-footer {
  padding-block: 32px;
  background: var(--white);
}

.footer-inner {
  display: grid;
  grid-template-columns: 230px 1fr auto auto;
  gap: 30px;
  align-items: center;
  color: #6f7b7e;
  font-size: 0.78rem;
}

.footer-inner p {
  margin: 0;
}

.footer-inner p:last-child {
  text-align: right;
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  color: var(--ink-soft);
  font-weight: 750;
}

.footer-social a {
  border-bottom: 1px solid transparent;
  transition: color 180ms ease, border-color 180ms ease;
}

.footer-social a:hover {
  color: var(--teal);
  border-color: var(--teal);
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--teal-bright);
  outline-offset: 4px;
}

/* 2026 refinement — a quieter, sharper BAMOO system */
:root {
  --paper: #f5f7f7;
  --line: #dfe6e5;
  --radius-lg: 36px;
  --radius-md: 26px;
  --shadow: 0 30px 90px rgba(8, 15, 18, 0.09);
}

.site-header {
  border-bottom-color: rgba(11, 16, 18, 0.06);
  background: rgba(250, 252, 252, 0.88);
  box-shadow: 0 8px 35px rgba(11, 16, 18, 0.035);
}

.header-inner {
  min-height: 80px;
}

.main-nav a,
.header-contact,
.button,
.button-link {
  transition: color 220ms ease, background 220ms ease, border-color 220ms ease, transform 220ms ease;
}

.header-contact:hover,
.button-dark:hover {
  transform: translateY(-2px);
}

.menu-toggle {
  display: none;
  align-items: center;
  gap: 9px;
  padding: 9px 13px;
  color: var(--ink);
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.menu-lines {
  display: grid;
  gap: 4px;
  width: 16px;
}

.menu-lines i {
  display: block;
  width: 100%;
  height: 1.5px;
  background: currentColor;
  transition: transform 180ms ease;
}

.menu-toggle[aria-expanded="true"] .menu-lines i:first-child { transform: translateY(2.75px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] .menu-lines i:last-child { transform: translateY(-2.75px) rotate(-45deg); }

.hero {
  position: relative;
  min-height: 710px;
  border-color: rgba(11, 16, 18, 0.055);
  box-shadow: 0 35px 110px rgba(7, 31, 35, 0.11);
}

.hero-copy {
  position: relative;
  isolation: isolate;
}

.hero-copy::after {
  content: "∞";
  position: absolute;
  z-index: -1;
  top: 22px;
  right: -52px;
  color: rgba(7, 152, 167, 0.065);
  font-family: "Manrope", system-ui, sans-serif;
  font-size: clamp(11rem, 19vw, 20rem);
  font-weight: 800;
  letter-spacing: -0.15em;
  line-height: 0.8;
  transform: rotate(-7deg);
  pointer-events: none;
}

.hero-media img,
.retail-stand-media img,
.distribution-media img {
  transition: transform 900ms cubic-bezier(.2,.75,.25,1);
}

.hero:hover .hero-media img,
.retail-solutions-inner:hover .retail-stand-media img,
.distribution:hover .distribution-media img {
  transform: scale(1.025);
}

.intro-strip-inner > span {
  font-weight: 800;
  text-shadow: 0 0 38px rgba(24, 185, 193, 0.35);
}

.services {
  position: relative;
}

.services::before {
  content: "∞";
  position: absolute;
  z-index: -1;
  top: 1.5rem;
  right: 2vw;
  color: rgba(7, 152, 167, 0.055);
  font-family: "Manrope", system-ui, sans-serif;
  font-size: clamp(10rem, 19vw, 20rem);
  font-weight: 800;
  line-height: 1;
}

.service-card {
  border-color: rgba(11, 16, 18, 0.075);
  box-shadow: 0 9px 30px rgba(11, 16, 18, 0.025);
  transition: border-color 260ms ease, transform 260ms ease, box-shadow 260ms ease;
}

.service-card:hover {
  box-shadow: 0 28px 65px rgba(11, 16, 18, 0.1);
  transform: translateY(-7px);
}

.service-top a {
  position: relative;
  z-index: 3;
}

.service-card:hover .service-top a {
  transform: rotate(45deg);
}

.consumer-brand,
.retail-solutions-inner,
.distribution-media,
.fulfilment-inner,
.experience-mark {
  box-shadow: 0 28px 80px rgba(11, 16, 18, 0.07);
}

.reveal-item {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms ease var(--reveal-delay, 0ms), transform 700ms cubic-bezier(.2,.75,.25,1) var(--reveal-delay, 0ms);
}

.reveal-item.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Dedicated service detail page */
.service-page-hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.service-page-hero::after {
  content: "∞";
  position: absolute;
  right: -5vw;
  bottom: -9rem;
  color: rgba(24, 185, 193, 0.14);
  font-family: "Manrope", system-ui, sans-serif;
  font-size: clamp(21rem, 45vw, 42rem);
  font-weight: 800;
  line-height: 0.72;
  transform: rotate(-8deg);
  pointer-events: none;
}

.service-page-hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, .75fr);
  gap: clamp(50px, 8vw, 130px);
  align-items: end;
  min-height: 670px;
  padding-block: clamp(90px, 10vw, 150px);
}

.service-page-hero h1 {
  max-width: 920px;
  margin: 0;
  font-size: clamp(3.5rem, 6.6vw, 7.4rem);
  line-height: .95;
}

.service-page-hero-inner > p {
  max-width: 500px;
  margin: 0 0 9px;
  color: #b8c3c5;
  font-size: 1.08rem;
}

.back-link {
  display: inline-flex;
  gap: 10px;
  margin-bottom: 55px;
  color: #b8c3c5;
  font-size: .82rem;
  font-weight: 750;
}

.back-link:hover { color: var(--teal-bright); }

.service-ticker {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 28px;
  width: max-content;
  min-width: 100%;
  padding: 22px 3vw;
  color: var(--ink);
  background: var(--teal-bright);
  font-size: .78rem;
  font-weight: 850;
  letter-spacing: .13em;
  white-space: nowrap;
}

.service-ticker i { font-style: normal; }

.service-index {
  position: sticky;
  z-index: 20;
  top: 96px;
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 6px;
  margin-top: 28px;
  padding: 8px;
  overflow-x: auto;
  background: rgba(255, 255, 255, .9);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 18px 60px rgba(11, 16, 18, .08);
  backdrop-filter: blur(18px);
}

.service-index a {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
  min-width: 126px;
  min-height: 45px;
  padding: 8px 12px;
  border-radius: 11px;
  color: #738084;
  font-size: .68rem;
  font-weight: 850;
}

.service-index a:hover { color: var(--white); background: var(--ink); }
.service-index a span { color: var(--ink); font-size: .73rem; }
.service-index a:hover span { color: inherit; }

.service-details { padding-block: clamp(65px, 8vw, 120px); }

.service-detail {
  display: grid;
  grid-template-columns: 90px minmax(280px, .78fr) minmax(360px, 1.22fr);
  gap: clamp(32px, 5vw, 82px);
  align-items: start;
  margin-bottom: 18px;
  padding: clamp(38px, 5vw, 72px);
  scroll-margin-top: 180px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}

.detail-number {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  color: var(--ink);
  background: var(--teal-pale);
  border-radius: 50%;
  font-size: .76rem;
  font-weight: 850;
}

.detail-title .eyebrow { margin-bottom: 13px; }
.detail-title h2 { margin: 0; font-size: clamp(2rem, 3.2vw, 3.6rem); line-height: 1; }
.detail-copy > p { margin-bottom: 27px; color: #556367; font-size: 1.05rem; }
.detail-copy ul { padding: 0; margin: 0; list-style: none; border-top: 1px solid var(--line); }
.detail-copy li { position: relative; padding: 15px 0 15px 28px; border-bottom: 1px solid var(--line); font-weight: 700; }
.detail-copy li::before { content: "∞"; position: absolute; left: 0; color: var(--teal); font-weight: 900; }

.service-detail-dark { color: var(--white); background: var(--ink); border-color: var(--ink); }
.service-detail-dark .detail-number { background: var(--teal-bright); }
.service-detail-dark .detail-copy > p { color: #b7c1c3; }
.service-detail-dark .detail-copy ul, .service-detail-dark .detail-copy li { border-color: #354044; }
.service-detail-accent { background: var(--teal-bright); border-color: var(--teal-bright); }
.service-detail-accent .eyebrow, .service-detail-accent .detail-copy li::before { color: var(--ink); }
.service-detail-accent .detail-number { background: var(--white); }
.service-detail-accent .detail-copy > p { color: rgba(11, 16, 18, .72); }
.service-detail-accent .detail-copy ul, .service-detail-accent .detail-copy li { border-color: rgba(11, 16, 18, .22); }

.service-cta { padding-block: clamp(80px, 10vw, 140px); color: var(--white); background: var(--ink); }
.service-cta-inner { display: flex; align-items: flex-end; justify-content: space-between; gap: 50px; }
.service-cta h2 { margin: 0; font-size: clamp(2.8rem, 5.5vw, 6rem); line-height: .98; }
.button-light { min-width: 210px; color: var(--ink); background: var(--teal-bright); }
.button-light:hover { background: var(--white); transform: translateY(-2px); }

@media (max-width: 1120px) {
  .header-inner {
    grid-template-columns: 220px 1fr;
  }

  .main-nav {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    right: 24px;
    left: 24px;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    padding: 12px;
    background: rgba(255, 255, 255, .97);
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: 0 24px 70px rgba(11, 16, 18, .14);
    backdrop-filter: blur(18px);
  }

  .main-nav.is-open { display: flex; }
  .main-nav a { padding: 13px 15px; border-radius: 10px; }
  .main-nav a:hover { color: var(--teal); background: var(--paper); }
  .main-nav a::after { display: none; }
  .menu-toggle { display: inline-flex; }

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

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

  .hero-copy {
    min-height: 610px;
  }

  .hero-media {
    min-height: 570px;
  }

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

  .wide-card {
    grid-column: 1 / -1;
  }

  .brand-heading {
    grid-template-columns: 1fr 0.8fr;
    gap: 50px;
  }

  .retail-solutions-inner {
    grid-template-columns: minmax(360px, 0.9fr) 1.1fr;
  }

  .retail-stand-media {
    min-height: 700px;
  }

  .source-chain-inner,
  .fulfilment-inner {
    grid-template-columns: 1fr 1fr;
    gap: 50px;
  }

  .distribution {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 48px;
  }

  .service-page-hero-inner { grid-template-columns: 1fr .7fr; }
  .service-detail { grid-template-columns: 70px minmax(230px, .75fr) minmax(320px, 1.25fr); gap: 32px; }
}

@media (max-width: 860px) {
  .section-heading,
  .brand-heading,
  .retail-solutions-inner,
  .source-chain-inner,
  .distribution,
  .fulfilment-inner,
  .about,
  .contact-inner {
    grid-template-columns: 1fr;
  }

  .service-page-hero-inner,
  .service-detail {
    grid-template-columns: 1fr;
  }

  .service-page-hero-inner { min-height: 620px; }
  .service-page-hero-inner > p { max-width: 650px; }
  .service-detail { gap: 23px; }
  .detail-number { width: 48px; height: 48px; }
  .service-cta-inner { align-items: flex-start; flex-direction: column; }

  .section-heading {
    gap: 23px;
  }

  .section-heading .eyebrow {
    margin-bottom: 0;
  }

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

  .service-card {
    min-height: 350px;
  }

  .wide-card {
    display: flex;
    min-height: 350px;
  }

  .wide-card .service-top {
    position: static;
  }

  .wide-card .service-type {
    margin-top: auto;
  }

  .wide-card > p:last-child,
  .wide-card > p:nth-last-child(2) {
    margin-left: 0;
  }

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

  .consumer-brand {
    display: grid;
    grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.15fr);
  }

  .consumer-brand-visual {
    height: auto;
    min-height: 420px;
  }

  .consumer-brand-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .retail-stand-media {
    min-height: 620px;
  }

  .distribution-media {
    min-height: 500px;
  }

  .distribution-copy {
    max-width: 650px;
  }

  .fulfilment-inner {
    padding: clamp(45px, 8vw, 78px);
  }

  .experience-mark {
    min-height: 330px;
  }

  .about-text {
    max-width: 750px;
  }

  .contact-details {
    max-width: 780px;
  }

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

  .footer-social {
    grid-column: 2;
  }

  .footer-inner p:last-child {
    grid-column: 2;
    text-align: left;
  }
}

@media (max-width: 620px) {
  .shell,
  .header-inner {
    width: min(calc(100% - 28px), 1380px);
  }

  .section {
    padding-block: 76px;
  }

  .header-inner {
    grid-template-columns: 1fr auto;
    min-height: 74px;
  }

  .brand-crop {
    width: 163px;
    height: 50px;
  }

  .brand-crop img {
    position: static;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: left center;
  }

  .header-actions {
    gap: 10px;
  }

  .header-contact {
    display: none;
  }

  .menu-toggle { padding: 8px 10px; }
  .menu-toggle > span:last-child { display: none; }
  .main-nav { right: 14px; left: 14px; }

  .hero {
    min-height: 0;
    margin-top: 14px;
    margin-bottom: 14px;
    border-radius: 22px;
  }

  .hero-copy {
    min-height: 0;
    padding: 49px 24px 43px;
  }

  .hero-copy::after { top: 16px; right: -86px; font-size: 12rem; }

  .experience-eyebrow {
    align-items: flex-start;
  }

  .experience-eyebrow::before {
    flex-basis: 22px;
    margin-top: 7px;
  }

  .hero h1 {
    font-size: clamp(3rem, 14vw, 4.25rem);
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }

  .hero-points {
    display: grid;
    margin-top: 38px;
  }

  .hero-media {
    min-height: 410px;
  }

  .hero-media figcaption {
    right: 20px;
    bottom: 18px;
    left: 20px;
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
  }

  .intro-strip-inner {
    min-height: 120px;
  }

  .intro-strip-inner > span {
    margin-left: 18px;
    font-size: 2.4rem;
  }

  .section-heading h2,
  .brand-world h2,
  .retail-solutions h2,
  .source-chain h2,
  .distribution h2,
  .fulfilment h2,
  .about h2,
  .contact h2 {
    font-size: clamp(2.35rem, 11.5vw, 3.6rem);
  }

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

  .service-card,
  .wide-card {
    grid-column: auto;
    min-height: 340px;
    padding: 28px;
  }

  .brand-heading {
    gap: 24px;
  }

  .brand-grid {
    gap: 14px;
  }

  .consumer-brand {
    display: block;
    border-radius: 22px;
  }

  .consumer-brand-visual {
    height: 330px;
    min-height: 0;
    padding: 18px;
  }

  .consumer-brand-copy {
    padding: 30px 24px 34px;
  }

  .retail-solutions {
    width: min(calc(100% - 28px), 1380px);
    margin-inline: auto;
    padding-top: 0;
  }

  .retail-solutions-inner {
    width: 100%;
    border-radius: 22px;
  }

  .retail-stand-media {
    min-height: 520px;
  }

  .retail-copy {
    padding: 48px 24px;
  }

  .retail-services {
    grid-template-columns: 1fr;
  }

  .source-chain-inner {
    gap: 50px;
  }

  .market-tags i {
    flex-basis: 100%;
    margin: 2px 0;
  }

  .chain-steps li {
    grid-template-columns: 50px 1fr;
  }

  .distribution-media {
    min-height: 365px;
    border-radius: 22px;
  }

  .distribution-media::after {
    content: "BAMOO DISTRIBUTION";
    right: 14px;
    bottom: 14px;
  }

  .fulfilment {
    width: min(calc(100% - 28px), 1380px);
    margin-inline: auto;
  }

  .fulfilment-inner {
    width: 100%;
    padding: 50px 24px;
    border-radius: 22px;
  }

  .fulfilment-list > div {
    grid-template-columns: 38px 1fr;
    padding-block: 15px;
  }

  .fulfilment-list small {
    grid-column: 2;
  }

  .experience-mark {
    min-height: 285px;
    padding: 32px;
    border-radius: 22px;
  }

  .about-text {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .contact-details > a {
    grid-template-columns: 1fr auto;
    gap: 8px 15px;
    padding-block: 18px;
  }

  .contact-details small {
    grid-column: 1 / -1;
  }

  .contact-details strong {
    overflow-wrap: anywhere;
  }

  .social-links {
    grid-template-columns: 1fr;
  }

  .social-links strong {
    overflow-wrap: normal;
  }

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

  .footer-inner p:last-child {
    grid-column: auto;
  }

  .footer-social {
    grid-column: auto;
  }

  .service-page-hero-inner { min-height: 590px; padding-block: 66px 82px; }
  .service-page-hero h1 { font-size: clamp(3rem, 13vw, 4.3rem); }
  .service-page-hero::after { right: -38vw; bottom: -3rem; font-size: 24rem; }
  .back-link { margin-bottom: 42px; }
  .service-index { top: 82px; width: min(calc(100% - 28px), 1380px); }
  .service-detail { padding: 30px 24px; border-radius: 22px; }
  .service-cta h2 { font-size: clamp(2.6rem, 12vw, 4rem); }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}
