/* ========================================
   Nathan Bernhardt — v4
   Readable hero, books section, visual density
   ======================================== */

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

:root {
  --pampas: #F2F0EA; --pampas-light: #FDFCFC; --pampas-dark: #EDEAE2;
  --thunder: #1a1817; --thunder-mid: #2a2725;
  --copper: #B87333; --copper-glow: #D4A574;
  --ink: #111; --ink-soft: #3a3632;
  --stone: #8a8580; --stone-light: #b5b0a9;
  --cream: rgba(255,255,255,0.88); --cream-muted: rgba(255,255,255,0.45);
  --rule: rgba(0,0,0,0.08); --rule-light: rgba(255,255,255,0.1);
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans); font-weight: 300; font-size: 1rem;
  color: var(--ink); background: var(--pampas); line-height: 1.75;
  overflow-x: hidden; -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 { font-family: var(--serif); font-weight: 300; line-height: 1.1; }
h1 { font-size: clamp(2.8rem, 5.5vw, 4.8rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(2rem, 3.5vw, 3rem); letter-spacing: -0.01em; }
h3 { font-size: clamp(1.4rem, 2vw, 1.8rem); }
h1 em, h2 em { font-style: italic; color: var(--copper); }
.label {
  font-family: var(--sans); font-size: 0.7rem; font-weight: 500;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--stone);
}
.label-copper { color: var(--copper); }

.wrap { width: min(88%, 1060px); margin: 0 auto; }

