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

:root { color: #17211f; background: #f5f2e9; font-family: "Manrope", system-ui, sans-serif; font-synthesis: none; }
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; min-width: 320px; line-height: 1.65; }
a { color: #155f58; text-underline-offset: 3px; }
a:hover { color: #0b3e39; }
button, input, select, textarea { font: inherit; }
.shell { width: min(1120px, calc(100% - 40px)); margin: 0 auto; }
.site-header { border-bottom: 1px solid #cdd5cf; background: rgba(245, 242, 233, .95); }
.header-inner { min-height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 12px; color: inherit; text-decoration: none; font-weight: 700; }
.brand-mark { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 10px; background: #155f58; color: white; font-size: 14px; }
.header-actions { display: flex; align-items: center; gap: 18px; }
.header-actions a { color: inherit; font-size: 14px; text-decoration: none; }
.language-switch { display: flex; padding: 3px; border: 1px solid #b9c5bd; border-radius: 99px; }
.language-switch button { border: 0; border-radius: 99px; padding: 6px 10px; color: #52605b; background: transparent; cursor: pointer; }
.language-switch button[aria-pressed="true"] { color: white; background: #155f58; }
.hero { padding: 80px 0 62px; border-bottom: 1px solid #cdd5cf; background: radial-gradient(circle at 85% 20%, #d8e8d3 0, transparent 30%); }
.eyebrow { margin: 0 0 16px; color: #97602b; font-size: 12px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
h1 { max-width: 850px; margin: 0; font-size: clamp(42px, 7vw, 82px); line-height: 1.02; letter-spacing: -.055em; }
.hero-copy { max-width: 720px; margin: 28px 0 0; color: #50605b; font-size: clamp(17px, 2vw, 21px); }
.updated { margin: 28px 0 0; font-size: 13px; font-weight: 600; }
.content-layout { display: grid; grid-template-columns: 230px minmax(0, 1fr); gap: 72px; padding: 64px 0 100px; }
.toc { position: sticky; top: 24px; align-self: start; padding: 22px; border: 1px solid #cdd5cf; border-radius: 16px; background: #faf8f2; }
.toc strong { display: block; margin-bottom: 10px; font-size: 13px; }
.toc a { display: block; padding: 7px 0; color: #52605b; font-size: 13px; text-decoration: none; }
.article { max-width: 760px; }
.article section + section { margin-top: 52px; padding-top: 8px; }
h2 { margin: 0 0 16px; font-size: clamp(26px, 4vw, 38px); line-height: 1.2; letter-spacing: -.035em; }
h3 { margin: 26px 0 8px; font-size: 18px; }
p { margin: 0 0 16px; }
ul { margin: 12px 0 16px; padding-left: 24px; }
li + li { margin-top: 7px; }
.notice { margin: 34px 0; padding: 24px; border-left: 4px solid #c47938; border-radius: 0 12px 12px 0; background: #fff4e6; }
.contact-card { padding: 28px; border-radius: 18px; background: #173a35; color: white; }
.contact-card a { color: #d5f0d0; }
.contact-card p:last-child { margin-bottom: 0; }
.form-card { margin-top: 34px; padding: clamp(22px, 5vw, 38px); border: 1px solid #cdd5cf; border-radius: 20px; background: #fffdf8; }
.form-intro { color: #52605b; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field--full { grid-column: 1 / -1; }
.field label { font-size: 13px; font-weight: 700; }
.field input, .field select, .field textarea { width: 100%; border: 1px solid #aebbb3; border-radius: 10px; padding: 11px 13px; color: #17211f; background: white; }
.field textarea { min-height: 150px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { outline: 3px solid rgba(21,95,88,.18); border-color: #155f58; }
.honeypot { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }
.submit-row { display: flex; align-items: center; gap: 18px; margin-top: 22px; }
.submit-row button { border: 0; border-radius: 99px; padding: 12px 20px; color: white; background: #155f58; font-weight: 700; cursor: pointer; }
.submit-row button:disabled { opacity: .55; cursor: wait; }
.form-status { margin: 0; font-size: 14px; }
.form-status[data-kind="success"] { color: #166534; }
.form-status[data-kind="error"] { color: #a1261d; }
.footer { padding: 34px 0; color: #596660; border-top: 1px solid #cdd5cf; font-size: 13px; }
.footer-inner { display: flex; justify-content: space-between; gap: 24px; }
[data-language-panel][hidden] { display: none; }
@media (max-width: 760px) {
  .shell { width: min(100% - 28px, 680px); }
  .header-inner { min-height: 68px; }
  .brand span:last-child { display: none; }
  .header-actions { gap: 10px; }
  .header-actions > a { display: none; }
  .hero { padding: 56px 0 44px; }
  .content-layout { grid-template-columns: 1fr; gap: 36px; padding: 42px 0 72px; }
  .toc { position: static; }
  .form-grid { grid-template-columns: 1fr; }
  .field--full { grid-column: auto; }
  .submit-row, .footer-inner { align-items: flex-start; flex-direction: column; }
}
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
