/* ============================================================
   Mike Campbell Ministries — "The Archivist's Field Notes"
   Concept D5 · tactile documentary field-journal
   ============================================================ */

:root {
  --bg:      #F2EFEB;
  --surface: #E4DCD3;
  --ink:     #2C2A28;
  --primary: #426C7D;   /* slate teal */
  --accent:  #B85D43;   /* clay */
  --accent2: #D9A05B;   /* ochre */

  --paper-line: rgba(44,42,40,.10);
  --ink-60: rgba(44,42,40,.62);
  --ink-45: rgba(44,42,40,.46);
  --tape:   rgba(217,160,91,.42);
  --tape-2: rgba(66,108,125,.24);

  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans:  "Space Grotesk", ui-sans-serif, system-ui, sans-serif;
  --hand:  "Caveat", "Segoe Script", cursive;

  --maxw: 1200px;
  --gutter: clamp(1.15rem, 4vw, 3.5rem);

  --shadow-lift: 0 1px 1px rgba(44,42,40,.08), 0 12px 30px -14px rgba(44,42,40,.45);
  --shadow-photo: 0 2px 2px rgba(44,42,40,.10), 0 22px 48px -20px rgba(44,42,40,.55);
  --radius: 3px;
}

/* ---------- reset-ish ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: var(--primary); text-underline-offset: 3px; }
h1,h2,h3,h4 { margin: 0; font-weight: 600; }
p { margin: 0 0 1.1em; }

/* paper grain + faint ledger lines over whole page */
body::before {
  content: "";
  position: fixed; inset: 0;
  pointer-events: none; z-index: 1;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.045'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
}

/* ---------- utility ---------- */
.wrap { max-width: var(--maxw); margin: 0 auto; padding-inline: var(--gutter); }
.wrap-narrow { max-width: 860px; margin: 0 auto; padding-inline: var(--gutter); }
.stack > * + * { margin-top: 1.1rem; }
.center { text-align: center; }
.visually-hidden {
  position:absolute!important; width:1px;height:1px;padding:0;margin:-1px;
  overflow:hidden;clip:rect(0 0 0 0);white-space:nowrap;border:0;
}
:focus-visible {
  outline: 3px solid var(--primary);
  outline-offset: 3px;
  border-radius: 2px;
}

/* skip link */
.skip {
  position: absolute; left: 0; top: -60px; z-index: 200;
  background: var(--ink); color: var(--bg); padding: .6rem 1rem;
  font-family: var(--sans); font-size: .85rem; letter-spacing: .04em;
  transition: top .2s;
}
.skip:focus { top: 0; }

/* ---------- field labels / monospace tags ---------- */
.tag {
  font-family: var(--sans);
  font-size: .68rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--primary);
}
.coord {
  font-family: var(--sans);
  font-size: .68rem;
  letter-spacing: .16em;
  color: var(--ink-45);
  font-variant-numeric: tabular-nums;
}
.hand {
  font-family: var(--hand);
  color: var(--accent);
  font-size: 1.5rem;
  line-height: 1;
  transform: rotate(-3deg);
  display: inline-block;
}

/* field-entry badge */
.entry-badge {
  display: inline-flex; align-items: center; gap: .55rem;
  border: 1px solid var(--ink); border-radius: 40px;
  padding: .4rem .95rem; background: rgba(242,239,235,.7);
  font-family: var(--sans); font-size: .66rem; letter-spacing: .24em;
  text-transform: uppercase; color: var(--ink);
}
.entry-badge .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); animation: pulse 2.4s infinite; }
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:.3} }

/* section framing */
.section { position: relative; padding-block: clamp(3.5rem, 8vw, 7rem); z-index: 2; }
.section-head { max-width: 720px; margin-bottom: 2.6rem; }
.section-head .tag { display:block; margin-bottom: .9rem; }
.section-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2.1rem, 5.5vw, 3.6rem);
  line-height: 1.02;
  letter-spacing: -.01em;
}
.section-title em { font-style: italic; color: var(--primary); }
.lead { font-size: 1.12rem; color: var(--ink-60); max-width: 62ch; }

/* dashed rule / archive divider */
.rule {
  border: 0; border-top: 1px dashed var(--paper-line);
  margin: 0; height: 0;
}
.rule-tick {
  height: 22px; position: relative;
  background-image: repeating-linear-gradient(90deg, var(--paper-line) 0 1px, transparent 1px 24px);
  background-position: bottom; background-repeat: repeat-x; background-size: 24px 8px;
}

/* ============================================================
   HEADER / NAV
   ============================================================ */
