/* Holy Grounds — shared subpage styles */
:root {
  --teal: #0F7A7A;
  --teal-deep: #0a5c5c;
  --bean: #5a3520;
  --cream: #f5ede0;
  --cream-soft: #fbf6ec;
  --paper: #efe5d2;
  --ink: #1a1410;
  --ink-soft: #3b2f24;
  --rule: #d8cab1;
  --serif: 'Newsreader', 'Iowan Old Style', Georgia, serif;
  --sans: 'Inter Tight', system-ui, sans-serif;
  --mono: 'JetBrains Mono', ui-monospace, monospace;
}
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--sans);
  background: var(--cream);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
  overflow-x: hidden;
}
body::after {
  content: "";
  position: fixed; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence baseFrequency='0.9' numOctaves='2' seed='4'/><feColorMatrix values='0 0 0 0 0.35 0 0 0 0 0.25 0 0 0 0 0.15 0 0 0 0.06 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  opacity: 0.6;
  pointer-events: none;
  mix-blend-mode: multiply;
  z-index: 1;
}
main, header, footer { position: relative; z-index: 2; }
a { color: var(--teal-deep); }
a:hover { color: var(--teal); }

.wrap { max-width: 1240px; margin: 0 auto; padding: 0 32px; }
.wrap-tight { max-width: 880px; margin: 0 auto; padding: 0 32px; }

/* NAV */
.nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 0;
  border-bottom: 1px solid var(--rule);
}
.nav-logo img { height: 52px; width: auto; display: block; }
.nav-links {
  display: flex; gap: 36px; align-items: center;
  font-size: 14px; font-weight: 500;
}
.nav-links a { color: var(--ink-soft); text-decoration: none; transition: color .15s ease; }
.nav-links a:hover, .nav-links a.active { color: var(--teal); }
.nav-cta {
  display: inline-flex; align-items: center; gap: 8px;
  background: #FF0000; color: #FFFFFF !important;
  padding: 10px 18px; border-radius: 999px;
  font-size: 13px; font-weight: 600;
  text-decoration: none;
  transition: background .2s ease;
}
.nav-cta:hover { background: #CC0000; }

/* PAGE HEAD */
.page-head { padding: 88px 0 56px; max-width: 780px; }
.page-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--mono); font-size: 12px;
  color: var(--teal-deep); letter-spacing: 0.12em; text-transform: uppercase;
  margin-bottom: 24px;
}
.page-eyebrow::before { content: ""; width: 32px; height: 1px; background: var(--teal); }
.page-head h1 {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(44px, 5.5vw, 76px);
  line-height: 1; letter-spacing: -0.02em;
  margin: 0 0 24px;
}
.page-head h1 em { font-style: italic; color: var(--teal-deep); font-weight: 300; }
.page-head p {
  font-family: var(--serif); font-size: 20px;
  color: var(--ink-soft); line-height: 1.5;
  margin: 0; max-width: 52ch;
}

/* BUTTONS */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 22px; border-radius: 999px;
  font-family: var(--sans);
  font-size: 14px; font-weight: 600;
  text-decoration: none; cursor: pointer; border: none;
  transition: transform .15s ease, background .2s ease, color .2s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--teal); color: var(--cream-soft); }
.btn-primary:hover { background: var(--teal-deep); }
.btn-ghost { background: transparent; color: var(--ink); border: 1px solid var(--ink); }
.btn-ghost:hover { background: var(--ink); color: var(--cream-soft); }

/* PILLS */
.pill {
  background: var(--teal); color: var(--cream-soft);
  padding: 4px 10px; border-radius: 999px;
  white-space: nowrap;
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.1em; text-transform: uppercase;
}

/* FORMS */
.form-field { display: flex; flex-direction: column; gap: 8px; }
.form-field label {
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--ink-soft);
}
.form-field input, .form-field textarea, .form-field select {
  font-family: var(--serif); font-size: 18px;
  color: var(--ink);
  background: var(--cream-soft);
  border: 1px solid var(--rule);
  border-radius: 10px;
  padding: 14px 16px;
  outline: none;
  transition: border-color .2s ease;
  width: 100%;
}
.form-field input:focus, .form-field textarea:focus, .form-field select:focus {
  border-color: var(--teal);
}
.form-field textarea { resize: vertical; min-height: 140px; }
.form-fine {
  font-family: var(--mono); font-size: 11px;
  color: var(--ink-soft); letter-spacing: 0.04em;
}

/* REVEAL */
@media (prefers-reduced-motion: no-preference) {
  .reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
  .reveal.in { opacity: 1; transform: none; }
}

/* FOOTER */
footer { background: var(--ink); color: var(--cream-soft); padding: 56px 0 32px; }
.foot-row {
  display: flex; justify-content: space-between; align-items: center;
  gap: 32px; flex-wrap: wrap;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(245,237,224,0.12);
}
.foot-row img { height: 40px; filter: brightness(0) invert(1) sepia(0.1); }
.foot-row nav { display: flex; gap: 28px; flex-wrap: wrap; }
.foot-row nav a {
  font-family: var(--serif); font-size: 17px;
  color: var(--cream-soft); text-decoration: none;
}
.foot-row nav a:hover { color: #5BC4C4; }
.foot-bottom {
  padding-top: 24px;
  display: flex; justify-content: space-between;
  font-family: var(--mono); font-size: 11px;
  color: rgba(245,237,224,0.5); letter-spacing: 0.06em;
}
@media (max-width: 960px) {
  .nav-links { display: none; }
}
