.home-page {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding-bottom: 85px;
}

.hero {
  min-height: 590px;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  background: #f5f2eb;
  overflow: hidden;
}

.hero-content {
  padding: 70px 45px 65px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #fff;
}

.hero-eyebrow {
  margin: 0 0 23px;
  color: #8e9197;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.19em;
}

.hero-content h1 {
  margin: 0 0 25px;
  color: #1f2023;
  font-size: clamp(55px, 5.8vw, 76px);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.hero-content h1 span {
  color: #92959c;
}

.hero-description {
  max-width: 420px;
  margin: 0 0 31px;
  color: #777a80;
  font-size: 13px;
  line-height: 1.9;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 26px;
}

.hero-primary-btn {
  height: 44px;
  padding: 0 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  background: #4e5566;
  border-radius: 6px;
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  text-decoration: none;
  transition: 0.2s ease;
}

.hero-primary-btn:hover {
  background: #333;
}

.hero-primary-btn i {
  font-size: 9px;
  transition: transform 0.2s ease;
}

.hero-primary-btn:hover i {
  transform: translateX(3px);
}

.hero-story-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #55585e;
  font-size: 12px;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s ease;
}

.hero-story-link i {
  font-size: 8px;
  transition: transform 0.2s ease;
}

.hero-story-link:hover {
  color: #222;
}

.hero-story-link:hover i {
  transform: translateX(3px);
}

.hero-visual {
  position: relative;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #f5f2eb;
}

.hero-visual img {
  width: min(100%, 620px);
  height: auto;
  display: block;
  object-fit: contain;
}

.brand-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid #e9e9e9;
  border-bottom: 1px solid #e9e9e9;
}

.brand-point {
  min-height: 88px;
  padding: 20px 30px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.brand-point + .brand-point {
  border-left: 1px solid #e9e9e9;
}

.brand-point > span {
  color: #b0b2b6;
  font-size: 9px;
  font-weight: 600;
}

.brand-point strong {
  display: block;
  margin-bottom: 4px;
  color: #3c3e43;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.12em;
}

.brand-point p {
  margin: 0;
  color: #929499;
  font-size: 10px;
}

.category-section {
  padding: 90px 40px 0;
}

.section-heading {
  margin-bottom: 28px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
}

.section-eyebrow {
  margin: 0 0 7px;
  color: #999ca2;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.18em;
}

.section-heading h2 {
  margin: 0;
  color: #202124;
  font-size: 28px;
  font-weight: 550;
  letter-spacing: -0.035em;
}

.view-all-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #777a80;
  font-size: 11px;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s ease;
}

.view-all-link i {
  font-size: 8px;
  transition: transform 0.2s ease;
}

.view-all-link:hover {
  color: #222;
}

.view-all-link:hover i {
  transform: translateX(3px);
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.category-card {
  min-width: 0;
  color: inherit;
  text-decoration: none;
}

.category-image {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #f3f0e9;
  border: 1px solid #ece9e3;
  border-radius: 14px;
}

.category-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  transition: transform 0.45s ease;
}

.category-card:hover .category-image img {
  transform: scale(1.025);
}

.category-arrow {
  position: absolute;
  right: 17px;
  bottom: 17px;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  color: #4e5566;
  font-size: 9px;
  backdrop-filter: blur(7px);
  transition: 0.2s ease;
}

.category-card:hover .category-arrow {
  background: #4e5566;
  color: #fff;
  transform: translateX(2px);
}

.category-info {
  padding: 16px 3px 0;
}

.category-info > span {
  display: block;
  margin-bottom: 6px;
  color: #9a9ca1;
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.15em;
}

.category-info > div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 15px;
}

.category-info h3 {
  margin: 0;
  color: #292b2f;
  font-size: 17px;
  font-weight: 550;
  letter-spacing: -0.025em;
}

.category-info p {
  margin: 0;
  color: #96989d;
  font-size: 10px;
}

.collection-link-wrap {
  padding-top: 38px;
  text-align: center;
}

.collection-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding-bottom: 5px;
  border-bottom: 1px solid #a9abb0;
  color: #3e4045;
  font-size: 11px;
  font-weight: 500;
  text-decoration: none;
}

.collection-link i {
  font-size: 8px;
  transition: transform 0.2s ease;
}

