:root {
  --bg: #f7f1e8;
  --card: #fffaf2;
  --text: #1f1f1f;
  --muted: #77706a;
  --line: #dfd2c0;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Arial, sans-serif;
}

.header {
  padding: 28px 7%;
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: Georgia, serif;
  letter-spacing: 8px;
  font-size: 30px;
}

.est {
  margin-top: 8px;
  letter-spacing: 5px;
  font-size: 12px;
  text-align: center;
}

nav a,
.footer a {
  color: var(--text);
  text-decoration: none;
  margin-left: 28px;
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.hero {
  padding: 110px 7%;
  border-bottom: 1px solid var(--line);
}

.eyebrow {
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--muted);
  font-size: 13px;
}

h1,
h2 {
  font-family: Georgia, serif;
  font-weight: 400;
  letter-spacing: 8px;
  text-transform: uppercase;
}

h1 {
  font-size: 58px;
  line-height: 1.1;
}

h2 {
  font-size: 34px;
}

.hero-text {
  max-width: 620px;
  line-height: 1.8;
  color: var(--muted);
}

.button {
  display: inline-block;
  margin-top: 28px;
  padding: 14px 26px;
  background: #111;
  color: #fff;
  text-decoration: none;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-size: 12px;
}

.section {
  padding: 70px 7%;
  border-bottom: 1px solid var(--line);
}

.products {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 36px;
}

.product {
  background: var(--card);
  border: 1px solid var(--line);
  padding: 24px;
}

.product-img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
  margin-bottom: 24px;
}

.product h3 {
  font-size: 18px;
  margin: 0 0 14px;
}

.product p,
.product span,
.about p,
.contact p {
  color: var(--muted);
  line-height: 1.7;
}

.product span {
  display: block;
  font-size: 13px;
  margin-top: 12px;
}

.about {
  max-width: 1000px;
}

.quote {
  font-family: Georgia, serif;
  font-size: 24px;
  color: var(--text) !important;
}

.palette {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.palette div {
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.c {
  display: block;
  width: 120px;
  height: 70px;
  border: 1px solid var(--line);
  margin-bottom: 12px;
}

.off { background: #f6f0e7; }
.sand { background: #d0b894; }
.grey { background: #c9c7bf; }
.olive { background: #70745d; }
.charcoal { background: #242321; }

.footer {
  padding: 28px 7%;
  display: flex;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

@media (max-width: 900px) {
  .header,
  .footer {
    flex-direction: column;
    gap: 20px;
  }

  .products {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: 40px;
  }

  .logo {
    font-size: 22px;
  }
}