.masthead {
  position: sticky; top: 0; z-index: 100;
  background: rgba(242,239,235,.86);
  backdrop-filter: saturate(1.1) blur(9px);
  border-bottom: 1px solid var(--paper-line);
}
.masthead-inner {
  max-width: var(--maxw); margin: 0 auto;
  padding: .55rem var(--gutter);
  display: flex; align-items: center; gap: 1rem;
}
.brand { display: flex; align-items: center; gap: .7rem; text-decoration: none; color: var(--ink); }
.brand img { width: 42px; height: 42px; object-fit: contain; }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-name { font-family: var(--serif); font-size: 1.32rem; font-weight: 600; letter-spacing: .01em; }
.brand-sub { font-family: var(--sans); font-size: .56rem; letter-spacing: .34em; text-transform: uppercase; color: var(--ink-45); margin-top: 3px; }

.nav { margin-left: auto; display: flex; align-items: center; gap: 1.55rem; }
.nav-links { display: flex; gap: 1.35rem; list-style: none; margin: 0; padding: 0; }
.nav-links a {
  font-family: var(--sans); font-size: .74rem; letter-spacing: .16em;
  text-transform: uppercase; text-decoration: none; color: var(--ink);
  padding: .35rem 0; position: relative;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; height: 2px; width: 0;
  background: var(--accent); transition: width .28s ease;
}
.nav-links a:hover::after, .nav-links a[aria-current="page"]::after { width: 100%; }
.nav-links a[aria-current="page"] { color: var(--accent); }

/* social row shared */
.social-row { display: flex; align-items: center; gap: .55rem; }
.social-row a {
  width: 34px; height: 34px; display: grid; place-items: center;
  border: 1px solid var(--paper-line); border-radius: 50%;
  color: var(--ink); background: transparent; transition: .22s ease;
}
.social-row a svg { width: 16px; height: 16px; fill: currentColor; }
.social-row a:hover { background: var(--ink); color: var(--bg); transform: translateY(-2px) rotate(-4deg); border-color: var(--ink); }

.header-social { }
@media (max-width: 1040px) { .header-social { display: none; } }

