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

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

:root {
  --ink: #1a1612;
  --parchment: #f5f0e8;
  --warm-mid: #8b7355;
  --gold: #b8912a;
  --faint: #e8e0d0;
  --red-accent: #8b2e2e;
  --hover: #6b1e1e;
}

html { scroll-behavior: smooth; }

body {
  background-color: var(--parchment);
  color: var(--ink);
  font-family: 'Spectral', Georgia, serif;
  font-weight: 300;
  font-size: 18px;
  line-height: 1.85;
  min-height: 100vh;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 1000;
  opacity: 0.5;
}

/* ─── HEADER ─── */
header {
  border-bottom: 1px solid var(--warm-mid);
  padding: 2.5rem 0 2rem;
  text-align: center;
  background: linear-gradient(to bottom, #ede5d4, var(--parchment));
}

.blog-eyebrow {
  font-family: 'Spectral', serif;
  font-size: 0.7rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--warm-mid);
  margin-bottom: 1rem;
}

.blog-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 300;
  font-size: clamp(2.8rem, 6vw, 5rem);
  letter-spacing: 0.04em;
  color: var(--ink);
  line-height: 1.05;
  text-decoration: none;
  display: inline-block;
}

.blog-title span {
  color: var(--red-accent);
  font-style: italic;
}

.header-rule {
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin: 1.2rem auto 0;
}

/* ─── NAV ─── */
nav {
  text-align: center;
  padding: 1rem 0;
  border-bottom: 1px solid var(--faint);
  background: var(--parchment);
}

nav a {
  font-family: 'Spectral', serif;
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--warm-mid);
  text-decoration: none;
  margin: 0 1.2rem;
  transition: color 0.2s ease;
}

nav a:hover { color: var(--red-accent); }
nav a.active { color: var(--red-accent); border-bottom: 1px solid var(--gold); padding-bottom: 2px; }

/* ─── LANG TOGGLE ─── */
.lang-toggle {
  text-align: center;
  padding: 0.6rem 0;
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--warm-mid);
}

.lang-toggle a {
  color: var(--warm-mid);
  text-decoration: none;
  margin: 0 0.5rem;
  transition: color 0.2s;
}

.lang-toggle a:hover, .lang-toggle a.active { color: var(--red-accent); }
.lang-toggle span { color: var(--faint); }

/* ─── PAGE WRAPPER ─── */
.page-wrapper {
  max-width: 680px;
  margin: 0 auto;
  padding: 4rem 2rem 8rem;
  animation: fadeUp 1s ease both;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ─── HOMEPAGE ─── */
.home-intro {
  margin-bottom: 4rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--faint);
}

.home-intro p {
  font-size: 1.05rem;
  color: #3a3028;
  margin-bottom: 1.4rem;
}

.home-intro p:last-child { margin-bottom: 0; }

.section-label {
  font-size: 0.68rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2rem;
  display: block;
}

.article-list { list-style: none; }

.article-list li {
  padding: 2rem 0;
  border-bottom: 1px solid var(--faint);
}

.article-list li:first-child { padding-top: 0; }

.article-list .category {
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--red-accent);
  margin-bottom: 0.5rem;
  display: block;
}

.article-list h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 400;
  font-size: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.15;
  margin-bottom: 0.4rem;
}

.article-list h2 a {
  color: var(--ink);
  text-decoration: none;
  transition: color 0.2s;
}

.article-list h2 a:hover { color: var(--red-accent); }

.article-list .subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1rem;
  color: var(--warm-mid);
  margin-bottom: 0.8rem;
}

.article-list .meta {
  font-size: 0.72rem;
  color: var(--warm-mid);
  letter-spacing: 0.08em;
}

.read-more {
  display: inline-block;
  margin-top: 0.8rem;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red-accent);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s;
}

.read-more:hover { border-color: var(--gold); }

/* ─── ARTICLE ─── */
.article-category {
  font-size: 0.68rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--red-accent);
  margin-bottom: 1.6rem;
  display: block;
}

