:root {
  --color-orange: #ff6a3d;
  --color-orange-deep: #f53900;
  --color-orange-dark: #a32600;
  --color-peach: #ffb199;
  --color-navy: #1a2238;
  --color-navy-900: #071528;
  --color-navy-800: #0b1b30;
  --color-white: #ffffff;
  --color-grey-25: #fafbfc;
  --color-grey-50: #f5f6f8;
  --color-grey-100: #eceff3;
  --color-grey-300: #cbd2dc;
  --color-grey-600: #667085;
  --color-text: #111827;
  --color-muted: #4b5563;

  --vertical-packaging: #169a4a;
  --vertical-wellness: #35c4c8;
  --vertical-software: #1299ee;
  --vertical-ecommerce: #7c3aed;
  --vertical-marketing: #f72575;
  --vertical-nature: #7cc242;
  --vertical-it: #8798c8;

  --font-body: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --max-canvas: 1440px;
  --max-wide: 1920px;
  --container-padding: 40px;
  --grid-gap: 24px;
  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --shadow-card: 0 20px 60px rgba(26, 34, 56, 0.08);
  --shadow-soft: 0 10px 30px rgba(26, 34, 56, 0.08);
  --ease: cubic-bezier(.2,.8,.2,1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-grey-50);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.drawer-open { overflow: hidden; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }

.skip-link {
  position: absolute;
  left: -999px;
  top: 12px;
  z-index: 1000;
  padding: 10px 14px;
  background: var(--color-orange);
  color: var(--color-white);
  border-radius: 8px;
}
.skip-link:focus { left: 12px; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

.shell { max-width: var(--max-canvas); margin-inline: auto; background: var(--color-white); }
.shell--wide { max-width: var(--max-wide); }
.container {
  width: min(100% - (var(--container-padding) * 2), var(--max-canvas));
  margin-inline: auto;
}
.grid-12 {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: var(--grid-gap);
}
.col-span-1 { grid-column: span 1; }
.col-span-2 { grid-column: span 2; }
.col-span-3 { grid-column: span 3; }
.col-span-4 { grid-column: span 4; }
.col-span-5 { grid-column: span 5; }
.col-span-6 { grid-column: span 6; }
.col-span-7 { grid-column: span 7; }
.col-span-8 { grid-column: span 8; }
.col-span-9 { grid-column: span 9; }
.col-span-10 { grid-column: span 10; }
.col-span-11 { grid-column: span 11; }
.col-span-12 { grid-column: span 12; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(26, 34, 56, .08);
}
.header__inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: clamp(1.25rem, 2vw, 2rem);
  line-height: 1;
  color: var(--color-navy);
  letter-spacing: -0.05em;
}
.brand__text strong { font-weight: 800; }
.brand__mark {
  width: 34px;
  height: 30px;
  position: relative;
  display: inline-block;
}
.brand__mark::before,
.brand__mark::after {
  content: "";
  position: absolute;
  background: var(--color-orange);
  transform: skew(28deg);
  border-radius: 2px;
}
.brand__mark::before { width: 32px; height: 10px; left: 0; top: 2px; }
.brand__mark::after { width: 24px; height: 10px; left: 7px; bottom: 4px; }
.primary-nav {
  display: flex;
  align-items: center;
  gap: clamp(20px, 2.6vw, 42px);
  font-size: .95rem;
  font-weight: 600;
  color: var(--color-navy);
}
.primary-nav a:not(.button) { opacity: .92; transition: color .2s var(--ease), opacity .2s var(--ease); }
.primary-nav a:not(.button):hover { color: var(--color-orange-deep); opacity: 1; }
.menu-toggle { display: none; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 12px;
  font-weight: 700;
  border: 1px solid transparent;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), background .2s var(--ease), color .2s var(--ease);
}
.button:hover { transform: translateY(-2px); }
.button--small { min-height: 42px; padding: 0 18px; border-radius: 10px; }
.button--orange { background: var(--color-orange); color: var(--color-white); box-shadow: 0 12px 30px rgba(255,106,61,.28); }
.button--orange:hover { background: var(--color-orange-deep); }
.button--outline { color: var(--color-white); border-color: rgba(255,255,255,.75); background: rgba(7,21,40,.35); backdrop-filter: blur(10px); }
.button--outline:hover { background: rgba(255,255,255,.12); }
.button--light { color: var(--color-navy); background: var(--color-white); box-shadow: 0 12px 26px rgba(0,0,0,.12); }

