:root {
  --ivory: #f6efe6;
  --paper: #fffaf4;
  --ink: #2b160f;
  --cocoa: #4b2419;
  --cocoa2: #6e3827;
  --caramel: #bf6d3d;
  --orange: #ff6a3a;
  --peach: #f1c9aa;
  --line: rgba(75, 36, 25, .14);
  --shadow: 0 30px 80px rgba(60, 26, 13, .16);
}

* {
  box-sizing: border-box
}

html {
  scroll-behavior: auto;
  background: var(--ivory)
}

body {
  margin: 0;
  color: var(--ink);
  background: linear-gradient(180deg, #f8f1e8 0%, #fffaf4 38%, #f4eadf 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow-x: hidden
}

#webgl {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  opacity: .55
}

.grain {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: .13;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.23'/%3E%3C/svg%3E");
  mix-blend-mode: multiply
}

.progress {
  position: fixed;
  z-index: 30;
  right: 28px;
  top: 50%;
  width: 2px;
  height: 180px;
  background: rgba(75, 36, 25, .12);
  transform: translateY(-50%);
  border-radius: 2px
}

.progress span {
  display: block;
  width: 100%;
  height: 0;
  background: var(--orange);
  border-radius: 2px
}

.topbar {
  position: fixed;
  z-index: 25;
  top: 0;
  left: 0;
  right: 0;
  height: 66px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  padding: 0 48px;
  border-bottom: 1px solid rgba(75, 36, 25, .08);
  background: rgba(250, 244, 237, .72);
  backdrop-filter: blur(14px)
}

.brand {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  letter-spacing: .18em;
  color: var(--orange)
}

.deck-title {
  text-align: center;
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: 10px;
  font-weight: 700;
  opacity: .58
}

.page-counter {
  text-align: right;
  font-family: ui-monospace, monospace;
  font-size: 11px;
  letter-spacing: .12em;
  opacity: .7
}

main {
  position: relative;
  z-index: 2
}

.scene {
  position: relative;
  min-height: 100vh;
  padding: 110px clamp(28px, 6vw, 96px) 72px;
  display: flex;
  align-items: center;
  overflow: hidden
}

.scene:nth-child(even) {
  background: rgba(255, 250, 244, .52)
}

.eyebrow {
  margin: 0 0 18px;
  text-transform: uppercase;
  letter-spacing: .22em;
  font-size: 11px;
  font-weight: 800;
  color: var(--orange)
}

h1,
h2,
h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: -.045em;
  margin: 0
}

h1 {
  font-size: clamp(64px, 8vw, 138px);
  line-height: .87;
  max-width: 1000px
}

h2 {
  font-size: clamp(48px, 6vw, 96px);
  line-height: .95
}

h3 {
  font-size: 42px;
  line-height: 1
}

em {
  color: var(--orange);
  font-weight: 400
}

p {
  font-size: 16px;
  line-height: 1.6
}

.lede {
  max-width: 720px;
  font-size: clamp(18px, 1.7vw, 28px);
  line-height: 1.42;
  color: rgba(43, 22, 15, .78)
}

.reveal {
  will-change: transform, opacity
}

.hero {
  display: grid;
  grid-template-columns: 1.04fr .96fr;
  gap: 60px;
  min-height: 115vh
}

.hero-copy {
  position: relative;
  z-index: 4
}

.scroll-cue {
  margin-top: 40px;
  display: flex;
  align-items: center;
  gap: 12px;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: 10px;
  font-weight: 700;
  opacity: .65
}

.scroll-cue span {
  width: 44px;
  height: 1px;
  background: var(--ink)
}

.depth-stage {
  position: relative;
  perspective: 1200px;
  transform-style: preserve-3d;
  min-height: 620px
}

.depth-layer {
  will-change: transform;
  transform-style: preserve-3d
}

.screen-card {
  position: absolute;
  inset: 8% 3% 6% 5%;
  margin: 0;
  background: var(--paper);
  border: 1px solid rgba(75, 36, 25, .12);
  border-radius: 26px;
  padding: 14px;
  box-shadow: var(--shadow);
  overflow: hidden;
  transform: rotateY(-7deg) rotateX(2deg)
}

.screen-card img {
  width: 100%;
  height: 86%;
  object-fit: cover;
  border-radius: 18px;
  display: block
}

