:root {
  --bg: #f8f5ef;
  --paper: #fffdf8;
  --ink: #23211d;
  --muted: #716b62;
  --line: #ded6c8;
  --accent: #b9472f;
  --accent-dark: #8e3323;
  --green: #58745b;
  --blue: #4f6f8a;
  --rose: #b86670;
  --ochre: #c28c38;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  color: var(--ink);
  background: var(--bg);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--bg);
}

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

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1rem clamp(1rem, 4vw, 3rem);
  border-bottom: 1px solid var(--line);
  background: rgba(248, 245, 239, 0.92);
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(12px);
}

.brand {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.25rem, 2vw, 1.7rem);
  font-weight: 700;
  line-height: 1.05;
}

.brand small {
  display: block;
  margin-top: 0.2rem;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--muted);
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.site-nav a,
.donate-button,
.button {
  min-height: 2.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid transparent;
  padding: 0.65rem 1rem;
  font: inherit;
  font-weight: 700;
}

.site-nav a {
  color: var(--muted);
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--ink);
  background: #eee5d8;
}

.donate-button,
.button.primary {
  cursor: pointer;
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

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

.button.secondary {
  color: var(--ink);
  border-color: var(--line);
  background: var(--paper);
}

main {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
}

.hero {
  min-height: 70vh;
  display: grid;
  align-items: end;
  padding: clamp(4rem, 9vw, 8rem) 0 3rem;
  border-bottom: 1px solid var(--line);
}

.hero-copy {
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 0.75rem;
  color: var(--accent-dark);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.05;
}

h1 {
  max-width: 820px;
  margin-bottom: 1rem;
  font-size: clamp(3rem, 8vw, 6.5rem);
}

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

h3 {
  font-size: 1.15rem;
}

p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
}

.hero-copy > p:not(.eyebrow),
.page-intro p:not(.eyebrow),
.coming-soon p:not(.eyebrow) {
  max-width: 620px;
  font-size: 1.16rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

.section,
.page-intro,
.coming-soon {
  padding: clamp(3rem, 7vw, 6rem) 0;
}

.section-heading {
  max-width: 680px;
  margin-bottom: 2rem;
}

.feature-grid,
.gallery-grid,
.content-band {
  display: grid;
  gap: 1rem;
}

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

.feature-grid article,
.photo-card,
.content-band > div {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.feature-grid article,
.content-band > div {
  padding: 1.25rem;
}

.gallery-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  padding-bottom: clamp(3rem, 7vw, 6rem);
}

.photo-card {
  margin: 0;
  overflow: hidden;
}

.photo-link {
  display: block;
  aspect-ratio: 4 / 3;
  background: #ebe4d9;
}

.photo-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

figcaption {
  padding: 0.9rem 1rem 1rem;
  font-weight: 700;
}

.content-band {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  padding-bottom: clamp(3rem, 7vw, 6rem);
}

.coming-soon {
  min-height: 65vh;
  display: grid;
  align-content: center;
  justify-items: start;
}

.site-footer {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 2rem;
  padding: 2rem clamp(1rem, 4vw, 3rem);
  border-top: 1px solid var(--line);
}

.site-footer p {
  margin: 0;
  font-size: 0.95rem;
}

.footer-brand {
  margin-bottom: 0.35rem;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.25rem;
  font-weight: 700;
}

.footer-contact {
  display: grid;
  gap: 0.35rem;
  color: var(--muted);
  font-style: normal;
  text-align: right;
}

.footer-contact a {
  color: var(--ink);
  font-weight: 700;
}

.footer-contact a:hover {
  color: var(--accent-dark);
}

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

  .site-nav {
    justify-content: flex-start;
  }

  .feature-grid,
  .gallery-grid,
  .content-band {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .footer-contact {
    text-align: left;
  }
}