.hero {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  background: var(--color-navy-900);
}
.hero__media {
  position: absolute;
  inset: 0 0 0 36%;
}
.hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--color-navy-900) 0%,
  rgba(7,21,40,.92) 7%,
  rgba(7,21,40,.58) 24%,
  rgba(7,21,40,.12) 46%,
  rgba(7,21,40,.1) 80%);
}
.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__emblem {
  position: absolute;
  top: 84px;
  right: clamp(90px, 13vw, 280px);
  font-size: clamp(8rem, 16vw, 19rem);
  font-weight: 900;
  letter-spacing: -0.16em;
  color: rgba(255,106,61,.76);
  line-height: .72;
  mix-blend-mode: normal;
  pointer-events: none;
}
.hero__inner { min-height: 560px; align-items: center; position: relative; z-index: 2; }
.hero__content { color: var(--color-white); padding-block: 72px; }
.eyebrow {
  margin: 0 0 14px;
  color: var(--color-orange);
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .78rem;
  line-height: 1.2;
  font-weight: 800;
}
.hero h1 {
  margin: 0;
  max-width: 700px;
  font-size: clamp(3rem, 5vw, 4.8rem);
  line-height: .94;
  letter-spacing: -0.04em;
  font-weight: 600;
}
.hero__lead {
  max-width: 590px;
  margin: 24px 0 0;
  color: rgba(255,255,255,.88);
  font-size: clamp(1rem, 1.25vw, 1.2rem);
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 32px; }

.section { padding: 48px 0; background: var(--color-white); }
.section--compact { padding-block: 20px 46px; }
.section__head { align-items: start; }
.section h2 {
  margin: 0;
  color: var(--color-navy);
  font-size: clamp(2rem, 3.2vw, 2.5rem);
  line-height: 1;
  letter-spacing: -0.04em;
  font-weight: 700;
}
.section p { color: var(--color-muted); }

.verticals-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(150px, 1fr);
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 6px 2px 18px;
  scrollbar-width: none;
}
.verticals-track::-webkit-scrollbar { display: none; }
.vertical-card {
  scroll-snap-align: start;
  min-height: 164px;
  padding: 24px 18px 18px;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(26,34,56,.08);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-soft);
  text-align: center;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), border-color .2s var(--ease);
}
.vertical-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); border-color: rgba(255,106,61,.22); }
.vertical-card__mark {
  display: grid;
  place-items: center;
  width: 60px;
  height: 60px;
  margin: 0 auto 12px;
}
.vertical-card h3 {
  margin: 0 0 12px;
  color: var(--color-navy);
  font-size: 1rem;
  line-height: 1.12;
  letter-spacing: -0.02em;
  font-weight: 400;
}
.vertical-card a {
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid var(--color-grey-300);
  color: var(--color-navy);
}
.carousel-controls { display: flex; gap: 12px; margin-top: 28px; }
.icon-button {
  width: 56px;
  height: 56px;
  border: 1px solid var(--color-grey-300);
  border-radius: 50%;
  background: var(--color-white);
  color: var(--color-navy);
  font-size: 1.7rem;
  cursor: pointer;
  transition: border-color .2s var(--ease), color .2s var(--ease), transform .2s var(--ease);
}
.icon-button:hover { color: var(--color-orange); border-color: var(--color-orange); transform: translateY(-2px); }

