:root {
  color-scheme: light;
  --blue: #2ec4b6;
  --dark: #011627;
  --orange: #ff6b35;
  --cream: #fffaf1;
  --text: #334155;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--text);
  background: var(--cream);
  font-family: Nunito, Arial, sans-serif;
  line-height: 1.6;
}

a { color: #c2410c; }
a:hover { color: var(--orange); }

.site-header {
  background: linear-gradient(135deg, #087b8e, var(--blue));
  padding: 20px;
  box-shadow: 0 2px 14px rgb(1 22 39 / 14%);
}

.header-content,
.page-content,
.site-footer {
  width: min(100% - 32px, 880px);
  margin: 0 auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  color: #fff;
  text-decoration: none;
  font-weight: 800;
}

.brand img { width: min(220px, 58vw); height: auto; }

main { padding: 42px 0 56px; }

.document {
  background: #fff;
  padding: clamp(24px, 5vw, 56px);
  border: 1px solid #fed7aa;
  border-radius: 24px;
  box-shadow: 0 16px 40px rgb(1 22 39 / 10%);
}

.eyebrow {
  margin: 0 0 8px;
  color: #c2410c;
  font-size: .875rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

h1, h2 { color: var(--dark); line-height: 1.18; }
h1 { margin: 0; font-size: clamp(2rem, 7vw, 3.25rem); }
h2 { margin: 36px 0 10px; font-size: clamp(1.25rem, 4vw, 1.7rem); }
h3 { margin: 24px 0 8px; color: var(--dark); font-size: 1.1rem; }
p, li { font-size: 1rem; }
ul { padding-left: 22px; }

.notice {
  margin: 26px 0;
  padding: 16px 18px;
  border-left: 5px solid var(--orange);
  border-radius: 10px;
  color: #7c2d12;
  background: #fff7ed;
  font-weight: 700;
}

.meta { margin: 12px 0 0; color: #64748b; }

.contact-card {
  display: grid;
  gap: 12px;
  margin-top: 24px;
  padding: 22px;
  border-radius: 16px;
  background: #ecfeff;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 20px;
  border-radius: 12px;
  color: #fff;
  background: var(--orange);
  text-decoration: none;
  font-weight: 900;
}
.button:hover { color: #fff; background: #ea580c; }

.site-footer {
  padding: 0 0 32px;
  text-align: center;
  color: #64748b;
}

.site-footer nav { margin-bottom: 12px; }
.site-footer nav a { margin: 0 8px; font-size: .9rem; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}
