:root {
  --navy-950: #0f2c29;
  --navy-900: #163b36;
  --navy-800: #315650;
  --blue: #c47752;
  --teal: #24675f;
  --lime: #d9c39c;
  --brass: #b97755;
  --ivory: #f1f3ef;
  --white: #fff;
  --slate: #52645f;
  --muted: #74837e;
  --line: #d8ded9;
  --ink: #172a26;
  --shadow: 0 30px 80px rgba(15, 44, 41, .18);
  --sans: "DM Sans", ui-sans-serif, system-ui, sans-serif;
  --serif: "Libre Caslon Display", Georgia, serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 84px;
}

body {
  margin: 0;
  background: var(--ivory);
  color: var(--ink);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

button {
  color: inherit;
  font: inherit;
}

.site-header {
  align-items: center;
  background: rgba(255, 255, 255, .97);
  border-bottom: 1px solid rgba(6, 29, 59, .09);
  color: var(--navy-950);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  left: 0;
  padding: 22px clamp(24px, 5vw, 84px);
  position: fixed;
  right: 0;
  top: 0;
  transition: background .3s ease, box-shadow .3s ease, padding .3s ease;
  z-index: 100;
}

.site-header.scrolled {
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 1px 0 rgba(6, 29, 59, .12);
  padding-block: 14px;
  backdrop-filter: blur(18px);
}

.brand {
  align-items: center;
  display: inline-flex;
  gap: 10px;
  width: fit-content;
}

.brand-mark-image {
  display: block;
  flex: 0 0 auto;
  height: 44px;
  object-fit: contain;
  width: 50px;
}

.brand-wordmark {
  display: inline-flex;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: .07em;
  line-height: 1;
}

.brand-ecom {
  color: var(--navy-950);
}

.brand-sellers {
  color: var(--teal);
  font-weight: 500;
  margin-left: 6px;
}

.site-nav {
  align-items: center;
  display: flex;
  font-size: 13px;
  gap: clamp(18px, 2.4vw, 40px);
}

.site-nav a,
.text-link,
.case-copy a {
  position: relative;
}

.site-nav a::after,
.text-link::after,
.case-copy a::after {
  background: currentColor;
  bottom: -6px;
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .35s ease;
  width: 100%;
}

.site-nav a:hover::after,
.text-link:hover::after,
.case-copy a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

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

.menu-toggle {
  background: transparent;
  border: 0;
  display: none;
  height: 40px;
  padding: 8px;
  width: 44px;
}

.menu-toggle span {
  background: currentColor;
  display: block;
  height: 1px;
  margin: 7px 0;
  width: 100%;
}

.button {
  align-items: center;
  background: var(--blue);
  border: 1px solid var(--blue);
  border-radius: 4px;
  color: var(--white);
  display: inline-flex;
  font-size: 14px;
  font-weight: 600;
  gap: 24px;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  transition: background .25s ease, color .25s ease, transform .25s ease;
}

.button:hover {
  background: var(--white);
  color: var(--navy-900);
  transform: translateY(-2px);
}

.button-small {
  background: transparent;
  border-color: rgba(255, 255, 255, .65);
  min-height: 42px;
  padding-inline: 18px;
}

.header-cta {
  background: var(--teal);
  border-color: var(--teal);
  color: var(--white);
}

.header-cta:hover {
  background: var(--navy-950);
  border-color: var(--navy-950);
  color: var(--white);
}

.button-light {
  background: var(--white);
  border-color: var(--white);
  color: var(--navy-900);
}

.button-light:hover {
  background: var(--navy-900);
  border-color: var(--navy-900);
  color: var(--white);
}

.hero {
  align-items: center;
  background:
    radial-gradient(circle at 72% 40%, rgba(196, 119, 82, .24), transparent 33%),
    linear-gradient(118deg, #0b1e1c, var(--navy-900) 54%, #263e38);
  color: var(--white);
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(570px, 1.12fr);
  min-height: 780px;
  overflow: hidden;
  padding: 132px clamp(24px, 5vw, 84px) 82px;
  position: relative;
}

.hero::before {
  background-image:
    linear-gradient(rgba(255, 255, 255, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .035) 1px, transparent 1px);
  background-size: 52px 52px;
  content: "";
  inset: 0 0 0 48%;
  mask-image: linear-gradient(90deg, transparent, #000);
  opacity: .7;
  position: absolute;
}

.hero-copy {
  max-width: 680px;
  position: relative;
  z-index: 2;
}

.eyebrow {
  align-items: center;
  color: rgba(255, 255, 255, .7);
  display: flex;
  font-size: 11px;
  font-weight: 600;
  gap: 12px;
  letter-spacing: .2em;
  margin: 0 0 26px;
  text-transform: uppercase;
}

.eyebrow span {
  background: var(--brass);
  height: 1px;
  width: 34px;
}

.eyebrow-dark {
  color: var(--muted);
}

.hero h1,
.section-intro h2,
.results h2,
.services h2,
.cases h2,
.about h2,
.contact h2 {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -.045em;
}

.hero h1 {
  font-size: clamp(54px, 5.35vw, 92px);
  line-height: .98;
  margin: 0;
}

.hero h1 em,
.results h2 em,
.services h2 em,
.cases h2 em,
.contact h2 em {
  color: #e6bc72;
  font-style: normal;
}

.hero-lead {
  color: rgba(255, 255, 255, .74);
  font-size: clamp(17px, 1.35vw, 21px);
  line-height: 1.55;
  margin: 28px 0 34px;
  max-width: 580px;
}

.hero-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.text-link {
  font-size: 14px;
}

.text-link span {
  color: var(--brass);
  margin-left: 10px;
}

.hero-trust {
  border-top: 1px solid rgba(255, 255, 255, .12);
  color: rgba(255, 255, 255, .55);
  display: flex;
  font-size: 11px;
  gap: 28px;
  margin-top: 44px;
  padding-top: 20px;
}

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

.hero-trust span::before {
  border: 1px solid var(--brass);
  border-radius: 50%;
  content: "";
  height: 5px;
  width: 5px;
}

.hero-featured-brands {
  border-top: 1px solid rgba(255, 255, 255, .14);
  margin-top: 38px;
  max-width: 630px;
  padding-top: 17px;
}

.hero-featured-label {
  color: rgba(255, 255, 255, .48);
  display: block;
  font-size: 8px;
  letter-spacing: .15em;
  margin-bottom: 13px;
  text-transform: uppercase;
}

.hero-featured-brands > div {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
}

.hero-featured-logo {
  align-items: center;
  color: rgba(255, 255, 255, .82);
  display: inline-flex;
  font-size: 9px;
  font-weight: 600;
  gap: 7px;
  white-space: nowrap;
}

.hero-featured-logo img {
  background: var(--white);
  border-radius: 6px;
  filter: grayscale(1) contrast(1.05);
  height: 22px;
  object-fit: contain;
  opacity: .82;
  width: 22px;
}

.hero-media {
  align-self: stretch;
  box-shadow: 0 32px 90px rgba(0, 0, 0, .25);
  height: 590px;
  margin: 0 0 0 4vw;
  overflow: hidden;
  position: relative;
  z-index: 2;
}

.hero-media::after {
  background: linear-gradient(180deg, transparent 50%, rgba(8, 26, 44, .78));
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.hero-photo {
  display: block;
  height: 100%;
  object-fit: cover;
  object-position: 57% center;
  width: 100%;
}

.commerce-scene {
  height: 590px;
  margin-left: 4vw;
  perspective: 1400px;
  position: relative;
  z-index: 2;
}

.catalog-panel,
.metric-card,
.channel-card {
  background: rgba(255, 255, 255, .96);
  border: 1px solid rgba(255, 255, 255, .48);
  box-shadow: var(--shadow);
  color: var(--ink);
  position: absolute;
}

.catalog-panel {
  height: 360px;
  left: 3%;
  padding: 19px;
  top: 88px;
  transform: rotateY(-7deg) rotateX(2deg);
  width: 58%;
}

.panel-top {
  align-items: center;
  display: flex;
  font-size: 12px;
  font-weight: 700;
  justify-content: space-between;
}

.panel-dots {
  color: var(--muted);
  letter-spacing: 3px;
}

.catalog-tabs {
  border-bottom: 1px solid var(--line);
  display: flex;
  font-size: 8px;
  gap: 18px;
  margin: 18px 0;
  padding-bottom: 10px;
}

.catalog-tabs .active {
  color: var(--blue);
  font-weight: 700;
}

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

.product-card {
  background: #f4f6f8;
  min-height: 220px;
  padding: 17px 12px;
}

.product-card small,
.product-card strong {
  display: block;
  font-size: 8px;
}

.product-card small {
  color: var(--muted);
  margin-top: 14px;
}

.product-card strong {
  margin-top: 6px;
}

.product {
  display: block;
  height: 145px;
  margin: auto;
  position: relative;
}

.product-bottle {
  background: linear-gradient(90deg, #d5b795, #f1dfc7 52%, #bb966d);
  border-radius: 8px 8px 18px 18px;
  width: 56px;
}

.product-bottle::before {
  background: #c9a87f;
  border-radius: 4px 4px 0 0;
  content: "";
  height: 25px;
  left: 13px;
  position: absolute;
  top: -14px;
  width: 30px;
}

.product-screen {
  background: linear-gradient(145deg, #1e3245, #83a8c6);
  border: 7px solid #25394b;
  box-shadow: 0 9px 0 -4px #7e8b94;
  height: 112px;
  margin-top: 20px;
  width: 115px;
}

.product-jar {
  background: linear-gradient(90deg, #a9c7c8, #edf3f1 48%, #8eafaf);
  border-radius: 12px 12px 24px 24px;
  height: 96px;
  margin-top: 48px;
  width: 94px;
}

.product-jar::before {
  background: #759799;
  border-radius: 8px 8px 2px 2px;
  content: "";
  height: 18px;
  left: 2px;
  position: absolute;
  top: -10px;
  width: 90px;
}

.metric-card {
  padding: 16px 18px;
  right: 0;
  width: 34%;
}

.metric-card > span,
.channel-card > span {
  color: var(--muted);
  display: block;
  font-size: 9px;
  margin-bottom: 5px;
}

.metric-card strong {
  display: block;
  font-family: var(--serif);
  font-size: 25px;
  letter-spacing: -.03em;
}

.demo-label {
  color: var(--blue) !important;
  font-size: 7px !important;
  font-weight: 700;
  letter-spacing: .08em;
  margin-top: 2px;
  text-transform: uppercase;
}

.metric-sales {
  height: 180px;
  top: 18px;
}

.metric-sales svg {
  height: 72px;
  margin-top: 10px;
  width: 100%;
}

.chart-line {
  fill: none;
  stroke: var(--blue);
  stroke-width: 3;
}

.chart-area {
  fill: url(#chartFill);
}

.metric-growth {
  right: 7%;
  top: 218px;
  width: 27%;
}

.metric-growth small {
  color: var(--muted);
  font-size: 8px;
}

.channel-card {
  bottom: 60px;
  padding: 17px 18px;
  right: -2%;
  width: 34%;
}

.channel-card ul {
  display: grid;
  gap: 11px;
  list-style: none;
  margin: 12px 0 0;
  padding: 0;
}

.channel-card li {
  align-items: center;
  display: grid;
  font-size: 9px;
  grid-template-columns: auto 1fr auto;
  gap: 8px;
}

.channel-card b {
  color: var(--teal);
  font-size: 7px;
}

.channel-dot {
  background: var(--blue);
  border-radius: 50%;
  height: 8px;
  width: 8px;
}

.channel-dot.mercado {
  background: #f0c54a;
}

.channel-dot.shopify {
  background: #77a842;
}

.channel-dot.retail {
  background: var(--brass);
}

.package-stack {
  bottom: 68px;
  height: 155px;
  left: 10%;
  position: absolute;
  width: 260px;
}

.package {
  background: #b89060;
  border: 1px solid rgba(51, 34, 18, .25);
  box-shadow: 0 18px 32px rgba(8, 26, 44, .25);
  position: absolute;
}

.package-one {
  bottom: 0;
  height: 78px;
  left: 0;
  transform: skewY(-6deg);
  width: 155px;
}

.package-two {
  bottom: 21px;
  height: 72px;
  left: 91px;
  transform: skewY(5deg);
  width: 158px;
}

.package-label {
  color: rgba(16, 34, 53, .67);
  font-size: 10px;
  font-weight: 700;
  left: 25px;
  letter-spacing: .1em;
  position: absolute;
  top: 81px;
  z-index: 2;
}

.hero-logo-strip {
  background: var(--white);
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: clamp(190px, 19vw, 310px) 1fr;
  min-height: 104px;
  overflow: hidden;
}

.hero-logo-label {
  align-items: flex-start;
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px clamp(24px, 4vw, 70px);
  position: relative;
  z-index: 2;
}

.hero-logo-label span {
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.1;
}

.hero-logo-label small {
  color: var(--muted);
  font-size: 8px;
  letter-spacing: .1em;
  margin-top: 6px;
  text-transform: uppercase;
}

.hero-logo-window {
  overflow: visible;
  position: relative;
}

.hero-logo-window::before,
.hero-logo-window::after {
  display: none;
}

.hero-logo-track {
  align-items: center;
  display: grid;
  gap: 0;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  min-height: 104px;
  padding: 0 clamp(20px, 2.8vw, 48px);
  width: 100%;
}

.brands {
  background: var(--ivory);
  padding: 110px 0 64px;
}

.section-intro {
  margin: 0 auto 70px;
  max-width: 760px;
  padding: 0 24px;
  text-align: center;
}

.section-intro .eyebrow {
  justify-content: center;
}

.section-intro h2 {
  font-size: clamp(42px, 4.3vw, 70px);
  line-height: 1;
  margin: 0;
}

.section-intro > p:last-child {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
  margin: 24px auto 0;
  max-width: 620px;
}

.marquee-row {
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: clamp(190px, 15vw, 240px) 1fr;
  overflow: hidden;
}

.marquee-row:last-child {
  border-bottom: 1px solid var(--line);
}

.marquee-label {
  align-items: center;
  background: var(--ivory);
  border-right: 1px solid var(--line);
  display: flex;
  font-size: 10px;
  font-weight: 700;
  gap: 10px;
  letter-spacing: .13em;
  padding: 26px clamp(18px, 3vw, 50px);
  position: relative;
  text-transform: uppercase;
  white-space: nowrap;
  z-index: 2;
}

.marquee-label::before {
  background: var(--brass);
  content: "";
  height: 1px;
  width: 17px;
}

.marquee-window {
  overflow: hidden;
  padding: 0 0;
  position: relative;
}

.marquee-window::before,
.marquee-window::after {
  content: "";
  inset-block: 0;
  pointer-events: none;
  position: absolute;
  width: 80px;
  z-index: 2;
}

.marquee-window::before {
  background: linear-gradient(90deg, var(--ivory), transparent);
  left: 0;
}

.marquee-window::after {
  background: linear-gradient(-90deg, var(--ivory), transparent);
  right: 0;
}

.marquee-track {
  align-items: center;
  animation: marquee 42s linear infinite;
  display: flex;
  gap: clamp(36px, 4vw, 76px);
  min-height: 86px;
  padding-left: 44px;
  width: max-content;
  will-change: transform;
}

.marquee-row[data-direction="reverse"] .marquee-track {
  animation-direction: reverse;
}

.marquee-row[data-speed="slow"] .marquee-track {
  animation-duration: 52s;
}

.marquee-row:hover .marquee-track,
.marquee-row:focus-within .marquee-track {
  animation-play-state: paused;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.wordmark {
  align-items: center;
  color: #303836;
  display: inline-flex;
  flex: 0 0 auto;
  font-size: clamp(17px, 1.35vw, 25px);
  font-weight: 700;
  letter-spacing: -.055em;
  line-height: 1;
  opacity: .85;
  transition: color .25s ease, opacity .25s ease, transform .25s ease;
  white-space: nowrap;
}

.wordmark img {
  border-radius: 9px;
  display: block;
  filter: grayscale(1) contrast(1.08);
  height: 30px;
  margin-right: 10px;
  object-fit: contain;
  opacity: .78;
  width: 30px;
}

.hero-logo-track .wordmark {
  font-size: 16px;
  justify-content: center;
  min-width: 0;
  padding: 18px 10px;
}

.hero-logo-track .wordmark img {
  height: 34px;
  width: 34px;
}

.wordmark:hover {
  color: #111817;
  opacity: 1;
  transform: translateY(-2px);
}

.wordmark:hover img {
  filter: grayscale(1) contrast(1.18);
  opacity: .95;
}

.wordmark[data-style="wide"] {
  font-size: clamp(15px, 1.1vw, 20px);
  letter-spacing: .02em;
  text-transform: uppercase;
}

.wordmark[data-style="light"] {
  font-weight: 500;
}

.wordmark[data-style="serif"] {
  font-family: Georgia, serif;
  font-weight: 700;
}

.wordmark[data-style="spaced"] {
  letter-spacing: .13em;
  text-transform: uppercase;
}

.wordmark[data-style="lower"] {
  font-weight: 500;
  text-transform: lowercase;
}

.brand-disclaimer {
  color: var(--muted);
  font-size: 10px;
  margin: 24px auto 0;
  max-width: 920px;
  padding: 0 24px;
  text-align: center;
}

.results {
  background:
    linear-gradient(115deg, transparent 57%, rgba(196, 119, 82, .2)),
    var(--navy-950);
  color: var(--white);
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  min-height: 430px;
  overflow: hidden;
  padding: 88px clamp(24px, 5vw, 84px);
  position: relative;
}

.results-heading,
.result-grid,
.validation-note {
  position: relative;
  z-index: 2;
}

.results h2 {
  font-size: clamp(45px, 4vw, 68px);
  line-height: .98;
  margin: 0;
  max-width: 470px;
}

.result-grid {
  align-items: center;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.result-grid article {
  border-left: 1px solid rgba(255, 255, 255, .2);
  padding: 20px clamp(18px, 2.2vw, 42px);
}

.result-grid strong {
  display: block;
  font-family: var(--serif);
  font-size: clamp(48px, 4.4vw, 78px);
  font-weight: 400;
  letter-spacing: -.05em;
}

.result-grid span {
  color: rgba(255, 255, 255, .6);
  display: block;
  font-size: 9px;
  letter-spacing: .12em;
  margin-top: 8px;
  text-transform: uppercase;
}

.validation-note {
  bottom: 46px;
  color: rgba(255, 255, 255, .4);
  font-size: 9px;
  left: 39%;
  position: absolute;
}

.results-chart {
  bottom: -20px;
  height: 200px;
  opacity: .45;
  position: absolute;
  right: 0;
  width: 70%;
}

.results-chart path {
  fill: none;
  stroke: var(--blue);
  stroke-width: 3;
  vector-effect: non-scaling-stroke;
}

.services {
  background: var(--white);
  padding: 120px clamp(24px, 5vw, 84px);
}

.services-title {
  align-items: end;
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  padding-bottom: 58px;
}

.services-title .eyebrow {
  align-self: start;
}

.services h2 {
  font-size: clamp(46px, 4.4vw, 74px);
  line-height: 1;
  margin: 0;
  max-width: 760px;
}

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

.service-card {
  border-left: 1px solid var(--line);
  min-height: 430px;
  padding: 48px clamp(24px, 2.8vw, 48px);
  position: relative;
  transition: background .3s ease, transform .3s ease;
}

.service-card:first-child {
  border-left: 0;
}

.service-card:hover {
  background: var(--ivory);
  transform: translateY(-4px);
}

.service-number {
  color: var(--muted);
  font-size: 10px;
  letter-spacing: .12em;
  position: absolute;
  right: 20px;
  top: 20px;
}

.service-icon {
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--blue);
  display: flex;
  height: 58px;
  justify-content: center;
  width: 58px;
}

.service-icon svg {
  fill: none;
  height: 29px;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.55;
  width: 29px;
}

.service-card h3 {
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 400;
  letter-spacing: -.03em;
  line-height: 1.08;
  margin: 30px 0 18px;
}

.service-card p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.service-card ul {
  display: grid;
  gap: 10px;
  list-style: none;
  margin: 28px 0 0;
  padding: 0;
}

.service-card li {
  align-items: center;
  display: flex;
  font-size: 11px;
  gap: 10px;
}

.service-card li::before {
  border: 1px solid var(--teal);
  border-radius: 50%;
  content: "";
  height: 5px;
  width: 5px;
}

.cases {
  background: linear-gradient(135deg, var(--navy-900), #2b453f);
  color: var(--white);
  padding: 112px clamp(24px, 5vw, 84px) 120px;
}

.cases-header {
  align-items: end;
  display: flex;
  justify-content: space-between;
  margin-bottom: 62px;
}

.cases h2 {
  font-size: clamp(46px, 4.5vw, 76px);
  line-height: 1;
  margin: 0;
}

.cases-header > p {
  color: rgba(255, 255, 255, .55);
  font-size: 13px;
  line-height: 1.6;
  margin: 0;
  max-width: 420px;
}

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

.case-card {
  background: var(--white);
  color: var(--ink);
  display: grid;
  grid-template-rows: 270px 1fr;
  min-height: 590px;
  overflow: hidden;
  transition: transform .35s ease, box-shadow .35s ease;
}

.case-card:hover {
  box-shadow: 0 30px 60px rgba(0, 0, 0, .2);
  transform: translateY(-8px);
}

.case-visual {
  overflow: hidden;
  position: relative;
}

.case-visual::after {
  background: linear-gradient(180deg, transparent 52%, rgba(8, 26, 44, .3));
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.case-visual img {
  height: 100%;
  object-fit: cover;
  transition: transform .7s cubic-bezier(.16, 1, .3, 1);
  width: 100%;
}

.case-card:hover .case-visual img {
  transform: scale(1.035);
}

.case-copy {
  display: flex;
  flex-direction: column;
  padding: 32px;
}

.case-category {
  color: var(--blue);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.case-copy h3 {
  font-family: var(--serif);
  font-size: 29px;
  font-weight: 400;
  letter-spacing: -.035em;
  line-height: 1.1;
  margin: 15px 0 22px;
}

.case-copy dl {
  display: grid;
  gap: 11px;
  margin: 0;
}

.case-copy dl div {
  display: grid;
  font-size: 11px;
  grid-template-columns: 80px 1fr;
}

.case-copy dt {
  color: var(--muted);
}

.case-copy dd {
  margin: 0;
}

.case-copy a {
  align-self: flex-start;
  color: var(--blue);
  font-size: 12px;
  font-weight: 700;
  margin-top: auto;
}

.case-copy a span {
  margin-left: 8px;
}

.about {
  background: var(--ivory);
  padding: 110px clamp(24px, 5vw, 84px);
}

.about-layout {
  display: grid;
  gap: 9vw;
  grid-template-columns: .8fr 1.2fr;
}

.about h2 {
  font-size: clamp(44px, 4.5vw, 76px);
  line-height: 1;
  margin: 0;
}

.about ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

.about li {
  align-items: center;
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 18px;
  grid-template-columns: 46px 180px 1fr;
  min-height: 92px;
}

.about li:first-child {
  border-top: 1px solid var(--line);
}

.about li span {
  color: var(--blue);
  font-size: 11px;
}

.about li strong {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
}

.about li small {
  color: var(--muted);
  font-size: 12px;
}

.location-section {
  background: var(--white);
  padding: 110px clamp(24px, 5vw, 84px);
}

.location-card {
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: 26px;
  box-shadow: 0 24px 60px rgba(8, 26, 44, .07);
  display: grid;
  gap: 22px 42px;
  grid-template-columns: minmax(300px, .82fr) minmax(420px, 1.18fr);
  margin: 0 auto;
  max-width: 1060px;
  padding: clamp(28px, 4vw, 54px);
}

.location-heading {
  align-items: center;
  display: grid;
  gap: 28px;
  grid-template-columns: 68px 1fr;
  margin: 0;
}

.location-heading > img {
  height: 62px;
  width: 62px;
}

.location-heading p {
  color: #176b38;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .06em;
  margin: 0 0 6px;
  text-transform: uppercase;
}

.location-heading h2 {
  color: var(--navy-950);
  font-family: var(--serif);
  font-size: clamp(42px, 4.2vw, 68px);
  font-weight: 400;
  letter-spacing: -.045em;
  line-height: 1;
  margin: 0;
}

.location-heading span,
.location-heading strong {
  color: var(--muted);
  display: block;
  font-size: clamp(14px, 1.2vw, 18px);
  line-height: 1.45;
  margin-top: 9px;
}

.location-heading strong {
  color: var(--slate);
  font-weight: 700;
  margin-top: 2px;
}

.map-frame {
  background: var(--line);
  border-radius: 18px;
  grid-column: 2;
  grid-row: 1 / span 2;
  height: 320px;
  overflow: hidden;
}

.map-frame iframe {
  border: 0;
  height: 100%;
  width: 100%;
}

.maps-button {
  align-items: center;
  background: var(--white);
  border: 1px solid #cbd5df;
  border-radius: 14px;
  color: var(--navy-950);
  display: flex;
  font-size: 16px;
  font-weight: 700;
  gap: 12px;
  grid-column: 1;
  justify-content: center;
  margin-top: 0;
  min-height: 62px;
  transition: border-color .25s ease, box-shadow .25s ease, transform .25s ease;
}

.maps-button:hover {
  border-color: var(--blue);
  box-shadow: 0 12px 28px rgba(0, 102, 106, .14);
  transform: translateY(-2px);
}

.contact {
  align-items: center;
  background: linear-gradient(120deg, var(--teal), var(--blue));
  color: var(--white);
  display: flex;
  justify-content: space-between;
  min-height: 360px;
  padding: 80px clamp(24px, 7vw, 120px);
  position: relative;
}

.contact::after {
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 50%;
  content: "";
  height: 420px;
  position: absolute;
  right: 8%;
  top: -280px;
  width: 420px;
}

.contact h2 {
  font-size: clamp(46px, 5vw, 82px);
  line-height: 1;
  margin: 0;
  max-width: 920px;
}

.contact h2 em {
  color: var(--white);
  font-style: italic;
}

.contact-actions {
  align-items: flex-start;
  display: flex;
  flex: 0 0 auto;
  flex-direction: column;
  gap: 24px;
  margin-left: 40px;
  position: relative;
  z-index: 2;
}

.contact .button {
  flex: 0 0 auto;
}

.contact address {
  color: rgba(255, 255, 255, .72);
  display: grid;
  font-size: 11px;
  font-style: normal;
  gap: 5px;
  line-height: 1.5;
}

.contact address a {
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  margin-top: 6px;
}

footer a:hover {
  color: var(--white);
}

footer {
  align-items: center;
  background: var(--navy-950);
  color: rgba(255, 255, 255, .65);
  display: grid;
  font-size: 10px;
  grid-template-columns: 1fr auto 1fr;
  min-height: 110px;
  padding: 30px clamp(24px, 5vw, 84px);
}

.brand-footer {
  background: var(--white);
  border-radius: 4px;
  font-size: 17px;
  padding: 8px 12px;
}

.brand-footer .brand-mark-image {
  height: 36px;
  width: 46px;
}

.brand-footer .brand-wordmark {
  font-size: 21px;
}

footer p {
  margin: 0;
}

footer > span {
  justify-self: end;
}

.whatsapp-float {
  align-items: center;
  background: transparent;
  border: 0;
  border-radius: 999px;
  bottom: 22px;
  box-shadow: none;
  color: var(--navy-950);
  display: flex;
  height: 58px;
  justify-content: center;
  right: 22px;
  padding: 8px;
  opacity: 0;
  pointer-events: none;
  position: fixed;
  transform: translateY(12px);
  transition: box-shadow .25s ease, opacity .25s ease, transform .25s ease;
  width: 58px;
  z-index: 120;
}

.whatsapp-float.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.whatsapp-float:hover {
  box-shadow: none;
  transform: translateY(-3px);
}

.whatsapp-float img {
  display: block;
  filter: drop-shadow(0 12px 16px rgba(8, 26, 44, .28));
  height: 54px;
  width: 54px;
}

.whatsapp-float span {
  display: none;
}

.reveal-ready {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .75s ease, transform .75s cubic-bezier(.16, 1, .3, 1);
}

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

@media (max-width: 1180px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .site-nav {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    padding-top: 150px;
  }

  .hero-copy {
    max-width: 760px;
  }

  .commerce-scene {
    margin: 30px 0 0;
    max-width: 850px;
    width: 100%;
  }

  .hero-media {
    height: 560px;
    margin: 36px 0 0;
    max-width: 900px;
    width: 100%;
  }

  .results {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .result-grid {
    min-height: 170px;
  }

  .validation-note {
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
  }

  .services-title {
    gap: 40px;
    grid-template-columns: .55fr 1.45fr;
  }

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

  .service-card:nth-child(3) {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .service-card:nth-child(4) {
    border-top: 1px solid var(--line);
  }

  .case-grid {
    gap: 16px;
  }
}

@media (max-width: 840px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .site-header.scrolled {
    backdrop-filter: none;
  }

  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: block;
    position: relative;
    z-index: 2;
  }

  .site-nav {
    background: var(--navy-950);
    color: var(--white);
    display: flex;
    flex-direction: column;
    font-family: var(--serif);
    font-size: 36px;
    inset: 88px 0 0;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    position: fixed;
    transition: opacity .25s ease;
    z-index: 1;
  }

  .site-nav.open {
    opacity: 1;
    pointer-events: auto;
  }

  .site-header.scrolled .site-nav {
    top: 72px;
  }

  .hero {
    min-height: auto;
  }

  .commerce-scene {
    height: 520px;
  }

  .hero-media {
    height: 500px;
  }

  .catalog-panel {
    left: 0;
    width: 65%;
  }

  .metric-card,
  .channel-card {
    right: 0;
    width: 38%;
  }

  .metric-growth {
    width: 32%;
  }

  .package-stack {
    left: 2%;
    transform: scale(.8);
    transform-origin: bottom left;
  }

  .marquee-row {
    grid-template-columns: 1fr;
  }

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

  .hero-logo-label {
    border-bottom: 1px solid var(--line);
    border-right: 0;
    padding-block: 14px;
  }

  .hero-logo-track {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 8px 14px;
  }

  .hero-logo-track .wordmark {
    font-size: 14px;
    justify-content: flex-start;
    padding-inline: 5px;
  }

  .hero-logo-track .wordmark img {
    height: 30px;
    margin-right: 8px;
    width: 30px;
  }

  .marquee-label {
    border-bottom: 1px solid var(--line);
    border-right: 0;
    padding-block: 14px;
  }

  .marquee-track {
    min-height: 76px;
  }

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

  .result-grid article:nth-child(3) {
    border-top: 1px solid rgba(255, 255, 255, .2);
  }

  .result-grid article:nth-child(4) {
    border-top: 1px solid rgba(255, 255, 255, .2);
  }

  .services-title,
  .about-layout {
    grid-template-columns: 1fr;
  }

  .cases-header {
    align-items: start;
    flex-direction: column;
    gap: 26px;
  }

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

  .case-card {
    grid-template-columns: .8fr 1.2fr;
    grid-template-rows: 1fr;
    min-height: 460px;
  }

  .contact {
    align-items: flex-start;
    flex-direction: column;
    gap: 40px;
  }

  .contact-actions {
    margin-left: 0;
  }

  .location-card {
    border-radius: 20px;
    grid-template-columns: 1fr;
  }

  .map-frame {
    grid-column: 1;
    grid-row: auto;
    height: 300px;
  }
}

@media (max-width: 600px) {
  .hero {
    padding-inline: 20px;
  }

  .hero h1 {
    font-size: 48px;
  }

  .hero-trust {
    align-items: flex-start;
    flex-direction: column;
    gap: 11px;
  }

  .commerce-scene {
    height: 500px;
    margin-top: 25px;
  }

  .hero-media {
    height: 420px;
    margin-top: 34px;
  }

  .hero-photo {
    object-position: 59% center;
  }

  .catalog-panel {
    height: 310px;
    left: 0;
    padding: 12px;
    top: 20px;
    transform: none;
    width: 88%;
  }

  .product-card {
    min-height: 170px;
    padding-inline: 7px;
  }

  .product {
    height: 105px;
    transform: scale(.75);
  }

  .metric-sales {
    height: 130px;
    right: -4%;
    top: 286px;
    width: 55%;
  }

  .metric-sales svg {
    display: none;
  }

  .metric-growth {
    left: 0;
    right: auto;
    top: 350px;
    width: 40%;
  }

  .channel-card {
    display: none;
  }

  .package-stack {
    bottom: 0;
    left: 5%;
    transform: scale(.65);
  }

  .section-intro {
    margin-bottom: 48px;
  }

  .results,
  .services,
  .cases,
  .about {
    padding-inline: 20px;
  }

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

  .result-grid article {
    padding-inline: 14px;
  }

  .result-grid strong {
    font-size: 48px;
  }

  .services-title {
    padding-bottom: 42px;
  }

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

  .service-card {
    border-left: 0;
    border-top: 1px solid var(--line);
    min-height: 0;
  }

  .case-card {
    grid-template-columns: 1fr;
    grid-template-rows: 230px 1fr;
  }

  .about li {
    align-items: start;
    gap: 8px 14px;
    grid-template-columns: 36px 1fr;
    padding: 20px 0;
  }

  .about li small {
    grid-column: 2;
  }

  .location-section {
    padding: 72px 14px;
  }

  .location-card {
    padding: 24px 18px;
  }

  .location-heading {
    align-items: start;
    gap: 15px;
    grid-template-columns: 44px 1fr;
    margin-bottom: 24px;
  }

  .location-heading > img {
    height: 42px;
    width: 42px;
  }

  .location-heading h2 {
    font-size: 39px;
  }

  .map-frame {
    border-radius: 12px;
    height: 240px;
  }

  .maps-button {
    border-radius: 10px;
    font-size: 14px;
    min-height: 64px;
  }

  .whatsapp-float {
    bottom: 14px;
    height: 54px;
    padding: 8px;
    right: 14px;
    width: 54px;
  }

  footer {
    gap: 18px;
    grid-template-columns: 1fr;
    text-align: left;
  }

  footer > span {
    justify-self: start;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
}