/* Grain */
.grain {
  position: fixed; inset: 0; pointer-events: none; z-index: 9999; opacity: 0.05;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

#progress { position: fixed; top: 0; left: 0; height: 2px; width: 0; background: var(--copper); z-index: 10001; }

/* Loader */
.loader {
  position: fixed; inset: 0; z-index: 10002; background: var(--thunder);
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.9s var(--ease);
}
.loader.hidden { opacity: 0; pointer-events: none; }
.loader-text {
  font-family: var(--serif); font-weight: 300; font-size: 1.2rem;
  letter-spacing: 0.15em; color: var(--cream); opacity: 0.5;
  animation: pulse 1.4s ease-in-out infinite alternate;
}
@keyframes pulse { to { opacity: 1; } }

/* Cursor */
@media (hover: hover) { body, a, button, input[type="submit"] { cursor: none; } }
.cursor-dot {
  position: fixed; width: 5px; height: 5px; background: var(--copper);
  border-radius: 50%; pointer-events: none; z-index: 10003; transform: translate(-50%, -50%);
}
.cursor-ring {
  position: fixed; width: 40px; height: 40px;
  border: 1px solid rgba(183,115,51,0.3); border-radius: 50%;
  pointer-events: none; z-index: 10003; transform: translate(-50%, -50%);
  transition: width 0.35s var(--ease), height 0.35s var(--ease), border-color 0.3s;
}
.cursor-ring.hover { width: 64px; height: 64px; border-color: rgba(183,115,51,0.12); }
@media (hover: none) { .cursor-dot, .cursor-ring { display: none; } }

/* ======== NAV ======== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1002;
  padding: 1.2rem 0; background: rgba(242,240,234,0.0);
  transition: all 0.5s;
}
.nav.scrolled {
  background: rgba(242,240,234,0.95); backdrop-filter: blur(16px);
  padding: 0.8rem 0; box-shadow: 0 1px 0 var(--rule);
}
.nav-inner {
  width: min(92%, 1200px); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo-text {
  font-family: var(--sans); font-size: 0.72rem; font-weight: 500;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--ink);
}
.nav-links { display: flex; align-items: center; gap: 2.2rem; }
.nav-links a {
  position: relative; font-size: 0.8rem; font-weight: 400;
  color: var(--ink-soft); transition: color 0.3s; letter-spacing: 0.01em;
}
.nav-links a:not(.nav-cta)::after {
  content: ''; position: absolute; bottom: -3px; left: 0;
  width: 0; height: 1px; background: var(--copper);
  transition: width 0.35s var(--ease);
}
.nav-links a:not(.nav-cta):hover { color: var(--ink); }
.nav-links a:not(.nav-cta):hover::after { width: 100%; }
.nav-links a.nav-cta {
  font-size: 0.68rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.5rem 1.4rem; background: var(--thunder); color: #fff;
  border: 1px solid var(--thunder);
  transition: all 0.3s var(--ease);
}
.nav-links a.nav-cta:hover { background: transparent; color: var(--copper); border-color: var(--copper); }

.hamburger {
  display: none; background: none; border: none; padding: 10px; z-index: 1002;
  flex-direction: column; gap: 5px;
}
.hamburger span { display: block; width: 22px; height: 1.5px; background: var(--ink); transition: all 0.3s var(--ease); }
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(4px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(4px, -5px); }
.mobile-menu {
  position: fixed; inset: 0; z-index: 1001; background: var(--pampas);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 2.5rem;
  opacity: 0; pointer-events: none; transition: opacity 0.4s var(--ease);
}
.mobile-menu.active { opacity: 1; pointer-events: auto; }
.mobile-menu a { font-family: var(--serif); font-size: 2.2rem; font-weight: 300; color: var(--ink); }
@media (max-width: 768px) { .nav-links { display: none; } .hamburger { display: flex; } }

/* ======== SUBPAGE HERO ======== */
.page-hero {
  padding: clamp(8rem, 12vw, 10rem) 0 clamp(3rem, 5vw, 4rem);
  text-align: center;
}
.page-hero .label { margin-bottom: 0.8rem; display: block; }
.page-hero h1 { margin-bottom: 1rem; }
.page-hero .page-desc {
  font-size: clamp(1rem, 1.1vw, 1.08rem); line-height: 1.85;
  color: var(--ink-soft); max-width: 520px; margin: 0 auto;
}

/* ======== ARCHIVE PAGE ======== */
.archive-content { padding-bottom: clamp(4rem, 7vw, 6rem); }

/* ======== CONTACT PAGE ======== */
.contact-split {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 5rem); padding-bottom: clamp(4rem, 7vw, 6rem);
}
.contact-info h3 { margin-bottom: 1rem; }
.contact-info p { font-size: 0.95rem; color: var(--ink-soft); line-height: 1.85; margin-bottom: 1.5rem; }
.contact-detail { display: flex; align-items: flex-start; gap: 0.75rem; margin-bottom: 1.2rem; }
.contact-detail-icon {
  width: 36px; height: 36px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--rule);
}
.contact-detail-icon svg { width: 16px; height: 16px; stroke: var(--copper); fill: none; }
.contact-detail div { font-size: 0.88rem; color: var(--ink-soft); }
.contact-detail strong { display: block; font-weight: 500; color: var(--ink); font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 0.15rem; }
.btn-submit {
  display: inline-block; padding: 0.85rem 2.5rem;
  background: var(--ink); color: var(--pampas); border: none;
  font-family: var(--sans); font-size: 0.72rem; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
  cursor: pointer; transition: background 0.3s var(--ease);
}
.btn-submit:hover { background: var(--copper); }
@media (max-width: 768px) { .contact-split { grid-template-columns: 1fr; } }

/* ======== ABOUT PAGE ======== */
.about-hero-split {
  display: grid; grid-template-columns: 1fr 1.1fr;
  gap: clamp(3rem, 5vw, 4rem); align-items: center;
  padding-bottom: clamp(4rem, 7vw, 6rem);
}
.about-hero-text .label { margin-bottom: 0.8rem; display: block; }
.about-hero-text h1 { margin-bottom: 1.5rem; }
.about-hero-text p { font-size: clamp(0.95rem, 1.05vw, 1.05rem); line-height: 1.85; color: var(--ink-soft); margin-bottom: 1.2rem; }
.about-hero-img img { width: 100%; height: clamp(400px, 50vw, 600px); object-fit: cover; }
.philosophy {
  padding: clamp(4rem, 7vw, 6rem) 0; background: var(--pampas-dark);
  text-align: center;
}
.philosophy blockquote {
  font-family: var(--serif); font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  font-weight: 300; font-style: italic; line-height: 1.4;
  max-width: 700px; margin: 1.5rem auto 0; color: var(--ink);
}
@media (max-width: 768px) { .about-hero-split { grid-template-columns: 1fr; } }