.collection-link:hover i {
  transform: translateX(3px);
}

.brand-statement {
  margin: 105px 40px 0;
  padding: 90px 30px;
  background: #f5f5f3;
  border-radius: 16px;
  text-align: center;
}

.brand-statement-eyebrow {
  margin: 0 0 22px;
  color: #999ca2;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.2em;
}

.brand-statement h2 {
  margin: 0 auto 25px;
  color: #242529;
  font-size: 43px;
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -0.045em;
}

.brand-statement h2 span {
  color: #92959b;
}

.brand-statement-description {
  max-width: 580px;
  margin: 0 auto 27px;
  color: #777a80;
  font-size: 13px;
  line-height: 1.9;
}

.brand-story-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #34363a;
  font-size: 11px;
  font-weight: 600;
  text-decoration: none;
}

.brand-story-link i {
  font-size: 8px;
  transition: transform 0.2s ease;
}

.brand-story-link:hover i {
  transform: translateX(3px);
}

.features-section {
  margin: 85px 40px 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid #e8e8e8;
  border-bottom: 1px solid #e8e8e8;
}

.feature-item {
  min-height: 175px;
  padding: 34px 30px;
  display: flex;
  align-items: flex-start;
  gap: 17px;
}

.feature-item + .feature-item {
  border-left: 1px solid #e8e8e8;
}

.feature-icon {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f4f4f3;
  border-radius: 9px;
  color: #4e5566;
  font-size: 13px;
}

.feature-item h3 {
  margin: 1px 0 7px;
  color: #292b2f;
  font-size: 13px;
  font-weight: 600;
}

.feature-item p {
  max-width: 270px;
  margin: 0;
  color: #85878d;
  font-size: 11px;
  line-height: 1.75;
}

@media (max-width: 1000px) {
  .hero {
    min-height: 520px;
    grid-template-columns: 1fr 1fr;
  }

  .hero-content {
    padding: 55px 35px;
  }

  .hero-content h1 {
    font-size: 55px;
  }

  .category-section {
    padding-left: 30px;
    padding-right: 30px;
  }
}

@media (max-width: 800px) {
  .home-page {
    padding-bottom: 60px;
  }

  .hero {
    display: flex;
    flex-direction: column;
    min-height: auto;
  }

  .hero-content {
    padding: 60px 25px 50px;
  }

  .hero-content h1 {
    font-size: 57px;
  }

  .hero-visual {
    padding: 0 25px 35px;
  }

  .hero-visual img {
    width: min(100%, 600px);
  }

  .brand-points {
    grid-template-columns: 1fr;
  }

  .brand-point {
    min-height: 72px;
  }

  .brand-point + .brand-point {
    border-left: none;
    border-top: 1px solid #e9e9e9;
  }

  .category-section {
    padding: 70px 20px 0;
  }

  .category-grid {
    grid-template-columns: 1fr 1fr;
  }

  .category-card:first-child {
    grid-column: 1 / -1;
  }

  .category-card:first-child .category-image {
    aspect-ratio: 1.5 / 1;
  }

  .brand-statement {
    margin: 75px 20px 0;
    padding: 65px 25px;
  }

  .brand-statement h2 {
    font-size: 36px;
  }

  .features-section {
    margin: 65px 20px 0;
    grid-template-columns: 1fr;
  }

  .feature-item {
    min-height: auto;
  }

  .feature-item + .feature-item {
    border-left: none;
    border-top: 1px solid #e8e8e8;
  }
}

@media (max-width: 520px) {
  .hero-content {
    padding: 48px 20px 40px;
  }

  .hero-content h1 {
    font-size: 44px;
  }

  .hero-description {
    font-size: 12px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 17px;
  }

  .hero-visual {
    padding: 0 15px 25px;
  }

  .category-grid {
    grid-template-columns: 1fr;
  }

  .category-card:first-child {
    grid-column: auto;
  }

  .category-card:first-child .category-image,
  .category-image {
    aspect-ratio: 1 / 1;
  }

  .category-info > div {
    display: block;
  }

  .category-info p {
    margin-top: 4px;
  }

  .section-heading h2 {
    font-size: 24px;
  }

  .brand-statement {
    padding: 55px 20px;
  }

  .brand-statement h2 {
    font-size: 30px;
  }

  .feature-item {
    padding: 27px 20px;
  }
}