/** Shopify CDN: Minification failed

Line 648:2 Unexpected "<"

**/


/* CSS from section stylesheet tags */
.about-us-header {
    position: relative;
    top: 0;
    width: 100%;
    min-height: 30vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #ffffff;
    padding: 40px 0;
  }

  .about-us-desc {
    max-width: 80%;
  }

  .about-us-desc > h2 {
    font-size: 72px;
    color: black;
    margin: 0;
    font-weight: 600;
    text-align: center;
    text-shadow: 0 0 4px rgba(0, 0, 0, 0.3);
  }

  .about-us-desc > p {
    font-size: 1.5rem;
    margin-top: 1rem;
    margin-bottom: 1rem;
    letter-spacing: 0.16em;
    text-align: left;
    font-weight: 500;
  }

  .about-us-image-1-desc,
  .about-us-image-2-desc,
  .about-us-image-3-desc {
    max-width: 80%;
    width: 100%;
    text-align: left;
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .about-us-image-1-desc > h2,
  .about-us-image-2-desc > h2,
  .about-us-image-3-desc > h2 {
    font-size: 72px;
    color: #fff;
    margin: 0;
    text-shadow: 0 0 4px rgba(255, 255, 255, 0.6);
    z-index: 2;
    font-weight: 600;
  }

  .about-us-image-1-desc > p,
  .about-us-image-2-desc > p,
  .about-us-image-3-desc > p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #fff;
    text-align: left;
    letter-spacing: 0.06em;
    font-weight: 500;
  }

  .about-us-content .about-us-image-1,
  .about-us-content .about-us-image-2,
  .about-us-content .about-us-image-3 {
    width: 100%;
    height: 100vh;
    position: sticky;
    top: 0;
    display: block;
  }

  .about-us-content .about-us-image-1-wrapper,
  .about-us-content .about-us-image-2-wrapper,
  .about-us-content .about-us-image-3-wrapper {
    position: relative;
    height: 100vh;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 60% 8%;
  }

  .about-us-content .about-us-image-1-wrapper::before,
  .about-us-content .about-us-image-2-wrapper::before,
  .about-us-content .about-us-image-3-wrapper::before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.7);
  }

  @media screen and (max-width: 640px) {
    .about-us-desc,
    .about-us-image-1-desc,
    .about-us-image-2-desc,
    .about-us-image-3-desc {
      text-align: center;
    }

    .about-us-desc > h2,
    .about-us-image-1-desc > h2,
    .about-us-image-2-desc > h2,
    .about-us-image-3-desc > h2 {
      font-size: 40px;
    }

    .about-us-desc > p,
    .about-us-image-1-desc > p,
    .about-us-image-2-desc > p,
    .about-us-image-3-desc > p {
      font-size: 13px;
      letter-spacing: 0.04em;
    }
  }
.genius-announcement-bar {
    background-color: #000;
    overflow: hidden;
  }
  .genius-announcement-bar-wrapper {
    list-style: none;
    display: flex;
    animation: move 100s linear infinite;
    margin: 0;
    padding: 16px 0;
  }
  .genius-announcement-bar-wrapper > li {
    flex-shrink: 0;
    margin-right: 80px;
    font-size: 14px;
    color: #fff;
  }

  @keyframes move {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(-100%);
    }
  }

  @media screen and (max-width: 640px) {
    .genius-announcement-bar-wrapper {
      animation: move 40s linear infinite;
    }
  }
