:root {
  --bg: #f3f0e8;
  --paper: #fbf9f4;
  --ink: #1f2924;
  --text: #4d5752;
  --green: #50685b;
  --green-dark: #2f4138;
  --green-soft: #dfe7e1;
  --gold: #a48652;
  --line: rgba(31, 41, 36, 0.14);
  --shadow: 0 18px 45px rgba(28, 39, 33, 0.12);
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.7;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(100% - 40px, var(--max-width));
  margin-inline: auto;
}

.narrow {
  max-width: 820px;
}

h1,
h2,
h3 {
  margin-top: 0;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: 1.08;
}

h1 {
  margin-bottom: 24px;
  font-size: clamp(3.8rem, 8vw, 7.2rem);
  letter-spacing: -0.045em;
}

h2 {
  margin-bottom: 24px;
  font-size: clamp(2.5rem, 5vw, 4.6rem);
  letter-spacing: -0.025em;
}

h3 {
  margin-bottom: 16px;
  font-size: 1.7rem;
}

p {
  margin-top: 0;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.77rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 249, 244, 0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  position: relative;
  min-height: 72px;
  display: flex;
  align-items: center;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  margin-right: auto;
}

.brand-logo {
  display: block;
  width: 230px;
  max-width: 31vw;
  height: 54px;
  object-fit: cover;
  object-position: center;
}

.brand-symbol {
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  line-height: 1;
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-text strong {
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.3rem;
  font-weight: 500;
}

.brand-text small {
  color: var(--green);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.main-nav a {
  position: relative;
  color: var(--ink);
  font-size: 0.9rem;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.25s ease;
}

.main-nav a:hover::after {
  width: 100%;
}

.nav-highlight {
  padding: 10px 14px;
  border: 1px solid rgba(80, 104, 91, 0.35);
  border-radius: 4px;
}

.language-switcher {
  display: flex;
  gap: 7px;
  color: var(--green);
  font-size: 0.76rem;
  font-weight: 700;
}

.language-switcher .active {
  color: var(--gold);
}

.coming-soon {
  opacity: 0.45;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: var(--ink);
  transition:
    transform 0.25s ease,
    opacity 0.25s ease;
}

/* Hero */

.hero {
  position: relative;
  min-height: 780px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(
      rgba(34, 47, 40, 0.38),
      rgba(34, 47, 40, 0.38)
    ),
    url("assets/hero-ecumenical-monks.jpg") center center / cover no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(24, 34, 29, 0.68) 0%,
      rgba(24, 34, 29, 0.38) 48%,
      rgba(24, 34, 29, 0.10) 100%
    );
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 750px;
  padding-block: 120px;
}

.hero h1 {
  color: #f7f3e8;
}

.hero-lead {
  max-width: 680px;
  margin-bottom: 20px;
  color: #f0eadf;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.35rem, 2.5vw, 1.9rem);
}

.hero-copy {
  max-width: 620px;
  color: rgba(247, 243, 232, 0.78);
  font-size: 1.05rem;
}

.hero-actions {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/* Buttons */

.button {
  min-height: 52px;
  padding: 14px 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  font-weight: 700;
  transition:
    transform 0.2s ease,
    background 0.2s ease,
    box-shadow 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: #172119;
  background: #d7c49a;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.button-primary:hover {
  background: #e1d0aa;
}

.button-secondary {
  color: #f7f3e8;
  border: 1px solid rgba(255, 255, 255, 0.36);
  background: rgba(255, 255, 255, 0.05);
}

.button-light {
  color: var(--green-dark);
  background: var(--paper);
}

/* General sections */

.section {
  padding: 110px 0;
}

.section-heading {
  max-width: 820px;
  margin: 0 auto 52px;
  text-align: center;
}

.welcome {
  background: var(--paper);
}

.intro-text {
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.35rem, 2.4vw, 1.85rem);
}

/* Pillars */

.pillars {
  background: var(--green-dark);
}

.pillars h2,
.pillars h3 {
  color: #f5f1e7;
}

.pillars .section-heading .eyebrow {
  color: #c9b487;
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.pillar-card {
  min-height: 300px;
  padding: 34px 30px;
  color: rgba(245, 241, 231, 0.78);
  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.08),
      rgba(255, 255, 255, 0.025)
    );
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 10px;
  box-shadow: var(--shadow);
}

.pillar-card a {
  color: #d9c89f;
  font-weight: 700;
  border-bottom: 1px solid rgba(217, 200, 159, 0.45);
}

.card-number {
  display: block;
  margin-bottom: 38px;
  color: #c9b487;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.05rem;
}

