/* ── VARIABLES ── */
:root {
  --cream:    #f7f3ec;
  --parchment:#ede8de;
  --warm-mid: #d4c9b4;
  --forest:   #2d4a3e;
  --forest-dk:#1e3329;
  --forest-lt:#3d6354;
  --terra:    #b85c38;
  --terra-lt: #d4764f;
  --sand:     #c4a882;
  --sand-lt:  #dbc9a8;
  --ink:      #1a1612;
  --ink-mid:  #3d3530;
  --muted:    #7a6e62;
  --serif-d:  'Playfair Display', Georgia, serif;
  --serif-b:  'Libre Baskerville', Georgia, serif;
  --sans:     'Outfit', sans-serif;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.025'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 999;
  opacity: 0.6;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.4rem 3rem;
  background: rgba(247,243,236,0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--warm-mid);
  transition: padding 0.3s;
}

.nav-logo {
  font-family: var(--serif-d);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--forest);
  text-decoration: none;
  letter-spacing: 0.02em;
}
.nav-logo .dot { color: var(--terra); }

.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-mid);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--terra); }

.nav-ig {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--forest);
  text-decoration: none;
  border: 1.5px solid var(--forest);
  padding: 0.45rem 1rem;
  border-radius: 2px;
  transition: all 0.2s;
}
.nav-ig:hover { background: var(--forest); color: var(--cream); }

/* ── HERO ── */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  padding-bottom: 5rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to right,
    rgba(20,30,25,0.82) 0%,
    rgba(20,30,25,0.6) 50%,
    rgba(20,30,25,0.1) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 620px;
  padding: 8rem 3rem 0;
}

.hero-eyebrow {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--terra-lt);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: var(--terra-lt);
  border-radius: 2px;
}

h1.hero-title {
  font-family: var(--serif-d);
  font-weight: 700;
  font-size: clamp(3.5rem, 7vw, 6.5rem);
  line-height: 1.0;
  color: var(--cream);
  margin-bottom: 0.35em;
}
h1.hero-title em { font-style: italic; color: var(--terra-lt); }

.hero-tagline {
  font-family: var(--serif-b);
  font-style: italic;
  font-size: 1.2rem;
  color: rgba(247,243,236,0.75);
  margin-bottom: 1.5rem;
  line-height: 1.6;
  max-width: 480px;
}

.hero-bio {
  font-size: 0.95rem;
  color: rgba(247,243,236,0.65);
  line-height: 1.8;
  max-width: 460px;
  margin-bottom: 2.5rem;
}

.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.photo-credit {
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 3;
  background: rgba(20,30,25,0.45);
  font-family: var(--sans);
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(247,243,236,0.55);
  padding: 0.3rem 0.6rem;
  border-radius: 2px;
}

/* ── BUTTONS ── */
.btn-primary {
  background: var(--forest);
  color: var(--cream);
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.85rem 2rem;
  text-decoration: none;
  border-radius: 2px;
  transition: all 0.2s;
  display: inline-block;
}
.btn-primary:hover { background: var(--forest-lt); }

.btn-outline {
  background: transparent;
  color: var(--forest);
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.85rem 2rem;
  text-decoration: none;
  border-radius: 2px;
  border: 1.5px solid var(--forest);
  transition: all 0.2s;
  display: inline-block;
}
.btn-outline:hover { background: var(--forest); color: var(--cream); }

.btn-outline-light {
  background: transparent;
  color: var(--cream);
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.85rem 2rem;
  text-decoration: none;
  border-radius: 2px;
  border: 1.5px solid rgba(247,243,236,0.5);
  transition: all 0.2s;
  display: inline-block;
}
.btn-outline-light:hover { background: rgba(247,243,236,0.15); border-color: var(--cream); }