/* ======== BLOG POST ======== */
.post-hero { padding: clamp(8rem, 12vw, 10rem) 0 clamp(2rem, 3vw, 3rem); }
.post-hero .label { margin-bottom: 0.8rem; display: block; }
.post-hero h1 { max-width: 900px; margin-bottom: 1rem; }
.post-meta {
  font-size: 0.82rem; color: var(--stone); display: flex; align-items: center; gap: 0.5rem;
}
.post-meta-dot { width: 3px; height: 3px; background: var(--stone-light); border-radius: 50%; }
.post-hero-img { margin-top: clamp(2rem, 3vw, 3rem); }
.post-hero-img img { width: 100%; height: clamp(280px, 35vw, 480px); object-fit: cover; }
.post-body {
  max-width: 680px; margin: 0 auto;
  padding: clamp(2rem, 4vw, 3rem) 0 clamp(4rem, 7vw, 6rem);
}
.post-body p {
  font-size: clamp(1rem, 1.1vw, 1.08rem); line-height: 1.9;
  color: var(--ink-soft); margin-bottom: 1.5rem;
}
.post-body p:first-of-type::first-letter {
  font-family: var(--serif); font-size: 3.2rem; font-weight: 400;
  float: left; line-height: 0.85; margin-right: 0.12em; margin-top: 0.05em;
  color: var(--ink);
}
.post-body h2 {
  font-size: clamp(1.4rem, 2vw, 1.7rem); margin: 2.5rem 0 0.75rem; color: var(--ink);
}
.post-body blockquote {
  font-family: var(--serif); font-size: clamp(1.3rem, 2vw, 1.6rem);
  font-weight: 300; font-style: italic; line-height: 1.5;
  border-left: 2px solid var(--copper); padding-left: 1.5rem;
  margin: 2rem 0; color: var(--ink);
}
.post-body ul, .post-body ol { padding-left: 1.2rem; margin-bottom: 1.5rem; }
.post-body li { font-size: 1rem; line-height: 1.85; color: var(--ink-soft); margin-bottom: 0.4rem; }
.post-disclaimer {
  font-size: 0.78rem; line-height: 1.6; color: var(--stone);
  border-left: 2px solid var(--rule); padding-left: 1rem;
  margin-bottom: 2.5rem;
}
.post-author {
  display: flex; gap: 1rem; align-items: center;
  padding-top: 2rem; border-top: 1px solid var(--rule); margin-top: 3rem;
}
.post-author-info { font-size: 0.88rem; color: var(--ink-soft); }
.post-author-info strong { display: block; font-size: 0.92rem; color: var(--ink); }
.post-nav {
  display: flex; justify-content: space-between; padding-top: 1.5rem;
  border-top: 1px solid var(--rule); margin-top: 1.5rem;
}
.post-nav a { font-size: 0.82rem; color: var(--ink-soft); transition: color 0.3s; }
.post-nav a:hover { color: var(--copper); }

/* ======== LEGAL PAGES ======== */
.legal-content {
  padding-bottom: clamp(4rem, 7vw, 6rem); max-width: 680px; margin: 0 auto;
}
.legal-content h2 {
  font-size: clamp(1.4rem, 2vw, 1.7rem); margin: 2.5rem 0 0.75rem;
}
.legal-content h2:first-of-type { margin-top: 0; }
.legal-content p {
  font-size: 0.92rem; line-height: 1.85; color: var(--ink-soft); margin-bottom: 1rem;
}
.legal-content ul { padding-left: 1.2rem; margin-bottom: 1rem; }
.legal-content li { font-size: 0.92rem; line-height: 1.85; color: var(--ink-soft); margin-bottom: 0.4rem; }
.legal-meta { font-size: 0.8rem; color: var(--stone); margin-bottom: 2rem; }

