/* =========================================================
   GLOBAL VARIABLES
========================================================= */
.item__name {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
}
.item__fact {
  display:none!important;
}
:root {
  --ink: #12171b;
  --paper: #ffffff;
  --wash: #eef1ee;
  --wash-2: #e4e8e4;
  --line: #d9ded9;
  --line-hard: #b9c0b9;
  --muted: #5c6663;
  --faint: #8b938f;

  --brand: #D00D0D;
  --brand-ink: #D00D0D;
  --brand-wash: #e6f2ee;
  --brand-lift: #D00D0D;

  --sale: #cf3223;

  --display: "Familjen Grotesk", "Helvetica Neue", sans-serif;
  --body: "Instrument Sans", system-ui, sans-serif;
  --mono: "Space Mono", ui-monospace, monospace;

  --logo-h: clamp(42px, 5.2vw, 68px);
  --logo-h-foot: clamp(46px, 5.6vw, 76px);
  --rail-h: calc(var(--logo-h) + 22px);

  --gutter: clamp(16px, 3.4vw, 48px);

  --maxw: 1340px;

  --ease: cubic-bezier(0.2, 0.75, 0.2, 1);
}


/* =========================================================
   HERO
========================================================= */

.Herohome {
  position: relative;

  overflow: hidden;
  isolation: isolate;

  background: var(--paper);
  color: var(--ink);
}

.Herohome::before {
  content: "";

  position: absolute;

  width: 620px;
  height: 620px;

  right: -280px;
  top: -260px;

  border-radius: 50%;

  background: var(--brand-wash);

  opacity: .9;

  z-index: -2;
}

.Herohome::after {
  content: "";

  position: absolute;

  width: 480px;
  height: 480px;

  left: -300px;
  bottom: -310px;

  border-radius: 50%;

  background: var(--wash);

  z-index: -2;
}


/* =========================================================
   WRAPPER
========================================================= */

.Herohome__wrap {
  width: min(
    var(--maxw),
    calc(100% - (var(--gutter) * 2))
  );

  min-height: 720px;

  margin-inline: auto;

  display: grid;

  grid-template-columns:
    minmax(0, 1fr)
    minmax(420px, .95fr);

  align-items: center;

  gap: clamp(40px, 6vw, 90px);

  padding-block:
    clamp(65px, 8vw, 105px);
}


/* =========================================================
   CONTENT
========================================================= */

.Herohome__content {
  position: relative;
  z-index: 4;

  max-width: 720px;
}

.Herohome__eyebrow {
  display: inline-flex;

  align-items: center;

  gap: 10px;

  margin-bottom: 23px;

  font-family: var(--mono);

  font-size: 10px;

  font-weight: 700;

  letter-spacing: .15em;

  text-transform: uppercase;

  color: var(--brand);
}

.Herohome__eyebrow::before {
  content: "";

  width: 28px;
  height: 1px;

  flex: 0 0 28px;

  background: var(--brand);
}


/* =========================================================
   TITLE
========================================================= */

.Herohome__title {
  margin: 0;

  max-width: 720px;

  font-family: var(--display);

  font-size:
    clamp(
      52px,
      6.3vw,
      88px
    );

  font-weight: 600;

  line-height: .93;

  letter-spacing: -.06em;

  color: var(--ink);
}

.Herohome__title span {
  display: block;

  color: var(--brand);

  font-weight: 500;
}


/* =========================================================
   TEXT
========================================================= */

.Herohome__text {
  max-width: 590px;

  margin: 30px 0 0;

  font-family: var(--body);

  font-size: 16px;

  line-height: 1.75;

  color: var(--muted);
}


/* =========================================================
   ACTIONS
========================================================= */

.Herohome__actions {
  display: flex;

  align-items: center;

  flex-wrap: wrap;

  gap: 12px;

  margin-top: 34px;
}