.genius-banner {
    position: relative;
    width: 100%;
  }

  .genius-banner-image {
    width: 100%;
    height: 100vh;   /* or 70vh if you want it tighter */
    position: relative;
    display: block;
  }

  .genius-banner-image-wrapper {
    position: relative;
    height: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 60% 8%;
    overflow: hidden;
  }

  .genius-banner-image-wrapper::before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: rgba(0,0,0,.45);
    pointer-events: none;  /* << add this */
  }

  .genius-banner-image-wrapper > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .genius-banner-image-desc {
    width: 100%;
    max-width: 720px;
    text-align: left;
    position: absolute;
    top: 50%;
    left: 12%;
    transform: translateY(-50%);
    z-index: 1;
  }

  .genius-banner-image-desc > p {
    font-size: 13px;
    margin-bottom: 16px;
    color: #fff;
    letter-spacing: 0.28em;
    font-weight: 500;
    text-transform: uppercase;
  }

  .genius-banner-image-desc > h2 {
    font-size: 56px;
    line-height: 1.1;
    color: #fff;
    margin: 0 0 12px;
    font-weight: 600;
  }

  .genius-banner-sub {
    font-size: 16px;
    color: #e6e6e6;
    max-width: 560px;
    margin: 0 auto 28px 0;
  }

  .genius-banner-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
  }

  .genius-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 1.8rem;
    font-size: 14px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    border-radius: 999px;
    border: 1px solid #fff;
    color: #fff;
    text-decoration: none;
  }

  .genius-btn--primary {
    background-color: #fff;
    color: #111;
  }

  .genius-btn--secondary {
    background-color: transparent;
  }
  
  /* Hover states */
  .genius-btn--primary:hover {
    background-color: #f4d08a;       /* warm, “coffee” accent */
    border-color: #f4d08a;
    color: #111;
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(0,0,0,.25);
  }

  .genius-btn--secondary:hover {
    background-color: rgba(255,255,255,.1);
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(0,0,0,.25);
  }

  @media screen and (max-width: 640px) {
    .genius-banner-image {
      height: 80vh;
    }
    .genius-banner-image-desc {
      left: 50%;
      transform: translate(-50%, -50%);
      text-align: center;
      padding: 0 1.5rem;
    }
    .genius-banner-image-desc > h2 {
      font-size: 34px;
    }
    .genius-banner-sub {
      margin: 0 0 20px;
      max-width: 100%;
    }
    .genius-banner-actions {
      justify-content: center;
    }
  }
/* keep your existing CSS exactly as you had it */
  .product-row {
    display: flex;
    flex-wrap: wrap;
    padding: 5px;
    background-color: rgb(0,0,0);
    color: rgb(255,255,255);
  }

  .product-column {
    display: flex;
    justify-content: center;
    align-content: center;
    width: 100%;
  }

  .reverse {
    flex-direction: row-reverse;
    background-color: transparent;
    color: black;
  }

  .white-text {
    color: rgb(255,255,255);
  }

  .product-image-wrapper {
    flex: 0 0 40%;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 75vh%;
    width: auto;
  }

  .product-image {
    width: 80%;
    border-radius: 10px;
  }

  .product-description {
    flex: 0 0 55%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 20px;
  }

  .product-description h2 {
    text-align: center;
    font-size: 4rem;
    margin-bottom: 10px;
  }

  .product-description p {
    font-size: 1.5rem;
  }

  .scrollbar-hide {
    -ms-overflow-style: none;
    scrollbar-width: none;
  }

  .scrollbar-hide::-webkit-scrollbar {
    display: none;
  }

  .quality-control {
    padding: 5px;
    font-size: 4rem;
    text-align: center;
    color: black;
  }

  .slider-container {
    display: flex;
    flex-wrap: nowrap;
    max-width: 100vw;
    column-gap: 10px;
    overflow-x: scroll;
  }

  .slider-item:first-child {
    margin-left: 20px;
  }

  .slider-item:last-child {
    margin-right: 20px;
  }

  .slider-item {
    display: inline-block;
    position: relative;
    white-space: nowrap;
  }

  .slider-item-description-wrapper {
    background: linear-gradient(to top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.95));
    position: absolute;
    top: 0;
    left: 0;
    min-height: 20%;
    width: 100%;
    border-radius: 10px 10px 0 0;
  }

  .long {
    aspect-ratio: 1/1 !important;
  }

  .slider-item-description {
    position: absolute;
    top: 1.5vh;
    margin: 0;
    padding: 0 15px;
    white-space: normal !important;
    width: 100% !important;
    max-width: 100%;
    color: white;
    word-break: break-word;
  }

  .slider-item-image {
    object-fit: cover;
    height: min(60vw, 600px);
    aspect-ratio: 1/2;
    border-radius: 10px;
  }

  @media screen and (max-width: 640px) {
    .product-column {
      flex-direction: column;
      align-items: center;
    }

    .product-column.reverse {
      flex-direction: column;
    }

    .product-image-wrapper,
    .product-description {
      flex: 0 0 100%;
      text-align: center;
    }

    .product-image {
      width: 80%;
      margin-bottom: 20px;
    }
  }
