:root {
  color-scheme: light;
  --bg: #f7f4ef;
  --ink: #1b1b1b;
  --muted: #5f5f5f;
  --brand: #b4472a;
  --brand-dark: #8f361f;
  --panel: #fffaf3;
  --border: #e3d7c8;
  --shadow: 0 20px 50px rgba(27, 27, 27, 0.12);
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1120px, 90%);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  background: rgba(247, 244, 239, 0.95);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(8px);
  z-index: 10;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--brand);
  color: white;
  font-weight: 700;
  letter-spacing: 1px;
}

.brand-title {
  font-weight: 700;
  font-size: 1.05rem;
}

.brand-subtitle {
  font-size: 0.85rem;
  color: var(--muted);
}

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 0.95rem;
}

.nav a {
  color: var(--muted);
  font-weight: 600;
}

.nav a:hover {
  color: var(--ink);
}

.hero {
  padding: 80px 0 60px;
  background: linear-gradient(120deg, #fffaf3 0%, #f6e7da 100%);
  border-bottom: 1px solid var(--border);
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 36px;
  align-items: center;
}

.hero-copy h1 {
  font-size: clamp(2.2rem, 2vw + 1.8rem, 3.5rem);
  margin: 8px 0 16px;
  line-height: 1.1;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  color: var(--brand-dark);
  margin: 0;
}

.lead {
  font-size: 1.1rem;
  color: var(--muted);
  margin: 0 0 24px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  background: var(--brand);
  color: white;
  font-weight: 600;
  border: 1px solid var(--brand);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 10px 20px rgba(180, 71, 42, 0.25);
}

.button:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(180, 71, 42, 0.3);
}

.button-outline {
  background: transparent;
  color: var(--brand);
  box-shadow: none;
}

.button-light {
  background: white;
  color: var(--brand);
  border: 1px solid var(--border);
  box-shadow: none;
}

.button-dark {
  background: var(--ink);
  border-color: var(--ink);
  box-shadow: none;
}

.hero-stats {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}

.stat-value {
  font-size: 1.4rem;
  font-weight: 700;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--muted);
}

.hero-card {
  background: white;
  border-radius: 24px;
  padding: 26px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.hero-image {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 18px;
  margin-bottom: 18px;
  border: 1px solid var(--border);
}

.card-header {
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 12px;
}

.checklist {
  list-style: none;
  margin: 0;
  padding: 0;
}

.checklist li {
  padding-left: 26px;
  position: relative;
  margin-bottom: 10px;
  color: var(--muted);
}

.checklist li::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--brand);
  position: absolute;
  left: 0;
  top: 8px;
}

.section {
  padding: 70px 0;
}

.section.alt {
  background: white;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.section-heading {
  max-width: 640px;
  margin-bottom: 40px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 24px;
}

.card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 8px 24px rgba(27, 27, 27, 0.08);
}

.section.alt .card {
  background: var(--panel);
}

.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
  align-items: center;
}

.bullets {
  margin: 20px 0 0;
  padding-left: 18px;
  color: var(--muted);
}

.panel {
  background: var(--panel);
  padding: 26px;
  border-radius: 18px;
  border: 1px solid var(--border);
}

.table {
  display: grid;
  gap: 12px;
}

.table-row {
  display: grid;
  grid-template-columns: minmax(160px, 220px) 1fr;
  gap: 18px;
  padding: 16px 18px;
  background: white;
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(27, 27, 27, 0.06);
}

.table-header {
  background: var(--panel);
  font-weight: 700;
}

.schedule {
  display: grid;
  gap: 14px;
}

.schedule div {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 12px 16px;
  border-radius: 14px;
  background: white;
  border: 1px solid var(--border);
}

.cta {
  background: var(--brand);
  color: white;
}

.cta-inner {
  display: grid;
  gap: 24px;
}

.cta-form {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.cta-form input {
  flex: 1 1 220px;
  padding: 12px 16px;
  border-radius: 999px;
  border: none;
  font-size: 1rem;
}

.cta .button-dark {
  background: white;
  color: var(--brand);
  border-color: white;
}

.fine-print {
  font-size: 0.85rem;
  margin: 0;
  opacity: 0.85;
}

.site-footer {
  padding: 40px 0 60px;
  background: #f0e6da;
}

.footer-inner {
  display: grid;
  gap: 16px;
  align-items: center;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.9rem;
  color: var(--muted);
}

.footer-note {
  font-size: 0.85rem;
  color: var(--muted);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 760px) {
  .nav {
    display: none;
  }

  .hero {
    padding: 60px 0 40px;
  }

  .header-inner {
    justify-content: center;
  }

  .table-row {
    grid-template-columns: 1fr;
  }
}
