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

:root {
  --oak: #8b6914;
  --oak-light: #c9a84c;
  --oak-dark: #5a4408;
  --walnut: #3e2c1c;
  --parchment: #faf7f2;
  --linen: #f0ebe2;
  --charcoal: #2c2c2c;
  --text-dark: #1e1a14;
  --text-body: #4a4238;
  --text-light: #7d7166;
  --border: #d9cfbf;
  --sage: #6b7d5e;
}

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

body {
  font-family: 'Lato', sans-serif;
  background-color: var(--parchment);
  color: var(--text-body);
  line-height: 1.75;
  font-weight: 400;
}

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

/* Navigation */
header {
  background: var(--walnut);
  border-bottom: 3px solid var(--oak);
}

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: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--parchment);
  letter-spacing: 0.5px;
}

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

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

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

.nav-links a:hover,
.nav-links a.active {
  color: #fff;
}

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

.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.4rem;
  font-weight: 700;
  color: var(--walnut);
  margin-bottom: 18px;
  line-height: 1.15;
}

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

.hero .cta-btn {
  display: inline-block;
  padding: 14px 38px;
  background: var(--oak);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 2px;
  transition: background 0.3s;
}

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

/* Showcase Grid */
.showcase-section {
  padding: 80px 0;
}

.showcase-section h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem;
  color: var(--walnut);
  text-align: center;
  margin-bottom: 40px;
}

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

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

.showcase-card:hover {
  box-shadow: 0 8px 24px rgba(62, 44, 28, 0.1);
}

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

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

.showcase-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--walnut);
  margin-bottom: 6px;
}

.showcase-card p {
  font-size: 0.9rem;
  color: var(--text-light);
}

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

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

.section h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem;
  color: var(--walnut);
  margin-bottom: 16px;
}

.section h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  color: var(--oak-dark);
  margin-bottom: 10px;
}

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

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

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

/* Features */
.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.feature {
  text-align: center;
  padding: 30px 20px;
}

.feature-icon {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  color: var(--oak);
  margin-bottom: 12px;
  line-height: 1;
}

.feature h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  color: var(--walnut);
  margin-bottom: 8px;
}

.feature p {
  font-size: 0.9rem;
  color: var(--text-light);
  max-width: none;
}

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

.article-content h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.8rem;
  color: var(--walnut);
  margin-bottom: 18px;
  line-height: 1.2;
}

.article-content h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  color: var(--walnut);
  margin: 40px 0 14px;
}

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

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

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

.article-content ul li {
  margin-bottom: 10px;
  color: var(--text-body);
  line-height: 1.7;
}

.article-content blockquote {
  border-left: 3px solid var(--oak);
  padding: 14px 20px;
  margin: 24px 0;
  background: var(--linen);
  font-style: italic;
  color: var(--text-light);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
}

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

.about-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  color: var(--walnut);
  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(--walnut);
  text-align: center;
  padding: 70px 24px;
}

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

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

.cta-banner .cta-btn {
  display: inline-block;
  padding: 14px 38px;
  background: var(--oak);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 2px;
  transition: background 0.3s;
}

.cta-banner .cta-btn:hover {
  background: var(--oak-light);
  color: var(--walnut);
}

/* Footer */
footer {
  background: var(--charcoal);
  color: var(--oak-light);
  padding: 50px 0 24px;
}

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

.footer-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--parchment);
  margin-bottom: 10px;
}

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

footer h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--parchment);
  margin-bottom: 14px;
}

footer ul {
  list-style: none;
}

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

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

footer ul a:hover {
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid rgba(201, 168, 76, 0.15);
  padding-top: 18px;
  text-align: center;
  font-size: 0.85rem;
  color: var(--oak-light);
}

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

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

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

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

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

  .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; }