.genius-main-product {
    background-color: #000000;
    overflow: hidden;
    white-space: nowrap;
  }

  .genius-main-product-wrapper {
    list-style: none;
    display: inline-flex;
    align-items: center;
    margin: 0;
    padding: 12px 0;
    animation: genius-marquee 25s linear infinite;
  }

  .genius-main-product-wrapper > li {
    flex-shrink: 0;
    margin-right: 40px;
    color: #ffffff;
    font-size: 36px;
    white-space: nowrap;
  }

  @media screen and (max-width: 640px) {
    .genius-main-product-wrapper {
      animation-duration: 15s;
    }

    .genius-main-product-wrapper > li {
      font-size: 22px;
      margin-right: 24px;
    }
  }

  @keyframes genius-marquee {
    0% {
      transform: translate3d(0, 0, 0);
    }
    100% {
      transform: translate3d(-50%, 0, 0);
    }
  }
.product-row {
    padding: 5px;
    background-color: rgb(0,0,0);
    color: rgb(255,255,255);
  }

  .product-column {
    display: flex;
    justify-content: center;
    align-content: center;
    min-height: 70vh;
  }

  .reverse {
    flex-direction: row-reverse;
    background-color: transparent;
    color: black;
  }

  .white-text {
    color: rgb(255,255,255);
  }

  .product-image-wrapper {
    width: 45%;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .product-image {
    width: 80%;
    border-radius: 10px;
  }

  .product-description {
    width: 55%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 20px;
  }

  .product-description h2 {
    text-align: center;
    font-size: 4rem;
    margin-bottom: 10px;
  }

  .product-description p {
    font-size: 1.5rem;
  }

  .quality-control-section {
    padding: 30px 0;
  }

  .quality-control {
    padding: 5px;
    font-size: 4rem;
    text-align: center;
    color: black;
  }

  .slider-container {
    display: flex;
    flex-wrap: nowrap;
    max-width: 100vw;
    column-gap: 10px;
    overflow-x: scroll;
  }

  .slider-item:first-child {
    margin-left: 20px;
  }

  .slider-item:last-child {
    margin-right: 20px;
  }

  .slider-item {
    display: flex;
    flex-direction: column;
    position: relative;
    white-space: nowrap;
    flex-shrink: 0;
  }

  .slider-item-description-wrapper {
    background: linear-gradient(to top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.95));
    position: absolute;
    top: 0;
    left: 0;
    min-height: 20%;
    width: 100%;
    border-radius: 10px 10px 0 0;
  }

  .slider-item-description {
    position: absolute;
    top: 1.5vh;
    margin: 0;
    padding: 0 15px;
    white-space: normal !important;
    width: 100% !important;
    max-width: 100%;
    color: white;
    word-break: break-word;
  }

  .slider-item-image {
    object-fit: cover;
    height: min(60vh, 600px);
    aspect-ratio: 1/2;
    border-radius: 10px;
  }

  .scrollbar-hide {
    -ms-overflow-style: none;
    scrollbar-width: none;
  }

  .scrollbar-hide::-webkit-scrollbar {
    display: none;
  }

  @media screen and (max-width: 640px) {
    .product-image-wrapper,
    .product-description {
      width: 100%;
      flex: none;
      text-align: center;
    }

    .product-image-wrapper {
      order: 2;
    }

    .product-description {
      order: 1;
    }

    .product-column {
      min-height: auto;
    }

    .product-image {
      width: 80%;
      margin-bottom: 20px;
    }

    .quality-control-section {
      padding: 15px 0;
    }
  }
