/* LOB 01 - Breakfast Cereals (Retail)
   Extracted verbatim from <style>
   in design file lob-01-breakfast-cereals-retail.html (block 3 of 3).
   Load order matters -- keep the numeric prefix. */

:root {
  --ink: #1c1611;
  --ink-soft: #473b30;
  --cream: #f6EFE2;
  --cream-2: #f4ecdf;
  --paper: #ffffff;
  --amber: #e85d1f;
  --amber-2: #f4933a;
  --amber-deep: #bf4310;
  --honey: #f2a65a;
  --muted: #8c7f70;
  --muted-2: #a99c8c;
  --line: rgba(28, 22, 17, .10);
  --sky: #9dc7dd;
  --leaf: #a6cfa0;
  --bloom: #f0b8c4;
  --leaf-d: #4f8a54;
  --sky-d: #3f7d9c;
  --shadow-sm: 0 1px 2px rgba(28, 22, 17, .05), 0 4px 14px rgba(28, 22, 17, .05);
  --shadow: 0 8px 30px rgba(28, 22, 17, .09), 0 2px 8px rgba(28, 22, 17, .05);
  --shadow-lg: 0 30px 80px rgba(28, 22, 17, .16), 0 8px 24px rgba(28, 22, 17, .08);
  --ease: cubic-bezier(.22, .61, .36, 1);
  --ease-out: cubic-bezier(.16, .84, .34, 1);
  --shell: 1240px;
  --display: "Fraunces", Georgia, serif;
  --sans: "DM Sans", system-ui, sans-serif;
  --mono: "DM Mono", ui-monospace, monospace;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%
}

body {
  font-family: var(--sans);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.6;
  font-size: 17px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-optical-sizing: auto;
}

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

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit
}

::selection {
  background: var(--amber);
  color: #fff
}

h1,
h2,
h3 {
  font-family: var(--display);
  font-weight: 400;
  line-height: 1.04;
  letter-spacing: -.02em
}

.shell {
  max-width: var(--shell);
  margin: 0 auto;
  padding: 0 30px;
  width: 100%
}

/* ---- eyebrow ---- */
.eyebrow {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--amber-deep);
  display: inline-flex;
  align-items: center;
  gap: 11px;
}

.eyebrow .lead-line {
  width: 26px;
  height: 1.5px;
  background: var(--amber);
  display: inline-block
}

.eyebrow .leaf {
  width: 22px;
  height: 14px;
  color: var(--amber)
}

/* ---- buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: .01em;
  padding: 15px 28px;
  border-radius: 100px;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), background .3s;
  white-space: nowrap;
  position: relative;
  min-height: 50px;
}

.btn svg {
  width: 17px;
  height: 17px;
  transition: transform .4s var(--ease)
}

.btn-primary {
  background: var(--amber);
  color: #fff;
  box-shadow: 0 10px 26px -8px rgba(232, 93, 31, .7)
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 38px -10px rgba(232, 93, 31, .85)
}

.btn-primary:hover svg {
  transform: translateX(4px)
}

.btn-outline-light {
  border: 1px solid rgba(255, 255, 255, .34);
  color: #fff
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, .1);
  transform: translateY(-3px)
}

/* reveal */
.reveal {
  opacity: 0;
  transform: translateY(44px) scale(.986);
  filter: blur(7px);
  transition: opacity 1.05s var(--ease-out), transform 1.05s var(--ease-out), filter 1.05s var(--ease-out);
  will-change: opacity, transform
}

.reveal.in {
  opacity: 1;
  transform: none;
  filter: none
}

.reveal.r-left {
  transform: translateX(-48px)
}

.reveal.r-right {
  transform: translateX(48px)
}

.reveal.r-scale {
  transform: scale(.9)
}

.reveal.r-clip {
  transform: none;
  filter: none;
  clip-path: inset(0 0 100% 0);
  transition: clip-path 1.15s var(--ease-out), opacity 1.15s var(--ease-out)
}

.reveal.r-clip.in {
  clip-path: inset(0 0 0 0)
}

[data-parallax] {
  transform: scale(1) !important;
  will-change: transform
}

.scroll-prog {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0;
  z-index: 300;
  background: linear-gradient(90deg, var(--amber), var(--honey));
  box-shadow: 0 0 12px rgba(232, 93, 31, .5);
  transition: width .12s linear
}

