/* ================================================================
   SHOT OF LIGHT — prototype stylesheet
   System: Warm editorial base, cinematic dark moments, hearth details
   ================================================================ */

:root {
  /* Type */
  --f-display: var(--font-display, Georgia), 'Times New Roman', serif;
  --f-body: var(--font-body, system-ui), sans-serif;
  --f-mono: var(--font-mono, ui-monospace), monospace;
  --f-hand: var(--font-hand, cursive), cursive;

  /* Cream palette (default) */
  --paper: #f5efe3;
  --paper-2: #ebe3d2;
  --ink: #1b120c;
  --ink-2: #3a2a1e;
  --warm: #7a5a3a;
  --line: #d9cfbd;
  --rust: #c15a2a;
  --rust-soft: #e08a5b;
  --sage: #7a8a5a;
  --cream-on-dark: #f5efe3;
  --ink-on-dark: #1b120c;
  --hero-bg: #1b120c;
  --hero-bg-2: #2a1a10;
  --hero-ink: #f5efe3;
  --hero-muted: rgba(245,239,227,0.7);
  --hero-accent: #e08a5b;
}

/* Palette: Dark (espresso base) */
html[data-palette="dark"] {
  --paper: #1b120c;
  --paper-2: #2a1a10;
  --ink: #f5efe3;
  --ink-2: #d9cfbd;
  --warm: #c4a57d;
  --line: rgba(245,239,227,0.14);
  --rust: #e08a5b;
  --rust-soft: #c15a2a;
  --sage: #a8b88a;
}

/* Palette: Sage (Anabaptist plain) */
html[data-palette="sage"] {
  --paper: #f1ede0;
  --paper-2: #e6ddc9;
  --ink: #1e2218;
  --ink-2: #3a422e;
  --warm: #6a7a5a;
  --line: #ccd1bd;
  --rust: #7a8a5a;
  --rust-soft: #9aaa7a;
  --sage: #5a6a4a;
  --hero-accent: #a8b88a;
}

.sol-scope, .sol-scope * { box-sizing: border-box; }
.sol-scope {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--f-body);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  font-feature-settings: 'ss01', 'cv11';
}
.sol-scope p, .sol-scope h1, .sol-scope h2, .sol-scope h3, .sol-scope h4, .sol-scope ul, .sol-scope ol { margin: 0; padding: 0; }
.sol-scope ul, .sol-scope ol { list-style: none; }
.sol-scope img { max-width: 100%; display: block; }
.sol-scope a { color: inherit; text-decoration: none; }
.sol-scope button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; padding: 0; margin: 0; }
html.sol-active, html.sol-active body { background: var(--paper); }

/* ================================================================
   NAV — featured logo lockup
   ================================================================ */
.nav {
  position: sticky; top: 0; z-index: 40;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}
.nav-toggle {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.nav-over-hero {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: linear-gradient(180deg, rgba(12, 6, 2, 0.82) 0%, rgba(12, 6, 2, 0.45) 72%, transparent 100%);
  border-bottom: 0;
  color: var(--hero-ink);
}
.nav-over-hero .nav-ribbon {
  background: transparent;
  border-bottom-color: rgba(245, 239, 227, 0.12);
}
.nav-over-hero .nav-link,
.nav-over-hero .nav-wordmark-top,
.nav-over-hero .nav-wordmark-bot {
  color: var(--hero-ink);
}
.nav-over-hero .nav-cta {
  border-color: rgba(245, 239, 227, 0.55);
  color: var(--hero-ink);
  background: transparent;
}
.nav-over-hero .nav-cta:hover {
  background: var(--hero-ink);
  color: var(--hero-bg);
}
.nav-ribbon {
  background: var(--ink);
  color: var(--cream-on-dark);
  border-bottom: 1px solid var(--ink);
}
.nav-ribbon-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 8px 32px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(245,239,227,0.65);
}
.nav-ribbon-inner span:nth-child(2) { color: var(--rust-soft); }
@media (max-width: 820px) {
  .nav-ribbon-inner span:nth-child(2),
  .nav-ribbon-inner span:nth-child(3) { display: none; }
  .nav-ribbon-inner { justify-content: center; }
}

.nav-logo-lockup {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 14px 32px 10px;
  max-width: 1320px;
  margin: 0 auto;
}
/* Split nav: links — logo — links, with the logo dropping into the bar */
.nav-split {
  max-width: 1240px;
  margin: 0 auto;
  padding: 18px 40px 14px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  position: relative;
}
/* Decorative hairline across the bottom edge of the nav — arcs down under
   the dropped logo, caps at warm dots where it meets the arc. Absolutely
   positioned on top of the hero so it always renders above the bg image. */