.Herohome__btn {
  min-height: 54px;

  padding: 0 25px;

  display: inline-flex;

  align-items: center;
  justify-content: center;

  gap: 15px;

  border-radius: 999px;

  font-family: var(--body);

  font-size: 13px;

  font-weight: 700;

  text-decoration: none;

  transition:
    transform .3s var(--ease),
    background-color .3s var(--ease),
    color .3s var(--ease),
    border-color .3s var(--ease),
    box-shadow .3s var(--ease);
}

.Herohome__btn:hover {
  transform: translateY(-3px);
}


/* PRIMARY BUTTON */

.Herohome__btn--dark {
  background: var(--brand);

  color: var(--paper);

  box-shadow:
    0 12px 28px rgba(23, 135, 107, .18);
}

.Herohome__btn--dark span {
  font-size: 18px;

  line-height: 1;

  transition:
    transform .3s var(--ease);
}

.Herohome__btn--dark:hover {
  background: var(--brand-ink);
}

.Herohome__btn--dark:hover span {
  transform: translate(3px, -3px);
}


/* OUTLINE BUTTON */

.Herohome__btn--outline {
  background: transparent;

  color: var(--ink);

  border: 1px solid var(--line);
}

.Herohome__btn--outline:hover {
  color: var(--brand);

  border-color: var(--brand);

  background: var(--brand-wash);
}


/* =========================================================
   STATS
========================================================= */

.Herohome__stats {
  display: flex;

  align-items: center;

  gap: 35px;

  margin-top: 50px;
}

.Herohome__stat {
  position: relative;

  display: flex;

  flex-direction: column;

  gap: 5px;
}

.Herohome__stat:not(:last-child)::after {
  content: "";

  position: absolute;

  width: 1px;
  height: 35px;

  top: 1px;
  right: -18px;

  background: var(--line);
}

.Herohome__stat strong {
  font-family: var(--display);

  font-size: 18px;

  font-weight: 600;

  color: var(--ink);
}

.Herohome__stat span {
  font-family: var(--body);

  font-size: 10px;

  color: var(--faint);
}


/* =========================================================
   SHOWCASE
========================================================= */

.Herohome__showcase {
  position: relative;

  min-height: 620px;

  display: flex;

  align-items: center;

  justify-content: center;
}


/* =========================================================
   BACKGROUND CIRCLE
========================================================= */

.Herohome__shape {
  position: absolute;

  width: min(520px, 90%);

  aspect-ratio: 1;

  border-radius: 50%;

  background:
    linear-gradient(
      145deg,
      var(--brand-wash),
      var(--wash)
    );

  box-shadow:
    inset 0 0 0 1px
    rgba(23, 135, 107, .06);

  z-index: -1;
}


/* =========================================================
   MAIN PRODUCT CARD
========================================================= */

.Herohome__main-product {
  position: relative;

  width: min(390px, 72%);

  padding: 13px;

  border: 1px solid var(--line);

  border-radius: 28px;

  background: var(--paper);

  box-shadow:
    0 35px 75px rgba(18, 23, 27, .13);

  z-index: 3;

  transform: rotate(-2deg);

  transition:
    transform .5s var(--ease),
    box-shadow .5s var(--ease);
}

.Herohome__main-product:hover {
  transform:
    rotate(0deg)
    translateY(-7px);

  box-shadow:
    0 45px 95px rgba(18, 23, 27, .17);
}


/* =========================================================
   PRODUCT BADGE
========================================================= */

.Herohome__product-tag {
  position: absolute;

  left: 28px;
  top: 28px;

  padding:
    7px
    11px;

  border-radius: 999px;

  background: var(--brand);

  color: var(--paper);

  font-family: var(--mono);

  font-size: 8px;

  font-weight: 700;

  line-height: 1;

  letter-spacing: .08em;

  text-transform: uppercase;

  z-index: 5;
}


/* =========================================================
   MAIN IMAGE
========================================================= */

.Herohome__product-image {
  width: 100%;

  aspect-ratio: 1 / 1.04;

  overflow: hidden;

  border-radius: 20px;

  background: var(--wash);
}

