:root {
  --gold: #fdc106;
  --cream: #fdf2d5;
  --burgundy: #8f0016;
  --button: #730613;
  --text: #050505;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  background: var(--gold);
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
}

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

.page-shell {
  width: 100%;
  max-width: 1402px;
  margin: 0 auto;
  padding: 18px 24px 70px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 18px;
  min-height: 86px;
}

.brand__logo {
  width: 87px;
  height: 85px;
  object-fit: cover;
  border-radius: 50%;
  flex: 0 0 auto;
}

.brand__name {
  font-size: 54px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: -2.2px;
}

.featured-card {
  margin-top: 19px;
  background: var(--cream);
  border-radius: 22px;
  padding: 34px 36px 34px;
}

.section-title,
.categories-title {
  display: flex;
  align-items: center;
  color: var(--burgundy);
  font-weight: 800;
}

.section-title {
  gap: 18px;
  font-size: 30px;
  line-height: 1.1;
}

.section-title__icon {
  width: 43px;
  height: 43px;
  flex: 0 0 auto;
}

.featured-grid {
  display: grid;
  grid-template-columns: minmax(0, 840px) minmax(0, 1fr);
  gap: 38px;
  align-items: stretch;
  margin-top: 27px;
  height: 538px;
}

.featured-image-wrap {
  min-width: 0;
}

.featured-image {
  display: block;
  width: 100%;
  height: 538px;
  min-height: 538px;
  object-fit: cover;
  border-radius: 14px;
}

.featured-copy {
  display: flex;
  flex-direction: column;
  padding: 33px 0 8px 0;
  min-width: 0;
}

.featured-copy h1 {
  margin: 0;
  font-size: 58px;
  line-height: .98;
  font-weight: 800;
  letter-spacing: -2.2px;
}

.featured-copy p {
  margin: 34px 0 0;
  font-size: 21.5px;
  line-height: 1.92;
  font-weight: 400;
}

