:root {
  --red: #F5433A;
  --red-dark: #D8362E;
  --red-tint: #FEECEB;
  --ink: #1A1A1A;
  --muted: #5C5C5C;
  --line: #E6E6E6;
  --bg: #FFFFFF;
  --bg-soft: #FAFAFA;
  --white: #FFFFFF;
  --radius: 10px;
  --shadow: 0 6px 24px rgba(0,0,0,0.08);
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--red); text-decoration: none; }
a:hover { text-decoration: underline; }

.container {
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Header ---------- */
.site-header {
  border-bottom: 1px solid var(--line);
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 10;
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

/* Logo: replace .logo-mark img src with your logo file.
   The red block wordmark below is a fallback until you drop it in. */
.brand { display: flex; align-items: center; gap: 12px; }
.logo-mark { display: inline-flex; align-items: center; }
.logo-mark img { display: block; height: 44px; width: 44px; }
.brand-name { font-weight: 700; font-size: 18px; color: var(--ink); letter-spacing: .5px; }

.nav a {
  color: var(--muted);
  font-weight: 500;
  font-size: 15px;
  margin-left: 24px;
}
.nav a:hover { color: var(--red); text-decoration: none; }

/* ---------- Hero ---------- */
.hero {
  padding: 96px 0 72px;
  text-align: center;
  background:
    radial-gradient(1200px 400px at 50% -50%, var(--red-tint), transparent 70%);
}
.hero h1 {
  font-size: 52px;
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 20px;
}
.hero h1 .accent { color: var(--red); }
.hero p {
  font-size: 20px;
  color: var(--muted);
  max-width: 620px;
  margin: 0 auto 32px;
}
.btn {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  font-weight: 600;
  font-size: 16px;
  padding: 14px 28px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: background .15s ease, transform .05s ease;
}
.btn:hover { background: var(--red-dark); text-decoration: none; }
.btn:active { transform: translateY(1px); }

/* ---------- Contact section ---------- */
.contact {
  padding: 72px 0 96px;
  background: var(--bg-soft);
  border-top: 1px solid var(--line);
}
.contact .container { max-width: 620px; }
.section-title { text-align: center; margin-bottom: 8px; font-size: 32px; font-weight: 800; }
.section-sub { text-align: center; color: var(--muted); margin-bottom: 36px; }

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow);
  padding: 36px;
}

.field { margin-bottom: 20px; }
.field label {
  display: block;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 8px;
  color: var(--ink);
}
.field input,
.field textarea {
  width: 100%;
  padding: 12px 14px;
  font-family: inherit;
  font-size: 15px;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  transition: border-color .15s ease, box-shadow .15s ease;
}
.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 3px var(--red-tint);
}
.field textarea { resize: vertical; min-height: 120px; }
.form-note { font-size: 13px; color: var(--muted); margin-top: 6px; text-align: center; }
.btn-full { width: 100%; margin-top: 8px; }

/* ---------- Confirmation page ---------- */
.confirm {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 0;
}
.confirm .container { max-width: 560px; }
.check {
  width: 72px; height: 72px;
  margin: 0 auto 24px;
  border-radius: 50%;
  background: var(--red-tint);
  color: var(--red);
  display: flex; align-items: center; justify-content: center;
  font-size: 36px;
}
.confirm h1 { font-size: 34px; font-weight: 800; margin-bottom: 14px; }
.confirm p { font-size: 18px; color: var(--muted); margin-bottom: 28px; }

/* ---------- Legal pages ---------- */
.legal { padding: 64px 0 88px; }
.legal .container { max-width: 760px; }
.legal h1 { font-size: 38px; font-weight: 800; margin-bottom: 8px; }
.legal .updated { color: var(--muted); font-size: 14px; margin-bottom: 36px; }
.legal h2 { font-size: 22px; font-weight: 700; margin: 32px 0 12px; }
.legal p { color: #333; margin-bottom: 14px; }
.legal a { font-weight: 600; }

/* ---------- Footer ---------- */
.site-footer {
  border-top: 1px solid var(--line);
  background: var(--white);
  padding: 32px 0;
}
.site-footer .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  color: var(--muted);
  font-size: 14px;
}
.site-footer .foot-links a { color: var(--muted); margin-left: 20px; }
.site-footer .foot-links a:hover { color: var(--red); text-decoration: none; }

/* ---------- Responsive ---------- */
@media (max-width: 640px) {
  .hero { padding: 64px 0 48px; }
  .hero h1 { font-size: 38px; }
  .hero p { font-size: 18px; }
  .card { padding: 24px; }
  .nav a { margin-left: 16px; font-size: 14px; }
  .brand-name { display: none; }
  .site-footer .container { flex-direction: column; text-align: center; }
  .site-footer .foot-links a { margin: 0 10px; }
}
