@font-face {
  font-family: "Manrope";
  src: url("assets/fonts/Manrope-VariableFont_wght.ttf") format("truetype");
  font-weight: 200 900;
}

:root {
  --rail: 1120px;
  --section: clamp(18px, 2.4vw, 28px);
  --navy: #08275b;
  --ink: #071f4f;
  --muted: #4d5868;
  --orange: #ffb31a;
  --blue: #0b62bd;
  --line: #e9e0d2;
  --cream: #fffaf1;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: #fff;
  color: var(--ink);
  font-family: "Manrope", system-ui, sans-serif;
  letter-spacing: 0;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

img { max-width: 100%; }

.page {
  width: 100%;
  overflow: hidden;
  padding: 22px clamp(18px, 4vw, 38px) 24px;
  background:
    radial-gradient(circle at 78% 7%, rgba(255, 179, 26, .08), transparent 25%),
    radial-gradient(circle at 9% 88%, rgba(255, 179, 26, .08), transparent 20%),
    #fff;
}

.nav {
  max-width: var(--rail);
  margin: 0 auto;
  height: 118px;
  display: flex;
  align-items: center;
  gap: 38px;
  position: relative;
  z-index: 10;
}

.brand img {
  width: 108px;
  height: auto;
  object-fit: contain;
  object-position: left center;
  display: block;
}

.brand {
  width: 108px;
  height: 118px;
  overflow: hidden;
  display: block;
}

.nav nav {
  display: flex;
  align-items: center;
  gap: 44px;
  flex: 1;
  justify-content: center;
  font-size: 16.5px;
  font-weight: 900;
}

.nav nav a {
  position: relative;
  padding: 12px 0;
  color: #030915;
  transition: color .18s ease;
}
.nav nav a:hover { color: #030915; }
.nav nav .active::after,
.nav nav a:hover::after,
h1::after,
.intro h2::after,
.card h2::after,
.presence h2::after {
  content: "";
  position: absolute;
  height: 3px;
  background: var(--orange);
  border-radius: 99px;
}
.nav nav .active::after,
.nav nav a:hover::after {
  left: 1px;
  right: 1px;
  bottom: 3px;
  height: 6px;
  background: url("data:image/svg+xml,%3Csvg width='70' height='8' viewBox='0 0 70 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 5.2C15 3.3 29 3.2 42 3.4C52 3.6 61 4 68 4.8' stroke='%23ffb31a' stroke-width='2.7' stroke-linecap='round'/%3E%3C/svg%3E") center / 100% 100% no-repeat;
}

.btn {
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  border-radius: 99px;
  padding: 0 18px;
  font-size: 11px;
  font-weight: 900;
  white-space: nowrap;
  transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease;
}
.btn:hover { transform: translateY(-1px); box-shadow: 0 8px 18px rgba(8, 39, 91, .12); }

.btn-primary { background: linear-gradient(180deg, #ffc133, #ffad13); color: #061b42; }
.btn-secondary { border: 1.5px solid #0d2b60; color: #0d2b60; background: #fff; }
.btn-dark { background: var(--navy); color: #fff; }
.btn-small {
  width: 164px;
  height: 43px;
  font-size: 14px;
  padding: 0 21px;
}

.hero {
  max-width: var(--rail);
  width: 100%;
  margin: 0 auto;
  position: relative;
  min-height: clamp(435px, 43vw, 560px);
  display: grid;
  grid-template-columns: minmax(310px, 36%) 1fr;
  align-items: center;
}

.hero-copy {
  padding-left: 18px;
  padding-top: 18px;
  position: relative;
  z-index: 2;
  min-width: 0;
}

.eyebrow {
  margin: 0 0 11px;
  color: #f2a900;
  font-size: 10.5px;
  font-weight: 900;
  letter-spacing: .04em;
  text-transform: uppercase;
}

h1 {
  position: relative;
  margin: 0 0 28px;
  font-size: clamp(41px, 3.25vw, 50px);
  line-height: .99;
  letter-spacing: 0;
  font-weight: 900;
  max-width: 390px;
}
h1::after { width: min(270px, 85%); left: 0; bottom: -7px; }
h1::after {
  height: 9px;
  width: min(330px, 94%);
  bottom: -10px;
  background: url("data:image/svg+xml,%3Csvg width='340' height='12' viewBox='0 0 340 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 7.9C62 2.8 125 4.6 182 4.2C234 3.8 285 4.4 336 6.4' stroke='%23ffb31a' stroke-width='4.2' stroke-linecap='round'/%3E%3Cpath d='M7 9.5C79 6.3 155 7.2 224 6.7C263 6.4 300 7 334 8.3' stroke='%23f2a900' stroke-width='2.2' stroke-linecap='round' opacity='.95'/%3E%3C/svg%3E") center / 100% 100% no-repeat;
}

.hero-copy p {
  margin: 0 0 20px;
  font-size: 13px;
  line-height: 1.5;
  color: var(--muted);
  max-width: 295px;
  font-weight: 500;
}
.hero-copy > p:not(.eyebrow) {
  font-size: 14px;
  max-width: 315px;
}

.hero-actions { display: flex; gap: 13px; align-items: center; }
.hero-actions .btn { height: 36px; padding: 0 18px; }

.hero-art {
  position: absolute;
  right: -20px;
  top: 43px;
  width: min(64%, 705px);
  height: auto;
  aspect-ratio: 570 / 405;
  object-fit: cover;
}

.intro {
  max-width: var(--rail);
  width: 100%;
  margin: 1px auto 0;
}
.intro h2 {
  position: relative;
  text-align: center;
  margin: 0 0 28px;
  font-size: 24px;
  line-height: 1.08;
  font-weight: 900;
}
.intro h2::after {
  width: 118px;
  height: 8px;
  left: 50%;
  transform: translateX(-50%);
  bottom: -8px;
  background: url("data:image/svg+xml,%3Csvg width='130' height='10' viewBox='0 0 130 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3 6.6C24 3.8 46 3.4 68 3.7C88 3.9 108 4.6 127 6.2' stroke='%23ffb31a' stroke-width='3.2' stroke-linecap='round'/%3E%3Cpath d='M5 7.8C31 5.9 58 5.7 83 6C99 6.2 114 6.7 126 7.5' stroke='%23f2a900' stroke-width='1.7' stroke-linecap='round' opacity='.9'/%3E%3C/svg%3E") center / 100% 100% no-repeat;
}

.dual-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  padding: 0;
}

.split-card {
  height: 250px;
  border-radius: 8px;
  overflow: hidden;
  padding: 28px 31px;
  background-size: auto 100%;
  background-position: right center;
  background-repeat: no-repeat;
  position: relative;
  box-shadow: 0 12px 35px rgba(8, 39, 91, .05);
}

.split-card.own {
  background-color: #fff8eb;
  background-image: linear-gradient(90deg, #fff8eb 0%, rgba(255,248,235,.96) 48%, rgba(255,248,235,.32) 68%, rgba(255,248,235,0) 82%), url("assets/own-card-art.png");
}
.split-card.retail {
  background-color: #f3f8ff;
  background-image: linear-gradient(90deg, #f3f8ff 0%, rgba(243,248,255,.97) 50%, rgba(243,248,255,.48) 70%, rgba(243,248,255,0) 84%), url("assets/retail-card-art.png");
}

.icon, .step-icon {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 900;
  font-size: 22px;
  margin-bottom: 24px;
}
.icon {
  box-shadow: inset 0 0 0 1.5px rgba(255,255,255,.55), 0 0 0 1px rgba(255, 179, 26, .25), 0 10px 22px rgba(8, 39, 91, .08);
}
.icon svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.orange { background: var(--orange); }
.blue { background: #125eb8; }
.navy { background: var(--navy); }

.split-card h3 {
  margin: 0;
  font-size: 22px;
  line-height: 1.08;
  font-weight: 900;
  max-width: 340px;
  margin-bottom: 28px;
}

.circle-link {
  position: absolute;
  left: 31px;
  bottom: 36px;
  width: 43px;
  height: 43px;
  border: 1.4px solid rgba(8, 39, 91, .8);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 900;
  font-size: 18px;
  background: rgba(255, 255, 255, .82);
  box-shadow: inset 0 0 0 5px rgba(255, 255, 255, .7);
  transition: transform .18s ease, border-color .18s ease, background-color .18s ease;
}
.split-card.own .circle-link { border-color: rgba(255, 179, 26, .9); }
.circle-link:hover {
  transform: translateX(2px);
  border-color: var(--navy);
  background: #fff;
}
.circle-link span { transform: translateY(-1px); }

.process-panel,
.portfolio,
.card,
.partner {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 253, 248, .72);
  box-shadow: 0 14px 40px rgba(8, 39, 91, .04);
}

.process-panel {
  max-width: var(--rail);
  width: 100%;
  margin: var(--section) auto;
  min-height: 230px;
  display: grid;
  grid-template-columns: 360px 1fr;
  align-items: center;
  padding: 32px 34px;
  background:
    radial-gradient(circle at 23% 75%, rgba(8, 39, 91, .05), transparent 18%),
    rgba(255, 253, 248, .72);
}

.process-lead {
  border-right: 1px solid #ddd7cc;
  padding-right: 44px;
  min-width: 0;
}
.process-lead h2,
.portfolio-copy h2 {
  margin: 0;
  font-size: 20px;
  line-height: 1.13;
  font-weight: 900;
}
.process-lead span,
.portfolio-copy span,
.partner p { color: #ffa900; }

.process-steps { display: grid; grid-template-columns: repeat(3, 1fr); text-align: center; gap: 0; }
.process-steps article {
  min-height: 170px;
  padding: 0 28px;
  border-right: 1px solid #ddd7cc;
  position: relative;
}
.process-steps article:last-child { border-right: 0; }
.process-steps article:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 22px;
  right: -45px;
  width: 90px;
  height: 15px;
  background: url("data:image/svg+xml,%3Csvg width='92' height='16' viewBox='0 0 92 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 8h70' stroke='%2308275b' stroke-width='1.6' stroke-linecap='round' stroke-dasharray='1 7'/%3E%3Cpath d='m68 3 7 5-7 5' stroke='%2308275b' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M80 8h10' stroke='%2308275b' stroke-width='1.6' stroke-linecap='round' stroke-dasharray='1 7'/%3E%3C/svg%3E") center / contain no-repeat;
}
.step-icon {
  margin: 0 auto 24px;
  width: 62px;
  height: 62px;
  border: 3px solid #fff;
  box-shadow: 0 0 0 1px #dfe4ee, 0 0 0 7px #f5f9ff, 0 0 0 8px #dfe4ee;
  font-size: 18px;
}
.step-icon svg {
  width: 33px;
  height: 33px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.process-steps h3 { margin: 0 0 20px; font-size: 17px; line-height: 1.05; font-weight: 900; }
.process-steps p { margin: 0 auto; color: #2f3540; font-size: 12px; line-height: 1.42; font-weight: 600; max-width: 150px; }

.portfolio {
  max-width: var(--rail);
  width: 100%;
  margin: var(--section) auto 22px;
  height: 204px;
  display: grid;
  grid-template-columns: 330px 1fr;
  overflow: hidden;
}
.portfolio-copy {
  padding: 24px 28px 22px;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.portfolio-copy h2 {
  font-size: 21px;
  line-height: 1.08;
  max-width: 285px;
}
.portfolio-copy p { margin: 8px 0 18px; font-size: 11px; line-height: 1.28; color: #333b47; max-width: 260px; }
.portfolio .btn { height: 31px; font-size: 9.5px; padding: 0 17px; margin-top: auto; }
.portfolio img { height: 204px; width: 100%; object-fit: cover; object-position: center; }

.brands { max-width: var(--rail); width: 100%; margin: 0 auto; padding: 0; }
.section-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; margin-bottom: 12px; }
.section-head .eyebrow { margin-bottom: 4px; }
.section-head h2 { margin: 0; font-size: 21px; font-weight: 900; }
.section-head a { font-size: 10px; font-weight: 900; display: flex; gap: 14px; align-items: center; }
.brand-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 10px; }
.brand-tile {
  height: 92px;
  border-radius: 7px;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: white;
  font-weight: 900;
  text-align: center;
  font-size: 28px;
  line-height: .85;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.15);
  transition: transform .18s ease, box-shadow .18s ease;
}
.brand-tile:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(8, 39, 91, .1); }
.brand-tile img { max-width: 80%; max-height: 74%; object-fit: contain; }
.yellow { background: #ffd21d; }
.red { background: #f51f26; }
.green { background: #88c313; }
.navy.brand-tile { background: #092b62; }
.aqua { background: #0c6fce; }

.brand-notes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 16px;
}
.brand-notes article {
  min-height: 152px;
  padding: 20px 22px 20px;
  border: 1px solid rgba(233, 224, 210, .9);
  border-radius: 8px;
  background:
    radial-gradient(circle at 88% 20%, rgba(255, 179, 26, .12), transparent 26%),
    linear-gradient(180deg, rgba(255, 255, 255, .92), rgba(255, 250, 241, .7));
  box-shadow: 0 14px 35px rgba(8, 39, 91, .045);
  position: relative;
  overflow: hidden;
}
.brand-notes article::after {
  content: "";
  position: absolute;
  right: 18px;
  bottom: 12px;
  width: 72px;
  height: 72px;
  opacity: .035;
  background: url("assets/alliance-logo.png") center / contain no-repeat;
  pointer-events: none;
}
.note-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  margin-bottom: 16px;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.55), 0 0 0 5px #f7f9fc, 0 0 0 6px #dfe4ee;
}
.note-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.brand-notes h3 {
  margin: 0 0 8px;
  font-size: 15px;
  line-height: 1.1;
  font-weight: 900;
  position: relative;
  z-index: 1;
}
.brand-notes p {
  margin: 0;
  color: #4f5967;
  font-size: 11.5px;
  line-height: 1.45;
  font-weight: 600;
  position: relative;
  z-index: 1;
}

.info-grid {
  max-width: var(--rail);
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  padding: 20px 0 18px;
}
.card { height: 152px; padding: 18px 29px; position: relative; overflow: hidden; min-width: 0; }
.card h2 {
  position: relative;
  margin: 0 0 20px;
  font-size: 21px;
  line-height: 1;
  font-weight: 900;
}
.card h2::after { width: 43px; left: 0; bottom: -8px; }
.why ul { margin: 0; padding: 0; list-style: none; display: grid; gap: 8px; font-size: 11.5px; font-weight: 800; }
.why li { display: flex; gap: 13px; align-items: flex-start; }
.why li::before {
  content: "✓";
  width: 19px;
  height: 19px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  font-size: 12px;
}
.presence p { margin: 0; font-size: 10.5px; line-height: 1.45; color: #1e2634; font-weight: 700; }
.presence img { position: absolute; right: 6px; bottom: 0; width: 250px; height: 110px; object-fit: cover; z-index: 0; }
.presence h2,
.presence p { position: relative; z-index: 1; }

.partner {
  max-width: var(--rail);
  width: 100%;
  margin: 0 auto var(--section);
  height: 132px;
  border: 0;
  border-radius: 20px;
  display: grid;
  grid-template-columns: 420px 1fr;
  align-items: center;
  padding-left: 220px;
  background: #fbf7ef;
  position: relative;
  overflow: hidden;
}
.partner > div {
  position: relative;
  z-index: 1;
}
.partner h2 { margin: 0; font-size: 25px; line-height: .95; font-weight: 900; }
.partner p { margin: 2px 0 13px; font-size: 17px; line-height: 1; font-weight: 900; }
.partner .btn { height: 32px; padding: 0 18px; font-size: 10px; }
.partner img { position: absolute; right: 5px; bottom: -3px; width: 390px; height: 125px; object-fit: cover; }

.site-footer {
  max-width: var(--rail);
  width: 100%;
  margin: 0 auto;
  padding: 30px 0 8px;
  display: grid;
  grid-template-columns: 1.25fr .9fr .9fr;
  gap: 32px;
  border-top: 1px solid var(--line);
  color: #11284d;
}
.footer-brand img {
  width: 98px;
  display: block;
  margin-bottom: 14px;
}
.footer-brand p,
.fineprint {
  margin: 0;
  color: #596372;
  font-size: 11.5px;
  line-height: 1.55;
  font-weight: 600;
  max-width: 270px;
}
.site-footer nav {
  display: grid;
  gap: 9px;
  align-content: start;
  font-size: 11.5px;
  font-weight: 850;
}
.site-footer nav a:hover,
.footer-contact a:hover { color: var(--blue); }
.footer-contact {
  display: grid;
  gap: 9px;
  align-content: start;
  justify-items: start;
  font-size: 11.5px;
  font-weight: 850;
}
.footer-contact span:first-child {
  color: #596372;
  font-weight: 700;
}
.footer-contact a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.fineprint {
  grid-column: 1 / -1;
  max-width: none;
  padding-top: 8px;
}

html.js-reveal .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s ease, transform .7s ease;
}
html.js-reveal .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }
  html.js-reveal .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (min-width: 1200px) {
  .hero-copy { padding-left: 0; }
}

@media (max-width: 980px) {
  :root { --rail: 900px; }

  .nav { gap: 18px; }
  .brand { width: 100px; height: 109px; }
  .brand img { width: 100px; }
  .nav nav { gap: 22px; }

  .process-panel { grid-template-columns: minmax(260px, 35%) 1fr; }
  .process-steps article { padding: 0 14px; }
  .brand-notes { grid-template-columns: repeat(3, 1fr); }
  .partner { padding-left: 170px; }
}

@media (max-width: 820px) {
  .nav {
    height: auto;
    flex-wrap: wrap;
    row-gap: 14px;
  }

  .nav nav {
    order: 3;
    width: 100%;
    justify-content: space-between;
    gap: 16px;
    overflow-x: auto;
    padding-bottom: 4px;
  }
  .nav nav a[href="#partner"] { display: none; }

  .nav .btn { margin-left: auto; }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 44px;
  }

  .hero-copy { padding-left: 0; padding-top: 0; }
  h1 { font-size: clamp(38px, 9vw, 54px); max-width: 520px; }
  .hero-copy p { max-width: 430px; }

  .hero-art {
    position: relative;
    top: auto;
    right: auto;
    width: min(720px, calc(100% + 80px));
    margin: 28px -40px 0 auto;
    justify-self: end;
  }

  .dual-cards,
  .info-grid,
  .brand-notes {
    grid-template-columns: 1fr;
  }

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

  .process-panel,
  .portfolio {
    grid-template-columns: 1fr;
    height: auto;
  }

  .process-panel { padding: 24px; }
  .process-lead {
    border-right: 0;
    border-bottom: 1px solid #ddd7cc;
    padding: 0 0 20px;
    margin-bottom: 22px;
  }
  .process-steps { grid-template-columns: 1fr; gap: 22px; }
  .process-steps article { min-height: auto; border-right: 0; padding: 0 22px; }
  .process-steps article::after { display: none; }

  .portfolio img { height: auto; min-height: 220px; }
  .card { height: auto; min-height: 150px; }
  .presence img { width: min(70%, 360px); height: auto; opacity: .95; }
  .partner { padding-left: 24px; grid-template-columns: 1fr; height: 170px; }
  .partner img { opacity: .52; }
  .site-footer {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 560px) {
  .page { padding: 18px 16px 24px; }
  h1, h2, h3, p, li { overflow-wrap: break-word; }
  .brand { width: 86px; height: 94px; }
  .brand img { width: 86px; }
  .nav .btn-small { display: none; }
  .nav nav {
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 4px 18px;
    overflow: visible;
    font-size: 10px;
  }
  .hero { padding-top: 30px; }
  h1 {
    width: 100%;
    max-width: 100%;
    font-size: clamp(34px, 10.4vw, 40px);
    line-height: 1.02;
  }
  .hero-copy p { max-width: 100%; }
  .hero-actions { flex-wrap: wrap; }
  .hero-actions .btn { width: 100%; }
  .hero-art {
    width: calc(100% + 24px);
    margin: 24px -12px 0;
  }
  .intro h2 { font-size: 22px; }
  .split-card { height: 210px; }
  .process-panel { padding: 22px 18px; }
  .process-lead h2,
  .portfolio-copy h2 { font-size: 19px; }
  .process-lead h2,
  .process-steps p,
  .process-steps h3,
  .portfolio-copy,
  .card > * {
    max-width: 320px;
  }
  .portfolio-copy { padding: 18px; }
  .brand-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .brand-tile { height: 96px; }
  .brand-tile:last-child { grid-column: 1 / -1; }
  .brand-tile img {
    max-width: 150px;
    max-height: 72px;
  }
  .section-head a { display: none; }
  .brand-notes article { min-height: 0; }
  .info-grid { gap: 14px; }
  .card { padding: 18px; }
  .presence img {
    position: relative;
    display: block;
    width: 100%;
    margin-top: 12px;
    right: auto;
  }
  .partner {
    height: 190px;
    border-radius: 14px;
    background:
      linear-gradient(90deg, #fbf7ef 0%, rgba(251, 247, 239, .94) 56%, rgba(251, 247, 239, .76) 100%),
      #fbf7ef;
  }
  .partner h2 { font-size: 24px; }
  .partner img {
    right: -78px;
    opacity: .32;
  }
  .site-footer {
    grid-template-columns: 1fr;
    padding-top: 24px;
  }
  .fineprint { padding-top: 0; }
}


/* =========================================================================
   OUR BRANDS PAGE — extends existing design system
   ========================================================================= */

.page-our-brands .nav nav .active::after { /* ensure squiggle still applies on this page */
  display: block;
}

/* ---------- HERO ---------- */
.brands-hero {
  max-width: var(--rail);
  width: 100%;
  margin: 0 auto;
  position: relative;
  min-height: clamp(380px, 36vw, 480px);
  display: grid;
  grid-template-columns: minmax(310px, 42%) 1fr;
  align-items: center;
}
.brands-hero-copy { padding-left: 18px; padding-top: 10px; position: relative; z-index: 2; }
.brands-hero-copy h1 {
  position: relative;
  margin: 0 0 18px;
  font-size: clamp(38px, 3.2vw, 50px);
  line-height: 1.0;
  font-weight: 900;
  max-width: 430px;
}
.brands-hero-copy h1::after {
  width: min(310px, 90%);
  height: 9px;
  bottom: -10px;
  background: url("data:image/svg+xml,%3Csvg width='340' height='12' viewBox='0 0 340 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 7.9C62 2.8 125 4.6 182 4.2C234 3.8 285 4.4 336 6.4' stroke='%23ffb31a' stroke-width='4.2' stroke-linecap='round'/%3E%3C/svg%3E") center / 100% 100% no-repeat;
}
.brands-hero-copy p {
  margin: 0 0 22px;
  font-size: 14px;
  line-height: 1.5;
  color: var(--muted);
  max-width: 380px;
  font-weight: 500;
}
.brands-hero-art {
  position: absolute;
  right: -10px;
  top: 36px;
  width: min(56%, 580px);
  height: auto;
  aspect-ratio: 16 / 11;
  object-fit: cover;
}

/* ---------- STAT STRIP ---------- */
.stat-strip {
  max-width: var(--rail);
  margin: 38px auto 14px;
  background: var(--cream);
  border-radius: 14px;
  padding: 22px 28px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  border: 1px solid var(--line);
}
.stat-strip article { display: flex; flex-direction: column; gap: 4px; padding: 0 6px; }
.stat-strip article + article { border-left: 1px solid var(--line); padding-left: 24px; }
.stat-num {
  font-size: 42px;
  font-weight: 900;
  line-height: 1;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.stat-label {
  font-size: 11px;
  font-weight: 800;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ---------- BRAND BLOCK HEADER ---------- */
.brand-block-head {
  max-width: var(--rail);
  margin: 50px auto 18px;
  text-align: center;
  padding: 0 14px;
}
.brand-block-head h2 {
  position: relative;
  display: inline-block;
  margin: 0 0 14px;
  font-size: clamp(26px, 2.1vw, 32px);
  line-height: 1.05;
  font-weight: 900;
  letter-spacing: -0.01em;
}
.brand-block-head h2::after {
  content: "";
  position: absolute;
  width: 120px;
  height: 8px;
  left: 50%;
  transform: translateX(-50%);
  bottom: -8px;
  background: url("data:image/svg+xml,%3Csvg width='130' height='10' viewBox='0 0 130 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3 6.6C24 3.8 46 3.4 68 3.7C88 3.9 108 4.6 127 6.2' stroke='%23ffb31a' stroke-width='3.2' stroke-linecap='round'/%3E%3C/svg%3E") center / 100% 100% no-repeat;
}
.brand-block-head p {
  font-size: 13px;
  color: var(--muted);
  max-width: 580px;
  margin: 16px auto 0;
  line-height: 1.55;
}

/* ---------- BRAND FEATURE CARD ---------- */
.brand-feature {
  max-width: var(--rail);
  width: 100%;
  margin: 22px auto 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: 18px;
  overflow: hidden;
  min-height: 360px;
  box-shadow: 0 14px 38px rgba(8, 39, 91, 0.06);
  border: 1px solid var(--line);
}
.brand-feature-content {
  padding: 36px 38px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}
.brand-feature-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.badge {
  display: inline-flex;
  align-items: center;
  height: 24px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.badge-owned { background: var(--orange); color: var(--ink); }
.badge-distributed { background: var(--ink); color: #fff; }
.brand-feature-cats {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
}
.brand-feature-logo {
  height: 44px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  object-position: left center;
  display: block;
}
.feature-aqua .brand-feature-logo {
  /* aqua plus is a JPG; clip a rectangle so it shows clean */
  height: 44px;
  width: 130px;
  object-fit: cover;
  object-position: center;
  border-radius: 6px;
}
.brand-feature h3 {
  position: relative;
  margin: 0;
  font-size: clamp(24px, 2.2vw, 32px);
  line-height: 1.1;
  font-weight: 900;
  letter-spacing: -0.01em;
  color: var(--ink);
  max-width: 420px;
}
.brand-feature h3 span { color: var(--orange); }
.brand-feature-content > p {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--muted);
  max-width: 420px;
  font-weight: 500;
}
.stockists {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 4px;
}
.stockists-label {
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0;
}
.stockists ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.stockists li {
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(8, 39, 91, 0.1);
  padding: 5px 10px;
  border-radius: 999px;
  font-size: 11.5px;
  font-weight: 700;
  color: var(--ink);
}
.brand-feature .btn { align-self: flex-start; margin-top: 6px; height: 36px; font-size: 12px; }

.brand-feature-art {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.brand-feature-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Per-brand colour theming */
.feature-yellow { background: linear-gradient(135deg, #fff5d2 0%, #fff8eb 100%); }
.feature-yellow .brand-feature-art { background: #ffd72b; }
.feature-yellow .stockists li { background: rgba(255, 255, 255, 0.85); }

.feature-red { background: linear-gradient(135deg, #ffe1e0 0%, #fff3f2 100%); }
.feature-red .brand-feature-art { background: #c43a3a; }

.feature-green { background: linear-gradient(135deg, #e1eedc 0%, #f2faec 100%); }
.feature-green .brand-feature-art { background: #4a8b3a; }

.feature-navy { background: linear-gradient(135deg, #dbe5f4 0%, #eef2fa 100%); }
.feature-navy .brand-feature-art { background: var(--navy); }

.feature-aqua { background: linear-gradient(135deg, #c9eef0 0%, #e9f7f8 100%); }
.feature-aqua .brand-feature-art { background: #1ea0ad; }

/* Alternate image side for visual rhythm */
.feature-flip {
  grid-template-columns: 1fr 1fr;
}
.feature-flip .brand-feature-content { order: 2; }
.feature-flip .brand-feature-art { order: 1; }

/* ---------- CATEGORIES BLOCK ---------- */
.categories-block {
  max-width: var(--rail);
  margin: 60px auto 0;
}
.categories-head { text-align: center; margin-bottom: 24px; padding: 0 16px; }
.categories-head h2 {
  position: relative;
  display: inline-block;
  margin: 0 0 12px;
  font-size: clamp(26px, 2.1vw, 32px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.01em;
}
.categories-head h2::after {
  content: "";
  position: absolute;
  width: 120px; height: 8px;
  left: 50%; transform: translateX(-50%); bottom: -8px;
  background: url("data:image/svg+xml,%3Csvg width='130' height='10' viewBox='0 0 130 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3 6.6C24 3.8 46 3.4 68 3.7C88 3.9 108 4.6 127 6.2' stroke='%23ffb31a' stroke-width='3.2' stroke-linecap='round'/%3E%3C/svg%3E") center / 100% 100% no-repeat;
}
.categories-head p {
  font-size: 13px;
  color: var(--muted);
  max-width: 540px;
  margin: 16px auto 0;
  line-height: 1.55;
}
.categories-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 14px;
}
.category-tile {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.cat-num {
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.1em;
  color: var(--orange);
}
.category-tile h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.category-tile p {
  margin: 0;
  font-size: 12px;
  line-height: 1.45;
  color: var(--muted);
  font-weight: 500;
}

/* ---------- RETAILERS ---------- */
.retailers {
  max-width: var(--rail);
  margin: 60px auto 0;
  background: linear-gradient(135deg, #fff8eb 0%, #fffaf1 60%, #fff8eb 100%);
  border-radius: 18px;
  padding: 32px 36px;
  border: 1px solid var(--line);
}
.retailers-head { text-align: center; margin-bottom: 22px; }
.retailers-head h2 {
  position: relative;
  display: inline-block;
  margin: 0;
  font-size: clamp(22px, 1.8vw, 28px);
  font-weight: 900;
  letter-spacing: -0.01em;
}
.retailers-head h2::after {
  content: "";
  position: absolute;
  width: 90px; height: 7px;
  left: 50%; transform: translateX(-50%); bottom: -8px;
  background: url("data:image/svg+xml,%3Csvg width='130' height='10' viewBox='0 0 130 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3 6.6C24 3.8 46 3.4 68 3.7C88 3.9 108 4.6 127 6.2' stroke='%23ffb31a' stroke-width='3.2' stroke-linecap='round'/%3E%3C/svg%3E") center / 100% 100% no-repeat;
}
.retailer-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 22px;
}
.retailer-region {
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--orange);
  margin: 0 0 12px;
}
.retailer-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.retailer-list li {
  background: #fff;
  border: 1px solid var(--line);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  color: var(--ink);
}

/* Partner CTA — reuse home pattern but a touch smaller margin */
.partner-brands { margin-top: 60px; }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 880px) {
  .brands-hero { grid-template-columns: 1fr; min-height: auto; }
  .brands-hero-art { position: static; width: 100%; margin-top: 16px; }
  .stat-strip { grid-template-columns: 1fr 1fr; padding: 18px; }
  .stat-strip article + article { border-left: 0; padding-left: 6px; }
  .brand-feature { grid-template-columns: 1fr; min-height: auto; }
  .brand-feature .brand-feature-art { min-height: 220px; }
  .feature-flip .brand-feature-content { order: 2; }
  .feature-flip .brand-feature-art { order: 1; }
  .categories-grid { grid-template-columns: 1fr 1fr; }
  .retailer-cols { grid-template-columns: 1fr; gap: 18px; }
}


/* =========================================================================
   WHAT WE DO + PARTNER WITH US — extends design system
   ========================================================================= */

/* Wrap for the dual-cards on what-we-do page so it fits the rail */
.dual-cards-wrap {
  max-width: var(--rail);
  width: 100%;
  margin: 18px auto 0;
}

/* ---------- CAPABILITY GRID (used on What We Do + Partner) ---------- */
.capability-grid {
  max-width: var(--rail);
  width: 100%;
  margin: 22px auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.capability-grid.three-up { grid-template-columns: repeat(3, 1fr); }
.capability-card {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.capability-card-bordered { background: #fff; }
.capability-icon {
  width: 48px; height: 48px;
  border-radius: 50%;
  display: grid; place-items: center;
}
.capability-icon svg { width: 24px; height: 24px; stroke: #fff; fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.capability-icon.orange { background: var(--orange); }
.capability-icon.blue { background: var(--blue); }
.capability-icon.navy { background: var(--navy); }
.capability-card h3 {
  margin: 0;
  font-size: 16.5px;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.capability-card p {
  margin: 0;
  font-size: 12.5px;
  line-height: 1.5;
  color: var(--muted);
  font-weight: 500;
}
.point-list {
  list-style: none;
  margin: 6px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.point-list li {
  font-size: 12px;
  font-weight: 700;
  color: var(--ink);
  padding-left: 18px;
  position: relative;
}
.point-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 6px;
  width: 12px; height: 4px;
  background: var(--orange);
  border-radius: 99px;
}

/* ---------- PROCESS BLOCK ---------- */
.process-block {
  max-width: var(--rail);
  width: 100%;
  margin: 60px auto 0;
}
.process-block-head {
  text-align: center;
  padding: 0 16px;
  margin-bottom: 26px;
}
.process-block-head h2 {
  position: relative;
  display: inline-block;
  margin: 0 0 12px;
  font-size: clamp(26px, 2.1vw, 32px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.01em;
}
.process-block-head h2 span { color: var(--orange); }
.process-block-head h2::after {
  content: "";
  position: absolute;
  width: 120px; height: 8px;
  left: 50%; transform: translateX(-50%); bottom: -8px;
  background: url("data:image/svg+xml,%3Csvg width='130' height='10' viewBox='0 0 130 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3 6.6C24 3.8 46 3.4 68 3.7C88 3.9 108 4.6 127 6.2' stroke='%23ffb31a' stroke-width='3.2' stroke-linecap='round'/%3E%3C/svg%3E") center / 100% 100% no-repeat;
}
.process-block-head p {
  font-size: 13px;
  color: var(--muted);
  max-width: 560px;
  margin: 16px auto 0;
  line-height: 1.55;
}
.process-line {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  position: relative;
}
.process-line::before {
  content: "";
  position: absolute;
  top: 24px; left: 12.5%; right: 12.5%; height: 1px;
  background-image: linear-gradient(to right, rgba(8,39,91,0.25) 50%, transparent 50%);
  background-size: 9px 1px;
  background-repeat: repeat-x;
  z-index: 0;
}
.process-step {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
  z-index: 1;
}
.process-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--orange);
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: -0.01em;
}
.process-step h3 {
  margin: 4px 0 0;
  font-size: 17px;
  font-weight: 900;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.process-step p {
  margin: 0;
  font-size: 12.5px;
  line-height: 1.5;
  color: var(--muted);
  font-weight: 500;
}

/* ---------- PROMISE STRIP ---------- */
.promise-strip {
  max-width: var(--rail);
  width: 100%;
  margin: 22px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.promise-card {
  background: linear-gradient(135deg, #fff5d2 0%, #fff8eb 100%);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.promise-num {
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.1em;
  color: var(--orange);
}
.promise-card h3 {
  margin: 0;
  font-size: 19px;
  font-weight: 900;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.promise-card p {
  margin: 0;
  font-size: 13px;
  line-height: 1.5;
  color: var(--muted);
  font-weight: 500;
}

/* ---------- CONTACT BLOCK ---------- */
.contact-block {
  max-width: var(--rail);
  width: 100%;
  margin: 60px auto 0;
}
.contact-head {
  text-align: center;
  margin-bottom: 24px;
  padding: 0 16px;
}
.contact-head h2 {
  position: relative;
  display: inline-block;
  margin: 0 0 12px;
  font-size: clamp(26px, 2.1vw, 32px);
  font-weight: 900;
  letter-spacing: -0.01em;
}
.contact-head h2::after {
  content: "";
  position: absolute;
  width: 120px; height: 8px;
  left: 50%; transform: translateX(-50%); bottom: -8px;
  background: url("data:image/svg+xml,%3Csvg width='130' height='10' viewBox='0 0 130 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3 6.6C24 3.8 46 3.4 68 3.7C88 3.9 108 4.6 127 6.2' stroke='%23ffb31a' stroke-width='3.2' stroke-linecap='round'/%3E%3C/svg%3E") center / 100% 100% no-repeat;
}
.contact-head p {
  font-size: 13px;
  color: var(--muted);
  max-width: 540px;
  margin: 16px auto 0;
  line-height: 1.55;
}
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.contact-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform .2s ease, box-shadow .2s ease;
}
.contact-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(8, 39, 91, 0.08);
}
.contact-card-cta { background: var(--cream); }
.contact-region {
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--orange);
  margin: 0;
}
.contact-card h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 900;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.contact-link {
  font-size: 14px;
  font-weight: 800;
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1.5px;
}
.contact-link:hover { color: var(--navy); }
.contact-meta {
  margin: 0;
  font-size: 12px;
  line-height: 1.5;
  color: var(--muted);
  font-weight: 500;
}

/* ---------- FAQ BLOCK ---------- */
.faq-block {
  max-width: var(--rail);
  width: 100%;
  margin: 60px auto 0;
}
.faq-head {
  text-align: center;
  margin-bottom: 24px;
}
.faq-head h2 {
  position: relative;
  display: inline-block;
  margin: 0;
  font-size: clamp(24px, 1.9vw, 28px);
  font-weight: 900;
  letter-spacing: -0.01em;
}
.faq-head h2::after {
  content: "";
  position: absolute;
  width: 80px; height: 6px;
  left: 50%; transform: translateX(-50%); bottom: -8px;
  background: url("data:image/svg+xml,%3Csvg width='130' height='10' viewBox='0 0 130 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3 6.6C24 3.8 46 3.4 68 3.7C88 3.9 108 4.6 127 6.2' stroke='%23ffb31a' stroke-width='3.2' stroke-linecap='round'/%3E%3C/svg%3E") center / 100% 100% no-repeat;
}
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.faq-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 18px 22px;
  transition: background .2s ease;
}
.faq-item[open] { background: var(--cream); }
.faq-item summary {
  cursor: pointer;
  font-size: 14.5px;
  font-weight: 800;
  color: var(--ink);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--orange);
  color: var(--ink);
  font-size: 16px;
  font-weight: 900;
  flex-shrink: 0;
}
.faq-item[open] summary::after { content: "−"; }
.faq-item p {
  margin: 12px 0 0;
  font-size: 13px;
  line-height: 1.55;
  color: var(--muted);
  font-weight: 500;
}

/* ---------- RESPONSIVE additions ---------- */
@media (max-width: 880px) {
  .capability-grid,
  .capability-grid.three-up { grid-template-columns: 1fr 1fr; }
  .promise-strip,
  .contact-grid { grid-template-columns: 1fr; }
  .process-line { grid-template-columns: 1fr 1fr; }
  .process-line::before { display: none; }
  .faq-grid { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .capability-grid,
  .capability-grid.three-up { grid-template-columns: 1fr; }
  .process-line { grid-template-columns: 1fr; }
}


/* =========================================================================
   BRAND BREAKOUT — interstitial product feature card between sections
   ========================================================================= */
.brand-breakout {
  max-width: var(--rail);
  width: 100%;
  margin: 28px auto 0;
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: stretch;
  min-height: 280px;
  isolation: isolate;
}
.brand-breakout::before {
  content: "";
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.brand-breakout::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
    rgba(0, 0, 0, 0.55) 0%,
    rgba(0, 0, 0, 0.40) 35%,
    rgba(0, 0, 0, 0.05) 65%,
    rgba(0, 0, 0, 0) 100%);
  z-index: 1;
}
.brand-breakout > * { position: relative; z-index: 2; }
.brand-breakout-copy {
  padding: 36px 38px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
  color: #fff;
}
.brand-breakout .brand-eyebrow {
  font-size: 10.5px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: 0;
}
.brand-breakout h3 {
  margin: 0;
  font-size: clamp(24px, 2.2vw, 32px);
  line-height: 1.05;
  letter-spacing: -0.015em;
  font-weight: 900;
  color: #fff;
}
.brand-breakout h3 span { display: block; opacity: 0.92; font-weight: 800; }
.brand-breakout p {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.5;
  color: rgba(255,255,255,0.92);
  max-width: 380px;
  font-weight: 500;
}
.brand-breakout .btn {
  align-self: flex-start;
  margin-top: 6px;
  height: 36px;
  font-size: 12px;
}

/* Product pack image floating on right */
.brand-breakout-pack {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.brand-breakout-pack img {
  max-width: 80%;
  max-height: 240px;
  object-fit: contain;
  filter: drop-shadow(0 18px 30px rgba(0,0,0,0.35));
  transform: rotate(-6deg);
  transition: transform .4s cubic-bezier(.34, 1.56, .64, 1);
}
.brand-breakout:hover .brand-breakout-pack img {
  transform: rotate(-3deg) translateY(-6px);
}

/* Per-brand background photo + accent kicker color */
.breakout-well-naturally::before { background-image: url("assets/breakouts/well-naturally.png"); background-position: center 50%; }
.breakout-well-naturally .brand-eyebrow { color: #F8C8D4; }

.breakout-house-of-yum::before  { background-image: url("assets/breakouts/house-of-yum.png"); background-position: center 18%; }
.breakout-house-of-yum  .brand-eyebrow { color: #FFD2B8; }

.breakout-reward-pet::before    { background-image: url("assets/breakouts/reward-pet-treat.png"); background-position: center 18%; }
.breakout-reward-pet    .brand-eyebrow { color: #F5E6CE; }

.breakout-aqua-plus::before     { background-image: url("assets/breakouts/aqua-plus.png"); background-position: center 22%; }
.breakout-aqua-plus     .brand-eyebrow { color: #CCEAFA; }

@media (max-width: 760px) {
  .brand-breakout { grid-template-columns: 1fr; min-height: 360px; }
  .brand-breakout-pack { padding: 0 24px 24px; min-height: 180px; }
  .brand-breakout-pack img { max-height: 160px; }
}

/* =========================================================================
   HOME FAQ — Common Questions section (richer brand treatment)
   ========================================================================= */
.home-faq {
  max-width: var(--rail);
  width: 100%;
  margin: 70px auto 10px;
  position: relative;
}
.home-faq::before,
.home-faq::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}
.home-faq::before {
  width: 14px; height: 14px;
  background: var(--orange);
  top: 18px; left: -2px;
  opacity: 0.7;
}
.home-faq::after {
  width: 8px; height: 8px;
  background: var(--orange);
  top: 70px; right: 12px;
  opacity: 0.5;
}
.home-faq-head {
  text-align: center;
  margin-bottom: 38px;
  position: relative;
  z-index: 1;
}
.home-faq-head .eyebrow {
  margin-bottom: 12px;
}
.home-faq-head h2 {
  position: relative;
  display: inline-block;
  margin: 0;
  font-size: clamp(28px, 2.4vw, 36px);
  font-weight: 900;
  letter-spacing: -0.015em;
  line-height: 1.1;
}
.home-faq-head h2::after {
  content: "";
  position: absolute;
  width: 220px; height: 12px;
  left: 50%; transform: translateX(-50%); bottom: -14px;
  background: url("data:image/svg+xml,%3Csvg width='240' height='14' viewBox='0 0 240 14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 8.5C45 4 90 3.5 135 4.5C175 5.3 210 6.6 235 8.4' stroke='%23ffb31a' stroke-width='3.5' stroke-linecap='round'/%3E%3Cpath d='M8 10.5C58 7 115 6.8 165 7.6C195 8.1 220 9 233 9.8' stroke='%23f2a900' stroke-width='2' stroke-linecap='round' opacity='0.85'/%3E%3C/svg%3E") center / 100% 100% no-repeat;
}

.home-faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  position: relative;
  z-index: 1;
}

.faq-card {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, var(--cream) 0%, #fffbf2 100%);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 30px 32px 30px 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  isolation: isolate;
}
.faq-card::before {
  /* gold accent strip on the left edge that grows on hover */
  content: "";
  position: absolute;
  left: 0; top: 18px; bottom: 18px;
  width: 4px;
  background: var(--orange);
  border-radius: 0 4px 4px 0;
  transform: scaleY(0.35);
  transform-origin: center;
  transition: transform .35s cubic-bezier(0.34, 1.56, 0.64, 1);
  z-index: 2;
}
.faq-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 50px rgba(8, 39, 91, 0.12);
  border-color: rgba(255, 179, 26, 0.45);
}
.faq-card:hover::before { transform: scaleY(1); }

/* Big ghost number watermark in the corner */
.faq-card .faq-num {
  position: absolute;
  top: -8px;
  right: 14px;
  font-size: 92px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.05em;
  color: var(--orange);
  opacity: 0.10;
  pointer-events: none;
  user-select: none;
  transition: opacity .35s ease, transform .35s ease;
  z-index: 0;
  font-feature-settings: "tnum";
}
.faq-card:hover .faq-num {
  opacity: 0.20;
  transform: translateY(-4px) rotate(-3deg);
}

.faq-card h3 {
  position: relative;
  z-index: 1;
  margin: 0;
  font-size: 17px;
  font-weight: 900;
  letter-spacing: -0.01em;
  color: var(--ink);
  line-height: 1.25;
  padding-right: 60px; /* leave space for ghost number */
}
.faq-card h3::after {
  /* small gold underline accent under each question */
  content: "";
  display: block;
  width: 36px;
  height: 3px;
  background: var(--orange);
  border-radius: 99px;
  margin-top: 10px;
  transition: width .35s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.faq-card:hover h3::after { width: 64px; }

.faq-card p {
  position: relative;
  z-index: 1;
  margin: 0;
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--muted);
  font-weight: 500;
}
.faq-card a {
  color: var(--blue);
  font-weight: 800;
  text-decoration: none;
  border-bottom: 2px solid rgba(11, 98, 189, 0.25);
  padding-bottom: 1px;
  transition: border-color .2s ease, color .2s ease;
}
.faq-card a:hover {
  color: var(--navy);
  border-bottom-color: var(--orange);
}

/* Process-lede sub paragraph (used elsewhere on home) */
.process-lede-sub {
  margin-top: 14px;
  font-size: 13px;
  line-height: 1.55;
  color: var(--muted);
  font-weight: 500;
  max-width: 480px;
}

/* Stagger entry animation */
.home-faq.is-visible .faq-card {
  animation: faqRise 0.7s cubic-bezier(0.25, 0.1, 0.25, 1) both;
}
.home-faq.is-visible .faq-card:nth-child(1) { animation-delay: 0.05s; }
.home-faq.is-visible .faq-card:nth-child(2) { animation-delay: 0.15s; }
.home-faq.is-visible .faq-card:nth-child(3) { animation-delay: 0.25s; }
.home-faq.is-visible .faq-card:nth-child(4) { animation-delay: 0.35s; }
.home-faq.is-visible .faq-card:nth-child(5) { animation-delay: 0.45s; }
.home-faq.is-visible .faq-card:nth-child(6) { animation-delay: 0.55s; }
@keyframes faqRise {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

@media (max-width: 760px) {
  .home-faq-grid { grid-template-columns: 1fr; }
  .faq-card { padding: 26px 24px; }
  .faq-card .faq-num { font-size: 72px; right: 10px; }
  .faq-card h3 { font-size: 16px; padding-right: 50px; }
}