.Herohome__product-image img {
  width: 100%;
  height: 100%;

  display: block;

  object-fit: cover;

  transition:
    transform .65s var(--ease);
}

.Herohome__main-product:hover
.Herohome__product-image img {
  transform: scale(1.05);
}


/* =========================================================
   MAIN PRODUCT INFO
========================================================= */

.Herohome__main-info {
  display: flex;

  align-items: flex-end;

  justify-content: space-between;

  gap: 20px;

  padding:
    18px
    8px
    8px;
}

.Herohome__main-info span {
  display: block;

  margin-bottom: 5px;

  font-family: var(--mono);

  font-size: 8px;

  line-height: 1.2;

  text-transform: uppercase;

  letter-spacing: .1em;

  color: var(--faint);
}

.Herohome__main-info h3 {
  margin: 0;

  font-family: var(--display);

  font-size: 18px;

  font-weight: 600;

  line-height: 1.1;

  color: var(--ink);
}

.Herohome__main-info > strong {
  white-space: nowrap;

  font-family: var(--display);

  font-size: 18px;

  font-weight: 600;

  color: var(--brand);
}


/* =========================================================
   PRODUCT LINK
========================================================= */

.Herohome__product-link {
  display: flex;

  align-items: center;

  justify-content: space-between;

  margin:
    12px
    8px
    4px;

  padding-top: 13px;

  border-top: 1px solid var(--line);

  color: var(--ink);

  font-family: var(--body);

  font-size: 11px;

  font-weight: 700;

  text-decoration: none;

  transition: color .25s ease;
}

.Herohome__product-link > span:last-child {
  color: var(--brand);

  font-size: 18px;

  transition:
    transform .3s var(--ease);
}

.Herohome__product-link:hover {
  color: var(--brand);
}

.Herohome__product-link:hover > span:last-child {
  transform: translateX(5px);
}


/* =========================================================
   FLOATING MINI PRODUCT CARDS
========================================================= */

.Herohome__mini-card {
  position: absolute;

  width: 210px;

  padding: 10px;

  display: flex;

  align-items: center;

  gap: 11px;

  border: 1px solid var(--line);

  border-radius: 18px;

  background: rgba(255, 255, 255, .94);

  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);

  box-shadow:
    0 18px 45px rgba(18, 23, 27, .11);

  z-index: 6;

  transition:
    transform .35s var(--ease),
    box-shadow .35s var(--ease);
}

.Herohome__mini-card:hover {
  box-shadow:
    0 25px 55px rgba(18, 23, 27, .15);
}


/* MINI IMAGE */

.Herohome__mini-image {
  width: 62px;
  height: 62px;

  flex: 0 0 62px;

  overflow: hidden;

  border-radius: 12px;

  background: var(--wash);
}

.Herohome__mini-image img {
  width: 100%;
  height: 100%;

  display: block;

  object-fit: cover;

  transition:
    transform .45s var(--ease);
}

.Herohome__mini-card:hover
.Herohome__mini-image img {
  transform: scale(1.08);
}


/* MINI INFO */

.Herohome__mini-info {
  min-width: 0;

  display: flex;

  flex-direction: column;

  gap: 3px;
}

.Herohome__mini-info span {
  font-family: var(--mono);

  font-size: 7px;

  line-height: 1.2;

  letter-spacing: .08em;

  text-transform: uppercase;

  color: var(--brand);
}

.Herohome__mini-info strong {
  overflow: hidden;

  font-family: var(--display);

  font-size: 12px;

  font-weight: 600;

  line-height: 1.2;

  white-space: nowrap;

  text-overflow: ellipsis;

  color: var(--ink);
}

.Herohome__mini-info b {
  font-family: var(--body);

  font-size: 11px;

  font-weight: 700;

  color: var(--brand-ink);
}


/* =========================================================
   MINI CARD POSITIONS
========================================================= */

.Herohome__mini-card--one {
  left: 0;
  top: 85px;

  transform: rotate(-5deg);
}

.Herohome__mini-card--one:hover {
  transform:
    rotate(-2deg)
    translateY(-7px);
}


