﻿:root {
  --bg: #fbf9f6;
  --ink: #1b1715;
  --surface: #f4f0eb;
  --accent: #6b7b5a;
  --accent-dark: #4f5f41;
  --muted: #7a7a78;
  --light-text: #9e9e9c;
  --display: "Lora", serif;
  --body: "Inter", sans-serif;
  --radius: 24px;
  --shadow: 0 18px 40px rgba(26, 22, 20, 0.08);
  --shadow-soft: 0 10px 30px rgba(26, 22, 20, 0.06);
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  font-family: var(--body);
  line-height: 1.7;
  min-height: 100vh;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
}

button,
.btn {
  border: none;
  font: inherit;
}

.container {
  width: min(100%, var(--max-width));
  margin: 0 auto;
  padding: 0 20px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(251, 249, 246, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(26, 22, 20, 0.08);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  padding: 6px 10px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.9);
}

.brand-logo {
  display: block;
  max-height: 42px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.nav-links a {
  color: var(--ink);
  text-decoration: none;
  font-weight: 500;
}

.nav-links a:hover,
.brand:hover,
.btn:hover {
  color: var(--accent);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 999px;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.btn-primary {
  padding: 14px 26px;
  background: var(--accent);
  color: white;
  text-decoration: none;
}

.btn-primary:hover {
  transform: translateY(-1px);
  background: var(--accent-dark);
}

.btn-secondary {
  padding: 12px 24px;
  background: transparent;
  color: var(--accent-dark);
  border: 1px solid rgba(107, 123, 90, 0.3);
}

.btn-secondary:hover {
  background: rgba(107, 123, 90, 0.08);
}

.eyebrow {
  color: var(--accent);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.82rem;
  margin: 0 0 14px;
}

.hero,
.page-hero,
.featured-products,
.why,
.contact,
.product-filter,
.about {
  padding: 80px 0;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(400px, 1.1fr);
  gap: 48px;
  align-items: center;
}

.hero-copy h1,
.page-hero-copy h1,
.section-header h2,
.about-grid h2,
.contact-card h2 {
  font-family: var(--display);
  font-size: clamp(2.6rem, 4.2vw, 3.8rem);
  line-height: 1.02;
  margin: 0;
}

.hero-text,
.about-grid p,
.why-card p,
.feature-item span,
.contact-card p {
  color: var(--muted);
  font-size: 1rem;
  max-width: 58ch;
}

.hero-image img {
  width: 100%;
  border-radius: 32px;
  box-shadow: var(--shadow);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 34px;
}

.section-header {
  max-width: 720px;
  margin-bottom: 42px;
}

.section-header h2 {
  font-size: clamp(2rem, 3vw, 2.8rem);
  margin: 0;
}

.product-grid {
  display: grid;
  gap: 28px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.product-card {
  background: white;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.product-card img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.card-body {
  padding: 28px;
  display: grid;
  gap: 18px;
}

.product-badge {
  display: inline-flex;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(107, 123, 90, 0.1);
  color: var(--accent-dark);
  font-size: 0.88rem;
  font-weight: 600;
}

.card-body h3 {
  margin: 0;
  font-family: var(--display);
  font-size: 1.35rem;
}

.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.card-footer strong {
  font-size: 1.1rem;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.why-card,
.contact-card,
.about-grid,
.about-features {
  border-radius: 28px;
}

.why-card {
  background: white;
  padding: 32px;
  box-shadow: var(--shadow-soft);
}

.why-card h3 {
  margin-top: 0;
  font-family: var(--display);
  font-size: 1.3rem;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.1fr auto;
  gap: 32px;
  align-items: center;
}

.about-features {
  display: grid;
  gap: 18px;
}

.feature-item {
  padding: 22px 24px;
  background: white;
  box-shadow: var(--shadow-soft);
  border-radius: 26px;
}

.feature-item strong {
  display: block;
  margin-bottom: 10px;
  font-size: 1rem;
}

.contact-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: white;
  padding: 32px 36px;
  box-shadow: var(--shadow-soft);
}

.footer {
  background: var(--surface);
  padding: 48px 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-inner p {
  margin: 16px 0 0;
  color: var(--muted);
}

.product-filter .filter-row,
.page-hero {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}

.page-hero-copy,
.product-filter .filter-row > div {
  max-width: 680px;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.tag {
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink);
  border: 1px solid rgba(26, 22, 20, 0.08);
  cursor: pointer;
}

.tag-active {
  background: var(--accent);
  color: white;
  border-color: transparent;
}

@media (max-width: 900px) {
  .hero,
  .about-grid,
  .product-filter .filter-row,
  .page-hero {
    grid-template-columns: 1fr;
  }

  .hero,
  .page-hero {
    padding-top: 60px;
  }
}

@media (max-width: 720px) {
  .nav {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-links {
    gap: 14px;
  }

  .hero-image img {
    height: auto;
  }

  .product-card img {
    height: 280px;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}
