:root {
  --sand: #f5f0e8;
  --jungle: #2d4a3e;
  --gold: #c9a84c;
  --dark: #1a1a1a;
  --white: #ffffff;
  --text: #3a3a3a;
  --light-text: #7a7a7a;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}

h1, h2, h3, h4 { font-family: 'Playfair Display', serif; }

a { color: inherit; text-decoration: none; }

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

/* Shared nav parity */
.blog-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.blog-nav-inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--jungle);
  letter-spacing: 0.4px;
}

.nav-links { display: flex; gap: 20px; align-items: center; }
.nav-links a { color: var(--text); font-size: 0.92rem; font-weight: 500; }
.nav-links a:hover { color: var(--jungle); }

.nav-cta {
  background: var(--jungle);
  color: var(--white) !important;
  padding: 10px 18px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.88rem;
}
.nav-cta:hover { background: #1f352b; }

/* Blog index hero */
.blog-hero {
  background: linear-gradient(135deg, var(--jungle) 0%, #1d3128 100%);
  color: var(--white);
  padding: 74px 0 60px;
  position: relative;
}

.blog-hero:before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 10%, rgba(201,168,76,.2), transparent 35%), radial-gradient(circle at 80% 80%, rgba(201,168,76,.15), transparent 40%);
}

.blog-hero-content { position: relative; z-index: 1; max-width: 860px; }
.blog-tag {
  display: inline-block;
  background: rgba(201,168,76,0.18);
  border: 1px solid rgba(201,168,76,0.55);
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 1.3px;
  text-transform: uppercase;
  font-size: 0.76rem;
  border-radius: 999px;
  padding: 6px 12px;
  margin-bottom: 16px;
}

.blog-hero h1 {
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 1.18;
  margin-bottom: 14px;
}

.blog-hero p {
  color: rgba(255,255,255,.85);
  line-height: 1.7;
  max-width: 70ch;
}

.blog-hero-cta { margin-top: 24px; display: flex; flex-wrap: wrap; gap: 12px; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.92rem;
}

.btn-primary { background: var(--gold); color: #1f1f1f; }
.btn-primary:hover { background: #b8963f; }
.btn-outline {
  color: var(--white);
  border: 1px solid rgba(255,255,255,.5);
}
.btn-outline:hover { background: rgba(255,255,255,.1); }

/* Cards */
.section {
  padding: 52px 0 70px;
  background: var(--sand);
}

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

.card {
  background: var(--white);
  border: 1px solid #eadfcd;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0,0,0,.05);
  transition: transform .22s ease, box-shadow .22s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 34px rgba(0,0,0,.11);
}

.card-thumb {
  height: 170px;
  background: linear-gradient(135deg, var(--jungle), #4a7c6f);
}

.card-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }

.card-body { padding: 18px; }

.tag {
  display: inline-block;
  background: #fff4e8;
  color: #9a620d;
  border: 1px solid #f4d8b7;
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 700;
  padding: 4px 9px;
}

.card h2 { font-size: 1.23rem; line-height: 1.32; margin: 10px 0 8px; color: var(--dark); }
.card h2 a:hover { color: var(--jungle); }
.meta { color: var(--light-text); font-size: .84rem; margin-bottom: 10px; }
.excerpt { font-size: .95rem; line-height: 1.62; color: #575757; }

/* Post page */
.article-wrap { background: var(--sand); padding: 34px 0 70px; }
.article {
  max-width: 860px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid #eadfcd;
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 8px 24px rgba(0,0,0,.06);
}

.breadcrumb {
  font-size: .88rem;
  color: var(--jungle);
  font-weight: 600;
  margin-bottom: 12px;
}

.article h1 {
  font-size: clamp(1.8rem, 3.5vw, 2.7rem);
  line-height: 1.2;
  margin-bottom: 8px;
  color: var(--dark);
}

.article .meta { margin-bottom: 18px; }

.hero-media {
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 22px;
  border: 1px solid #eadfcd;
}
.hero-media img { width: 100%; max-height: 430px; object-fit: cover; display: block; }

.article p { line-height: 1.78; margin: 0 0 16px; font-size: 1.03rem; }
.article h2 { margin: 30px 0 10px; font-size: 1.5rem; color: var(--jungle); }
.article ul, .article ol { margin: 0 0 16px 22px; }
.article li { margin: 0 0 8px; line-height: 1.7; }

.note {
  background: #fff8f1;
  border: 1px solid #f5dfc1;
  border-radius: 12px;
  padding: 14px 16px;
  margin: 20px 0;
}

.cta {
  margin-top: 26px;
  border: 1px solid #cce9e4;
  background: #f0fbf9;
  border-radius: 12px;
  padding: 16px;
}

.cta strong { color: #11433c; }
.btns { margin-top: 11px; display: flex; gap: 10px; flex-wrap: wrap; }
.btn-solid { background: var(--jungle); color: #fff; }
.btn-solid:hover { background: #1f352b; }
.btn-linktree { background: #0ea5e9; color: #fff; }
.btn-linktree:hover { background: #0284c7; }

/* Footer parity */
.blog-footer {
  background: var(--dark);
  color: rgba(255,255,255,.65);
  padding: 34px 0;
  margin-top: 0;
}

.footer-logo {
  font-family: 'Playfair Display', serif;
  color: #fff;
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 8px;
}

.footer-links a { color: rgba(255,255,255,.65); font-size: .86rem; }
.footer-links a:hover { color: var(--gold); }

.small { font-size: .8rem; color: var(--light-text); }

@media (max-width: 820px) {
  .nav-links { display: none; }
  .article { padding: 20px; border-radius: 12px; }
  .container { padding: 0 16px; }
}
