:root {
  --color-ink: #2f2a26;
  --color-cream: #f7f1e8;
  --color-sand: #efe3d2;
  --color-olive: #7a8b4e;
  --color-rust: #b15a3c;
  --color-brick: #8b4a34;
  --color-white: #ffffff;
  --shadow-soft: 0 18px 45px rgba(47, 42, 38, 0.12);
  --radius-lg: 24px;
  --radius-md: 16px;
  --max-width: 1600px;
  --font-heading: "Sora", sans-serif;
  --font-body: "Source Sans 3", sans-serif;
  --font-serif: "Cormorant Garamond", serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--color-ink);
  background: radial-gradient(circle at 10% 20%, #f1e6d7 0%, transparent 50%),
    radial-gradient(circle at 80% 10%, #e4edd1 0%, transparent 45%),
    linear-gradient(180deg, var(--color-cream) 0%, #f4ecdf 55%, #f1e7d9 100%);
  line-height: 1.6;
}

body.home-screen {
  color: #f7f1e8;
  background: #1f1b17;
  height: 100vh;
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

a:hover,
a:focus-visible {
  color: var(--color-brick);
}

p {
  margin: 0 0 1rem;
}

h1,
h2,
h3 {
  font-family: var(--font-heading);
  margin: 0 0 1rem;
  line-height: 1.15;
}

h1 {
  font-size: clamp(2.3rem, 2vw + 1.5rem, 3.4rem);
}

h2 {
  font-size: clamp(1.8rem, 1.4vw + 1.2rem, 2.6rem);
}

h3 {
  font-size: clamp(1.2rem, 0.8vw + 1rem, 1.6rem);
}

main {
  overflow-x: hidden;
}

.container {
  max-width: var(--max-width);
  width: min(var(--max-width), 80vw);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: clamp(3rem, 6vw, 5.5rem) 0;
}

.section.tight {
  padding-top: clamp(2rem, 4vw, 3.5rem);
}

.eyebrow {
  font-weight: 600;
  color: var(--color-rust);
  margin-bottom: 0.75rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(247, 241, 232, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(47, 42, 38, 0.08);
}

.site-header,
.page-main {
  transition: opacity 0.4s ease;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
}

.logo {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.site-nav {
  display: flex;
  gap: 1.2rem;
  align-items: center;
  font-weight: 600;
}

.site-nav a {
  padding: 0.4rem 0.6rem;
  border-radius: 999px;
}

.site-nav a[aria-current="page"] {
  background: var(--color-sand);
}

.nav-toggle {
  display: none;
  background: var(--color-sand);
  border: none;
  border-radius: 999px;
  padding: 0.6rem 1rem;
  font-weight: 600;
  cursor: pointer;
}

.skip-link {
  position: absolute;
  top: -40px;
  left: 1rem;
  padding: 0.5rem 0.9rem;
  background: var(--color-olive);
  color: var(--color-white);
  border-radius: 999px;
  font-weight: 600;
}

.skip-link:focus {
  top: 1rem;
}

.hero {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: center;
}

.hero-media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  position: relative;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(47, 42, 38, 0.05), rgba(177, 90, 60, 0.12));
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.85rem 1.6rem;
  font-weight: 700;
  border: 2px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn.primary {
  background: var(--color-brick);
  color: var(--color-white);
  box-shadow: 0 10px 25px rgba(139, 74, 52, 0.3);
}

.btn.secondary {
  background: transparent;
  border-color: var(--color-brick);
  color: var(--color-brick);
}

.btn.light {
  background: rgba(247, 241, 232, 0.95);
  color: var(--color-ink);
  border-color: transparent;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

.btn.ghost {
  background: transparent;
  border-color: rgba(247, 241, 232, 0.7);
  color: #f7f1e8;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.cards {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}

.card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.card-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.card a {
  font-weight: 600;
  color: var(--color-brick);
}

.presence-grid {
  display: grid;
  gap: 1.2rem;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.presence-item {
  background: rgba(255, 255, 255, 0.7);
  padding: 1.4rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(47, 42, 38, 0.08);
}

.story {
  background: var(--color-sand);
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 5vw, 3.5rem);
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  align-items: center;
}

.quote {
  font-size: 1.15rem;
}

.cta-split {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.cta-card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: 2rem;
  box-shadow: var(--shadow-soft);
}

.section-title {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.form-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

input,
select,
textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border-radius: 12px;
  border: 1px solid rgba(47, 42, 38, 0.2);
  font-family: var(--font-body);
  font-size: 1rem;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

form button {
  margin-top: 1rem;
}

.callout {
  background: rgba(122, 139, 78, 0.12);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  border: 1px solid rgba(122, 139, 78, 0.25);
}

details {
  background: rgba(255, 255, 255, 0.7);
  border-radius: 12px;
  padding: 1rem 1.2rem;
}

summary {
  font-family: var(--font-heading);
  font-weight: 600;
  cursor: pointer;
  margin-bottom: 0.5rem;
}

details[open] summary {
  margin-bottom: 0.8rem;
}

.two-col {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  align-items: start;
}

footer {
  padding: 3rem 0 2rem;
  background: #ece0cf;
  border-top: 1px solid rgba(47, 42, 38, 0.1);
  color: var(--color-ink);
}

.footer-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.footer-grid a {
  color: var(--color-ink);
}

.site-footer {
  position: relative;
  height: 100vh;
  padding: 0;
  border-top: none;
  background: transparent;
  color: #f7f1e8;
  overflow: hidden;
}

.footer-verse {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 2rem;
  margin: 0;
  z-index: 1;
  transform: translateY(-7vh);
}

.footer-verse p {
  font-family: var(--font-serif);
  font-size: clamp(2.1rem, 2.6vw + 1rem, 3.6rem);
  line-height: 1.2;
  margin: 0 0 1rem;
  max-width: min(860px, 72vw);
}

.footer-verse cite {
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 0.85rem;
  color: rgba(247, 241, 232, 0.8);
}

.footer-content {
  position: relative;
  height: 100%;
  display: flex;
  align-items: flex-end;
  padding-bottom: clamp(2rem, 6vh, 4rem);
  z-index: 2;
}

.footer-stack {
  display: grid;
  gap: 0.9rem;
  max-width: 560px;
  line-height: 1.75;
  text-shadow: 0 8px 22px rgba(0, 0, 0, 0.35);
  font-size: 1.1rem;
}

.footer-social {
  display: flex;
  gap: 0.8rem;
}

.footer-social a {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(247, 241, 232, 0.4);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.footer-social a:hover,
.footer-social a:focus-visible {
  opacity: 0.85;
  transform: translateY(-2px);
}

.footer-social svg {
  width: 22px;
  height: 22px;
  fill: #f7f1e8;
}

.footer-link {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.95rem;
}

.footer-info {
  font-size: 1.2rem;
}

.footer-info p {
  margin: 0;
}

.footer-copy {
  font-size: 0.95rem;
  color: rgba(247, 241, 232, 0.7);
  margin: 0;
}

.footer-access {
  font-size: 1.05rem;
  margin: 0;
}

.site-footer a {
  color: #f7f1e8;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: #f7f1e8;
  text-decoration: underline;
}

.footer-focus .page-main,
.footer-focus .site-header {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

body.page-immersive {
  color: #f7f1e8;
  background: #1f1b17;
}

.page-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
}

.home-bg,
.page-bg {
  background-color: #2b2520;
  background-image: url("images/IMG_8281.png");
  background-size: cover;
  background-position: center;
}

.page-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    110deg,
    rgba(0, 0, 0, 0.6) 0%,
    rgba(0, 0, 0, 0.4) 55%,
    rgba(0, 0, 0, 0.25) 100%
  );
}

.home-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
}

.home-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.55) 0%,
    rgba(0, 0, 0, 0.35) 55%,
    rgba(0, 0, 0, 0.2) 100%
  );
}

.bg-layer {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 2.5s ease;
}

.bg-layer.is-visible {
  opacity: 1;
}

.home-screen .site-header {
  position: absolute;
  width: 100%;
  background: transparent;
  border-bottom: none;
}

.home-screen .logo,
.home-screen .site-nav a {
  color: #f7f1e8;
}

.home-screen a:hover:not(.btn.light),
.home-screen a:focus-visible:not(.btn.light) {
  color: #f7f1e8;
}

.home-screen .site-nav a:hover,
.home-screen .site-nav a:focus-visible {
  background: rgba(247, 241, 232, 0.18);
}

.home-screen .site-nav a[aria-current="page"] {
  background: rgba(247, 241, 232, 0.18);
}

.home-screen .nav-toggle {
  background: rgba(247, 241, 232, 0.18);
  color: #f7f1e8;
  border: 1px solid rgba(247, 241, 232, 0.25);
}

.page-immersive .site-header {
  background: rgba(16, 14, 12, 0.55);
  border-bottom: 1px solid rgba(247, 241, 232, 0.18);
}

.page-immersive .logo,
.page-immersive .site-nav a {
  color: #f7f1e8;
}

.page-immersive .site-nav a:hover,
.page-immersive .site-nav a:focus-visible {
  background: rgba(247, 241, 232, 0.18);
  color: #f7f1e8;
}

.page-immersive .site-nav a[aria-current="page"] {
  background: rgba(247, 241, 232, 0.18);
}

.page-immersive .nav-toggle {
  background: rgba(247, 241, 232, 0.18);
  color: #f7f1e8;
  border: 1px solid rgba(247, 241, 232, 0.25);
}

.page-main {
  position: relative;
}

.page-hero {
  min-height: 70vh;
  display: flex;
  align-items: center;
  padding: clamp(6rem, 14vh, 8rem) 0 clamp(3rem, 10vh, 5rem);
}

.page-hero__content {
  max-width: 720px;
  text-shadow: 0 8px 22px rgba(0, 0, 0, 0.3);
}

.page-hero__content p {
  max-width: 600px;
}

.page-hero .eyebrow {
  color: rgba(247, 241, 232, 0.8);
}

.page-hero a:hover:not(.btn.light),
.page-hero a:focus-visible:not(.btn.light) {
  color: #f7f1e8;
}

.paper {
  background: rgba(247, 241, 232, 0.95);
  color: var(--color-ink);
  border-radius: var(--radius-lg);
  padding: clamp(1.8rem, 4vw, 3rem);
  box-shadow: var(--shadow-soft);
}

.board {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.06), rgba(0, 0, 0, 0.14)),
    repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.04) 0 8px, transparent 8px 18px),
    #b9905e;
  border-radius: 28px;
  padding: clamp(2rem, 5vw, 3rem);
  border: 8px solid #7c5a3b;
  box-shadow: 0 22px 40px rgba(47, 42, 38, 0.25);
  color: var(--color-ink);
}

