:root {
  --bg: #f5eddf;
  --text: #2f241c;
  --muted: #6f6559;
  --orange: #d27443;
  --line: #dfd0bd;
  --green: #858d4e;
  --blue: #7f9ba4;
  --card: rgba(255, 250, 241, 0.62);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  background: var(--bg);
  font-family: Arial, Helvetica, sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  width: min(100% - 48px, 1360px);
  margin: 0 auto;
  padding: 20px 0 18px;
}

.hero {
  margin-bottom: 38px;
}

.top {
  display: grid;
  grid-template-columns: 210px auto;
  align-items: start;
  column-gap: 48px;
  margin-bottom: 38px;
}

.logo {
  display: block;
  width: 150px;
}

.logo img {
  width: 150px;
  height: 48px;
  display: block;
  object-fit: cover;
  object-position: center;
  mix-blend-mode: multiply;
}

.logo span {
  display: block;
  margin-top: 6px;
  color: #5f574f;
  font-size: 13px;
  line-height: 1.25;
}

.menu {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 88px;
  padding-top: 23px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 16px;
  font-weight: 600;
  color: #42392f;
}

.menu-toggle {
  display: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(430px, 470px) minmax(0, 1fr);
  column-gap: 44px;
  align-items: start;
}

.copy {
  padding-top: 8px;
}

h1,
h2,
h3,
p {
  margin: 0;
}

h1,
h2,
h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
}

h1 {
  font-size: 48px;
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  font-size: 34px;
  line-height: 1.05;
}

h3 {
  font-size: 18px;
}

.intro {
  width: 390px;
  margin: 26px 0 24px;
  color: #3b332d;
  font-style: italic;
  font-size: 16px;
  line-height: 1.45;
}

.intro strong {
  display: block;
  margin-bottom: 2px;
  font-weight: 700;
}

.categories {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px 20px;
  margin-bottom: 31px;
}

.categories div {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #504940;
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
}

.mini-icon {
  width: 34px;
  height: 34px;
  display: block;
  flex: 0 0 auto;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.buttons {
  display: flex;
  gap: 19px;
}

.button {
  width: 184px;
  height: 43px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 24px;
  font-size: 16px;
}

.button.main {
  color: #fff;
  background: var(--orange);
}

.button.second {
  border: 1px solid #b8aa98;
  background: rgba(255, 250, 241, 0.42);
}
