@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Playfair+Display:wght@600;700&display=swap');

:root {
  --bg: #f6f2eb;
  --surface: #fffdf9;
  --surface-2: #f1ebe2;
  --text: #26231f;
  --muted: #5f5a54;
  --primary: #d56a2f;
  --primary-strong: #bc5120;
  --accent: #2f2b28;
  --line: #ddd1c1;
  --ring: #2d74b5;
  --radius: 18px;
  --container: 1140px;
  --shadow: 0 12px 28px rgba(45, 36, 29, 0.08);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: Manrope, Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  line-height: 1.6;
  color: var(--text);
  background: radial-gradient(circle at top, #fff8ef 0%, var(--bg) 55%);
}

h1, h2, h3 { line-height: 1.2; margin: 0 0 .7rem; }
h1, .brand {
  font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
  letter-spacing: .01em;
}
h1 { font-size: clamp(2rem, 4vw, 3.3rem); }
h2 { font-size: clamp(1.45rem, 2.6vw, 2rem); }
p { margin: 0 0 1rem; }
a { color: inherit; }

:focus-visible {
  outline: 3px solid var(--ring);
  outline-offset: 2px;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid var(--line);
  background: color-mix(in oklab, var(--surface), white 35%);
  backdrop-filter: blur(10px);
}
.header-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.brand {
  text-decoration: none;
  font-size: 1.4rem;
  font-weight: 700;
}
.brand small {
  display: block;
  margin-top: .05rem;
  font-size: .78rem;
  font-family: Manrope, sans-serif;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--primary-strong);
}
.nav-toggle { display: none; }
.primary-nav ul {
  list-style: none;
  display: flex;
  gap: .45rem;
  margin: 0;
  padding: 0;
}
.primary-nav a {
  text-decoration: none;
  color: var(--muted);
  font-weight: 700;
  padding: .45rem .72rem;
  border-radius: 999px;
}
.primary-nav a:hover,
.primary-nav a[aria-current="page"] {
  color: var(--accent);
  background: var(--surface-2);
}

.btn {
  border: 1px solid transparent;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .45rem;
  padding: .78rem 1.2rem;
  transition: .2s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-strong) 100%);
  color: #fff;
  box-shadow: 0 8px 20px rgba(188, 81, 32, 0.28);
}
.btn-secondary {
  background: var(--surface);
  border-color: var(--line);
  color: var(--accent);
}
.btn-link {
  color: var(--primary-strong);
  font-weight: 800;
  text-underline-offset: 3px;
}

main section { padding: 4rem 0; }
.hero {
  padding-top: 4.5rem;
}
.kicker {
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--primary-strong);
  font-weight: 800;
}
.hero p { max-width: 72ch; color: #3f3934; }
.cta-row { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 1.2rem; }

.hero-media {
  margin-top: 1.5rem;
  border-radius: calc(var(--radius) + 2px);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.hero-media img,
.visual-card img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}
.hero-media img { aspect-ratio: 16 / 9; }

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

.card,
.form-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}
.card { padding: 1.1rem; }
.card p { color: var(--muted); }
.visual-card { overflow: hidden; padding: 0; }
.visual-card img { aspect-ratio: 4 / 3; border-bottom: 1px solid var(--line); }
.visual-card .card-body { padding: 1rem; }

.band {
  background: linear-gradient(180deg, rgba(255, 244, 229, 0.68), rgba(241, 235, 226, 0.65));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.notice { color: var(--muted); font-size: .95rem; }

.form-card { padding: 1.1rem; }
form { display: grid; gap: .85rem; }
label { font-weight: 700; }
input, textarea, select {
  width: 100%;
  min-height: 44px;
  border-radius: 12px;
  border: 1px solid #cfbeaa;
  padding: .62rem .75rem;
  font: inherit;
  color: var(--text);
  background: #fff;
}
textarea { min-height: 124px; resize: vertical; }
.required { color: var(--primary-strong); }

.form-feedback {
  border-radius: 10px;
  padding: .65rem .8rem;
  font-weight: 700;
}
.form-feedback.success { background: #e7f6e7; border: 1px solid #9cc39e; color: #1f5f2d; }
.form-feedback.error { background: #fdeceb; border: 1px solid #e1a6a2; color: #7a2925; }

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.site-footer {
  margin-top: 2rem;
  border-top: 1px solid var(--line);
  background: #26231f;
  color: #ede6db;
}
.footer-inner { padding: 1.6rem 0; display: grid; gap: .8rem; }
.footer-links { display: flex; flex-wrap: wrap; gap: .9rem; }
.footer-links a { color: #f9bc8f; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  clip: rect(0, 0, 0, 0);
  overflow: hidden;
}

@media (max-width: 980px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .nav-toggle {
    display: inline-block;
    border: 1px solid var(--line);
    border-radius: 9px;
    background: var(--surface);
    padding: .5rem .65rem;
    font-weight: 700;
  }
  .primary-nav { display: none; }
  .primary-nav.open {
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    top: 78px;
    background: var(--surface);
    border-bottom: 1px solid var(--line);
    padding: .9rem;
  }
  .primary-nav ul { flex-direction: column; }
  .header-cta { display: none; }
}
