:root {
  --burgundy: #8f1d2c;
  --burgundy-deep: #681522;
  --coral: #ed5f5d;
  --teal: #168c8c;
  --teal-deep: #0b6668;
  --blue: #2857b8;
  --mustard: #d6a928;
  --forest: #2f7049;
  --off-white: #fbf7f0;
  --soft-grey: #f3f5f6;
  --paper: #ffffff;
  --ink: #252226;
  --muted: #69636a;
  --line: #ded9d3;
  --line-strong: #cbc3ba;
  --shadow-sm: 0 8px 22px rgba(48, 36, 32, .08);
  --shadow-md: 0 18px 44px rgba(48, 36, 32, .13);
  --shadow-lg: 0 28px 70px rgba(48, 36, 32, .18);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --container: 1240px;
  --section-space: clamp(48px, 6vh, 76px);
  --motion-fast: 180ms;
  --motion-base: 360ms;
  --motion-slow: 650ms;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Poppins, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  overflow-x: hidden;
}
body.splash-active { overflow: hidden; }
body.quote-modal-open { overflow: hidden; }
body > .announcement,
body > .site-header,
body > main,
body > .footer {
  transition:
    opacity 720ms cubic-bezier(.2, .7, .2, 1),
    transform 720ms cubic-bezier(.2, .7, .2, 1);
}
body.splash-active > .announcement,
body.splash-active > .site-header,
body.splash-active > main,
body.splash-active > .footer {
  opacity: 0;
  transform: translateY(14px) scale(.995);
}
body.home-intro-pending > .announcement,
body.home-intro-pending > .site-header,
body.home-intro-pending .hero-copy .eyebrow,
body.home-intro-pending .hero-copy h1 span,
body.home-intro-pending .hero-copy > p,
body.home-intro-pending .hero-actions,
body.home-intro-pending .hero-actions .btn,
body.home-intro-pending .hero-shop-strip {
  opacity: 0;
}
body.home-intro-pending > .announcement { transform: translateY(-100%); }
body.home-intro-pending > .site-header { transform: translateY(-24px); }
body.home-intro-pending .hero-copy .eyebrow { transform: translateY(12px); }
body.home-intro-pending .hero-copy h1 span:first-child { transform: translateY(34px); }
body.home-intro-pending .hero-copy h1 span:last-child { transform: translateY(34px); }
body.home-intro-pending .hero-copy h1 span:last-child::after {
  opacity: 0;
  transform: translateX(-50%) scaleX(0);
}
body.home-intro-pending .hero-copy > p { transform: translateY(20px); }
body.home-intro-pending .hero-actions { transform: translateY(18px) scale(.97); }
body.home-intro-pending .hero-actions .btn { transform: translateY(14px) scale(.94); }
body.home-intro-pending .hero-shop-strip { transform: translateY(28px); }

body.home-intro-playing > .announcement {
  animation: home-announcement-enter 520ms cubic-bezier(.2, .8, .3, 1) forwards;
}
body.home-intro-playing > .site-header {
  animation: home-header-enter 620ms 80ms cubic-bezier(.2, .8, .3, 1) forwards;
}
body.home-intro-playing .hero-copy .eyebrow {
  animation: home-copy-enter 560ms 180ms cubic-bezier(.2, .8, .3, 1) forwards;
}
body.home-intro-playing .hero-copy .eyebrow::before {
  animation: home-eyebrow-line 580ms 320ms cubic-bezier(.2, .8, .3, 1) both;
  transform-origin: center;
}
body.home-intro-playing .hero-copy h1 span:first-child {
  animation: home-headline-enter-left 780ms 250ms cubic-bezier(.16, .82, .3, 1) forwards;
}
body.home-intro-playing .hero-copy h1 span:last-child {
  animation: home-headline-enter-right 820ms 380ms cubic-bezier(.16, .82, .3, 1) forwards;
}
body.home-intro-playing .hero-copy h1 span:last-child::after {
  animation: home-headline-accent 620ms 860ms cubic-bezier(.2, .85, .3, 1) both;
}
body.home-intro-playing .hero-copy > p {
  animation: home-description-enter 680ms 680ms cubic-bezier(.2, .8, .3, 1) forwards;
}
body.home-intro-playing .hero-actions {
  animation: home-actions-enter 540ms 790ms cubic-bezier(.2, .85, .3, 1.12) forwards;
}
body.home-intro-playing .hero-actions .btn:first-child {
  animation: home-button-enter 520ms 900ms cubic-bezier(.16, .9, .3, 1.16) forwards;
}
body.home-intro-playing .hero-actions .btn:last-child {
  animation: home-button-enter 520ms 1.02s cubic-bezier(.16, .9, .3, 1.16) forwards;
}
body.home-intro-playing .hero-shop-strip {
  animation: home-gallery-enter 760ms 820ms cubic-bezier(.2, .8, .3, 1) forwards;
}