.board--full {
  min-height: clamp(420px, 75vh, 820px);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.board-heading {
  max-width: 680px;
  background: #f0e7d7;
  padding: 0.8rem 1rem;
  border-radius: 12px;
  box-shadow: 0 10px 20px rgba(47, 42, 38, 0.18);
  transform: rotate(-0.6deg);
}

.board-heading p {
  margin: 0.4rem 0 0;
}

.board-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  margin-top: 2rem;
}

.board-grid--large {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.note {
  background: #f2ede3;
  border-radius: 14px;
  padding: 1.4rem;
  box-shadow: 0 14px 24px rgba(47, 42, 38, 0.22);
  position: relative;
  border: 1px solid rgba(47, 42, 38, 0.08);
}

.note--yellow {
  background: #efe2b6;
}

.note--large {
  min-height: 220px;
}

.note--wide {
  grid-column: span 2;
}

.note--wide form {
  margin-top: 1rem;
}

.note::before {
  content: "";
  width: 16px;
  height: 16px;
  background: radial-gradient(circle at 35% 35%, #f6e3bf 0 35%, #b07b4f 36% 70%, #6f4b2f 71% 100%);
  border-radius: 50%;
  position: absolute;
  top: 10px;
  right: 16px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
}

.note::after {
  content: "";
  position: absolute;
  top: 22px;
  right: 24px;
  width: 2px;
  height: 14px;
  background: rgba(0, 0, 0, 0.25);
  transform: rotate(8deg);
  border-radius: 2px;
}

.note--green {
  background: #dee6d2;
}

.note--blue {
  background: #dde3ed;
}

.note--white {
  background: #f7f4ec;
}

.note--photo img {
  border-radius: 12px;
  margin-bottom: 0.8rem;
}

.note details {
  background: transparent;
  padding: 0;
}

.note input,
.note select,
.note textarea {
  background: rgba(255, 255, 255, 0.8);
  border-color: rgba(47, 42, 38, 0.2);
}

.note summary {
  margin-bottom: 0.6rem;
}

.note:nth-child(3n) {
  transform: rotate(0.8deg);
}

.note:nth-child(3n + 1) {
  transform: rotate(-0.9deg);
}

.surface {
  background: transparent;
  border-radius: 0;
  padding: 0;
  border: none;
}

.surface > .eyebrow,
.surface > h2,
.surface > p {
  color: #f7f1e8;
  text-shadow: 0 10px 22px rgba(0, 0, 0, 0.35);
}

.flyer-grid {
  display: grid;
  gap: 1.6rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  margin-top: 2.5rem;
}

.flyer-card {
  background: rgba(248, 245, 238, 0.92);
  border: 1px solid rgba(47, 42, 38, 0.22);
  border-radius: 2px;
  padding: 1.2rem 1.3rem;
  box-shadow: 0 10px 22px rgba(47, 42, 38, 0.18);
  color: var(--color-ink);
  position: relative;
  text-shadow: none;
}

.flyer-card--stone {
  background: rgba(246, 241, 233, 0.92);
}

.flyer-card--sage {
  background: rgba(237, 242, 233, 0.92);
}

.flyer-card--mist {
  background: rgba(237, 240, 245, 0.92);
}

.flyer-card h3 {
  margin-bottom: 0.8rem;
}

.flyer-meta {
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.7rem;
  margin: 0 0 0.6rem;
  color: rgba(47, 42, 38, 0.7);
}

.flyer-line {
  margin: 0 0 0.6rem;
}

.flyer-label {
  font-weight: 600;
}

.flyer-link {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.75rem;
  display: inline-block;
  margin-top: 0.6rem;
}

.flyer-card:hover,
.flyer-card:focus-within {
  border-color: rgba(47, 42, 38, 0.4);
}

.flyer-card a {
  color: inherit;
}

.flyer-card::before {
  content: "";
  position: absolute;
  top: 10px;
  right: 14px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #f7e6c8 0 35%, #b07b4f 36% 70%, #6f4b2f 71% 100%);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
}

.flyer-card:hover .flyer-link,
.flyer-card:focus-within .flyer-link {
  text-decoration: underline;
}

.flyer-card:nth-child(3n) {
  margin-top: 10px;
}

.flyer-card:nth-child(4n) {
  margin-top: 18px;
}

.flyer-card--tall {
  min-height: 320px;
}

.flyer-card--short {
  min-height: 220px;
}

.flyer-card--long {
  min-height: 360px;
}

.conversation {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(47, 42, 38, 0.2);
}

.conversation p {
  max-width: 520px;
  color: #f7f1e8;
}

.conversation-form {
  background: rgba(248, 245, 238, 0.96);
  border: 1px solid rgba(47, 42, 38, 0.2);
  border-radius: 2px;
  padding: 1.6rem;
}

.conversation-form button {
  margin-top: 1rem;
}

.newspaper {
  background: #ffffff;
  color: var(--color-ink);
  border-radius: 0;
  padding: clamp(2.2rem, 5vw, 3.8rem);
  box-shadow: 0 20px 45px rgba(47, 42, 38, 0.2);
  border: 1px solid rgba(47, 42, 38, 0.18);
}

.newspaper-header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1.5rem;
  border-bottom: 2px solid rgba(47, 42, 38, 0.6);
  padding-bottom: 1.2rem;
  margin-bottom: 1.5rem;
}

.newspaper-kicker {
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 0.7rem;
  margin-bottom: 0.4rem;
}

.newspaper-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 2.6vw + 1rem, 3.4rem);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  margin-bottom: 0.3rem;
}