/* give button (header) */
.btn {
  display: inline-flex; align-items: center; gap: .55rem;
  font-family: var(--sans); font-size: .78rem; letter-spacing: .12em;
  text-transform: uppercase; font-weight: 500;
  text-decoration: none; cursor: pointer; border: none;
  padding: .78rem 1.35rem; border-radius: 2px;
  transition: transform .18s ease, box-shadow .18s ease, background .18s;
}
.btn svg { width: 15px; height: 15px; fill: currentColor; }
.btn-give {
  background: var(--accent); color: #fdf6f0;
  box-shadow: 0 2px 0 #8f4028, var(--shadow-lift);
}
.btn-give:hover { transform: translateY(-2px); box-shadow: 0 4px 0 #8f4028, var(--shadow-photo); }
.btn-give:active { transform: translateY(1px); box-shadow: 0 1px 0 #8f4028; }
.btn-ghost {
  background: transparent; color: var(--ink); border: 1px solid var(--ink);
}
.btn-ghost:hover { background: var(--ink); color: var(--bg); }
.btn-teal { background: var(--primary); color: #f2f5f6; box-shadow: 0 2px 0 #2f4e5a, var(--shadow-lift); }
.btn-teal:hover { transform: translateY(-2px); }
.btn-lg { padding: 1rem 1.8rem; font-size: .85rem; }
.btn-block { width: 100%; justify-content: center; }

.nav-give { }
@media (max-width: 560px){ .nav-give { display:none; } }

/* hamburger */
.hamburger {
  display: none; margin-left: .3rem;
  width: 44px; height: 44px; border: 1px solid var(--paper-line);
  background: transparent; border-radius: 3px; cursor: pointer; padding: 0;
  position: relative;
}
.hamburger span, .hamburger span::before, .hamburger span::after {
  content: ""; position: absolute; left: 50%; width: 20px; height: 2px;
  background: var(--ink); transform: translateX(-50%); transition: .25s ease;
}
.hamburger span { top: 50%; margin-top: -1px; }
.hamburger span::before { top: -6px; }
.hamburger span::after { top: 6px; }
.hamburger[aria-expanded="true"] span { background: transparent; }
.hamburger[aria-expanded="true"] span::before { top: 0; transform: translateX(-50%) rotate(45deg); }
.hamburger[aria-expanded="true"] span::after { top: 0; transform: translateX(-50%) rotate(-45deg); }

@media (max-width: 900px) {
  .nav-links { display: none; }
  .hamburger { display: block; }
}

/* mobile drawer */
.mobile-nav {
  position: fixed; inset: 0 0 0 auto; width: min(84vw, 360px);
  background: var(--bg); z-index: 130;
  transform: translateX(100%); transition: transform .32s cubic-bezier(.5,0,.2,1);
  box-shadow: -30px 0 60px -30px rgba(44,42,40,.6);
  padding: 5.5rem 2rem 2rem; display: flex; flex-direction: column;
  border-left: 1px solid var(--paper-line);
  overflow-y: auto;
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav a.mlink {
  font-family: var(--serif); font-size: 1.7rem; text-decoration: none;
  color: var(--ink); padding: .55rem 0; border-bottom: 1px dashed var(--paper-line);
}
.mobile-nav a.mlink:hover { color: var(--accent); }
.mobile-nav .social-row { margin-top: 1.6rem; }
.mobile-nav .btn { margin-top: 1.4rem; }
.m-close {
  position: absolute; top: 1.1rem; right: 1.1rem; width: 42px; height: 42px;
  border: 1px solid var(--paper-line); background: transparent; border-radius: 3px;
  font-size: 1.4rem; cursor: pointer; color: var(--ink);
}
.scrim {
  position: fixed; inset: 0; background: rgba(44,42,40,.42); z-index: 120;
  opacity: 0; visibility: hidden; transition: .3s;
}
.scrim.open { opacity: 1; visibility: visible; }

/* ============================================================
   STICKY FLOATING GIVE (persistent on scroll)
   ============================================================ */
.give-float {
  position: fixed; z-index: 90; right: clamp(1rem,3vw,2rem); bottom: clamp(1rem,3vw,2rem);
  display: inline-flex; align-items: center; gap: .6rem;
  background: var(--accent); color: #fdf6f0; text-decoration: none;
  font-family: var(--sans); font-weight: 500; letter-spacing: .1em; text-transform: uppercase;
  font-size: .8rem; padding: .95rem 1.4rem; border-radius: 40px;
  box-shadow: 0 4px 0 #8f4028, 0 18px 34px -12px rgba(44,42,40,.6);
  opacity: 0; transform: translateY(24px) scale(.9); pointer-events: none;
  transition: opacity .35s ease, transform .35s cubic-bezier(.3,1.4,.5,1);
}
.give-float.show { opacity: 1; transform: translateY(0) scale(1); pointer-events: auto; }
.give-float:hover { transform: translateY(-3px); box-shadow: 0 6px 0 #8f4028, 0 22px 40px -12px rgba(44,42,40,.65); }
.give-float svg { width: 17px; height: 17px; fill: currentColor; }
@media (max-width: 560px){ .give-float span.lbl { display:none; } .give-float { padding: 1rem; } }

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; z-index: 2; padding: clamp(1rem,3vw,2rem) var(--gutter) clamp(2rem,5vw,4rem); }
.hero-frame {
  position: relative; max-width: var(--maxw); margin: 0 auto;
  background: var(--surface); padding: clamp(.7rem,1.6vw,1.15rem);
  box-shadow: var(--shadow-photo);
  border: 1px solid rgba(44,42,40,.08);
}
.hero-photo {
  position: relative; overflow: hidden; aspect-ratio: 16/9;
}
@media (max-width: 640px){ .hero-photo { aspect-ratio: 4/5; } }
.hero-photo img {
  width: 100%; height: 100%; object-fit: cover;
  filter: saturate(.86) contrast(1.02);
  transform: scale(1.04); animation: heroZoom 18s ease-in-out infinite alternate;
}
@keyframes heroZoom { to { transform: scale(1.12); } }
.hero-photo::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(20,26,28,.28) 0%, rgba(20,26,28,.18) 34%, rgba(20,26,28,.80) 100%);
}
@media (max-width: 640px){
  .hero-photo { aspect-ratio: 3 / 4.7; }
  .hero-photo::after { background: linear-gradient(180deg, rgba(20,26,28,.42) 0%, rgba(20,26,28,.44) 45%, rgba(20,26,28,.86) 100%); }
  .hero-scroll { display: none; }
  .hero-overlay { padding: 1.25rem 1.25rem 1.4rem; }
  .hero-title { font-size: clamp(2.05rem, 9vw, 3rem); }
  .hero-sub { font-size: .92rem; margin-top: .8rem; }
  .hero-cta { margin-top: 1.2rem; gap: .6rem; }
  .hero-cta .btn { padding: .8rem 1.15rem; font-size: .72rem; }
}
.hero-overlay {
  position: absolute; inset: 0; z-index: 3;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: clamp(1.4rem, 4vw, 3.3rem);
}
.hero-kicker {
  font-family: var(--sans); font-size: .7rem; letter-spacing: .3em; text-transform: uppercase;
  color: #f4d9a8; margin-bottom: .8rem;
}
.hero-title {
  font-family: var(--serif); color: #f7f3ec; font-weight: 500;
  font-size: clamp(2.7rem, 8.5vw, 6.4rem); line-height: .96; letter-spacing: -.01em;
  text-shadow: 0 2px 30px rgba(0,0,0,.4);
}
.hero-title em { font-style: italic; color: #f0c07f; display: block; }
.hero-sub { color: #ece6dc; max-width: 46ch; margin-top: 1.1rem; font-size: 1.05rem; }
.hero-cta { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1.7rem; }

/* floating field entry badge on hero corner */
.hero-entry {
  position: absolute; top: clamp(1rem,3vw,2rem); left: clamp(1rem,3vw,2rem); z-index: 4;
  background: rgba(242,239,235,.92); color: var(--ink);
}
.hero-scroll {
  position: absolute; right: clamp(1rem,3vw,2.2rem); top: clamp(1rem,3vw,2rem); z-index: 4;
  font-family: var(--hand); color: #f0c07f; font-size: 1.6rem; transform: rotate(4deg);
  text-align: right;
}
/* taped corners on hero frame */
.hero-frame::before, .hero-frame::after {
  content: ""; position: absolute; width: 120px; height: 34px; z-index: 5;
  background: var(--tape); box-shadow: 0 1px 4px rgba(44,42,40,.2);
}
.hero-frame::before { top: -12px; left: 40px; transform: rotate(-4deg); }
.hero-frame::after { bottom: -12px; right: 50px; transform: rotate(-3deg); background: var(--tape-2); }

/* hero stat strip */
.hero-facts {
  max-width: var(--maxw); margin: 1.6rem auto 0; padding-inline: var(--gutter);
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
  background: var(--paper-line); border: 1px solid var(--paper-line);
}
.hero-facts div { background: var(--bg); padding: 1.1rem 1.2rem; }
.hero-facts .n { font-family: var(--serif); font-size: 2rem; color: var(--primary); line-height: 1; }
.hero-facts .l { font-family: var(--sans); font-size: .64rem; letter-spacing: .18em; text-transform: uppercase; color: var(--ink-45); margin-top: .45rem; }
@media (max-width: 720px){ .hero-facts { grid-template-columns: repeat(2,1fr); } }

/* ============================================================
   PHOTOS — taped / polaroid
   ============================================================ */
.photo {
  position: relative; background: #fff; padding: 10px 10px 10px;
  box-shadow: var(--shadow-photo); border: 1px solid rgba(44,42,40,.07);
}
.photo img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.9) contrast(1.02); }
.photo .cap {
  font-family: var(--hand); color: var(--ink); font-size: 1.3rem; line-height: 1.1;
  padding: .5rem .3rem .2rem; text-align: center;
}
.photo.tape::before {
  content: ""; position: absolute; top: -13px; left: 50%; transform: translateX(-50%) rotate(-2deg);
  width: 110px; height: 30px; background: var(--tape); box-shadow: 0 1px 4px rgba(44,42,40,.18);
}
.photo.tape-l::before { left: 26px; transform: rotate(-8deg); }
.photo.tape-corner::before, .photo.tape-corner::after {
  content: ""; position: absolute; width: 74px; height: 26px; background: var(--tape-2);
  box-shadow: 0 1px 4px rgba(44,42,40,.16);
}
.photo.tape-corner::before { top: -10px; left: -14px; transform: rotate(-42deg); }
.photo.tape-corner::after  { bottom: -10px; right: -14px; transform: rotate(-42deg); background: var(--tape); }

.tilt-l { transform: rotate(-1.6deg); }
.tilt-r { transform: rotate(1.8deg); }
.tilt-l:hover, .tilt-r:hover { transform: rotate(0); }
.photo { transition: transform .4s cubic-bezier(.3,1,.4,1); }

/* ============================================================
   ABOUT — collage
   ============================================================ */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem,5vw,4.5rem); align-items: start; }