.reveal[data-d="1"] {
  transition-delay: .09s
}

.reveal[data-d="2"] {
  transition-delay: .18s
}

.reveal[data-d="3"] {
  transition-delay: .27s
}

.reveal[data-d="4"] {
  transition-delay: .36s
}

@media (prefers-reduced-motion:reduce) {
  * {
    animation: none !important;
    transition-duration: .01ms !important
  }

  html {
    scroll-behavior: auto
  }

  .reveal {
    opacity: 1;
    transform: none
  }

  .float-chip {
    animation: none !important
  }

  [data-parallax] {
    transform: none !important
  }
}

/* ============================== NAV ============================== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 20px 0;
  transition: padding .5s var(--ease), background .5s, box-shadow .5s, border-color .5s;
  border-bottom: 1px solid transparent;
}

.nav.scrolled {
  padding: 12px 0;
}

.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px
}

.brand {
  display: flex;
  align-items: center;
  gap: 13px;
  flex-shrink: 0
}

.brand-mark {
  width: 46px;
  height: 46px;
  border-radius: 13px;
  flex-shrink: 0;
  background: linear-gradient(145deg, var(--amber), var(--amber-deep));
  display: grid;
  place-items: center;
  box-shadow: 0 6px 16px -6px rgba(232, 93, 31, .7);
}

.brand-mark svg {
  width: 24px;
  height: 24px
}

.brand-txt {
  display: flex;
  flex-direction: column;
  line-height: 1
}

.brand-txt b {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -.01em;
  color: #fff
}

.brand-txt span {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(251, 246, 238, .66);
  margin-top: 4px
}

.nav.scrolled .brand-txt b {
  color: var(--ink)
}

.nav.scrolled .brand-txt span {
  color: var(--muted)
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px
}

.nav-links a {
  font-size: 15px;
  font-weight: 500;
  padding: 9px 16px;
  border-radius: 100px;
  transition: background .25s, color .25s;
}

.nav-links a:hover {
  background: rgba(255, 255, 255, .1);
}

.nav.scrolled .nav-links a {
  color: var(--ink-soft)
}

.nav.scrolled .nav-links a:hover {
  background: rgba(28, 22, 17, .05);
  color: var(--ink)
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0
}

.nav-cta .btn {
  padding: 12px 22px;
  min-height: 44px;
  font-size: 14.5px
}

.burger {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, .28);
  flex-direction: column;
  gap: 5px;
  align-items: center;
  justify-content: center
}

.nav.scrolled .burger {
  border-color: var(--line)
}

.burger span {
  width: 18px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: .3s
}

.nav.scrolled .burger span {
  background: var(--ink)
}

/* ============================== HERO ============================== */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: 150px 0 70px;
  overflow: hidden;
  isolation: isolate;
}

.hero-photo {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: url("/img/embedded/c4ddb8eb3fc1.webp");
  background-size: cover;
  background-position: 68% center;
}

.hero-scrim {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(26, 18, 11, .97) 0%, rgba(26, 18, 11, .9) 26%, rgba(26, 18, 11, .55) 46%, rgba(26, 18, 11, .12) 64%, rgba(26, 18, 11, 0) 78%),
    linear-gradient(0deg, rgba(26, 18, 11, .55) 0%, rgba(26, 18, 11, 0) 30%),
    linear-gradient(180deg, rgba(26, 18, 11, .45) 0%, rgba(26, 18, 11, 0) 22%);
}

.hero .shell {
  position: relative;
  z-index: 2
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  gap: 40px;
  align-items: center
}

.hero-copy {
  max-width: 600px
}

.hero h1 {
  font-size: clamp(46px, 6.8vw, 88px);
  font-weight: 300;
  color: var(--cream);
  margin: 24px 0 0;
  letter-spacing: -.04em;
  line-height: 1.0;
}

.hero h1 em {
  font-style: italic;
  font-weight: 400;
  color: var(--amber);
  letter-spacing: -.02em
}

/* leaf divider */
.divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 30px 0 28px;
  max-width: 470px
}

.divider .ln {
  height: 1px;
  background: linear-gradient(90deg, var(--amber), rgba(232, 93, 31, .15));
  flex: 1
}

.divider .ln.r {
  background: linear-gradient(90deg, rgba(232, 93, 31, .15), transparent)
}

