@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=Jost:wght@300;400;500&display=swap');

:root {
  --cream: #FDF8EE;
  --cream-dark: #F5EDD8;
  --coral: #D94F35;
  --coral-light: #F0A090;
  --gold: #C4922A;
  --gold-light: #E8C97A;
  --ink: #1A1410;
  --ink-muted: #5C4A3A;
  --ink-light: #9C8A7A;
  --white: #FFFDF8;
  --line: rgba(196,146,42,0.25);
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.7;
}

.sans { font-family: 'Jost', sans-serif; }

header.site-header {
  background: rgba(253, 248, 238, 0.92);
  backdrop-filter: blur(8px);
  padding: 1.2rem 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 0.5px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 100;
}
header.site-header a.logo {
  font-family: 'Cormorant Garamond', serif;
  color: var(--coral);
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-decoration: none;
}
header.site-header nav a {
  font-family: 'Jost', sans-serif;
  color: var(--ink-muted);
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-left: 2.5rem;
  transition: color 0.2s;
}
header.site-header nav a:hover { color: var(--coral); }
header.site-header nav a.current { color: var(--coral); }

.container {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 6vw;
}

.blog-hero {
  background: var(--cream-dark);
  color: var(--ink);
  padding: 5rem 6vw 4rem;
  text-align: left;
  border-bottom: 0.5px solid var(--line);
}
.blog-hero .eyebrow {
  font-family: 'Jost', sans-serif;
  color: var(--gold);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.blog-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(2.2rem, 5vw, 3rem);
  color: var(--ink);
  margin: 0 0 0.9rem 0;
  max-width: 700px;
  line-height: 1.15;
}
.blog-hero p {
  font-family: 'Jost', sans-serif;
  color: var(--ink-muted);
  font-size: 0.95rem;
  max-width: 560px;
  margin: 0;
  line-height: 1.8;
}

.post-list {
  max-width: 900px;
  margin: 0 auto;
  padding: 3.5rem 6vw 6rem;
}
.post-card {
  border-bottom: 0.5px solid var(--line);
  padding: 2rem 0;
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
}
.post-card:first-child { padding-top: 0; }
.post-card .card-thumb {
  width: 160px;
  height: 110px;
  object-fit: cover;
  border-radius: 2px;
  flex-shrink: 0;
  background: var(--cream-dark);
}
.post-card a.title-link {
  font-family: 'Cormorant Garamond', serif;
  color: var(--ink);
  text-decoration: none;
  font-size: 1.4rem;
  font-weight: 600;
  display: block;
  margin-bottom: 0.5rem;
  line-height: 1.3;
}
.post-card a.title-link:hover { color: var(--coral); }
.post-card .excerpt {
  font-family: 'Jost', sans-serif;
  color: var(--ink-muted);
  font-size: 0.88rem;
  max-width: 620px;
  margin: 0 0 10px 0;
  line-height: 1.7;
}
.post-card .meta {
  font-family: 'Jost', sans-serif;
  color: var(--ink-light);
  font-size: 0.75rem;
  letter-spacing: 0.05em;
}
.post-card .tag {
  display: inline-block;
  font-family: 'Jost', sans-serif;
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--cream-dark);
  border-radius: 20px;
  padding: 3px 11px;
  margin-right: 8px;
}

/* Single post */
.post-header {
  padding: 4rem 6vw 2rem;
  border-bottom: 0.5px solid var(--line);
}
.post-header .container { max-width: 720px; }
.post-header .back-link {
  font-family: 'Jost', sans-serif;
  color: var(--gold);
  text-decoration: none;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  display: inline-block;
  margin-bottom: 1.5rem;
}
.post-header .back-link:hover { color: var(--coral); }
.post-header .tag {
  display: inline-block;
  font-family: 'Jost', sans-serif;
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--cream-dark);
  border-radius: 20px;
  padding: 3px 11px;
  margin-bottom: 1.2rem;
}
.post-header h1 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(2rem, 4vw, 2.6rem);
  color: var(--ink);
  margin: 0 0 1rem 0;
  line-height: 1.25;
}
.post-header .byline {
  font-family: 'Jost', sans-serif;
  color: var(--ink-light);
  font-size: 0.8rem;
  letter-spacing: 0.03em;
}
.post-header .byline strong { color: var(--coral); font-weight: 500; }

.post-hero {
  padding: 2rem 6vw 0;
}
.post-hero .container { max-width: 720px; }
.post-hero .hero-img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  border-radius: 2px;
  display: block;
  background: var(--cream-dark);
}

.post-body {
  padding: 2.5rem 6vw 2rem;
}
.post-body .container { max-width: 700px; }
.post-body p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--ink);
  margin: 0 0 1.4rem 0;
  line-height: 1.85;
}
.post-body h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 1.6rem;
  color: var(--ink);
  margin: 2.5rem 0 1rem 0;
}
.post-body h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 1.25rem;
  color: var(--ink);
  margin: 1.9rem 0 0.75rem 0;
}
.post-body blockquote {
  margin: 1.9rem 0;
  padding: 0.25rem 0 0.25rem 1.5rem;
  border-left: 2px solid var(--gold);
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: var(--coral);
  font-size: 1.3rem;
}
.post-body ul, .post-body ol {
  font-family: 'Jost', sans-serif;
  font-size: 0.95rem;
  color: var(--ink-muted);
  padding-left: 20px;
  margin: 0 0 1.4rem 0;
}
.post-body li { margin-bottom: 8px; }

.cta-box {
  background: var(--cream-dark);
  border: 0.5px solid var(--line);
  border-radius: 2px;
  padding: 2rem 2.1rem;
  margin: 3.2rem 0 1.2rem 0;
}
.cta-box h3 {
  margin-top: 0;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 1.25rem;
  color: var(--ink);
}
.cta-box p {
  font-family: 'Jost', sans-serif;
  font-size: 0.9rem;
  color: var(--ink-muted);
  margin: 0 0 1.2rem 0;
  line-height: 1.7;
}
.cta-box a.btn {
  display: inline-block;
  background: transparent;
  border: 1px solid var(--coral);
  color: var(--coral);
  text-decoration: none;
  font-family: 'Jost', sans-serif;
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.8rem 1.8rem;
  transition: all 0.25s;
}
.cta-box a.btn:hover { background: var(--coral); color: var(--white); }

footer.site-footer {
  background: var(--cream);
  color: var(--ink-light);
  text-align: center;
  padding: 2rem 6vw;
  font-family: 'Jost', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  border-top: 0.5px solid var(--line);
}

@media (max-width: 640px) {
  header.site-header { padding: 1rem 1.5rem; }
  header.site-header nav a { margin-left: 1.2rem; }
  .blog-hero { padding: 3.5rem 1.5rem 2.5rem; }
  .post-header { padding: 3rem 1.5rem 1.5rem; }
  .post-hero { padding: 1.5rem 1.5rem 0; }
  .post-body { padding: 2rem 1.5rem 1.5rem; }
  .post-list { padding: 2.5rem 1.5rem 4rem; }
  .post-body p { font-size: 1.1rem; }
  .post-card { flex-direction: column; gap: 6px; align-items: stretch; }
  .post-card .card-thumb { width: 100%; height: 180px; order: -1; }
  .post-hero .hero-img { height: 200px; }
}