@media (max-width: 860px){ .about-grid { grid-template-columns: 1fr; gap: 3rem; } }
.bio-card { }
.bio-photo-wrap { position: relative; margin-bottom: 1.7rem; }
.bio-photo-wrap .photo { max-width: 300px; }
.bio-name { font-family: var(--serif); font-size: clamp(1.9rem,4vw,2.7rem); font-weight: 600; line-height: 1; }
.bio-role { font-family: var(--sans); font-size: .68rem; letter-spacing: .24em; text-transform: uppercase; color: var(--accent); margin: .5rem 0 1.1rem; }
.bio-body { color: var(--ink-60); font-size: .98rem; }
.bio-book {
  display: inline-flex; align-items: center; gap: .5rem; margin-top: .3rem;
  font-family: var(--sans); font-size: .74rem; letter-spacing: .1em; text-transform: uppercase; color: var(--primary);
  border-bottom: 1px solid var(--primary); text-decoration: none; padding-bottom: 2px;
}
.postage {
  position: absolute; width: 74px; height: 88px; z-index: 3;
  background: var(--surface); border: 3px solid #fff; box-shadow: var(--shadow-lift);
  outline: 2px dashed var(--paper-line); outline-offset: -6px;
  display: grid; place-items: center; text-align: center;
  font-family: var(--sans); font-size: .52rem; letter-spacing: .1em; text-transform: uppercase; color: var(--primary);
  transform: rotate(6deg);
}
.postage b { font-family: var(--serif); font-size: 1.1rem; display:block; }

