:root {
  --olive: #7c8060;
  --cream: #e8e4d8;
  --ink: #17140f;
  --accent: #b5502f;
  --muted: #4a4838;
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  min-height: 100%;
}

body {
  background: var(--olive);
  color: var(--ink);
  font-family: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* Nav */

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
}

.logo {
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: -0.01em;
  color: var(--ink);
}

.nav ul {
  list-style: none;
  display: flex;
  gap: 2rem;
  margin: 0;
  padding: 0;
}

.nav a {
  color: var(--ink);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  opacity: 0.85;
}

.nav a.active {
  font-weight: 700;
  opacity: 1;
}

.nav a:hover {
  opacity: 1;
}

.mark {
  width: 48px;
  height: 24px;
}

/* Hero */

.hero {
  flex: 1;
  margin: 0 1.25rem 1.25rem;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 32rem;
}

.hero-text {
  background: var(--cream);
  padding: 4rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.75rem;
}

.hero-text h1 {
  font-size: clamp(2.25rem, 4vw, 3.25rem);
  line-height: 1.15;
  font-weight: 700;
  margin: 0;
  letter-spacing: -0.01em;
}

.hero-text h1 strong {
  font-weight: 800;
}

.categories {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1.7;
  color: var(--ink);
}

.description {
  max-width: 26rem;
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--muted);
  margin: 0;
}

.hero-image {
  position: relative;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Footer */

footer {
  text-align: center;
  padding: 1.5rem;
}

.ig-link {
  color: var(--cream);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
  border-bottom: 1px solid var(--cream);
  padding-bottom: 2px;
  transition: opacity 0.15s ease;
}

.ig-link:hover {
  opacity: 0.7;
}

/* Responsive */

@media (max-width: 800px) {
  .nav {
    flex-wrap: wrap;
    gap: 1rem;
  }

  .nav ul {
    gap: 1.25rem;
    flex-wrap: wrap;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-image {
    min-height: 18rem;
  }

  .hero-text {
    padding: 2.5rem 1.75rem;
  }
}