h1.article-headline {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 400;
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  line-height: 1.12;
  color: var(--ink);
  margin-bottom: 0.6rem;
  letter-spacing: 0.01em;
}

.article-subtitle {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-size: 1.25rem;
  color: var(--warm-mid);
  margin-bottom: 2.5rem;
  line-height: 1.5;
}

.article-meta {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  flex-wrap: wrap;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--faint);
  margin-bottom: 3rem;
  font-size: 0.8rem;
  color: var(--warm-mid);
  letter-spacing: 0.05em;
}

.meta-dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

.article-body > p:first-of-type::first-letter {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 5.2rem;
  font-weight: 600;
  float: left;
  line-height: 0.78;
  margin-right: 0.1em;
  margin-top: 0.08em;
  color: var(--red-accent);
}

.article-body p {
  margin-bottom: 1.8rem;
  color: #2a2520;
  font-size: 1.05rem;
}

.article-body p:last-child { margin-bottom: 0; }

.pull-quote {
  margin: 3.5rem -1.5rem;
  padding: 2.2rem 2.5rem;
  border-left: 3px solid var(--gold);
  background: rgba(184, 145, 42, 0.05);
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-size: 1.5rem;
  line-height: 1.5;
  color: var(--ink);
  letter-spacing: 0.01em;
}

.ornament {
  text-align: center;
  color: var(--gold);
  font-size: 1.1rem;
  letter-spacing: 0.4em;
  margin: 3rem 0;
  opacity: 0.7;
}

.article-nav {
  margin-top: 5rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--faint);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.article-nav a {
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--warm-mid);
  text-decoration: none;
  transition: color 0.2s;
}

.article-nav a:hover { color: var(--red-accent); }

/* ─── STATIC PAGES ─── */
.page-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 400;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--ink);
  margin-bottom: 2.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--faint);
}

.page-body p {
  margin-bottom: 1.8rem;
  color: #2a2520;
  font-size: 1.05rem;
}

.page-body p:last-child { margin-bottom: 0; }

/* ─── CONTACT FORM ─── */
.contact-form { margin-top: 3rem; }

.contact-form label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--warm-mid);
  margin-bottom: 0.5rem;
  margin-top: 1.8rem;
}

.contact-form label:first-child { margin-top: 0; }

.contact-form input,
.contact-form textarea {
  width: 100%;
  background: rgba(255,255,255,0.6);
  border: 1px solid var(--faint);
  border-radius: 2px;
  padding: 0.8rem 1rem;
  font-family: 'Spectral', serif;
  font-size: 0.95rem;
  color: var(--ink);
  outline: none;
  transition: border-color 0.2s;
  -webkit-appearance: none;
}

.contact-form input:focus,
.contact-form textarea:focus { border-color: var(--gold); }

.contact-form textarea { min-height: 160px; resize: vertical; }

.contact-form button {
  margin-top: 2rem;
  background: var(--red-accent);
  color: var(--parchment);
  border: none;
  padding: 0.9rem 2.5rem;
  font-family: 'Spectral', serif;
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s;
  border-radius: 1px;
}

.contact-form button:hover { background: var(--hover); }

.form-success {
  display: none;
  margin-top: 1.5rem;
  padding: 1rem 1.5rem;
  background: rgba(184,145,42,0.08);
  border-left: 3px solid var(--gold);
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.1rem;
  color: var(--ink);
}

/* ─── FOOTER ─── */
footer {
  border-top: 1px solid var(--faint);
  padding: 2.5rem;
  text-align: center;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--warm-mid);
}

footer a {
  color: var(--warm-mid);
  text-decoration: none;
  transition: color 0.2s;
}

footer a:hover { color: var(--red-accent); }

/* ─── RESPONSIVE ─── */
@media (max-width: 600px) {
  .pull-quote { margin: 2.5rem 0; }
  .article-body > p:first-of-type::first-letter { font-size: 4rem; }
  nav a { margin: 0 0.7rem; font-size: 0.65rem; }
}
