:root {
  --ink: #102a25;
  --ink-soft: #39544e;
  --sand: #f5f2ea;
  --card: rgba(255, 255, 255, 0.8);
  --line: rgba(16, 42, 37, 0.14);
  --accent: #2f5a51;
  --accent-soft: rgba(47, 90, 81, 0.12);
  --shadow: 0 26px 55px rgba(16, 32, 28, 0.15);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 90% 5%, #d6eadf 0%, transparent 42%),
    radial-gradient(circle at 10% 32%, #f7ead8 0%, transparent 38%),
    linear-gradient(130deg, #f8f5ee 0%, #f6f2e9 45%, #edf3ef 100%);
  line-height: 1.6;
  padding: 1.25rem clamp(1rem, 4vw, 3rem) 2rem;
}

.bg-orb {
  position: fixed;
  z-index: -1;
  border-radius: 999px;
  filter: blur(55px);
  opacity: 0.35;
  pointer-events: none;
}

.bg-orb-1 {
  width: 18rem;
  height: 18rem;
  background: #d4e3da;
  left: -5rem;
  top: 7rem;
}

.bg-orb-2 {
  width: 23rem;
  height: 23rem;
  background: #f0ddc2;
  right: -6rem;
  top: 24rem;
}

.site-header,
main,
.site-footer {
  width: min(1120px, 100%);
  margin-inline: auto;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: clamp(1.25rem, 3vw, 2.2rem);
}

.brand {
  margin: 0;
  letter-spacing: 0.22em;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--ink-soft);
}

.forum-link-top {
  color: var(--ink-soft);
  font-size: 0.9rem;
  text-decoration: none;
  border-bottom: 1px solid rgba(16, 42, 37, 0.2);
  transition: color 220ms ease, border-color 220ms ease;
}

.forum-link-top:hover {
  color: var(--ink);
  border-color: var(--ink);
}

main {
  display: grid;
  gap: clamp(1.3rem, 2.7vw, 2.4rem);
}

.hero,
.local-section,
.forum-card {
  border: 1px solid var(--line);
  border-radius: 1.3rem;
  background: var(--card);
  backdrop-filter: blur(4px);
  box-shadow: var(--shadow);
}

.hero {
  padding: clamp(1.2rem, 3vw, 2.4rem);
  display: grid;
  grid-template-columns: 1.2fr minmax(220px, 1fr);
  gap: clamp(1rem, 2.4vw, 2rem);
  align-items: end;
}

.eyebrow {
  margin: 0 0 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  font-size: 0.75rem;
  color: #4b6a63;
}

h1,
h2 {
  font-family: "Fraunces", Georgia, serif;
  line-height: 1.1;
  margin: 0;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2rem, 4.7vw, 3.9rem);
  margin-bottom: 1rem;
}

.intro {
  margin: 0;
  max-width: 56ch;
  color: var(--ink-soft);
}

.hero-photo-wrap {
  margin: 0;
  border-radius: 0.9rem;
  overflow: hidden;
  border: 1px solid rgba(16, 42, 37, 0.18);
  background: #dde7e2;
}

.hero-photo {
  width: 100%;
  display: block;
  object-fit: cover;
  aspect-ratio: 4 / 3;
}

.hero-photo-wrap figcaption {
  padding: 0.6rem 0.8rem;
  font-size: 0.78rem;
  color: var(--ink-soft);
  background: rgba(255, 255, 255, 0.6);
}

.local-section {
  padding: clamp(0.8rem, 2.2vw, 1rem);
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: clamp(1rem, 2vw, 1.4rem);
  align-items: stretch;
}

.local-image-wrap {
  border-radius: 0.9rem;
  overflow: hidden;
  min-height: 260px;
}

.local-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.local-copy {
  display: grid;
  align-content: center;
  gap: 0.8rem;
  padding: 0.7rem 0.5rem 0.7rem 0.1rem;
}

h2 {
  font-size: clamp(1.5rem, 3.1vw, 2.35rem);
}

.local-copy p,
.forum-card p {
  margin: 0;
  color: var(--ink-soft);
}

.forum-section {
  margin-bottom: 0.2rem;
}

.forum-card {
  padding: clamp(1.2rem, 2.7vw, 2rem);
}

.forum-label {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 0.45rem;
}

.forum-card h2 {
  margin-bottom: 0.8rem;
}

.forum-button {
  margin-top: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  padding: 0.58rem 1.06rem;
  border: 1px solid rgba(47, 90, 81, 0.42);
  border-radius: 999px;
  color: #24463f;
  font-weight: 700;
  font-size: 0.9rem;
  transition:
    background-color 220ms ease,
    color 220ms ease,
    border-color 220ms ease;
}

.forum-button:hover {
  background: #2f5a51;
  color: #fff;
  border-color: #2f5a51;
}

.site-footer {
  margin-top: clamp(1.1rem, 2.6vw, 1.8rem);
  border-top: 1px solid rgba(16, 42, 37, 0.14);
  padding-top: 0.7rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  align-items: center;
  justify-content: flex-start;
  font-size: 0.75rem;
  color: #4d6761;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: inherit;
}

.reveal {
  opacity: 0;
  transform: translateY(10px);
  transition:
    opacity 500ms ease,
    transform 500ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .local-section {
    grid-template-columns: 1fr;
  }

  .local-image-wrap {
    min-height: 220px;
  }
}

@media (max-width: 540px) {
  body {
    padding-inline: 0.85rem;
  }

  .site-header {
    margin-bottom: 1rem;
  }

  h1 {
    font-size: clamp(1.68rem, 9vw, 2.2rem);
  }

  .forum-button {
    width: 100%;
    justify-content: center;
  }

  .site-footer {
    font-size: 0.71rem;
    align-items: flex-start;
  }
}
