:root {
  --red: #a30006;
  --yellow: #fff200;
  --charcoal: #121212;
  --muted: #6f7075;
  --line: #ececec;
  --cream: #f8f7f4;
  --font-body: "Plus Jakarta Sans", Arial, sans-serif;
  --font-logo: "Chakra Petch", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #fff;
  color: var(--charcoal);
  font-family: var(--font-body);
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.scroll-progress {
  position: fixed;
  inset: 0 auto auto 0;
  z-index: 80;
  width: 0;
  height: 4px;
  background: var(--yellow);
  transform-origin: left;
}

.brand-header {
  position: relative;
  display: grid;
  min-height: 220px;
  place-items: center;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: #fdfdfd;
}

.brand-header__texture {
  position: absolute;
  inset: 0;
  opacity: .05;
  background:
    linear-gradient(#fff8, #fff),
    repeating-linear-gradient(45deg, #000 0 1px, transparent 1px 18px);
}

.brand-header__content {
  position: relative;
  display: grid;
  place-items: center;
  gap: 12px;
  padding: 38px 24px;
  text-align: center;
}

.brand-header h1,
.footer__logo {
  margin: 0;
  color: var(--red);
  font-family: var(--font-logo);
  font-style: italic;
  font-weight: 700;
  letter-spacing: 0;
}

.brand-header h1 {
  position: relative;
  font-size: clamp(4rem, 13vw, 9rem);
  line-height: .86;
  animation: brand-in 1s ease both;
}

.brand-header__departments,
.brand-header__address {
  margin: 0;
  animation: brand-in 1s ease .12s both;
}

.brand-header__departments {
  color: var(--charcoal);
  font-size: clamp(1rem, 2vw, 1.45rem);
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.brand-header__address {
  color: var(--red);
  font-size: clamp(.88rem, 1.5vw, 1.05rem);
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

@keyframes brand-in {
  from {
    opacity: 0;
    transform: translateY(28px);
    filter: blur(12px);
  }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 70;
  background: rgb(163 0 6 / .96);
  color: #fff;
  box-shadow: 0 1px 0 rgb(255 255 255 / .1);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1280px;
  margin: 0 auto;
  padding: 15px 24px;
  transition: padding .25s ease;
}

.site-header.is-compact .nav {
  padding-block: 14px;
}

.nav__logo {
  position: relative;
  color: #fff;
  font-family: var(--font-logo);
  font-size: clamp(2rem, 4vw, 2.6rem);
  font-style: italic;
  font-weight: 700;
  letter-spacing: 0;
  line-height: .9;
}

.store-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  min-height: 38px;
  padding: 8px 24px;
  border-bottom: 1px solid var(--line);
  background: #fff;
  color: var(--charcoal);
  text-align: center;
}

.store-strip span,
.store-strip strong {
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .16em;
  line-height: 1.35;
  text-transform: uppercase;
}

.store-strip strong {
  color: var(--red);
  letter-spacing: .14em;
}

.nav__links {
  display: flex;
  gap: 48px;
  align-items: center;
  margin-left: auto;
}

.nav__links a,
.mobile-menu a,
.footer nav a {
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.nav__links a {
  border-bottom: 2px solid transparent;
  padding-bottom: 4px;
  transition: color .2s ease, border-color .2s ease;
}

.nav__links a:hover {
  border-color: var(--yellow);
  color: var(--yellow);
}

.nav__toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgb(255 255 255 / .2);
  background: transparent;
  padding: 10px;
}

.nav__toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: #fff;
}

.mobile-menu {
  display: none;
}

.hero {
  padding: 32px 24px 88px;
}

.hero__frame {
  position: relative;
  max-width: 1484px;
  min-height: 570px;
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid #f1f1f1;
  box-shadow: 0 26px 70px rgb(18 18 18 / .16);
  background: var(--charcoal);
}

.hero__slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: stretch;
  background:
    linear-gradient(90deg, rgb(95 0 5 / .96) 0%, rgb(95 0 5 / .78) 38%, rgb(95 0 5 / .18) 66%, rgb(18 18 18 / .2) 100%),
    var(--hero-bg) center / cover no-repeat;
  opacity: 0;
  pointer-events: none;
  transform: scale(1.02);
  transition: opacity .65s ease, transform 1s ease;
}

.hero__slide.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: scale(1);
}

.hero__content {
  display: flex;
  width: min(54%, 680px);
  flex-direction: column;
  justify-content: center;
  padding: 62px 72px 122px;
  color: #fff;
}

.eyebrow,
.section__heading p,
.trend-card p,
.product-card p,
.review-grid article > p:last-child,
.map-card__label span,
.action small,
.contact__note,
.footer__bottom p {
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .22em;
  text-transform: uppercase;
}

.eyebrow {
  color: var(--yellow);
  margin: 0 0 20px;
}

.hero h2,
.section__heading h2,
.inline-heading h2 {
  margin: 0;
  font-weight: 800;
  letter-spacing: 0;
  line-height: .96;
  text-transform: uppercase;
}

.hero h2 {
  max-width: 670px;
  font-size: clamp(3.25rem, 4.35vw, 4.35rem);
  line-height: 1;
}

.hero__copy {
  max-width: 560px;
  margin: 22px 0 30px;
  color: rgb(255 255 255 / .76);
  font-size: 1.08rem;
  font-weight: 600;
  line-height: 1.55;
}

.button {
  align-items: center;
  align-self: flex-start;
  display: inline-flex;
  gap: 12px;
  min-height: 54px;
  padding: 0 28px;
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}

.button:hover,
.action:hover,
.product-card:hover,
.trend-card:hover,
.review-grid article:hover {
  transform: translateY(-4px);
}

.button--light {
  background: #fff;
  color: var(--red);
}

.button--red {
  background: var(--red);
  color: #fff;
}

.button--light:hover {
  background: var(--yellow);
  color: var(--charcoal);
}

.button--red:hover,
.action--phone:hover {
  background: var(--charcoal);
}

.hero__controls {
  position: absolute;
  right: 36px;
  bottom: 36px;
  z-index: 5;
  display: flex;
  gap: 14px;
}

.hero__controls button {
  width: 52px;
  height: 52px;
  border: 1px solid rgb(255 255 255 / .16);
  background: var(--charcoal);
  color: #fff;
  cursor: pointer;
  font-size: 2rem;
  line-height: 1;
}

.hero__controls button:hover {
  background: var(--red);
}

.hero__dots {
  position: absolute;
  bottom: 44px;
  left: 40px;
  z-index: 5;
  display: flex;
  gap: 8px;
}

.hero__dots button {
  width: 18px;
  height: 6px;
  border: 0;
  background: rgb(255 255 255 / .4);
  cursor: pointer;
  transition: width .25s ease, background .25s ease;
}

.hero__dots button.is-active {
  width: 48px;
  background: #fff;
}

.section {
  padding: 96px 24px;
}

.section__heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 820px;
  margin: 0 auto 64px;
  text-align: center;
}

