/* Regale Blog — Warm, Intimate, Human */
*, *::before, *::after { box-sizing: border-box; }

:root {
  --cream:       #FFFDF7;
  --warm-white:  #F7F3EC;
  --text:        #2C2C2C;
  --text-light:  #6B6B6B;
  --accent:      #C17F4C;
  --accent-dark: #A06535;
  --border:      #E8E0D0;
  --max-width:   680px;
}

html { font-size: 18px; }

body {
  background: var(--cream);
  color: var(--text);
  font-family: Georgia, 'Times New Roman', serif;
  line-height: 1.85;
  margin: 0;
  padding: 0;
}

/* ─── Header ─── */
.site-header {
  border-bottom: 1px solid var(--border);
  padding: 1.25rem 0;
  background: var(--cream);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.site-logo { text-decoration: none; }

.logo-text {
  font-family: Georgia, serif;
  font-size: 1.25rem;
  font-weight: normal;
  color: var(--text);
  letter-spacing: 0.04em;
}

nav { display: flex; gap: 1.5rem; align-items: center; }

nav a {
  color: var(--text-light);
  text-decoration: none;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 0.875rem;
}

nav a:hover { color: var(--text); }

.cta-link {
  background: var(--accent) !important;
  color: white !important;
  padding: 0.45rem 1.1rem;
  border-radius: 4px;
  font-size: 0.825rem !important;
  transition: background 0.15s;
}
.cta-link:hover { background: var(--accent-dark) !important; }

/* ─── Layout ─── */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.site-main { padding: 3.5rem 0 6rem; }

/* ─── Blog list ─── */
.blog-header {
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
}

.blog-header h1 {
  font-size: 2rem;
  font-weight: normal;
  margin: 0 0 0.5rem;
  letter-spacing: -0.01em;
}

.blog-tagline {
  color: var(--text-light);
  margin: 0;
  font-style: italic;
  font-size: 1rem;
}

.post-list {
  display: flex;
  flex-direction: column;
  gap: 2.75rem;
}

.post-card {
  padding-bottom: 2.75rem;
  border-bottom: 1px solid var(--border);
}
.post-card:last-child { border-bottom: none; }

.post-meta {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 0.775rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.6rem;
}

.post-card h2 {
  font-size: 1.45rem;
  font-weight: normal;
  margin: 0 0 0.85rem;
  line-height: 1.35;
}

.post-card h2 a {
  color: var(--text);
  text-decoration: none;
  transition: color 0.15s;
}
.post-card h2 a:hover { color: var(--accent); }

.post-excerpt {
  color: var(--text-light);
  margin: 0 0 1.1rem;
  line-height: 1.7;
  font-size: 0.975rem;
}

.read-more {
  color: var(--accent);
  text-decoration: none;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 0.875rem;
}
.read-more:hover { color: var(--accent-dark); }

/* ─── Single post ─── */
.post-header {
  margin-bottom: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
}

.post-header h1 {
  font-size: 2rem;
  font-weight: normal;
  line-height: 1.3;
  margin: 0.6rem 0 0;
  letter-spacing: -0.01em;
}

.post-description {
  color: var(--text-light);
  font-size: 1.05rem;
  font-style: italic;
  margin: 1rem 0 0;
  line-height: 1.6;
}

.post-content { font-size: 1rem; line-height: 1.9; }

.post-content p { margin: 0 0 1.6rem; }

.post-content h2 {
  font-size: 1.25rem;
  font-weight: normal;
  margin: 2.75rem 0 1rem;
  letter-spacing: -0.01em;
}

.post-content h3 {
  font-size: 1.05rem;
  margin: 2rem 0 0.75rem;
}

.post-content blockquote {
  border-left: 3px solid var(--accent);
  margin: 2rem 0;
  padding: 0.25rem 0 0.25rem 1.5rem;
  color: var(--text-light);
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.7;
}

.post-content a { color: var(--accent); }
.post-content a:hover { color: var(--accent-dark); }

/* ─── Post CTA ─── */
.post-footer {
  margin-top: 3.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.post-cta {
  text-align: center;
  padding: 2.25rem 2rem;
  background: var(--warm-white);
  border-radius: 8px;
  border: 1px solid var(--border);
}

.post-cta p {
  margin: 0 0 0.5rem;
  font-style: italic;
  color: var(--text);
  font-size: 1.05rem;
}

.post-cta-sub {
  color: var(--text-light) !important;
  font-size: 0.9rem !important;
  margin-bottom: 1.5rem !important;
}

.cta-button {
  display: inline-block;
  background: var(--accent);
  color: white;
  padding: 0.8rem 2.25rem;
  border-radius: 4px;
  text-decoration: none;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 0.95rem;
  transition: background 0.15s;
}
.cta-button:hover { background: var(--accent-dark); }

/* ─── Footer ─── */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 2rem 0;
  text-align: center;
  color: var(--text-light);
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 0.85rem;
}
.site-footer a { color: var(--accent); text-decoration: none; }
.footer-copy { margin-top: 0.4rem; color: var(--border); }


/* ─── Images ─── */
.post-content img {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  border-radius: 4px;
  display: block;
}
.post-content p:has(img) {
  margin: 0 0 0.5rem 0;
}
.post-content p em:only-child {
  display: block;
  font-size: 0.8rem;
  color: var(--text-light);
  margin-bottom: 2rem;
  font-style: normal;
}

/* ─── Mobile ─── */
@media (max-width: 600px) {
  html { font-size: 16px; }
  .site-header .container { flex-direction: column; gap: 1rem; align-items: flex-start; }
  .blog-header h1 { font-size: 1.6rem; }
  .post-header h1 { font-size: 1.6rem; }
  .post-cta { padding: 1.5rem 1.25rem; }
}