/* ============================================================
   PILLARS — horizontal dossier of index cards
   ============================================================ */
.dossier { position: relative; }
.dossier-scroll {
  display: flex; gap: 1.4rem; overflow-x: auto; padding: .5rem .2rem 2rem;
  scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}
.dossier-scroll::-webkit-scrollbar { height: 8px; }
.dossier-scroll::-webkit-scrollbar-thumb { background: var(--ink-45); border-radius: 8px; }
.dossier-scroll::-webkit-scrollbar-track { background: var(--paper-line); }
.card-index {
  scroll-snap-align: start; flex: 0 0 320px; max-width: 320px;
  background: #fbf8f3; border: 1px solid rgba(44,42,40,.12);
  box-shadow: var(--shadow-lift); padding: 1.5rem 1.5rem 1.7rem;
  position: relative;
  background-image: repeating-linear-gradient(180deg, transparent 0 30px, var(--paper-line) 30px 31px);
  background-position: 0 46px;
}
.card-index::before {
  /* red margin line like an index card */
  content: ""; position: absolute; left: 42px; top: 0; bottom: 0; width: 1px; background: rgba(184,93,67,.4);
}
.card-index .no { font-family: var(--sans); font-size: .66rem; letter-spacing: .2em; color: var(--accent); text-transform: uppercase; }
.card-index h3 { font-family: var(--serif); font-size: 1.5rem; font-weight: 600; margin: .5rem 0 .3rem; line-height: 1.05; }
.card-index .region { font-family: var(--sans); font-size: .6rem; letter-spacing: .2em; text-transform: uppercase; color: var(--primary); margin-bottom: .8rem; }
.card-index p { font-size: .9rem; color: var(--ink-60); margin: 0; }
.card-index .tab {
  position: absolute; top: -1px; right: 22px; width: 46px; height: 16px;
  background: var(--accent2); border-radius: 0 0 4px 4px;
}
.dossier-hint { font-family: var(--hand); color: var(--accent); font-size: 1.3rem; transform: rotate(-2deg); margin-bottom: .4rem; }

/* ============================================================
   MISSIONS — polaroid country map
   ============================================================ */
.map-band {
  background: var(--surface);
  background-image:
    linear-gradient(rgba(66,108,125,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(66,108,125,.06) 1px, transparent 1px);
  background-size: 34px 34px;
  border-block: 1px solid var(--paper-line);
}
.countries {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(190px,1fr));
  gap: clamp(1.6rem, 3vw, 2.6rem);
}
.polaroid {
  background: #fff; padding: 10px 10px 54px; box-shadow: var(--shadow-photo);
  position: relative; text-decoration: none; color: var(--ink);
  transition: transform .45s cubic-bezier(.2,1,.3,1), box-shadow .45s;
}
.polaroid:nth-child(odd){ transform: rotate(-2deg); }
.polaroid:nth-child(even){ transform: rotate(1.6deg); }
.polaroid:nth-child(3n){ transform: rotate(2.4deg); }
.polaroid:hover, .polaroid:focus-visible {
  transform: rotate(0) translateY(-8px) scale(1.03); box-shadow: 0 4px 4px rgba(44,42,40,.12), 0 34px 60px -18px rgba(44,42,40,.6); z-index: 5;
}
.polaroid .pimg { aspect-ratio: 1/1; overflow: hidden; }
.polaroid img { width:100%; height:100%; object-fit: cover; filter: saturate(.55) sepia(.12) contrast(1.02); transition: filter .5s; }
.polaroid:hover img, .polaroid:focus-visible img { filter: saturate(1) sepia(0) contrast(1.03); }
.polaroid .pcap { position: absolute; left: 0; right: 0; bottom: 9px; text-align: center; font-family: var(--hand); font-size: 1.45rem; line-height: 1.05; }
.polaroid .pcoord { display:block; font-family: var(--sans); font-size: .5rem; letter-spacing:.12em; color: var(--ink-45); margin-top: 1px; }
.polaroid::after {
  content: ""; position: absolute; top: -11px; left: 50%; transform: translateX(-50%) rotate(-3deg);
  width: 96px; height: 26px; background: var(--tape); opacity: .85; box-shadow: 0 1px 3px rgba(44,42,40,.15);
}