.divider .leaf {
  width: 26px;
  height: 16px;
  color: var(--amber);
  flex-shrink: 0
}

.hero p.lead {
  font-size: clamp(16px, 1.4vw, 18.5px);
  color: rgba(251, 246, 238, .82);
  max-width: 470px;
  line-height: 1.62
}

.hero p.lead strong {
  color: #fff;
  font-weight: 600
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin: 34px 0 40px
}

.hero-trust {
  display: flex;
  gap: 34px;
  flex-wrap: wrap;
  align-items: center
}

.hero-trust .ht {
  display: flex;
  align-items: center;
  gap: 13px
}

.hero-trust .ht-ic {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  border: 1px solid rgba(251, 246, 238, .3);
  color: var(--honey);
}

.hero-trust .ht-ic svg {
  width: 21px;
  height: 21px
}

.hero-trust .ht b {
  display: block;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--cream);
  line-height: 1.25
}

/* hero stage + floating chips */
.hero-stage {
  position: relative;
  height: min(560px, 62vh)
}

.float-chip {
  position: absolute;
  background: rgba(251, 247, 240, .9);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, .7);
  border-radius: 18px;
  padding: 13px 18px;
  box-shadow: 0 20px 50px -16px rgba(20, 14, 8, .6);
  display: flex;
  align-items: center;
  gap: 13px;
  will-change: transform;
  animation: floatY 6s ease-in-out infinite;
}

.float-chip .dot {
  width: 38px;
  height: 38px;
  border-radius: 11px;
  display: grid;
  place-items: center;
  flex-shrink: 0
}

.float-chip .dot svg {
  width: 21px;
  height: 21px
}

.float-chip b {
  display: block;
  font-size: 14.5px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.2
}

.float-chip small {
  display: block;
  font-weight: 500;
  color: var(--muted);
  font-size: 12px;
  margin-top: 2px
}

.fc-1 {
  top: 8%;
  left: -4%;
  animation-delay: 0s
}

.fc-2 {
  bottom: 14%;
  left: -12%;
  animation-delay: 1.4s
}

.fc-3 {
  top: 52%;
  right: -4%;
  animation-delay: .7s
}

@keyframes floatY {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-12px)
  }
}

/* ============================== CONTACT ============================== */
.contact {
  position: relative;
  padding: clamp(90px, 11vw, 150px) 0;
  overflow: hidden;
  isolation: isolate;
}

.contact-photo {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: url("/img/embedded/d5321dd6abe2.webp");
  background-size: cover;
  background-position: center;
}

.contact-veil {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(120% 120% at 50% 50%, rgba(251, 246, 238, 0) 55%, rgba(56, 42, 28, .16) 100%),
    linear-gradient(180deg, rgba(251, 246, 238, .12), rgba(251, 246, 238, 0) 30%);
}

.contact-grid {
  display: grid;
  grid-template-columns: .92fr 1.12fr;
  gap: clamp(40px, 5vw, 72px);
  align-items: center;
  position: relative;
  z-index: 2
}

.contact-info {
  max-width: 520px
}

.contact-info h2 {
  font-size: clamp(38px, 4.6vw, 62px);
  font-weight: 400;
  color: var(--ink);
  margin: 20px 0 0;
  letter-spacing: -.03em;
  line-height: 1.02
}

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

.contact .divider {
  margin: 26px 0 24px;
  max-width: 230px
}

.contact-info>p {
  color: var(--ink-soft);
  font-size: 17px;
  max-width: 42ch;
  margin-bottom: 38px;
  line-height: 1.6
}

.cinfo-list {
  display: flex;
  flex-direction: column;
  gap: 24px
}

.cinfo {
  display: flex;
  align-items: center;
  gap: 18px
}

.cinfo .ic {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex-shrink: 0
}

.cinfo .ic svg {
  width: 22px;
  height: 22px
}

.cinfo .ic.phone {
  background: rgba(232, 93, 31, .16);
  color: var(--amber-deep)
}

.cinfo .ic.mail {
  background: rgba(166, 207, 160, .32);
  color: var(--leaf-d)
}

.cinfo .ic.loc {
  background: rgba(157, 199, 221, .34);
  color: var(--sky-d)
}

.cinfo b {
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
  display: block;
  letter-spacing: -.01em
}

.cinfo small {
  color: var(--muted);
  font-size: 14px
}

