@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400;1,600&family=Source+Serif+4:ital,opsz,wght@0,8..60,300;0,8..60,400;0,8..60,600;1,8..60,300;1,8..60,400&family=DM+Sans:wght@300;400;500&display=swap');

/* ── TOKENS ── */
:root {
  --ink: #1C1C1C;
  --parchment: #F4EFE6;
  --parchment2: #EDE5D8;
  --sienna: #C8502A;
  --sienna-d: #A83E1E;
  --forest: #2B4A3F;
  --gold: #D4A84B;
  --warm-grey: #7A6F63;
  --white: #FFFFFF;
  --border: rgba(28, 28, 28, 0.12);

  --serif-display: 'Playfair Display', Georgia, serif;
  --serif-body: 'Source Serif 4', Georgia, serif;
  --sans: 'DM Sans', system-ui, sans-serif;

  --nav-h: 68px;
  --max-w: 1180px;
  --col: 680px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--serif-body);
  background: var(--parchment);
  color: var(--ink);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

button {
  cursor: pointer;
  font-family: inherit;
  border: none;
  background: none;
}

/* ── GLOBAL NAV ── */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5vw;
  background: var(--parchment);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.4s;
}

.site-nav.raised {
  box-shadow: 0 2px 28px rgba(28, 28, 28, 0.07);
}

.nav-logo {
  font-family: var(--serif-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.01em;
}

.nav-logo span {
  color: var(--sienna);
  font-style: italic;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.2rem;
}

.nav-links a {
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
  opacity: 0.75;
  transition: opacity 0.2s, color 0.2s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  right: 100%;
  height: 1px;
  background: var(--sienna);
  transition: right 0.3s ease;
}

.nav-links a:hover {
  opacity: 1;
}

.nav-links a:hover::after {
  right: 0;
}

.nav-links a.active {
  opacity: 1;
  color: var(--sienna);
}

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  background: none;
  border: none;
}

.nav-burger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--ink);
  transition: 0.3s;
}

/* ── MOBILE NAV DRAWER ── */
.nav-drawer {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  background: var(--parchment);
  border-bottom: 1px solid var(--border);
  padding: 1.5rem 5vw 2rem;
  z-index: 199;
  flex-direction: column;
  gap: 1.2rem;
}

.nav-drawer.open {
  display: flex;
}

.nav-drawer a {
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
  opacity: 0.8;
}

/* ── LAYOUT HELPERS ── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 5vw;
}

.col-text {
  max-width: var(--col);
  margin: 0 auto;
}

/* ── SECTION LABELS ── */
.section-label {
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--warm-grey);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.section-label::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 1px;
  background: var(--sienna);
}

/* ── HEADINGS ── */
h1,
h2,
h3,
h4 {
  font-family: var(--serif-display);
  line-height: 1.2;
}

h1 {
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 700;
}

h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 600;
}

h3 {
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  font-weight: 600;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.85rem 1.8rem;
  border: 1.5px solid currentColor;
  transition: background 0.25s, color 0.25s;
}

.btn-filled {
  background: var(--sienna);
  color: var(--white);
  border-color: var(--sienna);
}

.btn-filled:hover {
  background: var(--sienna-d);
  border-color: var(--sienna-d);
}

.btn-outline {
  color: var(--ink);
}

.btn-outline:hover {
  background: var(--ink);
  color: var(--parchment);
}

.btn-light {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.6);
}

.btn-light:hover {
  background: var(--white);
  color: var(--ink);
}

/* Arrow icon on buttons */
.btn .arr {
  font-style: normal;
  transition: transform 0.25s;
}

.btn:hover .arr {
  transform: translateX(4px);
}

/* ── POST CARDS ── */
.post-card {
  display: block;
}

.post-card-img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.post-card-wrap {
  overflow: hidden;
}

.post-card:hover .post-card-img {
  transform: scale(1.04);
}

.post-card-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 1rem 0 0.5rem;
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--warm-grey);
}

.post-card-cat {
  color: var(--sienna);
  border-bottom: 1px solid var(--sienna);
  padding-bottom: 1px;
}

.post-card h3 {
  font-size: 1.15rem;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 0.5rem;
  transition: color 0.2s;
}

.post-card:hover h3 {
  color: var(--sienna);
}

.post-card p {
  font-size: 0.9rem;
  color: var(--warm-grey);
  line-height: 1.65;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ── FOOTER ── */
.site-footer {
  background: var(--ink);
  color: var(--parchment);
  padding: 5rem 5vw 2.5rem;
}

.footer-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(244, 239, 230, 0.12);
}

.footer-brand .nav-logo {
  color: var(--parchment);
  font-size: 1.35rem;
}

.footer-brand p {
  font-size: 0.9rem;
  color: rgba(244, 239, 230, 0.55);
  margin-top: 1rem;
  max-width: 280px;
  line-height: 1.7;
  font-family: var(--serif-body);
}

.footer-col h4 {
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(244, 239, 230, 0.45);
  margin-bottom: 1.2rem;
}

.footer-col a {
  display: block;
  font-family: var(--sans);
  font-size: 0.9rem;
  color: rgba(244, 239, 230, 0.7);
  margin-bottom: 0.7rem;
  transition: color 0.2s;
}

.footer-col a:hover {
  color: var(--parchment);
}

.footer-bottom {
  max-width: var(--max-w);
  margin: 2rem auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--sans);
  font-size: 0.78rem;
  color: rgba(244, 239, 230, 0.35);
}

/* ── DIVIDERS ── */
.ornament {
  text-align: center;
  color: var(--sienna);
  font-size: 1.2rem;
  letter-spacing: 0.5rem;
  margin: 1rem 0;
  opacity: 0.5;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .nav-links {
    display: none;
  }

  .nav-burger {
    display: flex;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 560px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }
}