/* ── INTRO STRIP ── */
#intro-strip {
  background: var(--forest);
  padding: 2.5rem 3rem;
  display: flex;
  align-items: center;
  gap: 3rem;
  overflow: hidden;
  flex-wrap: wrap;
}
.strip-stat { display: flex; flex-direction: column; gap: 0.1rem; flex-shrink: 0; }
.strip-num { font-family: var(--serif-d); font-size: 2rem; font-weight: 700; color: var(--cream); line-height: 1; }
.strip-label { font-family: var(--sans); font-size: 0.65rem; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(247,243,236,0.55); }
.strip-divider { width: 1px; height: 2.5rem; background: rgba(247,243,236,0.15); flex-shrink: 0; }
.strip-quote { font-family: var(--serif-b); font-style: italic; font-size: 1rem; color: rgba(247,243,236,0.7); flex: 1; min-width: 200px; line-height: 1.5; }

/* ── ABOUT ── */
#about {
  padding: 7rem 3rem;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 6rem;
  align-items: start;
}
.about-label { font-family: var(--sans); font-size: 0.7rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--terra); margin-bottom: 1.2rem; }
h2.about-title { font-family: var(--serif-d); font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 700; color: var(--forest-dk); line-height: 1.1; margin-bottom: 1.5rem; }
h2.about-title em { font-style: italic; color: var(--terra); }
.about-body p { font-size: 1rem; color: var(--ink-mid); line-height: 1.85; margin-bottom: 1.2rem; }
.about-body p strong { color: var(--forest); font-weight: 600; }
.about-sidebar { padding-top: 2.5rem; }
.sidebar-card { background: var(--parchment); border-radius: 4px; padding: 1.5rem; margin-bottom: 1rem; border-left: 3px solid var(--terra); }
.sidebar-card-label { font-family: var(--sans); font-size: 0.62rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: var(--terra); margin-bottom: 0.5rem; }
.sidebar-card-val { font-family: var(--serif-d); font-size: 1.1rem; font-weight: 700; color: var(--forest-dk); }
.sidebar-card-val small { font-family: var(--sans); font-size: 0.8rem; font-weight: 400; color: var(--muted); display: block; margin-top: 0.2rem; }

/* ── SIDE QUESTS ── */
#sidequests { background: var(--forest-dk); padding: 7rem 3rem; }
.section-inner-c { max-width: 1200px; margin: 0 auto; }
.sq-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 3.5rem; flex-wrap: wrap; gap: 1rem; }
.sq-label { font-family: var(--sans); font-size: 0.7rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--terra-lt); margin-bottom: 0.8rem; }
h2.sq-title { font-family: var(--serif-d); font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; color: var(--cream); line-height: 1.1; }
h2.sq-title em { font-style: italic; color: var(--terra-lt); }
.sq-intro { font-size: 0.9rem; color: rgba(247,243,236,0.55); max-width: 320px; text-align: right; line-height: 1.7; }
.sq-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5px; background: rgba(247,243,236,0.08); }
.sq-card { background: rgba(247,243,236,0.04); padding: 2rem 1.8rem; position: relative; overflow: hidden; transition: background 0.25s; cursor: default; }
.sq-card:hover { background: rgba(247,243,236,0.08); }
.sq-num { font-family: var(--serif-d); font-size: 4rem; font-weight: 700; color: rgba(247,243,236,0.06); position: absolute; top: -0.5rem; right: 1rem; line-height: 1; pointer-events: none; }
.sq-name { font-family: var(--serif-d); font-size: 1.3rem; font-weight: 700; color: var(--cream); margin-bottom: 0.3rem; }
.sq-where { font-family: var(--sans); font-size: 0.72rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--terra-lt); margin-bottom: 0.8rem; }
.sq-desc { font-size: 0.88rem; color: rgba(247,243,236,0.55); line-height: 1.7; }

/* ── BLOG ── */
#blog { padding: 7rem 3rem; background: var(--cream); }
.blog-inner { max-width: 1200px; margin: 0 auto; }
.blog-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 3.5rem; flex-wrap: wrap; gap: 1rem; }
.blog-label { font-family: var(--sans); font-size: 0.7rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--terra); margin-bottom: 0.8rem; }
h2.blog-title { font-family: var(--serif-d); font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; color: var(--forest-dk); line-height: 1.1; }
h2.blog-title em { font-style: italic; color: var(--terra); }

