* { margin: 0; padding: 0; box-sizing: border-box; }

    :root { --page-x: 120px; }

    body {
      font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
      background: #fff;
      color: #111;
    }

    body.drawerOpen {
      overflow: hidden;
    }

    /* HEADER (igual ao existente) */
    header {
      height: 78px;
      background: #000000;
      border-radius: 0;
      margin: 0;
      width: 100%;
      margin-left: 0;
      display: flex;
      align-items: center;
    }

    .headerInner {
      width: 100%;
      margin: 0;
      padding: 0 var(--page-x);
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .logo {
      display: block;
      height: 28px;
      width: auto;
    }
    .logoLink {
      display: flex;
      align-items: center;
      line-height: 0;
      text-decoration: none;
    }

    nav {
      display: flex;
      align-items: center;
      justify-content: flex-end;
    }

    nav a {
      color: rgba(255, 255, 255);
      text-decoration: none;
      margin-left: 44px;
      font-size: 14px;
      font-weight: 220;
      letter-spacing: .2px;
      transition: .3s;
    }

    nav a:hover { color: #fff; }

    .menuTrigger {
      color: #fff;
      background: none;
      border: 0;
      margin-left: 44px;
      font-size: 14px;
      font-weight: 220;
      letter-spacing: .2px;
      font-family: inherit;
      cursor: pointer;
      transition: .3s;
    }

    .menuTrigger:hover { color: #fff; }

    .headerEnterBtn {
      margin-left: 44px;
      height: 34px;
      padding: 0 18px;
      border-radius: 999px;
      background: #fff;
      color: #111 !important;
      border: 1px solid #fff;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 14px;
      font-weight: 220;
      letter-spacing: .2px;
      line-height: 1;
      text-decoration: none;
      transition: background-color .25s ease, color .25s ease, border-color .25s ease;
    }

    .headerEnterBtn:hover {
      background: #f0f0f0;
      border-color: #f0f0f0;
      color: #111 !important;
    }

    .productsDrawerOverlay {
      position: fixed;
      inset: 0;
      background: rgba(0, 0, 0, .42);
      backdrop-filter: blur(6px);
      -webkit-backdrop-filter: blur(6px);
      opacity: 0;
      pointer-events: none;
      transition: opacity .25s ease;
      z-index: 1200;
    }

    .productsDrawerOverlay.isOpen {
      opacity: 1;
      pointer-events: auto;
    }

    .productsDrawer {
      position: absolute;
      left: 0;
      top: 0;
      bottom: 0;
      width: min(25vw, 460px);
      min-width: 320px;
      background: #fff;
      border-right: 1px solid #e8e8e8;
      transform: translateX(-100%);
      transition: transform .28s ease;
      padding: 24px 24px 28px;
    }

    .productsDrawerTitle {
      position: absolute;
      left: 24px;
      top: 30px;
      transform: translateY(-50%);
      margin: 0;
      color: #111;
      font-size: 13px;
      font-weight: 260;
      letter-spacing: .08em;
      text-transform: uppercase;
      line-height: 1;
    }

    .productsDrawerOverlay.isOpen .productsDrawer {
      transform: translateX(0);
    }

    .productsDrawerClose {
      position: absolute;
      right: 12px;
      top: 12px;
      border: 0;
      background: none;
      color: #111;
      font-size: 0;
      line-height: 0;
      cursor: pointer;
      width: 36px;
      height: 36px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .productsDrawerClose::before,
    .productsDrawerClose::after {
      content: "";
      position: absolute;
      width: 16px;
      height: 1px;
      background: currentColor;
    }

    .productsDrawerClose::before {
      transform: rotate(45deg);
    }

    .productsDrawerClose::after {
      transform: rotate(-45deg);
    }

    .productsDrawerNav {
      margin-top: 56px;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 14px;
    }

    .productsDrawerLink {
      color: #111;
      text-decoration: none;
      font-size: 21px;
      font-weight: 260;
      line-height: 1.3;
      letter-spacing: .01em;
      transition: opacity .2s ease;
      margin-left: 0;
      display: inline-flex;
      align-items: center;
      gap: 10px;
      color: #111;
    }

    .productsDrawerLink:hover {
      opacity: 1;
      color: #111;
    }

    .productsDrawerLink::before {
      content: "";
      width: 34px;
      height: 0;
      border-top: 1px solid #111;
      background: transparent;
      transition: width .25s ease;
      flex-shrink: 0;
    }

    .productsDrawerLink:hover::before {
      width: 52px;
    }

    .productsDrawerDivider {
      align-self: stretch;
      height: 1px;
      background: #d9d9d9;
      margin: 10px 12px 10px 0;
    }

    /* SLIDER */
    .slider {
      position: relative;
      width: 100%;
      margin-left: 0;
      height: min(81vh, 806px);
      overflow: hidden;
      background: #111;
    }

    .slides {
      display: flex;
      width: 100%;
      height: 100%;
      transition: transform .7s ease-in-out;
      will-change: transform;
    }

    .slide {
      flex: 0 0 100%;
      min-width: 100%;
      position: relative;
      height: 100%;
      overflow: hidden;
    }

    .slide--image {
      background: #171717;
    }

    .slide--image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center center;
      display: block;
    }

    .slide--tone-2 { background: #6d6d6d; }
    .slide--tone-3 { background: #b3b3b3; }


    .dots {
      position: absolute;
      left: 50%;
      bottom: 28px;
      transform: translateX(-50%);
      display: flex;
      gap: 8px;
      z-index: 2;
    }

    .dot {
      width: 4px;
      height: 4px;
      border-radius: 50%;
      border: 0;
      background: rgba(255, 255, 255, .45);
      cursor: pointer;
    }

    .dot.active { background: #fff; }

    .sliderProgress {
      position: absolute;
      left: 50%;
      bottom: 0;
      transform: translateX(-50%);
      width: 100%;
      height: 2px;
      background: rgba(255, 255, 255, .25);
      border-radius: 0;
      overflow: hidden;
      z-index: 2;
    }

    .sliderProgress span {
      display: block;
      height: 100%;
      width: 100%;
      background: #fff;
      transform-origin: left center;
      transform: scaleX(0);
    }

    .sliderProgress span.isRunning {
      animation: sliderProgress 10s linear infinite;
    }

    @keyframes sliderProgress {
      from { transform: scaleX(0); }
      to { transform: scaleX(1); }
    }

    /* CATEGORIES */
    .categorySection {
      padding: 90px var(--page-x) 50px;
      background: #fff;
    }

    .manifestoSection {
      padding: 104px var(--page-x);
      background: #fff;
    }

    .manifestoText {
      font-size: 40px;
      font-weight: 200;
      line-height: 1.08;
      letter-spacing: -.01em;
      max-width: 980px;
    }

    .revealOnScroll {
      opacity: 0;
      transform: translateY(18px);
      transition: opacity 1.1s ease, transform 1.1s ease;
      will-change: opacity, transform;
    }

    .revealOnScroll.isVisible {
      opacity: 1;
      transform: translateY(0);
    }

    .manifestoText.revealOnScroll {
      opacity: 1;
      transform: none;
      transition: none;
    }

    .endImageText.revealOnScroll {
      opacity: 0;
      transform: translate(-50%, calc(-50% + 18px));
    }

    .endImageText.revealOnScroll.isVisible {
      opacity: 1;
      transform: translate(-50%, -50%);
    }

    .endNotebookCta.revealOnScroll {
      opacity: 0;
      transform: translate(-50%, calc(-50% + 18px));
    }

    .endNotebookCta.revealOnScroll.isVisible {
      opacity: 1;
      transform: translate(-50%, -50%);
    }

    .endNotebookCta.revealOnScroll.isVisible:hover {
      transform: translate(-50%, calc(-50% - 4px));
    }

    .manifestoLine {
      display: block;
      opacity: 0;
      transform: translateY(18px);
      transition: opacity 1.1s ease, transform 1.1s ease;
    }

    .manifestoText.isVisible .manifestoLine {
      opacity: 1;
      transform: translateY(0);
    }

    .manifestoText.isVisible .manifestoLine:nth-child(2) {
      transition-delay: .22s;
    }

    .manifestoSection + .categorySection {
      margin-top: 0;
    }

    .categoryHeader {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
      margin-bottom: 36px;
    }

    .categoryHeader h2 {
      font-size: 28px;
      font-weight: 400;
      line-height: 1.1;
    }

    .categoryHeader p {
      margin-top: 10px;
      color: #6d6d6d;
      font-size: 16px;
      line-height: 1.4;
    }


    .carouselWrap {
      position: relative;
    }

    .carouselNextBtn {
      position: absolute;
      right: 10px;
      top: 190px;
      width: 42px;
      height: 42px;
      border-radius: 50%;
      border: 1px solid rgba(255, 255, 255, 0.7);
      background: rgba(0, 0, 0, 0.2);
      display: inline-grid;
      place-items: center;
      padding: 0;
      cursor: pointer;
      z-index: 5;
      transition: transform .2s ease, opacity .2s ease, border-color .2s ease, background .2s ease;
    }

    .carouselNextBtn::before {
      content: "";
      width: 8px;
      height: 8px;
      border-top: 1.8px solid #fff;
      border-right: 1.8px solid #fff;
      transform: translateX(-1px) rotate(45deg);
    }

    .carouselPrevBtn {
      left: 10px;
      right: auto;
    }

    .categoryRailWrap .carouselNextBtn,
    .categoryRailWrap .carouselPrevBtn {
      top: calc((250px - 42px) / 2);
    }

    .carouselPrevBtn::before {
      transform: translateX(1px) rotate(-135deg);
    }

    .carouselNextBtn:hover {
      transform: translateY(-2px);
      border-color: #fff;
      background: rgba(0, 0, 0, 0.32);
    }

    .carouselNextBtn[hidden] {
      opacity: 0;
      pointer-events: none;
    }

    .carouselWrap::before,
    .carouselWrap::after {
      content: "";
      position: absolute;
      top: 0;
      bottom: 12px;
      width: 90px;
      pointer-events: none;
      z-index: 1;
      opacity: 0;
      transition: opacity .3s;
    }

    .carouselWrap::before {
      left: -1px;
      background: linear-gradient(to right, rgba(255, 255, 255, 0.7) 0%, rgba(255, 255, 255, 0) 100%);
    }

    .carouselWrap::after {
      right: -1px;
      background: linear-gradient(to left, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0) 100%);
    }

    .carouselWrap.carouselWrap--fadeLeft::before {
      opacity: 1;
    }

    .carouselWrap.carouselWrap--fadeRight::after {
      opacity: 1;
    }

    .categoryCarousel {
      display: flex;
      gap: 28px;
      overflow-x: auto;
      scroll-behavior: smooth;
      padding-bottom: 12px;
      scrollbar-width: none;
      cursor: grab;
      user-select: none;
    }

    .categoryCarousel.isDragging {
      cursor: grabbing;
    }

    .categoryCarousel::-webkit-scrollbar {
      display: none;
    }

    .categoryCard {
      flex: 0 0 auto;
      width: 236px;
      text-align: center;
      text-decoration: none;
      color: inherit;
      transition: transform .3s;
    }

    .categoryCard figure {
      width: 236px;
      height: 236px;
      border-radius: 9px;
      background: #f4f4f4;
      border: 1px solid #ededed;
      margin-bottom: 14px;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
    }

    .categoryCard img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform .4s;
      display: block;
    }

    .categoryCard span {
      font-size: 15px;
      letter-spacing: .01em;
      transition: transform .25s ease, color .25s ease;
      display: inline-block;
    }

    .categoryCard:hover img {
      transform: scale(1.06);
    }

    .categoryCard:hover span {
      transform: translateY(-6px);
      color: #000;
    }

    .categoryCard--all figure {
      background: #111;
      color: #fff;
      border-color: #111;
    }

    .categoryCard--all span {
      font-weight: 600;
    }

    .categoryCard--all svg {
      width: 26px;
      height: 26px;
    }

    .categorySection--ap {
      background: #050505;
      color: #f3f3f3;
      padding: 160px 0 140px;
      min-height: 140vh;
      overflow: hidden;
    }

    .categoryShell {
      display: grid;
      grid-template-columns: minmax(280px, 430px) 1fr;
      gap: 34px;
      align-items: start;
      padding: 0 var(--page-x);
    }

    .categoryIntro {
      position: sticky;
      top: 0;
    }

    .categoryKicker {
      display: block;
      font-size: 13px;
      font-weight: 300;
      letter-spacing: .24em;
      color: rgba(255, 255, 255, .65);
      margin-bottom: 14px;
      text-transform: uppercase;
    }

    .categorySection--ap .categoryIntro h2 {
      font-size: 62px;
      line-height: .96;
      font-weight: 100;
      letter-spacing: -.02em;
      margin-bottom: 18px;
    }

    .categoryCta {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      color: #fff;
      text-decoration: none;
      font-size: 20px;
      font-weight: 300;
    }

    .categoryCta::before {
      content: "";
      width: 52px;
      height: 1px;
      background: rgba(255, 255, 255, .75);
      transition: width .25s ease;
    }

    .categoryCta:hover::before {
      width: 68px;
    }

    .categoryRailWrap {
      position: relative;
      min-width: 0;
    }

    .categoryRailWrap::before,
    .categoryRailWrap::after {
      display: none;
    }

    .categoryRail {
      display: flex;
      gap: 10px;
      overflow-x: auto;
      scroll-behavior: smooth;
      scrollbar-width: none;
      padding-bottom: 10px;
      cursor: grab;
      user-select: none;
    }

    .categoryRail::-webkit-scrollbar {
      display: none;
    }

    .categoryRail.isDragging {
      cursor: grabbing;
    }

    .categoryItem {
      flex: 0 0 250px;
      color: #f5f5f5;
      text-decoration: none;
    }

    .categoryItemFigure {
      width: 100%;
      aspect-ratio: 1 / 1;
      overflow: hidden;
      border-radius: 0;
      background: #cfcfcf;
      margin-bottom: 16px;
    }

    .categoryItemFigure img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform .45s ease;
    }

    .categoryItem[href*="categoria=cabeceiras"] .categoryItemFigure img {
      object-position: center 40%;
    }

    .categoryItemTitle {
      font-size: 28px;
      line-height: 1.05;
      font-weight: 300;
      margin-bottom: 10px;
      letter-spacing: -.01em;
    }

    .categoryItemText {
      font-size: 14px;
      line-height: 1.45;
      color: rgba(255, 255, 255, .78);
      font-weight: 200;
      margin-bottom: 16px;
      min-height: 84px;
    }

    .categoryItemMore {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      color: #fff;
      font-size: 21px;
      font-weight: 300;
      line-height: 1;
    }

    .categoryItemMore::before {
      content: "";
      width: 52px;
      height: 1px;
      background: rgba(255, 255, 255, .72);
      transition: width .25s ease;
    }

    .categoryItem:hover .categoryItemFigure img {
      transform: scale(1.06);
    }

    .categoryItem:hover .categoryItemMore::before {
      width: 68px;
    }

    /* READY SECTION */
    .readySection {
      padding: 40px var(--page-x) 100px;
      background: #fff;
    }

    .endImageSection {
      margin-left: calc(50% - 50vw);
      margin-right: calc(50% - 50vw);
      width: 100vw;
      padding: 0;
      background: #fff;
    }

    .endImageHolder {
      width: 100vw;
      height: 570px;
      background:
        radial-gradient(52% 42% at 8% 0%, rgba(246, 238, 232, 0.72) 0%, rgba(246, 238, 232, 0.38) 32%, rgba(246, 238, 232, 0) 84%),
        radial-gradient(52% 42% at 92% 0%, rgba(246, 238, 232, 0.72) 0%, rgba(246, 238, 232, 0.38) 32%, rgba(246, 238, 232, 0) 84%),
        radial-gradient(140% 95% at 50% -8%, #b7d1df 0%, #6f9fb8 34%, #0a3c68 66%, #041f3a 84%, #010814 100%);
      position: relative;
      overflow: hidden;
    }

    .endWhiteGuide {
      margin-left: calc(50% - 50vw);
      margin-right: calc(50% - 50vw);
      width: 100vw;
      height: 570px;
      background: #fff;
    }

    .storiesTitleSection {
      padding: 93px var(--page-x) 55px;
      background: #fff;
      text-align: center;
    }

    .storiesTitle {
      font-size: 48px;
      font-weight: 200;
      line-height: 1.05;
      letter-spacing: -.01em;
    }

    .storiesCarouselSection {
      padding: 0 var(--page-x) 52px;
      background: #fff;
    }

    .blackBandSection {
      margin-left: calc(50% - 50vw);
      margin-right: calc(50% - 50vw);
      width: 100vw;
      margin-top: 46px;
      background: #000;
      min-height: 540px;
      display: grid;
      grid-template-rows: 1fr 2fr;
      padding: 0 var(--page-x);
      color: #fff;
    }

    .blackBandTop {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 30px;
      padding: 56px 0;
    }

    .blackBandText {
      max-width: 980px;
      font-size: 28px;
      font-weight: 200;
      line-height: 1.16;
      letter-spacing: -.01em;
    }

    .blackBandCta {
      position: static;
      display: inline-flex;
      align-items: center;
      gap: 10px;
      height: 42.5px;
      padding: 0 18.7px;
      border-radius: 999px;
      background: #fff;
      color: #111;
      text-decoration: none;
      font-size: 13.6px;
      font-weight: 400;
      white-space: nowrap;
      transition: transform .22s ease;
      flex-shrink: 0;
    }

    .blackBandCta:hover {
      transform: translateY(-4px);
    }

    .blackBandCtaIcon {
      width: 15.3px;
      height: 15.3px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      line-height: 0;
    }

    .blackBandCtaIcon svg {
      width: 15.3px;
      height: 15.3px;
      fill: #111;
      display: block;
    }

    .blackBandTextStrongLine {
      display: block;
      font-weight: 600;
    }

    .blackBandTextLine {
      display: block;
      font-weight: 150;
    }

    .blackBandHighlight {
      display: inline-block;
      background: #054f77;
      color: #fff;
      padding: 1px 6px 2px;
      border-radius: 0;
      line-height: 1.05;
    }

    .blackBandFooter {
      position: relative;
      padding-top: 22px;
    }

    .blackBandDivider {
      height: 1px;
      background: rgba(255, 255, 255, 0.42);
      width: 100%;
      margin: 0;
    }

    .blackBandFooterGrid {
      display: grid;
      grid-template-columns: 1.25fr 1fr 1fr;
      gap: 48px;
      padding: 34px 0 44px;
    }

    .blackBandFooterGrid > div {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
    }

    .blackBandColTitle {
      font-size: 11px;
      letter-spacing: .16em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, 0.72);
      margin-bottom: 20px;
    }

    .blackBandSocial {
      display: flex;
      gap: 10px;
      margin-bottom: 24px;
      flex-wrap: wrap;
      justify-content: flex-start;
    }

    .blackBandSocialItem {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 34px;
      height: 34px;
      color: #fff;
      line-height: 0;
      transition: color .2s ease;
    }

    .blackBandSocialItem svg {
      width: 30px;
      height: 30px;
      fill: currentColor;
      display: block;
    }

    .blackBandSocial:hover .blackBandSocialItem {
      color: #4a4a4a;
    }

    .blackBandSocial .blackBandSocialItem:hover {
      color: #fff;
    }

    .blackBandNewsLead {
      font-size: 28px;
      font-weight: 250;
      line-height: 1.06;
      max-width: 520px;
      margin-bottom: 20px;
      letter-spacing: -.01em;
    }

    .blackBandNewsBtn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      height: 44px;
      padding: 0 20px;
      border-radius: 10px;
      border: 1px solid rgba(255, 255, 255, 0.4);
      color: #fff;
      text-decoration: none;
      font-size: 15px;
      font-weight: 300;
    }

    .blackBandLinks {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      justify-content: flex-start;
      gap: 10px;
      width: 100%;
      margin: 0;
      padding: 0;
    }

    .blackBandLinks a {
      color: #fff;
      text-decoration: none;
      font-size: 23px;
      font-weight: 250;
      line-height: 1.06;
      letter-spacing: -.01em;
      text-align: left;
      width: 100%;
      margin-left: 0 !important;
      padding-left: 0;
      display: block;
    }

    .blackBandLinks a:hover {
      opacity: .8;
    }

    .storiesCarouselWrap::before,
    .storiesCarouselWrap::after {
      display: none;
    }

    .storiesCarousel {
      display: flex;
      gap: 20px;
      overflow-x: hidden;
      overflow-y: visible;
      scroll-behavior: smooth;
      scrollbar-width: none;
      cursor: default;
      user-select: auto;
      padding-bottom: 26px;
      pointer-events: none;
    }

    .storiesCarousel::-webkit-scrollbar {
      display: none;
    }

    .storiesCard {
      flex: 0 0 calc((100% - 40px) / 3);
      aspect-ratio: 1 / 0.86;
      background: #fff;
      border: 1px solid #d2d2d2;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      overflow: hidden;
      text-decoration: none;
      color: #b8b8b8;
      pointer-events: none;
      opacity: 1;
      transform: scale(.94);
      transition: transform .35s ease, border-color .35s ease, color .35s ease;
    }


    .storiesCard.isCentered {
      transform: scale(1);
      background: #fff;
      border-width: 1px;
      border-color: #b3b3b3;
      color: #111;
      box-shadow: 0 8px 14px rgba(0, 0, 0, 0.16);
    }

    .storiesCardLabel {
      font-size: 28px;
      font-weight: 300;
      letter-spacing: -.01em;
    }

    .storiesCardFeedback {
      position: absolute;
      top: 22px;
      left: 32px;
      right: 32px;
      text-align: left;
      z-index: 1;
    }

    .storiesCardQuote {
      margin: 0;
      font-size: 19px;
      line-height: 1.34;
      font-weight: 250;
      white-space: pre-line;
    }

    .storiesCardMeta {
      position: absolute;
      left: 32px;
      right: 32px;
      bottom: 18px;
      text-align: left;
      color: inherit;
      z-index: 1;
    }

    .storiesCardAuthor {
      margin-top: 0;
      font-size: 21px;
      line-height: 1.1;
      font-weight: 400;
    }

    .storiesCardProduct {
      margin-top: 6px;
      font-size: 15px;
      line-height: 1.2;
      font-weight: 200;
      opacity: 1;
    }

    .storiesControls {
      display: flex;
      justify-content: center;
      gap: 12px;
      margin-top: 18px;
    }

    .storiesControls .carouselNextBtn,
    .storiesControls .carouselPrevBtn {
      position: static;
      left: auto;
      right: auto;
      top: auto;
      margin: 0;
    }

    .endImageHolder::after {
      content: "";
      position: absolute;
      inset: 0;
      background: url("IKI-Club.svg") 50% 16%/contain no-repeat;
      background-size: min(276px, 43vw);
      pointer-events: none;
      filter: brightness(0) invert(1);
      z-index: 1;
    }

    .endImageText {
      position: absolute;
      left: 50%;
      top: 34%;
      transform: translate(-50%, -50%);
      width: min(1100px, calc(100vw - (var(--page-x) * 2)));
      max-width: calc(100vw - (var(--page-x) * 2));
      text-align: center;
      color: #fff;
      font-size: 34px;
      font-weight: 200;
      line-height: 1.25;
      letter-spacing: .2px;
      white-space: normal;
      z-index: 2;
    }

    .endImageTextStrong {
      font-weight: inherit;
      font-style: italic;
    }

    .endNotebookOutline {
      position: absolute;
      left: 50%;
      right: auto;
      bottom: 0;
      transform: translateX(-50%);
      width: min(640px, 58vw);
      height: min(300px, 52%);
      border: 0;
      border-radius: 16px 16px 0 0;
      background: #111;
      pointer-events: none;
      z-index: 2;
    }

    .endNotebookScreen {
      position: absolute;
      left: 7px;
      right: 7px;
      top: 7px;
      bottom: 0;
      border: 0;
      border-radius: 10px 10px 0 0;
      background: #f3f3f1;
      overflow: hidden;
      pointer-events: auto;
    }

    .endNotebookScreen::before {
      content: "";
      position: absolute;
      left: 50%;
      top: -1px;
      transform: translateX(-50%);
      width: 70px;
      height: 12px;
      border: 0;
      border-radius: 0 0 6px 6px;
      background: #111;
      z-index: 2;
    }

    .endNotebookScreen::after {
      content: "";
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(to bottom, rgba(255, 255, 255, 0.24), rgba(255, 255, 255, 0.08)),
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Cg stroke='%23e7e7e7' stroke-width='1'%3E%3Cline x1='12' y1='8' x2='12' y2='16'/%3E%3Cline x1='8' y1='12' x2='16' y2='12'/%3E%3C/g%3E%3C/svg%3E");
      background-repeat: no-repeat, repeat;
      background-size: 100% 100%, 24px 24px;
      opacity: 0.9;
      z-index: 1;
      pointer-events: none;
    }

    .endNotebookGridFocus {
      position: absolute;
      inset: 0;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Cg stroke='%23303030' stroke-width='1'%3E%3Cline x1='12' y1='8' x2='12' y2='16'/%3E%3Cline x1='8' y1='12' x2='16' y2='12'/%3E%3C/g%3E%3C/svg%3E");
      background-repeat: repeat;
      background-size: 24px 24px;
      opacity: 0;
      transition: opacity .18s ease;
      z-index: 1;
      pointer-events: none;
      -webkit-mask-image: radial-gradient(circle 72px at var(--grid-x, 50%) var(--grid-y, 50%), rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.75) 45%, rgba(0, 0, 0, 0) 100%);
      mask-image: radial-gradient(circle 72px at var(--grid-x, 50%) var(--grid-y, 50%), rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.75) 45%, rgba(0, 0, 0, 0) 100%);
    }

    .endNotebookScreen.isHovering .endNotebookGridFocus {
      opacity: 1;
    }

    .endNotebookShade {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(0, 0, 0, 0.16) 0%, rgba(0, 0, 0, 0.08) 34%, rgba(0, 0, 0, 0) 68%);
      z-index: 1;
      pointer-events: none;
    }

    .endNotebookCta {
      position: absolute;
      left: 50%;
      top: 50%;
      transform: translate(-50%, -50%);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      height: 44px;
      padding: 0 28px;
      border-radius: 999px;
      background: #111;
      color: #fff;
      font-size: 16px;
      font-weight: 300;
      line-height: 1;
      letter-spacing: .2px;
      white-space: nowrap;
      z-index: 3;
      pointer-events: auto;
      transition: transform .22s ease;
      text-decoration: none;
    }

    .endNotebookCta:hover {
      transform: translate(-50%, calc(-50% - 4px));
    }

    .featureImage {
      padding: 0 0 40px;
      margin-left: calc(50% - 50vw);
      margin-right: calc(50% - 50vw);
      margin-top: -120px;
      background: #fff;
      position: relative;
      z-index: 2;
    }

    .featureImageInner {
      display: flex;
      width: 100vw;
      height: 660px;
      border-radius: 0;
      border: 0;
    }

    .featureImagePane {
      flex: 1 1 50%;
      height: 100%;
      position: relative;
    }

    .featureImagePane--left {
      --pane-bg: #bcbcbc;
    }

    .featureImagePane--left.featureImagePaneCard::before {
      filter: none;
      animation: featureLeftImageCycle 2s steps(1, end) infinite;
    }

    .featureImagePane--right {
      --pane-bg: url("feature-right-custom.jfif");
    }

    .featureImagePaneCard {
      position: relative;
      overflow: hidden;
    }

    .featureImagePaneCard::before {
      content: "";
      position: absolute;
      inset: 0;
      background: var(--pane-bg, #2f2f2f);
      background-position: center;
      background-size: cover;
      filter: grayscale(100%);
      transition: transform .45s ease;
      transform: scale(1);
    }

    .featureImagePaneCard::after {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(to top, rgba(0, 0, 0, 0.62) 0%, rgba(0, 0, 0, 0.18) 45%, rgba(0, 0, 0, 0) 100%),
        rgba(0, 0, 0, 0.62);
      pointer-events: none;
      z-index: 1;
    }

    .featureImagePaneCard:hover::before {
      transform: scale(1.04);
    }

    .featureImagePane--left.featureImagePaneCard:hover::before {
      transform: none;
    }

    .featureImagePane--left.featureImagePaneCard::after {
      background:
        linear-gradient(to top, rgba(0, 0, 0, 0.44) 0%, rgba(0, 0, 0, 0.16) 45%, rgba(0, 0, 0, 0) 100%),
        rgba(0, 0, 0, 0.4);
    }

    @keyframes featureLeftImageCycle {
      0%, 24.99% {
        background-image: url("feature-left-1.jpg");
        background-position: center 62%;
      }
      25%, 49.99% {
        background-image: url("feature-left-2.jpg");
        background-position: center;
      }
      50%, 74.99% {
        background-image: url("feature-left-3.jpg");
        background-position: center;
      }
      75%, 100% {
        background-image: url("feature-left-4.jpg");
        background-position: center;
      }
    }

    .featureImageLabel {
      position: absolute;
      bottom: 28px;
      color: #fff;
      font-size: 42px;
      font-weight: 200;
      letter-spacing: .2px;
      line-height: 1;
      pointer-events: none;
      z-index: 2;
      transition: transform .3s ease;
    }

    .featureImagePaneCard:hover .featureImageLabel {
      transform: translateY(-6px);
    }

    .featureImageLabel--right {
      right: var(--page-x);
      text-align: right;
    }

    .featureImageLabel--left {
      left: var(--page-x);
      text-align: left;
    }

    .featureImageLabel--center {
      position: static;
      left: auto;
      top: auto;
      bottom: auto;
      right: auto;
      transform: none !important;
      text-align: center;
      width: 100%;
      max-width: 86%;
    }

    .featureImageContentCenter {
      position: absolute;
      left: 50%;
      top: 50%;
      transform: translate(-50%, -50%);
      text-align: center;
      width: 100%;
      max-width: 86%;
      z-index: 2;
    }

    .featureImageEyebrow {
      display: block;
      color: #fff;
      font-size: 14px;
      font-weight: 100;
      letter-spacing: .06em;
      margin-bottom: 6px;
    }

    .featureImageLabelLine {
      display: block;
    }

    .featureImageLabelLine--top {
      font-weight: 100;
    }

    .featureImageLabelLine--bottom {
      font-weight: 300;
    }

    .featureImageLabelItalic {
      font-style: italic;
    }

    .featureImageCta {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      margin-top: 18px;
      padding: 10px 22px;
      border-radius: 999px;
      background: #fff;
      color: #111;
      text-decoration: none;
      font-size: 15px;
      font-weight: 300;
      line-height: 1;
    }

    .readyHeader {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 18px;
      margin-bottom: 30px;
    }

    .readyHeader h2 {
      font-size: 28px;
      font-weight: 400;
      line-height: 1.1;
    }

    .readyLink {
      text-decoration: none;
      color: #7a7a7a;
      font-weight: 500;
      font-size: 14px;
      display: inline-flex;
      gap: 6px;
      align-items: center;
    }

    .readyLink::after {
      content: "\2192";
      font-size: 16px;
      transition: transform .3s;
      color: inherit;
    }

    .readyLink:hover::after {
      transform: translateX(4px);
    }

    .readyCarousel {
      display: flex;
      gap: 28px;
      overflow-x: auto;
      scroll-behavior: smooth;
      padding-bottom: 12px;
      scrollbar-width: none;
      cursor: grab;
      user-select: none;
    }

    .readyCarouselWrap::before,
    .readyCarouselWrap::after {
      display: none;
    }

    .readyCarousel::-webkit-scrollbar { display: none; }
    .readyCarousel.isDragging { cursor: grabbing; }

    .readyCarousel .categoryCard:not(.categoryCard--wide),
    .readyCarousel .categoryCard:not(.categoryCard--wide) figure {
      width: 484px;
    }

    .readyCarousel .categoryCard:not(.categoryCard--wide) figure {
      height: 484px;
      border-radius: 0;
    }

    .readyCarousel .categoryCard:not(.categoryCard--wide) figure img {
      object-fit: cover;
      width: 100%;
      height: 100%;
    }

    .readyProductCard {
      display: flex;
      flex-direction: column;
      gap: 12px;
      text-align: left;
      height: 484px;
    }

    .readyProductCard:hover {
      transform: translateY(-5px);
    }

    .readyProductCard:hover span {
      color: inherit;
      transform: none;
    }

    .readyProductCard:hover .oldPrice {
      color: #b0b6bf;
    }

    .readyProductCard:hover .newPrice {
      color: #d62828;
    }

    .readyProductCard:hover .offBadge {
      color: #fff;
      transform: none;
    }

    .readyProductCard .image {
      width: 100%;
      flex: 1 1 auto;
      border-radius: 0;
      background: #ddd center/cover no-repeat;
      position: relative;
      overflow: hidden;
    }

    .readyProductCard .info {
      margin-top: auto;
    }

    .readyProductCard .info {
      padding: 0;
    }

    .readyProductCard .title {
      font-size: 24px;
      margin-bottom: 5px;
    }

    .readyProductCard .price {
      font-weight: 200;
    }

    .readyProductCard .priceRow {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .readyProductCard .oldPrice {
      color: #b0b6bf;
      text-decoration: line-through;
      text-decoration-thickness: 1px;
      text-decoration-color: #b0b6bf;
      font-weight: 300;
    }

    .readyProductCard .newPrice {
      color: #d62828;
      font-weight: 400;
    }

    .readyProductCard .offBadge {
      position: absolute;
      top: 12px;
      left: 12px;
      background: #111;
      color: #fff;
      font-size: 12px;
      font-weight: 300;
      padding: 4px 8px;
      border-radius: 999px;
      letter-spacing: .2px;
    }

    .readyProductCard .offBadge--delivery {
      z-index: 2;
    }

    .readyProductCard .offBadge--discount {
      z-index: 3;
    }

    .readyProductCard .image--stackBadges .offBadge--delivery {
      top: 38px;
    }

    .categoryCard--wide,
    .categoryCard--wide figure {
      width: 582px;
    }

    .categoryCard--wide figure {
      height: 484px;
      border-radius: 0;
    }

    .categoryCard--readyHero figure {
      align-items: flex-start;
      justify-content: flex-end;
      padding: 0;
      text-align: left;
      position: relative;
      overflow: hidden;
      background: #d0d0d0;
    }

    .readyHeroTitle {
      position: absolute;
      left: 18px;
      bottom: 16px;
      display: inline-block;
      color: #fff;
      font-size: 102px;
      font-weight: 100;
      line-height: .9;
      letter-spacing: -.01em;
      z-index: 2;
      pointer-events: none;
      transition: transform .25s ease, color .25s ease;
    }

    #readyTitle.readyHeroTitle {
      font-size: 72px !important;
      line-height: .95;
    }

    .categoryCard--readyHero:hover .readyHeroTitle {
      color: #fff;
      transform: translateY(-6px);
    }

    .categoryCard--readyHero figure::before {
      content: "";
      position: absolute;
      inset: 0;
      background: url("ready-hero-custom.jpg") center/cover no-repeat;
      transition: transform .4s ease;
      z-index: 0;
    }

    .categoryCard--readyHero figure::after {
      content: "";
      position: absolute;
      inset: 0;
      background: rgba(20, 67, 128, 0.34);
      pointer-events: none;
      z-index: 1;
    }

    .categoryCard--readyHero:hover figure::before {
      transform: scale(1.02);
    }

    @media (max-width: 768px) {
      :root { --page-x: 20px; }

      nav a {
        margin-left: 18px;
        font-size: 13px;
      }

      .categorySection {
        padding: 60px 20px 40px;
      }

      .categorySection--ap {
        padding: 108px 0 88px;
        min-height: 110vh;
      }

      .categoryShell {
        grid-template-columns: 1fr;
        gap: 22px;
        padding: 0 20px;
      }

      .categoryIntro {
        position: static;
      }

      .categorySection--ap .categoryIntro h2 {
        font-size: 42px;
        margin-bottom: 10px;
      }

      .categoryCta {
        font-size: 18px;
      }

      .categoryCta::before {
        width: 42px;
      }

      .categoryItem {
        flex-basis: 220px;
      }

      .categoryItemFigure {
        aspect-ratio: 1 / 1;
      }

      .categoryItemTitle {
        font-size: 24px;
      }

      .categoryItemText {
        min-height: 72px;
      }

      .categoryItemMore {
        font-size: 16px;
      }

      .manifestoSection {
        padding: 68px 20px;
      }

      .manifestoText {
        font-size: 27px;
        font-weight: 200;
        line-height: 1.12;
      }

      .manifestoSection + .categorySection {
        margin-top: 0;
      }

      .categoryHeader {
        flex-direction: column;
        align-items: flex-start;
        gap: 18px;
      }

      .categoryCard,
      .categoryCard figure {
        width: 189px;
      }

      .categoryCard figure {
        height: 189px;
        border-radius: 6px;
      }

      .carouselWrap::before,
      .carouselWrap::after {
        width: 50px;
      }

      .carouselNextBtn {
        width: 38px;
        height: 38px;
        right: 6px;
        top: 150px;
      }

      .carouselNextBtn::before {
        width: 7px;
        height: 7px;
      }

      .carouselPrevBtn {
        left: 6px;
        right: auto;
      }

      .categoryRailWrap .carouselNextBtn,
      .categoryRailWrap .carouselPrevBtn {
        top: calc((210px - 38px) / 2);
      }

      .readySection {
        padding: 40px 20px 70px;
      }

      .readyHeroTitle {
        left: 12px;
        bottom: 12px;
        font-size: 66px;
      }

      #readyTitle.readyHeroTitle {
        font-size: 42px !important;
      }

      .endImageHolder {
        height: 420px;
      }

      .endWhiteGuide {
        height: 420px;
      }

      .storiesTitleSection {
        padding: 63px 20px 40px;
      }

      .storiesTitle {
        font-size: 32px;
      }

      .storiesCarouselSection {
        padding: 0 20px 38px;
      }

      .blackBandSection {
        margin-top: 20px;
        min-height: 420px;
        grid-template-rows: auto 1fr;
        padding: 0 20px;
      }

      .blackBandTop {
        align-items: flex-start;
        flex-direction: column;
        gap: 16px;
        padding: 36px 0;
      }

      .blackBandText {
        font-size: 26px;
        line-height: 1.18;
      }

      .blackBandCta {
        position: static;
        transform: none !important;
        margin-top: 0;
      }

      .blackBandCta:hover {
        transform: translateY(-4px);
      }

      .blackBandFooter {
        padding-top: 16px;
      }

      .blackBandFooterGrid {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 26px 0 32px;
      }

      .blackBandNewsLead {
        font-size: 23px;
        max-width: none;
      }

      .blackBandLinks a {
        font-size: 19px;
      }



      .storiesCarousel {
        gap: 12px;
      }

      .storiesCard {
        flex-basis: calc((100% - 12px) / 2);
      }

      .storiesCardLabel {
        font-size: 22px;
      }

      .storiesCardFeedback {
        top: 14px;
        left: 20px;
        right: 20px;
      }

      .storiesCardMeta {
        left: 20px;
        right: 20px;
        bottom: 12px;
      }

      .storiesCardQuote {
        font-size: 13px;
      }

      .storiesCardAuthor {
        font-size: 14px;
      }

      .storiesCardProduct {
        margin-top: 4px;
        font-size: 11px;
      }

      .endImageHolder::after {
        background-position: 50% 14%;
        background-size: min(180px, 43vw);
      }

      .endImageText {
        left: 50%;
        top: 31%;
        transform: translate(-50%, -50%);
        width: calc(100vw - 40px);
        max-width: calc(100vw - 40px);
        text-align: center;
        font-size: 20px;
        line-height: 1.2;
        white-space: normal;
      }

      .endNotebookOutline {
        bottom: 0;
        width: min(330px, 72vw);
        height: min(190px, 50%);
        border-radius: 10px 10px 0 0;
      }

      .endNotebookScreen {
        left: 5px;
        right: 5px;
        top: 5px;
        border-radius: 6px 6px 0 0;
      }

      .endNotebookScreen::before {
        width: 46px;
        height: 8px;
        border-radius: 0 0 4px 4px;
      }

      .endNotebookCta {
        height: 36px;
        padding: 0 21px;
        font-size: 13px;
      }

      .featureImage {
        padding: 0 0 30px;
        margin-left: calc(50% - 50vw);
        margin-right: calc(50% - 50vw);
        margin-top: -70px;
      }

      .featureImageInner {
        height: 430px;
        border-radius: 0;
      }

      .featureImageLabel {
        bottom: 18px;
        font-size: 24px;
      }

      .featureImageLabel--right {
        right: 20px;
      }

      .featureImageLabel--left {
        left: 20px;
      }

      .featureImageLabel--center {
        position: static;
        left: auto;
        top: auto;
        right: auto;
        transform: none !important;
      }

      .featureImageContentCenter {
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
      }

      .featureImageEyebrow {
        font-size: 11px;
        margin-bottom: 10px;
      }

      .featureImageCta {
        margin-top: 14px;
        padding: 8px 16px;
        font-size: 13px;
      }

      .readyHeader {
        flex-direction: column;
        align-items: flex-start;
      }

      .categoryCard--wide,
      .categoryCard--wide figure {
        width: 434px;
      }

      .categoryCard--wide figure {
        height: 362px;
      }

      .readyCarousel .categoryCard:not(.categoryCard--wide),
      .readyCarousel .categoryCard:not(.categoryCard--wide) figure {
        width: 362px;
      }

      .readyCarousel .categoryCard:not(.categoryCard--wide) figure {
        height: 362px;
      }

      .readyProductCard {
        height: 362px;
      }

      .slider { height: 55vh; }
    }
    .whatsappFab {
      position: fixed;
      right: 24px;
      bottom: 24px;
      width: 56px;
      height: 56px;
      border-radius: 50%;
      background: #000;
      color: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 10px 24px rgba(0, 0, 0, .28);
      z-index: 1002;
      border: 0;
      cursor: pointer;
      transition: transform .18s ease;
    }

    .whatsappFab svg {
      width: 28px;
      height: 28px;
      display: block;
    }

    .whatsappFab:hover {
      transform: scale(1.06);
    }

    .whatsappFab .whatsappFabIcon--arrow {
      display: none;
    }

    .whatsappFab[aria-expanded="true"] .whatsappFabIcon--wa {
      display: none;
    }

    .whatsappFab[aria-expanded="true"] .whatsappFabIcon--arrow {
      display: block;
    }

    .whatsappMenu {
      position: fixed;
      right: 24px;
      bottom: 24px;
      width: 483px;
      min-height: 237px;
      border-radius: 28px;
      background: #fff;
      border: 1px solid #e3e3e3;
      box-shadow: 0 14px 34px rgba(0, 0, 0, .24);
      padding: 18px 16px 80px;
      z-index: 1001;
      opacity: 0;
      transform: translateY(10px);
      pointer-events: none;
      transition: opacity .2s ease, transform .2s ease;
    }

    .whatsappMenuTitle {
      margin: 0;
      color: #111;
      font-size: 24px;
      font-weight: 400;
      line-height: 1.2;
      letter-spacing: -.01em;
      text-align: left;
    }

    .whatsappMenuActions {
      margin-top: 16px;
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .whatsappMenuBtn {
      width: 100%;
      min-height: 44px;
      border-radius: 999px;
      border: 1px solid #111;
      background: transparent;
      color: #111;
      display: flex;
      align-items: center;
      justify-content: space-between;
      text-align: left;
      text-decoration: none;
      font-size: 15px;
      font-weight: 300;
      line-height: 1.2;
      padding: 8px 14px;
      gap: 12px;
      transition: background-color .2s ease;
    }

    .whatsappMenuBtn:hover {
      background: #f0f0f0;
    }

    .whatsappMenuBtnLabel {
      flex: 1 1 auto;
      text-align: left;
    }

    .whatsappMenuBtnIcon {
      width: 22px;
      height: 22px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      flex: 0 0 auto;
    }

    .whatsappMenuBtnIcon img {
      width: 74%;
      height: 74%;
      display: block;
      object-fit: contain;
    }

    .whatsappMenu.isOpen {
      opacity: 1;
      transform: translateY(0);
      pointer-events: auto;
    }
