@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Inter:wght@400;500;600&display=swap');

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

:root {
  --bg: #1a1a1a;
  --text: #f0ece0;
  --red: #e63a1e;
  --red-dark: #c0301a;
  --muted: #9a9080;
  --border: #2e2e2e;
  --card-bg: #222222;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg);
  color: var(--text);
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--red);
  text-decoration: none;
  transition: color 0.2s;
}

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

img {
  max-width: 100%;
}

/* ── NAVBAR ──────────────────────────────────────────────── */

nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #111111;
  border-bottom: 2px solid var(--red);
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 60px;
}

.nav-brand {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem;
  letter-spacing: 0.04em;
  color: var(--text);
  white-space: nowrap;
  text-decoration: none;
}

.nav-brand span {
  color: var(--red);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
  flex-wrap: wrap;
}

.nav-links a {
  color: var(--text);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--red);
}

.nav-email {
  font-size: 0.82rem;
  color: var(--muted);
  font-style: italic;
  white-space: nowrap;
}

.nav-email a {
  color: var(--muted);
  text-decoration: underline;
  text-decoration-color: transparent;
  transition: color 0.2s, text-decoration-color 0.2s;
}

.nav-email a:hover {
  color: var(--text);
  text-decoration-color: var(--muted);
}

/* ── LANGUAGE SWITCHER ───────────────────────────────────── */

.lang-switch {
  background: transparent;
  border: 2px solid var(--red);
  color: var(--red);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.1rem;
  letter-spacing: 0.12em;
  padding: 5px 14px 3px;
  cursor: pointer;
  transition: background 0.18s, color 0.18s;
  white-space: nowrap;
  flex-shrink: 0;
}

.lang-switch:hover {
  background: var(--red);
  color: #fff;
}

/* Hamburger */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  transition: transform 0.25s, opacity 0.25s;
}

/* ── LAYOUT ──────────────────────────────────────────────── */

main {
  width: 100%;
}

.container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
}

section {
  padding: 80px 0;
}

section + section {
  border-top: 1px solid var(--border);
}

/* ── HERO ────────────────────────────────────────────────── */

.hero {
  background: var(--bg);
  padding: 100px 0 90px;
  border-top: none;
}

.hero-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
}

.hero-eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 20px;
  background: rgba(230, 58, 30, 0.1);
  padding: 4px 12px;
  border-left: 3px solid var(--red);
}

.hero h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3.2rem, 9vw, 6.5rem);
  line-height: 0.95;
  letter-spacing: 0.02em;
  color: var(--text);
  margin-bottom: 28px;
}

.hero h1 em {
  color: var(--red);
  font-style: normal;
}

.hero-sub {
  font-size: clamp(1.1rem, 2.5vw, 1.35rem);
  color: var(--muted);
  max-width: 620px;
  line-height: 1.55;
  margin-bottom: 44px;
}

.hero-sub strong {
  color: var(--text);
}

.btn {
  display: inline-block;
  padding: 15px 38px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.25rem;
  letter-spacing: 0.1em;
  background: var(--red);
  color: #ffffff;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
  clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
}

.btn:hover {
  background: var(--red-dark);
  color: #fff;
  text-decoration: none;
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--red);
  color: var(--red);
  clip-path: none;
}

.btn-outline:hover {
  background: var(--red);
  color: #fff;
}

/* ── UN QUOTE ────────────────────────────────────────────── */

.un-quote {
  background: #0f0f0f;
  padding: 80px 0;
}

.un-quote-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 4px 1fr;
  gap: 0 32px;
  align-items: start;
}

.quote-bar {
  background: var(--red);
  height: 100%;
  min-height: 100px;
}

.quote-content blockquote {
  font-size: clamp(1.1rem, 2.2vw, 1.35rem);
  line-height: 1.65;
  color: var(--text);
  font-style: italic;
  margin-bottom: 18px;
}

