* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #ffffff;
  color: #1f2937;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-size: 16px;
  line-height: 1.65;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: #2563eb;
  text-decoration: none;
}

a:hover,
a:focus {
  color: #1d4ed8;
}

.skip-link {
  position: absolute;
  top: -48px;
  left: 16px;
  z-index: 1000;
  padding: 10px 14px;
  background: #111827;
  color: #ffffff;
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  border-bottom: 1px solid #e5e7eb;
  background: #ffffff;
}

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

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

.branding {
  display: flex;
  align-items: center;
  gap: 16px;
  color: #111827;
}

.branding img {
  width: 45px;
  height: 45px;
  display: block;
}

.site-title {
  font-size: 26px;
  font-weight: 600;
  color: #111827;
}

.site-nav ul,
.mobile-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-nav ul {
  display: flex;
  align-items: center;
  gap: 28px;
}

.site-nav a,
.mobile-nav a {
  color: #111827;
  font-size: 16px;
}

.site-nav a[aria-current="page"],
.mobile-nav a[aria-current="page"] {
  font-weight: 600;
}

.mobile-toggle {
  display: none;
  border: 0;
  background: transparent;
  color: #111827;
  padding: 8px;
  cursor: pointer;
}

.mobile-toggle svg {
  width: 24px;
  height: 24px;
  display: block;
}

.mobile-nav {
  display: none;
  border-top: 1px solid #e5e7eb;
  padding: 12px 0 16px;
}

.mobile-nav.is-open {
  display: block;
}

.mobile-nav li + li {
  margin-top: 12px;
}

.site-main {
  padding: 36px 0 56px;
}

.page-shell {
  max-width: 900px;
  margin: 0 auto;
}

.home-shell {
  max-width: 820px;
}

.page-title,
.hero-title {
  margin: 0 0 24px;
  color: #000000;
  font-size: 36px;
  line-height: 1.4;
  font-weight: 600;
}

.center {
  text-align: center;
}

.hero-image {
  display: block;
  width: 30%;
  margin: 0 auto 20px;
}

.hero-subtitle {
  margin: 0 0 16px;
  text-align: center;
  color: #e5303c;
  font-size: 24px;
  font-weight: 600;
}

.lead {
  margin: 0 0 24px;
  color: #000000;
}

.cta-stack {
  margin: 24px 0 28px;
}

.cta-stack a,
.single-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 13px 18px;
  border-radius: 7px;
  color: #ffffff;
  font-size: 15px;
  font-weight: 600;
  text-align: center;
}

.cta-stack a + a {
  margin-top: 14px;
}

.cta-home {
  background: #d89c46;
}

.cta-about {
  background: #776d2b;
}

.cta-disclaimer {
  background: #4e5707;
}

.cta-icon {
  width: 18px;
  height: 18px;
  fill: currentColor;
  flex: 0 0 auto;
}

.content-block {
  color: #000000;
}

.content-block h2 {
  margin: 28px 0 12px;
  color: #111827;
  font-size: 30px;
  line-height: 1.3;
  font-weight: 600;
}

.content-block h3 {
  margin: 22px 0 12px;
  color: #111827;
  font-size: 24px;
  line-height: 1.3;
  font-weight: 600;
}

.content-block h4 {
  margin: 22px 0 10px;
  color: #ff0000;
  font-size: 20px;
  line-height: 1.2;
  font-weight: 600;
}

.content-block p {
  margin: 0 0 16px;
}

.content-block ul,
.content-block ol {
  margin: 0 0 18px 22px;
  padding: 0;
}

.content-block li + li {
  margin-top: 8px;
}

.content-block hr {
  margin: 22px 0;
  border: 0;
  border-top: 1px solid #e5e7eb;
}

.slider {
  margin: 24px 0 28px;
}

.slider-frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  background: #f8fafc;
}

.slider-track {
  display: flex;
  height: 100%;
  transition: transform 0.6s ease-in-out;
  will-change: transform;
}

.slide {
  min-width: 100%;
  height: 100%;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 12px;
}

.slider-arrow {
  width: 40px;
  height: 40px;
  border: 1px solid #d1d5db;
  border-radius: 999px;
  background: #ffffff;
  color: #111827;
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

.slider-arrow:hover,
.slider-arrow:focus {
  background: #f3f4f6;
  border-color: #9ca3af;
}

.slider-dots {
  display: flex;
  align-items: center;
  gap: 8px;
}

.slider-dots button {
  width: 10px;
  height: 10px;
  border: 0;
  border-radius: 999px;
  background: #d1d5db;
  cursor: pointer;
}

.slider-dots button.is-active {
  background: #111827;
}

.site-footer {
  padding: 24px 0;
  border-top: 1px solid #e5e7eb;
}

.site-footer p {
  margin: 0;
  color: #111827;
  font-weight: 600;
}

@media (max-width: 921px) {
  .site-nav {
    display: none;
  }

  .mobile-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
}

@media (min-width: 922px) {
  .mobile-nav {
    display: none !important;
  }
}

@media (max-width: 767px) {
  .site-main {
    padding-top: 28px;
  }

  .page-title,
  .hero-title {
    font-size: 24px;
    text-align: center;
  }

  .hero-image {
    width: 40%;
  }

  .slider-frame {
    aspect-ratio: 1 / 1;
  }

  .hero-subtitle {
    font-size: 20px;
  }

  .content-block h2 {
    font-size: 26px;
  }

  .content-block h3 {
    font-size: 22px;
  }
}