html

  Copy
  <style>
    /* .product-row {
      display: flex;
      flex-wrap: wrap;
      padding: 5px;
      background-color: rgb(0, 0, 0);
      color: rgb(255, 255, 255);
    } */

    /* .product-column {
      display: flex;
      justify-content: center;
      align-items: center;
      width: 100%;
      flex-direction: column;
      text-align: center;
    } */

    .reverse {
      flex-direction: column-reverse;
    }

    .white-text {
      color: rgb(255, 255, 255);
    }

    /* .product-image-wrapper {
      flex: 0 0 100%;
      display: flex;
      justify-content: center;
      align-items: center;
      width: 100%;
      margin-bottom: 20px;
    } */

    .product-image {
      width: 80%;
      max-width: 300px;
      border-radius: 10px;
    }

    /* .product-description {
      flex: 0 0 100%;
      padding: 20px;
      box-sizing: border-box;
      text-align: center;
    } */

    /* .product-description h2 {
      font-size: 2.5rem;
      margin-bottom: 10px;
    }

    .product-description p {
      font-size: 1.2rem;
    } */

    .quality-control {
      padding: 5px;
      font-size: 2.5rem;
      text-align: center;
      color: black;
    }

    .slider-container {
      display: flex;
      flex-wrap: nowrap;
      max-width: 100vw;
      column-gap: 10px;
      overflow-x: scroll;
      padding: 10px 0;
    }

    .slider-item:first-child {
      margin-left: 20px;
    }

    .slider-item:last-child {
      margin-right: 20px;
    }

    .slider-item {
      display: inline-block;
      position: relative;
      white-space: nowrap;
    }

    .slider-item-description-wrapper {
      background: linear-gradient(to top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.95));
      position: absolute;
      top: 0;
      left: 0;
      min-height: 20%;
      width: 100%;
      border-radius: 10px 10px 0 0;
    }

    .long {
      aspect-ratio: 1/1 !important;
    }

    .slider-item-description {
      position: absolute;
      top: 1.5vh;
      margin: 0;
      padding: 0 15px;
      white-space: normal !important;
      width: 100% !important;
      max-width: 100%;
      color: white;
      word-break: break-word;
    }

    .slider-item-image {
      object-fit: cover;
      height: min(60vw, 600px);
      aspect-ratio: 1/2;
      border-radius: 10px;
    }

    .scrollbar-hide {
      -ms-overflow-style: none;
      scrollbar-width: none;
    }

    .scrollbar-hide::-webkit-scrollbar {
      display: none;
    }

    @media screen and (max-width: 640px) {
      .product-description h2 {
        font-size: 2rem;
      }

      .product-description p {
        font-size: 1rem;
      }

      .quality-control {
        font-size: 2rem;
      }

      /* .slider-item-description-wrapper {
        position: static;
        background: none;
        min-height: auto;
      }

      .slider-item-description {
        position: static;
        display: inline-block;
        padding: 10px;
        color: black;
      } */

      .slider-item-image {
        width: auto;
        height: 60vh;
        border-radius: 10px;
      }

    }