/* form panel */
.form-panel {
  position: relative;
  background: rgba(255, 255, 255, .7);
  -webkit-backdrop-filter: blur(22px) saturate(120%);
  backdrop-filter: blur(22px) saturate(120%);
  border: 1px solid rgba(255, 255, 255, .85);
  border-radius: 30px;
  padding: clamp(30px, 3.2vw, 46px);
  box-shadow: 0 40px 90px -30px rgba(46, 34, 22, .4), inset 0 1px 0 rgba(255, 255, 255, .6);
  overflow: hidden;
}

.form-leaf {
  position: absolute;
  top: 14px;
  right: 18px;
  width: 140px;
  height: 120px;
  color: rgba(232, 93, 31, .22);
  pointer-events: none
}

.form-panel .frow {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px
}

.fgroup {
  margin-bottom: 22px;
  position: relative;
  z-index: 1
}

.flabel {
  display: block;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .13em;
  text-transform: uppercase;
  margin-bottom: 10px;
  color: var(--muted)
}

.flabel .opt {
  color: var(--muted-2)
}

.finput {
  width: 100%;
  padding: 15px 18px;
  border-radius: 13px;
  background: rgba(255, 255, 255, .55);
  border: 1px solid rgba(28, 22, 17, .16);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 15.5px;
  transition: border-color .3s, background .3s, box-shadow .3s;
}

.finput::placeholder {
  color: var(--muted-2)
}

.finput:focus {
  outline: none;
  border-color: var(--amber);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(232, 93, 31, .12)
}

select.finput {
  appearance: none;
  color: var(--ink-soft);
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='none' stroke='%231c1611' stroke-width='2'%3E%3Cpath d='M3 6l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center
}

textarea.finput {
  resize: vertical;
  min-height: 120px;
  line-height: 1.5
}

.form-panel .btn {
  width: 100%;
  justify-content: center;
  margin-top: 6px;
  padding: 18px;
  font-size: 16px
}

.form-note {
  font-size: 13px;
  color: var(--muted);
  margin-top: 16px;
  text-align: center
}

.form-ok {
  display: none;
  text-align: center;
  padding: 34px 10px
}

.form-ok.show {
  display: block
}

.form-panel.sent .form-fields {
  display: none
}

.form-ok .ok-ic {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: rgba(166, 207, 160, .28);
  display: grid;
  place-items: center;
  margin: 0 auto 20px
}

.form-ok h3 {
  font-size: 28px;
  color: var(--ink);
  margin-bottom: 10px
}

.form-ok p {
  color: var(--ink-soft);
  font-size: 15px;
  max-width: 34ch;
  margin: 0 auto
}

/* ============================== RESPONSIVE ============================== */
@media (max-width:1024px) {
  .nav-links {
    display: none
  }

  .burger {
    display: flex
  }

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

  .hero-stage {
    display: none
  }

  .hero-photo {
    background-position: 62% center
  }

  .hero-scrim {
    background:
      linear-gradient(90deg, rgba(22, 15, 9, .96) 0%, rgba(22, 15, 9, .9) 55%, rgba(22, 15, 9, .8) 100%),
      linear-gradient(0deg, rgba(22, 15, 9, .55) 0%, rgba(22, 15, 9, 0) 46%)
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px
  }

  .contact-info {
    max-width: none
  }
}

@media (max-width:680px) {
  body {
    font-size: 16px
  }

  .shell {
    padding: 0 20px
  }

  .nav-cta .btn.shop-lbl {
    display: none
  }

  .hero {
    padding: 130px 0 64px;
    min-height: auto
  }

  .hero-actions {
    gap: 12px
  }

  .hero-actions .btn {
    flex: 1;
    justify-content: center
  }

  .hero-trust {
    gap: 18px
  }

  .form-panel .frow {
    grid-template-columns: 1fr;
    gap: 0
  }
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: rgba(26, 18, 11, .97);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 30px;
  gap: 4px;
  transform: translateY(-100%);
  transition: transform .5s var(--ease);
  pointer-events: none
}

.mobile-menu.open {
  transform: none;
  pointer-events: auto
}

.mobile-menu a {
  font-family: var(--display);
  font-size: 30px;
  font-weight: 400;
  color: var(--cream);
  padding: 13px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .12)
}

.mobile-menu .btn {
  margin-top: 28px;
  justify-content: center
}