.substack-badge { display: flex; align-items: center; gap: 0.5rem; font-family: var(--sans); font-size: 0.75rem; font-weight: 600; color: var(--forest); text-decoration: none; border: 1.5px solid var(--forest); padding: 0.5rem 1rem; border-radius: 2px; transition: all 0.2s; letter-spacing: 0.04em; white-space: nowrap; }
.substack-badge:hover { background: var(--forest); color: var(--cream); }

.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }

.post-card { background: var(--parchment); overflow: hidden; position: relative; transition: background 0.2s; text-decoration: none; display: block; color: inherit; }
.post-card:hover { background: var(--warm-mid); }
.post-image { width: 100%; aspect-ratio: 16/9; background: var(--warm-mid); overflow: hidden; }
.post-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; display: block; }
.post-card:hover .post-image img { transform: scale(1.04); }
.post-body { padding: 1.5rem 1.8rem 2rem; }
.post-meta { display: flex; align-items: center; gap: 0.8rem; margin-bottom: 0.7rem; }
.post-tag { font-family: var(--sans); font-size: 0.62rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--cream); background: var(--terra); padding: 0.2rem 0.55rem; border-radius: 2px; }
.post-date { font-family: var(--sans); font-size: 0.7rem; color: var(--muted); letter-spacing: 0.06em; }
.post-title { font-family: var(--serif-d); font-size: 1.35rem; font-weight: 700; color: var(--forest-dk); line-height: 1.25; margin-bottom: 0.7rem; }
.post-excerpt { font-size: 0.88rem; color: var(--ink-mid); line-height: 1.7; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.post-read { margin-top: 1rem; font-family: var(--sans); font-size: 0.75rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--terra); display: flex; align-items: center; gap: 0.4rem; transition: gap 0.2s; }
.post-card:hover .post-read { gap: 0.7rem; }

.blog-coming { grid-column: 1 / -1; background: var(--parchment); padding: 4rem; text-align: center; }
.blog-coming-icon { font-size: 3rem; margin-bottom: 1rem; display: block; }
.blog-coming h3 { font-family: var(--serif-d); font-size: 1.5rem; color: var(--forest-dk); margin-bottom: 0.5rem; }
.blog-coming p { color: var(--muted); font-size: 0.9rem; max-width: 380px; margin: 0 auto 1.5rem; }

/* ── INSTAGRAM ── */
.ig-embeds { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; align-items: start; }
.ig-embed-wrap { display: flex; flex-direction: column; gap: 0.6rem; }
.ig-embed-label { font-family: var(--sans); font-size: 0.72rem; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); text-align: center; }

#instagram { background: var(--parchment); padding: 5rem 3rem; }
.ig-inner { max-width: 1200px; margin: 0 auto; }
.ig-header { display: flex; align-items: center; gap: 1.5rem; margin-bottom: 2.5rem; flex-wrap: wrap; }
.ig-avatar { width: 56px; height: 56px; border-radius: 50%; background: var(--warm-mid); border: 3px solid var(--forest); display: flex; align-items: center; justify-content: center; font-family: var(--serif-d); font-size: 1.2rem; font-weight: 700; color: var(--forest); }
.ig-handle-block { flex: 1; }
.ig-handle { font-family: var(--serif-d); font-size: 1.2rem; font-weight: 700; color: var(--forest-dk); }
.ig-sub { font-family: var(--sans); font-size: 0.78rem; color: var(--muted); margin-top: 0.1rem; }
.ig-follow { display: flex; align-items: center; gap: 0.5rem; font-family: var(--sans); font-size: 0.78rem; font-weight: 600; color: var(--cream); background: var(--terra); padding: 0.55rem 1.2rem; text-decoration: none; border-radius: 2px; transition: background 0.2s; }
.ig-follow:hover { background: var(--terra-lt); }

