:root {
  --bg: #f7f1e8;
  --bg-soft: #fffaf2;
  --ink: #2f261f;
  --ink-muted: #6b5e52;
  --line: #dfd1bf;
  --accent: #8f2f24;
  --accent-dark: #6f2119;
  --gold: #c49a45;
  --deep: #241c18;
  --deep-soft: #31251f;
  --white: #ffffff;
  --shadow: 0 24px 60px rgba(47, 38, 31, 0.12);
  --radius: 22px;
  --max: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

body.nav-open {
  overflow: hidden;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3,
.brand-text {
  letter-spacing: -0.035em;
}

h1 {
  max-width: 820px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.1rem, 7vw, 6.9rem);
  line-height: 0.92;
  margin-bottom: 1.5rem;
}

h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.15rem, 4vw, 4.25rem);
  line-height: 1.02;
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.35rem;
  line-height: 1.2;
  margin-bottom: 0.7rem;
}

a {
  color: inherit;
}

img,
svg {
  max-width: 100%;
}

.container {
  width: min(var(--max), calc(100% - 40px));
  margin-inline: auto;
}

.narrow {
  max-width: 760px;
}

.center {
  text-align: center;
}

.section-pad {
  padding: clamp(72px, 9vw, 128px) 0;
}

.section-light {
  background: var(--bg-soft);
  border-block: 1px solid var(--line);
}

.skip-link {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 999;
  transform: translateY(-140%);
  padding: 0.7rem 1rem;
  border-radius: 999px;
  background: var(--ink);
  color: var(--white);
  text-decoration: none;
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(247, 241, 232, 0.88);
  border-bottom: 1px solid rgba(223, 209, 191, 0.7);
  backdrop-filter: blur(16px);
}

.header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  text-decoration: none;
  font-weight: 800;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--ink);
  border-radius: 50%;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.05rem;
}

.brand-text {
  font-size: 1.12rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.5vw, 34px);
  color: var(--ink-muted);
  font-size: 0.95rem;
  font-weight: 700;
}

