/* =========================================================================
   2:1 GARAGE MINISTRY — stylesheet
   A working garage at golden hour: warm near-black steel, aged cream,
   muted olive, restrained gold. One committed dark theme.
   ========================================================================= */

:root {
  --ink: #15120d;          /* page ground — warm near-black */
  --ink-2: #1b1710;        /* slightly raised */
  --panel: #211c14;        /* card surface */
  --panel-edge: #2e2818;
  --cream: #ede3cb;        /* primary text */
  --cream-dim: #bfb298;    /* secondary text */
  --gold: #c9a35b;         /* warm gold accent */
  --gold-soft: rgba(201, 163, 91, 0.22);
  --olive: #a3a75f;        /* muted olive, labels */
  --olive-deep: #3f4322;   /* olive fill */
  --ok: #9db36e;
  --warn: #d08d6a;
  --display: "Oswald", "Arial Narrow", Arial, sans-serif;
  --body: "Source Sans 3", "Segoe UI", Tahoma, sans-serif;
  --scripture: "Lora", Georgia, serif;
  --measure: 62ch;
  --radius: 6px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}

body {
  background: var(--ink);
  color: var(--cream);
  font-family: var(--body);
  font-size: 1.0625rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a { color: var(--gold); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--cream); }

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 2px;
}

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 100;
  background: var(--gold); color: var(--ink); padding: 0.6rem 1rem;
  font-family: var(--display); text-transform: uppercase; letter-spacing: 0.06em;
  text-decoration: none;
}
.skip-link:focus { left: 0.5rem; top: 0.5rem; }

/* ---------- type roles ---------- */

h1, h2, h3 {
  font-family: var(--display);
  font-weight: 600;
  line-height: 1.12;
  text-wrap: balance;
  color: var(--cream);
}

.eyebrow {
  font-family: var(--display);
  font-weight: 500;
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--olive);
}

.scripture {
  font-family: var(--scripture);
  font-style: italic;
  color: var(--cream-dim);
}

.lead { font-size: 1.1875rem; color: var(--cream-dim); max-width: var(--measure); }

p { max-width: var(--measure); }

/* ---------- header ---------- */

.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(21, 18, 13, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--gold-soft);
}
.site-header .bar {
  max-width: 1120px; margin: 0 auto; padding: 0.55rem 1.25rem;
  display: flex; flex-wrap: wrap; align-items: center; gap: 0.35rem 1rem;
}
.brand {
  display: flex; align-items: center; gap: 0.7rem;
  text-decoration: none; color: var(--cream);
}
.brand img { width: 44px; height: 44px; border-radius: 50%; }
.brand .name {
  font-family: var(--display); font-weight: 600; font-size: 1.05rem;
  letter-spacing: 0.05em; text-transform: uppercase; white-space: nowrap;
}
.site-nav { margin-left: auto; display: flex; align-items: center; gap: 0.25rem; flex-wrap: wrap; }
.site-nav a {
  font-family: var(--display); font-weight: 500; font-size: 0.8125rem;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--cream-dim); text-decoration: none;
  padding: 0.45rem 0.6rem; border-radius: 4px;
}
.site-nav a:hover { color: var(--cream); background: rgba(201, 163, 91, 0.08); }
.nav-call {
  background: var(--gold); color: var(--ink) !important;
  padding: 0.45rem 0.85rem !important; border-radius: 4px;
}
.nav-call:hover { background: var(--cream); }

@media (max-width: 720px) {
  .site-nav a:not(.nav-call) { display: none; }
  .brand .name { font-size: 0.95rem; }
}

/* ---------- hero ---------- */

.hero {
  position: relative;
  border-bottom: 1px solid var(--gold-soft);
  background:
    radial-gradient(ellipse 90% 70% at 70% 10%, rgba(201, 163, 91, 0.10), transparent 60%),
    var(--ink);
  overflow: hidden;
}
.hero .inner {
  max-width: 1120px; margin: 0 auto; padding: 4.5rem 1.25rem 4rem;
  display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 3rem; align-items: center;
}
.hero h1 {
  font-size: clamp(2.6rem, 6vw, 4.4rem);
  text-transform: uppercase;
  letter-spacing: 0.015em;
  margin: 0.9rem 0 0.4rem;
}
.hero h1 .knees { color: var(--gold); }
.hero .mission { margin-top: 1.1rem; font-size: 1.1875rem; color: var(--cream-dim); }
.hero .badge-row { display: flex; align-items: center; gap: 1rem; }
.hero .badge-row img { width: 92px; height: 92px; border-radius: 50%; box-shadow: 0 0 0 1px var(--gold-soft), 0 12px 30px rgba(0,0,0,0.5); }
.hero .themes {
  font-family: var(--display); font-weight: 500; font-size: 0.875rem;
  text-transform: uppercase; letter-spacing: 0.28em; color: var(--olive);
}
.cta-row { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 1.8rem; }

