:root {
  --bg: #fff7f4;
  --surface: #ffffff;
  --surface-soft: #fff0ec;
  --text: #241f21;
  --muted: #6f6265;
  --border: rgba(36,31,33,.12);
  --accent: #d95550;
  --accent-strong: #bd3f3a;
  --accent-soft: rgba(217,85,80,.14);
  --shadow: 0 24px 70px rgba(81,38,35,.14);
  --radius-xl: 32px;
  --radius-lg: 22px;
  --max: 1080px;
  --focus-ring: 0 0 0 4px rgba(217,85,80,.24);
  color-scheme: light;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at top left, var(--accent-soft), transparent 30rem),
    linear-gradient(180deg, var(--bg), var(--surface));
  color: var(--text);
  line-height: 1.65;
}
a { color: var(--accent-strong); text-decoration-thickness: .08em; text-underline-offset: .18em; }
a:hover { text-decoration-thickness: .14em; }
button, input, textarea { font: inherit; }
button:focus-visible, input:focus-visible, textarea:focus-visible, a:focus-visible { outline: none; box-shadow: var(--focus-ring); border-radius: 10px; }
.skip-link {
  position: absolute;
  left: 1rem;
  top: -5rem;
  background: var(--surface);
  color: var(--text);
  padding: .7rem 1rem;
  border-radius: 999px;
  z-index: 99;
  border: 1px solid var(--border);
}
.skip-link:focus { top: 1rem; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px);
  background: color-mix(in srgb, var(--bg) 82%, transparent);
  border-bottom: 1px solid var(--border);
}
.nav {
  max-width: var(--max);
  margin: 0 auto;
  padding: .9rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  color: var(--text);
  text-decoration: none;
  font-weight: 850;
  letter-spacing: -.03em;
}
.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  display: grid;
  place-items: center;
  color: #fff;
  box-shadow: 0 12px 32px var(--accent-soft);
}
.brand-mark svg { width: 25px; height: 25px; }
.nav-links { display: flex; align-items: center; gap: .35rem; flex-wrap: wrap; justify-content: flex-end; }
.nav-links a {
  color: var(--text);
  text-decoration: none;
  border: 1px solid transparent;
  background: transparent;
  padding: .55rem .8rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: .94rem;
}
.nav-links a:hover { background: var(--surface-soft); }
main { max-width: var(--max); margin: 0 auto; padding: 3rem 1rem 1rem; }
.hero-card {
  background: color-mix(in srgb, var(--surface) 92%, transparent);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: clamp(1.2rem, 4vw, 3rem);
  box-shadow: var(--shadow);
}
.eyebrow {
  display: inline-flex;
  gap: .45rem;
  align-items: center;
  width: fit-content;
  padding: .38rem .72rem;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-strong);
  font-weight: 850;
  font-size: .9rem;
  margin-bottom: 1rem;
}
h1, h2, h3 { line-height: 1.12; letter-spacing: -.045em; }
h1 { font-size: clamp(2.1rem, 5vw, 4.2rem); margin: 0 0 1rem; }
h2 { font-size: clamp(1.5rem, 3vw, 2.25rem); margin: 2.1rem 0 .8rem; }
h3 { font-size: 1.18rem; margin: 1.4rem 0 .4rem; }
.lead { font-size: clamp(1.04rem, 1.5vw, 1.22rem); color: var(--muted); max-width: 72ch; margin: 0; }
.prose { max-width: 78ch; margin-top: 1.5rem; }
.prose p, .prose li { color: var(--muted); }
.prose strong { color: var(--text); }
.notice {
  margin: 1.3rem 0;
  padding: 1rem 1.1rem;
  border-radius: 18px;
  background: var(--surface-soft);
  border: 1px solid var(--border);
  color: var(--muted);
}
.info-list { display: grid; gap: .85rem; padding-left: 1.2rem; }
.meta-box {
  display: grid;
  gap: .5rem;
  margin: 1.4rem 0;
  padding: 1rem 1.1rem;
  border-radius: 18px;
  border: 1px solid var(--border);
  background: var(--surface);
}
.contact-card {
  margin-top: 1.5rem;
  display: grid;
  gap: .8rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 1.2rem;
}
.contact-card label { display: grid; gap: .35rem; font-weight: 800; color: var(--text); }
.contact-card input, .contact-card textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: #fff;
  color: var(--text);
  padding: .8rem .9rem;
}
.contact-card textarea { min-height: 150px; resize: vertical; }
.primary-button, a.primary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  width: fit-content;
  border: 0;
  border-radius: 999px;
  min-height: 46px;
  padding: .75rem 1.1rem;
  font-weight: 900;
  color: #fff;
  background: var(--accent);
  cursor: pointer;
}
.footer { border-top: 1px solid var(--border); background: color-mix(in srgb, var(--surface) 78%, transparent); margin-top: 2rem; }
.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 1.5rem 1rem;
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: .95rem;
}
.footer a { color: var(--muted); }
.error-actions { display: flex; gap: .8rem; flex-wrap: wrap; margin-top: 1.5rem; }
@media (max-width: 760px) {
  .nav { align-items: flex-start; }
  .nav-links { justify-content: flex-start; }
  .nav-links a { padding: .45rem .6rem; font-size: .88rem; }
  main { padding-top: 1.4rem; }
  .hero-card { border-radius: 24px; }
}