.nav-rule {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 0;
  display: grid;
  grid-template-columns: 1fr 200px 1fr;  /* gap narrower than logo so lines tuck under it */
  align-items: start;
  pointer-events: none;
  z-index: 3;
  color: var(--warm);
}
.nav-rule-line {
  height: 1px;
  background: currentColor;
  opacity: 0.85;
  align-self: start;
  position: relative;
}
.nav-rule-line::before,
.nav-rule-line::after {
  content: "";
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor;
  top: 50%;
  transform: translateY(-50%);
}
.nav-rule-line-left::after  { right: -3px; }
.nav-rule-line-right::before { left: -3px; }
.nav-rule-logo-gap { display: block; }
@media (max-width: 900px) {
  .nav-rule { grid-template-columns: 1fr 110px 1fr; }
}
.nav-split-links {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-split-links-left { justify-content: flex-end; }
.nav-split-links-right { justify-content: flex-start; }
.nav-logo-lockup-drop {
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
}
.nav-logo-frame-xl {
  height: 180px;
  width: 180px;
  /* drop it below the nav baseline so it hangs into the page */
  margin-bottom: -88px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: var(--paper, #faf6ee);
  padding: 22px;
  border-radius: 50%;
  position: relative;
  box-shadow: 0 14px 36px rgba(28, 18, 8, 0.16);
}

/* Wordmark replacement for the nav center slot */
.nav-logo-lockup-wordmark {
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.nav-wordmark {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
  color: var(--ink);
  white-space: nowrap;
}
.nav-wordmark-top {
  font-family: var(--f-display);
  font-size: 22px;
  letter-spacing: 0.18em;
  font-weight: 400;
}
.nav-wordmark-bot {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 13px;
  letter-spacing: 0.12em;
  margin-top: 4px;
  color: var(--warm);
  opacity: 0.85;
}
@media (max-width: 900px) {
  .nav-wordmark-top { font-size: 18px; }
  .nav-wordmark-bot { font-size: 12px; }
}

/* Hero overlay logo mark — white PNG via filter */
.hero-logo-mark {
  display: block;
  height: 120px;
  width: auto;
  margin-bottom: 28px;
  opacity: 0.95;
}
.hero-logo-mark-white {
  /* Convert dark PNG to white: invert colors, then lock saturation at 0 so any tint goes monochrome */
  filter: brightness(0) invert(1);
}

/* Centered hero body variant — stacks everything centered on the column */
.hero-body.hero-body-center {
  text-align: center;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  isolation: isolate;      /* so ::before sits behind children only */
  padding: 48px 72px 40px;
}
.hero-body.hero-body-center::before {
  content: "";
  position: absolute;
  inset: -40px -40px -10px -40px;
  z-index: -1;
  background:
    radial-gradient(
      ellipse at center,
      rgba(14, 9, 6, 0.62) 0%,
      rgba(14, 9, 6, 0.45) 40%,
      rgba(14, 9, 6, 0.18) 72%,
      rgba(14, 9, 6, 0) 100%
    );
  filter: blur(2px);
  pointer-events: none;
}
.hero-body.hero-body-center .hero-logo-mark { margin-left: auto; margin-right: auto; }
.hero-body.hero-body-center .hero-ctas { justify-content: center; }
.hero-body.hero-body-center .hero-sub { margin-left: auto; margin-right: auto; }

@media (max-width: 820px) {
  .hero-body.hero-body-center { padding: 32px 24px 28px; }
}

@media (max-width: 820px) {
  .hero-logo-mark { height: 84px; margin-bottom: 20px; }
}
.nav-logo-frame-xl img {
  height: 100%;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  transition: transform 0.3s ease;
}
.nav-logo-lockup-drop:hover .nav-logo-frame-xl img {
  transform: scale(1.04);
}
.nav.on-dark .nav-logo-frame-xl {
  background: var(--ink, #1c1208);
  box-shadow: 0 8px 28px rgba(0,0,0,0.45);
}
.nav-mobile-drawer {
  display: none;
}
@media (max-width: 900px) {
  .nav-split { grid-template-columns: 1fr auto 1fr; padding: 12px 20px; gap: 12px; }
  .nav-split-links { display: none; }
  .nav-split-links-left { justify-content: flex-start; }
  .nav-logo-frame-xl { height: 110px; width: 110px; margin-bottom: -40px; padding: 10px; }
  .nav:has(.nav-toggle:checked) .nav-mobile-drawer {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 16px 24px 24px;
    border-top: 1px solid var(--line);
  }
  .nav-over-hero:has(.nav-toggle:checked) .nav-mobile-drawer {
    background: rgba(12, 6, 2, 0.96);
    border-top-color: rgba(245, 239, 227, 0.12);
  }
}
.nav-logo-rule {
  flex: 1;
  height: 1px;
  background: var(--line);
  position: relative;
  max-width: 280px;
}
.nav-logo-rule::before,
.nav-logo-rule::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--warm);
  transform: translateY(-50%);
}
.nav-logo-rule::before { left: 24%; }
.nav-logo-rule::after { right: 24%; }

.nav-inner {
  max-width: 1320px; margin: 0 auto;
  padding: 14px 32px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
}
.nav-inner-featured {
  padding: 0 32px 18px;
  justify-content: center;
  border-top: 1px solid var(--line);
  padding-top: 14px;
  margin-top: 4px;
}
.nav-inner-featured .nav-links {
  gap: 8px;
}
.nav-link-divider {
  width: 1px;
  height: 16px;
  background: var(--line);
  margin: 0 8px;
  align-self: center;
}
@media (max-width: 820px) {
  .nav-inner-featured .nav-links { display: none; }
  .nav-inner-featured {
    justify-content: flex-end;
    padding-top: 8px;
    padding-bottom: 10px;
  }
  .nav.open.nav-inner-featured .nav-links { display: flex; }
}
.nav-links { display: flex; gap: 4px; align-items: center; }
.nav-link {
  padding: 10px 14px;
  font-size: 14px;
  letter-spacing: 0.02em;
  border-radius: 2px;
  position: relative;
  transition: opacity 0.2s;
  opacity: 0.75;
}
.nav-link:hover { opacity: 1; }
.nav-link.active {
  opacity: 1;
  font-weight: 500;
}
.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 14px; right: 14px;
  height: 1px;
  background: var(--rust);
}
.nav-cta {
  margin-left: 10px;
  padding: 10px 18px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: 1px solid var(--ink);
  color: var(--ink);
  background: var(--paper);
  transition: all 0.2s;
}
.nav.on-dark .nav-cta {
  border-color: var(--cream-on-dark);
  color: var(--cream-on-dark);
  background: transparent;
}
.nav-cta:hover {
  background: var(--ink);
  color: var(--paper);
}
.nav.on-dark .nav-cta:hover {
  background: var(--cream-on-dark);
  color: var(--ink-on-dark);
}

/* Mobile nav */
.nav-burger { display: none; }
@media (max-width: 820px) {
  .nav-links { display: none; }
  .nav-burger {
    display: flex; flex-direction: column; gap: 4px;
    width: 40px; height: 40px; align-items: center; justify-content: center;
  }
  .nav-burger span {
    display: block; width: 20px; height: 1px; background: currentColor;
  }
  .nav.open .nav-links {
    display: flex; flex-direction: column;
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--paper); border-bottom: 1px solid var(--line);
    padding: 12px 16px; gap: 2px;
  }
  .nav.on-dark.open .nav-links { background: var(--hero-bg); }
}

