@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Source+Sans+3:wght@300;400;500;600&display=swap');

:root {
  --warm-tan: #c9a96e;
  --deep-brown: #5c3d2e;
  --cream: #faf6f0;
  --linen: #f2ebe0;
  --bark: #3e2a1e;
  --rust: #a0522d;
  --sage: #7a8b6f;
  --text-dark: #2e1f14;
  --text-body: #5a4a3a;
  --text-light: #8a7a6a;
  --border-light: #e0d5c5;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Source Sans 3', sans-serif;
  background-color: var(--cream);
  color: var(--text-body);
  line-height: 1.75;
  font-weight: 400;
}

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Navigation */
header {
  background: var(--linen);
  border-bottom: 2px solid var(--border-light);
  position: sticky;
  top: 0;
  z-index: 100;
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--deep-brown);
}

.brand svg {
  width: 26px;
  height: 26px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 28px;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-light);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.3s;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--rust);
}

/* Hero */
.hero {
  background: var(--linen);
  padding: 80px 24px 70px;
  text-align: center;
  border-bottom: 2px solid var(--border-light);
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 3.2rem;
  font-weight: 700;
  color: var(--deep-brown);
  margin-bottom: 16px;
  line-height: 1.2;
}

.hero p {
  font-size: 1.15rem;
  color: var(--text-light);
  max-width: 560px;
  margin: 0 auto 28px;
}

.hero .cta-btn {
  display: inline-block;
  padding: 12px 36px;
  background: var(--deep-brown);
  color: var(--cream);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 2px;
  transition: background 0.3s;
}

.hero .cta-btn:hover {
  background: var(--rust);
}

/* Product Grid */
.product-section {
  padding: 70px 0;
}

.product-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  color: var(--deep-brown);
  text-align: center;
  margin-bottom: 40px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.product-card {
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: 4px;
  overflow: hidden;
  transition: box-shadow 0.3s;
}

.product-card:hover {
  box-shadow: 0 6px 20px rgba(94, 61, 46, 0.1);
}

.product-card img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}

.product-card-body {
  padding: 20px;
}

.product-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  color: var(--deep-brown);
  margin-bottom: 6px;
}

.product-card .price {
  font-weight: 600;
  color: var(--rust);
  font-size: 1rem;
}

.product-card p {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-top: 8px;
}

/* Section */
.section {
  padding: 70px 0;
}

.section--alt {
  background: var(--linen);
  border-top: 2px solid var(--border-light);
  border-bottom: 2px solid var(--border-light);
}

.section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  color: var(--deep-brown);
  margin-bottom: 16px;
}

.section h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: var(--bark);
  margin-bottom: 10px;
}

.section p {
  color: var(--text-body);
  margin-bottom: 14px;
  max-width: 680px;
}

/* Two Column */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.two-col img {
  width: 100%;
  border-radius: 4px;
  border: 1px solid var(--border-light);
}

/* Article */
.article-content {
  max-width: 760px;
  margin: 0 auto;
  padding: 60px 24px;
}

.article-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: 2.6rem;
  color: var(--deep-brown);
  margin-bottom: 18px;
  line-height: 1.25;
}

.article-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  color: var(--deep-brown);
  margin: 36px 0 14px;
}

.article-content p {
  color: var(--text-body);
  margin-bottom: 16px;
  line-height: 1.85;
}

.article-content blockquote {
  border-left: 3px solid var(--warm-tan);
  padding: 12px 20px;
  margin: 24px 0;
  background: var(--linen);
  font-style: italic;
  color: var(--text-light);
  font-family: 'Playfair Display', serif;
}

.article-content img {
  width: 100%;
  border-radius: 4px;
  margin: 28px 0;
  border: 1px solid var(--border-light);
}

.article-content ul {
  margin: 16px 0;
  padding-left: 24px;
}

.article-content ul li {
  margin-bottom: 8px;
  color: var(--text-body);
}

/* About Hero */
.about-hero {
  background: var(--linen);
  padding: 80px 24px;
  text-align: center;
  border-bottom: 2px solid var(--border-light);
}

.about-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  color: var(--deep-brown);
  margin-bottom: 14px;
}

.about-hero p {
  color: var(--text-light);
  max-width: 560px;
  margin: 0 auto;
  font-size: 1.1rem;
}

/* CTA Banner */
.cta-banner {
  background: var(--deep-brown);
  text-align: center;
  padding: 70px 24px;
}

.cta-banner h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  color: var(--cream);
  margin-bottom: 12px;
}

.cta-banner p {
  color: var(--warm-tan);
  margin: 0 auto 24px;
  max-width: 460px;
}

.cta-banner .cta-btn {
  display: inline-block;
  padding: 12px 36px;
  background: var(--warm-tan);
  color: var(--bark);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 2px;
  transition: background 0.3s;
}

.cta-banner .cta-btn:hover {
  background: var(--cream);
}

/* Footer */
footer {
  background: var(--bark);
  color: var(--warm-tan);
  padding: 50px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 36px;
}

.footer-brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: var(--cream);
  margin-bottom: 10px;
}

.footer-desc {
  font-size: 0.9rem;
  color: var(--warm-tan);
  line-height: 1.6;
}

footer h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: var(--cream);
  margin-bottom: 14px;
}

footer ul {
  list-style: none;
}

footer ul li {
  margin-bottom: 8px;
}

footer ul a {
  color: var(--warm-tan);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s;
}

footer ul a:hover {
  color: var(--cream);
}

.footer-bottom {
  border-top: 1px solid rgba(201, 169, 110, 0.2);
  padding-top: 18px;
  text-align: center;
  font-size: 0.85rem;
  color: var(--warm-tan);
}

/* Responsive */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .product-grid {
    grid-template-columns: 1fr;
  }

  .two-col {
    grid-template-columns: 1fr;
    gap: 28px;
  }

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

  .article-content h1 {
    font-size: 2rem;
  }
}

.brand-icon { width: 24px; height: 24px; flex-shrink: 0; vertical-align: middle; margin-right: 6px; }
