/* Modal styles for video presentation */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0,0,0,0.7);
  align-items: center;
  justify-content: center;
}
.modal[style*="display: flex"] {
  display: flex !important;
}
:root {
  --accent: #a64808;
  --text: #1d1d1f;
  --muted: #5f6368;
  --bg: #ffffff;
  --card: #f7f7f8;
  --border: #e6e6e8;
}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, "Helvetica Neue", Arial, "Noto Sans", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

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

header {
  padding: 28px 0 8px;
}

.brand {
  display: flex;
  align-items: baseline;
  gap: 12px;
}

.brand h1 {
  margin: 0;
  font-weight: 800;
  letter-spacing: 0.3px;
  font-size: clamp(28px, 4vw, 42px);
}

.brand .badge {
  color: var(--bg);
  background: var(--accent);
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.lead {
  margin: 12px 0 22px;
  color: var(--muted);
  font-size: clamp(16px, 2.4vw, 18px);
}

b {
  font-size: large;
}

.section-title {
  margin: 26px 0 10px;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.4px;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 10px 0 24px;
}

.pill {
  border: 1px solid var(--border);
  background: var(--card);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 14px;
  color: var(--text);
}

.pill.emph {
  border-color: var(--accent);
  color: var(--accent);
}

.divider {
  height: 1px;
  background: linear-gradient(to right, var(--border), transparent);
  margin: 18px 0 8px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
}

.card {
  grid-column: span 12;
  border: 1px solid var(--border);
  background: var(--card);
  border-radius: 14px;
  overflow: hidden;
}

@media (min-width: 800px) {
  .card.half {
    grid-column: span 6;
  }
}

.card header {
  padding: 16px 18px 12px;
  border-bottom: 1px solid var(--border);
  background: #fff;
}

.card header h3 {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
}

.card .content {
  padding: 16px 18px 18px;
}

.media-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

@media (min-width: 680px) {
  .media-row {
    grid-template-columns: 1fr 1fr;
  }
}

.media {
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  min-height: 180px;
  max-height: 550px;
  display: block;
  width: 100%;
  object-fit: cover;
  object-position: center;
}

.cta {
  margin-top: 18px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--accent);
  text-decoration: none;
  font-weight: 700;
}

.cta svg {
  width: 18px;
  height: 18px;
}

.cta:hover {
  opacity: 0.85;
}

footer {
  margin-top: 34px;
  padding: 24px 0 8px;
  color: var(--muted);
  font-size: 13px;
  border-top: 1px dashed var(--border);
}