:root {
  --accent: #6d3d52;
  --accent-dark: #4e2b3b;
  --accent-light: #f8eef2;
  --ink: #3a2430;
  --ink-soft: #6b5560;
  --bg: #fffaf8;
  --bg-soft: #f5e6ea;
  --line: rgba(109, 61, 82, 0.16);
  --white: #ffffff;
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Nunito Sans", "Segoe UI", sans-serif;
  --container: min(1100px, calc(100% - 2rem));
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
.container { width: var(--container); margin-inline: auto; }
.top-bar { display: none; }

.site-header {
  position: sticky; top: 0.75rem; z-index: 50;
  width: var(--container); margin: 0.75rem auto 0;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: none;
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  min-height: 64px; gap: 1rem; padding: 0 0.6rem 0 1.1rem;
}
.brand { display: flex; align-items: center; gap: 0.6rem; }
.brand-mark { width: 34px; height: 34px; border-radius: 50%; }
.brand-text { display: flex; flex-direction: column; }
.brand strong {
  font-family: var(--font-display);
  font-size: 1.05rem; font-weight: 600;
  color: var(--accent);
}
.brand strong span { color: var(--ink); }
.brand small { display: none; }
.nav { display: flex; gap: 1rem; align-items: center; }
.nav a { font-size: 0.86rem; font-weight: 600; color: var(--ink-soft); }
.nav a:hover, .nav a[aria-current="page"] { color: var(--accent); }
.nav .cta {
  background: var(--accent) !important; color: var(--white) !important;
  padding: 0.55rem 1.1rem; font-weight: 700; border-radius: 999px;
}
.nav .cta:hover { background: var(--accent-dark) !important; }
.menu-toggle {
  display: none; width: 42px; height: 42px;
  border: 0; background: var(--accent-light);
  cursor: pointer; color: var(--accent);
  align-items: center; justify-content: center; border-radius: 50%;
}
.mobile-nav {
  display: none; position: fixed; inset: 0; z-index: 60;
  background: var(--bg); padding: 1.25rem; flex-direction: column;
}
.mobile-nav.is-open { display: flex; }
.mobile-nav-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 2rem; }
.mobile-nav nav a {
  display: block; font-family: var(--font-display);
  font-size: 1.7rem; padding: 0.9rem 0; border-bottom: 1px solid var(--line);
}
.close-menu {
  width: 42px; height: 42px; border: 0; background: var(--accent-light);
  font-size: 1.4rem; cursor: pointer; border-radius: 50%;
}

.hero-community {
  display: grid; gap: 2rem; padding: 2.5rem 0 1rem;
  width: var(--container); margin-inline: auto;
  align-items: center;
}
@media (min-width: 860px) {
  .hero-community { grid-template-columns: 1.05fr 0.95fr; min-height: 480px; }
}
.hero-kicker {
  display: inline-block; background: var(--bg-soft); color: var(--accent);
  font-size: 0.75rem; letter-spacing: 0.08em; text-transform: uppercase;
  font-weight: 700; padding: 0.35rem 0.8rem; border-radius: 999px; margin-bottom: 1rem;
}
.hero-community h1 {
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 4.2vw, 3.1rem);
  font-weight: 600; line-height: 1.12; margin-bottom: 1rem;
}
.hero-lead { color: var(--ink-soft); max-width: 480px; margin-bottom: 1.5rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.hero-community .hero-photo {
  border-radius: 40% 12px 40% 12px;
  overflow: hidden; min-height: 300px;
}
.hero-community .hero-photo img { width: 100%; height: 100%; min-height: 300px; object-fit: cover; }

.btn {
  display: inline-flex; align-items: center;
  padding: 0.85rem 1.3rem; font-size: 0.88rem;
  font-weight: 700; border: 1px solid transparent; border-radius: 999px; transition: 0.2s;
}
.btn-white, .btn-accent { background: var(--accent); color: var(--white); }
.btn-white:hover, .btn-accent:hover { background: var(--accent-dark); }
.btn-outline { background: transparent; color: var(--accent); border-color: var(--accent); }
.btn-outline:hover { background: var(--accent); color: var(--white); }

.section { padding: clamp(3rem, 7vw, 4.5rem) 0; }
.section-soft { background: var(--bg-soft); border-radius: 2rem; margin: 0 1rem; }
.eyebrow {
  font-size: 0.75rem; font-weight: 800; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--accent); margin-bottom: 0.6rem;
}
.title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 600; line-height: 1.15; max-width: 18ch;
}
.lede { color: var(--ink-soft); font-size: 1.05rem; max-width: 540px; line-height: 1.75; margin-top: 0.9rem; }

.stats { display: grid; gap: 1rem; margin-top: 2rem; }
@media (min-width: 700px) { .stats { grid-template-columns: repeat(3, 1fr); } }
.stat {
  background: var(--white); border: 0; padding: 1.4rem;
  border-radius: 1.4rem; border-left: none;
}
.stat strong {
  display: block; font-family: var(--font-display);
  font-size: 1.2rem; margin-bottom: 0.4rem;
}
.stat span { color: var(--ink-soft); font-size: 0.92rem; line-height: 1.55; }

.story-grid { display: grid; gap: 2rem; align-items: center; }
@media (min-width: 900px) {
  .story-grid { grid-template-columns: 1fr 1fr; gap: 3rem; }
}
.story-image { overflow: hidden; min-height: 320px; border-radius: 1.75rem; }
.story-image img { width: 100%; height: 100%; min-height: 320px; object-fit: cover; }