.screen-card figcaption {
  padding: 14px 10px 4px;
  font-size: 12px;
  line-height: 1.4;
  opacity: .7
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(1px);
  box-shadow: inset -20px -24px 50px rgba(68, 23, 8, .18), 0 30px 70px rgba(90, 37, 18, .16)
}

.orb-a {
  width: 360px;
  height: 360px;
  right: -20px;
  top: 0;
  background: radial-gradient(circle at 35% 32%, #ffd9bc, #c66f42 52%, #562717 78%);
  opacity: .55
}

.choco-drop {
  position: absolute;
  bottom: 4%;
  left: -5%;
  width: 170px;
  height: 220px;
  border-radius: 60% 40% 55% 45%;
  background: linear-gradient(145deg, #8b4b31, #3e1c13);
  filter: drop-shadow(0 25px 20px rgba(61, 22, 9, .18));
  opacity: .86;
  transform: rotate(23deg)
}

.sticky-grid {
  width: 100%;
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  align-items: center;
  gap: 7vw
}

.copy {
  max-width: 670px
}

.compare-line {
  border-top: 1px solid var(--line);
  padding: 18px 0;
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 20px;
  font-size: 14px
}

.compare-line span {
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: 9px;
  font-weight: 800;
  opacity: .55
}

.compare-line b {
  font-weight: 600
}

.compare-line.accent b {
  color: var(--orange)
}

.pdp-frame {
  position: relative;
  border-radius: 28px;
  background: white;
  padding: 14px;
  box-shadow: var(--shadow);
  transform: rotate(1.4deg);
  overflow: hidden
}

.pdp-frame img {
  display: block;
  width: 100%;
  height: min(72vh, 760px);
  object-fit: cover;
  object-position: top;
  border-radius: 20px
}

.callout {
  position: absolute;
  background: var(--cocoa);
  color: white;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .08em;
  box-shadow: 0 10px 30px rgba(43, 22, 15, .2)
}

.c1 {
  left: 11%;
  top: 26%
}

.c2 {
  right: 9%;
  top: 37%
}

.c3 {
  right: 13%;
  top: 15%
}

.c4 {
  left: 22%;
  bottom: 18%
}

.benchmark {
  display: block;
  min-height: 730vh;
  padding-top: 130px
}

.section-head {
  position: sticky;
  top: 110px;
  max-width: 1180px;
  margin: 0 auto 70px;
  z-index: 8
}

.benchmark-track {
  position: relative;
  max-width: 1180px;
  margin: 0 auto;
  height: 650vh
}

.ref-card {
  position: sticky;
  top: 26vh;
  width: min(900px, 78vw);
  height: 58vh;
  margin: 0 auto 52vh;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  background: rgba(255, 250, 244, .96);
  border: 1px solid rgba(75, 36, 25, .12);
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 35px 100px rgba(62, 27, 13, .18)
}

.ref-image {
  overflow: hidden;
  background: #eee
}

.ref-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transform: scale(1.02)
}

.ref-meta {
  padding: clamp(28px, 4vw, 68px);
  display: flex;
  flex-direction: column;
  justify-content: center
}

.ref-meta b {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(38px, 5vw, 78px);
  letter-spacing: -.04em
}

.ref-meta span {
  text-transform: uppercase;
  letter-spacing: .18em;
  color: var(--orange);
  font-size: 10px;
  font-weight: 800;
  margin: 8px 0 24px
}

.ref-meta p {
  max-width: 440px;
  font-size: 17px;
  line-height: 1.55;
  color: rgba(43, 22, 15, .72)
}

.shift {
  min-height: 135vh;
  display: flex;
  flex-direction: column;
  justify-content: center
}

.shift-grid {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
  margin-bottom: 70px
}

.shift-word {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(84px, 14vw, 230px);
  line-height: .8;
  letter-spacing: -.07em
}

.shift-word.old {
  text-align: right;
  color: rgba(75, 36, 25, .22);
  text-decoration: line-through;
  text-decoration-thickness: 3px
}

.shift-word.new {
  color: var(--orange)
}

.shift-arrow {
  font-size: 48px;
  opacity: .35
}

.shift-copy {
  max-width: 900px;
  margin: 0 auto;
  text-align: center
}

.shift-copy p {
  font-size: 20px
}

.tag-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px
}