/* projects 2025 */
.projects { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.4rem; }
@media (max-width: 800px){ .projects { grid-template-columns: 1fr; } }
.proj {
  background: #fbf8f3; border: 1px solid rgba(44,42,40,.12); box-shadow: var(--shadow-lift);
  padding: 1.6rem; position: relative; overflow: hidden;
}
.proj .stamp {
  position: absolute; top: 14px; right: -30px; transform: rotate(14deg);
  background: var(--accent); color: #fdf6f0; font-family: var(--sans); font-size: .58rem;
  letter-spacing: .18em; text-transform: uppercase; padding: .3rem 2.4rem;
}
.proj h4 { font-family: var(--serif); font-size: 1.7rem; font-weight: 600; margin-bottom: .2rem; }
.proj .when { font-family: var(--sans); font-size: .64rem; letter-spacing: .18em; text-transform: uppercase; color: var(--primary); }
.proj p { font-size: .92rem; color: var(--ink-60); margin: .9rem 0 0; }

/* La Ola CTA */
.laola {
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 0; align-items: stretch;
  background: var(--primary); color: #eef3f4; box-shadow: var(--shadow-photo);
}
@media (max-width: 800px){ .laola { grid-template-columns: 1fr; } }
.laola .laola-body { padding: clamp(2rem,4vw,3.4rem); display:flex; flex-direction: column; justify-content:center; }
.laola .tag { color: var(--accent2); }
.laola h3 { font-family: var(--serif); font-size: clamp(2rem,4.5vw,3.1rem); font-weight: 500; margin: .7rem 0 .8rem; }
.laola p { color: rgba(238,243,244,.82); }
.laola .laola-photo { position: relative; min-height: 260px; }
.laola .laola-photo img { position:absolute; inset:0; width:100%; height:100%; object-fit: cover; filter: saturate(.85); }

/* ============================================================
   GIVE teaser + page
   ============================================================ */
.give-teaser { position: relative; background: var(--ink); color: #ece6dc; overflow: hidden; }
.give-teaser::before {
  content: ""; position: absolute; inset: 0; opacity: .14;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60'%3E%3Cpath d='M0 30h60M30 0v60' stroke='%23D9A05B' stroke-width='.5'/%3E%3C/svg%3E");
}
.give-teaser .wrap { position: relative; z-index: 2; }
.give-teaser .section-title { color: #f7f3ec; }
.give-teaser .section-title em { color: var(--accent2); }
.give-teaser .lead { color: rgba(236,230,220,.8); }

.give-methods { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px,1fr)); gap: 1.2rem; }
.method {
  background: #fbf8f3; border: 1px solid rgba(44,42,40,.12); box-shadow: var(--shadow-lift);
  padding: 1.6rem; display: flex; flex-direction: column; gap: .5rem;
}
.method h4 { font-family: var(--serif); font-size: 1.4rem; font-weight: 600; }
.method p { font-size: .88rem; color: var(--ink-60); margin: 0; flex: 1; }
.method .m-badge { font-family: var(--sans); font-size: .58rem; letter-spacing: .16em; text-transform: uppercase; color: var(--primary); }