.newspaper-tagline {
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.75rem;
}

.newspaper-meta {
  text-align: right;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.newspaper-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: minmax(0, 1.7fr) minmax(0, 0.9fr);
}

.newspaper-main {
  display: grid;
  gap: 2rem;
}

.news-article {
  border-top: 1px solid rgba(47, 42, 38, 0.2);
  padding-top: 1.6rem;
}

.news-article:first-child {
  border-top: none;
  padding-top: 0;
}

.news-tag {
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 0.7rem;
  color: var(--color-rust);
  margin-bottom: 0.5rem;
}

.news-dek {
  font-size: 1.05rem;
  margin-bottom: 1.2rem;
}

.news-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.75rem;
}

.newspaper-section {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.8rem;
  margin-bottom: 0.6rem;
}

.newspaper-headline {
  font-size: clamp(1.8rem, 1.6vw + 1.2rem, 2.6rem);
}

.newspaper-byline {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 1rem;
}

.newspaper-columns {
  column-count: 2;
  column-gap: 2rem;
  column-rule: 1px solid rgba(47, 42, 38, 0.2);
}

.newspaper-sidebar {
  display: grid;
  gap: 1.2rem;
}

.news-box {
  border: 1px solid rgba(47, 42, 38, 0.2);
  padding: 1.3rem;
  border-radius: 0;
  background: #ffffff;
  box-shadow: 0 12px 24px rgba(47, 42, 38, 0.08);
}

