:root {
  --bg: #f7f1e7;
  --bg-soft: #fdf9f3;
  --surface: rgba(255, 252, 246, 0.82);
  --surface-strong: #fffdf9;
  --surface-dark: #1c1612;
  --text: #2c241d;
  --muted: #6b6056;
  --line: rgba(60, 45, 28, 0.12);
  --primary: #8d6a3e;
  --primary-dark: #6f502b;
  --accent: #ddc5a2;
  --white: #ffffff;
  --shadow-sm: 0 10px 30px rgba(27, 20, 14, 0.06);
  --shadow-md: 0 18px 55px rgba(27, 20, 14, 0.11);
  --radius-sm: 18px;
  --radius-md: 24px;
  --radius-lg: 34px;
  --container: 1180px;
  --transition: 0.25s ease;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: linear-gradient(to bottom, #f8f3ea, #f4ede1);
  color: var(--text);
  font-family: "Inter", sans-serif;
  line-height: 1.65;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

button,
input,
textarea,
select {
  font: inherit;
}

.container {
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
}

.section {
  padding: 100px 0;
}

.section-soft {
  background:
    radial-gradient(circle at top left, rgba(221, 197, 162, 0.18), transparent 30%),
    linear-gradient(to bottom, #fcf8f1, #f3eadf);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(247, 241, 231, 0.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.nav {
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}

.logo-mark {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary), #b38b58);
  color: white;
  font-size: 0.9rem;
  box-shadow: var(--shadow-sm);
}

.logo-text {
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}

.logo-text span {
  color: var(--primary);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.4rem;
}

.nav-menu a {
  color: var(--muted);
  font-size: 0.96rem;
  font-weight: 500;
  transition: var(--transition);
}

.nav-menu a:hover,
.nav-menu a.active {
  color: var(--primary-dark);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: transparent;
  cursor: pointer;
  padding: 0;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--text);
  margin: 4px auto;
  transition: var(--transition);
}

.hero {
  position: relative;
  min-height: calc(100vh - 80px);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    url("https://images.unsplash.com/photo-1506744038136-46273834b3fb?auto=format&fit=crop&w=1800&q=80")
    center center / cover no-repeat;
  transform: scale(1.04);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(24, 18, 13, 0.82), rgba(24, 18, 13, 0.42) 45%, rgba(24, 18, 13, 0.18)),
    linear-gradient(to top, rgba(24, 18, 13, 0.5), transparent 35%);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 2rem;
  align-items: center;
  padding: 70px 0;
}

.hero-content {
  max-width: 760px;
  color: #fff8f0;
}

.eyebrow,
.section-label,
.card-kicker,
.mini-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 700;
}

.eyebrow {
  color: #e6d4bb;
  margin-bottom: 1rem;
}

.hero h1,
.intro-grid h2,
.section-heading h2,
.prayer-panel h2,
.cta-box h2,
.page-title,
.contact-box h2 {
  font-family: "Cormorant Garamond", serif;
  line-height: 0.98;
  letter-spacing: -0.02em;
  margin: 0 0 1rem;
}

.hero h1 {
  font-size: clamp(3rem, 6vw, 5.7rem);
  max-width: 860px;
}

.hero-text {
  font-size: 1.08rem;
  color: #eadfce;
  max-width: 660px;
  margin-bottom: 2rem;
}

.hero-actions,
.cta-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn {
  min-height: 52px;
  padding: 0 1.35rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  transition: var(--transition);
  border: none;
  cursor: pointer;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), #a7814f);
  color: white;
  box-shadow: 0 14px 35px rgba(111, 80, 43, 0.22);
}

.btn-primary:hover {
  transform: translateY(-1px);
  background: linear-gradient(135deg, var(--primary-dark), #8d6a3e);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 248, 240, 0.24);
  color: white;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.14);
}

.btn-light {
  background: white;
  color: var(--text);
}

.hero-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2.4rem;
}

.hero-meta-item {
  padding: 1rem 1rem 0 0;
  border-top: 1px solid rgba(255, 248, 240, 0.18);
}

.hero-meta-item strong {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.98rem;
}

.hero-meta-item span {
  color: #dccdb9;
  font-size: 0.92rem;
}

.hero-card {
  background: rgba(255, 252, 246, 0.14);
  border: 1px solid rgba(255, 248, 240, 0.18);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(12px);
  border-radius: 28px;
  padding: 2rem;
  color: #fff7ec;
}

.card-kicker {
  color: #e7d5bc;
  margin-bottom: 0.8rem;
}

.hero-card h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.2rem;
  margin: 0 0 0.75rem;
}

.hero-card-text {
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
}

.hero-card-subtext {
  color: #e0d2c0;
  margin-bottom: 1rem;
}

.text-link,
.card-link {
  font-weight: 700;
  color: var(--primary-dark);
}

