/* La Bergerie — alpine travel journal */
:root {
  --ink: #1f2730;
  --ink-soft: #5b6573;
  --paper: #ffffff;
  --cream: #f6f1e8;
  --accent: #2b5a73;
  --accent-warm: #b8804a;
  --line: #e2dccf;
  --max-width: 740px;
}

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

body {
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}

a { color: var(--accent); text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--accent-warm); }

header.site {
  background: var(--cream);
  padding: 36px 24px 24px;
  text-align: center;
  border-bottom: 1px solid var(--line);
}
header.site .brand {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 700;
  font-size: 32px;
  font-style: italic;
  letter-spacing: -0.5px;
  color: var(--ink);
}
header.site .brand a { color: inherit; text-decoration: none; }
header.site .tagline {
  font-size: 13px;
  color: var(--ink-soft);
  margin-top: 6px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
header.site nav { margin-top: 18px; }
header.site nav a {
  margin: 0 14px;
  font-size: 14px;
  color: var(--ink-soft);
  text-decoration: none;
}
header.site nav a:hover { color: var(--accent); }

main {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 48px 24px 70px;
}

h1.article-title {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 14px;
  color: var(--ink);
}

.byline {
  font-size: 13px;
  color: var(--ink-soft);
  margin-bottom: 30px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}
.byline .author { color: var(--ink); font-weight: 600; }

.hero-image {
  width: 100%;
  aspect-ratio: 3/2;
  object-fit: cover;
  margin: 0 0 12px;
  display: block;
  border-radius: 2px;
}
.hero-caption {
  font-size: 12px;
  color: var(--ink-soft);
  margin-bottom: 32px;
  font-style: italic;
  text-align: center;
}

article p { margin-bottom: 20px; }
article h2 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 26px;
  font-weight: 700;
  margin: 40px 0 14px;
  color: var(--ink);
}
article h3 {
  font-size: 18px;
  font-weight: 700;
  margin: 28px 0 10px;
  color: var(--ink);
}
article ul, article ol { margin: 16px 0 24px 26px; }
article li { margin-bottom: 8px; }
article blockquote {
  border-left: 3px solid var(--accent-warm);
  padding: 6px 0 6px 20px;
  margin: 24px 0;
  color: var(--ink-soft);
  font-style: italic;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 19px;
}

.up-next {
  background: var(--cream);
  margin-top: 60px;
  padding: 28px 24px;
  border-radius: 2px;
}
.up-next h2 {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--ink-soft);
  margin: 0 0 14px;
  font-family: inherit;
}
.up-next ul { list-style: none; margin: 0; padding: 0; }
.up-next li { margin-bottom: 10px; font-size: 16px; }

/* Homepage */
.hero {
  text-align: center;
  padding: 50px 20px 40px;
  background: var(--cream);
  border-bottom: 1px solid var(--line);
  margin-bottom: 50px;
}
.hero h1 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 46px;
  font-weight: 700;
  font-style: italic;
  letter-spacing: -0.5px;
  line-height: 1.1;
  margin-bottom: 18px;
}
.hero p {
  font-size: 18px;
  color: var(--ink-soft);
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.6;
}

.article-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
.article-card {
  display: block;
  text-decoration: none;
  color: inherit;
  padding-bottom: 36px;
  border-bottom: 1px solid var(--line);
}
.article-card:last-child { border-bottom: none; }
.article-card:hover h2 { color: var(--accent); }
.article-card img {
  width: 100%;
  aspect-ratio: 3/2;
  object-fit: cover;
  margin-bottom: 18px;
  border-radius: 2px;
}
.article-card h2 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 26px;
  font-weight: 700;
  line-height: 1.25;
  color: var(--ink);
  margin-bottom: 10px;
  transition: color 0.15s;
}
.article-card .excerpt {
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.6;
}
.article-card .meta {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--accent-warm);
  margin-bottom: 8px;
}

footer.site {
  border-top: 1px solid var(--line);
  margin-top: 70px;
  padding: 36px 24px;
  text-align: center;
  font-size: 13px;
  color: var(--ink-soft);
  background: var(--cream);
}
footer.site a {
  color: var(--ink-soft);
  margin: 0 8px;
}

@media (min-width: 720px) {
  body { font-size: 18px; }
  h1.article-title { font-size: 44px; }
  .hero h1 { font-size: 58px; }
  article h2 { font-size: 30px; }
}