.section__heading span,
.inline-heading span {
  display: block;
  width: 54px;
  height: 6px;
  margin-bottom: 24px;
  background: var(--red);
}

.section__heading h2 {
  font-size: clamp(2.4rem, 5vw, 4.2rem);
}

.section__heading p {
  margin: 18px 0 0;
  color: #a0a0a7;
}

.trend-grid,
.product-grid,
.review-grid {
  display: grid;
  max-width: 1280px;
  margin: 0 auto;
  gap: 32px;
}

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

.trend-card,
.product-card,
.review-grid article {
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.trend-card img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center top;
  border: 1px solid #f0f0f0;
  background: #f8f8f8;
  box-shadow: 0 12px 28px rgb(18 18 18 / .08);
}

.pattern {
  position: relative;
  display: grid;
  aspect-ratio: 3 / 4;
  place-items: center;
  overflow: hidden;
  border: 1px solid #f0f0f0;
  box-shadow: 0 1px 8px rgb(18 18 18 / .04);
}

.pattern::before,
.pattern::after {
  content: "";
  position: absolute;
  width: 150%;
  height: 1px;
  background: rgb(255 255 255 / .12);
}

.pattern::before {
  transform: rotate(45deg);
}

.pattern::after {
  transform: rotate(-45deg);
}

