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

:root {
  --cream: #f7f2eb;
  --warm-white: #fdf9f4;
  --sand: #e8ddd0;
  --tan: #c9b9a6;
  --bark: #8c7260;
  --earth: #5c4033;
  --moss: #6b7c5c;
  --sage: #9aaa8a;
  --sage-light: #c8d4bc;
  --terracotta: #b85c3a;
  --terra-light: #d4846a;
  --text: #2e2018;
  --text-mid: #5c4a38;
  --muted: #9a8878;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--warm-white);
  color: var(--text);
  font-family: 'Jost', sans-serif;
  font-weight: 300;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
}

/* NAV */
nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(247,242,235,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--sand);
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px; font-weight: 600;
  color: var(--earth); letter-spacing: 0.02em;
  text-decoration: none;
}
.nav-logo span { font-style: italic; font-weight: 300; color: var(--bark); }
.nav-links { display: flex; gap: 32px; list-style: none; }
.nav-links a {
  font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--text-mid); text-decoration: none; transition: color 0.2s;
}
.nav-links a:hover { color: var(--terracotta); }
.nav-search { background: none; border: none; cursor: pointer; color: var(--bark); font-size: 16px; padding: 4px; }

/* STRIP */
.strip {
  background: var(--earth); color: var(--cream);
  text-align: center; padding: 14px;
  font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase;
  position: relative; z-index: 1;
}

/* BLOG POST STYLES */
.blog-hero {
  background: var(--cream);
  padding: 60px 60px 0;
  max-width: 1200px;
  margin: 0 auto;
}

.blog-hero-tag {
  display: inline-block;
  font-size: 9px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--moss); border: 1px solid var(--sage-light);
  padding: 4px 12px; border-radius: 20px; margin-bottom: 20px;
}

.blog-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 4vw, 52px); font-weight: 300;
  color: var(--earth); line-height: 1.2;
  max-width: 700px; margin-bottom: 16px;
}

.blog-hero-meta {
  font-size: 12px; color: var(--muted);
  letter-spacing: 0.05em; margin-bottom: 32px;
}

.blog-hero-image {
  height: 420px;
  border-radius: 4px 4px 0 0;
  overflow: hidden;
}

.blog-content {
  max-width: 740px;
  margin: 0 auto;
  padding: 60px 24px 80px;
  position: relative; z-index: 1;
}

.blog-content p {
  font-size: 16px; line-height: 1.9;
  color: var(--text-mid); margin-bottom: 24px;
}

.blog-content h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 30px; font-weight: 400;
  color: var(--earth); margin: 40px 0 16px;
}

.blog-content h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px; font-style: italic;
  color: var(--bark); margin: 28px 0 12px;
}

.product-card {
  border: 1px solid var(--sand);
  border-radius: 4px;
  padding: 20px 24px; margin: 24px 0;
  display: flex; gap: 20px; align-items: center;
  background: var(--cream); transition: border-color 0.2s;
}
.product-card:hover { border-color: var(--tan); }

.product-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px; font-weight: 300;
  color: var(--sand); line-height: 1;
  min-width: 50px;
}

.product-info h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px; font-weight: 600;
  color: var(--earth); margin: 0 0 6px; font-style: normal;
}
.product-info p { font-size: 14px; margin: 0 0 12px; }

.product-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--terracotta); text-decoration: none;
  border-bottom: 1px solid var(--terra-light); padding-bottom: 2px;
}

.affiliate-note {
  background: var(--sand); border-left: 3px solid var(--sage);
  padding: 14px 18px; font-size: 12px; color: var(--muted);
  border-radius: 0 3px 3px 0; margin: 32px 0; line-height: 1.7;
}

.back-btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--bark); cursor: pointer; border: none;
  background: none; padding: 16px 60px; transition: color 0.2s;
  text-decoration: none; position: relative; z-index: 1;
}
.back-btn:hover { color: var(--terracotta); }

/* FOOTER */
footer { background: var(--earth); color: var(--sand); padding: 60px; }
.footer-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px; margin-bottom: 48px;
}
.footer-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px; font-weight: 600; color: var(--cream); margin-bottom: 16px;
}
.footer-brand span { font-style: italic; font-weight: 300; color: var(--terra-light); }
.footer-desc { font-size: 13px; color: var(--tan); line-height: 1.8; margin-bottom: 20px; }
.footer-disclosure {
  font-size: 11px; color: var(--bark); line-height: 1.7;
  padding: 14px; border: 1px solid rgba(255,255,255,0.1);
  border-radius: 3px; background: rgba(0,0,0,0.1);
}
.footer-col h4 {
  font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--terra-light); margin-bottom: 20px; font-weight: 400;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 13px; color: var(--tan); text-decoration: none; transition: color 0.2s; }
.footer-col a:hover { color: var(--cream); }
.footer-bottom {
  max-width: 1200px; margin: 0 auto;
  padding-top: 28px; border-top: 1px solid rgba(255,255,255,0.1);
  display: flex; justify-content: space-between; align-items: center;
  font-size: 11px; color: var(--bark);
}

/* CSS thumbnails */
.thumb-living { background: linear-gradient(160deg,#e8d8c4,#d4c0a8); position:relative; width:100%; height:100%; }
.thumb-bedroom { background: linear-gradient(160deg,#ddd0c4,#c8b8a8); position:relative; width:100%; height:100%; }
.thumb-kitchen { background: linear-gradient(160deg,#e0d4c4,#ccbfb0); position:relative; width:100%; height:100%; }
.thumb-shelf { background: linear-gradient(160deg,#e4dcd0,#d0c4b4); position:relative; width:100%; height:100%; }
.thumb-outdoor { background: linear-gradient(160deg,#c8d4b8,#aab89a); position:relative; width:100%; height:100%; }

@media (max-width: 900px) {
  nav { padding: 0 24px; }
  .blog-hero { padding: 40px 24px 0; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .back-btn { padding: 16px 24px; }
}
@media (max-width: 580px) {
  .nav-links { display: none; }
  .footer-inner { grid-template-columns: 1fr; }
}
