:root {
  --bg: #f6f4ef;
  --panel: #fffdf8;
  --panel-soft: #f1ede4;
  --text: #2c2a27;
  --muted: #68625a;
  --accent: #cf5d34;
  --accent-soft: #f0d4b5;
  --forest: #3f5b4a;
  --line: #d9d1c4;
  --shadow: 0 16px 36px rgba(24, 21, 18, 0.12);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: "Manrope", "Avenir Next", "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 12% 12%, #e8e2d5 0, transparent 34%),
    radial-gradient(circle at 90% 20%, #e9e6dc 0, transparent 28%),
    var(--bg);
  line-height: 1.65;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container {
  width: min(1120px, calc(100% - 2.2rem));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(8px);
  background: color-mix(in srgb, var(--panel) 86%, transparent);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.brand-badge {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--forest), #2b4033);
  color: #fff;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.brand-title { font-weight: 800; font-size: 0.98rem; }
.brand-sub { color: var(--muted); font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; }

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

.nav a {
  padding: 0.5rem 0.8rem;
  border-radius: 999px;
  font-weight: 650;
  font-size: 0.92rem;
}

.nav a:hover,
.nav a.active { background: var(--panel-soft); }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 999px;
  padding: 0.78rem 1.22rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

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

.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 10px 20px rgba(207, 93, 52, 0.25);
}

.btn-ghost {
  border: 1px solid var(--line);
  background: #fff;
}

.hero {
  padding: 3.4rem 0 2rem;
}

.hero-grid {
  display: grid;
  gap: 1.4rem;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: stretch;
}

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

.kicker {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.72rem;
  color: var(--forest);
  font-weight: 700;
}

h1, h2, h3 { font-family: "Fraunces", "Iowan Old Style", serif; line-height: 1.1; margin: 0; }
h1 { font-size: clamp(2rem, 4vw, 3.8rem); margin-top: 0.8rem; }
h2 { font-size: clamp(1.6rem, 2.5vw, 2.7rem); }
h3 { font-size: 1.35rem; }

.lead { color: var(--muted); margin: 1.1rem 0 1.5rem; }

.hero-photo {
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  min-height: 360px;
}

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

.stats {
  display: grid;
  gap: 0.8rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 1.2rem;
}

.stat {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  padding: 0.8rem;
}

.stat strong {
  display: block;
  font-size: 1.3rem;
  font-family: "Fraunces", serif;
}

.section {
  padding: 2.4rem 0;
}

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

.card {
  border: 1px solid var(--line);
  background: var(--panel);
  border-radius: 22px;
  padding: 1.2rem;
}

.card p { color: var(--muted); margin-bottom: 0; }

.band {
  background: linear-gradient(135deg, #2e4437, #405f4c);
  color: #f2f4f2;
  border-radius: 26px;
  padding: 1.6rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.band p { color: #dce5dd; }

.media-grid {
  display: grid;
  gap: 0.8rem;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.media-grid figure {
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--line);
}

.media-grid img { width: 100%; height: 190px; object-fit: cover; }

.cta-box {
  border-radius: 26px;
  border: 1px solid #e4bca4;
  background: linear-gradient(180deg, #fff8f2 0%, #fffdf9 100%);
  padding: 1.6rem;
}

.form {
  display: grid;
  gap: 0.8rem;
}

.form label { font-weight: 700; font-size: 0.92rem; }
.form input,
.form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.72rem 0.8rem;
  font: inherit;
  background: #fff;
}

.form textarea { min-height: 150px; resize: vertical; }

.site-footer {
  margin-top: 2.2rem;
  border-top: 1px solid var(--line);
  background: color-mix(in srgb, #ffffff 82%, #efe8db);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  padding: 1rem 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

@media (max-width: 980px) {
  .hero-grid,
  .grid-3,
  .media-grid { grid-template-columns: 1fr 1fr; }
  .hero-photo { min-height: 280px; }
}

@media (max-width: 680px) {
  .header-inner { flex-direction: column; align-items: flex-start; padding: 0.6rem 0; }
  .nav { justify-content: flex-start; }
  .hero-grid,
  .grid-3,
  .media-grid,
  .stats { grid-template-columns: 1fr; }
  .hero-copy { padding: 1.2rem; border-radius: 22px; }
  .hero-photo { border-radius: 22px; min-height: 220px; }
}