/* ================================================================
   HERO
   ================================================================ */
.hero {
  position: relative;
  min-height: 92vh;
  background: var(--hero-bg);
  color: var(--hero-ink);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 50% 40%, rgba(224,138,91,0.18), transparent 55%),
    radial-gradient(ellipse at 20% 90%, rgba(193,90,42,0.12), transparent 60%),
    linear-gradient(180deg, #120a06 0%, #1b120c 35%, #2a1a10 100%);
}
.hero-v-cinematic::before {
  background:
    radial-gradient(ellipse at 50% 40%, rgba(224,138,91,0.12), transparent 55%),
    radial-gradient(ellipse at 20% 90%, rgba(193,90,42,0.08), transparent 60%);
  pointer-events: none;
}
.hero-grain {
  position: absolute; inset: 0;
  opacity: 0.08;
  pointer-events: none;
  background-image:
    repeating-linear-gradient(0deg, rgba(255,255,255,0.06) 0, rgba(255,255,255,0.06) 1px, transparent 1px, transparent 3px),
    repeating-linear-gradient(90deg, rgba(0,0,0,0.06) 0, rgba(0,0,0,0.06) 1px, transparent 1px, transparent 3px);
  mix-blend-mode: overlay;
}

/* Hero ghost lettering — bg visual element */
.hero-ghost {
  position: absolute;
  bottom: 8%;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--f-display);
  font-size: clamp(120px, 22vw, 340px);
  line-height: 0.85;
  letter-spacing: -0.02em;
  color: rgba(245,239,227,0.04);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1320px;
  margin: 0 auto;
  padding: 24px 32px 160px;
  width: 100%;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Hero v1: cinematic center */
.hero-v-cinematic { text-align: center; }
.hero-v-cinematic .hero-body { max-width: 720px; margin: 0 auto; }
.hero-v-cinematic .hero-ghost { display: none; }
.hero-v-cinematic .hero-grain { opacity: 0.04; }
.hero-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}
.hero-photo-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(12,6,2,0.55) 0%, rgba(12,6,2,0.2) 35%, rgba(12,6,2,0.78) 100%);
  pointer-events: none;
}
.hero-v-cinematic .hero-content { position: relative; z-index: 3; }
.hero-v-cinematic .hero-footer { position: relative; z-index: 3; }
.hero-v-cinematic .hero-grain { z-index: 2; }

