
:root {
  --base: #EBDED4;
  --base-2: #F7F1EA;
  --paper: #FFFBF6;
  --brown: #6B472B;
  --brown-dark: #4E321F;
  --ink: #1D1D1B;
  --muted: #76695F;
  --line: rgba(107, 71, 43, .18);
  --max: 1180px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: linear-gradient(180deg, #FFFBF6 0%, #F7F1EA 100%);
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 251, 246, .94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}
.site-header__inner {
  min-height: 92px;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.brand { text-decoration: none; display: inline-flex; flex-direction: column; gap: 2px; }
.brand__name { font-family: "Fraunces", Georgia, serif; font-size: 28px; font-weight: 500; letter-spacing: -.03em; }
.brand__place { font-size: 10px; text-transform: uppercase; letter-spacing: .18em; color: var(--muted); font-weight: 600; }
.main-nav__list { list-style: none; display: flex; align-items: center; gap: 26px; margin: 0; padding: 0; font-size: 14px; font-weight: 500; }
.main-nav a { text-decoration: none; color: #2C2926; transition: color .2s ease; }
.main-nav a:hover { color: var(--brown); }
.header-cta, .btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 22px;
  border-radius: 999px;
  background: var(--brown);
  color: var(--paper);
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  transition: background .2s ease, transform .2s ease;
}
.header-cta:hover, .btn-primary:hover { background: var(--brown-dark); transform: translateY(-1px); }

/* Menu mobile (hamburguer) */
.header-burger {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--ink);
  position: relative;
  cursor: pointer;
  flex: 0 0 auto;
}
.header-burger span {
  position: absolute;
  left: 11px;
  right: 11px;
  height: 1.6px;
  background: currentColor;
  border-radius: 999px;
  transition: transform .3s ease, opacity .2s ease;
}
.header-burger span:nth-child(1) { top: 16px; }
.header-burger span:nth-child(2) { top: 22px; }
.header-burger span:nth-child(3) { top: 28px; }
body.menu-open .header-burger span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
body.menu-open .header-burger span:nth-child(2) { opacity: 0; }
body.menu-open .header-burger span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.header-mobile {
  position: fixed;
  inset: 0;
  z-index: 62;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 28px;
  padding: 96px 28px 44px;
  background: var(--paper);
  transform: translateY(-100%);
  visibility: hidden;
  transition: transform .35s ease, visibility 0s linear .35s;
}
body.menu-open .header-mobile {
  transform: translateY(0);
  visibility: visible;
  transition: transform .35s ease;
}
.header-mobile nav { display: grid; }
.header-mobile nav a {
  display: block;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(24px, 7vw, 36px);
  line-height: 1;
  color: var(--ink);
}
.header-mobile-actions { display: flex; }
.header-mobile-actions .header-cta { width: 100%; }
.page-wrap { width: min(var(--max), calc(100% - 48px)); margin: 0 auto; }
.page-hero { padding: 108px 0 58px; background: var(--base); }
.eyebrow { color: var(--brown); text-transform: uppercase; letter-spacing: .16em; font-size: 12px; font-weight: 700; margin: 0 0 18px; }
h1, h2 { font-family: "Fraunces", Georgia, serif; letter-spacing: -.04em; line-height: .98; margin: 0; }
h1 { font-size: clamp(44px, 7vw, 84px); max-width: 850px; }
h2 { font-size: clamp(32px, 4vw, 54px); }
.page-content { padding: 70px 0; }
.page-content__inner { max-width: 820px; font-size: 18px; line-height: 1.72; color: #2C2926; }
.page-content__inner a { color: var(--brown); font-weight: 700; }
.page-content__inner img { max-width: 100%; height: auto; border-radius: 24px; }
.page-cta { padding: 20px 0 90px; }
.page-cta__card { padding: 52px; border-radius: 34px; background: var(--paper); border: 1px solid var(--line); box-shadow: 0 20px 70px rgba(54,35,22,.09); }
.page-cta__card p { color: var(--muted); font-size: 18px; max-width: 640px; }
.site-footer { background: var(--brown-dark); color: var(--paper); padding: 48px 0; }
.site-footer__inner { width: min(1180px, calc(100% - 48px)); margin: 0 auto; display: flex; justify-content: space-between; gap: 32px; color: rgba(255,251,246,.8); }
.site-footer strong { color: var(--paper); font-family: "Fraunces", Georgia, serif; font-size: 26px; font-weight: 500; }
.post-card { padding: 32px 0; border-bottom: 1px solid var(--line); }
.post-card h2 { font-size: 36px; }
@media (max-width: 900px) {
  .site-header__inner { min-height: 76px; padding: 0 24px; }
  .main-nav { display: none; }
  .site-header__inner > .header-cta { display: none; }
  .header-burger { display: block; }
  .brand__name { font-size: 24px; }
  .page-hero { padding: 78px 0 44px; }
  .page-cta__card { padding: 34px 26px; }
  .site-footer__inner { flex-direction: column; }
}
