/* Southern Chestnuts — Shared Stylesheet */

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

:root {
  --brown-dark:   #3d1f0a;
  --brown:        #5c3317;
  --brown-mid:    #7a4520;
  --amber:        #c17f24;
  --amber-light:  #d9a44a;
  --forest:       #3a6b35;
  --cream:        #fdf6e3;
  --warm-bg:      #f7f0e0;
  --warm-gray:    #ede5d5;
  --text:         #2c1e0f;
  --text-light:   #6b5040;
  --border:       #d4c4a8;
  --white:        #ffffff;
}

body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.7;
}

/* ── NAV ── */
nav {
  background: var(--brown-dark);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0,0,0,0.4);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 62px;
}
.nav-logo {
  color: var(--white);
  font-size: 1.25rem;
  font-weight: 700;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-logo span { color: var(--amber-light); }
.nav-links {
  display: flex;
  gap: 8px;
  list-style: none;
}
.nav-links a {
  color: rgba(255,255,255,0.82);
  text-decoration: none;
  padding: 8px 14px;
  border-radius: 6px;
  font-size: 0.95rem;
  transition: background 0.2s, color 0.2s;
}
.nav-links a:hover,
.nav-links a.active {
  background: rgba(255,255,255,0.15);
  color: var(--white);
}

/* ── PAGE WRAPPER ── */
.page { max-width: 1100px; margin: 0 auto; padding: 0 24px 60px; }

/* ── HERO ── */
.hero {
  background: linear-gradient(135deg, var(--brown-dark) 0%, var(--brown) 55%, var(--brown-mid) 100%);
  color: white;
  padding: 80px 24px 70px;
  text-align: center;
}
.hero-inner { max-width: 720px; margin: 0 auto; }
.hero h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  margin-bottom: 16px;
  line-height: 1.15;
  text-shadow: 0 2px 6px rgba(0,0,0,0.3);
}
.hero p {
  font-size: 1.2rem;
  opacity: 0.9;
  margin-bottom: 32px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.hero-badge {
  display: inline-block;
  background: rgba(255,255,255,0.13);
  border: 1px solid rgba(255,255,255,0.3);
  color: white;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  padding: 13px 30px;
  border-radius: 6px;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
}
.btn-primary { background: var(--amber); color: white; }
.btn-primary:hover { background: var(--amber-light); transform: translateY(-1px); }
.btn-secondary {
  background: transparent;
  color: white;
  border: 2px solid rgba(255,255,255,0.55);
  margin-left: 12px;
}
.btn-secondary:hover { background: rgba(255,255,255,0.15); }
.btn-brown { background: var(--brown); color: white; }
.btn-brown:hover { background: var(--brown-dark); }

/* ── SECTIONS ── */
.section { padding: 56px 0; }
.section-title {
  font-size: 1.85rem;
  font-weight: 700;
  color: var(--brown-dark);
  margin-bottom: 8px;
}
.section-sub {
  color: var(--text-light);
  font-size: 1.05rem;
  margin-bottom: 40px;
}
.divider {
  width: 52px;
  height: 4px;
  background: var(--amber);
  border-radius: 2px;
  margin: 12px 0 28px;
}

/* ── CARDS ── */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.card:hover { box-shadow: 0 8px 28px rgba(60,30,10,0.12); transform: translateY(-3px); }
.card-icon { font-size: 2.4rem; margin-bottom: 14px; }
.card h3 { font-size: 1.2rem; color: var(--brown-dark); margin-bottom: 10px; }
.card p { color: var(--text-light); font-size: 0.95rem; }

/* ── PRICING TABLE ── */
.price-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 2px 12px rgba(60,30,10,0.07);
}
.price-table th {
  background: var(--brown-dark);
  color: white;
  padding: 14px 20px;
  text-align: left;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.price-table td {
  padding: 14px 20px;
  border-bottom: 1px solid var(--border);
  font-size: 0.98rem;
}
.price-table tr:last-child td { border-bottom: none; }
.price-table tr:nth-child(even) td { background: var(--warm-bg); }
.price-best { background: #fff8ec !important; font-weight: 600; }
.price-tag { font-weight: 700; color: var(--brown); font-size: 1.05rem; }

/* ── SEASON BANNER ── */
.season-band {
  background: var(--amber);
  color: white;
  text-align: center;
  padding: 18px 24px;
  font-size: 1rem;
  font-weight: 600;
}
.season-band a { color: white; text-decoration: underline; }

/* ── CTA BAND ── */
.cta-band {
  background: var(--brown-dark);
  color: white;
  text-align: center;
  padding: 56px 24px;
}
.cta-band h2 { font-size: 1.9rem; margin-bottom: 12px; }
.cta-band p { opacity: 0.85; margin-bottom: 28px; font-size: 1.05rem; }

/* ── BLOG ── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}
.blog-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: box-shadow 0.2s, transform 0.2s;
}
.blog-card:hover { box-shadow: 0 8px 28px rgba(60,30,10,0.12); transform: translateY(-3px); }
.blog-thumb {
  height: 180px;
  background: var(--brown);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
}
.blog-body { padding: 24px; }
.blog-tag {
  display: inline-block;
  background: var(--warm-gray);
  color: var(--brown);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 10px;
}
.blog-card h3 { font-size: 1.1rem; color: var(--brown-dark); margin-bottom: 8px; line-height: 1.35; }
.blog-card p { font-size: 0.92rem; color: var(--text-light); margin-bottom: 16px; }
.blog-meta { font-size: 0.82rem; color: var(--text-light); }
.blog-card a { text-decoration: none; color: inherit; }

/* ── BLOG POST ── */
.post-hero {
  background: linear-gradient(135deg, var(--brown-dark), var(--brown));
  padding: 60px 24px 50px;
  text-align: center;
  color: white;
}
.post-hero h1 { font-size: clamp(1.6rem, 4vw, 2.4rem); max-width: 700px; margin: 0 auto 12px; }
.post-hero .post-meta { opacity: 0.8; font-size: 0.92rem; }
.post-content { max-width: 720px; margin: 0 auto; padding: 48px 24px 80px; }
.post-content h2 { font-size: 1.5rem; color: var(--brown-dark); margin: 36px 0 12px; }
.post-content p { margin-bottom: 18px; color: var(--text); font-size: 1.02rem; }
.post-content ul, .post-content ol { margin: 0 0 18px 24px; color: var(--text); font-size: 1.02rem; }
.post-content li { margin-bottom: 6px; }
.post-content .tip-box {
  background: #fff8ec;
  border-left: 4px solid var(--amber);
  padding: 18px 20px;
  border-radius: 0 8px 8px 0;
  margin: 24px 0;
}

/* ── ABOUT ── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
@media (max-width: 680px) { .about-grid { grid-template-columns: 1fr; } }
.about-visual {
  background: linear-gradient(135deg, var(--brown), var(--brown-mid));
  border-radius: 16px;
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 6rem;
}
.value-list { list-style: none; margin-top: 20px; }
.value-list li {
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 0.97rem;
}
.value-list li:last-child { border-bottom: none; }
.value-list .icon { font-size: 1.2rem; flex-shrink: 0; margin-top: 1px; }

/* ── INFO BOX ── */
.info-box {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 28px 32px;
  margin-top: 24px;
}
.info-box h3 { color: var(--brown-dark); margin-bottom: 12px; }
.info-row { display: flex; gap: 12px; padding: 8px 0; border-bottom: 1px solid var(--border); font-size: 0.95rem; }
.info-row:last-child { border-bottom: none; }
.info-label { font-weight: 600; min-width: 110px; color: var(--text-light); }

/* ── FOOTER ── */
footer {
  background: var(--brown-dark);
  color: rgba(255,255,255,0.72);
  text-align: center;
  padding: 36px 24px;
  font-size: 0.88rem;
}
footer a { color: var(--amber-light); text-decoration: none; }
footer strong { color: white; }
.footer-links { margin: 10px 0; display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; }

/* ── RESPONSIVE ── */
@media (max-width: 600px) {
  .nav-links a { padding: 6px 10px; font-size: 0.88rem; }
  .hero { padding: 52px 16px; }
  .btn-secondary { display: none; }
}
