/* =============================================
   Kitchen of Pomegranates — Design System
   ============================================= */
:root {
  --bg: #F8F4EF;
  --bg-warm: #F2EBE1;
  --text: #2C1810;
  --text-light: #6B5A4E;
  --text-muted: #A89588;
  --accent: #8B1A3C;
  --accent-light: #C4704B;
  --sage: #6B7B5E;
  --gold: #C5A46B;
  --cream: #EDE4D8;
  --white: #FFFDF9;
  --ink: #1A0D08;
  --border: rgba(44, 24, 16, 0.12);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: 'DM Sans', system-ui, sans-serif;
  font-weight: 400;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

/* ---- NAV ---- */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.25rem 2.5rem;
  display: flex;
  align-items: center;
  background: rgba(248, 244, 239, 0.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--ink);
}
.nav-tagline {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 300;
}
.nav-cta {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
  text-decoration: none;
  padding: 0.5rem 1.2rem;
  border: 1.5px solid var(--accent);
  border-radius: 2rem;
  transition: background 0.2s, color 0.2s;
}
.nav-cta:hover { background: var(--accent); color: #fff; }

/* ---- HERO ---- */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 7rem 2rem 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero-art-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.art-circle {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(139, 26, 60, 0.07);
}
.art-c1 { width: 700px; height: 700px; top: -200px; right: -180px; }
.art-c2 { width: 480px; height: 480px; bottom: -100px; left: -120px; }
.art-c3 { width: 260px; height: 260px; top: 40%; left: 8%; border-color: rgba(107, 123, 94, 0.1); }

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 680px;
}

.cover-img {
  width: 100%;
  max-width: 520px;
  border-radius: 12px;
  margin-bottom: 2.5rem;
  box-shadow: 0 24px 80px rgba(44, 24, 16, 0.14);
  display: block;
}

.hero-eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent-light);
  font-weight: 500;
  margin-bottom: 1rem;
}
.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.8rem, 6vw, 4.4rem);
  font-weight: 600;
  color: var(--ink);
  line-height: 1.1;
  margin-bottom: 1.2rem;
  letter-spacing: -0.01em;
}
.hero-sub {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 500px;
  margin: 0 auto 2.5rem;
  line-height: 1.75;
}

/* ---- NEWSLETTER FORM ---- */
.signup-form {
  display: flex;
  gap: 0.6rem;
  max-width: 420px;
  margin: 0 auto;
  flex-wrap: wrap;
  justify-content: center;
}
.signup-form input[type="email"] {
  flex: 1;
  min-width: 200px;
  padding: 0.75rem 1.2rem;
  border: 1.5px solid var(--border);
  border-radius: 2rem;
  background: var(--white);
  color: var(--text);
  font-family: inherit;
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.2s;
}
.signup-form input[type="email"]:focus { border-color: var(--accent); }
.signup-form input[type="email"]::placeholder { color: var(--text-muted); }
.btn-subscribe {
  padding: 0.75rem 1.8rem;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 2rem;
  font-family: inherit;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  white-space: nowrap;
}
.btn-subscribe:hover { background: #7a1535; transform: translateY(-1px); }
.form-note {
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-top: 0.8rem;
  text-align: center;
}

/* ---- DIVIDER ---- */
.section-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 4rem 2rem 3rem;
  color: var(--text-muted);
}
.divider-line {
  height: 1px;
  width: 60px;
  background: var(--border);
}
.divider-diamond {
  width: 8px; height: 8px;
  background: var(--gold);
  transform: rotate(45deg);
  flex-shrink: 0;
}

/* ---- POST CARD ---- */
.posts-section {
  padding: 2rem 2rem 5rem;
}
.posts-inner {
  max-width: 680px;
  margin: 0 auto;
}
.section-label {
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1.8rem;
  font-weight: 400;
}
.pinned-badge {
  display: inline-block;
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: var(--cream);
  color: var(--accent-light);
  padding: 0.25rem 0.7rem;
  border-radius: 2rem;
  margin-bottom: 0.8rem;
  border: 1px solid rgba(196, 112, 75, 0.25);
}
.post-card {
  background: var(--white);
  border-radius: 16px;
  padding: 2.2rem;
  border: 1px solid var(--border);
  box-shadow: 0 2px 24px rgba(44, 24, 16, 0.06);
}
.post-card h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.7rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.25;
  margin-bottom: 0.6rem;
}
.post-date {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 1.2rem;
  letter-spacing: 0.03em;
}
.post-excerpt {
  font-size: 0.97rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 1.4rem;
}
.post-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.4rem;
}
.tag {
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  border-radius: 2rem;
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-weight: 500;
}
.read-more {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  letter-spacing: 0.03em;
  transition: gap 0.2s;
}
.read-more:hover { gap: 0.7rem; }

/* ---- FOOTER ---- */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 2.5rem 2rem;
  text-align: center;
  background: var(--bg-warm);
}
.footer-inner { max-width: 680px; margin: 0 auto; }
.footer-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 0.5rem;
}
.footer-links {
  display: flex;
  gap: 1.8rem;
  justify-content: center;
  margin-top: 1rem;
}
.footer-links a {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--accent); }
.footer-copy {
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-top: 1.2rem;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 600px) {
  .site-nav { padding: 1rem 1.5rem; }
  .hero { padding: 6rem 1.5rem 3rem; }
  .post-card { padding: 1.5rem; }
  .signup-form { flex-direction: column; }
  .signup-form input[type="email"], .btn-subscribe { width: 100%; border-radius: 8px; }
  .btn-subscribe { padding: 0.85rem; }
}