.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: var(--display); font-weight: 600; font-size: 0.9375rem;
  text-transform: uppercase; letter-spacing: 0.09em; text-decoration: none;
  padding: 0.8rem 1.4rem; border-radius: var(--radius);
  border: 1px solid transparent; cursor: pointer;
}
.btn-gold { background: var(--gold); color: #1a1508; }
.btn-gold:hover { background: var(--cream); color: #1a1508; }
.btn-line { border-color: var(--gold); color: var(--gold); background: transparent; }
.btn-line:hover { background: rgba(201, 163, 91, 0.12); color: var(--cream); }

.hero-photo { position: relative; }
.hero-photo img {
  width: 100%; aspect-ratio: 4 / 5; object-fit: cover;
  border-radius: var(--radius);
  box-shadow: 0 0 0 1px var(--gold-soft), 0 24px 60px rgba(0, 0, 0, 0.55);
  filter: saturate(0.9) sepia(0.08);
}
.hero-photo figcaption {
  margin-top: 0.6rem; font-size: 0.875rem; color: var(--cream-dim);
}

.status-band {
  border-top: 1px solid var(--gold-soft);
  background: var(--ink-2);
}
.status-band .inner {
  max-width: 1120px; margin: 0 auto; padding: 0.8rem 1.25rem;
  display: flex; flex-wrap: wrap; align-items: center; gap: 0.6rem 1.4rem;
  font-size: 0.9375rem; color: var(--cream-dim);
}
.status-band .dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--ok);
  display: inline-block; margin-right: 0.5rem;
}
.status-band strong { color: var(--cream); font-weight: 600; }

@media (max-width: 860px) {
  .hero .inner { grid-template-columns: 1fr; padding-top: 3rem; gap: 2.2rem; }
  .hero-photo img { aspect-ratio: 4 / 3; }
}

/* ---------- sections ---------- */

.section { padding: 4.5rem 1.25rem; }
.section.alt { background: var(--ink-2); border-top: 1px solid var(--gold-soft); border-bottom: 1px solid var(--gold-soft); }
.section > .inner { max-width: 1120px; margin: 0 auto; }
.section h2 {
  font-size: clamp(1.7rem, 3.4vw, 2.4rem);
  text-transform: uppercase; letter-spacing: 0.03em;
  margin: 0.5rem 0 1rem;
}
.section-head { margin-bottom: 2.2rem; }

/* what we do */
.pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; margin-top: 2rem; }
.pillar {
  background: var(--panel); border: 1px solid var(--panel-edge);
  border-radius: var(--radius); padding: 1.4rem 1.4rem 1.5rem;
}
.pillar h3 {
  font-size: 1.05rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 0.5rem;
}
.pillar p { font-size: 0.9875rem; color: var(--cream-dim); }
@media (max-width: 820px) { .pillars { grid-template-columns: 1fr; } }

/* learn list */
.learn-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 2rem; }
.learn-item {
  display: flex; gap: 0.85rem; align-items: flex-start;
  background: var(--panel); border: 1px solid var(--panel-edge);
  border-radius: var(--radius); padding: 1.1rem 1.2rem;
}
.learn-item svg { flex: 0 0 auto; width: 26px; height: 26px; stroke: var(--gold); fill: none; stroke-width: 1.6; margin-top: 2px; }
.learn-item span { font-size: 1rem; }
@media (max-width: 900px) { .learn-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .learn-grid { grid-template-columns: 1fr; } }

.photo-strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 2.2rem; }
.photo-strip figure { margin: 0; }
.photo-strip img {
  width: 100%; aspect-ratio: 4 / 3.4; object-fit: cover; border-radius: var(--radius);
  box-shadow: 0 0 0 1px var(--gold-soft);
  filter: saturate(0.9) sepia(0.08);
}
.photo-strip figcaption { font-size: 0.85rem; color: var(--cream-dim); margin-top: 0.5rem; }
@media (max-width: 720px) { .photo-strip { grid-template-columns: 1fr; } .photo-strip img { aspect-ratio: 4 / 3; } }