/* ── PHILOSOPHY ── */
#philosophy { background: var(--terra); padding: 6rem 3rem; text-align: center; }
.phil-inner { max-width: 780px; margin: 0 auto; }
blockquote { font-family: var(--serif-d); font-size: clamp(1.6rem, 3.5vw, 2.6rem); font-weight: 700; font-style: italic; color: var(--cream); line-height: 1.25; margin-bottom: 1.5rem; }
blockquote span { font-style: normal; font-weight: 400; opacity: 0.7; }
.phil-attr { font-family: var(--sans); font-size: 0.72rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(247,243,236,0.65); }

/* ── NEWSLETTER ── */
#newsletter { background: var(--forest); padding: 6rem 3rem; }
.nl-inner { max-width: 700px; margin: 0 auto; text-align: center; }
.nl-label { font-family: var(--sans); font-size: 0.7rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--terra-lt); margin-bottom: 1rem; }
h2.nl-title { font-family: var(--serif-d); font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 700; color: var(--cream); margin-bottom: 0.8rem; line-height: 1.15; }
h2.nl-title em { font-style: italic; color: var(--terra-lt); }
.nl-sub { font-size: 0.95rem; color: rgba(247,243,236,0.6); margin-bottom: 2rem; line-height: 1.7; }
.nl-form { display: flex; max-width: 480px; margin: 0 auto 1rem; border-radius: 2px; overflow: hidden; border: 1.5px solid rgba(247,243,236,0.2); }
.nl-input { flex: 1; background: rgba(247,243,236,0.08); border: none; outline: none; padding: 0.9rem 1.2rem; font-family: var(--sans); font-size: 0.9rem; color: var(--cream); }
.nl-input::placeholder { color: rgba(247,243,236,0.35); }
.nl-btn { background: var(--terra); color: var(--cream); border: none; padding: 0.9rem 1.6rem; font-family: var(--sans); font-size: 0.78rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; cursor: pointer; transition: background 0.2s; white-space: nowrap; }
.nl-btn:hover { background: var(--terra-lt); }
.nl-note { font-size: 0.75rem; color: rgba(247,243,236,0.35); letter-spacing: 0.04em; }
.nl-substack-link { margin-top: 1.5rem; display: inline-flex; align-items: center; gap: 0.5rem; color: rgba(247,243,236,0.55); font-size: 0.78rem; text-decoration: none; transition: color 0.2s; font-family: var(--sans); }
.nl-substack-link:hover { color: var(--cream); }

/* ── FOOTER ── */
footer { background: var(--forest-dk); padding: 3rem; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1.5rem; }
.footer-logo { font-family: var(--serif-d); font-size: 1.1rem; font-weight: 700; color: var(--cream); }
.footer-logo .dot { color: var(--terra); }
.footer-links { display: flex; gap: 1.5rem; list-style: none; }
.footer-links a { font-family: var(--sans); font-size: 0.72rem; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(247,243,236,0.45); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--cream); }
.footer-copy { font-family: var(--sans); font-size: 0.65rem; color: rgba(247,243,236,0.25); letter-spacing: 0.08em; }

/* ── ANIMATIONS ── */
@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
.fade-up { animation: fadeUp 0.85s ease both; }
.d1 { animation-delay: 0.1s; }
.d2 { animation-delay: 0.22s; }
.d3 { animation-delay: 0.36s; }
.d4 { animation-delay: 0.5s; }
.d5 { animation-delay: 0.65s; }
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── HAMBURGER ── */
.nav-hamburger { display: none; flex-direction: column; justify-content: center; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; z-index: 200; }
.nav-hamburger span { display: block; width: 22px; height: 2px; background: var(--forest); border-radius: 2px; transition: all 0.25s ease; }
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── MOBILE DRAWER ── */
.mobile-drawer { display: none; position: fixed; inset: 0; background: var(--cream); z-index: 150; flex-direction: column; justify-content: center; align-items: center; padding: 2rem; }
.mobile-drawer.open { display: flex; }
.mobile-drawer a { font-family: var(--serif-d); font-size: 2rem; font-weight: 700; color: var(--forest-dk); text-decoration: none; padding: 0.7rem 0; border-bottom: 1px solid var(--warm-mid); width: 100%; text-align: center; transition: color 0.2s; }
.mobile-drawer a:hover { color: var(--terra); }
.mobile-drawer a:last-child { border-bottom: none; }
.mobile-drawer-ig { margin-top: 2rem; display: flex !important; align-items: center; justify-content: center; gap: 0.5rem; font-family: var(--sans) !important; font-size: 0.85rem !important; font-weight: 600 !important; color: var(--cream) !important; background: var(--terra) !important; padding: 0.7rem 1.5rem !important; border-radius: 2px; border-bottom: none !important; }