.site-nav a {
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a:focus {
  color: var(--ink);
}

.nav-cta {
  color: var(--white) !important;
  background: var(--accent);
  padding: 0.7rem 1rem;
  border-radius: 999px;
}

.nav-cta:hover,
.nav-cta:focus {
  background: var(--accent-dark);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
  border-radius: 999px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.hero {
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: -20% -10% auto auto;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(196, 154, 69, 0.24), rgba(196, 154, 69, 0));
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: clamp(44px, 7vw, 92px);
  align-items: center;
}

.eyebrow {
  margin-bottom: 0.9rem;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.eyebrow.light {
  color: var(--gold);
}

.hero-lede {
  max-width: 690px;
  color: var(--ink);
  font-size: clamp(1.25rem, 2vw, 1.7rem);
  line-height: 1.35;
}

.hero-text,
.split-copy,
.final-cta p,
.narrow p {
  color: var(--ink-muted);
  font-size: 1.08rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 2rem 0 1.2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.82rem 1.15rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 900;
  line-height: 1;
  text-decoration: none;
  transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

.button:hover,
.button:focus {
  transform: translateY(-1px);
}

.button.primary {
  color: var(--white);
  background: var(--accent);
}

.button.primary:hover,
.button.primary:focus {
  background: var(--accent-dark);
}

.button.secondary {
  border-color: var(--line);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.44);
}

.button.large {
  min-height: 56px;
  padding-inline: 1.45rem;
}

.small-note {
  max-width: 580px;
  color: var(--ink-muted);
  font-size: 0.95rem;
}

.hero-card {
  position: relative;
  min-height: 500px;
  padding: clamp(28px, 4vw, 40px);
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(145deg, rgba(143, 47, 36, 0.88), rgba(36, 28, 24, 0.98)),
    radial-gradient(circle at top right, rgba(196, 154, 69, 0.5), transparent 42%);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-card::after {
  content: "36";
  position: absolute;
  right: -16px;
  bottom: -80px;
  color: rgba(255, 255, 255, 0.08);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 16rem;
  line-height: 1;
}

.card-cross {
  position: relative;
  width: 64px;
  height: 86px;
  margin-bottom: 3rem;
}

.card-cross::before,
.card-cross::after {
  content: "";
  position: absolute;
  background: var(--gold);
  border-radius: 999px;
}

.card-cross::before {
  top: 0;
  left: 29px;
  width: 6px;
  height: 86px;
}

.card-cross::after {
  top: 22px;
  left: 0;
  width: 64px;
  height: 6px;
}

.card-label {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-card h2 {
  color: var(--white);
  font-size: clamp(2.25rem, 4vw, 3.7rem);
}

.hero-card ul {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0.8rem;
  margin: 2rem 0 0;
  padding: 0;
  list-style: none;
}

.hero-card li {
  padding-left: 1.65rem;
  background-image: linear-gradient(var(--gold), var(--gold));
  background-repeat: no-repeat;
  background-position: 0 0.72em;
  background-size: 9px 9px;
}

.rhythm-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 42px;
}

.rhythm-card,
.faq-list details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 10px 32px rgba(47, 38, 31, 0.06);
}

.rhythm-card {
  padding: 28px;
}

.rhythm-card.featured {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
  transform: translateY(-12px);
}

.rhythm-card p {
  color: var(--ink-muted);
}

.rhythm-card.featured p {
  color: rgba(255, 255, 255, 0.78);
}

.step {
  display: inline-flex;
  margin-bottom: 2rem;
  color: var(--accent);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  font-weight: 700;
}

.featured .step {
  color: var(--gold);
}

.split {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: clamp(32px, 8vw, 96px);
  align-items: start;
}

.split-copy p:last-child {
  margin-bottom: 0;
}

.intention-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  margin-top: 72px;
  padding: clamp(28px, 5vw, 52px);
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.intention-panel h2 {
  max-width: 780px;
  margin-bottom: 0;
  font-size: clamp(2rem, 3.3vw, 3.2rem);
}

.section-deep {
  color: var(--white);
  background:
    linear-gradient(160deg, rgba(36, 28, 24, 0.96), rgba(36, 28, 24, 0.98)),
    radial-gradient(circle at top left, rgba(143, 47, 36, 0.6), transparent 42%);
}

.section-deep p {
  color: rgba(255, 255, 255, 0.76);
}

.devotion-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(42px, 8vw, 92px);
  align-items: start;
}

.devotion-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.devotion-list > div {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.05);
}

.devotion-list h3 {
  margin-bottom: 0.5rem;
}

.devotion-list p {
  margin-bottom: 0;
}

.faq-list {
  display: grid;
  gap: 14px;
  max-width: 860px;
  margin-top: 36px;
}

.faq-list details {
  padding: 0 24px;
}

.faq-list summary {
  cursor: pointer;
  padding: 22px 0;
  font-size: 1.1rem;
  font-weight: 900;
}

.faq-list p {
  margin-bottom: 22px;
  color: var(--ink-muted);
}

.final-cta {
  background:
    radial-gradient(circle at center top, rgba(196, 154, 69, 0.24), transparent 36%),
    var(--bg);
}

.site-footer {
  padding: 28px 0;
  color: rgba(255, 255, 255, 0.72);
  background: var(--deep);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer-inner p {
  margin: 0;
}

@media (max-width: 900px) {
  .hero-grid,
  .split,
  .devotion-grid {
    grid-template-columns: 1fr;
  }

  .hero-card {
    min-height: auto;
  }

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

  .rhythm-card.featured {
    transform: none;
  }

  .intention-panel,
  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(100% - 28px, var(--max));
  }

  .header-inner {
    min-height: 68px;
  }

  .nav-toggle {
    display: inline-block;
    position: relative;
    z-index: 110;
  }

  .site-nav {
    position: fixed;
    inset: 0;
    z-index: 105;
    display: grid;
    place-content: center;
    gap: 24px;
    background: rgba(247, 241, 232, 0.98);
    font-size: 1.4rem;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  body.nav-open .site-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .devotion-list {
    grid-template-columns: 1fr;
  }
}