/* donation form */
.give-gateway {
  background: #fbf8f3; border: 1px solid rgba(44,42,40,.14);
  box-shadow: var(--shadow-photo); padding: clamp(1.6rem,4vw,3rem);
  position: relative;
}
.give-gateway::before {
  content: "HARVEST PARTNERS"; position: absolute; top: 1.2rem; right: 1.4rem;
  font-family: var(--sans); font-size: .58rem; letter-spacing: .26em; color: var(--ink-45);
}
.amount-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: .6rem; margin: 1rem 0; }
@media (max-width:520px){ .amount-grid { grid-template-columns: repeat(2,1fr); } }
.amount-grid button {
  font-family: var(--sans); font-size: 1rem; font-weight: 500; padding: .85rem 0;
  background: var(--bg); border: 1px solid var(--paper-line); border-radius: 3px; cursor: pointer;
  color: var(--ink); transition: .18s;
}
.amount-grid button:hover { border-color: var(--primary); }
.amount-grid button[aria-pressed="true"] { background: var(--primary); color: #fff; border-color: var(--primary); }
.field-label { font-family: var(--sans); font-size: .66rem; letter-spacing: .18em; text-transform: uppercase; color: var(--ink-60); display:block; margin-bottom: .4rem; }
.amount-input { position: relative; }
.amount-input span { position: absolute; left: 14px; top: 50%; transform: translateY(-50%); font-family: var(--serif); font-size: 1.4rem; color: var(--ink-45); }
.amount-input input {
  width: 100%; font-family: var(--sans); font-size: 1.35rem; padding: .8rem .8rem .8rem 2rem;
  border: 1px solid var(--paper-line); border-radius: 3px; background: var(--bg); color: var(--ink);
}
.amount-input input:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(66,108,125,.18); }
.secure-line { display: flex; align-items:center; gap: .5rem; font-size: .8rem; color: var(--ink-60); margin-top: 1rem; }
.secure-line svg { width: 15px; height: 15px; fill: var(--primary); }
.tax-note {
  border-left: 3px solid var(--accent2); background: rgba(217,160,91,.1);
  padding: .9rem 1.1rem; font-size: .85rem; color: var(--ink-60); margin-top: 1.4rem;
}
.tax-note b { color: var(--ink); }

/* ============================================================
   CONNECT / FOLLOW block
   ============================================================ */
