/* ============ BASE ============ */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  color: #111111;
  background: #ffffff;
}

body {
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: #ffffff;
}

/* ============ HEADER / NAV ============ */

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 5vw;
  background: rgba(5, 5, 5, 0.94);
  backdrop-filter: blur(10px);
  color: #ffffff;
}

.logo-wrap {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-mark {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  border: 2px solid #ffffff;
  position: relative;
}

.logo-mark::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 4px;
  bottom: 4px;
  width: 2px;
  background: #ffffff;
  transform: translateX(-50%);
}

.logo-text {
  display: flex;
  flex-direction: column;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.7rem;
}

.logo-top {
  opacity: 0.8;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.nav-links a {
  color: #f4f4f4;
  opacity: 0.85;
}

.nav-links a:hover {
  opacity: 1;
}

.nav-links .nav-cta {
  padding: 0.55rem 1.05rem;
  border-radius: 999px;
  border: 1px solid #f97316;
  background: #f97316;
  color: #111111;
  font-weight: 600;
}

.nav-links .nav-cta:hover {
  background: #fb923c;
  border-color: #fb923c;
}

/* ============ HERO ============ */

.hero {
  padding: 4.5rem 5vw 4rem;
  background: radial-gradient(circle at top left, #f97316 0, #0b0b0b 45%),
    #050505;
  color: #ffffff;
}

.hero-content {
  max-width: 680px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.74rem;
  color: #fbbf24;
  margin-bottom: 0.75rem;
}

.hero h1 {
  font-size: clamp(2.2rem, 4vw, 3rem);
  margin: 0 0 1rem;
}

.hero-subtitle {
  margin: 0 0 1.75rem;
  max-width: 600px;
  color: #e5e5e5;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

/* ============ BUTTONS ============ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.4rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  cursor: pointer;
}

.btn.primary {
  background: #f97316;
  border-color: #f97316;
  color: #111111;
}

.btn.primary:hover {
  background: #fb923c;
  border-color: #fb923c;
}

.btn.ghost {
  background: transparent;
  border-color: #f97316;
  color: #f97316;
}

.btn.ghost:hover {
  background: rgba(249, 115, 22, 0.1);
}

.btn.full-width {
  width: 100%;
}

/* ============ SECTIONS ============ */

.section {
  padding: 3.5rem 5vw;
}

.section-light {
  background: #ffffff;
  color: #111111;
}

.section-dark {
  background: #050505;
  color: #f5f5f5;
}

.section-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.section-header {
  max-width: 620px;
  margin-bottom: 2rem;
}

.section-header h2 {
  font-size: 1.8rem;
  margin: 0.2rem 0 0;
}

.section-body p {
  margin-bottom: 1rem;
}

/* Manifesto columns */

.manifesto-columns {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.75rem;
}

.manifesto-columns h3 {
  margin-top: 0;
  font-size: 1.05rem;
}

/* Belief list */

.belief-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 1.5rem;
}

.belief-list li {
  margin-bottom: 0.7rem;
}

.inline-link a {
  color: #2563eb;
  font-weight: 500;
}

.inline-link a:hover {
  text-decoration: underline;
}

/* Contact */

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: flex-start;
}

.contact-email a {
  color: #2563eb;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  font-size: 0.9rem;
}

.contact-form input,
.contact-form textarea {
  border-radius: 8px;
  border: 1px solid #d4d4d4;
  padding: 0.55rem 0.7rem;
  font-size: 0.9rem;
  font-family: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid #f97316;
  outline-offset: 1px;
  border-color: #f97316;
}

/* ============ FOOTER ============ */

.site-footer {
  margin-top: auto;
  padding: 2.5rem 5vw 2rem;
  background: #050505;
  color: #9ca3af;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: left;
}

.footer-brand {
  color: #e5e7eb;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
  margin-bottom: 0.5rem;
}

.footer-text {
  margin: 0 0 0.4rem;
}

.footer-meta {
  margin: 0;
  font-size: 0.8rem;
  opacity: 0.8;
}

/* ============ RESPONSIVE ============ */

@media (max-width: 900px) {
  .nav-links {
    gap: 1rem;
    font-size: 0.78rem;
  }

  .hero {
    padding-top: 3.3rem;
  }

  .manifesto-columns {
    grid-template-columns: 1fr;
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .site-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }

  .nav-links {
    flex-wrap: wrap;
    row-gap: 0.4rem;
  }

  .hero {
    padding: 3rem 6vw 3.2rem;
  }

  .section {
    padding: 2.8rem 6vw;
  }
}


/* Contact form enhancements */
.contact-form .field-note {
  font-size: 0.8rem;
  color: #6b7280;
}

.contact-form .hp-field-wrapper {
  position: absolute;
  left: -9999px;
  visibility: hidden;
  height: 0;
  overflow: hidden;
}