/* ============================== OUR STORY ============================== */
.story {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: #f7f2ea;
  padding: clamp(82px, 9vw, 128px) 0
}

.story-photo {
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image: url("/img/embedded/e204e52da728.webp");
  background-size: cover;
  background-position: center
}

.story-grid {
  display: grid;
  grid-template-columns: 1.04fr .96fr;
  gap: clamp(38px, 5vw, 74px);
  align-items: center;
  position: relative;
  z-index: 2
}

.story-copy {
  max-width: 560px
}

.story-copy h2 {
  font-size: clamp(40px, 4.8vw, 64px);
  font-weight: 400;
  color: var(--ink);
  margin: 20px 0 0;
  letter-spacing: -.03em;
  line-height: 1.04
}

.story-copy h2 em {
  font-style: italic;
  color: var(--amber-deep)
}

.story-copy h2 .dot {
  color: var(--amber)
}

.story .divider {
  margin: 24px 0 26px;
  max-width: 440px
}

.story-copy>p {
  color: var(--ink-soft);
  font-size: 16.5px;
  max-width: 48ch;
  margin-bottom: 32px;
  line-height: 1.62
}

.bcards {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 500px
}

.bcard {
  position: relative;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 17px 22px;
  background: rgba(255, 255, 255, .82);
  border: 1px solid rgba(255, 255, 255, .9);
  border-radius: 18px;
  box-shadow: 0 16px 36px -20px rgba(46, 34, 22, .5);
  overflow: hidden;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease)
}

.bcard:hover {
  transform: translateX(7px);
  box-shadow: 0 22px 46px -20px rgba(46, 34, 22, .55)
}

.bcard .bic {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  color: #fff;
  position: relative;
  z-index: 1
}

.bcard .bic svg {
  width: 25px;
  height: 25px
}

.bcard .btxt {
  position: relative;
  z-index: 1
}

.bcard .btxt b {
  font-family: var(--display);
  font-size: 19px;
  font-weight: 500;
  color: var(--ink);
  display: block;
  letter-spacing: -.01em;
  line-height: 1.15
}

.bcard .btxt small {
  color: var(--muted);
  font-size: 13.5px
}

.bcard .smudge {
  position: absolute;
  right: -10px;
  top: 50%;
  transform: translateY(-50%);
  width: 170px;
  height: 96px;
  border-radius: 50%;
  filter: blur(7px);
  opacity: .5;
  pointer-events: none;
  z-index: 0
}

.bcard .motif {
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  width: 62px;
  height: 62px;
  opacity: .42;
  pointer-events: none;
  z-index: 0
}

.bcard.green .bic {
  background: #6f8f4e
}