/* six weeks */
.weeks { display: grid; gap: 0.8rem; margin-top: 2rem; }
.week {
  display: grid; grid-template-columns: 64px 1fr auto; gap: 1.2rem; align-items: baseline;
  background: var(--panel); border: 1px solid var(--panel-edge);
  border-radius: var(--radius); padding: 1.15rem 1.4rem;
}
.week .num {
  font-family: var(--display); font-weight: 600; font-size: 1.9rem;
  color: var(--gold); line-height: 1;
}
.week .num small { display: block; font-size: 0.6875rem; font-weight: 500; letter-spacing: 0.2em; color: var(--olive); text-transform: uppercase; }
.week h3 { font-size: 1.2rem; letter-spacing: 0.04em; text-transform: uppercase; }
.week .verse { display: block; font-size: 0.95rem; margin-top: 0.15rem; }
.week .shop {
  font-family: var(--display); font-weight: 500; font-size: 0.8125rem;
  text-transform: uppercase; letter-spacing: 0.1em; color: var(--olive);
  text-align: right; max-width: 220px;
}
@media (max-width: 680px) {
  .week { grid-template-columns: 48px 1fr; }
  .week .shop { grid-column: 2; text-align: left; margin-top: 0.3rem; }
  .week .num { font-size: 1.5rem; }
}
.challenge-note { margin-top: 1.6rem; color: var(--cream-dim); font-size: 0.975rem; }

/* night rhythm */
.rhythm { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0.75rem; margin-top: 2rem; }
.rhythm .step {
  background: var(--panel); border: 1px solid var(--panel-edge); border-radius: var(--radius);
  padding: 1rem 1.1rem;
}
.rhythm .step .time {
  font-family: var(--display); font-weight: 600; font-size: 0.8125rem;
  letter-spacing: 0.08em; color: var(--gold); text-transform: uppercase;
}
.rhythm .step h3 { font-size: 0.95rem; letter-spacing: 0.06em; text-transform: uppercase; margin: 0.35rem 0 0.3rem; }
.rhythm .step p { font-size: 0.875rem; color: var(--cream-dim); }
@media (max-width: 960px) { .rhythm { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .rhythm { grid-template-columns: 1fr; } }
.prayer-note { margin-top: 1.4rem; }

/* meet jerry */
.jerry { display: grid; grid-template-columns: 1fr 1fr; gap: 2.6rem; align-items: start; }
.jerry-photo { margin: 0; }
.jerry-photo img {
  width: 100%; border-radius: var(--radius);
  box-shadow: 0 0 0 1px var(--gold-soft), 0 18px 44px rgba(0, 0, 0, 0.5);
  filter: saturate(0.9) sepia(0.08);
}
.jerry-photo figcaption { margin-top: 0.6rem; font-size: 0.875rem; color: var(--cream-dim); }
.jerry .bio p + p { margin-top: 1rem; }
@media (max-width: 820px) { .jerry { grid-template-columns: 1fr; } }

/* details table */
.details-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; margin-top: 2rem; }
.detail {
  background: var(--panel); border: 1px solid var(--panel-edge); border-radius: var(--radius);
  padding: 1.1rem 1.3rem;
}
.detail dt {
  font-family: var(--display); font-weight: 500; font-size: 0.8125rem;
  text-transform: uppercase; letter-spacing: 0.14em; color: var(--olive);
  margin-bottom: 0.35rem;
}
.detail dd { font-size: 1rem; }
.tbc {
  display: inline-block; font-family: var(--display); font-weight: 500; font-size: 0.72rem;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--warn); border: 1px solid rgba(208, 141, 106, 0.4);
  padding: 0.1rem 0.5rem; border-radius: 99px; margin-right: 0.45rem; vertical-align: 1px;
}
@media (max-width: 680px) { .details-grid { grid-template-columns: 1fr; } }