.product-row {
    padding: 5px;
    background-color: rgb(0,0,0);
    color: rgb(255,255,255);
  }

  .product-column {
    display: flex;
    justify-content: center;
    align-content: center;
    min-height: 70vh;
  }

  .reverse {
    flex-direction: row-reverse;
    background-color: transparent;
    color: black;
  }

  .white-text {
    color: rgb(255,255,255);
  }

  .product-image-wrapper {
    width: 45%;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .product-image {
    width: 80%;
    border-radius: 10px;
  }

  .product-description {
    width: 55%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 20px;
  }

  .product-description h2 {
    text-align: center;
    font-size: 4rem;
    margin-bottom: 10px;
  }

  .product-description p {
    font-size: 1.5rem;
  }

  .quality-control-section {
    padding: 30px 0;
  }

  .quality-control {
    padding: 5px;
    font-size: 4rem;
    text-align: center;
    color: black;
  }

  .slider-container {
    display: flex;
    flex-wrap: nowrap;
    max-width: 100vw;
    column-gap: 10px;
    overflow-x: scroll;
  }

  .slider-item:first-child {
    margin-left: 20px;
  }

  .slider-item:last-child {
    margin-right: 20px;
  }

  .slider-item {
    display: flex;
    flex-direction: column;
    position: relative;
    white-space: nowrap;
    flex-shrink: 0;
  }

  .slider-item-description-wrapper {
    background: linear-gradient(
      to top,
      rgba(0, 0, 0, 0),
      rgba(0, 0, 0, 0.5),
      rgba(0, 0, 0, 0.8),
      rgba(0, 0, 0, 0.95)
    );
    position: absolute;
    top: 0;
    left: 0;
    min-height: 20%;
    width: 100%;
    border-radius: 10px 10px 0 0;
  }

  .slider-item-description {
    position: absolute;
    top: 1.5vh;
    margin: 0;
    padding: 0 15px;
    white-space: normal !important;
    width: 100% !important;
    max-width: 100%;
    color: white;
    word-break: break-word;
  }

  .slider-item-image {
    object-fit: cover;
    height: min(60vh, 600px);
    aspect-ratio: 1/2;
    border-radius: 10px;
  }

  .long {
    aspect-ratio: 1/1 !important;
  }

  .scrollbar-hide {
    -ms-overflow-style: none;
    scrollbar-width: none;
  }

  .scrollbar-hide::-webkit-scrollbar {
    display: none;
  }

  @media screen and (max-width: 640px) {
    .product-image-wrapper,
    .product-description {
      width: 100%;
      flex: none;
      text-align: center;
    }

    .product-image-wrapper {
      order: 2;
    }

    .product-description {
      order: 1;
    }

    .product-column {
      min-height: auto;
    }

    .product-image {
      width: 80%;
      margin-bottom: 20px;
    }

    .quality-control-section {
      padding: 15px 0;
    }
  }
.genius-main-products-wrapper {
  width: 96%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  list-style: none;
  padding-left: 0;
  border-bottom: 2px solid #e2e2e2;
  padding-bottom: 20px;
}
.genius-main-products-wrapper li {
  width: 32%;
  
}

.genius-main-products-wrapper li > a {
  display: block;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.genius-main-products-wrapper li > a img {
  object-fit: cover;
}

.genius-main-products-wrapper li .view-product-text {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -40px;
  background-color: #000;
  text-align: center;
  padding: 6px 0;
  font-size: 14px;
  margin: 0;
  color: #fff;
  transition: all .3s linear;
}

.genius-main-products-wrapper li a:hover .view-product-text {
  bottom: 0;
}

@media screen and (max-width: 640px) {
  .genius-main-products-wrapper li .view-product-text {
    font-size: 10px;
    padding: 4px 0;
  }
}
.genius-why {
    padding: 40px 0 40px;
    background: #f3eee7;
    border-top: 1px solid rgba(0,0,0,0.04);
    border-bottom: 1px solid rgba(0,0,0,0.06);
    margin-top: -16px;
  }

  .genius-why__inner {
    max-width: 1040px;
    margin: 0 auto;
    padding: 0 1.75rem;
  }

  .genius-why__header {
    text-align: center;
    margin-bottom: 30px;
  }

  .genius-why__title {
    font-size: 30px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    margin: 0 0 8px;
    font-weight: 600;
  }

  .genius-why__subtitle {
    max-width: 720px;
    margin: 0 auto;
    font-size: 16px;
    line-height: 1.8;
    color: #444;
  }

  /* GRID */

  .genius-why__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    column-gap: 80px;
    margin-top: 28px;
  }

  .genius-why__item {
    text-align: center;       /* hard center everything in the cell */
    max-width: 280px;
    margin: 0 auto;
  }

  /* ICON — this is what fixes your misalignment */

  .genius-why__icon {
    display: flex;
    align-items: center;
    justify-content: center;  /* forces exact horizontal center */
    margin-bottom: 8px;
  }

  .genius-why__icon img {
    display: block;
    width: 32px;
    height: 32px;
  }

  /* TITLE + RULE */

  .genius-why__item-title {
    font-size: 12px;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    margin: 0 0 6px;
    color: #111;
    font-weight: 500;
  }

  .genius-why__rule {
    margin: 4px 0 16px;
    text-align: center;
  }

  .genius-why__rule span {
    display: inline-block;
    width: 40px;
    height: 2px;
    background: rgba(0,0,0,0.28);
    position: relative;
  }

  .genius-why__rule span::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #111;
    transform: translate(-50%, -50%);
  }

  /* BODY */

  .genius-why__item-text {
    font-size: 15px;
    line-height: 1.8;
    color: #3e3e3e;
  }

  .genius-why__item-text strong {
    font-weight: 500;
    color: #2c2c2c;
  }

  /* CTA */

  .genius-why__cta {
    margin-top: 26px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
  }

  .genius-why__cta-label {
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #555;
  }

  .genius-why__link {
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    text-decoration: none;
    color: #111;
    border-bottom: 1px solid rgba(0,0,0,0.35);
    padding-bottom: 4px;
  }

  .genius-why__link:hover {
    color: #c28c3b;
    border-color: #c28c3b;
    background: rgba(194,140,59,0.06);
  }

  /* RESPONSIVE */

  @media screen and (max-width: 900px) {
    .genius-why {
      padding: 32px 0 28px;
      margin-top: 0;
    }

    .genius-why__inner {
      max-width: 100%;
      padding: 0 18px;
    }

    .genius-why__header {
      margin-bottom: 22px;
    }

    .genius-why__grid {
      grid-template-columns: 1fr;
      row-gap: 24px;
      column-gap: 0;
    }

    .genius-why__item {
      max-width: 100%;
    }

    .genius-why__icon img {
      width: 24px;
      height: 24px;
    }

    .genius-why__item-text {
      font-size: 14px;
    }
  }