.quote-content blockquote::before {
  content: '\201C';
  font-family: Georgia, serif;
  font-size: 4rem;
  line-height: 0;
  vertical-align: -1.4rem;
  color: var(--red);
  margin-right: 4px;
}

.quote-attribution {
  font-size: 0.85rem;
  color: var(--muted);
  letter-spacing: 0.04em;
}

.quote-attribution strong {
  display: block;
  color: var(--text);
  font-size: 0.92rem;
  margin-bottom: 2px;
}

/* ── TESTIMONIALS ────────────────────────────────────────── */

.testimonials {
  padding: 80px 0;
}

.section-label {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2rem, 5vw, 3rem);
  letter-spacing: 0.04em;
  color: var(--text);
  margin-bottom: 8px;
}

.section-sub {
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 48px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.testimonial-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-top: 3px solid var(--red);
  padding: 28px 26px;
  position: relative;
}

.testimonial-card p {
  font-size: 0.97rem;
  line-height: 1.7;
  color: #ccc8be;
  margin-bottom: 20px;
}

.testimonial-card footer {
  font-size: 0.8rem;
  color: var(--muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-top: 1px solid var(--border);
  padding-top: 14px;
}

.testimonial-card footer strong {
  color: var(--red);
}

/* ── CTA ─────────────────────────────────────────────────── */

.cta-section {
  background: var(--red);
  padding: 90px 0;
  border-top: none;
}

.cta-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}

.cta-section h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  line-height: 1;
  color: #ffffff;
  margin-bottom: 16px;
  letter-spacing: 0.02em;
}

.cta-section p {
  color: rgba(255,255,255,0.82);
  font-size: 1.1rem;
  margin-bottom: 36px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.btn-white {
  background: #ffffff;
  color: var(--red);
}

.btn-white:hover {
  background: #f0ece0;
  color: var(--red-dark);
}

/* ── ABOUT PAGE ──────────────────────────────────────────── */

.page-hero {
  padding: 72px 0 60px;
  background: #111111;
  border-bottom: 2px solid var(--red);
}

.page-hero h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.8rem, 7vw, 5rem);
  letter-spacing: 0.03em;
  line-height: 1;
  margin-bottom: 14px;
}

.page-hero p {
  color: var(--muted);
  font-size: 1.1rem;
  max-width: 600px;
}

.prose {
  max-width: 720px;
}

.prose h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  letter-spacing: 0.04em;
  color: var(--text);
  margin-top: 56px;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--border);
}

.prose h2:first-child {
  margin-top: 0;
}

.prose p {
  color: #ccc8be;
  margin-bottom: 18px;
}

.prose ul {
  margin: 0 0 18px 0;
  padding-left: 22px;
  color: #ccc8be;
}

.prose li {
  margin-bottom: 8px;
  padding-left: 6px;
}

.prose li::marker {
  color: var(--red);
}

.prose a {
  text-decoration: underline;
  text-decoration-color: var(--red);
  text-underline-offset: 3px;
}

.callout {
  background: rgba(230, 58, 30, 0.08);
  border-left: 4px solid var(--red);
  padding: 18px 22px;
  margin: 28px 0;
  color: var(--text);
  font-size: 0.97rem;
  line-height: 1.65;
}

.callout strong {
  color: var(--red);
}

.resource-list {
  list-style: none;
  padding: 0;
  margin: 0 0 18px 0;
}

.resource-list li {
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
}

.resource-list li:last-child {
  border-bottom: none;
}

.resource-list a {
  font-weight: 500;
  color: var(--text);
}

.resource-list a:hover {
  color: var(--red);
}

.resource-list .resource-desc {
  display: block;
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 2px;
}

/* ── SUBMIT PAGE ─────────────────────────────────────────── */

.form-section {
  padding: 80px 0;
}

.form-intro {
  max-width: 620px;
  margin-bottom: 52px;
}

.form-intro p {
  color: var(--muted);
  margin-top: 14px;
}

.form-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  padding: 44px 40px;
  max-width: 680px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.form-group.full {
  grid-column: 1 / -1;
}