/* safety */
.safety-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 2.4rem; margin-top: 1.6rem; }
.safety-cols h3 { font-size: 1.05rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.7rem; }
.safety-cols ul { list-style: none; display: grid; gap: 0.65rem; }
.safety-cols li { padding-left: 1.4rem; position: relative; font-size: 0.9875rem; }
.safety-cols li::before {
  content: ""; position: absolute; left: 0; top: 0.55em;
  width: 7px; height: 7px; border-radius: 1px; background: var(--olive);
  transform: rotate(45deg);
}
.safety-cols li.pending::before { background: var(--warn); }
@media (max-width: 760px) { .safety-cols { grid-template-columns: 1fr; } }

/* faq */
.faq-list { display: grid; gap: 0.75rem; margin-top: 2rem; max-width: 860px; }
.faq-list details {
  background: var(--panel); border: 1px solid var(--panel-edge); border-radius: var(--radius);
}
.faq-list summary {
  cursor: pointer; list-style: none; padding: 1.05rem 1.3rem;
  font-family: var(--display); font-weight: 500; font-size: 1.02rem; letter-spacing: 0.03em;
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: "+"; font-size: 1.3rem; color: var(--gold); flex: 0 0 auto; line-height: 1;
}
.faq-list details[open] summary::after { content: "–"; }
.faq-list .answer { padding: 0 1.3rem 1.2rem; color: var(--cream-dim); font-size: 0.9875rem; }

/* contact */
.contact-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; margin-top: 2rem; align-items: start; }
.contact-side .big-phone {
  font-family: var(--display); font-weight: 600; font-size: clamp(1.8rem, 4vw, 2.6rem);
  letter-spacing: 0.04em; color: var(--cream); text-decoration: none; display: inline-block; margin: 0.4rem 0 0.8rem;
}
.contact-side .big-phone:hover { color: var(--gold); }
.contact-side address { font-style: normal; color: var(--cream-dim); margin-top: 1.4rem; line-height: 1.5; }
.contact-side .map-link { display: inline-block; margin-top: 0.5rem; }

form.interest { display: grid; gap: 1rem; }
.field { display: grid; gap: 0.35rem; }
.field label { font-family: var(--display); font-weight: 500; font-size: 0.8125rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--olive); }
.field .hint { font-size: 0.8125rem; color: var(--cream-dim); }
.field input, .field textarea {
  background: var(--panel); border: 1px solid var(--panel-edge); border-radius: var(--radius);
  color: var(--cream); font-family: var(--body); font-size: 1rem;
  padding: 0.7rem 0.9rem; width: 100%;
}
.field input:focus, .field textarea:focus { outline: 2px solid var(--gold); outline-offset: 1px; border-color: var(--gold); }
.consent { display: flex; gap: 0.7rem; align-items: flex-start; font-size: 0.9rem; color: var(--cream-dim); }
.consent input { margin-top: 0.3rem; width: 1.05rem; height: 1.05rem; accent-color: var(--gold); flex: 0 0 auto; }
.hp-field { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }
.form-status { border-radius: var(--radius); padding: 0.9rem 1.1rem; font-size: 0.95rem; display: none; }
.form-status.ok { display: block; background: rgba(157, 179, 110, 0.12); border: 1px solid rgba(157, 179, 110, 0.5); color: var(--ok); }
.form-status.err { display: block; background: rgba(208, 141, 106, 0.1); border: 1px solid rgba(208, 141, 106, 0.5); color: var(--warn); }
.form-status a { color: inherit; }
@media (max-width: 820px) { .contact-wrap { grid-template-columns: 1fr; } }

/* footer */
.site-footer { border-top: 1px solid var(--gold-soft); background: var(--ink-2); padding: 3rem 1.25rem 2.5rem; }
.site-footer .inner { max-width: 1120px; margin: 0 auto; display: grid; grid-template-columns: auto 1fr; gap: 2.5rem; align-items: start; }
.site-footer .badge img { width: 84px; height: 84px; border-radius: 50%; box-shadow: 0 0 0 1px var(--gold-soft); }
.site-footer h3 { font-size: 0.875rem; text-transform: uppercase; letter-spacing: 0.16em; color: var(--olive); margin-bottom: 0.5rem; }
.site-footer p, .site-footer address { font-size: 0.9rem; color: var(--cream-dim); font-style: normal; max-width: 70ch; }
.site-footer .privacy { margin-top: 1.4rem; }
.site-footer .tagline { font-family: var(--scripture); font-style: italic; color: var(--gold); margin-top: 1.6rem; }
@media (max-width: 640px) { .site-footer .inner { grid-template-columns: 1fr; } }
