/* BrandWall static content pages stylesheet (no Tailwind) */

:root {
  --ink: #191D24;
  --muted: #6A6F7A;
  --line: #E5E1DA;
  --link: #A8480A;
}

* { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: #FDFCFA;
  color: var(--ink);
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 17px;
  line-height: 1.7;
}

.container {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 20px;
}

h1 {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.2;
  margin: 2rem 0 1rem;
}

h2 {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.3;
  margin: 2.5rem 0 1rem;
}

h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin: 2rem 0 0.75rem;
}

p, ul, ol {
  margin: 0 0 1.1rem;
}

ul, ol { padding-left: 1.4rem; }

li { margin-bottom: 0.5rem; }

a {
  color: var(--link);
  text-decoration: none;
}

a:hover {
  color: #DD5A0E;
  text-decoration: underline;
}

.gradient-text {
  background: linear-gradient(90deg, #F58C14, #DD5A0E);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.btn {
  display: inline-block;
  background: linear-gradient(90deg, #F58C14, #DD5A0E);
  color: #FFFFFF;
  text-decoration: none;
  padding: 14px 28px;
  border-radius: 12px;
  font-weight: 600;
}

.btn:hover { text-decoration: none; opacity: 0.94; }

.cta {
  background: #F7F3ED;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 28px;
  margin: 3rem 0;
  text-align: center;
}

.cta h2 { margin-top: 0; }

.site-header {
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.site-header .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.site-header .logo {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--ink);
  text-decoration: none;
}

.site-header nav a {
  font-size: 0.95rem;
  color: var(--muted);
  margin-left: 20px;
}

.site-header nav a:first-child { margin-left: 0; }

.site-footer {
  margin-top: 5rem;
  padding: 32px 0;
  border-top: 1px solid var(--line);
  font-size: 0.9rem;
  color: var(--muted);
}

table {
  width: 100%;
  border-collapse: collapse;
  margin: 0 0 1.5rem;
}

th, td {
  padding: 10px;
  border-bottom: 1px solid var(--line);
}

th { text-align: left; }

@media (max-width: 640px) {
  h1 { font-size: 1.9rem; }
}
