:root {
  --ink: #26312f;
  --muted: #66736f;
  --cream: #f8f3ea;
  --paper: #fffdf8;
  --sage: #6f8b78;
  --sage-dark: #405d4d;
  --gold: #c89a4b;
  --rose: #b77865;
  --line: rgba(38, 49, 47, 0.14);
  --shadow: 0 22px 55px rgba(34, 45, 43, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

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

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(255, 253, 248, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
}

.brand img {
  width: 46px;
  height: 46px;
  object-fit: contain;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 0.95rem;
  font-weight: 700;
}

.main-nav a {
  color: rgba(38, 49, 47, 0.8);
}

.main-nav a:hover {
  color: var(--sage-dark);
}

.nav-cta {
  padding: 10px 16px;
  color: #fff !important;
  background: var(--sage-dark);
  border-radius: 999px;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fff;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  padding: 120px clamp(20px, 6vw, 86px) 64px;
  overflow: hidden;
  color: #fff;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(28, 39, 36, 0.88), rgba(28, 39, 36, 0.52), rgba(28, 39, 36, 0.2)),
    linear-gradient(0deg, rgba(28, 39, 36, 0.5), transparent 42%);
}

.hero-content {
  position: relative;
  max-width: 780px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: Lora, Georgia, serif;
  line-height: 1.08;
}

h1 {
  max-width: 780px;
  font-size: clamp(3rem, 8vw, 6.8rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
}

h3 {
  font-size: 1.35rem;
}

.hero-text {
  max-width: 660px;
  margin: 22px 0 0;
  font-size: clamp(1.15rem, 2vw, 1.45rem);
}

.hero-verse {
  max-width: 620px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.82);
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 22px;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.button.primary {
  color: #fff;
  background: var(--rose);
  box-shadow: 0 16px 32px rgba(183, 120, 101, 0.26);
}

.button.secondary,
.button.light {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.45);
}

.section {
  padding: 96px clamp(20px, 6vw, 86px);
}

.about-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 470px);
  gap: clamp(34px, 6vw, 76px);
  align-items: center;
}

.section-copy p,
.section-heading p {
  max-width: 720px;
  color: var(--muted);
}

.about-card,
.project-card,
.service-card,
.leaders-panel,
.contact-info {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.about-card {
  overflow: hidden;
}

.about-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.about-card div {
  padding: 24px;
}

.about-card strong,
.about-card span {
  display: block;
}

.about-card span {
  margin-top: 8px;
  color: var(--muted);
}

.warm-band {
  background: var(--cream);
}

.centered {
  text-align: center;
}

.centered p {
  margin-inline: auto;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  max-width: 880px;
  margin: 42px auto 0;
}

.service-card {
  padding: 32px;
}

.service-day {
  display: block;
  color: var(--sage-dark);
  font-weight: 800;
}

.service-card strong {
  display: block;
  margin-top: 6px;
  font-size: 3rem;
  line-height: 1;
}

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

.project-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
  margin-top: 42px;
}

.project-card {
  overflow: hidden;
}

.project-card img {
  width: 100%;
  aspect-ratio: 1.2 / 1;
  object-fit: cover;
}

.project-card video {
  width: 100%;
  aspect-ratio: 1.2 / 1;
  object-fit: cover;
  background: #111;
}

.project-card div {
  padding: 24px;
}

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

.leadership-section {
  background: #f3f7f1;
}

.leaders-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 22px;
  margin-top: 42px;
}

.leaders-panel {
  padding: 30px;
}

.leaders-panel.accent {
  background: var(--sage-dark);
  color: #fff;
}

.name-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 22px;
}

.name-grid span {
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  font-weight: 700;
}

.accent .name-grid span {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.1);
}

.verse-section {
  padding: 90px clamp(20px, 8vw, 120px);
  color: #fff;
  background: linear-gradient(135deg, var(--sage-dark), #283a32);
}

.verse-section div {
  max-width: 930px;
}

.verse-section p:last-child {
  margin: 22px 0 0;
  font-family: Lora, Georgia, serif;
  font-size: clamp(1.45rem, 3vw, 2.25rem);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 42px;
}

.gallery-grid button {
  min-height: 180px;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 8px;
  background: transparent;
  cursor: pointer;
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  transition: transform 0.25s ease;
}

.gallery-grid button:hover img {
  transform: scale(1.05);
}

.contact-section {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 28px;
  padding: 96px clamp(20px, 6vw, 86px);
  color: #fff;
  background: var(--ink);
}

.contact-content p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.78);
}

.contact-info {
  padding: 28px;
  color: var(--ink);
  box-shadow: none;
}

.contact-info p {
  color: var(--muted);
}

.site-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 36px 20px;
  text-align: center;
  background: var(--cream);
}

.site-footer img {
  width: 58px;
  height: 58px;
  object-fit: contain;
}

.site-footer p {
  margin: 0;
  font-weight: 800;
}

.site-footer span {
  color: var(--muted);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: none;
  place-items: center;
  padding: 24px;
  background: rgba(20, 27, 25, 0.88);
}

.lightbox.is-open {
  display: grid;
}

.lightbox img {
  max-height: 86vh;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.lightbox-close {
  position: absolute;
  top: 18px;
  right: 22px;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  color: var(--ink);
  background: #fff;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
}

@media (max-width: 980px) {
  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    top: 75px;
    right: 18px;
    left: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 20px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }

  .main-nav.is-open {
    display: flex;
  }

  .about-section,
  .leaders-layout,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .brand span {
    max-width: 150px;
    line-height: 1.15;
  }

  .hero {
    min-height: 88vh;
    padding-top: 112px;
  }

  .hero-overlay {
    background: linear-gradient(0deg, rgba(28, 39, 36, 0.9), rgba(28, 39, 36, 0.48));
  }

  .section,
  .contact-section {
    padding-block: 70px;
  }

  .service-grid,
  .name-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }

  .service-card strong {
    font-size: 2.4rem;
  }
}