/* Hero v2: editorial left */
.hero-v-editorial .hero-content {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 80px;
  align-items: center;
}
.hero-v-editorial .hero-body { text-align: left; max-width: 620px; }
.hero-v-editorial .hero-card {
  background: rgba(245,239,227,0.04);
  border: 1px solid rgba(245,239,227,0.1);
  padding: 36px;
  border-radius: 2px;
  font-family: var(--f-mono);
  font-size: 12px;
  line-height: 1.8;
  color: var(--hero-muted);
  letter-spacing: 0.03em;
}
.hero-v-editorial .hero-card-title {
  font-family: var(--f-display);
  font-size: 24px;
  color: var(--hero-ink);
  margin-bottom: 18px;
  letter-spacing: 0;
  text-transform: none;
}
.hero-v-editorial .hero-card ul { list-style: none; padding: 0; margin: 0; }
.hero-v-editorial .hero-card li {
  padding: 10px 0;
  border-top: 1px solid rgba(245,239,227,0.1);
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
.hero-v-editorial .hero-card li:first-child { border-top: 0; }

/* Hero v3: hearth (stacked, imagery forward) */
.hero-v-hearth .hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-v-hearth .hero-body { text-align: left; }
.hero-v-hearth .hero-stamp {
  aspect-ratio: 4/5;
  border: 1px solid rgba(245,239,227,0.15);
  background:
    linear-gradient(135deg, rgba(193,90,42,0.12), rgba(0,0,0,0) 60%),
    repeating-linear-gradient(45deg, rgba(245,239,227,0.02) 0 2px, transparent 2px 12px),
    linear-gradient(180deg, #2a1a10, #1b120c);
  position: relative;
  padding: 32px;
}
.hero-v-hearth .hero-stamp::before {
  content: '';
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(245,239,227,0.1);
  pointer-events: none;
}
.hero-v-hearth .hero-stamp-label {
  position: absolute;
  top: 24px; left: 24px;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--hero-muted);
}
.hero-v-hearth .hero-stamp-caption {
  position: absolute;
  bottom: 24px; left: 24px; right: 24px;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  color: var(--hero-muted);
  line-height: 1.6;
}

@media (max-width: 860px) {
  .hero-v-editorial .hero-content,
  .hero-v-hearth .hero-content {
    grid-template-columns: 1fr;
  }
}

.hero-eyebrow {
  font-family: var(--f-mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--hero-ink);
  opacity: 0.92;
  margin-bottom: 28px;
  display: inline-flex; align-items: center; gap: 12px;
}
.hero-eyebrow::before,
.hero-eyebrow::after {
  content: '';
  width: 32px; height: 1.5px;
  background: currentColor;
  opacity: 0.55;
}
.hero-v-editorial .hero-eyebrow::before,
.hero-v-hearth .hero-eyebrow::before { display: none; }
.hero-v-editorial .hero-eyebrow::after,
.hero-v-hearth .hero-eyebrow::after { display: none; }

.hero-headline {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(46px, 6.2vw, 92px);
  line-height: 1.02;
  letter-spacing: -0.015em;
  margin-bottom: 28px;
  text-wrap: balance;
}
.hero-headline em {
  color: var(--hero-accent);
  font-style: italic;
}
.hero-sub {
  font-size: clamp(16px, 1.3vw, 19px);
  line-height: 1.65;
  color: var(--hero-muted);
  max-width: 520px;
  margin: 0 auto 40px;
  text-wrap: pretty;
}
.hero-v-editorial .hero-sub,
.hero-v-hearth .hero-sub { margin: 0 0 40px 0; }

.hero-quote {
  font-family: var(--f-display);
  font-style: italic;
  font-size: clamp(20px, 1.7vw, 26px);
  line-height: 1.4;
  color: var(--hero-ink);
  max-width: 620px;
  margin: -8px auto 28px;
  padding: 0 24px;
  text-wrap: balance;
  border-left: 0;
  position: relative;
}
.hero-quote::before,
.hero-quote::after {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--hero-accent);
  margin: 16px auto;
  opacity: 0.7;
}
.hero-v-editorial .hero-quote,
.hero-v-hearth .hero-quote { margin-left: 0; margin-right: 0; padding-left: 0; }
.hero-v-editorial .hero-quote::before,
.hero-v-editorial .hero-quote::after,
.hero-v-hearth .hero-quote::before,
.hero-v-hearth .hero-quote::after { margin-left: 0; }

.hero-ctas { display: inline-flex; gap: 16px; flex-wrap: wrap; }
.hero-v-editorial .hero-ctas,
.hero-v-hearth .hero-ctas { justify-content: flex-start; }

/* Hero footer strip */
.hero-footer {
  position: relative; z-index: 2;
  border-top: 1px solid rgba(245,239,227,0.1);
  padding: 16px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--hero-muted);
  max-width: 1320px;
  margin: 0 auto;
  width: 100%;
}
.hero-footer > div { display: flex; gap: 28px; }
.hero-footer-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--hero-accent);
  display: inline-block; margin-right: 8px;
  animation: pulse 2s ease-in-out infinite;
  vertical-align: middle;
}
@keyframes pulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}