.bcard.green .smudge {
  background: radial-gradient(circle, #a7c184, transparent 70%)
}

.bcard.green .motif {
  color: #5f7d42
}

.bcard.red .bic {
  background: #c0612b
}

.bcard.red .smudge {
  background: radial-gradient(circle, #eab193, transparent 70%)
}

.bcard.red .motif {
  color: #b65a2a
}

.bcard.blue .bic {
  background: #3f6f8c
}

.bcard.blue .smudge {
  background: radial-gradient(circle, #aecbdc, transparent 70%)
}

.bcard.blue .motif {
  color: #3a6885
}

.story-quote-wrap {
  position: relative;
  align-self: center;
  justify-self: center;
  max-width: 470px;
  padding: clamp(14px, 2vw, 30px) clamp(8px, 2vw, 30px)
}

.story-quote-wrap::before {
  content: "";
  position: absolute;
  inset: -12% -8%;
  z-index: -1;
  background: radial-gradient(58% 56% at 44% 38%, rgba(24, 17, 10, .5), transparent 72%);
  filter: blur(12px);
  pointer-events: none
}

.qmark {
  font-family: var(--display);
  font-size: 80px;
  line-height: 1;
  color: var(--amber-2);
  display: block;
  margin-bottom: -4px;
  height: 46px;
  overflow: visible
}

.story-quote {
  font-family: var(--display);
  font-size: clamp(21px, 2.05vw, 29px);
  font-weight: 400;
  line-height: 1.36;
  color: var(--cream);
  letter-spacing: -.01em;
  margin-bottom: 26px
}

.story-quote em {
  font-style: italic;
  color: var(--amber-2)
}

.qdivider {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 24px;
  max-width: 320px
}

.qdivider .dots {
  flex: 1;
  border-top: 1.6px dotted rgba(244, 147, 58, .7)
}

.qdivider .leaf {
  width: 22px;
  height: 13px;
  color: var(--amber-2);
  flex-shrink: 0
}

.founders {
  display: flex;
  align-items: center;
  gap: 15px
}

.f-avatars {
  display: flex
}

.f-avatars .av {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 2.5px solid rgba(34, 25, 15, .95);
  display: grid;
  place-items: center;
  font-family: var(--display);
  font-weight: 600;
  font-size: 17px;
  color: #fff;
  margin-left: -14px
}

.f-avatars .av:first-child {
  margin-left: 0
}

.founders b {
  font-size: 16px;
  color: var(--cream);
  display: block;
  font-weight: 600
}

.founders small {
  color: rgba(251, 246, 238, .66);
  font-size: 13.5px
}

/* ============================== BY THE NUMBERS ============================== */
.stats {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: #f3ede0;
  padding: clamp(80px, 9vw, 116px) 0 clamp(96px, 10vw, 140px)
}

.stats-photo {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: url("/img/embedded/6e0dc2d2540a.webp");
  background-size: cover;
  background-position: center top
}

.stats-deco {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 200px;
  z-index: -1;
  pointer-events: none
}

.stats .shell {
  position: relative;
  z-index: 2
}

.stats-head {
  max-width: 600px;
  margin-bottom: clamp(42px, 5vw, 64px)
}

.stats-head h2 {
  font-size: clamp(38px, 5vw, 66px);
  font-weight: 400;
  color: var(--ink);
  margin-top: 18px;
  letter-spacing: -.025em;
  line-height: 1.06
}

.stats-head h2 em {
  font-style: italic;
  color: var(--amber-deep)
}

.stats-head .underline {
  display: block;
  width: min(330px, 72%);
  height: 14px;
  margin-top: 4px;
  color: var(--amber-deep)
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(16px, 1.8vw, 26px)
}

.statcard {
  position: relative;
  background: #fffdf9;
  border-radius: 22px;
  padding: 62px 22px 30px;
  box-shadow: 0 24px 52px -26px rgba(46, 34, 22, .42);
  text-align: center;
  margin-top: 36px;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease)
}

.statcard:hover {
  transform: translateY(-6px);
  box-shadow: 0 32px 62px -26px rgba(46, 34, 22, .5)
}

.statcard::after {
  content: "";
  position: absolute;
  left: 14%;
  right: 14%;
  bottom: 0;
  height: 4px;
  border-radius: 4px
}

.statcard .badge {
  position: absolute;
  top: -32px;
  left: 50%;
  transform: translateX(-50%);
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #fffdf9;
  display: grid;
  place-items: center;
  box-shadow: 0 12px 26px -12px rgba(46, 34, 22, .45)
}

.statcard .badge .ring {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff
}

.statcard .badge .ring svg {
  width: 27px;
  height: 27px
}

.statcard .num {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(46px, 4.4vw, 64px);
  color: var(--ink);
  line-height: 1;
  letter-spacing: -.02em;
  display: inline-flex;
  align-items: baseline;
  justify-content: center
}

.statcard .num .suf {
  font-size: .4em;
  font-weight: 700;
  color: var(--amber-deep);
  margin-left: 2px;
  letter-spacing: .01em;
  font-family: var(--sans)
}

.statcard .ndiv {
  display: block;
  width: 54px;
  border-top: 1.6px dotted var(--muted-2);
  margin: 14px auto 16px
}

.statcard p {
  font-size: 14.5px;
  color: var(--ink-soft);
  line-height: 1.5;
  max-width: 25ch;
  margin: 0 auto
}

.statcard.c1 .ring {
  background: #6f8f4e
}

.statcard.c1::after {
  background: #6f8f4e
}

.statcard.c2 .ring {
  background: #c0612b
}

.statcard.c2::after {
  background: #c0612b
}

.statcard.c3 .ring {
  background: #e0a92e
}

.statcard.c3::after {
  background: #e0a92e
}

.statcard.c4 .ring {
  background: #b08a93
}

.statcard.c4::after {
  background: #b08a93
}

/* ---- responsive: story + stats ---- */
@media (max-width:1024px) {
  .story-grid {
    grid-template-columns: 1fr;
    gap: 42px
  }

  .story-photo {
    opacity: 0
  }

  .story-copy,
  .bcards {
    max-width: none
  }

  .bcard .motif {
    display: none
  }

  .bcard .smudge {
    right: -30px
  }

  .story-quote-wrap {
    justify-self: stretch;
    max-width: none;
    background: linear-gradient(155deg, #3a2d1e, #221808);
    border-radius: 26px;
    padding: 38px 30px
  }

  .story-quote-wrap::before {
    display: none
  }

  .f-avatars .av {
    border-color: #2a1f12
  }

  .stat-grid {
    grid-template-columns: 1fr 1fr;
    gap: 22px
  }

  .stats-deco {
    opacity: .5
  }
}

@media (max-width:680px) {
  .stat-grid {
    grid-template-columns: 1fr
  }

  .statcard {
    margin-top: 40px
  }

  .bcard {
    padding: 15px 18px;
    gap: 15px
  }

  .story-quote {
    font-size: 21px
  }

  .stats-deco {
    display: none
  }
}

/* --- ZIG-ZAG PRODUCT SHOWCASE — STICKY STACK ANIMATION --- */

.tt-products {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.tt-product-row {
  display: flex;
  align-items: center;
  gap: 60px;
  padding: 80px max(20px, calc(50vw - 640px));
  min-height: 80vh;

  /* Sticky stacking */
  position: sticky;
  top: calc(80px + var(--i, 0) * 14px);

  /* Depth & polish */
  border-radius: 32px 32px 0 0;
  overflow: hidden;
  box-shadow: 0 -12px 50px -10px rgba(0, 0, 0, 0.22);
  z-index: calc(10 + var(--i, 0));
}

/* Slide-in animations on enter via IntersectionObserver */
.reveal-left {
  opacity: 0;
  transform: translateX(-70px);
  transition: opacity 1s cubic-bezier(0.25, 1, 0.5, 1), transform 1s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: opacity, transform;
}

.reveal-right {
  opacity: 0;
  transform: translateX(70px);
  transition: opacity 1s cubic-bezier(0.25, 1, 0.5, 1), transform 1s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: opacity, transform;
}

.reveal-left.in,
.reveal-right.in {
  opacity: 1;
  transform: none;
}

/* CSS Scroll-Driven Animation — scale + dim on scroll-out (Chrome 115+, Safari 18+) */
@supports (animation-timeline: view()) {
  .tt-product-row {
    animation: ttStackOut linear both;
    animation-timeline: view();
    animation-range: exit 5% exit 95%;
  }

  @keyframes ttStackOut {
    to {
      transform: scale(0.92);
      filter: brightness(0.6);
    }
  }
}

.tt-product-row.reverse {
  flex-direction: row-reverse;
}

/* ── Gallery Panel ── */
.tt-product-gallery {
  flex: 0 0 48%;
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  box-shadow: 0 30px 80px -20px rgba(0, 0, 0, 0.38);
}

.tt-gallery-track {
  display: flex;
  transition: transform 0.55s cubic-bezier(0.45, 0, 0.15, 1);
}

.tt-gallery-slide {
  min-width: 100%;
  height: 520px;
  background-size: cover;
  background-position: center;
}

/* Nav arrows — pill style */
.tt-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 18px;
  color: #333;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.tt-nav-btn:hover {
  background: #fff;
  transform: translateY(-50%) scale(1.12);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.22);
}

.tt-prev {
  left: 16px;
}

.tt-next {
  right: 16px;
}

/* Pagination dots */
.tt-pagination {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 7px;
  z-index: 10;
}

.tt-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer;
  transition: all 0.3s;
  border: 1.5px solid rgba(255, 255, 255, 0.7);
}

.tt-dot.active {
  background: #fff;
  width: 24px;
  border-radius: 10px;
}

/* ── Content Panel — Glassmorphism Card ── */
.tt-product-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 28px;
  padding: clamp(28px, 4vw, 52px);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

/* Product eyebrow label */
.tt-product-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-family: 'DM Mono', monospace;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #8b5c1e;
  background: rgba(191, 130, 60, 0.12);
  border: 1px solid rgba(191, 130, 60, 0.25);
  border-radius: 100px;
  padding: 6px 16px;
  margin-bottom: 18px;
  width: fit-content;
}