/* ======== HERO — Clean warm bg, image inset ======== */
.hero {
  min-height: 100vh; min-height: 100svh;
  display: flex; align-items: center;
  padding-top: clamp(5rem, 8vw, 7rem);
  padding-bottom: clamp(2rem, 4vw, 3rem);
}
.hero-grid {
  display: grid; grid-template-columns: 1fr 0.85fr;
  gap: clamp(2.5rem, 4vw, 4rem); align-items: center;
}
.hero-text h1 { margin-bottom: 1.5rem; }
.hero-desc {
  font-size: clamp(1rem, 1.15vw, 1.1rem); line-height: 1.85;
  color: var(--ink-soft); max-width: 480px; margin-bottom: 2rem;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; }
.btn-solid {
  display: inline-block; padding: 0.75rem 1.8rem;
  background: var(--ink); color: var(--pampas);
  font-size: 0.75rem; font-weight: 500; letter-spacing: 0.1em;
  text-transform: uppercase; border: 1px solid var(--ink);
  transition: all 0.3s var(--ease);
}
.btn-solid:hover { background: var(--copper); border-color: var(--copper); }
.link-arrow {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.82rem; font-weight: 400; color: var(--ink-soft);
  transition: color 0.3s, gap 0.3s var(--ease);
}
.link-arrow:hover { color: var(--copper); gap: 0.8rem; }
.link-arrow svg { width: 14px; height: 14px; flex-shrink: 0; }

.hero-image { position: relative; }
.hero-image img {
  width: 100%; height: clamp(380px, 50vw, 560px); object-fit: cover;
}
.hero-image-accent {
  position: absolute; bottom: -12px; right: -12px;
  width: 100%; height: 100%; border: 1px solid var(--copper);
  z-index: -1;
}

.hero-ticker {
  grid-column: 1 / -1; display: flex; gap: clamp(2rem, 4vw, 3.5rem);
  padding-top: 1.5rem; border-top: 1px solid var(--rule); margin-top: 1rem;
}
.ticker-num { font-family: var(--serif); font-size: clamp(1.5rem, 2.2vw, 2rem); font-weight: 300; }
.ticker-lbl { font-size: 0.68rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--stone); margin-top: 0.15rem; }

@media (max-width: 768px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-image img { height: 300px; }
  .hero-ticker { flex-wrap: wrap; gap: 1.5rem; }
}

/* ======== ABOUT ======== */
.about { padding: clamp(4rem, 7vw, 6rem) 0; }
.about-split {
  display: grid; grid-template-columns: 1.1fr 1fr;
  gap: clamp(2.5rem, 5vw, 4rem); align-items: center;
}
.about-img img { width: 100%; height: clamp(350px, 45vw, 520px); object-fit: cover; }
.about-body .label { margin-bottom: 0.75rem; display: block; }
.about-body h2 { margin-bottom: 1.2rem; }
.about-body p {
  font-size: clamp(0.95rem, 1.05vw, 1.05rem); line-height: 1.85;
  color: var(--ink-soft); margin-bottom: 1rem; max-width: 480px;
}
.about-body p strong { font-weight: 500; color: var(--ink); }
.pullquote {
  font-family: var(--serif); font-weight: 300; font-style: italic;
  font-size: clamp(1.3rem, 1.8vw, 1.6rem); line-height: 1.4;
  color: var(--ink); padding: 1.2rem 0; margin: 0.5rem 0 1rem;
  border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule);
  max-width: 480px;
}
@media (max-width: 768px) {
  .about-split { grid-template-columns: 1fr; }
  .about-img { order: -1; }
}

/* ======== BOOKS — Coming Soon ======== */
.books { padding: clamp(4rem, 7vw, 6rem) 0; background: var(--thunder); color: var(--cream); }
.books-header { text-align: center; margin-bottom: clamp(2.5rem, 4vw, 3.5rem); }
.books-header .label { color: var(--copper-glow); }
.books-header h2 { color: var(--cream); margin-top: 0.6rem; }
.books-header p { color: var(--cream-muted); max-width: 560px; margin: 1rem auto 0; font-size: 0.95rem; line-height: 1.8; }

.books-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.5rem, 3vw, 2rem); }