.connect { background: var(--surface); border-block: 1px solid var(--paper-line); }
.connect-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem,5vw,4rem); align-items: center; }
@media (max-width: 780px){ .connect-grid { grid-template-columns: 1fr; } }
.follow-tiles { display: grid; grid-template-columns: repeat(auto-fit,minmax(120px,1fr)); gap: .9rem; }
.follow-tile {
  display: flex; flex-direction: column; gap: .55rem; align-items: flex-start;
  background: var(--bg); border: 1px solid var(--paper-line); box-shadow: var(--shadow-lift);
  padding: 1.1rem; text-decoration: none; color: var(--ink); transition: .25s;
}
.follow-tile:hover { transform: translateY(-4px) rotate(-1deg); box-shadow: var(--shadow-photo); }
.follow-tile svg { width: 24px; height: 24px; fill: var(--primary); }
.follow-tile b { font-family: var(--sans); font-size: .74rem; letter-spacing: .06em; }
.follow-tile span { font-size: .68rem; color: var(--ink-45); }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(220px,1fr)); gap: 1.4rem; }
.contact-card { background:#fbf8f3; border:1px solid rgba(44,42,40,.12); box-shadow: var(--shadow-lift); padding: 1.5rem; }
.contact-card .tag { display:block; margin-bottom:.6rem; }
.contact-card a { color: var(--ink); text-decoration: none; font-size: 1.02rem; word-break: break-word; }
.contact-card a:hover { color: var(--accent); }
.contact-card .big { font-family: var(--serif); font-size: 1.5rem; }

/* ============================================================
   BLOG / DISPATCHES
   ============================================================ */
.dispatch-index { display: grid; grid-template-columns: repeat(auto-fill,minmax(280px,1fr)); gap: 1.4rem; }
.dispatch {
  background:#fbf8f3; border:1px solid rgba(44,42,40,.12); box-shadow: var(--shadow-lift);
  padding: 1.4rem 1.4rem 1.5rem; text-decoration:none; color: var(--ink);
  display:flex; flex-direction:column; transition: .28s; position: relative;
}
.dispatch:hover { transform: translateY(-4px); box-shadow: var(--shadow-photo); }
.dispatch .d-date { font-family: var(--sans); font-size: .62rem; letter-spacing: .18em; text-transform: uppercase; color: var(--accent); }
.dispatch h3 { font-family: var(--serif); font-size: 1.45rem; font-weight: 600; line-height: 1.08; margin: .5rem 0 .5rem; }
.dispatch p { font-size: .88rem; color: var(--ink-60); margin: 0; }
.dispatch .d-more { font-family: var(--sans); font-size: .66rem; letter-spacing: .12em; text-transform: uppercase; color: var(--primary); margin-top: .9rem; }

/* full articles */
.article { max-width: 760px; margin: 0 auto; padding-block: clamp(2.5rem,5vw,4rem); border-top: 1px dashed var(--paper-line); }
/* keep article body off the screen edges on phones/tablets (article max-width == viewport there) */
@media (max-width: 820px){
  .article { padding-inline: var(--gutter); }
}
.article:first-of-type { border-top: none; }
.article .a-meta { display:flex; gap: 1rem; align-items:center; flex-wrap:wrap; margin-bottom: 1rem; }
.article .a-date { font-family: var(--sans); font-size:.66rem; letter-spacing:.2em; text-transform:uppercase; color: var(--accent); }
.article h2 { font-family: var(--serif); font-size: clamp(2rem,5vw,3.1rem); font-weight: 600; line-height: 1.02; margin-bottom: 1.2rem; letter-spacing: -.01em; }
.article-body p { font-size: 1.04rem; color: #3a3835; line-height: 1.78; }
.article-body p:first-of-type::first-letter {
  font-family: var(--serif); font-size: 3.4rem; float: left; line-height: .8;
  padding: .1em .12em 0 0; color: var(--accent);
}
.article-photo { margin: 2rem 0; }

/* toc / all posts list */
.archive-list { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--paper-line); }
.archive-list li { border-bottom: 1px solid var(--paper-line); }
.archive-list a {
  display: flex; align-items: baseline; gap: 1rem; padding: 1rem .3rem; text-decoration: none; color: var(--ink);
  transition: .2s; flex-wrap: wrap;
}
.archive-list a:hover { background: rgba(66,108,125,.06); padding-left: 1rem; }
.archive-list .al-date { font-family: var(--sans); font-size: .66rem; letter-spacing: .12em; color: var(--ink-45); min-width: 92px; font-variant-numeric: tabular-nums; }
.archive-list .al-title { font-family: var(--serif); font-size: 1.3rem; font-weight: 600; flex: 1; }
.archive-list .al-tag { font-family: var(--sans); font-size: .58rem; letter-spacing: .16em; text-transform: uppercase; color: var(--accent); }

/* page hero (interior) */
.page-hero { position: relative; z-index: 2; padding-block: clamp(2.6rem,6vw,5rem); border-bottom: 1px solid var(--paper-line); }
.page-hero .coord { display:block; margin-bottom: .8rem; }
.page-hero h1 { font-family: var(--serif); font-weight: 500; font-size: clamp(2.6rem,7vw,5rem); line-height: .98; letter-spacing: -.01em; }
.page-hero h1 em { font-style: italic; color: var(--primary); }
.page-hero p { color: var(--ink-60); max-width: 60ch; margin-top: 1rem; font-size: 1.08rem; }

/* ============================================================
   FOOTER
   ============================================================ */
.foot { position: relative; z-index: 2; background: var(--ink); color: #cfc9bf; padding-block: clamp(3rem,6vw,5rem) 2rem; }
.foot a { color: #cfc9bf; text-decoration: none; }
.foot a:hover { color: var(--accent2); }
.foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 2.5rem; }
@media (max-width: 760px){ .foot-grid { grid-template-columns: 1fr; gap: 2rem; } }
.foot-brand { display:flex; align-items:center; gap:.7rem; margin-bottom: 1rem; }
.foot-brand img { width: 48px; height: 48px; object-fit: contain; filter: brightness(0) invert(1); opacity: .9; }
.foot-brand .brand-name { color: #f2efeb; }
.foot h5 { font-family: var(--sans); font-size: .66rem; letter-spacing: .22em; text-transform: uppercase; color: var(--accent2); margin: 0 0 1rem; }
.foot ul { list-style: none; margin: 0; padding: 0; }
.foot li { margin-bottom: .55rem; font-size: .92rem; }
.foot .social-row { margin-top: 1.2rem; }
.foot .social-row a { border-color: rgba(236,230,220,.2); color: #cfc9bf; }
.foot .social-row a:hover { background: var(--accent2); color: var(--ink); border-color: var(--accent2); }
.foot-bottom {
  margin-top: 2.8rem; padding-top: 1.4rem; border-top: 1px solid rgba(236,230,220,.16);
  display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
  font-size: .74rem; color: rgba(207,201,191,.7); letter-spacing: .04em;
}

/* ============================================================
   REVEAL ANIMATION (with guaranteed-visible fallback)
   Elements start visible by default. JS adds .reveal-init to HIDE,
   then .is-visible to show. If JS never runs, content stays visible.
   ============================================================ */
.reveal-init { opacity: 0; transform: translateY(22px); }
.reveal-init.is-visible { opacity: 1; transform: none; transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.2,1); }
@media (prefers-reduced-motion: reduce) {
  .reveal-init, .reveal-init.is-visible { opacity: 1 !important; transform: none !important; transition: none !important; }
  .hero-photo img { animation: none; transform: none; }
}
