.sr-only {
  width: 1px;
  height: 1px;
  position: absolute;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.home-page {
  color: var(--black);
  background: var(--cream);
  font-weight: 500;
}

.home-topbar {
  width: 100%;
  position: absolute;
  z-index: 30;
  color: var(--white);
}

.home-nav {
  width: min(73.75rem, calc(100% - 3rem));
  min-height: 5.25rem;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.75rem;
}

.logo.home-brand {
  align-items: flex-end;
  color: var(--white);
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.8;
}

.logo.home-brand span:nth-child(1),
.logo.home-brand span:nth-child(5) {
  color: var(--yellow);
}

.logo.home-brand span:nth-child(2),
.logo.home-brand span:nth-child(3) {
  color: var(--white);
}

.logo.home-brand span:nth-child(4) {
  color: var(--red);
}

.logo.home-brand span:nth-child(5) {
  margin-left: 0.012em;
  transform: rotate(180deg) translateY(-0.08em);
}

.home-nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.home-nav-links a {
  text-decoration: none;
}

.home-nav-links a:hover,
.home-nav-links a:focus-visible {
  text-decoration: underline;
  text-underline-offset: 0.3rem;
}

.home-nav-cta,
.home-button {
  min-height: 3rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.25rem;
  border: 0;
  color: var(--black);
  background: var(--yellow);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 180ms ease, background-color 180ms ease;
}

.home-nav-cta:hover,
.home-nav-cta:focus-visible,
.home-button:hover,
.home-button:focus-visible {
  background: var(--white);
  transform: rotate(-1deg) scale(1.025);
}

.home-hero {
  min-height: 47.5rem;
  position: relative;
  display: grid;
  align-items: end;
  overflow: hidden;
  border: 0;
  color: var(--white);
  background: var(--blue);
}

.home-hero-image,
.home-hero-shade {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
}

.home-hero-image {
  object-fit: cover;
  object-position: center;
}

.home-hero-shade {
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.23) 55%, rgba(0, 0, 0, 0.03) 100%);
}

.home-hero::after {
  content: "";
  width: 14.375rem;
  height: 14.375rem;
  position: absolute;
  right: 7%;
  bottom: -4.375rem;
  background: var(--red);
  border-radius: 50%;
  mix-blend-mode: multiply;
}

.home-hero-inner {
  width: min(73.75rem, calc(100% - 3rem));
  position: relative;
  z-index: 2;
  margin-inline: auto;
  padding: 11.25rem 0 5rem;
}

.home-eyebrow {
  margin-bottom: 1.125rem;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.home-hero h1 {
  max-width: 65.625rem;
  margin-bottom: 1.375rem;
  overflow-wrap: normal;
  font-size: clamp(2.65rem, 9.4vw, 8.8rem);
  font-weight: 900;
  hyphens: none;
  letter-spacing: 0.005em;
  line-height: 0.82;
  text-transform: uppercase;
}

.home-hero h1 > span {
  display: block;
}

.home-hero-word {
  white-space: nowrap;
}

.home-turned {
  display: inline-block;
  color: var(--yellow);
  transform: rotate(180deg) translateY(-0.12em);
}

.home-hero-subtitle {
  max-width: 40.625rem;
  margin-bottom: 2.25rem;
  font-size: clamp(1.1rem, 2vw, 1.6rem);
  font-weight: 300;
  line-height: 1.42;
}

.home-button--light {
  background: var(--white);
}

.home-section {
  padding: 6.25rem 0;
}

.home-section-inner,
.home-claim-content,
.home-footer-inner {
  width: min(73.75rem, calc(100% - 3rem));
  margin-inline: auto;
}

.home-section-heading {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: end;
  gap: 2.5rem;
  margin-bottom: 3.25rem;
}

.home-section-heading h2,
.home-occasions-head h2 {
  max-width: 48.75rem;
  margin: 0;
  font-size: clamp(2.6rem, 6vw, 5.8rem);
  font-weight: 900;
  hyphens: none;
  letter-spacing: 0;
  line-height: 0.9;
  text-transform: uppercase;
}

.home-section-heading p {
  max-width: 31.25rem;
  margin: 0 0 0.3rem auto;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.65;
}

.home-flavours {
  background: var(--white);
}

.home-product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2.625rem 1.5rem;
}

.home-product-card {
  min-width: 0;
  display: block;
  text-decoration: none;
}