/* ── STORIES PAGE ── */
.stories-page { padding-top: 5rem; }

.stories-hero {
  background: var(--forest-dk);
  padding: 6rem 3rem 5rem;
  text-align: center;
}
.stories-eyebrow { font-family: var(--sans); font-size: 0.7rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--terra-lt); margin-bottom: 1rem; }
.stories-title { font-family: var(--serif-d); font-size: clamp(2.5rem, 6vw, 5rem); font-weight: 700; color: var(--cream); line-height: 1.05; margin-bottom: 1rem; }
.stories-title em { font-style: italic; color: var(--terra-lt); }
.stories-sub { font-family: var(--serif-b); font-style: italic; font-size: 1.05rem; color: rgba(247,243,236,0.6); max-width: 500px; margin: 0 auto; line-height: 1.7; }

.stories-inner { max-width: 1200px; margin: 0 auto; padding: 5rem 3rem; }
.stories-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; margin-bottom: 3rem; }

.stories-pagination { display: flex; justify-content: center; gap: 0.5rem; }
.stories-pagination .page-numbers { font-family: var(--sans); font-size: 0.8rem; font-weight: 500; color: var(--forest); border: 1.5px solid var(--forest); padding: 0.5rem 1rem; text-decoration: none; border-radius: 2px; transition: all 0.2s; }
.stories-pagination .page-numbers.current, .stories-pagination .page-numbers:hover { background: var(--forest); color: var(--cream); }

/* ── SINGLE POST ── */
.post-single { padding-top: 5rem; }

.post-single-hero { width: 100%; max-height: 60vh; overflow: hidden; }
.post-single-hero img { width: 100%; height: 100%; object-fit: cover; display: block; max-height: 60vh; }

.post-single-inner { max-width: 720px; margin: 0 auto; padding: 4rem 2rem 6rem; }

.post-single-meta { display: flex; align-items: center; gap: 0.8rem; margin-bottom: 1.5rem; }

.post-single-title { font-family: var(--serif-d); font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 700; color: var(--forest-dk); line-height: 1.1; margin-bottom: 1.5rem; }

.post-single-excerpt { font-family: var(--serif-b); font-style: italic; font-size: 1.15rem; color: var(--muted); line-height: 1.7; margin-bottom: 2.5rem; padding-bottom: 2.5rem; border-bottom: 1px solid var(--warm-mid); }

.post-single-content { font-size: 1.05rem; color: var(--ink-mid); line-height: 1.9; }
.post-single-content p { margin-bottom: 1.4rem; }
.post-single-content h2 { font-family: var(--serif-d); font-size: 1.8rem; font-weight: 700; color: var(--forest-dk); margin: 2.5rem 0 1rem; }
.post-single-content h3 { font-family: var(--serif-d); font-size: 1.4rem; font-weight: 700; color: var(--forest-dk); margin: 2rem 0 0.8rem; }
.post-single-content img { width: 100%; border-radius: 4px; margin: 1.5rem 0; display: block; }
.post-single-content a { color: var(--terra); }
.post-single-content blockquote { border-left: 3px solid var(--terra); padding-left: 1.5rem; margin: 2rem 0; font-family: var(--serif-b); font-style: italic; font-size: 1.1rem; color: var(--muted); }

.post-single-footer { margin-top: 3rem; padding-top: 2rem; border-top: 1px solid var(--warm-mid); }
.post-back { font-family: var(--sans); font-size: 0.8rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--forest); text-decoration: none; transition: color 0.2s; }
.post-back:hover { color: var(--terra); }

