:root {
  --accent: #ab865c;
  --ink: #2c3e50;
  --text: #66727a;
  --line: #ecf0f1;
  --footer: #1a1c27;
  --footer-line: #243240;
  --footer-text: #a1b1bc;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
  font-size: 14px;
  line-height: 1.75;
  background: #E6D5BD !important;
}

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

.container {
  width: min(1170px, calc(100% - 40px));
  margin-inline: auto;
}

.site-header {
  position: relative;
  z-index: 10;
  min-height: 90px;
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.header-inner {
  min-height: 90px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.brand {
  color: #a1b1bc;
  font-size: 30px;
  font-weight: 300;
  line-height: 1;
}

.nav-link {
  display: flex;
  min-height: 90px;
  align-items: center;
  padding-inline: 20px;
  color: #a1b1bc;
  transition: color .2s ease;
}

.nav-link:hover,
.nav-link:focus-visible {
  color: var(--accent);
}

.hero {
  width: 100%;
  aspect-ratio: 1600 / 589;

  background:
          linear-gradient(rgba(0, 0, 0, .18), rgba(0, 0, 0, .18)),
          url("./pics/banner.jpeg") center / cover no-repeat;
}

.hero-content {
  text-align: center;
}

.hero h1 {
  margin: 0;
  color: #fff;
  font-size: clamp(38px, 5vw, 50px);
  font-weight: 600;
  line-height: 1.4;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  margin-top: 24px;
  padding: 9px 23px;
  border: 1px solid var(--ink);
  color: var(--ink);
  background: transparent;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: color .2s ease, border-color .2s ease, background .2s ease;
}

.button:hover,
.button:focus-visible {
  border-color: var(--accent);
  color: #fff;
  background: var(--accent);
}

.button-light {
  min-height: 54px;
  margin-top: 28px;
  padding-inline: 34px;
  border-color: #fff;
  color: #fff;
  background: rgba(255, 255, 255, .01);
  font-size: 14px;
  font-weight: 500;
}

.section {
  padding: 82px 0;
}

.section-muted {
  background: #f7f8f9;
}

.section-title {
  margin: 0 0 48px;
  color: var(--ink);
  font-size: clamp(38px, 5vw, 50px);
  font-weight: 600;
  line-height: 1.25;
  text-align: center;
}

.section-title a:hover,
.section-title a:focus-visible {
  color: var(--accent);
}

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

.creation-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.creation-card h3 {
  margin: 0 0 20px;
  color: var(--ink);
  font-size: 24px;
  font-weight: 400;
  line-height: 1.3;
}

.creation-card p {
  margin: 0 0 24px;
  text-align: justify;
}

.creation-card img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  display: block;
  object-fit: cover;
}

.creation-card .button {
  margin-top: 22px;
}

.creation-card--no-image .button {
  margin-top: auto;
}

.centered {
  text-align: center;
}

.news {
  min-height: 270px;
}

.news .section-title {
  margin-bottom: 16px;
}

.about {
  padding-block: 70px;
}

.about .section-title {
  margin: 0;
}

.site-footer {
  padding: 65px 0 58px;
  color: var(--footer-text);
  background: var(--footer);
}

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

.site-footer h2 {
  position: relative;
  margin: 0 0 28px;
  padding-bottom: 14px;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
}

.site-footer h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 36px;
  height: 3px;
  background: var(--accent);
}

.site-footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer li {
  border-bottom: 1px solid var(--footer-line);
}

.site-footer li a {
  display: block;
  padding: 10px 0;
}

.site-footer a {
  color: var(--accent);
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: #fff;
}

.site-footer address {
  font-style: normal;
}

.site-footer p {
  margin: 0 0 18px;
}

.site-footer strong {
  color: #fff;
}

@media (max-width: 900px) {
  .card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 620px) {
  .container {
    width: min(100% - 28px, 1170px);
  }

  .site-header,
  .header-inner,
  .nav-link {
    min-height: 72px;
  }

  .hero {
    min-height: 470px;
    padding-block: 88px;
  }

  .section {
    padding-block: 60px;
  }

  .card-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .card-grid {
    gap: 56px;
  }
}

.btn-secondary {
  background-color: brown;
}

.text-secondary {
  color: #4A403A !important;
}

.card {
  background-color: #F7F3EA !important;
}

.lightBrown {
  color: #4A403A;
}

.shopButton {
    position: relative;
    top: 90px;
    width: 456px;
    margin: 120px;
    height: 85px;
    background-color: darkgreen;
}