/* ================================================================
   BUTTONS
   ================================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  font-family: var(--f-body);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  border: 1px solid;
  border-radius: 2px;
  transition: all 0.2s;
  cursor: pointer;
}
.btn-primary {
  background: var(--rust);
  border-color: var(--rust);
  color: #fff;
}
.btn-primary:hover { background: #a84b21; border-color: #a84b21; }
.btn-ghost {
  background: transparent;
  border-color: currentColor;
}
.btn-ghost:hover {
  background: currentColor;
}
.btn-ghost:hover span { color: var(--hero-bg); }
.hero .btn-ghost:hover span { color: var(--hero-bg); }

.btn .arrow { transition: transform 0.2s; }
.btn:hover .arrow { transform: translateX(4px); }

/* ================================================================
   SECTIONS
   ================================================================ */
.section {
  padding: 120px 32px;
  position: relative;
}
.section-inner {
  max-width: 1320px;
  margin: 0 auto;
}
.section-narrow { max-width: 880px; }

.eyebrow {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--rust);
  margin-bottom: 20px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: '';
  width: 28px; height: 1px; background: currentColor;
}

h1, h2, h3 { font-weight: 400; text-wrap: balance; }
h2 {
  font-family: var(--f-display);
  font-size: clamp(34px, 4.2vw, 60px);
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin-bottom: 20px;
}
h2 em { color: var(--rust); font-style: italic; }
h3 {
  font-family: var(--f-display);
  font-size: clamp(22px, 2vw, 28px);
  line-height: 1.2;
  margin-bottom: 14px;
}

.lede {
  font-size: clamp(18px, 1.4vw, 22px);
  line-height: 1.55;
  color: var(--ink-2);
  max-width: 640px;
  text-wrap: pretty;
}

.section-dark {
  background: var(--ink);
  color: var(--cream-on-dark);
}
.section-dark .eyebrow { color: var(--rust-soft); }
html[data-palette="dark"] .section-dark { background: #0e0805; }

.section-paper-2 { background: var(--paper-2); }

/* ================================================================
   WELCOME — four pillars
   ================================================================ */
.welcome-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin-top: 60px;
}
.welcome-cell {
  background: var(--paper);
  padding: 40px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.welcome-cell-num {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--warm);
}
.welcome-cell-title {
  font-family: var(--f-display);
  font-size: 22px;
  line-height: 1.2;
}
.welcome-cell-body {
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink-2);
}
@media (max-width: 820px) {
  .welcome-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ================================================================
   ATMOSPHERE — photo grid (toned placeholders)
   ================================================================ */
.atm-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  grid-template-rows: 280px 280px;
  gap: 16px;
  margin-top: 48px;
}
.atm-grid > *:first-child { grid-row: span 2; }
@media (max-width: 820px) {
  .atm-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(3, 200px);
  }
  .atm-grid > *:first-child { grid-row: span 1; grid-column: span 2; }
}

