* {
  box-sizing: border-box;
}

:root {
  --ink: #1e1b18;
  --muted: #6f665d;
  --paper: #fff8ed;
  --cream: #f3e4ce;
  --orange: #f47b20;
  --orange-dark: #c85812;
  --blue: #26364a;
  --white: #ffffff;
  --shadow: 0 20px 50px rgba(30, 27, 24, 0.15);
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

.container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 248, 237, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(30, 27, 24, 0.08);
}

.nav {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.logo {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.logo-main {
  font-weight: 900;
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  text-transform: uppercase;
  letter-spacing: -0.04em;
}

.logo-sub {
  color: var(--muted);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-button,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  border: 2px solid var(--ink);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.nav-button {
  padding: 10px 16px;
  color: var(--ink);
  background: var(--white);
}

.button {
  padding: 14px 22px;
}

.button:hover,
.nav-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(30, 27, 24, 0.18);
}

.primary {
  background: var(--orange);
  color: var(--ink);
}

.secondary {
  background: var(--white);
  color: var(--ink);
}

.hero {
  padding: 88px 0 64px;
  background:
    radial-gradient(circle at top right, rgba(244, 123, 32, 0.28), transparent 35%),
    linear-gradient(180deg, var(--paper), var(--cream));
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 44px;
  align-items: center;
}

.eyebrow {
  color: var(--orange-dark);
  text-transform: uppercase;
  font-size: 0.85rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  margin: 0 0 10px;
}

h1,
h2,
h3 {
  line-height: 1.05;
  margin: 0;
}

h1 {
  font-size: clamp(3.2rem, 10vw, 7.5rem);
  letter-spacing: -0.08em;
  max-width: 760px;
}

h2 {
  font-size: clamp(2rem, 5vw, 4rem);
  letter-spacing: -0.06em;
  max-width: 820px;
}

h3 {
  font-size: 1.45rem;
  letter-spacing: -0.03em;
}

.lead {
  max-width: 660px;
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  color: #3d352f;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0 14px;
}

.fine-print {
  color: var(--muted);
  font-weight: 700;
}

.hero-card {
  background: var(--blue);
  border: 3px solid var(--ink);
  border-radius: 32px;
  box-shadow: var(--shadow);
  transform: rotate(2deg);
  color: var(--white);
  padding: 24px;
}

.mascot-box {
  min-height: 360px;
  border: 2px dashed rgba(255,255,255,0.45);
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 28px;
  text-align: center;
}

.helmet {
  font-size: 5rem;
  margin-bottom: 10px;
}

.mascot-box h2 {
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.mascot-box p {
  color: rgba(255,255,255,0.82);
  font-size: 1.05rem;
}

.trust-strip {
  background: var(--ink);
  color: var(--white);
  padding: 18px 0;
}

.trust-items {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 18px 34px;
  font-weight: 900;
}

.section {
  padding: 78px 0;
}

.cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 34px;
}

.card {
  background: var(--white);
  border: 2px solid var(--ink);
  border-radius: 22px;
  padding: 24px;
  box-shadow: 8px 8px 0 rgba(30, 27, 24, 0.12);
}

.card p {
  color: var(--muted);
}

.split-section {
  background: var(--cream);
}

.split {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 34px;
  align-items: center;
}

.split p {
  font-size: 1.08rem;
  color: #3d352f;
}

.quote-card {
  background: var(--white);
  border: 3px solid var(--ink);
  border-radius: 28px;
  padding: 30px;
  box-shadow: var(--shadow);
}

.big-quote {
  font-size: clamp(2rem, 5vw, 4rem) !important;
  line-height: 1;
  font-weight: 900;
  letter-spacing: -0.06em;
  color: var(--ink) !important;
  margin: 0;
}

.quote-caption {
  color: var(--muted) !important;
  font-weight: 700;
}

.dark {
  background: var(--blue);
  color: var(--white);
}

.dark h2 {
  color: var(--white);
}

.checklist {
  list-style: none;
  padding: 0;
  margin: 32px 0 0;
  display: grid;
  gap: 14px;
  max-width: 760px;
}

.checklist li {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.18);
  padding: 16px 18px;
  border-radius: 16px;
  font-weight: 800;
}

.contact-box {
  background: var(--white);
  border: 3px solid var(--ink);
  border-radius: 34px;
  padding: clamp(28px, 5vw, 54px);
  box-shadow: var(--shadow);
}

.contact-box p {
  max-width: 760px;
  color: #3d352f;
}

.contact-form {
  display: grid;
  gap: 14px;
  margin-top: 28px;
  max-width: 680px;
}

label {
  display: grid;
  gap: 6px;
  font-weight: 900;
}

input,
textarea {
  width: 100%;
  border: 2px solid var(--ink);
  border-radius: 14px;
  padding: 14px 16px;
  font: inherit;
  background: var(--paper);
}

textarea {
  min-height: 130px;
  resize: vertical;
}

.contact-form button {
  cursor: pointer;
  width: fit-content;
}

.form-note {
  font-weight: 800;
  color: var(--orange-dark) !important;
}

.site-footer {
  background: var(--ink);
  color: var(--white);
  padding: 26px 0;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

@media (max-width: 860px) {
  .hero-grid,
  .split {
    grid-template-columns: 1fr;
  }

  .hero-card {
    transform: none;
  }

  .cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .nav {
    align-items: flex-start;
    flex-direction: column;
    padding: 16px 0;
  }
}

@media (max-width: 560px) {
  .cards {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 52px;
  }

  .button,
  .nav-button {
    width: 100%;
  }

  .hero-actions,
  .contact-actions {
    flex-direction: column;
  }
}
