:root {
  --cream: #f7f1e4;
  --soft-cream: #fbf7ef;
  --gold: #c7a24b;
  --gold-deep: #a8832c;
  --brown: #4f3a21;
  --brown-deep: #2c1f10;
  --text: #2c251d;
  --muted: #6d6253;
  --white: #ffffff;
  --line: #dfd2bc;
  --panel: #fffaf1;
  --shadow: 0 14px 36px rgba(50, 35, 12, 0.12);
  --radius: 18px;
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--soft-cream);
  color: var(--text);
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.65;
}

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

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

a:hover {
  text-decoration: none;
}

.container {
  width: min(92%, var(--max-width));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(44, 31, 16, 0.96);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
}

.header-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 18px 0;
}

.brand-name {
  display: inline-block;
  font-size: 1.65rem;
  font-weight: bold;
  color: var(--white);
  letter-spacing: 0.02em;
}

.brand-subtitle {
  margin: 4px 0 0;
  color: #ddcda8;
  font-size: 0.95rem;
}

.main-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.main-nav a {
  color: #f3ead6;
  font-size: 0.98rem;
  font-weight: 600;
  padding-bottom: 2px;
  border-bottom: 2px solid transparent;
}

.main-nav a:hover {
  border-color: var(--gold);
}

.hero-banner {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background:
    linear-gradient(rgba(28, 18, 8, 0.45), rgba(28, 18, 8, 0.62)),
    url('https://images.unsplash.com/photo-1516979187457-637abb4f9353?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
  color: var(--white);
}


.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(36, 24, 10, 0.80), rgba(36, 24, 10, 0.28));
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 620px;
  padding: 70px 0;
  margin-left: 0;
}

.hero-banner .container {
  width: min(94%, var(--max-width));
  margin-left: 0px;
  margin-right: auto;
}

.hero-kicker {
  margin: 0 0 16px;
  font-size: 0.9rem;
  font-weight: bold;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #f1dba2;
}

