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

:root {
  --honey:        #E8950A;
  --honey-light:  #F5C842;
  --honey-dark:   #B8720A;
  --cream:        #FBF6ED;
  --cream-dark:   #F2E8D5;
  --bark:         #3D2B1A;
  --bark-mid:     #6B4C2A;
  --bark-light:   #A07850;
  --sage:         #7A8C6E;
  --sage-light:   #B5C4A8;
  --white:        #FFFFFF;
  --text-primary: #2A1F14;
  --text-secondary: #6B4C2A;
  --text-muted:   #9A7A5A;
  --border:       #E0CDB0;
  --shadow:       rgba(61,43,26,0.12);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Source Serif 4', Georgia, serif;
  background-color: var(--cream);
  color: var(--text-primary);
  font-size: 17px;
  line-height: 1.75;
}

/* ── Texture overlay ── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='4' height='4'%3E%3Crect width='4' height='4' fill='%23FBF6ED'/%3E%3Ccircle cx='1' cy='1' r='0.5' fill='%23E0CDB0' opacity='0.4'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
  opacity: 0.6;
}

/* ── Nav ── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bark);
  padding: 0 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  box-shadow: 0 2px 12px var(--shadow);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.nav-logo img {
  width: 36px;
  height: 36px;
}

.nav-logo span {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--honey-light);
  letter-spacing: 0.01em;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  color: var(--cream-dark);
  text-decoration: none;
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--honey-light); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--cream);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ── Hero ── */
.hero {
  position: relative;
  z-index: 1;
  min-height: 88vh;
  display: flex;
  align-items: center;
  padding: 80px 5% 80px;
  background: var(--bark);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(232,149,10,0.18) 0%, transparent 70%);
}

.hero-honeycomb {
  position: absolute;
  right: -40px;
  top: 50%;
  transform: translateY(-50%);
  width: 480px;
  height: 480px;
  opacity: 0.07;
}

.hero-content {
  position: relative;
  max-width: 620px;
}

.hero-eyebrow {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--honey);
  font-weight: 300;
  margin-bottom: 1.2rem;
}

.hero h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  line-height: 1.15;
  color: var(--cream);
  margin-bottom: 1.4rem;
  font-weight: 700;
}

.hero h1 em {
  color: var(--honey-light);
  font-style: italic;
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--bark-light);
  margin-bottom: 2.4rem;
  font-weight: 300;
  max-width: 480px;
  line-height: 1.8;
}

.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 3px;
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  font-family: 'Source Serif 4', serif;
  font-weight: 600;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--honey);
  color: var(--bark);
}

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

.btn-outline {
  background: transparent;
  color: var(--cream);
  border: 1px solid rgba(251,246,237,0.35);
  margin-left: 1rem;
}

.btn-outline:hover {
  border-color: var(--honey);
  color: var(--honey-light);
}

/* ── Section base ── */
section {
  position: relative;
  z-index: 1;
  padding: 80px 5%;
}

.section-label {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--honey-dark);
  font-weight: 600;
  margin-bottom: 0.6rem;
}

.section-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--bark);
  margin-bottom: 1rem;
  font-weight: 700;
  line-height: 1.25;
}

.section-intro {
  color: var(--text-secondary);
  max-width: 560px;
  font-weight: 300;
  margin-bottom: 3rem;
}

/* ── Featured strip ── */
.features {
  background: var(--cream-dark);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2px;
}

.feature-item {
  background: var(--cream);
  padding: 2rem 1.8rem;
  border-right: 1px solid var(--border);
}

.feature-item:last-child { border-right: none; }

.feature-icon {
  width: 40px;
  height: 40px;
  background: var(--honey);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.feature-icon svg { width: 20px; height: 20px; fill: var(--bark); }

.feature-item h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  color: var(--bark);
  margin-bottom: 0.4rem;
}

.feature-item p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.65;
  font-weight: 300;
}