@keyframes home-announcement-enter {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes home-header-enter {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes home-copy-enter {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes home-headline-enter-left {
  0% {
    opacity: 0;
    clip-path: inset(0 100% 0 0);
    transform: translate3d(-34px, 28px, 0) scale(.98);
    filter: blur(7px);
  }
  100% {
    opacity: 1;
    clip-path: inset(0);
    transform: translate3d(0, 0, 0) scale(1);
    filter: blur(0);
  }
}

@keyframes home-headline-enter-right {
  0% {
    opacity: 0;
    clip-path: inset(0 0 0 100%);
    transform: translate3d(34px, 28px, 0) scale(.98);
    filter: blur(7px);
  }
  100% {
    opacity: 1;
    clip-path: inset(0);
    transform: translate3d(0, 0, 0) scale(1);
    filter: blur(0);
  }
}

@keyframes home-headline-accent {
  from { opacity: 0; transform: translateX(-50%) scaleX(0); }
  to { opacity: 1; transform: translateX(-50%) scaleX(1); }
}

@keyframes home-description-enter {
  0% {
    opacity: 0;
    clip-path: inset(0 0 100% 0);
    transform: translateY(20px);
    filter: blur(4px);
  }
  100% {
    opacity: 1;
    clip-path: inset(0);
    transform: translateY(0);
    filter: blur(0);
  }
}

@keyframes home-eyebrow-line {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

@keyframes home-actions-enter {
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes home-button-enter {
  from { opacity: 0; transform: translateY(14px) scale(.94); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes home-gallery-enter {
  to { opacity: 1; transform: translateY(0); }
}
img { max-width: 100%; display: block; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
#home, #store, #products, #notebooks, #office-supplies, #corporate-gifting, #contact, #featured {
  scroll-margin-top: 108px;
}

:focus-visible {
  outline: 3px solid var(--mustard);
  outline-offset: 3px;
}

.site-splash {
  position: fixed;
  z-index: 9999;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 24px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 42%, rgba(255, 255, 255, .95) 0 14%, transparent 48%),
    linear-gradient(145deg, #fffaf4, #f7eee7);
  opacity: 1;
  visibility: visible;
  transition:
    opacity 520ms cubic-bezier(.4, 0, .2, 1),
    visibility 520ms linear,
    transform 620ms cubic-bezier(.4, 0, .2, 1),
    filter 520ms ease;
  animation: splash-fallback-hide 520ms 2.4s forwards;
}
.site-splash::before,
.site-splash::after {
  content: "";
  position: absolute;
  width: min(52vw, 620px);
  aspect-ratio: 1;
  border: 1px solid rgba(143, 29, 44, .1);
  border-radius: 50%;
}
.site-splash::before {
  top: -34%;
  left: -16%;
}
.site-splash::after {
  right: -18%;
  bottom: -42%;
}
.site-splash.is-closing {
  opacity: 0;
  visibility: hidden;
  transform: scale(1.025);
  filter: blur(3px);
  pointer-events: none;
}
.site-splash.is-closing .site-splash__content {
  animation: splash-content-exit 520ms cubic-bezier(.4, 0, .2, 1) forwards;
}
.site-splash[hidden] { display: none; }
.site-splash__content {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  text-align: center;
  animation: splash-content-arrive 720ms cubic-bezier(.2, .8, .3, 1) both;
}
.site-splash__logo-wrap {
  width: clamp(116px, 12vw, 156px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  padding: 14px;
  border: 1px solid rgba(143, 29, 44, .12);
  border-radius: 50%;
  background: rgba(255, 255, 255, .78);
  box-shadow: 0 22px 60px rgba(104, 21, 34, .13);
}
.site-splash__logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
}
.site-splash__brand {
  display: grid;
  gap: 5px;
  margin-top: 22px;
}
.site-splash__brand strong {
  color: var(--burgundy);
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 800;
  letter-spacing: -.025em;
  text-transform: uppercase;
}
.site-splash__brand span {
  color: var(--muted);
  font-size: clamp(10px, 1.2vw, 13px);
  font-weight: 500;
}
.splash-production {
  display: grid;
  justify-items: center;
  gap: 8px;
  margin-top: 14px;
}
.splash-machine {
  position: relative;
  width: clamp(260px, 24vw, 310px);
  height: 142px;
  animation: splash-machine-arrive 520ms 120ms cubic-bezier(.2, .8, .3, 1) both;
}
.splash-machine__frame {
  position: absolute;
  z-index: 1;
  top: 4px;
  left: 28px;
  right: 28px;
  height: 102px;
  border: 7px solid var(--burgundy-deep);
  border-bottom: 0;
  border-radius: 12px 12px 0 0;
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, .18);
}
.splash-machine__frame::before,
.splash-machine__frame::after {
  content: "";
  position: absolute;
  bottom: -28px;
  width: 11px;
  height: 30px;
  border-radius: 0 0 4px 4px;
  background: var(--burgundy-deep);
}
.splash-machine__frame::before { left: -7px; }
.splash-machine__frame::after { right: -7px; }
.splash-machine__arm {
  position: absolute;
  z-index: 4;
  top: 8px;
  left: calc(50% - 5px);
  width: 10px;
  height: 42px;
  border-radius: 0 0 3px 3px;
  background: var(--mustard);
  transform-origin: center top;
  animation: splash-machine-arm 1.85s 260ms ease-in-out both;
}
.splash-machine__press {
  position: absolute;
  z-index: 5;
  top: 42px;
  left: calc(50% - 48px);
  width: 96px;
  height: 24px;
  border-radius: 5px;
  background: linear-gradient(#a52939, var(--burgundy-deep));
  box-shadow: 0 5px 0 rgba(104, 21, 34, .18);
  animation: splash-machine-press 1.85s 260ms ease-in-out both;
}
.splash-machine__press::after {
  content: "BIND";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, .88);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .16em;
}
.splash-machine__feeder {
  position: absolute;
  z-index: 2;
  top: 59px;
  right: 2px;
  width: 58px;
  height: 42px;
  border: 3px solid var(--teal-deep);
  border-left: 0;
  border-radius: 0 8px 8px 0;
  background:
    repeating-linear-gradient(to bottom, #fffdf9 0 6px, #e8ddd3 7px 8px);
  animation: splash-feeder-pulse 720ms 3 ease-in-out;
}
.splash-machine__light {
  position: absolute;
  z-index: 6;
  top: 17px;
  right: 40px;
  width: 10px;
  height: 10px;
  border: 2px solid #fff8ea;
  border-radius: 50%;
  background: var(--mustard);
  box-shadow: 0 0 0 3px rgba(214, 169, 40, .2);
  animation: splash-machine-light 520ms ease-in-out infinite alternate;
}
.splash-machine__conveyor {
  position: absolute;
  z-index: 2;
  right: 15px;
  bottom: 13px;
  left: 15px;
  height: 27px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  border: 4px solid #494145;
  border-radius: 15px;
  background: repeating-linear-gradient(90deg, #6e666a 0 13px, #898185 13px 20px);
  background-size: 40px 100%;
  animation: splash-conveyor-belt 420ms linear infinite;
}
.splash-machine__conveyor span {
  width: 15px;
  height: 15px;
  border: 3px solid #e8ded5;
  border-radius: 50%;
  background: #494145;
  animation: splash-conveyor-roller 420ms linear infinite;
}
.splash-book {
  position: relative;
  z-index: 3;
  top: 61px;
  left: calc(50% - 66px);
  width: 132px;
  height: 70px;
  filter: drop-shadow(0 12px 12px rgba(104, 21, 34, .14));
  animation: splash-book-finish 2.15s cubic-bezier(.2, .8, .3, 1) both;
}
.splash-book__cover,
.splash-book__sheet,
.splash-book__spine,
.splash-book__stamp {
  position: absolute;
  display: block;
}
.splash-book__cover,
.splash-book__sheet {
  left: 10px;
  width: 112px;
  height: 54px;
  border-radius: 3px 7px 7px 3px;
}
.splash-book__cover--back {
  top: 9px;
  background: var(--burgundy-deep);
  transform-origin: left center;
  animation: splash-cover-back 1.35s 80ms cubic-bezier(.2, .8, .3, 1) both;
}
.splash-book__sheet {
  height: 48px;
  border: 1px solid #e4d9ce;
  background:
    linear-gradient(rgba(40, 87, 184, .13), rgba(40, 87, 184, .13)) 16px 13px / 54px 1px no-repeat,
    linear-gradient(rgba(40, 87, 184, .13), rgba(40, 87, 184, .13)) 16px 21px / 48px 1px no-repeat,
    linear-gradient(rgba(40, 87, 184, .13), rgba(40, 87, 184, .13)) 16px 29px / 58px 1px no-repeat,
    #fffdf9;
  opacity: 0;
}
.splash-book__sheet--one {
  top: 12px;
  animation: splash-sheet-feed 720ms 180ms cubic-bezier(.2, .8, .3, 1) both;
}
.splash-book__sheet--two {
  top: 10px;
  animation: splash-sheet-feed 720ms 320ms cubic-bezier(.2, .8, .3, 1) both;
}
.splash-book__sheet--three {
  top: 8px;
  animation: splash-sheet-feed 720ms 460ms cubic-bezier(.2, .8, .3, 1) both;
}
.splash-book__cover--front {
  top: 5px;
  border: 1px solid rgba(104, 21, 34, .3);
  background: linear-gradient(135deg, var(--burgundy), var(--burgundy-deep));
  transform-origin: left center;
  animation: splash-cover-close 620ms 920ms cubic-bezier(.2, .85, .35, 1) both;
}
.splash-book__spine {
  z-index: 3;
  top: 5px;
  left: 10px;
  width: 9px;
  height: 54px;
  border-radius: 3px 0 0 3px;
  background: var(--mustard);
  transform-origin: center top;
  animation: splash-bind-book 440ms 1.28s cubic-bezier(.2, .85, .35, 1.3) both;
}
.splash-book__stamp {
  z-index: 4;
  top: 23px;
  left: 51px;
  color: rgba(255, 255, 255, .9);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
  animation: splash-stamp-book 360ms 1.48s cubic-bezier(.2, .85, .35, 1.3) both;
}
.splash-production__caption {
  color: var(--burgundy-deep);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  animation: splash-caption-arrive 420ms 1.55s ease both;
}
.site-splash__loader {
  display: flex;
  gap: 7px;
  margin-top: 13px;
}
.site-splash__loader span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--burgundy);
  animation: splash-dot 900ms ease-in-out infinite;
}
.site-splash__loader span:nth-child(2) { animation-delay: 140ms; }
.site-splash__loader span:nth-child(3) { animation-delay: 280ms; }

@keyframes splash-content-arrive {
  from {
    opacity: 0;
    transform: translateY(18px) scale(.94);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes splash-content-exit {
  from {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
  to {
    opacity: 0;
    transform: translateY(-12px) scale(.97);
  }
}

@keyframes splash-dot {
  0%, 60%, 100% { opacity: .3; transform: translateY(0); }
  30% { opacity: 1; transform: translateY(-5px); }
}

@keyframes splash-machine-arrive {
  from { opacity: 0; transform: translateY(12px) scale(.94); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes splash-machine-arm {
  0%, 50%, 82%, 100% { transform: scaleY(1); }
  61%, 72% { transform: scaleY(1.82); }
}

@keyframes splash-machine-press {
  0%, 50%, 82%, 100% { transform: translateY(0); }
  61%, 72% { transform: translateY(34px); }
}

@keyframes splash-feeder-pulse {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(-5px); }
}

@keyframes splash-machine-light {
  from { opacity: .35; }
  to { opacity: 1; box-shadow: 0 0 0 5px rgba(214, 169, 40, .24); }
}

@keyframes splash-conveyor-belt {
  to { background-position-x: -40px; }
}

@keyframes splash-conveyor-roller {
  to { transform: rotate(360deg); }
}

@keyframes splash-cover-back {
  from { opacity: 0; transform: translateX(-52px) rotate(-7deg); }
  to { opacity: 1; transform: translateX(0) rotate(0); }
}

@keyframes splash-sheet-feed {
  from { opacity: 0; transform: translateX(76px) translateY(-5px); }
  to { opacity: 1; transform: translateX(0) translateY(0); }
}

@keyframes splash-cover-close {
  0% { opacity: 0; transform: translateX(58px) rotate(6deg) scaleX(.9); }
  100% { opacity: 1; transform: translateX(0) rotate(0) scaleX(1); }
}

@keyframes splash-bind-book {
  from { opacity: 0; transform: scaleY(0); }
  to { opacity: 1; transform: scaleY(1); }
}

@keyframes splash-stamp-book {
  from { opacity: 0; transform: scale(1.7); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes splash-book-finish {
  0%, 78% { transform: translateY(0) rotate(0); }
  90% { transform: translateY(-4px) rotate(-1deg); }
  100% { transform: translateY(0) rotate(0); }
}

@keyframes splash-caption-arrive {
  from { opacity: 0; transform: translateY(5px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes splash-fallback-hide {
  to {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }
}

/* Logo-first splash presentation */
.site-splash {
  background:
    radial-gradient(circle at 50% 45%, rgba(255, 255, 255, .98) 0 17%, rgba(255, 250, 244, .92) 42%, transparent 68%),
    linear-gradient(145deg, #fffdf9, #f5e9e0);
}
.site-splash__content { width: min(100%, 620px); }
.site-splash__logo-stage {
  position: relative;
  width: clamp(300px, 46vw, 500px);
  min-height: clamp(250px, 34vw, 370px);
  display: grid;
  place-items: center;
  isolation: isolate;
  animation: splash-logo-stage-enter 780ms cubic-bezier(.18, .84, .32, 1) both;
}
.site-splash__logo-stage::before {
  content: "";
  position: absolute;
  z-index: -2;
  width: 72%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(168, 31, 50, .16), rgba(214, 169, 40, .07) 44%, transparent 72%);
  filter: blur(12px);
  animation: splash-logo-aura 2s .35s ease-in-out infinite alternate;
}
.site-splash__orbit {
  position: absolute;
  z-index: -1;
  aspect-ratio: 1;
  border-radius: 50%;
  opacity: 0;
}
.site-splash__orbit--outer {
  width: 88%;
  border: 1px solid rgba(143, 29, 44, .13);
  border-top-color: rgba(214, 169, 40, .55);
  animation:
    splash-orbit-enter 720ms 180ms ease forwards,
    splash-orbit-turn 9s 900ms linear infinite;
}
.site-splash__orbit--inner {
  width: 68%;
  border: 1px solid rgba(214, 169, 40, .2);
  border-right-color: rgba(143, 29, 44, .42);
  animation:
    splash-orbit-enter 720ms 300ms ease forwards,
    splash-orbit-turn-reverse 7s 1.02s linear infinite;
}
.site-splash__logo-wrap {
  position: relative;
  z-index: 2;
  width: 82%;
  aspect-ratio: auto;
  overflow: hidden;
  padding: clamp(22px, 3.8vw, 38px);
  border: 1px solid rgba(143, 29, 44, .13);
  border-radius: clamp(24px, 3vw, 34px);
  background: rgba(255, 255, 255, .82);
  box-shadow:
    0 30px 80px rgba(104, 21, 34, .14),
    inset 0 1px 0 rgba(255, 255, 255, .92);
  backdrop-filter: blur(14px);
  animation: splash-logo-card-enter 920ms 120ms cubic-bezier(.18, .88, .3, 1.12) both;
}
.site-splash__logo-wrap::after {
  content: "";
  position: absolute;
  inset: -35% auto -35% -50%;
  width: 28%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .9), transparent);
  transform: skewX(-18deg);
  animation: splash-logo-shine 1.15s 720ms ease-in-out both;
}
.site-splash__logo {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  object-fit: contain;
  mix-blend-mode: normal;
  filter: saturate(.9) contrast(.98);
  animation: splash-logo-focus 1.2s 240ms cubic-bezier(.2, .8, .3, 1) both;
}
.site-splash__brand {
  gap: 4px;
  margin-top: 18px;
  animation: splash-meta-enter 560ms 700ms ease both;
}
.site-splash__brand strong {
  font-size: clamp(24px, 3.6vw, 34px);
  letter-spacing: -.03em;
}
.site-splash__brand span { font-size: clamp(11px, 1.4vw, 14px); }
.site-splash__tagline {
  margin-top: 15px;
  color: var(--burgundy-deep);
  font-size: clamp(9px, 1.2vw, 11px);
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
  animation: splash-meta-enter 520ms 880ms ease both;
}
.site-splash__loader {
  margin-top: 18px;
  animation: splash-meta-enter 480ms 1.02s ease both;
}

@keyframes splash-logo-stage-enter {
  from { opacity: 0; transform: translateY(18px) scale(.92); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes splash-logo-card-enter {
  from { opacity: 0; transform: scale(.72) rotate(-2deg); filter: blur(8px); }
  to { opacity: 1; transform: scale(1) rotate(0); filter: blur(0); }
}
@keyframes splash-logo-focus {
  from { opacity: 0; transform: scale(1.12); filter: blur(7px) saturate(.6); }
  to { opacity: 1; transform: scale(1); filter: blur(0) saturate(.9); }
}
@keyframes splash-logo-shine {
  0% { left: -50%; opacity: 0; }
  20% { opacity: .9; }
  100% { left: 125%; opacity: 0; }
}
@keyframes splash-logo-aura {
  from { opacity: .55; transform: scale(.92); }
  to { opacity: 1; transform: scale(1.08); }
}
@keyframes splash-orbit-enter {
  from { opacity: 0; transform: scale(.7); }
  to { opacity: 1; transform: scale(1); }
}
@keyframes splash-orbit-turn {
  to { transform: rotate(360deg); }
}
@keyframes splash-orbit-turn-reverse {
  to { transform: rotate(-360deg); }
}
@keyframes splash-meta-enter {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.announcement {
  min-height: 36px;
  display: grid;
  place-items: center;
  padding: 8px 18px;
  background: var(--burgundy);
  color: #fff;
  text-align: center;
  font-size: 12px;
  font-weight: 600;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  min-height: 76px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
  padding: 9px max(24px, calc((100vw - var(--container)) / 2));
  background: rgba(255, 255, 255, .96);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 4px 18px rgba(40, 32, 30, .05);
  backdrop-filter: blur(12px);
}

.brand {
  min-width: 225px;
  display: inline-flex;
  align-items: center;
  gap: 13px;
  text-decoration: none;
}
.brand img {
  width: 62px;
  height: 58px;
  padding: 5px 7px;
  border: 1px solid rgba(143, 29, 44, .12);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 5px 15px rgba(104, 21, 34, .09);
  object-fit: contain;
}
.brand span { display: grid; gap: 2px; }
.brand strong {
  color: var(--burgundy);
  font-size: 15px;
  font-weight: 800;
  text-transform: uppercase;
}
.brand small {
  color: var(--muted);
  font-size: 10px;
  font-weight: 500;
  line-height: 1.25;
}

.primary-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
}
.primary-nav a {
  position: relative;
  padding: 10px 9px;
  color: #3f393e;
  text-decoration: none;
  white-space: nowrap;
  font-size: 12px;
  font-weight: 600;
  transition: color var(--motion-fast) ease, background var(--motion-fast) ease;
}
.primary-nav a::after {
  content: "";
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 4px;
  height: 2px;
  background: var(--coral);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--motion-base) ease;
}
.primary-nav a:hover,
.primary-nav a.is-active { color: var(--burgundy); }
.primary-nav a:hover::after,
.primary-nav a.is-active::after { transform: scaleX(1); }

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 11px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  background: #fff;
  cursor: pointer;
}
.menu-toggle span {
  display: block;
  width: 21px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
  transition: transform var(--motion-base) ease, opacity var(--motion-fast) ease;
}
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.header-actions {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.header-cta {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  animation: header-enquire-glow 3.2s ease-in-out infinite;
}
.header-cta::after {
  content: "";
  position: absolute;
  inset: -45% auto -45% -55%;
  width: 32%;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .62), transparent);
  transform: skewX(-20deg);
  animation: header-button-flash 3.2s ease-in-out infinite;
}
.header-whatsapp {
  position: relative;
  width: 46px;
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  overflow: hidden;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, .52);
  border-radius: 50%;
  background: linear-gradient(135deg, #25d366, #159447);
  color: #fff;
  box-shadow: 0 9px 22px rgba(20, 146, 71, .25);
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  isolation: isolate;
  animation: header-whatsapp-pulse 3s ease-in-out infinite;
  transition:
    width 360ms cubic-bezier(.2, .75, .25, 1),
    gap 280ms ease,
    padding 280ms ease,
    border-radius 360ms ease,
    transform var(--motion-fast) ease,
    box-shadow var(--motion-fast) ease;
}
.header-whatsapp::after {
  content: "";
  position: absolute;
  inset: -45% auto -45% -55%;
  width: 32%;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .58), transparent);
  transform: skewX(-20deg);
  animation: header-button-flash 3s .7s ease-in-out infinite;
}
.header-whatsapp__icon {
  width: 25px;
  height: 25px;
  display: grid;
  place-items: center;
  flex: 0 0 25px;
  animation: header-whatsapp-icon 3s ease-in-out infinite;
}
.header-whatsapp__text {
  max-width: 0;
  overflow: hidden;
  opacity: 0;
  white-space: nowrap;
  transform: translateX(6px);
  transition:
    max-width 360ms cubic-bezier(.2, .75, .25, 1),
    opacity 220ms ease,
    transform 280ms ease;
}
.header-whatsapp svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}
.header-whatsapp svg path + path {
  fill: currentColor;
  stroke: none;
}
.header-whatsapp:hover,
.header-whatsapp:focus-visible {
  width: 148px;
  gap: 8px;
  padding: 0 14px;
  border-radius: 999px;
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(20, 146, 71, .34);
  animation-play-state: paused;
}
.header-whatsapp:hover .header-whatsapp__text,
.header-whatsapp:focus-visible .header-whatsapp__text {
  max-width: 90px;
  opacity: 1;
  transform: translateX(0);
}
.header-cta:hover,
.header-cta:focus-visible { animation-play-state: paused; }

@keyframes header-enquire-glow {
  0%, 62%, 100% { box-shadow: 0 10px 24px rgba(143, 29, 44, .22); }
  74% { box-shadow: 0 10px 30px rgba(169, 25, 49, .54), 0 0 0 5px rgba(169, 25, 49, .09); }
  86% { box-shadow: 0 10px 24px rgba(143, 29, 44, .3); }
}
@keyframes header-whatsapp-pulse {
  0%, 62%, 100% { box-shadow: 0 9px 22px rgba(20, 146, 71, .25); }
  76% { box-shadow: 0 11px 30px rgba(20, 181, 82, .48), 0 0 0 5px rgba(37, 211, 102, .1); }
  88% { box-shadow: 0 9px 24px rgba(20, 146, 71, .31); }
}
@keyframes header-button-flash {
  0%, 55% { left: -55%; opacity: 0; }
  62% { opacity: 1; }
  78%, 100% { left: 125%; opacity: 0; }
}
@keyframes header-whatsapp-icon {
  0%, 68%, 100% { transform: rotate(0) scale(1); }
  74% { transform: rotate(-9deg) scale(1.08); }
  81% { transform: rotate(7deg) scale(1.08); }
  88% { transform: rotate(0) scale(1); }
}
.btn, .header-cta, .product-card button, .quote-close-button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 19px;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  cursor: pointer;
  text-decoration: none;
  font-weight: 600;
  line-height: 1.2;
  transition:
    transform var(--motion-fast) ease,
    box-shadow var(--motion-fast) ease,
    background var(--motion-fast) ease,
    border-color var(--motion-fast) ease;
}
.btn:hover, .header-cta:hover, .product-card button:hover { transform: translateY(-2px); }
.primary, .header-cta, .product-card button {
  background: var(--burgundy);
  color: #fff;
  box-shadow: 0 10px 24px rgba(143, 29, 44, .22);
}
.primary:hover, .header-cta:hover, .product-card button:hover {
  background: var(--burgundy-deep);
  box-shadow: 0 14px 30px rgba(104, 21, 34, .28);
}
.secondary {
  background: #fff;
  color: var(--burgundy);
  border-color: var(--burgundy);
}
.secondary:hover { background: #fff4f2; }
.text-link {
  color: var(--teal-deep);
  font-weight: 600;
  text-underline-offset: 4px;
}

.section-pad {
  padding: var(--section-space) max(24px, calc((100vw - var(--container)) / 2));
}
.section-head {
  max-width: 850px;
  margin-bottom: 24px;
}
.section-head.split {
  max-width: none;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--burgundy);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.4;
  text-transform: uppercase;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 3px;
  background: var(--mustard);
}
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { color: var(--ink); }
h1 {
  max-width: 760px;
  margin: 16px 0 20px;
  font-size: clamp(44px, 5.7vw, 76px);
  font-weight: 800;
  line-height: 1.03;
}
h2 {
  margin: 12px 0 16px;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  line-height: 1.08;
}
h3 {
  margin-bottom: 10px;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.25;
}
p { color: var(--muted); line-height: 1.72; }

.hero {
  position: relative;
  min-height: calc(100svh - 112px);
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(18px, 3svh, 32px);
  padding-top: clamp(22px, 3svh, 34px);
  padding-bottom: clamp(16px, 2.4svh, 26px);
  overflow: hidden;
  background: var(--off-white);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='420' height='280' viewBox='0 0 420 280'%3E%3Cg fill='none' stroke='%23681522' stroke-width='1.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='18' y='18' width='45' height='56' rx='3'/%3E%3Cpath d='M27 18v56M34 31h20M34 41h20M34 51h16'/%3E%3Cpath d='m122 24 48 21-5 7-48-21 5-7Zm-5 7-7-8 12 1'/%3E%3Crect x='226' y='20' width='70' height='20' rx='2' transform='rotate(8 226 20)'/%3E%3Cpath d='m238 25-2 7m12-5-2 7m12-5-2 7m12-5-2 7'/%3E%3Ccircle cx='368' cy='35' r='8'/%3E%3Ccircle cx='386' cy='52' r='8'/%3E%3Cpath d='m374 41 27 26m-21-21-20 24m13-17 27-22'/%3E%3Cpath d='M82 124c-13-18 17-29 27-12l12 21c8 13-12 24-20 11l-13-21c-4-7 7-13 11-6l12 19'/%3E%3Cpath d='M185 104h42l-5 13h-32l-5-13Zm8 13-4 30m29-30 4 30'/%3E%3Cpath d='M280 112h35l-5 32h-25l-5-32Zm7 0 5-9h11l5 9m-18 10h15'/%3E%3Cpath d='m358 112 36 8-8 25-36-8 8-25Zm4 6 21 5'/%3E%3Cpath d='m22 210 58-21-20 31-38-10Zm38 10 8 20'/%3E%3Cpath d='M133 194h55l-27 45-28-45Zm28 0v45m-18-30h36'/%3E%3Cpath d='M241 193h49v43h-49zM278 193v12h12'/%3E%3Cpath d='m350 198 28-8 9 32-28 8-9-32Zm7 5 17-5'/%3E%3C/g%3E%3C/svg%3E");
  background-position: center;
  background-size: 420px 280px;
  opacity: .045;
  pointer-events: none;
}
.hero-copy {
  position: relative;
  z-index: 2;
  width: min(100%, 1140px);
  display: flex;
  flex-direction: column;
  align-items: center;
  align-self: center;
  justify-self: center;
  text-align: center;
}
.hero-copy .eyebrow {
  max-width: 780px;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 9px;
  margin-bottom: clamp(16px, 2svh, 20px);
  font-size: 11px;
  line-height: 1.35;
  text-wrap: balance;
}
.hero-copy .eyebrow::before {
  width: 34px;
  margin: 0 auto;
}
.hero-copy h1 {
  width: 100%;
  max-width: 1200px;
  margin: 0 0 clamp(18px, 2.3svh, 24px);
  font-size: clamp(46px, min(4.6vw, 7.2svh), 62px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -.035em;
  text-wrap: balance;
}
.hero-copy h1 span {
  position: relative;
  display: block;
}
.hero-copy h1 span:first-child {
  font-size: 1em;
}
.hero-copy h1 span:last-child {
  color: var(--burgundy-deep);
  font-size: .92em;
}
.hero-copy h1 span:last-child::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -10px;
  width: min(220px, 34%);
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, var(--mustard) 20%, var(--burgundy) 80%, transparent);
  opacity: 1;
  transform: translateX(-50%) scaleX(1);
  transform-origin: center;
}
.hero-copy p {
  max-width: 820px;
  margin: 0;
  font-size: clamp(17px, 1.25vw, 20px);
  line-height: 1.58;
  text-wrap: balance;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  width: fit-content;
  margin-top: clamp(22px, 2.8svh, 28px);
}
.hero-shop-strip {
  position: relative;
  width: 100vw;
  max-width: none;
  margin-left: calc(50% - 50vw);
  z-index: 2;
  padding: 5px 18px 4px;
  overflow-x: auto;
  overflow-y: hidden;
  overscroll-behavior-inline: contain;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  cursor: grab;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 3.5%, #000 96.5%, transparent);
  mask-image: linear-gradient(to right, transparent, #000 3.5%, #000 96.5%, transparent);
}
.hero-shop-strip::-webkit-scrollbar { display: none; }
.hero-shop-strip.has-auto-scroll {
  scroll-snap-type: none;
}
.hero-shop-strip.is-dragging {
  cursor: grabbing;
  scroll-snap-type: none;
}
.hero-shop-track {
  width: max-content;
  min-width: 100%;
  display: flex;
  gap: clamp(12px, 1.15vw, 18px);
}
.hero-shop-track img {
  height: clamp(250px, 34svh, 360px);
  flex: 0 0 clamp(320px, 25vw, 440px);
  min-width: 0;
  border: 3px solid #fff;
  border-radius: clamp(18px, 1.5vw, 24px);
  object-fit: cover;
  pointer-events: none;
  scroll-snap-align: start;
  box-shadow: var(--shadow-sm);
  user-select: none;
  will-change: transform;
  animation: hero-image-drift 6s ease-in-out infinite alternate;
  transition:
    filter var(--motion-base) ease,
    box-shadow var(--motion-base) ease;
}
.hero-shop-track img:nth-child(3n + 2) { animation-delay: -2s; }
.hero-shop-track img:nth-child(3n) { animation-delay: -4s; }
.hero-shop-track img:hover {
  z-index: 2;
  filter: saturate(1.08) contrast(1.025);
  box-shadow: var(--shadow-md);
  animation-play-state: paused;
}
.hero-shop-strip.is-dragging .hero-shop-track img,
.hero-shop-strip.is-auto-paused .hero-shop-track img {
  animation-play-state: paused;
}

@keyframes hero-image-drift {
  from { transform: translateY(0) scale(1); }
  to { transform: translateY(-4px) scale(1.012); }
}
.promo-band span {
  color: var(--burgundy);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.paper-trail {
  position: relative;
  overflow: hidden;
  padding-top: clamp(52px, 6vw, 82px);
  padding-bottom: clamp(58px, 7vw, 92px);
  background-color: #fbf8f2;
}
.paper-trail__header {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}
.paper-trail__header .eyebrow {
  justify-content: center;
}
.paper-trail__header h2 {
  margin: 12px 0 14px;
  font-size: clamp(38px, 4vw, 58px);
  line-height: 1.06;
  text-wrap: balance;
}
.typewriter-heading {
  position: relative;
}
.typewriter-heading__sizer {
  display: block;
  visibility: hidden;
}
.typewriter-heading__text {
  position: absolute;
  inset: 0;
  display: block;
}
.typewriter-heading.is-typing .typewriter-heading__text::after,
.typewriter-heading.is-complete .typewriter-heading__text::after {
  content: "";
  width: .075em;
  height: .82em;
  display: inline-block;
  margin-left: .08em;
  border-radius: 999px;
  background: var(--burgundy);
  vertical-align: -.04em;
  animation: typewriter-cursor 720ms steps(1, end) infinite;
}
.typewriter-heading.is-complete .typewriter-heading__text::after {
  animation: typewriter-cursor 720ms steps(1, end) 3 forwards;
}
@keyframes typewriter-cursor {
  0%, 48% { opacity: 1; }
  49%, 100% { opacity: 0; }
}
.paper-trail__header p {
  max-width: 760px;
  margin: 0 auto;
  font-size: clamp(14px, 1.1vw, 16px);
  line-height: 1.62;
  text-wrap: balance;
}
.paper-trail__journey {
  position: relative;
  max-width: var(--container);
  margin: clamp(34px, 4vw, 54px) auto 0;
}
.paper-trail__connector {
  position: absolute;
  z-index: 0;
  top: 54px;
  left: 2%;
  width: 96%;
  height: 210px;
  overflow: visible;
  pointer-events: none;
}
.paper-trail__connector path {
  fill: none;
  stroke: rgba(213, 158, 31, .7);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-dasharray: 8 9;
}
.paper-trail__connector.visible path {
  animation: paper-trail-flow 1.4s cubic-bezier(.22, .8, .3, 1) both;
}
.paper-trail__connector circle {
  fill: #fffaf0;
  stroke: var(--mustard);
  stroke-width: 3;
  opacity: 0;
  transform: scale(.35);
  transform-box: fill-box;
  transform-origin: center;
}
.paper-trail__connector.visible circle {
  animation: paper-trail-point 420ms cubic-bezier(.2, .85, .35, 1.35) forwards;
}
.paper-trail__connector.visible circle:nth-of-type(1) { animation-delay: 180ms; }
.paper-trail__connector.visible circle:nth-of-type(2) { animation-delay: 360ms; }
.paper-trail__connector.visible circle:nth-of-type(3) { animation-delay: 540ms; }
.paper-trail__connector.visible circle:nth-of-type(4) { animation-delay: 720ms; }
.paper-trail__connector.visible circle:nth-of-type(5) { animation-delay: 900ms; }

@keyframes paper-trail-flow {
  from {
    opacity: 0;
    stroke-dashoffset: 110;
  }
  to {
    opacity: 1;
    stroke-dashoffset: 0;
  }
}

@keyframes paper-trail-point {
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.paper-trail__stages {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(12px, 1.3vw, 20px);
  margin: 0;
  padding: 0;
  list-style: none;
}
.process-stage {
  --accent: var(--coral);
  --tint: #fff1ec;
  position: relative;
  min-width: 0;
  min-height: 286px;
  display: flex;
  flex-direction: column;
  padding: clamp(20px, 1.8vw, 27px);
  border: 1px solid color-mix(in srgb, var(--accent) 24%, #e6ddd4);
  border-top: 5px solid var(--accent);
  border-radius: 8px;
  background: var(--tint);
  box-shadow: 0 14px 34px rgba(48, 36, 32, .09);
  transition:
    transform var(--motion-base) ease,
    box-shadow var(--motion-base) ease,
    border-color var(--motion-base) ease;
}
.process-stage:nth-child(even) {
  margin-top: 42px;
}
.process-stage:hover {
  transform: translateY(-5px);
  border-color: color-mix(in srgb, var(--accent) 46%, #e6ddd4);
  box-shadow: 0 20px 42px rgba(48, 36, 32, .14);
}
.process-stage--note {
  --accent: #e95f59;
  --tint: #fff0ec;
  border-radius: 8px 8px 26px 8px;
}
.process-stage--note::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 28px;
  height: 28px;
  border-radius: 8px 0 0;
  background: rgba(233, 95, 89, .3);
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
}
.process-stage--folder {
  --accent: #158f8b;
  --tint: #eaf8f5;
  margin-top: 42px;
  border-radius: 6px 18px 18px;
}
.process-stage--folder::before {
  content: "";
  position: absolute;
  top: -18px;
  left: -1px;
  width: 42%;
  height: 18px;
  border: 1px solid color-mix(in srgb, var(--accent) 24%, #e6ddd4);
  border-bottom: 0;
  border-radius: 8px 14px 0 0;
  background: var(--tint);
}
.process-stage--specification {
  --accent: #d5a11f;
  --tint: #fff9df;
  border-style: dashed;
  border-top-style: solid;
}
.process-stage--sheets {
  --accent: #315fbd;
  --tint: #edf3ff;
  margin-top: 42px;
  border-radius: 4px 16px 16px 4px;
  box-shadow:
    -6px 6px 0 #dce7fb,
    0 14px 34px rgba(48, 36, 32, .09);
}
.process-stage--sheets:hover {
  box-shadow:
    -6px 11px 0 #dce7fb,
    0 20px 42px rgba(48, 36, 32, .14);
}
.process-stage--label {
  --accent: #2d7551;
  --tint: #edf7ef;
  border-right-style: dashed;
  border-left-style: dashed;
  border-radius: 14px;
}
.process-stage__topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: auto;
  padding-bottom: 26px;
}
.process-stage__number {
  min-width: 46px;
  min-height: 34px;
  display: inline-grid;
  place-items: center;
  padding: 7px 10px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
}
.process-stage__icon {
  color: var(--accent);
  font-size: 31px;
  font-variation-settings: "FILL" 0, "wght" 400;
  transition: transform var(--motion-base) ease;
}
.process-stage:hover .process-stage__icon {
  transform: translateY(-3px) rotate(-6deg) scale(1.1);
}
.process-stage h3 {
  margin: 0 0 10px;
  font-size: clamp(18px, 1.45vw, 22px);
  line-height: 1.18;
}
.process-stage p {
  margin: 0;
  color: #5f5557;
  font-size: clamp(12px, .9vw, 14px);
  line-height: 1.58;
}
.process-stage__marker {
  display: none;
}

@media (min-width: 1101px) and (max-height: 820px) {
  .paper-trail {
    padding-top: 38px;
    padding-bottom: 44px;
  }
  .paper-trail__header h2 {
    font-size: 42px;
  }
  .paper-trail__journey {
    margin-top: 30px;
  }
  .process-stage {
    min-height: 252px;
    padding: 19px;
  }
  .process-stage:nth-child(even) {
    margin-top: 30px;
  }
  .process-stage__topline {
    padding-bottom: 18px;
  }
  .process-stage h3 {
    font-size: 18px;
  }
  .process-stage p {
    font-size: 12px;
    line-height: 1.48;
  }
}

@media (max-width: 1100px) {
  .paper-trail__journey {
    max-width: 760px;
    margin-top: 38px;
  }
  .paper-trail__connector {
    display: none;
  }
  .paper-trail .paper-trail__stages {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    padding-left: 48px;
  }
  .paper-trail__stages::before {
    content: "";
    position: absolute;
    top: 24px;
    bottom: 24px;
    left: 17px;
    border-left: 2px dashed rgba(213, 158, 31, .7);
  }
  .process-stage,
  .process-stage:nth-child(even),
  .process-stage--folder,
  .process-stage--sheets {
    min-height: 0;
    margin-top: 0;
    padding: 24px;
  }
  .process-stage__topline {
    margin-bottom: 20px;
    padding-bottom: 0;
  }
  .paper-trail .process-stage__marker {
    position: absolute;
    top: 31px;
    left: -40px;
    width: 18px;
    height: 18px;
    display: block;
    border: 4px solid #fbf8f2;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 0 2px color-mix(in srgb, var(--accent) 72%, white);
  }
}

@media (max-width: 700px) {
  .paper-trail {
    padding-top: 48px;
    padding-bottom: 54px;
  }
  .paper-trail__header {
    text-align: left;
  }
  .paper-trail__header .eyebrow {
    justify-content: flex-start;
  }
  .paper-trail__header h2 {
    margin-top: 10px;
    font-size: clamp(32px, 9vw, 40px);
  }
  .paper-trail__header p {
    font-size: 14px;
  }
  .paper-trail__journey {
    margin-top: 30px;
  }
  .paper-trail .paper-trail__stages {
    gap: 15px;
    padding-left: 34px;
  }
  .paper-trail__stages::before {
    left: 11px;
  }
  .process-stage,
  .process-stage:nth-child(even),
  .process-stage--folder,
  .process-stage--sheets {
    padding: 21px 19px;
  }
  .paper-trail .process-stage__marker {
    top: 27px;
    left: -31px;
    width: 16px;
    height: 16px;
  }
  .process-stage__topline {
    margin-bottom: 18px;
  }
  .process-stage h3 {
    font-size: 20px;
  }
  .process-stage p {
    font-size: 13px;
  }
}

@media (max-width: 350px) {
  .paper-trail .paper-trail__stages {
    padding-left: 26px;
  }
  .paper-trail__stages::before {
    left: 8px;
  }
  .paper-trail .process-stage__marker {
    left: -25px;
  }
  .process-stage,
  .process-stage:nth-child(even),
  .process-stage--folder,
  .process-stage--sheets {
    padding: 19px 17px;
  }
}

.categories {
  position: relative;
  overflow: hidden;
  padding-top: 44px;
  padding-bottom: 44px;
  background: #fbf8f3;
}
.categories::before {
  content: "";
  position: absolute;
  top: 44px;
  right: max(24px, calc((100vw - var(--container)) / 2));
  width: 82px;
  height: 26px;
  border: 2px solid rgba(19, 136, 132, .2);
  border-top: 0;
}
.categories .section-head {
  max-width: 920px;
  margin-bottom: 24px;
}
.categories .section-head h2 {
  max-width: 820px;
  margin-bottom: 12px;
  color: var(--burgundy-deep);
  font-size: clamp(34px, 3.4vw, 44px);
  line-height: 1.08;
}
.categories .section-head p {
  max-width: 760px;
  margin-bottom: 0;
  font-size: 14px;
}
.category-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-flow: dense;
  grid-auto-rows: 190px;
  gap: 16px;
}
.category-card {
  position: relative;
  grid-column: span 3;
  min-height: 0;
  display: grid;
  grid-template-columns: 42% 58%;
  grid-template-rows: 1fr;
  overflow: hidden;
  border: 1px solid rgba(85, 58, 52, .1);
  border-radius: var(--radius-md);
  background: #dff3ef;
  box-shadow: 0 10px 24px rgba(58, 43, 37, .06);
  transition:
    transform var(--motion-base) ease,
    box-shadow var(--motion-base) ease,
    border-color var(--motion-base) ease;
}
.category-card:nth-child(1) {
  grid-column: span 6;
  grid-row: span 2;
  min-height: 0;
  grid-template-columns: 48% 52%;
  grid-template-rows: 1fr;
  background: #fce5df;
}
.category-card:nth-child(2) { background: #dff3ef; }
.category-card:nth-child(3) { background: #fff0c5; }
.category-card:nth-child(4) { background: #e5ebfb; }
.category-card:nth-child(5) { background: #e4f0e8; }
.category-card:nth-child(6) { background: #fff0d7; }
.category-card:nth-child(7) { background: #f7e2e5; }
.category-card:nth-child(6),
.category-card:nth-child(7),
.category-card:nth-child(8) {
  grid-column: span 4;
}
.category-card:nth-child(8) {
  background: #1e3156;
  color: #fff;
}
.category-card:nth-child(9) {
  grid-column: span 6;
  background: #e8edf5;
}
.category-card:nth-child(10) {
  grid-column: span 6;
  background: #dff3ef;
}
.category-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 36px rgba(58, 43, 37, .14);
  border-color: rgba(161, 25, 44, .28);
}
.category-photo {
  position: relative;
  width: auto;
  height: 100%;
  min-height: 0;
  margin: 0;
  padding: 10px 0 10px 10px;
  overflow: hidden;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}
.category-photo img {
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 10px;
  object-fit: cover;
  object-position: center;
  transition: transform var(--motion-base) ease;
}
.category-card:nth-child(1) .category-photo {
  padding: 14px 0 14px 14px;
}
.category-card:nth-child(1) .category-photo img {
  border-radius: 12px;
}
.category-card:hover .category-photo img { transform: scale(1.045); }
.category-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 12px;
}
.category-card:nth-child(1) .category-copy {
  padding: 30px;
}
.category-number {
  display: inline-flex;
  margin-bottom: 7px;
  padding: 4px 7px;
  border: 1px solid rgba(83, 45, 48, .16);
  border-radius: 5px;
  color: var(--burgundy);
  background: rgba(255, 255, 255, .58);
  font-size: 9px;
  font-weight: 700;
  line-height: 1;
}
.category-card h3 {
  margin: 0;
  font-size: 16px;
  line-height: 1.2;
}
.category-card:nth-child(1) h3 {
  font-size: clamp(26px, 2.4vw, 34px);
}
.category-card p {
  margin: 5px 0 9px;
  color: #594f50;
  font-size: 10px;
  line-height: 1.35;
}
.category-card a {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 0;
  padding: 8px 11px;
  border-radius: 6px;
  background: var(--burgundy);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  transition:
    background var(--motion-fast) ease,
    transform var(--motion-fast) ease;
}
.category-card a:hover { background: var(--burgundy-deep); }
.category-card a .material-symbols-rounded {
  font-size: 16px;
  transition: transform var(--motion-fast) ease;
}
.category-card a:hover .material-symbols-rounded { transform: translateX(3px); }
.category-card:nth-child(8) h3,
.category-card:nth-child(8) p { color: #fff; }
.category-card:nth-child(8) .category-number {
  border-color: rgba(255, 255, 255, .25);
  background: rgba(255, 255, 255, .1);
  color: #f6ce63;
}
.category-card:nth-child(8) a {
  background: var(--mustard);
  color: #251f19;
}

.need-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.need-panel {
  position: relative;
  min-height: 390px;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .34);
  border-bottom: 5px solid var(--coral);
  border-radius: var(--radius-lg);
  background: var(--ink);
  box-shadow: 0 12px 28px rgba(43, 32, 35, .12);
  color: #fff;
  isolation: isolate;
  transition:
    transform var(--motion-base) ease,
    box-shadow var(--motion-base) ease;
}
.need-office { border-bottom-color: var(--teal); }
.need-gifting { border-bottom-color: var(--mustard); }
.need-bulk { border-bottom-color: var(--blue); }
.need-panel::after {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(to top, rgba(24, 18, 22, .96) 0%, rgba(24, 18, 22, .72) 48%, rgba(24, 18, 22, .04) 78%);
  pointer-events: none;
}
.need-panel > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform var(--motion-slow) cubic-bezier(.2, .7, .2, 1);
}
.need-office > img { object-position: center 42%; }
.need-gifting > img { object-position: center 44%; }
.need-bulk > img { object-position: center 46%; }
.need-content {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 26px;
}
.need-label {
  margin-bottom: 7px;
  color: #ffd9cf;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}
.need-office .need-label { color: #aee5dc; }
.need-gifting .need-label { color: #f8d873; }
.need-bulk .need-label { color: #cbd7ff; }
.need-panel h3 {
  max-width: 520px;
  margin: 0 0 7px;
  color: #fff;
  font-size: clamp(23px, 2.1vw, 31px);
  line-height: 1.15;
}
.need-panel p {
  max-width: 560px;
  margin-bottom: 13px;
  color: rgba(255, 255, 255, .88);
  font-size: 12px;
  line-height: 1.5;
}
.need-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 14px;
}
.need-chips span {
  padding: 5px 8px;
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: 5px;
  background: rgba(255, 255, 255, .12);
  color: #fff;
  font-size: 9px;
  font-weight: 500;
  line-height: 1.2;
  transition: background var(--motion-fast) ease;
}
.need-cta {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  background: #fff;
  color: var(--burgundy-deep);
  font-size: 11px;
  font-weight: 700;
  text-decoration: none;
  transition:
    transform var(--motion-fast) ease,
    background var(--motion-fast) ease;
}
.need-cta .material-symbols-rounded {
  font-size: 17px;
  transition: transform var(--motion-fast) ease;
}
.need-panel:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(43, 32, 35, .2);
}
.need-panel:hover > img { transform: scale(1.045); }
.need-panel:hover .need-chips span { background: rgba(255, 255, 255, .19); }
.need-cta:hover { background: #fff5df; }
.need-cta:hover .material-symbols-rounded { transform: translateX(4px); }

.category-directory {
  margin-top: 22px;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fff;
}
.category-directory h3 {
  margin-bottom: 11px;
  color: var(--burgundy-deep);
  font-size: 15px;
}
.category-directory div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.category-directory a {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  padding: 8px 11px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--off-white);
  color: #50464a;
  font-size: 10px;
  font-weight: 600;
  text-decoration: none;
  transition:
    border-color var(--motion-fast) ease,
    color var(--motion-fast) ease,
    background var(--motion-fast) ease;
}
.category-directory a:hover {
  border-color: var(--burgundy);
  background: #fff;
  color: var(--burgundy);
}

.catalog-category-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.catalog-category-card {
  --category-accent: rgba(232, 91, 95, .92);
  position: relative;
  min-width: 0;
  height: 400px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: var(--radius-lg);
  background: var(--ink);
  box-shadow: 0 10px 26px rgba(40, 29, 32, .12);
  color: #fff;
  isolation: isolate;
  transition:
    transform 520ms cubic-bezier(.2, .75, .25, 1),
    box-shadow 520ms cubic-bezier(.2, .75, .25, 1),
    border-color var(--motion-base) ease;
}
.catalog-category-card:nth-child(7n + 2) { --category-accent: rgba(19, 136, 132, .92); }
.catalog-category-card:nth-child(7n + 3) { --category-accent: rgba(184, 137, 14, .94); }
.catalog-category-card:nth-child(7n + 4) { --category-accent: rgba(49, 80, 172, .92); }
.catalog-category-card:nth-child(7n + 5) { --category-accent: rgba(44, 112, 73, .94); }
.catalog-category-card:nth-child(7n + 6) { --category-accent: rgba(142, 24, 42, .94); }
.catalog-category-card:nth-child(7n) { --category-accent: rgba(105, 68, 133, .92); }
.catalog-category-card::after {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(to top, rgba(21, 16, 19, .96) 0%, rgba(21, 16, 19, .74) 48%, rgba(21, 16, 19, .05) 78%);
  pointer-events: none;
  transition: background var(--motion-base) ease;
}
.catalog-category-card::before {
  content: "";
  position: absolute;
  z-index: 3;
  inset: -45% -75%;
  background: linear-gradient(110deg, transparent 42%, rgba(255, 255, 255, .22) 50%, transparent 58%);
  opacity: 0;
  transform: translateX(-35%) rotate(5deg);
  pointer-events: none;
}
.catalog-category-card > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition:
    transform 760ms cubic-bezier(.2, .7, .2, 1),
    filter 520ms ease;
}
.catalog-category-card:nth-child(8) > img,
.catalog-category-card:nth-child(12) > img { object-position: center 42%; }
.catalog-category-card:nth-child(15) > img { object-position: center 46%; }
.catalog-category-content {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 24px;
  transition: transform 520ms cubic-bezier(.2, .75, .25, 1);
}
.catalog-category-index {
  margin-bottom: 8px;
  color: rgba(255, 255, 255, .76);
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
  transition:
    color var(--motion-fast) ease,
    transform var(--motion-base) ease;
}
.catalog-category-card h3 {
  max-width: 100%;
  margin: 0 0 10px;
  color: #fff;
  font-size: 20px;
  line-height: 1.2;
}
.catalog-category-card h3 span {
  max-width: 100%;
  display: inline-block;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 9px;
  background: var(--category-accent);
  box-shadow: 0 8px 18px rgba(20, 14, 16, .14);
  overflow-wrap: anywhere;
  transition: filter var(--motion-fast) ease;
}
.catalog-category-card p {
  max-width: 350px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, .9);
  font-size: 12px;
  line-height: 1.55;
  text-shadow: 0 1px 8px rgba(0, 0, 0, .34);
  transition:
    opacity var(--motion-base) ease,
    transform var(--motion-base) ease;
}
.catalog-category-card a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 14px;
  padding: 9px 13px;
  border: 1px solid rgba(255, 255, 255, .3);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, .94);
  color: var(--burgundy-deep);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  transition:
    background var(--motion-fast) ease,
    transform var(--motion-fast) ease,
    box-shadow var(--motion-fast) ease;
}
.catalog-category-card a .material-symbols-rounded {
  font-size: 17px;
  transition: transform var(--motion-fast) ease;
}
.catalog-category-card.reveal {
  transform: translateY(46px) scale(.95);
  transition:
    opacity 760ms cubic-bezier(.2, .7, .2, 1),
    transform 760ms cubic-bezier(.2, .7, .2, 1),
    box-shadow 520ms cubic-bezier(.2, .75, .25, 1),
    border-color var(--motion-base) ease;
  transition-delay: var(--reveal-delay, 0ms);
}
.catalog-category-card.reveal.visible {
  transform: translateY(0) scale(1);
}
.catalog-category-card.reveal.visible .catalog-category-content > * {
  animation: category-content-arrive 580ms cubic-bezier(.2, .8, .3, 1) backwards;
  animation-delay: calc(var(--reveal-delay, 0ms) + 180ms);
}
.catalog-category-card.reveal.visible .catalog-category-content > h3 { animation-delay: calc(var(--reveal-delay, 0ms) + 230ms); }
.catalog-category-card.reveal.visible .catalog-category-content > p { animation-delay: calc(var(--reveal-delay, 0ms) + 280ms); }
.catalog-category-card.reveal.visible .catalog-category-content > a { animation-delay: calc(var(--reveal-delay, 0ms) + 330ms); }

@keyframes category-content-arrive {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes category-card-shine {
  0% { opacity: 0; transform: translateX(-35%) rotate(5deg); }
  35% { opacity: 1; }
  100% { opacity: 0; transform: translateX(35%) rotate(5deg); }
}

@media (hover: hover) and (pointer: fine) {
  .catalog-category-card.reveal.visible:hover {
    z-index: 4;
    transform: translateY(-10px) scale(1.018) rotateX(1deg);
    border-color: rgba(255, 255, 255, .62);
    box-shadow: 0 26px 52px rgba(40, 29, 32, .24);
  }
  .catalog-category-card:hover::before {
    animation: category-card-shine 900ms cubic-bezier(.2, .7, .2, 1) both;
  }
  .catalog-category-card:hover::after {
    background: linear-gradient(to top, rgba(21, 16, 19, .98) 0%, rgba(21, 16, 19, .66) 46%, rgba(21, 16, 19, 0) 82%);
  }
  .catalog-category-card:hover > img {
    transform: scale(1.09) rotate(.35deg);
    filter: saturate(1.08) contrast(1.03);
  }
  .catalog-category-card:hover .catalog-category-content { transform: translateY(-4px); }
  .catalog-category-card:hover .catalog-category-index {
    color: #fff;
    transform: translateX(4px);
  }
  .catalog-category-card:hover h3 span {
    filter: brightness(1.12);
    box-shadow: 0 12px 24px rgba(20, 14, 16, .24);
  }
  .catalog-category-card:hover p { transform: translateY(-2px); }
  .catalog-category-card a:hover {
    background: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, .18);
  }
  .catalog-category-card a:hover .material-symbols-rounded { transform: translateX(5px); }
}

@media (max-width: 1279px) {
  .catalog-category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .catalog-category-card {
    height: 370px;
  }
  .catalog-category-card:last-child {
    grid-column: 1 / -1;
    width: calc((100% - 18px) / 2);
    justify-self: center;
  }
}

@media (max-width: 700px) {
  .catalog-category-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .catalog-category-card,
  .catalog-category-card:last-child {
    grid-column: auto;
    width: 100%;
    height: 390px;
  }
  .catalog-category-content {
    padding: 20px;
  }
  .catalog-category-card h3 {
    font-size: 20px;
  }
  .catalog-category-card p {
    max-width: 100%;
    font-size: 12px;
  }
}

@media (max-width: 360px) {
  .categories .section-head h2 {
    font-size: 30px;
  }
  .catalog-category-card,
  .catalog-category-card:last-child {
    height: 410px;
  }
  .catalog-category-content {
    padding: 18px;
  }
}

.featured { background: #fff; }
.featured .section-head {
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.product-card {
  min-height: 300px;
  display: flex;
  flex-direction: column;
  padding: 12px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fff;
  transition: transform var(--motion-base) ease, box-shadow var(--motion-base) ease;
}
.product-card:nth-child(1),
.product-card:nth-child(6) {
  grid-column: auto;
  display: flex;
  min-height: 300px;
}
.product-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}
.product-visual {
  position: relative;
  min-height: 132px;
  overflow: hidden;
  border-radius: 11px;
  background: var(--soft-grey);
}
.product-card:nth-child(1) .product-visual,
.product-card:nth-child(6) .product-visual {
  min-height: 132px;
}
.product-visual img {
  width: 100%;
  height: 100%;
  min-height: 132px;
  object-fit: cover;
  transition: transform var(--motion-slow) ease;
}
.product-card:hover .product-visual img { transform: scale(1.05); }
.product-badge {
  position: absolute;
  z-index: 2;
  top: 10px;
  left: 10px;
  padding: 6px 9px;
  border-radius: 5px;
  background: var(--coral);
  color: #fff;
  box-shadow: 0 7px 18px rgba(42, 32, 34, .18);
  font-size: 10px;
  font-weight: 700;
}
.product-badge.alt { background: var(--burgundy); }
.product-badge.teal { background: var(--teal-deep); }
.product-card > p {
  margin: 14px 0 5px;
  color: var(--burgundy);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}
.product-card h3 { margin-bottom: 7px; }
.product-card small { color: var(--muted); line-height: 1.55; }
.product-card button {
  width: 100%;
  margin-top: auto;
  box-shadow: none;
  font-size: 12px;
}
.product-card:nth-child(4n + 2) button { background: var(--blue); }
.product-card:nth-child(4n + 3) button { background: var(--teal-deep); }
.product-card:nth-child(4n) button { background: var(--forest); }

.featured {
  overflow: hidden;
  background: #fff;
}
.featured-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 36px;
  margin-bottom: 24px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}
.featured-heading {
  max-width: 820px;
}
.featured-heading h2 {
  max-width: 700px;
  margin-bottom: 11px;
  font-size: clamp(32px, 3.1vw, 42px);
}
.featured-heading p {
  max-width: 780px;
  margin-bottom: 0;
  font-size: 14px;
}
.featured-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 14px;
}
.featured-catalog-link {
  color: var(--burgundy);
  font-size: 12px;
  font-weight: 700;
  text-underline-offset: 5px;
}
.featured-navigation {
  display: flex;
  align-items: center;
  gap: 8px;
}
.featured-progress {
  --featured-autoplay-duration: 4600ms;
  position: relative;
  min-width: 58px;
  margin-right: 4px;
  padding-bottom: 8px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
}
.featured-progress::after,
.featured-progress::before {
  content: "";
  position: absolute;
  right: 4px;
  bottom: 0;
  left: 0;
  height: 2px;
  border-radius: 999px;
}
.featured-progress::after {
  background: var(--line);
}
.featured-progress::before {
  z-index: 1;
  background: var(--burgundy);
  transform: scaleX(0);
  transform-origin: left;
}
.featured-progress.is-counting::before {
  animation: featured-autoplay-progress var(--featured-autoplay-duration) linear forwards;
}

@keyframes featured-autoplay-progress {
  to { transform: scaleX(1); }
}
.featured-progress span:first-child {
  color: var(--burgundy);
  font-weight: 800;
}
.featured-arrow {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  background: #fff;
  color: var(--burgundy-deep);
  cursor: pointer;
  transition:
    transform var(--motion-fast) ease,
    border-color var(--motion-fast) ease,
    background var(--motion-fast) ease,
    opacity var(--motion-fast) ease;
}
.featured-arrow:hover:not(:disabled) {
  transform: translateY(-2px);
  border-color: var(--burgundy);
  background: #fff5f2;
}
.featured-arrow:disabled {
  opacity: .36;
  cursor: not-allowed;
}
.featured-arrow .material-symbols-rounded { font-size: 20px; }

.featured-slider-shell {
  margin-right: min(0px, calc((100vw - var(--container)) / -2));
}
.featured-track {
  display: flex;
  gap: 18px;
  padding: 6px 2px 20px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-padding-inline: 2px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.featured-track::-webkit-scrollbar { display: none; }
.collection-card {
  --collection-color: #a1192c;
  flex: 0 0 80%;
  height: 500px;
  display: grid;
  grid-template-columns: 60% 40%;
  grid-template-rows: 1fr;
  overflow: hidden;
  border-radius: 26px;
  background: var(--collection-color);
  box-shadow: 0 12px 28px rgba(39, 28, 31, .12);
  scroll-snap-align: start;
  scroll-snap-stop: always;
  transition:
    transform var(--motion-base) ease,
    box-shadow var(--motion-base) ease;
}
.collection-card:nth-child(2) { --collection-color: #3150ac; }
.collection-card:nth-child(3) { --collection-color: #147f7b; }
.collection-card:nth-child(4) { --collection-color: #39734d; }
.collection-card:nth-child(5) { --collection-color: #9b6d0f; }
.collection-card:nth-child(6) { --collection-color: #27375d; }
.collection-card:nth-child(7) { --collection-color: #285b40; }
.collection-card:nth-child(8) { --collection-color: #223253; }
.collection-image {
  position: relative;
  min-height: 0;
  overflow: hidden;
  background: var(--soft-grey);
}
.collection-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 25%, rgba(255, 255, 255, .2) 48%, transparent 70%);
  opacity: 0;
  transform: translateX(-110%);
  pointer-events: none;
}
.collection-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform var(--motion-slow) cubic-bezier(.2, .7, .2, 1);
}
.collection-card.is-active .collection-image img {
  animation: featured-image-breathe 4.6s ease-out both;
}
.collection-card.is-entering .collection-image::after {
  animation: featured-image-shine 900ms 180ms cubic-bezier(.2, .7, .2, 1) both;
}
.collection-badge {
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, .3);
  border-radius: 999px;
  background: rgba(255, 255, 255, .14);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
}
.collection-info {
  position: relative;
  min-height: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 34px;
  color: #fff;
}
.collection-info::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 1px;
  background: linear-gradient(transparent, rgba(255, 255, 255, .45), transparent);
  transform: scaleY(0);
  transform-origin: center;
}
.collection-card.is-entering .collection-info::before {
  animation: featured-divider-reveal 700ms 120ms ease forwards;
}
.collection-info > div {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 20px;
}
.collection-info p {
  margin: 0 0 10px;
  color: rgba(255, 255, 255, .8);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
}
.collection-number {
  color: rgba(255, 255, 255, .34);
  font-size: 28px;
  font-weight: 800;
  line-height: 1;
}
.collection-info h3 {
  margin: 0 0 12px;
  color: #fff;
  font-size: clamp(30px, 3vw, 40px);
  line-height: 1.12;
}
.collection-info small {
  color: rgba(255, 255, 255, .84);
  font-size: 13px;
  line-height: 1.55;
}
.collection-cta {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 26px;
  padding: 8px 0 5px;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, .5);
  border-radius: 0;
  background: transparent;
  color: #fff;
  box-shadow: none;
  cursor: pointer;
  font-size: 11px;
  font-weight: 700;
  text-align: left;
}
.collection-cta .material-symbols-rounded {
  font-size: 17px;
  transition: transform var(--motion-fast) ease;
}
.collection-card.is-entering .collection-info > div,
.collection-card.is-entering .collection-info > p,
.collection-card.is-entering .collection-info > h3,
.collection-card.is-entering .collection-info > small,
.collection-card.is-entering .collection-info > .collection-cta {
  animation: featured-content-enter 620ms cubic-bezier(.2, .8, .3, 1) both;
}
.collection-card.is-entering .collection-info > div { animation-delay: 90ms; }
.collection-card.is-entering .collection-info > p { animation-delay: 150ms; }
.collection-card.is-entering .collection-info > h3 { animation-delay: 220ms; }
.collection-card.is-entering .collection-info > small { animation-delay: 290ms; }
.collection-card.is-entering .collection-info > .collection-cta { animation-delay: 360ms; }
.featured-track[data-direction="backward"] .collection-card.is-entering .collection-info > div,
.featured-track[data-direction="backward"] .collection-card.is-entering .collection-info > p,
.featured-track[data-direction="backward"] .collection-card.is-entering .collection-info > h3,
.featured-track[data-direction="backward"] .collection-card.is-entering .collection-info > small,
.featured-track[data-direction="backward"] .collection-card.is-entering .collection-info > .collection-cta {
  --featured-content-offset: -24px;
}
.collection-card.is-entering .collection-number {
  animation: featured-number-pop 720ms 180ms cubic-bezier(.2, .9, .3, 1.25) both;
}

@keyframes featured-image-breathe {
  from { transform: scale(1.045); }
  to { transform: scale(1.015); }
}

@keyframes featured-image-shine {
  0% { opacity: 0; transform: translateX(-110%); }
  35% { opacity: 1; }
  100% { opacity: 0; transform: translateX(110%); }
}

@keyframes featured-divider-reveal {
  to { transform: scaleY(1); }
}

@keyframes featured-content-enter {
  from {
    opacity: 0;
    transform: translateX(var(--featured-content-offset, 24px)) translateY(7px);
  }
  to {
    opacity: 1;
    transform: translateX(0) translateY(0);
  }
}

@keyframes featured-number-pop {
  from { opacity: 0; transform: translateY(-10px) scale(.72); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.collection-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(39, 28, 31, .2);
}
.collection-card:hover .collection-image img { transform: scale(1.045); }
.collection-card:hover .collection-cta .material-symbols-rounded { transform: translateX(4px); }

@media (max-width: 1279px) {
  .collection-card {
    flex-basis: 82%;
    height: 500px;
    grid-template-columns: 57% 43%;
  }
  .collection-info { padding: 28px; }
  .collection-info h3 { font-size: clamp(28px, 3.4vw, 36px); }
}

@media (max-width: 700px) {
  .featured-header {
    display: block;
    margin-bottom: 20px;
    padding-bottom: 18px;
  }
  .featured-heading h2 {
    font-size: clamp(30px, 8.5vw, 38px);
  }
  .featured-heading p {
    font-size: 13px;
  }
  .featured-actions {
    align-items: flex-start;
    gap: 12px;
    margin-top: 15px;
  }
  .featured-navigation { width: 100%; }
  .featured-arrow { display: grid; }
  .featured-progress { min-width: auto; }
  .featured-slider-shell {
    margin-right: -16px;
  }
  .featured-track {
    gap: 14px;
    padding-right: 16px;
  }
  .collection-card {
    flex-basis: 88vw;
    height: 520px;
    grid-template-columns: 1fr;
    grid-template-rows: 54% 46%;
  }
  .collection-info {
    justify-content: flex-start;
    padding: 18px;
  }
  .collection-info > div { margin-bottom: 10px; }
  .collection-info p { margin-bottom: 7px; }
  .collection-info h3 {
    margin-bottom: 7px;
    font-size: 26px;
  }
  .collection-info small { font-size: 11px; }
  .collection-number { font-size: 22px; }
  .collection-cta { margin-top: auto; }
}

.promo-bands {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 18px;
  background: var(--soft-grey);
}
.promo-band {
  position: relative;
  grid-column: span 4;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 34px;
  overflow: hidden;
  border: 0;
  border-radius: var(--radius-lg);
  background: #fce7e2;
}
.promo-band:nth-child(2) {
  margin-top: 28px;
  background: #dff2ef;
}
.promo-band:nth-child(3) { background: #e7ecfa; }
.promo-band::before {
  content: "";
  position: absolute;
  top: 18px;
  right: 20px;
  width: 52px;
  height: 16px;
  border: 2px solid currentColor;
  border-bottom: 0;
  opacity: .18;
}
.promo-band span { color: var(--burgundy); }
.promo-band:nth-child(2) span { color: var(--teal-deep); }
.promo-band:nth-child(3) span { color: var(--blue); }
.promo-band h2 {
  max-width: 720px;
  margin-top: 42px;
  font-size: clamp(28px, 3vw, 42px);
}
.promo-band p { margin-bottom: 28px; }
.promo-band .btn { align-self: flex-start; }

.feature-highlight {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(420px, 1.1fr);
  align-items: center;
  gap: clamp(42px, 7vw, 96px);
  overflow: hidden;
  background: var(--burgundy-deep);
  color: #fff;
}
.feature-highlight::before {
  content: "";
  position: absolute;
  left: 0;
  top: 20%;
  width: 9px;
  height: 46%;
  background: var(--mustard);
}
.feature-highlight h2,
.feature-highlight .eyebrow { color: #fff; }
.feature-highlight p { color: #f0dfe2; }
.highlight-copy ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  padding: 0;
  margin: 26px 0 30px;
  list-style: none;
}
.highlight-copy li {
  min-height: 66px;
  display: flex;
  align-items: center;
  padding: 13px 15px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, .08);
  color: #fff;
  font-size: 13px;
  font-weight: 500;
}
.feature-highlight .primary {
  background: var(--mustard);
  color: #271f1a;
  box-shadow: none;
}
.gift-visual {
  position: relative;
  overflow: hidden;
  border: 8px solid #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  transform: rotate(1.5deg);
}
.gift-visual img {
  width: 100%;
  min-height: min(440px, 54vh);
  object-fit: cover;
}
.gift-note {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, .94);
  color: var(--burgundy-deep);
  font-size: 13px;
  font-weight: 600;
}

@media (min-width: 901px) {
  .featured { padding-block: 44px; }
  .featured .section-head { padding-bottom: 12px; }
  .featured .section-head h2 { font-size: clamp(32px, 3.4vw, 44px); }
  .product-card,
  .product-card:nth-child(1),
  .product-card:nth-child(6) {
    min-height: 0;
    height: 250px;
  }
  .product-visual,
  .product-card:nth-child(1) .product-visual,
  .product-card:nth-child(6) .product-visual {
    min-height: 95px;
    height: 95px;
    flex: 0 0 95px;
  }
  .product-visual img {
    height: 100%;
    min-height: 0;
  }
  .product-card > p { margin: 9px 0 3px; }
  .product-card h3 {
    margin-bottom: 4px;
    font-size: 16px;
  }
  .product-card small {
    font-size: 11px;
    line-height: 1.4;
  }
  .product-card button {
    min-height: 36px;
    padding: 7px 10px;
  }
}

.trust-strip { background: var(--off-white); }
.trust-photos {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-template-rows: repeat(2, 140px);
  gap: 14px;
}
.trust-photos img {
  width: 100%;
  height: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  object-fit: cover;
  box-shadow: var(--shadow-sm);
  transition: transform var(--motion-base) ease, box-shadow var(--motion-base) ease;
}
.trust-photos img:nth-child(1) { grid-column: span 5; grid-row: span 2; }
.trust-photos img:nth-child(2) { grid-column: span 4; }
.trust-photos img:nth-child(3) { grid-column: span 3; }
.trust-photos img:nth-child(4) { grid-column: span 7; }
.trust-photos img:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.footer {
  padding: 44px max(24px, calc((100vw - var(--container)) / 2)) 22px;
  border-top: 1px solid var(--line);
  background: var(--off-white);
  color: var(--ink);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 38px;
}
.footer-logo {
  width: 142px;
  margin-bottom: 17px;
  mix-blend-mode: normal;
}
.footer h3 {
  margin-bottom: 16px;
  color: var(--burgundy-deep);
  font-size: 16px;
}
.footer p,
.footer a { color: var(--muted); }
.footer p strong { color: var(--ink); }
.footer p { font-size: 13px; }
.footer a {
  display: block;
  width: fit-content;
  margin: 10px 0;
  font-size: 13px;
  text-decoration: none;
}
.footer a:hover {
  color: var(--burgundy-deep);
  text-decoration: underline;
  text-decoration-color: var(--mustard);
  text-underline-offset: 4px;
}
.footer-email {
  max-width: 100%;
  display: flex !important;
  align-items: flex-start;
  gap: 8px;
  overflow-wrap: anywhere;
  line-height: 1.5;
}
.footer-email .material-symbols-rounded {
  flex: 0 0 auto;
  margin-top: 1px;
  color: var(--burgundy);
  font-size: 18px;
}
.footer-social {
  margin-top: 22px;
}
.footer-social h4 {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 600;
}
.footer-social-links {
  display: flex;
  align-items: center;
  gap: 9px;
}
.footer-social-links a {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  margin: 0;
  border: 1px solid rgba(143, 29, 44, .24);
  border-radius: 50%;
  background: #fff;
  color: var(--burgundy);
  transition: transform var(--motion-fast) ease, background var(--motion-fast) ease, border-color var(--motion-fast) ease;
}
.footer-social-links a:hover {
  border-color: var(--burgundy);
  background: var(--burgundy);
  color: #fff;
  text-decoration: none;
  transform: translateY(-2px);
}
.footer-social-links svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}
@media (max-width: 700px) {
  .footer-grid > div:last-child {
    grid-column: 1 / -1;
  }
}
.footer .primary {
  background: var(--burgundy);
  box-shadow: 0 10px 24px rgba(143, 29, 44, .18);
}
.footer .primary:hover { background: var(--burgundy-deep); }
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  margin-top: 40px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
}

.floating-whatsapp {
  position: fixed;
  right: max(20px, env(safe-area-inset-right));
  bottom: max(20px, env(safe-area-inset-bottom));
  z-index: 180;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  border: 1px solid rgba(255, 255, 255, .9);
  border-radius: 999px;
  background: rgba(255, 255, 255, .96);
  color: #fff;
  box-shadow:
    0 14px 34px rgba(20, 112, 67, .24),
    0 3px 10px rgba(25, 42, 33, .12);
  isolation: isolate;
  text-decoration: none;
  animation: whatsapp-arrive 780ms cubic-bezier(.2, .85, .28, 1.25) 3.15s both;
  transition:
    width 420ms cubic-bezier(.2, .75, .25, 1),
    transform var(--motion-base) cubic-bezier(.2, .75, .25, 1),
    box-shadow var(--motion-base) ease;
}
.floating-whatsapp::before {
  content: "";
  position: absolute;
  right: 5px;
  width: 48px;
  height: 48px;
  z-index: -1;
  border: 2px solid rgba(37, 211, 102, .5);
  border-radius: 50%;
  animation: whatsapp-ripple 2.4s ease-out 4s infinite;
}
.floating-whatsapp::after {
  content: "";
  position: absolute;
  top: 4px;
  right: 5px;
  z-index: 3;
  width: 11px;
  height: 11px;
  border: 2px solid #fff;
  border-radius: 50%;
  background: #ffd166;
  box-shadow: 0 2px 7px rgba(44, 36, 11, .22);
  animation: whatsapp-status 2.4s ease-in-out 4.2s infinite;
}
.floating-whatsapp__icon {
  flex: 0 0 52px;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  margin-right: 3px;
  border-radius: 50%;
  background: linear-gradient(145deg, #2be477, #18b957);
  box-shadow:
    inset 0 1px 1px rgba(255, 255, 255, .42),
    0 7px 18px rgba(20, 146, 71, .3);
  transition: transform var(--motion-base) cubic-bezier(.2, .8, .3, 1);
}
.floating-whatsapp svg {
  width: 31px;
  height: 31px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}
.floating-whatsapp svg path + path {
  fill: currentColor;
  stroke: none;
}
.floating-whatsapp__label {
  width: 0;
  overflow: hidden;
  color: #173d28;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.05;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(9px);
  transition:
    width 420ms cubic-bezier(.2, .75, .25, 1),
    opacity var(--motion-base) ease,
    transform var(--motion-base) ease;
}
.floating-whatsapp__label small {
  display: block;
  margin-bottom: 3px;
  color: #1b9e50;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

@media (hover: hover) and (pointer: fine) {
  .floating-whatsapp:hover,
  .floating-whatsapp:focus-visible {
    width: 178px;
    transform: translateY(-5px);
    box-shadow:
      0 20px 42px rgba(20, 112, 67, .29),
      0 5px 14px rgba(25, 42, 33, .13);
  }
  .floating-whatsapp:hover .floating-whatsapp__label,
  .floating-whatsapp:focus-visible .floating-whatsapp__label {
    width: 109px;
    opacity: 1;
    transform: translateX(0);
  }
  .floating-whatsapp:hover .floating-whatsapp__icon,
  .floating-whatsapp:focus-visible .floating-whatsapp__icon {
    transform: rotate(-7deg) scale(1.04);
  }
}

@keyframes whatsapp-arrive {
  from { opacity: 0; transform: translateY(24px) scale(.72) rotate(10deg); }
  to { opacity: 1; transform: translateY(0) scale(1) rotate(0); }
}

@keyframes whatsapp-ripple {
  0% { opacity: .68; transform: scale(.86); }
  75%, 100% { opacity: 0; transform: scale(1.48); }
}

@keyframes whatsapp-status {
  0%, 72%, 100% { transform: scale(1); }
  80% { transform: scale(1.35); }
  88% { transform: scale(.92); }
}

@media (max-width: 700px) {
  .floating-whatsapp {
    right: max(14px, env(safe-area-inset-right));
    bottom: max(14px, env(safe-area-inset-bottom));
    width: 58px;
    height: 58px;
  }
  .floating-whatsapp__icon {
    flex-basis: 50px;
    width: 50px;
    height: 50px;
  }
  .floating-whatsapp__label { display: none; }
  .floating-whatsapp::before { right: 4px; width: 46px; height: 46px; }
  .floating-whatsapp::after { right: 4px; }
  .floating-whatsapp svg {
    width: 29px;
    height: 29px;
  }
}

.quote-modal {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: grid;
  place-items: center;
  padding: 18px;
  background: rgba(26, 23, 25, .74);
  backdrop-filter: blur(8px);
}
.quote-modal[hidden] { display: none; }
.quote-modal-card {
  width: min(100%, 900px);
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .34);
  border-radius: var(--radius-lg);
  background: var(--off-white);
  box-shadow: 0 32px 90px rgba(0, 0, 0, .35);
}
.quote-modal-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 20px;
  border-bottom: 1px solid var(--line);
}
.quote-modal-head h2 { font-size: clamp(28px, 4vw, 40px); }
.quote-close-button {
  background: #fff;
  color: var(--ink);
  border-color: var(--line-strong);
}
.google-form-frame {
  display: grid;
  place-items: center;
  padding: clamp(32px, 6vw, 72px) 20px;
  background: #fff;
}
.google-form-frame .btn { min-width: 180px; }

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity var(--motion-slow) cubic-bezier(.2, .7, .2, 1),
    transform var(--motion-slow) cubic-bezier(.2, .7, .2, 1);
  transition-delay: var(--reveal-delay, 0ms);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.paper-trail .process-stage.reveal {
  --stack-x: 0px;
  --stack-y: 46px;
  --stack-rotate: -2.5deg;
  transform: translate3d(var(--stack-x), var(--stack-y), 0) scale(.88) rotate(var(--stack-rotate));
  transform-origin: left center;
  filter: blur(4px) saturate(.78);
  transition:
    opacity 620ms cubic-bezier(.2, .7, .2, 1),
    transform 880ms cubic-bezier(.16, .88, .28, 1.12),
    filter 720ms ease,
    box-shadow var(--motion-base) ease,
    border-color var(--motion-base) ease;
  transition-delay: var(--reveal-delay, 0ms);
}
.paper-trail .process-stage.reveal:nth-child(1) {
  --stack-x: 0px;
  --stack-y: 42px;
  --stack-rotate: -3deg;
  z-index: 5;
}
.paper-trail .process-stage.reveal:nth-child(2) {
  --stack-x: -38px;
  --stack-y: 48px;
  --stack-rotate: 2.5deg;
  z-index: 4;
}
.paper-trail .process-stage.reveal:nth-child(3) {
  --stack-x: -76px;
  --stack-y: 54px;
  --stack-rotate: -2deg;
  z-index: 3;
}
.paper-trail .process-stage.reveal:nth-child(4) {
  --stack-x: -114px;
  --stack-y: 60px;
  --stack-rotate: 2deg;
  z-index: 2;
}
.paper-trail .process-stage.reveal:nth-child(5) {
  --stack-x: -152px;
  --stack-y: 66px;
  --stack-rotate: -1.5deg;
  z-index: 1;
}
.paper-trail .process-stage.reveal.visible {
  transform: translate3d(0, 0, 0) scale(1) rotate(0);
  filter: blur(0) saturate(1);
}
.paper-trail .process-stage.reveal.visible .process-stage__number,
.paper-trail .process-stage.reveal.visible .process-stage__icon {
  animation: process-stage-detail 520ms cubic-bezier(.2, .85, .35, 1.25) backwards;
  animation-delay: calc(var(--reveal-delay, 0ms) + 180ms);
}
.paper-trail .process-stage.reveal.visible h3 {
  animation: process-stage-copy 520ms cubic-bezier(.2, .8, .3, 1) backwards;
  animation-delay: calc(var(--reveal-delay, 0ms) + 250ms);
}
.paper-trail .process-stage.reveal.visible p {
  animation: process-stage-copy 560ms cubic-bezier(.2, .8, .3, 1) backwards;
  animation-delay: calc(var(--reveal-delay, 0ms) + 330ms);
}

@keyframes process-stage-detail {
  from {
    opacity: 0;
    transform: translateY(8px) scale(.8);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes process-stage-copy {
  from {
    opacity: 0;
    transform: translateY(12px);
    filter: blur(3px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

@media (hover: hover) and (pointer: fine) {
  .paper-trail .process-stage.reveal.visible:hover {
    z-index: 10;
    transform: translateY(-7px) scale(1.012);
  }
}
@media (max-width: 1100px) {
  .paper-trail .paper-trail__stages .process-stage.reveal:nth-child(n) {
    --stack-x: -24px;
    --stack-y: 30px;
    --stack-rotate: -1.5deg;
    transform-origin: left top;
  }
  .paper-trail .paper-trail__stages .process-stage.reveal:nth-child(even) {
    --stack-x: 24px;
    --stack-rotate: 1.5deg;
  }
}
.promo-band.reveal {
  transform: translateY(42px) scale(.965);
  box-shadow: 0 12px 28px rgba(48, 36, 32, 0);
  transition:
    opacity 760ms cubic-bezier(.2, .7, .2, 1),
    transform 760ms cubic-bezier(.2, .7, .2, 1),
    box-shadow var(--motion-base) ease;
  transition-delay: var(--reveal-delay, 0ms);
}
.promo-band.reveal.visible {
  transform: translateY(0) scale(1);
  box-shadow: 0 16px 34px rgba(48, 36, 32, .07);
}
.promo-band.reveal > div,
.promo-band.reveal > .btn {
  opacity: 0;
  transform: translateY(14px);
  transition:
    opacity 520ms ease,
    transform 520ms cubic-bezier(.2, .7, .2, 1),
    color var(--motion-fast) ease,
    background var(--motion-fast) ease,
    box-shadow var(--motion-fast) ease;
}
.promo-band.reveal.visible > div,
.promo-band.reveal.visible > .btn {
  opacity: 1;
  transform: translateY(0);
  transition-delay: calc(var(--reveal-delay, 0ms) + 180ms);
}
.promo-band.reveal::before {
  opacity: 0;
  transform: translateX(18px) scaleX(.6);
  transform-origin: right;
  transition:
    opacity 420ms ease,
    transform 520ms cubic-bezier(.2, .8, .3, 1);
}
.promo-band.reveal.visible::before {
  opacity: .18;
  transform: translateX(0) scaleX(1);
  transition-delay: calc(var(--reveal-delay, 0ms) + 260ms);
}

@media (hover: hover) and (pointer: fine) {
  .promo-band.reveal.visible:hover {
    transform: translateY(-8px) scale(1.012);
    box-shadow: 0 24px 48px rgba(48, 36, 32, .13);
  }
  .promo-band.reveal.visible:hover::before {
    opacity: .32;
    transform: translateX(-5px) scaleX(1.08);
    transition-delay: 0ms;
  }
  .promo-band.reveal.visible > .btn:hover {
    transform: translateY(-2px);
    transition-delay: 0ms;
  }
}
.delay { --reveal-delay: 100ms; }

@media (max-width: 1180px) {
  .site-header {
    grid-template-columns: auto auto auto;
    justify-content: space-between;
  }
  .menu-toggle { display: block; }
  .primary-nav {
    position: absolute;
    top: calc(100% + 8px);
    right: 22px;
    width: min(360px, calc(100vw - 44px));
    display: grid;
    grid-template-columns: 1fr;
    gap: 3px;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: #fff;
    box-shadow: var(--shadow-md);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    pointer-events: none;
    transition:
      opacity var(--motion-fast) ease,
      transform var(--motion-base) ease,
      visibility var(--motion-fast) ease;
  }
  .primary-nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }
  .primary-nav a {
    min-height: 44px;
    display: flex;
    align-items: center;
    padding: 10px 12px;
    border-radius: 6px;
  }
  .primary-nav a:hover,
  .primary-nav a.is-active { background: var(--off-white); }
  .primary-nav a::after { display: none; }
  .hero-shop-track img {
    flex-basis: clamp(300px, 30vw, 390px);
  }
  .product-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .promo-band { grid-column: span 6; min-height: 340px; }
  .promo-band:nth-child(3) { grid-column: 4 / span 6; }
}

@media (min-width: 901px) and (max-height: 800px) {
  .hero {
    gap: 14px;
    padding-top: 18px;
    padding-bottom: 18px;
  }
  .hero-copy h1 {
    margin-bottom: 14px;
    font-size: clamp(42px, min(4.2vw, 6.8svh), 54px);
  }
  .hero-copy .eyebrow {
    margin-bottom: 12px;
  }
  .hero-copy p {
    max-width: 700px;
    font-size: 15px;
    line-height: 1.52;
  }
  .hero-actions { margin-top: 16px; }
  .hero-shop-track {
    gap: 10px;
  }
  .hero-shop-track img {
    height: clamp(230px, 32svh, 260px);
    flex-basis: clamp(300px, 25vw, 380px);
  }
}

@media (min-width: 1181px) and (max-height: 880px) {
  .hero-shop-track img {
    height: 280px;
  }
}

@media (min-width: 901px) and (max-width: 1100px) {
  .hero-shop-track img {
    flex-basis: min(70vw, 620px);
  }
}

@media (min-width: 701px) and (max-width: 900px) {
  .hero .hero-copy h1 {
    font-size: clamp(50px, 7.3vw, 56px);
  }
}

@media (max-width: 900px) {
  .section-pad {
    padding-right: 22px;
    padding-left: 22px;
  }
  .feature-highlight { grid-template-columns: 1fr; }
  .hero {
    min-height: auto;
    gap: 22px;
    padding-top: clamp(38px, 6vw, 52px);
    padding-bottom: clamp(38px, 6vw, 52px);
  }
  .hero-copy { max-width: 760px; }
  .hero-shop-track img {
    height: clamp(220px, 36vw, 280px);
    flex-basis: clamp(280px, 70vw, 520px);
  }
  .feature-highlight { gap: 46px; }
  .gift-visual {
    width: min(100%, 700px);
    margin: 0 auto;
  }
  .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .need-panel {
    min-height: 360px;
    aspect-ratio: 5 / 4;
  }
  .need-content { padding: 20px; }
  .need-panel h3 { font-size: 24px; }
  .need-panel p { font-size: 11px; }
  .product-grid,
  .promo-bands {
    display: flex;
    gap: 14px;
    padding-bottom: 14px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
  }
  .category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: auto;
  }
  .category-card:nth-child(n) {
    grid-column: span 1;
    grid-row: auto;
    min-height: 250px;
  }
  .category-card:nth-child(1) {
    grid-column: span 2;
    min-height: 310px;
  }
  .category-card h3 { font-size: 17px; }
  .category-card p { font-size: 11px; }
  .product-card,
  .product-card:nth-child(1),
  .product-card:nth-child(6) {
    flex: 0 0 300px;
    min-height: 330px;
    scroll-snap-align: start;
  }
  .promo-band,
  .promo-band:nth-child(2),
  .promo-band:nth-child(3) {
    flex: 0 0 min(72vw, 420px);
    min-height: 320px;
    margin-top: 0;
    scroll-snap-align: start;
  }
}

@media (max-width: 700px) {
  :root { --section-space: 52px; }
  .announcement { font-size: 11px; }
  .site-header {
    min-height: 68px;
    grid-template-columns: minmax(0, 1fr) auto auto;
    padding: 8px 16px;
    gap: 8px;
  }
  .brand { min-width: 0; }
  .brand img {
    width: 54px;
    height: 50px;
    padding: 4px 6px;
    border-radius: 10px;
  }
  .brand strong { font-size: 13px; }
  .brand small { display: none; }
  .header-actions { gap: 6px; }
  .header-whatsapp {
    width: 42px;
    min-height: 42px;
    padding: 0;
    border-radius: 50%;
  }
  .header-whatsapp:hover,
  .header-whatsapp:focus-visible {
    width: 42px;
    gap: 0;
    padding: 0;
    border-radius: 50%;
  }
  .header-whatsapp__text { display: none; }
  .header-whatsapp__icon,
  .header-whatsapp svg {
    width: 24px;
    height: 24px;
  }
  .header-cta {
    min-height: 42px;
    padding: 9px 12px;
    font-size: 12px;
  }
  .primary-nav {
    right: 14px;
    width: calc(100vw - 28px);
  }
  .section-pad {
    padding-right: 16px;
    padding-left: 16px;
  }
  .section-head { margin-bottom: 26px; }
  .section-head.split { display: block; }
  .section-head.split .text-link {
    display: inline-block;
    margin-top: 4px;
  }
  h1 {
    max-width: 100%;
    font-size: clamp(36px, 10vw, 48px);
    line-height: 1.06;
    overflow-wrap: break-word;
  }
  h2 {
    font-size: clamp(29px, 8.5vw, 40px);
    line-height: 1.12;
  }
  h3 { font-size: 18px; }
  p { font-size: 15px; }
  .eyebrow {
    display: block;
    max-width: 100%;
    font-size: 10px;
  }
  .eyebrow::before {
    display: block;
    margin-bottom: 8px;
  }
  .hero {
    display: grid;
    gap: 20px;
    padding-top: 35px;
    padding-bottom: 35px;
  }
  .hero-copy h1 {
    font-size: clamp(34px, 9vw, 42px);
    line-height: 1.1;
  }
  .hero-copy h1 span:first-child {
    font-size: 1em;
  }
  .hero-copy h1 span:last-child {
    font-size: 1em;
  }
  .hero-copy h1 span {
    display: inline;
  }
  .hero-copy h1 span:last-child::after { display: none; }
  .hero-copy .eyebrow::before {
    margin-right: auto;
    margin-left: auto;
  }
  .hero-copy p { font-size: 15px; }
  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    width: 100%;
    margin-top: 22px;
  }
  .hero-actions .btn { width: 100%; }
  .hero-shop-track {
    gap: 10px;
  }
  .hero-shop-track img {
    height: clamp(210px, 58vw, 280px);
    flex-basis: 86vw;
  }
  .categories .section-head {
    margin-bottom: 24px;
  }
  .categories .section-head h2 {
    font-size: clamp(32px, 9vw, 38px);
  }
  .categories .section-head p {
    font-size: 14px;
  }
  .need-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .need-panel {
    min-height: 390px;
    aspect-ratio: auto;
  }
  .need-content { padding: 20px 18px; }
  .need-panel h3 { font-size: 25px; }
  .need-panel p {
    margin-bottom: 12px;
    font-size: 12px;
  }
  .need-chips { margin-bottom: 13px; }
  .need-chips span {
    padding: 5px 7px;
    font-size: 9px;
  }
  .need-cta {
    min-height: 44px;
    font-size: 11px;
  }
  .category-directory {
    padding: 16px;
  }
  .category-directory a {
    min-height: 44px;
    font-size: 10px;
  }
  .category-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .category-card:nth-child(n) {
    grid-column: span 1;
    grid-row: auto;
    min-height: 0;
    height: 280px;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 48% 52%;
    text-align: left;
  }
  .category-photo,
  .category-card:nth-child(1) .category-photo {
    padding: 10px 10px 0;
  }
  .category-card:nth-child(1) .category-copy {
    padding: 15px 17px 17px;
  }
  .category-card:nth-child(1) h3 { font-size: 22px; }
  .category-card h3 { font-size: 18px; }
  .category-card p { font-size: 12px; }
  .product-grid { grid-template-columns: 1fr; }
  .product-card,
  .product-card:nth-child(1),
  .product-card:nth-child(6) {
    grid-column: auto;
    display: flex;
    flex-basis: min(86vw, 340px);
    min-height: 390px;
  }
  .product-card:nth-child(1) .product-visual,
  .product-card:nth-child(6) .product-visual { min-height: 210px; }
  .promo-bands {
    display: flex;
  }
  .promo-band,
  .promo-band:nth-child(2),
  .promo-band:nth-child(3) {
    grid-column: auto;
    min-height: 0;
    margin-top: 0;
    padding: 26px;
  }
  .promo-band h2 { margin-top: 30px; }
  .promo-band .btn { width: 100%; }
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px 16px;
  }
  .feature-highlight {
    gap: 20px;
    padding-top: 36px;
    padding-bottom: 36px;
  }
  .highlight-copy ul {
    gap: 7px;
    margin: 16px 0 18px;
  }
  .highlight-copy li {
    min-height: 54px;
    padding: 9px 10px;
    font-size: 11px;
  }
  .gift-visual {
    border-width: 5px;
    transform: none;
  }
  .gift-visual img { min-height: 240px; }
  .trust-photos {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: repeat(2, 150px);
  }
  .trust-photos img:nth-child(n) {
    grid-column: span 1;
    grid-row: span 1;
  }
  .footer-bottom { display: grid; }
  .quote-modal { padding: 10px; }
  .quote-modal-card { border-radius: var(--radius-md); }
  .quote-modal-head {
    align-items: flex-start;
    flex-direction: column;
  }
  .quote-close-button { width: 100%; }
}

@media (max-width: 390px) {
  .announcement { padding-inline: 8px; }
  .brand span { display: none; }
  .brand img { width: 48px; height: 46px; }
  .menu-toggle { width: 44px; height: 44px; }
  h1 { font-size: 34px; }
}

@media (max-width: 360px) {
  .footer-grid { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
  .splash-book,
  .splash-machine,
  .splash-machine__arm,
  .splash-machine__press,
  .splash-machine__feeder,
  .splash-machine__light,
  .splash-machine__conveyor,
  .splash-machine__conveyor span,
  .splash-book__cover,
  .splash-book__sheet,
  .splash-book__spine,
  .splash-book__stamp,
  .splash-production__caption {
    opacity: 1;
    transform: none;
    animation: none !important;
  }
  .hero-shop-track img {
    animation: none !important;
  }
  .collection-card,
  .collection-card.is-active .collection-image img,
  .collection-card.is-entering .collection-image::after,
  .collection-card.is-entering .collection-info::before,
  .collection-card.is-entering .collection-info > div,
  .collection-card.is-entering .collection-info > p,
  .collection-card.is-entering .collection-info > h3,
  .collection-card.is-entering .collection-info > small,
  .collection-card.is-entering .collection-info > .collection-cta,
  .collection-card.is-entering .collection-number {
    animation: none !important;
    opacity: 1;
    transform: none;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }

  .catalog-category-card.reveal,
  .catalog-category-card.reveal.visible,
  .catalog-category-card.reveal.visible:hover,
  .catalog-category-card.reveal.visible .catalog-category-content > * {
    opacity: 1;
    transform: none;
    animation: none !important;
  }

  .catalog-category-card::before {
    display: none;
  }

  .catalog-category-card:hover > img {
    transform: none;
    filter: none;
  }
  .floating-whatsapp,
  .floating-whatsapp::before,
  .floating-whatsapp::after {
    animation: none !important;
  }
  .floating-whatsapp:hover,
  .floating-whatsapp:focus-visible,
  .floating-whatsapp:hover .floating-whatsapp__icon,
  .floating-whatsapp:focus-visible .floating-whatsapp__icon {
    transform: none;
  }
  .typewriter-heading__sizer {
    display: none;
  }
  .typewriter-heading__text {
    position: static;
  }
  .typewriter-heading__text::after {
    display: none !important;
    animation: none !important;
  }
  .paper-trail .process-stage.reveal,
  .paper-trail .process-stage.reveal.visible,
  .paper-trail .process-stage.reveal.visible:hover {
    opacity: 1;
    transform: none;
  }
  .paper-trail__connector circle {
    opacity: 1;
    transform: none;
  }
  .promo-band.reveal,
  .promo-band.reveal.visible,
  .promo-band.reveal.visible:hover,
  .promo-band.reveal > div,
  .promo-band.reveal > .btn,
  .promo-band.reveal.visible > div,
  .promo-band.reveal.visible > .btn {
    opacity: 1;
    transform: none;
  }
}