.tt-product-eyebrow::before {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #c07835;
}

.tt-product-title {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-family: 'Fraunces', serif;
  font-weight: 600;
  color: #1a1710;
  margin: 0 0 16px;
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.tt-product-title em {
  font-style: italic;
  color: #bf5429;
}

.tt-product-desc {
  font-size: 16px;
  color: #5a4f40;
  line-height: 1.72;
  margin-bottom: 28px;
  max-width: 44ch;
}

/* Divider */
.tt-product-divider {
  width: 48px;
  height: 2px;
  background: linear-gradient(90deg, #c07835, transparent);
  border-radius: 2px;
  margin-bottom: 24px;
}

/* Benefits list */
.tt-product-benefits {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.tt-product-benefits li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  font-family: 'DM Sans', sans-serif;
  color: #3a3228;
  font-weight: 500;
}

.tt-product-benefits li::before {
  content: '';
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  /* Layer 1: checkmark SVG on top, Layer 2: green gradient behind */
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E") center/12px no-repeat,
    linear-gradient(135deg, #5db85d, #3a7a3a);
  box-shadow: 0 2px 10px rgba(60, 120, 60, 0.35);
}

/* Amazon CTA */
.tt-amazon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, #f5a623, #e8841a);
  color: #1a0e00;
  padding: 15px 32px;
  border-radius: 100px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  align-self: flex-start;
  border: 2px solid transparent;
  box-shadow: 0 6px 24px rgba(232, 132, 26, 0.35);
  letter-spacing: 0.01em;
}

.tt-amazon-btn:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 14px 36px rgba(232, 132, 26, 0.45);
  filter: brightness(1.08);
}

/* --- PORTRAIT VIDEO CAROUSEL --- */
.tt-videos {
  padding: 60px 20px;
  background: url('See%20TrigoTale%20in%20Action-background.png') center/cover no-repeat fixed;
  background-attachment: fixed;
  text-align: center;
  overflow: hidden;
}

.tt-videos h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(38px, 4.6vw, 60px);
  margin-bottom: 40px;
  color: #222;
}