/* ── Blog cards ── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 2px;
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px var(--shadow);
}

.card-img {
  width: 100%;
  height: 200px;
  background: var(--cream-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.card-img svg { width: 64px; height: 64px; opacity: 0.3; }

.card-body { padding: 1.4rem 1.6rem 1.8rem; }

.card-tag {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--honey-dark);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  color: var(--bark);
  margin-bottom: 0.6rem;
  line-height: 1.35;
}

.card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 1.2rem;
}

.card-link {
  font-size: 13px;
  color: var(--honey-dark);
  text-decoration: none;
  letter-spacing: 0.06em;
  font-weight: 600;
  border-bottom: 1px solid var(--honey);
  padding-bottom: 1px;
  transition: color 0.2s;
}

.card-link:hover { color: var(--bark); }

/* ── Reviews ── */
.reviews { background: var(--bark); }
.reviews .section-title { color: var(--cream); }
.reviews .section-intro { color: var(--bark-light); }
.reviews .section-label { color: var(--honey); }

.review-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.review-card {
  background: rgba(251,246,237,0.06);
  border: 1px solid rgba(232,149,10,0.25);
  border-radius: 2px;
  padding: 1.6rem;
  transition: background 0.2s;
}

.review-card:hover { background: rgba(251,246,237,0.1); }

.review-rating {
  display: flex;
  gap: 3px;
  margin-bottom: 0.8rem;
}

.star { width: 14px; height: 14px; fill: var(--honey); }

.review-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  color: var(--cream);
  margin-bottom: 0.5rem;
}

.review-card p {
  font-size: 0.88rem;
  color: var(--bark-light);
  line-height: 1.65;
  font-weight: 300;
  margin-bottom: 1.2rem;
}

.review-price {
  font-size: 13px;
  color: var(--honey-light);
  font-weight: 600;
  margin-bottom: 1rem;
}

/* ── Colorado strip ── */
.colorado {
  background: var(--sage);
  padding: 60px 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.colorado-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.9rem;
  color: var(--cream);
  margin-bottom: 0.6rem;
}

.colorado-text p {
  color: rgba(251,246,237,0.8);
  font-weight: 300;
  max-width: 480px;
}

/* ── Newsletter ── */
.newsletter {
  background: var(--cream-dark);
  border-top: 1px solid var(--border);
  text-align: center;
  padding: 70px 5%;
}

.newsletter-form {
  display: flex;
  gap: 0;
  max-width: 460px;
  margin: 2rem auto 0;
}

.newsletter-form input {
  flex: 1;
  padding: 13px 18px;
  border: 1px solid var(--border);
  border-right: none;
  border-radius: 3px 0 0 3px;
  font-family: 'Source Serif 4', serif;
  font-size: 15px;
  background: var(--white);
  color: var(--text-primary);
  outline: none;
}

.newsletter-form input:focus { border-color: var(--honey); }

.newsletter-form .btn {
  border-radius: 0 3px 3px 0;
  padding: 13px 24px;
}

/* ── Footer ── */
footer {
  background: var(--text-primary);
  color: var(--bark-light);
  padding: 50px 5% 30px;
  position: relative;
  z-index: 1;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(160,120,80,0.2);
}

.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.7;
  font-weight: 300;
  margin-top: 0.8rem;
  max-width: 300px;
}

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

.footer-col ul { list-style: none; }

.footer-col ul li { margin-bottom: 0.5rem; }

.footer-col ul li a {
  color: var(--bark-light);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 300;
  transition: color 0.2s;
}

.footer-col ul li a:hover { color: var(--honey-light); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.8rem;
}

.footer-bottom a {
  color: var(--bark-light);
  text-decoration: none;
}

.affiliate-notice {
  font-size: 0.78rem;
  color: var(--text-muted);
  max-width: 600px;
  line-height: 1.6;
  font-style: italic;
}

/* ── Page header ── */
.page-header {
  background: var(--bark);
  padding: 60px 5% 50px;
  position: relative;
  z-index: 1;
}

.page-header h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--cream);
  margin-bottom: 0.5rem;
}

.page-header p {
  color: var(--bark-light);
  font-weight: 300;
}

/* ── Blog page ── */
.blog-list {
  max-width: 860px;
  margin: 0 auto;
}