.book-card {
  background: rgba(255,255,255,0.03); border: 1px solid var(--rule-light);
  overflow: hidden; transition: transform 0.5s var(--ease), background 0.5s;
}
.book-card:hover { transform: translateY(-4px); background: rgba(255,255,255,0.05); }
.book-card-img { aspect-ratio: 16/11; overflow: hidden; position: relative; }
.book-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); }
.book-card:hover .book-card-img img { transform: scale(1.03); }
.book-card-badge {
  position: absolute; top: 1rem; left: 1rem;
  padding: 0.3rem 0.8rem; background: var(--copper); color: #fff;
  font-size: 0.6rem; font-weight: 500; letter-spacing: 0.15em; text-transform: uppercase;
}
.book-card-body { padding: clamp(1.5rem, 2.5vw, 2rem); }
.book-card-body .label { color: var(--copper-glow); margin-bottom: 0.6rem; display: block; }
.book-card-body h3 { color: var(--cream); margin-bottom: 0.5rem; line-height: 1.25; }
.book-card-body .subtitle {
  font-family: var(--serif); font-style: italic; font-weight: 300;
  font-size: 0.95rem; color: var(--cream-muted); margin-bottom: 1rem; line-height: 1.5;
}
.book-card-body p { font-size: 0.88rem; line-height: 1.7; color: var(--cream-muted); margin-bottom: 1.2rem; max-width: none; }
.book-notify {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.75rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--cream); padding-bottom: 0.2rem; border-bottom: 1px solid var(--rule-light);
  transition: color 0.3s, border-color 0.3s, gap 0.3s var(--ease);
}
.book-notify:hover { color: var(--copper-glow); border-color: var(--copper-glow); gap: 0.8rem; }
.book-notify svg { width: 14px; height: 14px; }

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

/* ======== NEWSLETTER ======== */
.newsletter { padding: clamp(4rem, 7vw, 6rem) 0; background: var(--pampas-dark); }
.nl-inner { max-width: 560px; margin: 0 auto; text-align: center; }
.nl-inner h2 { margin-bottom: 0.75rem; }
.nl-inner p { color: var(--ink-soft); font-size: 0.95rem; line-height: 1.8; }
.nl-form {
  display: flex; margin-top: 2rem; border: 1px solid var(--rule); background: var(--pampas-light);
}
.nl-form input[type="email"] {
  flex: 1; padding: 0.9rem 1.2rem; border: none; background: transparent;
  font-family: var(--sans); font-size: 0.92rem; color: var(--ink); outline: none;
}
.nl-form input::placeholder { color: var(--stone-light); }
.nl-form button {
  padding: 0.9rem 1.6rem; background: var(--ink); color: var(--pampas); border: none;
  font-family: var(--sans); font-size: 0.72rem; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase; cursor: pointer; transition: background 0.3s;
}
.nl-form button:hover { background: var(--copper); }
.nl-legal { font-size: 0.72rem; color: var(--stone-light); margin-top: 0.75rem; }
.nl-legal a { text-decoration: underline; text-underline-offset: 2px; }

/* ======== DUAL CTA — Dark, merges with footer ======== */
.paths { background: var(--thunder); color: var(--cream); padding: clamp(4rem, 7vw, 6rem) 0; }
.paths-header { text-align: center; margin-bottom: clamp(2.5rem, 4vw, 3.5rem); }
.paths-header .label { color: var(--copper-glow); }
.paths-header h2 { color: var(--cream); margin-top: 0.6rem; }
.paths-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--rule-light);
}
.path-item {
  padding: clamp(2.5rem, 4vw, 3.5rem) clamp(2rem, 4vw, 3.5rem);
  border-right: 1px solid var(--rule-light);
  transition: background 0.5s;
}
.path-item:last-child { border-right: none; }
.path-item:hover { background: rgba(255,255,255,0.02); }
.path-item .label { color: var(--copper-glow); margin-bottom: 1rem; display: block; }
.path-item h3 { color: var(--cream); margin-bottom: 1rem; }
.path-item p { font-size: 0.95rem; line-height: 1.8; color: var(--cream-muted); margin-bottom: 1.5rem; max-width: 400px; }
.path-cta {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.78rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--cream); padding-bottom: 0.25rem; border-bottom: 1px solid var(--rule-light);
  transition: color 0.3s, border-color 0.3s, gap 0.3s var(--ease);
}
.path-cta:hover { color: var(--copper-glow); border-color: var(--copper-glow); gap: 0.8rem; }
.path-cta svg { width: 14px; height: 14px; }
@media (max-width: 768px) {
  .paths-grid { grid-template-columns: 1fr; }
  .path-item { border-right: none; border-bottom: 1px solid var(--rule-light); }
  .path-item:last-child { border-bottom: none; }
}