.hero-card .text-link {
  color: #fff3e0;
}

.intro-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2rem;
  align-items: start;
}

.intro-grid h2,
.section-heading h2,
.prayer-panel h2,
.cta-box h2,
.page-title,
.contact-box h2 {
  font-size: clamp(2rem, 4vw, 3.6rem);
}

.intro-grid p,
.section-heading p,
.card p,
.reflection-box p,
.prayer-panel p,
.site-footer p,
.cta-box p,
.page-text,
.contact-box p,
.contact-form label {
  color: var(--muted);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 2rem;
}

.section-label,
.mini-label {
  color: var(--primary);
  margin-bottom: 0.8rem;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.card {
  background: var(--surface-strong);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 1.4rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.9rem;
}

.pill {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 0.8rem;
  background: #f2e6d4;
  color: var(--primary-dark);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
}

.card-number {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.1rem;
  color: #d2b48a;
  line-height: 1;
}

.card h3,
.reflection-box h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  line-height: 1;
  margin: 0 0 0.8rem;
}

.reflection-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 1.25rem;
}

.reflection-grid-page {
  grid-template-columns: repeat(3, 1fr);
}

.reflection-box {
  background: rgba(255, 252, 246, 0.72);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
}

.featured-reflection {
  background: linear-gradient(180deg, #fffdf8, #f5ede2);
}

.prayer-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 1.25rem;
}

.prayer-panel,
.quote-panel,
.contact-box,
.contact-form {
  border-radius: 28px;
  padding: 2rem;
  box-shadow: var(--shadow-md);
}

.prayer-panel,
.contact-box,
.contact-form {
  background: var(--surface-strong);
  border: 1px solid var(--line);
}

.quote-panel {
  background: linear-gradient(160deg, #2a2018, #47331f, #8d6a3e);
  color: #fff7eb;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.quote-mark {
  position: absolute;
  top: 10px;
  right: 18px;
  font-family: "Cormorant Garamond", serif;
  font-size: 7rem;
  line-height: 1;
  opacity: 0.14;
}

.quote {
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  line-height: 1.15;
  margin: 0 0 1rem;
  position: relative;
  z-index: 1;
}

.quote-author {
  color: #ead7bd;
  font-weight: 600;
}

.cta-box {
  background:
    radial-gradient(circle at top left, rgba(221, 197, 162, 0.26), transparent 28%),
    linear-gradient(180deg, #fffdf8, #f4ebdf);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
  border-radius: 34px;
  padding: 3rem 2rem;
  text-align: center;
}

.cta-box p {
  max-width: 760px;
  margin-inline: auto;
}

.subhero {
  padding: 90px 0 40px;
}

.page-title {
  margin-bottom: 1rem;
}

.page-text {
  max-width: 760px;
}

.stack {
  display: grid;
  gap: 1.2rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 1.2rem;
}

.contact-form {
  display: grid;
  gap: 1rem;
}

.contact-form label {
  display: grid;
  gap: 0.45rem;
  font-weight: 600;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: #fffdfa;
  border-radius: 16px;
  padding: 0.95rem 1rem;
  color: var(--text);
}

.site-footer {
  background: linear-gradient(180deg, #201913, #17110d);
  color: #f5ecdf;
  padding-top: 50px;
  margin-top: 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.8fr 1fr;
  gap: 2rem;
  padding-bottom: 2rem;
}

.site-footer h3 {
  margin-top: 0;
  margin-bottom: 1rem;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.9rem;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li + li {
  margin-top: 0.5rem;
}

.footer-links a {
  color: #dfd0be;
}

.footer-links a:hover {
  color: white;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
  padding: 1rem 0 1.4rem;
}

.footer-brand p {
  max-width: 360px;
}

@media (max-width: 1080px) {
  .cards-grid,
  .reflection-grid-page {
    grid-template-columns: repeat(2, 1fr);
  }

  .reflection-grid,
  .contact-grid,
  .intro-grid,
  .prayer-layout,
  .footer-grid,
  .hero-grid,
  .hero-meta {
    grid-template-columns: 1fr;
  }

  .hero-card {
    max-width: 520px;
  }
}

@media (max-width: 760px) {
  .section {
    padding: 76px 0;
  }

  .menu-toggle {
    display: inline-block;
  }

  .nav-menu {
    position: absolute;
    top: 80px;
    left: 1rem;
    right: 1rem;
    background: rgba(255, 252, 246, 0.98);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-md);
    border-radius: 22px;
    padding: 1rem;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.9rem;
  }

  .nav-menu.show {
    display: flex;
  }

  .hero {
    min-height: auto;
  }

  .hero h1 {
    font-size: 3.1rem;
  }

  .cards-grid,
  .reflection-grid-page {
    grid-template-columns: 1fr;
  }

  .cta-box {
    padding: 2.2rem 1.2rem;
  }
}