.photo {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  color: var(--cream-on-dark);
}
.photo-scene {
  position: absolute; inset: 0;
  background:
    linear-gradient(135deg, rgba(193,90,42,0.2), rgba(0,0,0,0) 50%),
    repeating-linear-gradient(
      45deg,
      rgba(245,239,227,0.02) 0 2px,
      transparent 2px 14px
    ),
    linear-gradient(160deg, #3a2a1e 0%, #1b120c 100%);
}
.photo-scene.amber {
  background:
    radial-gradient(ellipse at 30% 40%, rgba(224,138,91,0.4), transparent 60%),
    linear-gradient(160deg, #4a3020 0%, #1b120c 100%);
}
.photo-scene.cool {
  background:
    linear-gradient(135deg, rgba(100,80,60,0.3), rgba(0,0,0,0)),
    linear-gradient(160deg, #2a2018 0%, #140c08 100%);
}
.photo-scene.morning {
  background:
    radial-gradient(ellipse at 70% 30%, rgba(245,210,160,0.3), transparent 55%),
    linear-gradient(160deg, #5a4030 0%, #2a1a10 100%);
}
.photo-scene.hearth {
  background:
    radial-gradient(ellipse at 50% 70%, rgba(193,90,42,0.5), transparent 45%),
    linear-gradient(160deg, #4a2a1a 0%, #1b120c 100%);
}
.photo-caption {
  position: absolute;
  bottom: 16px; left: 16px; right: 16px;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245,239,227,0.75);
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 12px;
}
.photo-caption strong {
  font-family: var(--f-display);
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  color: var(--cream-on-dark);
  display: block;
  margin-bottom: 4px;
}
.photo-frame {
  position: absolute;
  top: 16px; left: 16px;
  font-family: var(--f-mono);
  font-size: 9px;
  letter-spacing: 0.2em;
  color: rgba(245,239,227,0.5);
}

/* ================================================================
   ABM section — ministry connection
   ================================================================ */
.abm-block {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}
@media (max-width: 820px) {
  .abm-block { grid-template-columns: 1fr; gap: 40px; }
}
.abm-seal {
  border: 1px solid rgba(245,239,227,0.2);
  padding: 40px;
  aspect-ratio: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  background: rgba(245,239,227,0.02);
}
.abm-seal::before {
  content: '';
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(245,239,227,0.08);
  pointer-events: none;
}
.abm-seal-top,
.abm-seal-bottom {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  opacity: 0.6;
}
.abm-seal-center {
  text-align: center;
  padding: 20px 0;
}
.abm-seal-center-title {
  font-family: var(--f-display);
  font-size: 28px;
  line-height: 1.1;
  margin-bottom: 14px;
}
.abm-seal-center-sub {
  font-family: var(--f-hand);
  font-size: 22px;
  color: var(--rust-soft);
  opacity: 0.9;
}
.abm-pull {
  font-family: var(--f-display);
  font-size: clamp(24px, 2.3vw, 34px);
  line-height: 1.3;
  font-style: italic;
  margin-bottom: 28px;
  text-wrap: balance;
}
.abm-body p { margin-bottom: 18px; color: rgba(245,239,227,0.75); max-width: 560px; }
.abm-sig {
  font-family: var(--f-hand);
  font-size: 26px;
  color: var(--rust-soft);
  margin-top: 12px;
}
.abm-sig-sub {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.5;
  margin-top: 4px;
}

/* ================================================================
   COFFEE — craft section
   ================================================================ */
.craft-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  margin-top: 60px;
}
@media (max-width: 820px) { .craft-grid { grid-template-columns: 1fr; gap: 40px; } }
.craft-item { padding-top: 24px; border-top: 1px solid var(--line); }
.craft-num {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.24em;
  color: var(--warm);
  margin-bottom: 18px;
}

/* ================================================================
   TABLE — come visit / hours
   ================================================================ */
.visit-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  margin-top: 48px;
}
.visit-cell { background: var(--paper); padding: 48px 40px; }
.visit-cell.dark { background: var(--ink); color: var(--cream-on-dark); }
@media (max-width: 820px) { .visit-block { grid-template-columns: 1fr; } }
.visit-label {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  opacity: 0.6;
  margin-bottom: 16px;
}
.visit-value {
  font-family: var(--f-display);
  font-size: 28px;
  line-height: 1.2;
  margin-bottom: 24px;
}
.hours-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  font-size: 14px;
  border-top: 1px solid rgba(245,239,227,0.12);
}
.hours-row:first-of-type { border-top: 0; }
.hours-row.today {
  color: var(--rust-soft);
  font-weight: 500;
}

/* ================================================================
   GALLERY page
   ================================================================ */
.gallery-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 36px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}
.gallery-tag {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 8px 14px;
  border: 1px solid transparent;
  color: var(--warm);
  transition: all 0.15s;
  cursor: pointer;
}
.gallery-tag:hover { color: var(--ink); }
.gallery-tag.active {
  color: var(--ink);
  border-color: var(--ink);
  background: var(--paper-2);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 320px));
  align-items: start;
  gap: 12px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.gallery-item {
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
  background: var(--paper-2);
  overflow: hidden;
  display: block;
  aspect-ratio: 1 / 1;
}
.gallery-tile {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  background: var(--paper-2);
  border: 0;
  padding: 0;
  cursor: zoom-in;
}
.gallery-tile img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  transition: transform 0.5s ease;
}
.gallery-tile:hover img { transform: scale(1.02); }
.gallery-caption {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream-on-dark);
  padding: 8px 12px;
  background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.55) 100%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s;
}
.gallery-tile:hover .gallery-caption,
.gallery-tile:focus-visible .gallery-caption { opacity: 1; }
.gallery-empty {
  padding: 80px 24px;
  text-align: center;
  color: var(--ink-2);
  font-style: italic;
  border: 1px dashed var(--line);
}

/* Lightbox */
.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(12, 6, 2, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5vh 5vw;
}
.gallery-lightbox-figure {
  margin: 0;
  max-width: min(1400px, 90vw);
  max-height: 88vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.gallery-lightbox-figure img {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  background: var(--ink);
}
.gallery-lightbox-figure figcaption {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream-on-dark);
  text-align: center;
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}
.gallery-lightbox-tags {
  color: var(--rust-soft);
  display: inline-flex;
  gap: 8px;
  flex-wrap: wrap;
}
.gallery-lightbox-close,
.gallery-lightbox-nav {
  position: fixed;
  background: transparent;
  border: 0;
  color: rgba(245,239,227,0.8);
  font-family: var(--f-display);
  cursor: pointer;
  transition: color 0.15s;
}
.gallery-lightbox-close:hover,
.gallery-lightbox-nav:hover { color: var(--cream-on-dark); }
.gallery-lightbox-close {
  top: 24px; right: 24px;
  width: 40px; height: 40px;
  font-size: 32px;
  line-height: 1;
}
.gallery-lightbox-nav {
  top: 50%;
  transform: translateY(-50%);
  width: 56px; height: 56px;
  font-size: 56px;
  line-height: 1;
}
.gallery-lightbox-prev { left: 24px; }
.gallery-lightbox-next { right: 24px; }
@media (max-width: 720px) {
  .gallery-lightbox-nav { width: 40px; height: 40px; font-size: 40px; }
  .gallery-lightbox-prev { left: 8px; }
  .gallery-lightbox-next { right: 8px; }
}