/* ======== FOOTER ======== */
.footer { background: var(--thunder); color: var(--cream-muted); }
.footer-inner {
  width: min(92%, 1200px); margin: 0 auto;
  padding: clamp(2.5rem, 4vw, 3.5rem) 0 clamp(1.5rem, 2vw, 2rem);
}
.footer-row {
  display: flex; align-items: center; justify-content: space-between;
  padding-bottom: clamp(1.5rem, 2.5vw, 2rem); border-bottom: 1px solid var(--rule-light);
}
.footer-logo-text {
  font-family: var(--sans); font-size: 0.68rem; font-weight: 500;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--cream);
}
.footer-nav { display: flex; gap: 2rem; }
.footer-nav a { font-size: 0.82rem; transition: color 0.3s; }
.footer-nav a:hover { color: var(--cream); }
.footer-social { display: flex; gap: 0.75rem; }
.footer-social a {
  width: 32px; height: 32px; display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--rule-light); transition: border-color 0.3s;
}
.footer-social a:hover { border-color: var(--cream); }
.footer-social svg { width: 13px; height: 13px; fill: currentColor; }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 1.2rem; font-size: 0.75rem;
}
@media (max-width: 768px) {
  .footer-row { flex-direction: column; gap: 1.5rem; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
}

/* Reveal */
.reveal {
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: 0.12s; }
.reveal-d2 { transition-delay: 0.24s; }

/* Contact / Blog shared (for subpages) */
.form-group { margin-bottom: 1.5rem; }
.form-group label { display: block; font-size: 0.72rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--stone); margin-bottom: 0.5rem; }
.form-group input, .form-group textarea { width: 100%; padding: 0.9rem 1rem; font-family: var(--sans); font-size: 0.95rem; border: 1px solid var(--rule); background: var(--pampas-light); color: var(--ink); outline: none; transition: border-color 0.3s; }
.form-group input:focus, .form-group textarea:focus { border-color: var(--copper); }
.form-group textarea { min-height: 140px; resize: vertical; }
.journal-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.5rem, 2.5vw, 2rem); }
.journal-card { background: var(--pampas-light); border: 1px solid var(--rule); transition: transform 0.5s var(--ease), box-shadow 0.5s; }
.journal-card:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(0,0,0,0.06); }
.journal-card-img { aspect-ratio: 16/10; overflow: hidden; }
.journal-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); }
.journal-card:hover .journal-card-img img { transform: scale(1.03); }
.journal-card-body { padding: clamp(1.2rem, 2vw, 1.5rem); }
.journal-card h3 { font-size: clamp(1.1rem, 1.3vw, 1.2rem); line-height: 1.3; margin-bottom: 0.4rem; }
.journal-card p { font-size: 0.88rem; color: var(--stone); line-height: 1.6; }
@media (max-width: 900px) { .journal-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .journal-grid { grid-template-columns: 1fr; } }
.filter-bar { display: flex; gap: 0.4rem; flex-wrap: wrap; margin-bottom: clamp(2rem, 3vw, 3rem); }
.filter-pill { padding: 0.35rem 0.9rem; font-size: 0.78rem; border: 1px solid var(--rule); background: transparent; cursor: pointer; transition: all 0.3s; font-family: var(--sans); color: var(--stone); }
.filter-pill.active, .filter-pill:hover { background: var(--ink); color: var(--pampas); border-color: var(--ink); }
@media (max-width: 640px) { .filter-bar { overflow-x: auto; flex-wrap: nowrap; scrollbar-width: none; } .filter-bar::-webkit-scrollbar { display: none; } .filter-bar > * { flex-shrink: 0; } }