label {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

label .optional {
  font-weight: 400;
  color: #5a5650;
  text-transform: none;
  letter-spacing: 0;
  font-size: 0.78rem;
  margin-left: 6px;
}

input[type="text"],
input[type="email"],
select,
textarea {
  background: #111111;
  border: 1px solid #3a3a3a;
  color: var(--text);
  padding: 12px 14px;
  font-family: inherit;
  font-size: 0.97rem;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
  appearance: none;
}

input[type="text"]:focus,
input[type="email"]:focus,
select:focus,
textarea:focus {
  border-color: var(--red);
}

select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%239a9080' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}

select option {
  background: #1a1a1a;
}

textarea {
  resize: vertical;
  min-height: 140px;
  line-height: 1.6;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 6px;
}

.checkbox-group input[type="checkbox"] {
  appearance: none;
  width: 20px;
  height: 20px;
  min-width: 20px;
  border: 2px solid #3a3a3a;
  background: #111;
  cursor: pointer;
  position: relative;
  top: 1px;
  transition: border-color 0.2s, background 0.2s;
}

.checkbox-group input[type="checkbox"]:checked {
  background: var(--red);
  border-color: var(--red);
}

.checkbox-group input[type="checkbox"]:checked::after {
  content: '';
  position: absolute;
  left: 3px;
  top: 1px;
  width: 10px;
  height: 7px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg) translateY(2px);
}

.checkbox-group label {
  font-size: 0.9rem;
  color: #ccc8be;
  letter-spacing: 0;
  text-transform: none;
  font-weight: 400;
  cursor: pointer;
  line-height: 1.5;
}

.form-notice {
  font-size: 0.82rem;
  color: var(--muted);
  margin-top: 20px;
  padding: 14px 16px;
  border: 1px solid var(--border);
  line-height: 1.6;
}

.form-notice strong {
  color: var(--text);
}

.form-submit {
  margin-top: 28px;
}

.form-success {
  display: none;
  background: rgba(30, 180, 90, 0.08);
  border: 1px solid rgba(30, 180, 90, 0.3);
  color: #6dd9a0;
  padding: 22px 24px;
  margin-top: 24px;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ── FOOTER ──────────────────────────────────────────────── */

footer {
  background: #0d0d0d;
  border-top: 1px solid var(--border);
  padding: 40px 24px;
  text-align: center;
}

.footer-inner {
  max-width: 900px;
  margin: 0 auto;
}

.footer-brand {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem;
  color: var(--text);
  letter-spacing: 0.06em;
  margin-bottom: 10px;
}

.footer-brand span {
  color: var(--red);
}

footer p {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 4px;
}

footer a {
  color: var(--muted);
  text-decoration: underline;
  text-decoration-color: transparent;
}

footer a:hover {
  color: var(--text);
}

/* ── RESPONSIVE ──────────────────────────────────────────── */

@media (max-width: 700px) {
  nav {
    flex-wrap: wrap;
    padding: 0 16px;
    position: relative;
  }

  .nav-toggle {
    display: flex;
    margin-left: auto;
  }

  .nav-links {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.3s ease;
    padding-bottom: 0;
  }

  .nav-links.open {
    max-height: 300px;
    padding-bottom: 16px;
  }

  .nav-links li {
    width: 100%;
    border-top: 1px solid var(--border);
  }

  .nav-links a {
    display: block;
    padding: 12px 0;
  }

  .nav-email {
    width: 100%;
    padding: 10px 0 14px;
    border-top: 1px solid var(--border);
    display: none;
  }

  .nav-links.open + .nav-email {
    display: block;
  }

  section {
    padding: 56px 0;
  }

  .hero {
    padding: 64px 0 56px;
  }

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

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

  .form-group.full {
    grid-column: 1;
  }

  .form-card {
    padding: 28px 20px;
  }

  .un-quote-inner {
    gap: 0 20px;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 3rem;
  }

  .cta-section h2 {
    font-size: 2.4rem;
  }
}