/* ===========================
   Layout shell / header base
   =========================== */

.section-header {
  position: sticky;
  top: 0;
  z-index: 20;
}

/* Remove arbitrary max-width on header container */
.header-wrapper > .page-width {
  max-width: 100%;
}

/* Base header padding; Shopify will still override some via settings */
.header {
  padding-inline: 2rem;
}

@media screen and (min-width: 990px) {
  .header {
    padding-inline: 3rem;
  }
}

/* Sticky header wrapper */
.header-wrapper {
  position: relative;
  transition: background-color 0.25s ease, box-shadow 0.25s ease;
}

/* ===========================
   Navigation typography
   =========================== */

.header__heading > a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding-block: 2px;
}

.header__heading a > img {
  position: static;
}

.header__heading > a > span {
  padding-left: 0;
  font-size: 1.1rem;
  letter-spacing: 0.16em;
}

/* Nav vs brand sizing */
.header__inline-menu .list-menu__item--link {
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Prevent nav items from breaking badly */
.list-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}

.list-menu--inline {
  display: inline-flex;
}

.list-menu--inline ul li {
  white-space: nowrap;
  flex-wrap: nowrap !important;
}

summary.list-menu__item {
  padding-right: 2.7rem;
}

.list-menu__item {
  display: flex;
  align-items: center;
  line-height: calc(1 + 0.3 / var(--font-body-scale));
}

.list-menu__item--link {
  text-decoration: none;
  padding-block: 1rem;
  line-height: calc(1 + 0.8 / var(--font-body-scale));
}

@media screen and (min-width: 750px) {
  .list-menu__item--link {
    padding-block: 0.5rem;
  }
}

.text-nowrap {
  white-space: nowrap;
}

/* Mobile logo layout protection */
@media screen and (max-width: 540px) {
  .header__heading {
    min-width: 205px;
  }
  .header__heading a > img {
    top: -4px;
  }
}

/* ===========================
   Logo swap (white ↔ black)
   =========================== */

.genius-coffee-logo-white,
.genius-coffee-logo-black {
  transition: opacity 0.3s linear;
}

.genius-coffee-logo-white {
  opacity: 1;
}

.genius-coffee-logo-black {
  opacity: 0;
}

.genius-coffee-logo-black.status {
  opacity: 1;
}

.genius-coffee-logo-white.status {
  opacity: 0;
}

/* ===========================
   Homepage transparent header
   =========================== */

/* Body gets .indexPage on homepage via JS */
.indexPage #MainContent {
  margin-top: -71px;
}

/* Transparent header over hero */
.indexPage .header-wrapper {
  background-color: transparent !important;
}

/* White background slide-in overlay for when we scroll */
.indexPage .header-wrapper::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: #ffffff;
  transition: transform 0.3s linear, box-shadow 0.3s linear;
  transform: translateY(-100%);
  z-index: 0;
}