.blog-post-item {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 1.8rem;
  padding: 2rem 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
}

.blog-post-item:last-child { border-bottom: none; }

.post-thumb {
  background: var(--cream-dark);
  border-radius: 2px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
}

.post-thumb svg { width: 40px; height: 40px; opacity: 0.25; }

.post-meta {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--honey-dark);
  margin-bottom: 0.4rem;
}

.post-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: var(--bark);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.post-excerpt {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 0.8rem;
}

/* ── Contact ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  max-width: 900px;
}

.contact-info h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: var(--bark);
  margin-bottom: 1rem;
}

.contact-info p {
  font-size: 0.92rem;
  color: var(--text-secondary);
  font-weight: 300;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 0.8rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.form-group { margin-bottom: 1.4rem; }

.form-group label {
  display: block;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 0.4rem;
  font-weight: 600;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: 2px;
  font-family: 'Source Serif 4', serif;
  font-size: 15px;
  background: var(--white);
  color: var(--text-primary);
  outline: none;
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus { border-color: var(--honey); }

.form-group textarea { resize: vertical; min-height: 140px; }

/* ── Article post page ── */
.post-page {
  position: relative;
  z-index: 1;
  max-width: 740px;
  margin: 0 auto;
  padding: 60px 5% 80px;
}

.post-header {
  border-bottom: 1px solid var(--border);
  margin-bottom: 2.8rem;
  padding-bottom: 2.4rem;
}

.post-header .post-meta {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--honey-dark);
  font-weight: 600;
  margin-bottom: 0.8rem;
}

.post-header h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--bark);
  line-height: 1.2;
  margin-bottom: 1.2rem;
  font-weight: 700;
}

.post-intro {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.85;
  font-weight: 300;
}

.post-body h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.55rem;
  color: var(--bark);
  margin: 2.4rem 0 0.8rem;
  font-weight: 700;
  line-height: 1.3;
}

.post-body h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.15rem;
  color: var(--bark-mid);
  margin: 1.8rem 0 0.6rem;
  font-weight: 700;
}

.post-body p {
  margin-bottom: 1.2rem;
  line-height: 1.85;
}

.post-body strong {
  color: var(--bark);
  font-weight: 600;
}

.co-tip {
  background: var(--cream-dark);
  border-left: 4px solid var(--honey);
  border-radius: 0 3px 3px 0;
  padding: 1.2rem 1.4rem;
  margin: 2rem 0;
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.75;
}

.co-tip strong {
  color: var(--honey-dark);
  display: block;
  margin-bottom: 0.3rem;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.aff-link {
  color: var(--honey-dark);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid var(--honey);
  padding-bottom: 1px;
  transition: color 0.2s;
}

.aff-link:hover { color: var(--bark); }

.faq-block {
  background: var(--cream-dark);
  border: 1px solid var(--border);
  border-radius: 3px;
  padding: 2rem 2rem 1.2rem;
  margin: 2.8rem 0;
}

.faq-block h2 {
  margin-top: 0;
  font-size: 1.3rem;
  margin-bottom: 1.4rem;
}

.faq-block h3 {
  margin-top: 1.4rem;
  margin-bottom: 0.4rem;
  color: var(--bark);
}

.faq-block p { margin-bottom: 0; }

/* ── Honeycomb SVG pattern ── */
.hex-pattern { opacity: 0.04; }

/* ── Responsive ── */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--bark);
    padding: 1.5rem 5%;
    gap: 1.2rem;
    border-top: 1px solid rgba(160,120,80,0.2);
  }
  .hero { min-height: 70vh; padding: 60px 5%; }
  .hero-honeycomb { display: none; }
  .blog-post-item { grid-template-columns: 1fr; }
  .post-thumb { height: 160px; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
  .btn-outline { margin-left: 0; margin-top: 0.8rem; }
  .newsletter-form { flex-direction: column; }
  .newsletter-form input { border-right: 1px solid var(--border); border-bottom: none; border-radius: 3px 3px 0 0; }
  .newsletter-form .btn { border-radius: 0 0 3px 3px; }
}