.tt-video-wrapper {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 56px;
}

.tt-video-track-container {
  overflow: hidden;
  border-radius: 20px;
}

.tt-video-track {
  display: flex;
  gap: 20px;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.tt-video-item {
  flex: 0 0 calc((100% - 40px) / 4);
  height: 420px;
  border-radius: 16px;
  overflow: hidden;
  background: #000;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.tt-video-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tt-vid-prev,
.tt-vid-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #fff;
  border: none;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 20px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
  z-index: 10;
  transition: background 0.2s, color 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tt-vid-prev:hover,
.tt-vid-next:hover {
  background: #222;
  color: #fff;
}

.tt-vid-prev {
  left: 0;
}

.tt-vid-next {
  right: 0;
}

/* RESPONSIVE */
@media (max-width: 992px) {

  .tt-product-row,
  .tt-product-row.reverse {
    flex-direction: column;
    gap: 40px;
    padding: 60px 24px !important;
    min-height: unset;
    position: relative;
    top: unset;
  }

  .tt-product-gallery {
    width: 100%;
    max-width: 100%;
    flex: 0 0 auto;
    margin: 0 auto;
  }

  .tt-product-content {
    width: 100%;
    max-width: 100%;
    flex: 0 0 auto;
    margin: 0 auto;
    text-align: center;
    box-sizing: border-box;
  }

  .tt-product-eyebrow {
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
    height: auto;
    white-space: normal;
  }

  .tt-product-benefits {
    display: inline-flex;
    align-items: flex-start;
    text-align: left;
  }

  .tt-amazon-btn {
    align-self: center;
  }

  .tt-video-item {
    flex: 0 0 calc((100% - 20px) / 2);
  }

  .tt-video-track {
    /* 2 visible — gap stays 20px */
  }
}

@media (max-width: 576px) {
  .tt-product-title {
    font-size: 32px;
  }

  .tt-product-row,
  .tt-product-row.reverse {
    padding: 40px 16px !important;
    border-radius: 20px 20px 0 0;
    gap: 28px;
  }

  .tt-gallery-slide {
    height: 280px;
  }

  .tt-product-content {
    padding: 28px 20px !important;
  }

  .tt-video-track {
    /* 1 visible on mobile */
  }

  .tt-video-item {
    flex: 0 0 100%;
    height: 420px;
  }

  .tt-video-wrapper {
    padding: 0 44px;
  }
}