/* ── TABLET ── */
@media (max-width: 900px) {
  nav { padding: 1.1rem 1.5rem; }
  .nav-links { display: none; }
  .nav-ig { display: none; }
  .nav-hamburger { display: flex; }

  #hero { min-height: 100vh; padding-bottom: 3.5rem; }
  .hero-content { padding: 7rem 1.5rem 0; max-width: 100%; }
  .hero-overlay {
    background: linear-gradient(
      to bottom,
      rgba(20,30,25,0.5) 0%,
      rgba(20,30,25,0.75) 60%,
      rgba(20,30,25,0.85) 100%
    );
  }

  #about { grid-template-columns: 1fr; gap: 2.5rem; padding: 4.5rem 1.5rem; }
  .about-sidebar { padding-top: 0; }

  .sq-grid { grid-template-columns: 1fr; }
  #sidequests { padding: 4.5rem 1.5rem; }
  .sq-intro { text-align: left; max-width: 100%; }
  .sq-header { flex-direction: column; align-items: flex-start; gap: 0.8rem; }

  #blog { padding: 4.5rem 1.5rem; }
  .blog-grid { grid-template-columns: 1fr; }
  .blog-header { flex-direction: column; align-items: flex-start; gap: 1rem; }

  .ig-embeds { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  #instagram { padding: 4rem 1.5rem; }
  .ig-header { gap: 1rem; }

  #philosophy { padding: 4.5rem 1.5rem; }
  #newsletter { padding: 4rem 1.5rem; }

  #intro-strip { padding: 2rem 1.5rem; gap: 1.5rem; justify-content: flex-start; }
  .strip-divider { display: none; }
  .strip-quote { display: none; }

  footer { padding: 2rem 1.5rem; flex-direction: column; align-items: flex-start; gap: 1.2rem; }
  .footer-links { flex-wrap: wrap; gap: 1rem; }

  .stories-inner { padding: 3.5rem 1.5rem; }
  .stories-grid { grid-template-columns: 1fr; }
  .stories-hero { padding: 4rem 1.5rem 3rem; }

  .post-single-inner { padding: 3rem 1.5rem 4rem; }
}

/* ── SMALL MOBILE ── */
@media (max-width: 480px) {
  #hero { padding-bottom: 3rem; }
  .hero-content { padding: 6rem 1.2rem 0; }
  h1.hero-title { font-size: 3rem; }
  .hero-actions { flex-direction: column; gap: 0.8rem; }
  .btn-primary, .btn-outline, .btn-outline-light { width: 100%; text-align: center; padding: 1rem; }

  #intro-strip { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; padding: 1.8rem 1.2rem; }

  #about { padding: 3.5rem 1.2rem; }
  #sidequests { padding: 3.5rem 1.2rem; }
  .sq-card { padding: 1.5rem 1.2rem; }

  #blog { padding: 3.5rem 1.2rem; }
  .blog-coming { padding: 2.5rem 1.5rem; }

  .ig-embeds { grid-template-columns: 1fr; }
  .ig-header { flex-wrap: wrap; }
  .ig-follow { width: 100%; justify-content: center; }
  #instagram { padding: 3rem 1.2rem; }

  #philosophy { padding: 3.5rem 1.2rem; }
  blockquote { font-size: 1.45rem; }

  #newsletter { padding: 3.5rem 1.2rem; }
  .nl-form { flex-direction: column; border: none; gap: 0.5rem; }
  .nl-input { border: 1.5px solid rgba(247,243,236,0.2); border-radius: 2px; padding: 0.9rem 1rem; }
  .nl-btn { padding: 0.9rem; border-radius: 2px; }

  footer { padding: 1.8rem 1.2rem; }
  .footer-links { gap: 0.8rem; }

  .stories-inner { padding: 2.5rem 1.2rem; }
  .post-single-inner { padding: 2rem 1.2rem 3rem; }
}