/* When header is in "white" state */
.indexPage .header-wrapper.header-wrapper-white-bg {
  position: fixed !important;
  top: 0;
  left: 0;
  right: 0;
}

.indexPage .header-wrapper.header-wrapper-white-bg::before {
  transform: translateY(0);
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.08);
}

/* Make sure actual header content sits above ::before */
.indexPage .header-wrapper.header-wrapper-white-bg > header {
  z-index: 10;
  position: relative;
}

/* Nav + brand colors when header is white on homepage */
.indexPage .header-wrapper.header-wrapper-white-bg .header__inline-menu a > span,
.indexPage .header-wrapper.header-wrapper-white-bg .header__heading > a > span {
  color: #000000;
  transition: color 0.3s linear;
}

.indexPage .header-wrapper.header-wrapper-white-bg svg path,
.indexPage .header-wrapper.header-wrapper-white-bg svg use {
  color: #000000;
  transition: color 0.3s linear;
}

/* Keep header background transparent on index section shell */
.indexPage .section-header {
  position: sticky !important;
  top: 0;
  background-color: transparent;
}

/* ===========================
   Header icons
   =========================== */

.header__icons {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

/* ===========================
   Misc structural helpers
   =========================== */

.menu-drawer-container {
  display: flex;
}

/* Desktop: hide header drawer when not using drawer menu */
@media screen and (min-width: 990px) {
  header-drawer {
    display: none;
  }
}
.gct-explainer {
    background: #eee3d4;
    border-top: 1px solid rgba(0,0,0,0.08);
    border-bottom: 1px solid rgba(0,0,0,0.06);
    padding: 40px 0 42px;
  }

  .gct-explainer__inner {
    max-width: 940px;
    margin: 0 auto;
    padding: 0 1.75rem;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 1.35fr);
    column-gap: 48px;
    align-items: flex-start;
    position: relative;
  }

  .gct-explainer__inner::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 6px;
    height: 155px;
    width: 1px;
    background: rgba(0,0,0,0.06);
    transform: translateX(-0.5px);
    pointer-events: none;
  }

  .gct-explainer__title {
    font-size: 16px;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    margin: 0 0 4px;
    color: #181818;
    font-weight: 600;
  }

  .gct-explainer__subtitle {
    font-size: 15px;
    line-height: 1.8;
    color: #3c3630;
    max-width: 340px;
    opacity: 0.85;
  }

  .gct-explainer__right {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding-left: 26px;
  }

  .gct-explainer__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 5px;
  }

  .gct-explainer__item {
    display: flex;
    align-items: flex-start;
    gap: 7px;
    font-size: 14px;
    line-height: 1.6;
    color: #33302b;
  }

  .gct-explainer__dot {
    display: inline-block;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #111;
    margin-top: 7px;
    flex-shrink: 0;
  }

  .gct-explainer__cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 10px;
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    text-decoration: none;
    color: #111;
    padding: 7px 12px 6px;
    border-radius: 2px;
    border: 1px solid rgba(0,0,0,0.2);
    background: rgba(17,17,17,0.02);
    align-self: flex-start;
  }

  .gct-explainer__cta::after {
    content: "→";
    font-size: 11px;
  }

  .gct-explainer__cta:hover {
    color: #c28c3b;
    border-color: #c28c3b;
    background: rgba(194,140,59,0.08);
  }

  @media screen and (max-width: 900px) {
    .gct-explainer {
      padding: 26px 0 28px;
    }

    .gct-explainer__inner {
      max-width: 100%;
      grid-template-columns: 1fr;
      row-gap: 18px;
      padding: 0 18px;
    }

    .gct-explainer__inner::before {
      content: "";
      position: absolute;
      left: 50%;
      top: 6px;
      height: 155px;
      width: 1px;
      background: rgba(0,0,0,0.06);
      transform: translateX(-0.5px);
      pointer-events: none;
    }

    .gct-explainer__right {
      padding-left: 0;
      align-items: flex-start;
    }

    .gct-explainer__subtitle {
      max-width: 100%;
    }

    .gct-explainer__item {
      font-size: 13px;
      line-height: 1.7;
    }

    .gct-explainer__cta {
      font-size: 10px;
      letter-spacing: 0.2em;
    }
  }