/* ================================================================
   FOOTER
   ================================================================ */
.footer {
  background: var(--ink);
  color: var(--cream-on-dark);
  padding: 80px 32px 40px;
}
.footer-inner { max-width: 1320px; margin: 0 auto; }
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(245,239,227,0.12);
}
@media (max-width: 820px) {
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
}
.footer-brand-text {
  font-family: var(--f-display);
  font-size: 28px;
  margin-bottom: 12px;
}
.footer-desc {
  font-size: 14px;
  color: rgba(245,239,227,0.7);
  max-width: 380px;
  line-height: 1.6;
}
.footer-col-title {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--rust-soft);
  margin-bottom: 18px;
}
.footer-col a {
  display: block;
  padding: 6px 0;
  font-size: 14px;
  color: rgba(245,239,227,0.8);
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--rust-soft); }
.footer-bottom {
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245,239,227,0.5);
  flex-wrap: wrap;
  gap: 16px;
}
.footer-bottom-links {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.footer-admin-link {
  color: inherit;
  text-decoration: none;
}
.footer-admin-link:hover { color: var(--rust-soft); }
.footer-abm-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 12px;
  border: 1px solid rgba(245,239,227,0.2);
  border-radius: 999px;
}
.footer-abm-badge-dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--rust-soft);
}

/* ================================================================
   TWEAKS PANEL
   ================================================================ */
.tweaks {
  position: fixed;
  bottom: 20px; right: 20px;
  z-index: 1000;
  width: 280px;
  background: var(--paper);
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 4px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
  font-family: var(--f-body);
  overflow: hidden;
}
.tweaks-head {
  padding: 12px 16px;
  border-bottom: 1px solid var(--line);
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  display: flex; justify-content: space-between; align-items: center;
}
.tweaks-body { padding: 16px; display: flex; flex-direction: column; gap: 18px; }
.tweak-group { }
.tweak-label {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--warm);
  margin-bottom: 8px;
}
.tweak-options { display: flex; gap: 6px; flex-wrap: wrap; }
.tweak-chip {
  padding: 7px 12px;
  font-size: 12px;
  border: 1px solid var(--line);
  border-radius: 2px;
  background: transparent;
  color: var(--ink);
  transition: all 0.2s;
}
.tweak-chip.active {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}
.tweak-swatches { display: flex; gap: 6px; }
.tweak-swatch {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s;
  position: relative;
}
.tweak-swatch.active { border-color: var(--ink); transform: scale(1.1); }
.tweak-swatch-cream { background: linear-gradient(135deg, #f5efe3 50%, #c15a2a 50%); }
.tweak-swatch-dark { background: linear-gradient(135deg, #1b120c 50%, #e08a5b 50%); }
.tweak-swatch-sage { background: linear-gradient(135deg, #f1ede0 50%, #6a7a5a 50%); }

/* ================================================================
   STORY page
   ================================================================ */
.page-header {
  padding: 140px 32px 80px;
  border-bottom: 1px solid var(--line);
  background: var(--paper-2);
}
.page-header-inner { max-width: 1320px; margin: 0 auto; }
.page-header h1 {
  font-family: var(--f-display);
  font-size: clamp(48px, 7vw, 96px);
  line-height: 1;
  letter-spacing: -0.015em;
  margin-top: 20px;
  margin-bottom: 24px;
}
.page-header h1 em { color: var(--rust); font-style: italic; }

.prose {
  max-width: 680px;
  font-size: 19px;
  line-height: 1.7;
  color: var(--ink-2);
}
.prose p { margin-bottom: 22px; }
.prose p.pull {
  font-family: var(--f-display);
  font-size: clamp(26px, 2.4vw, 34px);
  line-height: 1.3;
  color: var(--ink);
  font-style: italic;
  margin: 40px 0;
  padding-left: 24px;
  border-left: 2px solid var(--rust);
}

.timeline {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 40px;
  margin-top: 60px;
}
.timeline-year {
  font-family: var(--f-mono);
  font-size: 13px;
  letter-spacing: 0.2em;
  color: var(--warm);
  padding-top: 6px;
}
.timeline-item {
  padding: 24px 0;
  border-top: 1px solid var(--line);
}
.timeline-item:last-child { padding-bottom: 0; }

/* ================================================================
   SERVE — form
   ================================================================ */
.serve-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
@media (max-width: 820px) { .serve-block { grid-template-columns: 1fr; gap: 40px; } }
.form-card {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 40px;
}
.form-group { margin-bottom: 22px; }
.form-label {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--warm);
  margin-bottom: 8px;
  display: block;
}
.form-input, .form-textarea, .form-select {
  width: 100%;
  padding: 12px 14px;
  font: inherit;
  font-size: 15px;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 2px;
  color: var(--ink);
  transition: border-color 0.2s;
  font-family: var(--f-body);
}
.form-input:focus, .form-textarea:focus, .form-select:focus {
  outline: none;
  border-color: var(--rust);
}
.form-textarea { min-height: 120px; resize: vertical; }
.form-radios { display: flex; flex-direction: column; gap: 8px; }
.form-radio {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.2s;
}
.form-radio:hover { border-color: var(--warm); }
.form-radio.selected {
  border-color: var(--rust);
  background: rgba(193,90,42,0.04);
}
.form-radio-mark {
  width: 16px; height: 16px; border-radius: 50%;
  border: 1px solid var(--line);
  flex-shrink: 0;
  margin-top: 3px;
  display: flex; align-items: center; justify-content: center;
}
.form-radio.selected .form-radio-mark {
  border-color: var(--rust);
}
.form-radio.selected .form-radio-mark::after {
  content: '';
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--rust);
}
.form-radio-title {
  font-weight: 500; font-size: 14px;
  margin-bottom: 2px;
}
.form-radio-desc {
  font-size: 12px; color: var(--warm); line-height: 1.4;
}

.form-submitted {
  padding: 60px 40px;
  text-align: center;
  border: 1px solid var(--rust);
  background: rgba(193,90,42,0.06);
}
.form-submitted-icon {
  width: 56px; height: 56px;
  border: 1px solid var(--rust);
  border-radius: 50%;
  margin: 0 auto 24px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--f-display);
  font-size: 28px;
  color: var(--rust);
}

/* ================================================================
   COFFEE menu
   ================================================================ */
.menu-page-wide {
  max-width: 1180px;
}

.menu-drinks-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
}

.menu-drinks-empty {
  grid-column: 1 / -1;
}

.menu-section { margin-top: 0; }
.menu-section-title {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--rust);
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 20px;
}

.menu-section-items {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0 56px;
  align-items: start;
}

.menu-section-items--single {
  grid-template-columns: 1fr;
}

.menu-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  padding: 16px 0;
  align-items: baseline;
  border-bottom: 1px dashed var(--line);
}