.hero-banner h1 {
  margin: 0 0 16px;
  font-size: clamp(1.2rem, 2.2vw, 2.15rem);
  line-height: 1.02;
  max-width: 500px;


.hero-text {
  max-width: 560px;
  font-size: 0.95rem;
  color: #f6efdf;
  margin-bottom: 22px;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  display: inline-block;
  padding: 14px 24px;
  border-radius: 999px;
  font-weight: bold;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border 0.2s ease;
}

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

.btn-gold {
  background: linear-gradient(135deg, #d7b45b, #b5892e);
  color: #24180b;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}

.btn-gold:hover {
  background: linear-gradient(135deg, #e0bf6b, #c4952f);
}

.btn-outline {
  color: var(--white);
  border: 2px solid rgba(255, 244, 215, 0.8);
  background: transparent;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.08);
}

.btn-dark {
  background: var(--brown-deep);
  color: var(--white);
}

.btn-dark:hover {
  background: #1f150a;
}

.btn-outline-dark {
  color: var(--brown);
  border: 2px solid var(--brown);
  background: transparent;
}

.btn-outline-dark:hover {
  background: rgba(79, 58, 33, 0.06);
}

.intro-strip {
  margin-top: 0;
  position: relative;
  z-index: 5;
  padding-bottom: 30px;
}

.intro-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.intro-card {
  background: rgba(255, 250, 241, 0.97);
  border: 1px solid rgba(199, 162, 75, 0.24);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
}

.intro-card h3 {
  margin-top: 0;
  margin-bottom: 12px;
  color: var(--brown);
}

.section {
  padding: 82px 0;
}

.section-light {
  background: var(--soft-cream);
}

.section-cream {
  background: var(--cream);
}

.section-dark {
  background: linear-gradient(135deg, #3c2a17, #24170b);
  color: var(--white);
}

.section-gold-callout {
  background: linear-gradient(135deg, #d9bf80, #c8a14b);
  color: #25190d;
}

.section-contact {
  background: #fffaf1;
}

.section-label {
  margin: 0 0 12px;
  color: var(--gold-deep);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.84rem;
  font-weight: bold;
}

.light-label {
  color: #f1dba2;
}

.dark-label {
  color: #5f4311;
}

.section h2,
.section-title {
  margin-top: 0;
  margin-bottom: 22px;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.15;
}

.center-title,
.center-label {
  text-align: center;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.45fr 0.9fr;
  gap: 34px;
  align-items: start;
}

.about-panel {
  background: var(--panel);
  border: 1px solid var(--line);
  border-top: 5px solid var(--gold);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
}

.about-panel h3 {
  margin-top: 0;
  color: var(--brown);
}

.about-panel ul {
  margin: 0;
  padding-left: 20px;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 34px;
}

.project-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  min-height: 270px;
  box-shadow: var(--shadow);
  overflow: hidden;
  position: relative;
}

.project-card::before {
  content: "";
  display: block;
  height: 7px;
  background: linear-gradient(90deg, #dfc37e, #b78932, #8d6722);
}

.project-card-content {
  padding: 26px;
}

.project-type {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--gold-deep);
  font-size: 0.82rem;
  font-weight: bold;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.project-card h3 {
  margin-top: 0;
  margin-bottom: 12px;
  color: var(--brown);
}

.project-card.featured {
  background: linear-gradient(180deg, #fff8ea, #f4e4bf);
}

.ministry-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr;
  gap: 34px;
  align-items: center;
}

.ministry-box {
  background: rgba(255, 248, 233, 0.08);
  border: 1px solid rgba(241, 219, 162, 0.22);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
}

.ministry-box h3 {
  margin-top: 0;
  color: #f5dfae;
}

.ministry-box ul {
  margin: 0;
  padding-left: 20px;
  color: #f6efdf;
}

.creative-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.creative-panel {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
}

.creative-panel h3 {
  margin-top: 0;
  color: var(--brown);
}

.callout-wrap {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 24px;
  align-items: center;
}

.callout-side {
  display: flex;
  justify-content: center;
  align-items: center;
}

.contact-wrap {
  max-width: 840px;
  margin: 0 auto;
  text-align: center;
}

.contact-text {
  font-size: 1.08rem;
  max-width: 760px;
  margin: 0 auto 26px;
  color: var(--muted);
}

.contact-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 18px;
}

.contact-note {
  color: var(--muted);
  font-size: 0.95rem;
}

.site-footer {
  background: var(--brown-deep);
  color: #f6ecd6;
  padding-top: 34px;
}

.footer-wrap {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: flex-start;
  flex-wrap: wrap;
}

.footer-name {
  margin: 0 0 6px;
  font-size: 1.2rem;
  font-weight: bold;
}

.footer-copy {
  margin: 0;
  color: #d8c49a;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 18px;
}

.footer-links a {
  color: #f6ecd6;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 24px;
  padding: 18px 0 24px;
  color: #ceb98f;
  font-size: 0.94rem;
}

@media (max-width: 1024px) {
  .project-grid,
  .creative-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-grid,
  .ministry-grid,
  .callout-wrap {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  .header-wrap {
    flex-direction: column;
    align-items: flex-start;
  }

  .intro-grid,
  .project-grid,
  .creative-grid {
    grid-template-columns: 1fr;
  }

  .hero-banner {
    min-height: 70vh;
    background-position: center center;
  }

  .hero-content {
    padding: 70px 0;
  }

  .intro-strip {
    margin-top: -30px;
  }
}

@media (max-width: 560px) {
  .brand-name {
    font-size: 1.4rem;
  }

  .hero-banner h1 {
    font-size: 2.2rem;
  }

  .hero-text {
    font-size: 1rem;
  }

  .btn {
    width: 100%;
    text-align: center;
  }

  .main-nav {
    gap: 12px;
  }
}