.approach-panel {
  padding: clamp(28px, 3.5vw, 56px);
  border: 1px solid rgba(26,34,56,.08);
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, #fff, #f8fafc);
  box-shadow: var(--shadow-soft);
  align-items: stretch;
}
.approach-panel__intro h2 { font-size: clamp(2rem, 3.2vw, 2.5rem); }
.approach-panel__intro span { color: var(--color-orange-deep); }
.pillar {
  padding-left: clamp(0px, 2vw, 28px);
  border-left: 1px solid rgba(26,34,56,.12);
}
.pillar__icon {
  display: block;
  color: var(--color-orange);
  font-size: 2.2rem;
  line-height: 1;
  margin-bottom: 18px;
}
.pillar h3 { margin: 0 0 8px; color: var(--color-navy); font-size: 1.45rem; letter-spacing: -0.04em; }
.pillar p { margin: 0; font-size: .95rem; color: var(--color-text); }

.stats-band {
  padding: clamp(28px, 3.2vw, 48px);
  background: radial-gradient(circle at 92% 8%, rgba(255,106,61,.2), transparent 34%), var(--color-navy-900);
  color: var(--color-white);
  border-radius: var(--radius-md);
  align-items: center;
  box-shadow: 0 18px 60px rgba(7,21,40,.24);
}
.stats-band .eyebrow { margin-bottom: 10px; }
.stats-band h2 { margin: 0; font-size: clamp(2rem, 3.2vw, 2.5rem); line-height: 1.05; letter-spacing: -0.05em; color: var(--color-white); }
.stat { border-left: 1px solid rgba(255,255,255,.18); padding-left: clamp(16px, 2vw, 30px); }
.stat__icon { display: block; color: var(--color-peach); font-size: 1.8rem; margin-bottom: 10px; }
.stat strong { display: block; color: var(--color-orange); font-size: clamp(2.2rem, 3vw, 3.4rem); line-height: .9; letter-spacing: -0.06em; }
.stat span:last-child { color: rgba(255,255,255,.88); font-size: .95rem; }