.home-product-photo {
  width: 100%;
  aspect-ratio: 1.3;
  display: block;
  overflow: hidden;
  background: var(--cream);
}

.home-product-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 350ms ease, filter 350ms ease;
}

.home-product-card:hover .home-product-photo img,
.home-product-card:focus-visible .home-product-photo img {
  filter: saturate(1.12);
  transform: scale(1.025) rotate(-0.6deg);
}

.home-product-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.875rem;
  padding-top: 1.125rem;
  color: var(--black);
}

.home-product-label small {
  display: block;
  margin-bottom: 0.375rem;
  color: var(--blue);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.home-product-label strong {
  display: block;
  font-size: clamp(1.25rem, 2vw, 1.8rem);
  font-weight: 900;
  letter-spacing: -0.045em;
  line-height: 0.95;
  text-transform: uppercase;
}

.home-arrow {
  width: 2.5rem;
  height: 2.5rem;
  flex: 0 0 2.5rem;
  display: grid;
  place-items: center;
  background: var(--yellow);
  border-radius: 50%;
  font-size: 1.5rem;
  transition: transform 250ms ease;
}

.home-product-card:hover .home-arrow,
.home-product-card:focus-visible .home-arrow {
  transform: rotate(-45deg);
}

.home-claim {
  position: relative;
  overflow: hidden;
  padding: 7.5rem 0;
  color: var(--cream);
  background: var(--blue);
}

.home-claim::before {
  content: "";
  width: 28.75rem;
  height: 28.75rem;
  position: absolute;
  top: -10.625rem;
  right: -5rem;
  background: var(--yellow);
  border-radius: 50%;
}

.home-claim::after {
  content: "A";
  position: absolute;
  right: 6vw;
  bottom: -1.1em;
  color: var(--red);
  font-size: min(44vw, 36.25rem);
  font-weight: 900;
  line-height: 1;
  opacity: 0.98;
  transform: rotate(180deg);
}

.home-claim-content {
  position: relative;
  z-index: 2;
}

.home-claim h2 {
  max-width: 56.25rem;
  margin-bottom: 2rem;
  font-size: clamp(3rem, 7vw, 7rem);
  font-weight: 900;
  hyphens: none;
  letter-spacing: 0;
  line-height: 0.88;
  text-transform: uppercase;
}

.home-claim-content > p:not(.home-eyebrow) {
  max-width: 40.625rem;
  margin-bottom: 2.375rem;
  font-size: clamp(1.05rem, 1.6vw, 1.35rem);
  font-weight: 300;
  line-height: 1.55;
}

.home-proofs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.home-proofs li {
  padding: 0.75rem 1.125rem;
  color: var(--black);
  background: var(--cream);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.home-occasions {
  background: var(--cream);
}

.home-occasions-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1.875rem;
  margin-bottom: 3.4rem;
}

.home-occasion-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: center;
  gap: 1.75rem;
}

.home-occasion {
  position: relative;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  isolation: isolate;
  overflow: hidden;
  padding: 1.875rem;
  color: var(--cream);
  text-decoration: none;
  transition: transform 200ms ease;
}

.home-occasion:nth-child(odd) {
  border-radius: 50%;
}

.home-occasion img,
.home-occasion > span {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
}

.home-occasion img {
  z-index: -2;
  object-fit: cover;
  transition: transform 350ms ease, filter 350ms ease;
}

.home-occasion > span {
  z-index: -1;
  background: linear-gradient(rgba(21, 69, 139, 0.48), rgba(21, 69, 139, 0.76));
}

.home-occasion:nth-child(2) > span {
  background: linear-gradient(rgba(222, 23, 15, 0.42), rgba(222, 23, 15, 0.78));
}

.home-occasion:nth-child(3) > span {
  background: linear-gradient(rgba(5, 5, 5, 0.22), rgba(5, 5, 5, 0.72));
}

.home-occasion:nth-child(4) > span {
  background: linear-gradient(rgba(32, 91, 175, 0.35), rgba(32, 91, 175, 0.76));
}

.home-occasion:hover,
.home-occasion:focus-visible {
  transform: translateY(-0.45rem) rotate(-1deg);
}

.home-occasion:hover img,
.home-occasion:focus-visible img {
  filter: saturate(1.1);
  transform: scale(1.035);
}

.home-occasion h3 {
  max-width: 11.875rem;
  position: relative;
  z-index: 2;
  margin: 0;
  font-size: clamp(1rem, 1.6vw, 1.45rem);
  font-weight: 900;
  hyphens: none;
  letter-spacing: -0.035em;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
}