.status,
.support-status {
  display: inline-block;
  margin-top: 10px;
  padding: 7px 10px;
  border: 1px solid rgba(201, 180, 135, 0.35);
  border-radius: 3px;
  color: #d9c89f;
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.languages {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.languages span {
  min-width: 38px;
  padding: 6px 8px;
  text-align: center;
  color: #e8dcc2;
  border: 1px solid rgba(232, 220, 194, 0.26);
  border-radius: 3px;
  font-size: 0.75rem;
  font-weight: 700;
}

/* Reflection */

.reflection {
  background: #e7e3d8;
}

.reflection-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 90px;
  align-items: start;
}

.reflection-copy {
  font-size: 1.08rem;
}

blockquote {
  margin: 38px 0 0;
  padding: 28px 0 0;
  border-top: 1px solid rgba(164, 134, 82, 0.55);
  color: var(--green-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.45rem, 3vw, 2.2rem);
  line-height: 1.35;
}

/* Dialogue */

.dialogue {
  background: var(--paper);
}

.dialogue-inner {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
  align-items: start;
}

.dialogue-lead {
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.5rem;
}

/* Prayer request */

.prayer-request {
  padding: 100px 0;
  color: #f1eee6;
  background: var(--green);
}

.prayer-request h2 {
  color: #fffaf0;
}

.prayer-request .eyebrow {
  color: #d9c89f;
}

.prayer-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 70px;
  align-items: center;
}

.privacy-note {
  max-width: 680px;
  color: rgba(241, 238, 230, 0.72);
  font-size: 0.92rem;
}

.prayer-action {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.prayer-action a:not(.button) {
  color: #f7edd7;
  border-bottom: 1px solid rgba(247, 237, 215, 0.4);
}

/* Celebrations */

.celebrations {
  background: #f0ede5;
}

/* Support */

.support {
  background: #dfe7e1;
}

.support-inner {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
  align-items: start;
}

.support .support-status {
  color: var(--green-dark);
  border-color: rgba(47, 65, 56, 0.28);
}

/* Footer */

.site-footer {
  padding: 48px 0;
  color: rgba(255, 255, 255, 0.68);
  background: #172119;
  font-size: 0.9rem;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 50px;
  align-items: start;
}

.footer-brand {
  margin-bottom: 8px;
  color: #f5f1e7;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.4rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-links a {
  color: #d9c89f;
}

.footer-note {
  text-align: right;
}

/* Responsive */

@media (max-width: 1050px) {
  .main-nav {
    gap: 16px;
  }

  .main-nav a {
    font-size: 0.82rem;
  }

  .language-switcher {
    display: none;
  }
}

@media (max-width: 900px) {
  .reflection-grid,
  .dialogue-inner,
  .support-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .prayer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }

  .footer-note {
    text-align: left;
  }
}

@media (max-width: 760px) {
  .header-inner {
    min-height: 74px;
  }

  .brand-text small {
    display: none;
  }

  .brand-text strong {
    font-size: 1.08rem;
  }

  .brand-symbol {
    font-size: 1.55rem;
  }

  .menu-toggle {
    display: block;
    margin-left: auto;
    position: relative;
    z-index: 60;
  }

  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 55;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px 20px 20px;
    background: rgba(251, 249, 244, 0.99);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 18px 35px rgba(31, 41, 36, 0.15);
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav a {
    padding: 14px 4px;
    color: var(--ink);
    font-size: 1rem;
    border-bottom: 1px solid var(--line);
  }

  .main-nav a:last-child {
    border-bottom: 0;
  }

  .nav-highlight {
    border: 0;
    border-radius: 0;
  }

  .menu-toggle.is-open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-toggle.is-open span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.is-open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .hero {
    min-height: 800px;
    align-items: end;
    background:
      linear-gradient(
        to top,
        rgba(24, 34, 29, 1) 0%,
        rgba(24, 34, 29, 0.96) 48%,
        rgba(24, 34, 29, 0.55) 72%,
        rgba(24, 34, 29, 0.10) 100%
      ),
      url("assets/hero-ecumenical-monks.jpg") 58% top / cover no-repeat;
  }

  .hero-content {
    padding: 330px 0 72px;
  }

  h1 {
    font-size: clamp(3rem, 14vw, 4.7rem);
  }

  .section {
    padding: 78px 0;
  }

  .pillars-grid {
    grid-template-columns: 1fr;
  }

  .pillar-card {
    min-height: auto;
  }

  .footer-links {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 18px;
  }
}