.menu-item--drink {
  grid-template-columns: 1fr;
  gap: 10px;
  padding: 18px 0;
  align-items: start;
}

.menu-item-main {
  min-width: 0;
}

.menu-item-meta {
  min-width: 0;
}

.menu-item-badge {
  margin-left: 8px;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--rust);
  text-decoration: none;
}

.menu-item-sizes {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
}

.menu-item-sizes li {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
}

.menu-item-size-label {
  color: var(--warm);
  text-transform: lowercase;
}

.menu-item-size-price {
  color: var(--ink-2);
}

.menu-item:last-child { border-bottom: 0; }
.menu-item-name { font-family: var(--f-display); font-size: 22px; line-height: 1.25; }
.menu-item-desc { font-size: 13px; color: var(--warm); margin-top: 4px; line-height: 1.5; }
.menu-item-price { font-family: var(--f-mono); font-size: 13px; color: var(--ink-2); letter-spacing: 0.05em; }

@media (min-width: 768px) {
  .menu-section-items:not(.menu-section-items--single) {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 48px;
  }

  .menu-item--drink {
    padding: 16px 0;
  }

  .menu-item-name {
    font-size: 21px;
  }
}

@media (min-width: 1100px) {
  .menu-page-wide {
    max-width: 1240px;
  }

  .menu-drinks-layout {
    gap: 64px;
  }

  .menu-section-items:not(.menu-section-items--single) {
    column-gap: 64px;
  }

  .menu-item-name {
    font-size: 22px;
  }
}

/* ================================================================
   SUPPORT page
   ================================================================ */
.give-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}
@media (max-width: 820px) { .give-options { grid-template-columns: 1fr; } }
.give-card {
  padding: 36px 28px;
  border: 1px solid var(--line);
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.give-card:hover { border-color: var(--rust); }
.give-card.selected {
  border-color: var(--rust);
  background: rgba(193,90,42,0.04);
}
.give-card-amount {
  font-family: var(--f-display);
  font-size: 44px;
  line-height: 1;
}
.give-card-label {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--warm);
}
.give-card-desc { font-size: 14px; color: var(--ink-2); line-height: 1.5; }

/* ================================================================
   DIVIDERS & UTILITY
   ================================================================ */
.rule {
  height: 1px;
  background: var(--line);
  margin: 80px auto;
  max-width: 120px;
}
.rule-ornament {
  text-align: center;
  font-family: var(--f-display);
  color: var(--rust);
  font-size: 28px;
  margin: 80px 0;
  position: relative;
}
.rule-ornament::before,
.rule-ornament::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 28%;
  height: 1px;
  background: var(--line);
}
.rule-ornament::before { left: 20%; }
.rule-ornament::after { right: 20%; }

/* Text styles */
.mono { font-family: var(--f-mono); font-size: 12px; letter-spacing: 0.12em; }
.hand { font-family: var(--f-hand); }