.pattern--silk {
  background: linear-gradient(135deg, var(--red), #7f0005 55%, #bd1318);
}

.pattern--diagonal {
  background:
    repeating-linear-gradient(135deg, rgb(255 255 255 / .14) 0 12px, transparent 12px 26px),
    linear-gradient(135deg, var(--red), #f3e8c9);
}

.pattern strong {
  position: relative;
  z-index: 2;
  color: rgb(255 255 255 / .28);
  font-family: var(--font-logo);
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  font-style: italic;
}

.trend-card p {
  margin: 22px 0 8px;
  color: var(--red);
  text-align: center;
}

.trend-card h3,
.product-card h3,
.promise-band h3,
.review-grid h3 {
  margin: 0;
  font-size: 1.18rem;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.1;
  text-align: center;
  text-transform: uppercase;
}

.promise-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 40px;
  padding: 80px max(24px, calc((100vw - 1280px) / 2));
  border-block: 1px solid var(--line);
  background: #f8f7f4;
}

.promise-band article {
  display: grid;
  justify-items: center;
  text-align: center;
}

.promise-band span {
  display: grid;
  width: 72px;
  height: 72px;
  place-items: center;
  margin-bottom: 24px;
  border-radius: 50%;
  background: #fff;
  color: var(--red);
  box-shadow: 0 2px 16px rgb(18 18 18 / .05);
  font-size: 1.6rem;
}

.promise-band p {
  max-width: 320px;
  margin: 14px 0 0;
  color: #696970;
  font-size: .92rem;
  font-weight: 600;
  line-height: 1.65;
}

.catalog {
  padding-top: 120px;
}

.product-grid {
  row-gap: 72px;
  column-gap: 48px;
}

.product-card img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: contain;
  object-position: center bottom;
  background: linear-gradient(180deg, #fff 0%, #f8f8f8 100%);
}

.product-card h3 {
  margin-top: 22px;
}

.product-card p {
  margin: 10px 0 0;
  color: #98989f;
  font-style: italic;
  text-align: center;
  letter-spacing: 0;
  text-transform: none;
}

.testimonials {
  background: #fff;
}

.review-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.review-grid article {
  display: flex;
  min-height: 320px;
  flex-direction: column;
  align-items: flex-start;
  border: 1px solid #f0f0f0;
  background: var(--cream);
  padding: 40px;
}

.stars,
.feature-kicker {
  margin: 0 0 24px;
  color: var(--red);
  letter-spacing: .12em;
}

.feature-kicker {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid rgb(163 0 6 / .16);
  background: #fff;
  font-size: .78rem;
  font-weight: 800;
}

.review-grid blockquote {
  margin: 0 0 30px;
  font-size: 1.05rem;
  font-style: italic;
  font-weight: 600;
  line-height: 1.65;
}

.feature-copy {
  margin: 20px 0 32px;
  color: #55565c;
  font-size: 1.02rem;
  font-weight: 600;
  line-height: 1.7;
}

.review-grid h3 {
  margin-top: auto;
  font-size: 1.18rem;
  text-align: left;
}

.review-grid article > p:last-child {
  margin: 8px 0 0;
  color: var(--red);
}

.contact {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 64px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 96px 24px;
  border-top: 1px solid var(--line);
}

.inline-heading {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 32px;
}

.inline-heading span {
  flex: 0 0 50px;
  margin: 0;
}

.inline-heading h2 {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
}

.map-card {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #f4f4f4;
}

.map-card iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(.8);
  transition: filter .3s ease;
}

.map-card:hover iframe {
  filter: grayscale(0);
}

.map-card__label {
  position: absolute;
  inset: auto 0 0 0;
  display: grid;
  gap: 7px;
  padding: 22px;
  background: var(--charcoal);
  color: #fff;
}

.map-card__label strong {
  font-size: .86rem;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.map-card__label span {
  color: rgb(255 255 255 / .58);
}

.map-card__open {
  width: max-content;
  color: var(--gold);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.map-card__open:hover {
  color: #fff;
}

.contact__actions {
  display: flex;
  flex-direction: column;
}

.action {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  padding: 30px;
  color: #fff;
  transition: background .2s ease, transform .2s ease;
}

.action--whatsapp {
  background: #25d366;
}

.action--whatsapp:hover {
  background: #128c7e;
}

.action--phone {
  background: var(--red);
}

.action--phone:hover,
.action--map {
  background: var(--charcoal);
}

.action--map:hover {
  background: #2b2b2b;
}

.action strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.55rem;
  font-weight: 800;
  text-transform: uppercase;
}

.action small {
  color: rgb(255 255 255 / .82);
}

.action b {
  display: grid;
  width: 64px;
  height: 64px;
  place-items: center;
  border-radius: 50%;
  background: rgb(255 255 255 / .18);
  font-size: 2rem;
}

.phone-icon {
  width: 1em;
  height: 1em;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.25;
}

.contact__note {
  margin: 10px 0 0;
  color: #96969d;
  letter-spacing: .04em;
}

.footer {
  padding: 60px 24px 36px;
  border-top: 1px solid var(--line);
}

.footer__top,
.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1280px;
  margin: 0 auto;
  gap: 32px;
}