.product-button {
  margin-top: auto;
  min-height: 104px;
  border-radius: 18px;
  background: linear-gradient(180deg, #8a0017 0%, var(--button) 100%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 29px;
  font-weight: 800;
  transition: transform .15s ease, filter .15s ease;
}

.product-button:hover,
.product-button:focus-visible {
  filter: brightness(.96);
}

.product-button:active {
  transform: scale(.992);
}

.categories {
  margin-top: 31px;
}

.categories-title {
  gap: 24px;
  font-size: 29px;
  line-height: 1.1;
  margin-left: 18px;
}

.grid-mark {
  width: 33px;
  height: 33px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 5px;
  flex: 0 0 auto;
}

.grid-mark i {
  display: block;
  background: var(--burgundy);
  border-radius: 2px;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  margin-top: 27px;
}

.category-card {
  min-height: 165px;
  background: var(--cream);
  border-radius: 22px;
  display: flex;
  align-items: center;
  padding: 18px 30px 18px 45px;
  gap: 22px;
}

.category-card img {
  width: 118px;
  height: 118px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 50%;
  clip-path: circle(50% at 50% 50%);
  flex: 0 0 auto;
}

.category-card span {
  font-size: 24px;
  font-weight: 800;
  line-height: 1;
}

.mobile-category-break {
  display: none;
}

@media (max-width: 1180px) {
  .page-shell {
    padding-left: 18px;
    padding-right: 18px;
  }

  .brand__name {
    font-size: 46px;
  }

  .featured-card {
    padding: 28px;
  }

  .featured-grid {
    grid-template-columns: 1.7fr 1fr;
    gap: 28px;
    height: auto;
  }

  .featured-image {
    min-height: 430px;
  }

  .featured-copy {
    padding-top: 18px;
  }

  .featured-copy h1 {
    font-size: 48px;
  }

  .featured-copy p {
    margin-top: 24px;
    font-size: 18px;
    line-height: 1.75;
  }

  .product-button {
    min-height: 86px;
    font-size: 25px;
  }

  .category-card {
    padding-left: 28px;
    gap: 16px;
  }

  .category-card img {
    width: 92px;
    height: 92px;
  }

  .category-card span {
    font-size: 21px;
  }

}

/* Tablet */
@media (max-width: 900px) {
  .page-shell {
    padding: 16px 16px 48px;
  }

  .brand {
    gap: 14px;
  }

  .brand__logo {
    width: 70px;
    height: 68px;
  }

  .brand__name {
    font-size: 42px;
    letter-spacing: -1.6px;
  }

  .featured-card {
    margin-top: 14px;
    padding: 28px;
    border-radius: 20px;
  }

  .section-title {
    font-size: 25px;
    gap: 14px;
  }

  .section-title__icon {
    width: 35px;
    height: 35px;
  }

  .featured-grid {
    grid-template-columns: 1fr;
    gap: 0;
    margin-top: 24px;
    height: auto;
  }

  .featured-image {
    min-height: 0;
    aspect-ratio: 840 / 538;
    height: auto;
  }

  .featured-copy {
    padding: 28px 0 0;
  }

  .featured-copy h1 {
    font-size: 46px;
  }

  .featured-copy p {
    margin-top: 18px;
    font-size: 19px;
    line-height: 1.65;
  }

  .desktop-break {
    display: none;
  }

  .product-button {
    margin-top: 28px;
    min-height: 82px;
    width: 100%;
  }

  .categories {
    margin-top: 28px;
  }

  .categories-title {
    margin-left: 4px;
    font-size: 25px;
    gap: 16px;
  }

  .grid-mark {
    width: 28px;
    height: 28px;
    gap: 4px;
  }

  .category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin-top: 22px;
  }

  .category-card {
    min-height: 138px;
    padding: 16px 28px;
    border-radius: 18px;
  }

  .category-card img {
    width: 95px;
    height: 95px;
  }

  .category-card span {
    font-size: 22px;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .page-shell {
    padding: 12px 10px 34px;
  }

  .brand {
    min-height: 62px;
    gap: 12px;
    padding-left: 4px;
  }

  .brand__logo {
    width: 58px;
    height: 57px;
  }

  .brand__name {
    font-size: 34px;
    letter-spacing: -1.2px;
  }

  .featured-card {
    margin-top: 12px;
    padding: 20px 16px 18px;
    border-radius: 18px;
  }

  .section-title {
    font-size: 20px;
    gap: 10px;
  }

  .section-title__icon {
    width: 29px;
    height: 29px;
  }

  .featured-grid {
    margin-top: 20px;
  }

  .featured-image {
    border-radius: 12px;
  }

  .featured-copy {
    padding-top: 23px;
  }

  .featured-copy h1 {
    font-size: 39px;
    letter-spacing: -1.4px;
  }

  .featured-copy p {
    margin-top: 16px;
    font-size: 17px;
    line-height: 1.62;
  }

  .product-button {
    min-height: 68px;
    margin-top: 22px;
    border-radius: 14px;
    font-size: 22px;
  }

  .categories {
    margin-top: 24px;
  }

  .categories-title {
    font-size: 21px;
    gap: 12px;
  }

  .grid-mark {
    width: 24px;
    height: 24px;
  }

  .category-grid {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 18px;
  }

  .category-card {
    min-height: 116px;
    padding: 12px 22px;
    gap: 20px;
    border-radius: 17px;
    justify-content: center;
  }

  .category-card img {
    width: 70px;
    height: 70px;
  }

  .category-card span {
    font-size: 21px;
    text-align: center;
  }

  .mobile-category-break {
    display: block;
  }

  .category-card > * {
    transform: translateX(-10px);
  }

  .category-card:nth-child(2) > * {
    transform: translateX(-20px);
  }

  .category-card:nth-child(4) > * {
    transform: translateX(-20px);
  }
}

@media (max-width: 380px) {
  .brand__name {
    font-size: 30px;
  }

  .section-title,
  .categories-title {
    font-size: 18px;
  }

  .featured-copy h1 {
    font-size: 34px;
  }

  .featured-copy p {
    font-size: 16px;
  }
}
