:root {
  --green-deep: #1f4d2b;
  --green-mid: #2f6b3c;
  --green-accent: #8ec641;
  --cream: #f7f4ec;
  --warm-grey: #6b6660;
  --ink: #1a1f1c;
  --white: #ffffff;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--ink);
  /* background: var(--cream); */
  line-height: 1.6;
}

h1,
h2,
h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  backdrop-filter: blur(10px);
}

.nav-wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 16px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-block {
  display: flex;
  align-items: center;
  gap: 18px;
}

.logo img {
  height: 64px;
  display: block;
}

.header-slogan {
  display: flex;
  flex-direction: column;
  padding-left: 14px;
  border-left: 1px solid rgba(0, 0, 0, 0.12);
  line-height: 1.2;
  white-space: nowrap;
}

.header-slogan .top {
  font-family: 'Fraunces', serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--green-deep);
  font-style: italic;
}

.header-slogan .bot {
  font-size: 9px;
  color: var(--warm-grey);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-top: 3px;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 24px;
  align-items: center;
}

nav a {
  color: var(--ink);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: color 0.2s;
}

nav a:hover {
  color: var(--green-deep);
}

.cart-btn {
  background: var(--green-deep);
  color: var(--white);
  padding: 10px 22px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
}

footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.7);
  padding: 60px 32px 30px;
}

.foot-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.foot-grid h4 {
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-family: 'Inter', sans-serif;
}

.foot-grid ul {
  list-style: none;
}

.foot-grid li {
  margin-bottom: 10px;
  font-size: 14px;
}

.foot-grid a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
}

.foot-logo {
  display: inline-block;
  margin-bottom: 20px;
}

.foot-logo img {
  height: 56px;
  display: block;
}

.foot-grid .tagline {
  font-size: 14px;
  line-height: 1.6;
  max-width: 320px;
}

.copy {
  max-width: 1280px;
  margin: 30px auto 0;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

@media (max-width: 900px) {
  .header-slogan {
    display: none;
  }

  .foot-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 680px) {
  .nav-wrap {
    padding: 12px 16px;
  }

  .logo img {
    height: 52px;
  }

  footer {
    padding: 44px 16px 24px;
  }

  .foot-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}