.footer__logo {
  font-size: 2.1rem;
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: 22px;
}

.footer__brand-meta {
  display: grid;
  gap: 6px;
  padding-left: 22px;
  border-left: 1px solid var(--line);
}

.footer__brand-meta span,
.footer__brand-meta strong {
  color: var(--charcoal);
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .16em;
  line-height: 1.35;
  text-transform: uppercase;
  white-space: nowrap;
}

.footer__brand-meta strong {
  color: var(--red);
  letter-spacing: .14em;
}

.footer nav,
.footer__socials {
  display: flex;
  gap: 28px;
  align-items: center;
}

.footer nav a:hover {
  color: var(--red);
}

.footer__socials a {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgb(18 18 18 / .12);
  font-weight: 800;
  transition: background .2s ease, color .2s ease;
}

.footer__socials a:hover {
  background: var(--red);
  color: #fff;
}

.footer__bottom {
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  color: #a0a0a7;
}

.whatsapp-float {
  position: fixed;
  right: 32px;
  bottom: 32px;
  z-index: 75;
  display: grid;
  width: 66px;
  height: 66px;
  place-items: center;
  border: 1px solid rgb(255 255 255 / .35);
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  box-shadow: 0 18px 42px rgb(18 18 18 / .24);
  font-size: 1.95rem;
}

.whatsapp-float span {
  position: absolute;
  right: calc(100% + 16px);
  width: max-content;
  max-width: 220px;
  padding: 13px 18px;
  background: var(--charcoal);
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: .18em;
  opacity: 0;
  pointer-events: none;
  text-transform: uppercase;
  transform: translateX(16px);
  transition: opacity .2s ease, transform .2s ease;
}

.whatsapp-float:hover span {
  opacity: 1;
  transform: translateX(0);
}

@media (max-width: 980px) {
  .hero__slide {
    background:
      linear-gradient(90deg, rgb(95 0 5 / .96) 0%, rgb(95 0 5 / .82) 52%, rgb(95 0 5 / .35) 100%),
      var(--hero-bg) center / cover no-repeat;
  }

  .hero__content {
    width: min(78%, 680px);
    padding: 62px 54px 122px;
  }

  .hero h2 {
    font-size: 3.75rem;
  }

  .trend-grid,
  .product-grid,
  .review-grid,
  .promise-band,
  .contact {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .promise-band article:last-child,
  .contact {
    grid-column: 1 / -1;
  }
}

@media (max-width: 720px) {
  .brand-header {
    min-height: 175px;
  }

  .nav {
    padding: 14px 18px;
  }

  .store-strip {
    flex-direction: column;
    gap: 3px;
    min-height: auto;
    padding: 8px 18px;
  }

  .store-strip span,
  .store-strip strong {
    font-size: .56rem;
    letter-spacing: .13em;
  }

  .nav__toggle {
    display: block;
  }

  .nav__links {
    display: none;
  }

  .mobile-menu.is-open {
    display: grid;
    gap: 28px;
    padding: 8px 24px 28px;
    background: var(--red);
  }

  .mobile-menu a {
    color: #fff;
    font-size: 1.6rem;
    letter-spacing: 0;
  }

  .hero {
    padding: 32px 16px 48px;
  }

  .hero__frame {
    min-height: 620px;
  }

  .hero__content {
    justify-content: flex-start;
    width: 100%;
    padding: 46px 28px 124px;
  }

  .hero h2 {
    font-size: 2.85rem;
  }

  .hero__copy {
    max-width: 420px;
    font-size: 1rem;
  }

  .hero__controls {
    right: 24px;
    bottom: 28px;
  }

  .hero__dots {
    left: 28px;
    bottom: 44px;
  }

  .section,
  .catalog,
  .contact {
    padding: 72px 18px;
  }

  .trend-grid,
  .product-grid,
  .review-grid,
  .promise-band,
  .contact {
    grid-template-columns: 1fr;
  }

  .promise-band {
    padding-inline: 18px;
  }

  .inline-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }

  .action {
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
  }

  .footer__top,
  .footer__bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer__brand {
    flex-direction: column;
    gap: 14px;
  }

  .footer__brand-meta {
    padding-left: 0;
    border-left: 0;
  }

  .footer__brand-meta span,
  .footer__brand-meta strong {
    white-space: normal;
  }

  .footer nav {
    flex-wrap: wrap;
    justify-content: center;
  }

  .whatsapp-float {
    right: 18px;
    bottom: 18px;
  }

  .whatsapp-float span {
    display: none;
  }
}
