@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,500;9..144,700&family=Manrope:wght@400;500;600;700&display=swap');

:root {
  --bg: #f5efe2;
  --bg-accent: #e7dcc5;
  --surface: #fffaf1;
  --text: #1f261f;
  --muted: #4a5a4c;
  --brand: #265c3f;
  --brand-strong: #153a27;
  --line: #d5c7aa;
  --highlight: #c6912e;
}

* {
  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 85% 10%, #f0e2c0 0%, transparent 36%),
    radial-gradient(circle at 15% 25%, #d7e8d9 0%, transparent 30%),
    linear-gradient(140deg, var(--bg) 0%, var(--bg-accent) 100%);
  line-height: 1.6;
  min-height: 100vh;
}

.container {
  width: min(1040px, 92vw);
  margin: 0 auto;
}

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

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.85rem 0;
}

.logo {
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--brand-strong);
  text-decoration: none;
  letter-spacing: 0.02em;
}

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

.nav a {
  color: var(--text);
  text-decoration: none;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  font-weight: 600;
}

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

.hero {
  padding: 4.75rem 0 2.5rem;
}

h1,
h2,
h3 {
  font-family: "Fraunces", Georgia, serif;
  line-height: 1.2;
  margin: 0 0 0.75rem;
}

h1 {
  font-size: clamp(2rem, 6vw, 3.4rem);
  max-width: 16ch;
}

.lead {
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  color: var(--muted);
  max-width: 60ch;
}

.grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  margin: 2rem 0 3rem;
}

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.2rem;
  box-shadow: 0 10px 22px rgba(24, 33, 24, 0.08);
}

.page-section {
  padding: 1rem 0 2.5rem;
}

.button-row {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin-top: 1.2rem;
}

.button {
  display: inline-block;
  text-decoration: none;
  font-weight: 700;
  border-radius: 999px;
  padding: 0.75rem 1.15rem;
  transition: transform 120ms ease;
}

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

.button-primary {
  background: var(--brand);
  color: #fff;
}

.button-secondary {
  border: 1px solid var(--brand);
  color: var(--brand-strong);
  background: #fff;
}

.list {
  margin: 0;
  padding-left: 1.15rem;
}

.list li + li {
  margin-top: 0.55rem;
}

.site-footer {
  padding: 2.25rem 0;
  color: var(--muted);
  border-top: 1px solid color-mix(in srgb, var(--line) 70%, transparent);
  margin-top: 1.5rem;
}

.notice {
  border-left: 4px solid var(--highlight);
  padding: 0.8rem 1rem;
  background: #fff6e6;
  border-radius: 8px;
}

form {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.2rem;
  box-shadow: 0 10px 22px rgba(24, 33, 24, 0.08);
}

label {
  display: block;
  font-weight: 700;
  margin: 0.8rem 0 0.35rem;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #b9c4b8;
  border-radius: 10px;
  padding: 0.65rem 0.75rem;
  font: inherit;
  color: var(--text);
  background: #fff;
}

textarea {
  min-height: 140px;
  resize: vertical;
}

.form-actions {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.small {
  font-size: 0.9rem;
  color: var(--muted);
}

@media (max-width: 680px) {
  .header-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.65rem;
  }

  .hero {
    padding-top: 3.2rem;
  }
}