.tag-row span {
  padding: 10px 16px;
  border: 1px solid var(--line);
  border-radius: 99px;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 9px;
  font-weight: 800;
  background: rgba(255, 255, 255, .35)
}

.pdp {
  display: block;
  min-height: 165vh
}

.section-head.narrow {
  position: relative;
  top: auto;
  max-width: 900px;
  margin: 0 0 70px
}

.pdp-anatomy {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 60px;
  align-items: start
}

.pdp-shot {
  position: sticky;
  top: 110px;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 26px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: white;
  padding: 12px
}

.pdp-shot img {
  display: block;
  width: 100%;
  height: 74vh;
  object-fit: cover;
  object-position: top;
  border-radius: 18px
}

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

.audit-list li {
  display: grid;
  grid-template-columns: 54px 1fr;
  grid-template-areas: "num title" "num p";
  gap: 2px 18px;
  padding: 24px 0;
  border-top: 1px solid var(--line)
}

.audit-list span {
  grid-area: num;
  font-family: ui-monospace, monospace;
  color: var(--orange);
  font-size: 12px
}

.audit-list b {
  grid-area: title;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 26px;
  font-weight: 500
}

.audit-list p {
  grid-area: p;
  margin: 5px 0 0;
  opacity: .65;
  font-size: 14px
}

.sequence {
  min-height: 200vh;
  height: 100%;
  padding: 0
}

.sequence-pin {
  height: 100vh;
  width: 100%;
  position: sticky;
  top: 0;
  /* display: grid; */
  /* grid-template-columns: .68fr 1.32fr; */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  padding: 100px clamp(28px, 6vw, 96px);
  overflow: hidden
}

.sequence-intro {
  max-width: 530px
}

.sequence-track {
  display: flex;
  gap: 24px;
  width: max-content;
  will-change: transform;
  padding-left: 5vw;
  @media screen and (min-width: 750px) {
    padding-left: 430%;
  }
}

