* {
  box-sizing: border-box;
}

:root {
  --black: #121416;
  --black2: #191c1f;
  --gold: #c7a24b;
  --text: #111;
  --muted: #4f4f4f;
  --line: #e5e5e5;
  --shadow: 0 8px 24px rgba(0,0,0,.075);
  --radius: 14px;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #ffffff;
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
}

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

.top-header {
  background: linear-gradient(180deg, var(--black), var(--black2));
  color: #fff;
  border-bottom: 1px solid #25292e;
}

.header-inner {
  width: min(100%, 1536px);
  min-height: 120px;
  margin: 0 auto;
  padding: 11px 62px;
  display: grid;
  grid-template-columns: 360px 1fr auto;
  align-items: center;
  gap: 34px;
}

.brand-block {
  display: flex;
  align-items: center;
  gap: 15px;
}

.brand-logo {
  width: 118px;
  height: 92px;
  object-fit: contain;
  display: block;
}

.brand-copy {
  display: grid;
  gap: 3px;
  min-width: 0;
}

.brand-name {
  font-size: 30px;
  line-height: .95;
  font-weight: 900;
  letter-spacing: -0.06em;
}

.brand-tagline {
  color: var(--gold);
  font-size: 18px;
  line-height: 1.1;
  font-weight: 900;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(30px, 4.25vw, 64px);
  white-space: nowrap;
  font-size: 17px;
  font-weight: 900;
}

.nav-links a {
  opacity: .96;
}

.nav-links a:hover {
  color: var(--gold);
}

.business-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: #fff;
  color: #111;
  border: 1px solid rgba(255,255,255,.88);
  border-radius: 999px;
  padding: 16px 25px;
  font-size: 17px;
  line-height: 1;
  font-weight: 900;
  white-space: nowrap;
  box-shadow: 0 5px 18px rgba(0,0,0,.18);
}

.mail-icon {
  font-size: 18px;
  transform: translateY(-1px);
}

main {
  width: min(100%, 1536px);
  margin: 0 auto;
}

.shop-section {
  padding: 48px 62px 34px;
}

.section-head {
  margin-bottom: 22px;
}

h1 {
  margin: 0 0 9px;
  font-size: 42px;
  line-height: 1;
  letter-spacing: -0.065em;
  font-weight: 900;
}

.section-head p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.4;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.card {
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: transform .16s ease, box-shadow .16s ease;
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(0,0,0,.12);
}

.card img {
  display: block;
  width: 100%;
  height: 218px;
  object-fit: cover;
  border-bottom: 1px solid var(--line);
}

.card-copy {
  padding: 18px 18px 24px;
}

.card h2 {
  margin: 0 0 10px;
  font-size: 23px;
  line-height: 1;
  letter-spacing: -0.045em;
  font-weight: 900;
}

.card p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.25;
}

.creator-note {
  margin: 45px auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  color: #626262;
  font-size: 18px;
  font-weight: 800;
}

.creator-note p {
  margin: 0;
}

.tag-icon {
  font-size: 25px;
  transform: rotate(45deg);
  color: #5f5f5f;
}

@media (max-width: 1120px) {
  .header-inner {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 14px 24px 21px;
  }

  .brand-logo {
    width: 96px;
    height: 76px;
  }

  .nav-links {
    justify-content: flex-start;
    overflow-x: auto;
    gap: 24px;
    padding-bottom: 4px;
  }

  .business-btn {
    width: fit-content;
  }

  .shop-section {
    padding: 36px 24px 32px;
  }

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

@media (max-width: 680px) {
  .brand-block {
    gap: 12px;
  }

  .brand-logo {
    width: 78px;
    height: 62px;
  }

  .brand-name {
    font-size: 23px;
  }

  .brand-tagline {
    font-size: 14px;
  }

  h1 {
    font-size: 34px;
  }

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

  .card img {
    height: 190px;
  }

  .business-btn {
    padding: 13px 18px;
    font-size: 15px;
  }
}