.service-grid { display: grid; gap: 1.1rem; margin-top: 2rem; }
@media (min-width: 700px) { .service-grid { grid-template-columns: repeat(2, 1fr); } }
.service-card {
  background: var(--white); border: 0; overflow: hidden; border-radius: 1.5rem;
}
.service-card:hover { box-shadow: none; transform: translateY(-3px); transition: 0.2s; }
.service-card img { width: 100%; aspect-ratio: 16/10; object-fit: cover; }
.service-card-body { padding: 1.2rem 1.3rem 1.4rem; }
.service-card h3 {
  font-family: var(--font-display); font-size: 1.3rem;
  font-weight: 600; margin-bottom: 0.4rem;
}
.service-card p { color: var(--ink-soft); font-size: 0.92rem; line-height: 1.6; }
.service-card a {
  display: inline-block; margin-top: 0.7rem;
  color: var(--accent); font-weight: 700; font-size: 0.85rem;
}

.feature-list { margin-top: 1.5rem; }
.feature-list li {
  list-style: none; padding: 1rem 1.1rem; margin-bottom: 0.6rem;
  background: var(--white); border-radius: 1rem;
  color: var(--ink-soft); line-height: 1.6;
}
.feature-list strong { color: var(--accent); display: block; margin-bottom: 0.15rem; }

.page-hero {
  padding: clamp(3rem, 7vw, 4.5rem) 0 1.5rem;
  background: transparent; text-align: left;
}
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 4.5vw, 3rem);
  font-weight: 600; line-height: 1.1; max-width: 14ch;
}
.prose { max-width: 680px; }
.prose p { color: var(--ink-soft); font-size: 1.05rem; line-height: 1.8; }
.prose p + p { margin-top: 1.15rem; }

.service-detail {
  display: grid; gap: 1.5rem; padding: 1.5rem 0;
  border-top: 0; align-items: start;
}
@media (min-width: 800px) {
  .service-detail { grid-template-columns: 260px 1fr; gap: 2rem; }
}
.service-detail img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: 1.25rem; }
.service-detail h3 {
  font-family: var(--font-display); font-size: 1.5rem;
  font-weight: 600; margin-bottom: 0.6rem;
}
.service-detail p { color: var(--ink-soft); line-height: 1.7; margin-bottom: 0.7rem; }
.service-detail ul { color: var(--ink-soft); padding-left: 1.1rem; line-height: 1.7; }

.contact-grid { display: grid; gap: 1.5rem; }
@media (min-width: 800px) { .contact-grid { grid-template-columns: 1fr 1fr; } }
.contact-card { background: var(--white); border-radius: 1.5rem; padding: 1.75rem; }
.contact-card h2 {
  font-family: var(--font-display); font-size: 1.5rem; margin-bottom: 0.9rem;
}
.contact-card p { color: var(--ink-soft); line-height: 1.7; margin-bottom: 0.7rem; }
.contact-card a { color: var(--accent); font-weight: 700; }
.form { display: grid; gap: 0.9rem; }
.form label {
  display: grid; gap: 0.35rem; font-size: 0.78rem; font-weight: 700;
  color: var(--ink-soft);
}
.form input, .form textarea, .form select {
  font: inherit; padding: 0.85rem 1rem; border: 1px solid var(--line);
  background: var(--bg); color: var(--ink); border-radius: 0.9rem;
}
.form input:focus, .form textarea:focus, .form select:focus {
  outline: 2px solid rgba(109, 61, 82, 0.25); border-color: var(--accent);
}
.form-note, .notice { font-size: 0.85rem; color: var(--ink-soft); }

.cta-panel {
  background: var(--accent); color: var(--white);
  min-height: 0; display: block; border-radius: 2rem; overflow: hidden;
}
.cta-panel img, .cta-panel .shade { display: none; }
.cta-panel .inner { position: relative; width: auto; margin: 0; padding: 2.5rem 2rem; }
.cta-panel .title { color: var(--white); }
.cta-panel .btn-white { background: var(--white); color: var(--accent); }

.site-footer {
  background: transparent; color: var(--ink-soft); padding: 2.5rem 0 2rem;
  text-align: center;
}
.footer-grid { display: grid; gap: 1.25rem; justify-items: center; }
.footer-brand strong {
  display: block; font-family: var(--font-display);
  font-size: 1.4rem; color: var(--accent); margin-bottom: 0.5rem;
}
.footer-brand strong span { color: var(--ink); }
.footer-col { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; }
.footer-col h4 { display: none; }
.footer-col a { color: var(--ink-soft); }
.footer-col a:hover { color: var(--accent); }
.footer-bottom {
  margin-top: 1.5rem; padding-top: 1rem;
  border-top: 1px solid var(--line);
  font-size: 0.82rem; color: var(--ink-soft);
  display: flex; flex-wrap: wrap; justify-content: center; gap: 0.75rem;
}
.reveal { opacity: 0; transform: translateY(12px); transition: opacity 0.6s, transform 0.6s; }
.reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 799px) {
  .nav { display: none; }
  .menu-toggle { display: inline-flex; }
  .site-header { border-radius: 1.25rem; top: 0.5rem; }
}