.Herohome__mini-card--two {
  right: -5px;
  top: 190px;

  transform: rotate(5deg);
}

.Herohome__mini-card--two:hover {
  transform:
    rotate(2deg)
    translateY(-7px);
}


.Herohome__mini-card--three {
  left: 12px;
  bottom: 68px;

  transform: rotate(-4deg);
}

.Herohome__mini-card--three:hover {
  transform:
    rotate(-1deg)
    translateY(-7px);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1050px) {

  .Herohome__wrap {
    grid-template-columns:
      minmax(0, 1fr)
      minmax(370px, .9fr);

    gap: 35px;
  }

  .Herohome__title {
    font-size: clamp(50px, 6.5vw, 72px);
  }

  .Herohome__mini-card {
    width: 185px;
  }

  .Herohome__mini-card--two {
    right: -20px;
  }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 760px) {

  .Herohome__wrap {
    width:
      calc(100% - 32px);

    min-height: auto;

    grid-template-columns: 1fr;

    gap: 55px;

    padding-block: 65px;
  }


  .Herohome__content {
    max-width: 680px;

    margin-inline: auto;

    text-align: center;
  }


  .Herohome__eyebrow {
    justify-content: center;
  }


  .Herohome__title {
    font-size:
      clamp(
        46px,
        13vw,
        68px
      );
  }


  .Herohome__text {
    margin-inline: auto;

    font-size: 15px;

    line-height: 1.7;
  }


  .Herohome__actions {
    justify-content: center;
  }


  .Herohome__stats {
    justify-content: center;

    margin-top: 42px;
  }


  .Herohome__showcase {
    min-height: 570px;

    width: 100%;
  }


  .Herohome__shape {
    width: 480px;
  }


  .Herohome__main-product {
    width: min(
      360px,
      70vw
    );
  }


  .Herohome__mini-card {
    width: 190px;
  }


  .Herohome__mini-card--one {
    left: 0;
    top: 65px;
  }


  .Herohome__mini-card--two {
    right: 0;
    top: 170px;
  }


  .Herohome__mini-card--three {
    left: 0;
    bottom: 40px;
  }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 520px) {

  .Herohome__wrap {
    width: calc(100% - 28px);

    gap: 45px;

    padding-block: 50px;
  }


  .Herohome__actions {
    flex-direction: column;

    width: 100%;
  }


  .Herohome__btn {
    width: 100%;
  }


  .Herohome__stats {
    gap: 18px;
  }


  .Herohome__stat strong {
    font-size: 15px;
  }


  .Herohome__stat span {
    font-size: 9px;
  }


  .Herohome__showcase {
    min-height: 500px;
  }


  .Herohome__shape {
    width: 350px;
  }


  .Herohome__main-product {
    width: 70vw;

    border-radius: 22px;

    padding: 9px;
  }


  .Herohome__product-image {
    border-radius: 16px;
  }


  .Herohome__product-tag {
    left: 20px;
    top: 20px;

    padding: 6px 9px;
  }


  .Herohome__main-info {
    padding-top: 14px;
  }


  .Herohome__main-info h3 {
    font-size: 15px;
  }


  .Herohome__main-info > strong {
    font-size: 15px;
  }


  .Herohome__mini-card {
    width: 155px;

    padding: 8px;

    border-radius: 15px;

    gap: 8px;
  }


  .Herohome__mini-image {
    width: 50px;
    height: 50px;

    flex-basis: 50px;

    border-radius: 10px;
  }


  .Herohome__mini-info strong {
    font-size: 10px;
  }


  .Herohome__mini-info b {
    font-size: 10px;
  }


  .Herohome__mini-card--one {
    left: -7px;
  }


  .Herohome__mini-card--two {
    right: -7px;
  }


  .Herohome__mini-card--three {
    left: -7px;

    bottom: 18px;
  }
}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

  .Herohome *,
  .Herohome *::before,
  .Herohome *::after {
    scroll-behavior: auto !important;

    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;

    transition-duration: .01ms !important;
  }
}