.content-row { align-items: start; }
.section-copy h2 { font-size: clamp(1.75rem, 2.5vw, 3rem); margin-bottom: 22px; }
.text-link { color: var(--color-orange-deep); font-weight: 700; display: inline-flex; gap: 8px; }
.card-row,
.insight-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.portfolio-card,
.insight-card {
  background: var(--color-white);
  border: 1px solid rgba(26,34,56,.1);
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.portfolio-card img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.portfolio-card img.vertical-logo { aspect-ratio: auto; object-fit: none; padding: 1.4rem 0 1.4rem 0rem;}
.portfolio-card div { padding: 16px; }
h2#portfolio-title, 
h2#news-title { font-size: clamp(2rem, 3.2vw, 2.5rem); }
.portfolio-card h3,
.insight-card h3 { margin: 0; color: var(--color-navy); line-height: 1.15; letter-spacing: -0.035em; }

.portfolio-card p { margin: 6px 0 0; font-size: .82rem; color: var(--color-muted); display: flex; align-items: center; gap: 6px; }
.insight-row { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.insight-card img { width: 100%; aspect-ratio: 16 / 7; object-fit: cover; }
.insight-card div { padding: 18px; position: relative; min-height: 190px; }
.kicker { margin: 0 0 8px; color: var(--color-orange-deep); text-transform: uppercase; font-weight: 800; letter-spacing: .07em; font-size: .68rem; }
.insight-card time { display: block; margin-top: 18px; color: var(--color-muted); font-size: .85rem; }
.insight-card .arrow { position: absolute; right: 18px; bottom: 18px; color: var(--color-orange-deep); font-size: 1.5rem; }

.cta-section { padding: 42px 0 34px; background: var(--color-white); }
.cta-band {
  align-items: center;
  padding: clamp(32px, 3.5vw, 52px);
  background: linear-gradient(120deg, var(--color-orange), var(--color-orange-deep));
  border-radius: var(--radius-md);
  color: var(--color-white);
  overflow: hidden;
  position: relative;
}
.cta-band::after {
  content: "confidential";
  position: absolute;
  right: 16%;
  bottom: -40px;
  color: rgba(255,255,255,.1);
  font-weight: 900;
  font-size: 7rem;
  letter-spacing: -0.08em;
  pointer-events: none;
}
.cta-band h2 { margin: 0; color: var(--color-white); font-size: clamp(2rem, 3.4vw, 3.5rem); line-height: .95; letter-spacing: -0.04em; }
.cta-band p { margin: 0; color: rgba(255,255,255,.9); font-weight: 600; }
.cta-band__action { display: flex; justify-content: flex-end; }

.site-footer {
  background: var(--color-navy-900);
  color: var(--color-white);
  padding: 72px 0 24px;
}
.footer__inner { align-items: start; }
.brand--footer { color: var(--color-white); font-size: 1.45rem; }
.footer__brand p { color: rgba(255,255,255,.68); margin: 20px 0; max-width: 260px; }
.social-links { display: flex; gap: 10px; }
.social-links a {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 50%;
  color: var(--color-white);
  font-size: .78rem;
  font-weight: 700;
}
.footer-links { display: flex; flex-direction: column; gap: 8px; }
.footer-links h3 { margin: 0 0 8px; font-size: .95rem; color: var(--color-white); }
.footer-links a { color: rgba(255,255,255,.72); font-size: .88rem; }
.footer-links a:hover { color: var(--color-orange); }
.footer-verticals {
  display: flex;
  align-items: center;
  gap: 20px;
  overflow-x: auto;
  padding: 26px 0;
  margin-top: 44px;
  border-top: 1px solid rgba(255,255,255,.14);
  border-bottom: 1px solid rgba(255,255,255,.14);
  scrollbar-width: none;
}
.footer-verticals::-webkit-scrollbar { display: none; }
.footer-verticals p { margin: 0; color: var(--color-orange); text-transform: uppercase; font-size: .8rem; font-weight: 800; letter-spacing: .08em; white-space: nowrap; }
.footer-verticals a { white-space: nowrap; color: rgba(255,255,255,.8); font-size: .86rem; display: inline-flex; align-items: center; gap: 6px; }
.footer-verticals img { display: block; max-width: none; height: auto; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; padding-top: 18px; color: rgba(255,255,255,.55); font-size: .82rem; }
.footer-bottom p { margin: 0; }
.footer-bottom div { display: flex; gap: 24px; }

.vertical-dot {
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 4px;
  flex: 0 0 auto;
}
.vertical-dot--packaging { background: var(--vertical-packaging); }
.vertical-dot--wellness { background: var(--vertical-wellness); }
.vertical-dot--software { background: var(--vertical-software); }
.vertical-dot--ecommerce { background: var(--vertical-ecommerce); }
.vertical-dot--marketing { background: var(--vertical-marketing); }
.vertical-dot--nature { background: var(--vertical-nature); }
.vertical-dot--it { background: var(--vertical-it); }

.mobile-drawer,
.drawer-backdrop { display: none; }

@media (max-width: 1180px) {
  :root { --container-padding: 28px; --grid-gap: 20px; }
  .tablet-col-span-2 { grid-column: span 2; }
  .tablet-col-span-4 { grid-column: span 4; }
  .tablet-col-span-8 { grid-column: span 8; }
  .primary-nav { gap: 20px; }
  .hero__media { inset-left: 30%; }
  .card-row { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .insight-row { grid-template-columns: 1fr; }
  .pillar { border-left: 0; padding-left: 0; }
}

@media (max-width: 768px) {
  :root { --container-padding: 20px; --grid-gap: 16px; }
  .grid-12 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .mobile-col-span-2 { grid-column: span 2; }
  .mobile-col-span-4 { grid-column: span 4; }
  .site-header { position: sticky; }
  .header__inner { min-height: 68px; justify-content: center; position: relative; }
  .brand { font-size: 1.3rem; }
  .brand__mark { width: 28px; height: 25px; }
  .brand__mark::before { width: 27px; height: 8px; }
  .brand__mark::after { width: 20px; height: 8px; }
  .primary-nav { display: none; }
  .menu-toggle {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    position: absolute;
    left: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
  }
  .menu-toggle__bar { width: 24px; height: 2px; background: var(--color-navy); border-radius: 99px; }

  .drawer-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 80;
    background: rgba(7,21,40,.52);
    backdrop-filter: blur(4px);
  }
  body.drawer-open .drawer-backdrop { display: block; }
  .drawer-backdrop[hidden] { display: none !important; }
  .mobile-drawer {
    display: block;
    position: fixed;
    inset: 0 auto 0 0;
    z-index: 90;
    width: min(86vw, 380px);
    padding: 22px;
    background: var(--color-white);
    transform: translateX(-102%);
    transition: transform .28s var(--ease);
    box-shadow: 30px 0 70px rgba(7,21,40,.24);
    overflow-y: auto;
  }
  .mobile-drawer.is-open { transform: translateX(0); }
  .mobile-drawer__top { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 28px; }
  .drawer-close { border: 0; background: var(--color-grey-50); width: 42px; height: 42px; border-radius: 50%; font-size: 1.8rem; line-height: 1; color: var(--color-navy); cursor: pointer; padding-bottom: 5px;}
  .drawer-nav { display: flex; flex-direction: column; gap: 6px; padding-bottom: 26px; border-bottom: 1px solid var(--color-grey-100); margin-bottom: 24px; }
  .drawer-nav:last-child { border-bottom: 0; margin-bottom: 0; }
  .drawer-nav__label { margin: 0 0 8px; color: var(--color-orange); font-size: .75rem; text-transform: uppercase; font-weight: 800; letter-spacing: .08em; }
  .drawer-nav a { display: flex; align-items: center; gap: 10px; min-height: 44px; color: var(--color-navy); font-weight: 700; }

  .hero { min-height: auto; }
  .hero__media { inset: 44% 0 0 0; opacity: .9; }
  .hero__media::after { background: linear-gradient(180deg, var(--color-navy-900) 0%, rgba(7,21,40,.92) 34%, rgba(7,21,40,.45) 100%); }
  .hero__inner { min-height: 620px; align-items: start; }
  .hero__content { padding-top: 60px; }
  .hero h1 { font-size: clamp(2.6rem, 12vw, 4rem); }
  .hero__lead { font-size: 1rem; }
  .hero__actions { align-items: stretch; }
  .hero__actions .button { width: 100%; }
  .hero__emblem { right: 18px; top: auto; bottom: 80px; font-size: 7rem; opacity: .72; }

  .section { padding: 38px 0; }
  .section h2 { font-size: clamp(1.85rem, 8vw, 2.6rem); }
  .carousel-controls { margin-top: 18px; }
  .verticals-track { grid-auto-columns: minmax(180px, 72vw); margin-top: 10px; }
  .approach-panel { padding: 28px 20px; }
  .pillar { padding-top: 22px; border-top: 1px solid rgba(26,34,56,.1); }
  .stats-band { row-gap: 28px; }
  .stat { border-left: 0; padding-left: 0; }
  .card-row,
  .insight-row { grid-template-columns: 1fr; }
  .cta-band { text-align: left; }
  .cta-band__action { justify-content: flex-start; }

  .site-footer { padding-top: 54px; }
  .footer__inner { row-gap: 30px; }
  .footer-verticals { margin-top: 28px; }
  .footer-bottom { flex-direction: column; }
}

@media (max-width: 480px) {
  :root { --container-padding: 16px; }
  .hero__inner { min-height: 660px; }
  .hero__media { inset-top: 48%; }
  .button { width: 100%; }
  .footer-links { grid-column: span 4; }
}