.seq-card {
  width: min(36vw, 380px);
  height: min(45vh, 49vh);
  border-radius: 32px;
  padding: 38px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: linear-gradient(145deg, #fffaf5, #ead8c8);
  border: 1px solid var(--line);
  box-shadow: 0 24px 70px rgba(63, 26, 12, .14)
}

.seq-card:nth-child(2) {
  background: linear-gradient(145deg, #f0d7c3, #fff7ef)
}

.seq-card:nth-child(3) {
  background: linear-gradient(145deg, #5a2a1d, #2d160f);
  color: white
}

.seq-card:nth-child(4) {
  background: linear-gradient(145deg, #ff8a57, #e9562b);
  color: white
}

.seq-card small {
  font-size: 12px;
  letter-spacing: .14em;
  opacity: .6;
  margin-bottom: auto
}

.seq-card b {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(36px, 2.5vw, 866px);
  font-weight: 500;
  letter-spacing: -.05em
}

.seq-card span {
  margin-top: 12px;
  font-size: 16px;
  opacity: .75
}

.brandworld {
  min-height: 130vh
}

.brandworld-grid {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: 70px;
  width: 100%;
  align-items: center
}

.brandworld-copy {
  max-width: 620px
}

.ratio {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 28px
}

.ratio span {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 16px 18px;
  background: rgba(255, 255, 255, .48);
  font-size: 12px
}

.ratio b {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  color: var(--orange);
  font-size: 30px
}

.mosaic {
  height: 72vh;
  position: relative;
  perspective: 1200px;
  transform-style: preserve-3d
}

.mosaic figure {
  position: absolute;
  margin: 0;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 10px solid rgba(255, 250, 244, .9)
}

.mosaic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block
}

.m1 {
  width: 48%;
  height: 72%;
  left: 0;
  top: 13%;
  transform: rotate(-4deg)
}

.m2 {
  width: 45%;
  height: 48%;
  right: 3%;
  top: 5%;
  transform: rotate(4deg)
}

.m3 {
  width: 44%;
  height: 44%;
  right: 8%;
  bottom: 0;
  transform: rotate(-2deg)
}

.pillars {
  display: block;
  min-height: 130vh;
  padding-top: 140px
}

.section-head.centered {
  position: relative;
  top: auto;
  text-align: center;
  margin-bottom: 90px
}

.pillar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  max-width: 1400px;
  margin: 0 auto
}

.pillar-grid article {
  min-height: 54vh;
  border-radius: 30px;
  padding: 30px;
  background: rgba(255, 250, 244, .76);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  box-shadow: 0 20px 60px rgba(58, 23, 10, .08);
  transition: transform .4s ease
}

.pillar-grid article:nth-child(2) {
  background: linear-gradient(165deg, #fff9f2, #efd8c4)
}

.pillar-grid article:nth-child(3) {
  background: linear-gradient(165deg, #5a2b20, #2d160f);
  color: white
}

.pillar-grid article:nth-child(4) {
  background: linear-gradient(165deg, #ff8b5f, #ee5e34);
  color: white
}

.pillar-grid article span {
  margin-bottom: auto;
  font-family: ui-monospace, monospace;
  opacity: .55
}

.pillar-grid h3 {
  margin-bottom: 20px
}

.pillar-grid p {
  opacity: .72
}

.pillar-grid article:hover {
  transform: translateY(-10px)
}

.finale {
  min-height: 120vh;
  padding: 0;
  flex-direction: column;
}

.finale-stage {
  position: relative;
  min-height: 110vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden
}

.finale-crop {
  position: absolute;
  inset: 0
}

.finale-crop:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(38, 16, 9, .86) 0%, rgba(38, 16, 9, .66) 45%, rgba(38, 16, 9, .3) 100%)
}

.finale-crop img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.85) contrast(1.02)
}

.finale-copy {
  position: relative;
  z-index: 3;
  color: white;
  max-width: 1120px;
  text-align: center;
  padding: 40px
}

.finale-copy h2 {
  font-size: clamp(60px, 8vw, 128px);
  text-shadow: 0 24px 70px rgba(0, 0, 0, .28)
}

.finale-copy p {
  font-size: 22px;
  height: 100%;
  max-width: 760px;
  margin: 34px auto 0;
  color: rgba(255, 255, 255, .82)
}

.footer-note {
  position: absolute;
  bottom: 28px;
  left: 0;
  right: 0;
  text-align: center;
  color: black
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .18em;
  z-index: 5;
  display: flex;
  justify-content: space-around;
  alignt-items;
  gap: 2rem;
}

@media(max-width:900px) {
  .topbar {
    padding: 0 20px;
    grid-template-columns: 1fr auto
  }

  .deck-title {
    display: none
  }

  .hero,
  .sticky-grid,
  .pdp-anatomy,
  .brandworld-grid {
    grid-template-columns: 1fr
  }

  .hero {
    padding-top: 120px
  }

  .hero-stage {
    min-height: 520px
  }

  .pdp-frame img,
  .pdp-shot img {
    height: auto
  }

  .benchmark {
    min-height: 620vh
  }

  .ref-card {
    grid-template-columns: 1fr;
    height: 66vh
  }

  .ref-image {
    height: 55%
  }

  .ref-meta {
    padding: 24px
  }

  .ref-meta b {
    font-size: 44px
  }

  .sequence-pin {
    grid-template-columns: 1fr;
    align-content: center;
    gap: 40px
  }

  .sequence-track {
    padding-left: 0
  }

  .seq-card {
    width: 78vw;
    height: 42vh
  }

  .pillar-grid {
    grid-template-columns: 1fr 1fr
  }

  .pillar-grid article {
    min-height: 38vh
  }

  .progress {
    right: 10px
  }

  .shift-grid {
    grid-template-columns: 1fr
  }

  .shift-arrow {
    transform: rotate(90deg);
    text-align: center
  }

  .shift-word {
    text-align: center !important
  }

  .mosaic {
    height: 60vh
  }
}

@media(max-width:580px) {
  .scene {
    padding-left: 20px;
    padding-right: 20px
  }

  .pillar-grid {
    grid-template-columns: 1fr
  }

  .benchmark-track {
    height: 620vh
  }

  .ref-card {
    width: 92vw
  }

  .topbar {
    height: 56px
  }

  .brand {
    font-size: 14px
  }

  .page-counter {
    font-size: 9px
  }
}

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

  .depth-layer,
  .reveal,
  .sequence-track {
    transform: none !important
  }

  .grain {
    display: none
  }
}