.news-box img {
  border-radius: 12px;
  margin-bottom: 0.8rem;
}

.news-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.6rem;
}

.news-list li {
  padding-bottom: 0.6rem;
  border-bottom: 1px dashed rgba(47, 42, 38, 0.2);
}

.news-list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.newspaper-footer {
  margin-top: 1.8rem;
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  border-top: 1px solid rgba(47, 42, 38, 0.2);
  padding-top: 1.2rem;
}

.news-brief {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.values-grid {
  display: grid;
  gap: 1.4rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.value-card {
  border-top: 2px solid rgba(47, 42, 38, 0.2);
  padding-top: 1rem;
}

.value-card h3 {
  margin-bottom: 0.4rem;
}

.value-verse {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(47, 42, 38, 0.7);
}

.pathway {
  position: relative;
  display: grid;
  gap: 2rem;
  padding-left: 2rem;
}

.pathway::before {
  content: "";
  position: absolute;
  left: 12px;
  top: 0.4rem;
  bottom: 0.4rem;
  width: 2px;
  background: rgba(247, 241, 232, 0.4);
}

.pathway-stop {
  position: relative;
}

.pathway-stop::before {
  content: "";
  position: absolute;
  left: -2.1rem;
  top: 0.6rem;
  width: 14px;
  height: 14px;
  background: var(--color-olive);
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(122, 139, 78, 0.2);
}

.pathway-card {
  background: rgba(247, 241, 232, 0.96);
  color: var(--color-ink);
  padding: 1.5rem;
  border-radius: 18px;
  box-shadow: var(--shadow-soft);
  border-left: 4px solid var(--color-brick);
}

.pathway-meta {
  font-size: 0.9rem;
  color: rgba(47, 42, 38, 0.7);
}

.form-card {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  align-items: start;
}

.form-panel {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 18px;
  padding: 1.5rem;
  border: 1px solid rgba(47, 42, 38, 0.1);
}

.help-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.safe-card {
  background: rgba(247, 241, 232, 0.95);
  color: var(--color-ink);
  border-radius: 18px;
  padding: 1.6rem;
  box-shadow: var(--shadow-soft);
}

.safe-card--accent {
  background: rgba(122, 139, 78, 0.12);
  border: 1px solid rgba(122, 139, 78, 0.3);
}

.care-grid {
  display: grid;
  gap: 1.2rem;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.care-card {
  background: #ffffff;
  color: var(--color-ink);
  border-radius: 16px;
  padding: 1.2rem;
  border: 1px solid rgba(47, 42, 38, 0.12);
  box-shadow: 0 10px 24px rgba(47, 42, 38, 0.12);
}

.ledger {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.ledger-card {
  background: rgba(247, 241, 232, 0.95);
  color: var(--color-ink);
  border-radius: 20px;
  padding: 1.6rem;
  box-shadow: var(--shadow-soft);
}

.ledger-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.8rem 0;
  border-bottom: 1px dashed rgba(47, 42, 38, 0.2);
}

.ledger-row:last-child {
  border-bottom: none;
}

.envelope-grid {
  display: grid;
  gap: 1.2rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.envelope-card {
  position: relative;
  background: #ffffff;
  color: var(--color-ink);
  border-radius: 18px;
  padding: 1.6rem;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.envelope-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 48px;
  background: linear-gradient(135deg, rgba(177, 90, 60, 0.12), transparent 70%);
}

.envelope-card::after {
  content: "";
  position: absolute;
  top: 12px;
  right: 16px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(177, 90, 60, 0.3);
}

.home-main {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: clamp(5rem, 12vh, 7rem) 1.5rem clamp(3rem, 10vh, 6rem);
  position: relative;
  gap: clamp(2rem, 6vh, 3.5rem);
}

.home-hero {
  width: min(var(--max-width), 100%);
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
  text-shadow: 0 8px 22px rgba(0, 0, 0, 0.35);
}

.home-left {
  max-width: 520px;
}

.home-church {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 2.4vw + 1rem, 3rem);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  margin-bottom: 1.2rem;
}

.home-identity {
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: 0.85rem;
  margin-bottom: 2rem;
  color: rgba(247, 241, 232, 0.85);
}

.home-right {
  max-width: 320px;
  justify-self: end;
  text-align: right;
}

.home-mission {
  font-size: 1rem;
  margin-bottom: 1.2rem;
}

.home-link {
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.activity-strip {
  position: absolute;
  left: 50%;
  bottom: clamp(1.5rem, 4vh, 2.8rem);
  transform: translateX(-50%);
  width: min(980px, 92%);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  background: rgba(15, 14, 12, 0.45);
  border: 1px solid rgba(247, 241, 232, 0.25);
  border-radius: 26px;
  padding: 0.9rem 1.4rem;
  backdrop-filter: blur(10px);
  text-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
}

.activity-item {
  display: flex;
  gap: 0.6rem;
  align-items: center;
  font-size: 0.85rem;
  color: rgba(247, 241, 232, 0.9);
}

.activity-date {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(247, 241, 232, 0.75);
}

.activity-arrow {
  margin-left: auto;
  font-weight: 600;
}

@media (max-width: 860px) {
  .site-nav {
    position: absolute;
    top: 100%;
    right: 1rem;
    left: 1rem;
    background: var(--color-cream);
    flex-direction: column;
    padding: 1rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
    display: none;
  }

  .site-nav.open {
    display: flex;
  }

  .nav-toggle {
    display: inline-flex;
  }
}

@media (max-width: 860px) {
  .home-screen .site-nav.open {
    background: rgba(247, 241, 232, 0.98);
  }

  .home-screen .site-nav.open a {
    color: var(--color-ink);
  }

  .home-screen .site-nav.open a[aria-current="page"] {
    background: var(--color-sand);
  }
}

@media (max-width: 860px) {
  .page-immersive .site-nav.open {
    background: rgba(247, 241, 232, 0.98);
  }

  .page-immersive .site-nav.open a {
    color: var(--color-ink);
  }

  .page-immersive .site-nav.open a[aria-current="page"] {
    background: var(--color-sand);
  }
}

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

@media (max-width: 720px) {
  .reveal {
    opacity: 1;
    transform: none;
  }

  .home-main {
    align-items: flex-start;
    padding-top: 6rem;
  }

  .home-hero {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    text-shadow: 0 6px 18px rgba(0, 0, 0, 0.28);
  }

  .home-left {
    max-width: 100%;
  }

  .home-church {
    font-size: clamp(1.4rem, 4vw + 0.8rem, 2.2rem);
    letter-spacing: 0.12em;
  }

  .home-identity {
    letter-spacing: 0.2em;
    font-size: 0.75rem;
  }

  .home-right {
    text-align: left;
    justify-self: start;
    max-width: 100%;
  }

  .home-mission {
    font-size: 0.95rem;
  }

  .activity-strip {
    position: static;
    left: auto;
    bottom: auto;
    transform: none;
    width: min(980px, 100%);
    margin-top: 2.2rem;
    border-radius: 20px;
  }

  .activity-item {
    flex-wrap: wrap;
  }
}

@media (pointer: coarse) {
  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(var(--max-width), 92vw);
  }

  .page-hero {
    min-height: 60vh;
    padding-top: 6rem;
  }

  .page-hero__content {
    text-shadow: 0 6px 18px rgba(0, 0, 0, 0.28);
  }

  .board {
    padding: 1.5rem;
  }

  .board-heading {
    transform: none;
  }

  .note {
    transform: none;
  }

  .note--wide {
    grid-column: span 1;
  }

  .newspaper-header {
    display: none;
  }

  .newspaper-meta {
    text-align: left;
    letter-spacing: 0.12em;
  }

  .newspaper-grid {
    grid-template-columns: 1fr;
  }

  .newspaper-columns {
    column-count: 1;
  }

  .newspaper {
    padding: 1.6rem;
  }

  .footer-content {
    align-items: flex-end;
    padding-bottom: 2.5rem;
  }

  .footer-stack {
    max-width: 100%;
    font-size: 0.95rem;
  }

  .footer-verse p {
    font-size: clamp(1.5rem, 3.2vw + 0.7rem, 2.1rem);
  }

  .footer-verse cite {
    font-size: 0.75rem;
  }

  .footer-verse {
    justify-content: flex-start;
    padding-top: calc(clamp(3rem, 12vh, 5.5rem) + 4.5rem);
    transform: none;
  }

  .footer-social a {
    width: 40px;
    height: 40px;
  }

  .footer-social svg {
    width: 18px;
    height: 18px;
  }

  .footer-verse {
    transform: translateY(-4vh);
  }

  .pathway {
    padding-left: 1.5rem;
  }

  .pathway::before {
    left: 8px;
  }

  .pathway-stop::before {
    left: -1.6rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto;
  }

  .btn,
  .reveal,
  .bg-layer {
    transition: none;
  }
}