.home-testimonials {
  padding: 4.875rem 0;
  color: var(--cream);
  background: var(--black);
}

.home-testimonial-wrap {
  width: min(60rem, calc(100% - 3rem));
  margin-inline: auto;
  text-align: center;
}

.home-stars {
  margin-bottom: 1.5rem;
  color: var(--yellow);
  font-size: 1.4rem;
  letter-spacing: 0.18em;
}

.home-quotes {
  min-height: 11.875rem;
  display: grid;
  place-items: center;
}

.home-quote {
  margin: 0;
}

.home-quote[hidden] {
  display: none;
}

.home-quote blockquote {
  margin: 0;
  font-size: clamp(1.7rem, 4vw, 3.6rem);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 1.14;
}

.home-quote figcaption {
  margin-top: 1.5rem;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.home-dots {
  display: flex;
  justify-content: center;
  gap: 0.625rem;
  margin-top: 2.125rem;
}

.home-dot {
  width: 0.8125rem;
  height: 0.8125rem;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
}

.home-dot.active {
  background: var(--yellow);
}

.home-footer {
  padding: 4.375rem 0 1.875rem;
  color: var(--black);
  background: var(--yellow);
}

.logo.home-footer-brand {
  display: inline-flex;
  margin-bottom: 3.75rem;
  color: var(--black);
  font-size: clamp(4.2rem, 15vw, 13rem);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.72;
  text-transform: uppercase;
}

.logo.home-footer-brand span:nth-child(1),
.logo.home-footer-brand span:nth-child(5) {
  color: var(--blue);
}

.logo.home-footer-brand span:nth-child(2) {
  color: var(--black);
}

.logo.home-footer-brand span:nth-child(3) {
  color: var(--cream);
}

.logo.home-footer-brand span:nth-child(4) {
  color: var(--red);
}

.logo.home-footer-brand span:nth-child(5) {
  margin-left: 0.012em;
  transform: rotate(180deg);
}

.home-footer-bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.875rem;
  padding-top: 1.875rem;
  border-top: 0;
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1.5;
  text-transform: uppercase;
}

.home-footer-bottom p {
  margin-bottom: 0;
}

.home-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.home-footer-links a {
  text-underline-offset: 0.25em;
}

.home-page :focus-visible {
  outline: 3px solid var(--black);
  outline-offset: 3px;
  box-shadow: 0 0 0 6px var(--white);
}

.home-page .home-hero :focus-visible,
.home-page .home-topbar :focus-visible,
.home-page .home-testimonials :focus-visible {
  outline-color: var(--yellow);
  box-shadow: 0 0 0 6px var(--black);
}

@media (max-width: 53.125rem) {
  .home-nav,
  .home-hero-inner,
  .home-section-inner,
  .home-claim-content,
  .home-footer-inner {
    width: min(100% - 1.75rem, 42.5rem);
  }

  .home-nav {
    min-height: 4.375rem;
  }

  .home-nav-links li:not(:last-child) {
    display: none;
  }

  .home-nav-cta {
    min-height: 2.625rem;
    padding: 0.65rem 0.8125rem;
    font-size: 0.65rem;
  }

  .home-hero {
    min-height: 43.125rem;
  }

  .home-hero-image {
    object-position: 58% center;
  }

  .home-hero-inner {
    padding-bottom: 3.375rem;
  }

  .home-section {
    padding: 4.75rem 0;
  }

  .home-section-heading {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .home-section-heading p {
    margin-left: 0;
  }

  .home-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-claim::before {
    width: 16.25rem;
    height: 16.25rem;
  }

  .home-claim::after {
    opacity: 0.45;
  }

  .home-occasion-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 32.5rem) {
  .home-hero {
    min-height: 40.625rem;
  }

  .home-hero h1 {
    font-size: clamp(2.45rem, 11.5vw, 4rem);
  }

  .home-section-heading h2,
  .home-occasions-head h2 {
    font-size: 2.75rem;
  }

  .home-occasions-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .home-product-grid {
    grid-template-columns: 1fr;
  }

  .home-occasion-grid {
    gap: 0.875rem;
  }

  .home-occasion {
    padding: 1.125rem;
  }

  .home-occasion h3 {
    font-size: 0.88rem;
  }

  .home-footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-page *,
  .home-page *::before,
  .home-page *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
