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

:root {
  --background: #f8f6f1;
  --foreground: #1a2914;
  --card: #ffffff;
  --primary: #d97742;
  --primary-foreground: #ffffff;
  --secondary: #3d5a2c;
  --secondary-foreground: #ffffff;
  --muted: #eadfce;
  --section-muted: #efe2cf;
  --muted-foreground: #6d5b49;
  --accent: #8b7355;
  --border: #d8c7ad;
  --ring: #d97742;
  --font-sans: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: "Bebas Neue", var(--font-sans);
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--background);
  color: var(--foreground);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.5;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

h1,
h2,
h3,
h4,
p,
figure,
blockquote {
  margin: 0;
}

h1,
h2,
h3 {
  color: var(--foreground);
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 1.1;
  text-transform: uppercase;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.min-page {
  min-height: 100vh;
  background: var(--background);
}

.container {
  width: min(100% - 2rem, 1280px);
  margin-inline: auto;
}

.max-w-2xl {
  max-width: 672px;
}

.max-w-3xl {
  max-width: 768px;
}

.max-w-4xl {
  max-width: 896px;
}

.max-w-5xl {
  max-width: 1024px;
}

.text-center {
  text-align: center;
}

.reveal-item {
  opacity: 0;
  transform: translate3d(0, 1.75rem, 0);
  transition:
    opacity 640ms ease,
    transform 720ms cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

.reveal-item.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--border);
  background: color-mix(in srgb, var(--background) 95%, transparent);
  backdrop-filter: blur(8px);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 64px;
  padding-inline: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--secondary);
  font-family: var(--font-display);
  font-size: 1.25rem;
  line-height: 1;
}

.brand-icon {
  font-family: var(--font-sans);
  font-size: 1.5rem;
}

.desktop-nav {
  display: none;
  align-items: center;
  gap: 0.75rem;
}

.desktop-nav a:not(.btn),
.mobile-nav a:not(.btn) {
  color: color-mix(in srgb, var(--foreground) 84%, transparent);
  font-size: 0.875rem;
  transition: color 160ms ease;
}

.desktop-nav a {
  white-space: nowrap;
}

.desktop-nav a:not(.btn):hover,
.mobile-nav a:not(.btn):hover {
  color: var(--primary);
}

.mobile-menu-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border: 0;
  background: transparent;
  color: var(--foreground);
}

.menu-icon,
.menu-icon::before,
.menu-icon::after {
  display: block;
  width: 1.5rem;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  content: "";
}

.menu-icon {
  position: relative;
}

.menu-icon::before,
.menu-icon::after {
  position: absolute;
  left: 0;
}

.menu-icon::before {
  top: -0.45rem;
}

.menu-icon::after {
  top: 0.45rem;
}

.mobile-menu-button[aria-expanded="true"] .menu-icon {
  background: transparent;
}

.mobile-menu-button[aria-expanded="true"] .menu-icon::before {
  top: 0;
  transform: rotate(45deg);
}

.mobile-menu-button[aria-expanded="true"] .menu-icon::after {
  top: 0;
  transform: rotate(-45deg);
}

.mobile-nav {
  display: none;
  border-top: 1px solid var(--border);
  padding-block: 1rem;
}

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

.mobile-nav-inner {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: 1px solid transparent;
  border-radius: 0.5rem;
  font-weight: 600;
  line-height: 1.5;
  min-height: 2.5rem;
  padding: 0.5rem 1rem;
  transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease;
}

.icon-arrow {
  position: relative;
  display: inline-block;
  width: 1rem;
  height: 1rem;
  flex: 0 0 auto;
}

.icon-arrow::before {
  position: absolute;
  top: 50%;
  left: 0.125rem;
  width: 0.7rem;
  height: 0.7rem;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  content: "";
  transform: translateY(-50%) rotate(45deg);
}

.icon-arrow::after {
  position: absolute;
  top: 50%;
  right: 0.125rem;
  width: 0.75rem;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  content: "";
  transform: translateY(-50%);
}

.btn-sm {
  min-height: 2.25rem;
  padding: 0.4rem 0.65rem;
  font-size: 0.8125rem;
}

.btn-lg {
  min-height: 3rem;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
}

.btn-primary {
  border-color: var(--primary);
  background: var(--primary);
  color: var(--primary-foreground);
}

.btn-primary:hover {
  background: color-mix(in srgb, var(--primary) 90%, #000);
}

.btn-outline {
  border-color: var(--border);
  background: transparent;
  color: var(--foreground);
}

.btn-outline:hover {
  background: var(--muted);
}

.btn-block {
  width: 100%;
}

.section {
  padding-block: 4rem;
}

.section-band {
  background: var(--background);
}

.section-band-warm {
  background: color-mix(in srgb, var(--section-muted) 70%, var(--background));
}

.section-band-light {
  background: var(--background);
}

.section-band .hero-section,
.section-band .muted-section,
.section-band .countdown-section {
  background: transparent;
}

.section-band .hero-glow {
  display: none;
}

.muted-section {
  background: color-mix(in srgb, var(--section-muted) 62%, var(--background));
}

.image-break {
  padding-block: 0;
  background: var(--background);
}

.image-break-frame {
  margin: 0;
  overflow: hidden;
  width: 100%;
  height: clamp(18rem, 38vw, 35rem);
  background: var(--muted);
}

.image-break-frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section-title {
  margin: 0 auto 3rem;
  text-align: center;
  font-size: 1.875rem;
  line-height: 1.2;
}

.compact-title {
  margin-bottom: 1.5rem;
}

.hero-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, color-mix(in srgb, var(--secondary) 5%, transparent), var(--background), color-mix(in srgb, var(--primary) 5%, transparent));
}

.hero-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-glow-left {
  background: radial-gradient(circle at 30% 20%, rgba(61, 90, 44, 0.05), transparent 50%);
}

.hero-glow-right {
  background: radial-gradient(circle at 70% 60%, rgba(217, 119, 66, 0.05), transparent 50%);
}

.hero-container {
  position: relative;
  padding-block: 4rem;
}

.hero-content {
  max-width: 896px;
  margin-inline: auto;
  text-align: center;
}

.badge {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  font-size: 0.875rem;
  line-height: 1.25rem;
  padding: 0.25rem 1rem;
}

.badge-outline {
  border: 1px solid color-mix(in srgb, var(--primary) 30%, transparent);
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.hero-content h1 {
  margin-bottom: 1.5rem;
  font-size: 2.25rem;
}

.hero-lead {
  color: var(--muted-foreground);
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 2rem;
}

.hero-copy {
  max-width: 768px;
  margin: 0 auto 3rem;
  color: color-mix(in srgb, var(--foreground) 80%, transparent);
  font-size: 1rem;
  line-height: 1.625;
}

.hero-facts {
  display: grid;
  gap: 1rem;
  max-width: 672px;
  margin: 0 auto 3rem;
}

.info-card {
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  background: var(--card);
  padding: 1rem;
}

.info-card span {
  display: block;
  color: var(--muted-foreground);
  font-size: 0.875rem;
  margin-bottom: 0.25rem;
}

.info-card strong {
  display: block;
  font-weight: 600;
}

.inline-date-time {
  white-space: nowrap;
}

.inline-date-time span {
  color: inherit;
  display: inline;
  margin-bottom: 0;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
}

.card {
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  background: var(--card);
}

.audience-grid,
.format-grid,
.tariffs-grid,
.testimonials-grid {
  display: grid;
  gap: 1.5rem;
}

.feature-card {
  padding: 1.5rem;
  transition: border-color 160ms ease;
}

.feature-card:hover {
  border-color: color-mix(in srgb, var(--primary) 50%, var(--border));
}

.feature-icon {
  font-size: 2.25rem;
  margin-bottom: 1rem;
}

.feature-card h3 {
  font-size: 1.25rem;
  line-height: 1.35;
  margin-bottom: 0.75rem;
}

.feature-card p {
  color: var(--muted-foreground);
  line-height: 1.625;
}

.results-grid {
  display: grid;
  gap: 1rem;
  margin-bottom: 3rem;
}

.check-row {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.check-row span {
  color: var(--primary);
  flex: 0 0 auto;
  font-weight: 700;
  margin-top: 0.125rem;
}

.check-row p {
  color: color-mix(in srgb, var(--foreground) 90%, transparent);
}

.check-row.compact {
  gap: 0.5rem;
}

.check-row.compact p {
  font-size: 0.875rem;
}

.result-callout {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  border-left: 4px solid var(--accent);
  border-radius: 0 0.5rem 0.5rem 0;
  background: color-mix(in srgb, var(--accent) 12%, var(--background));
  padding: 1.5rem;
}

.spark-icon {
  color: var(--accent);
  flex: 0 0 auto;
  font-size: 1.5rem;
  line-height: 1.75rem;
  margin-top: 0.25rem;
}

.result-callout h3 {
  font-family: var(--font-sans);
  font-size: 1.125rem;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.75rem;
  margin-bottom: 0.5rem;
  text-transform: none;
}

.result-callout p {
  color: color-mix(in srgb, var(--foreground) 80%, transparent);
  font-size: 1.125rem;
  line-height: 1.625;
}

.accordion-list {
  display: grid;
  gap: 1rem;
}

.accordion-item {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  background: var(--card);
  transition: height 300ms cubic-bezier(0.22, 1, 0.36, 1);
}

.accordion-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
  padding: 1rem 1.5rem;
  transition: background-color 160ms ease;
}

.accordion-item summary:hover {
  background: color-mix(in srgb, var(--muted) 30%, transparent);
}

.accordion-item summary::-webkit-details-marker {
  display: none;
}

.accordion-item summary::after {
  content: "";
  box-sizing: border-box;
  width: 1.5rem;
  height: 1.5rem;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  color: var(--muted-foreground);
  flex: 0 0 auto;
  transform: rotate(45deg) scale(0.45);
  transform-origin: center;
  transition: transform 240ms ease;
}

.accordion-item.is-expanded summary::after,
.accordion-item[open]:not([data-animating="true"]) summary::after {
  transform: rotate(225deg) scale(0.45);
}

.accordion-item summary strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 1.3;
  text-transform: uppercase;
}

.accordion-item summary small {
  display: block;
  color: var(--muted-foreground);
  font-size: 0.875rem;
  font-weight: 400;
  margin-top: 0.25rem;
}

.accordion-content {
  padding: 0.5rem 1.5rem 1rem;
}

.accordion-content p {
  color: var(--foreground);
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.accordion-content ul {
  display: grid;
  gap: 0.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.accordion-content li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  color: color-mix(in srgb, var(--foreground) 80%, transparent);
  font-size: 0.875rem;
}

.accordion-content li::before {
  content: "•";
  color: var(--primary);
  margin-top: 0.05rem;
}

.instructor-card {
  padding: 2rem;
}

.instructor-list {
  display: grid;
  gap: 1.5rem;
}

.instructor-avatar {
  display: block;
  width: 8rem;
  height: 8rem;
  border: 4px solid var(--card);
  border-radius: 999px;
  background: linear-gradient(135deg, var(--secondary), var(--accent));
  box-shadow: 0 16px 36px color-mix(in srgb, var(--secondary) 18%, transparent);
  flex: 0 0 auto;
  margin-bottom: 2rem;
  object-fit: cover;
  object-position: center;
}

.instructor-copy h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.instructor-copy h4 {
  color: var(--foreground);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.025em;
  margin: 0 0 0.75rem;
  text-transform: uppercase;
}

.accent-text {
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 1rem;
}

.instructor-copy > p:not(.accent-text) {
  color: color-mix(in srgb, var(--foreground) 80%, transparent);
  line-height: 1.625;
  margin-bottom: 1.5rem;
}

.achievement-grid {
  display: grid;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.instructor-details {
  display: grid;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}

.check-list {
  display: grid;
  gap: 0.75rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  color: color-mix(in srgb, var(--foreground) 82%, transparent);
  font-size: 0.9375rem;
  line-height: 1.45;
}

.check-list span {
  color: var(--primary);
  flex: 0 0 auto;
  font-weight: 700;
}

blockquote {
  border-left: 4px solid var(--primary);
  color: color-mix(in srgb, var(--foreground) 70%, transparent);
  font-style: italic;
  padding-left: 1rem;
}

.countdown-section {
  background: linear-gradient(135deg, color-mix(in srgb, var(--primary) 10%, var(--background)), var(--background), color-mix(in srgb, var(--accent) 14%, var(--background)));
}

.countdown-title {
  font-size: 1.875rem;
  line-height: 1.2;
  margin-bottom: 2rem;
}

.countdown-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  max-width: 672px;
  margin: 0 auto 2rem;
}

.count-card {
  border: 2px solid color-mix(in srgb, var(--primary) 20%, transparent);
  border-radius: 0.5rem;
  background: var(--card);
  padding: 1rem;
}

.count-card strong {
  display: block;
  color: var(--primary);
  font-family: var(--font-display);
  font-size: 1.875rem;
  font-weight: 400;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.count-card span {
  color: var(--muted-foreground);
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.025em;
  text-transform: uppercase;
}

.muted-text {
  color: var(--muted-foreground);
  margin-bottom: 1.5rem;
}

.spots-card {
  border: 2px solid color-mix(in srgb, var(--primary) 20%, transparent);
  padding: 2rem;
  text-align: center;
}

.spots-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.spots-card h2 {
  font-size: 1.875rem;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.spots-card h2 span {
  color: var(--primary);
}

.spots-card p {
  color: var(--muted-foreground);
  font-size: 1.125rem;
  line-height: 1.625;
  margin-bottom: 1.5rem;
}

.spots-row,
.spots-icons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  flex-wrap: wrap;
}

.spots-icons span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  background: color-mix(in srgb, var(--muted) 50%, transparent);
  font-size: 1.125rem;
}

.spots-row strong {
  color: var(--muted-foreground);
  font-size: 0.875rem;
  font-weight: 400;
  margin-left: 0.5rem;
}

.payment-toggle {
  display: flex;
  justify-content: center;
  margin-bottom: 3rem;
}

.payment-toggle {
  width: fit-content;
  margin-inline: auto;
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  background: var(--card);
  padding: 0.25rem;
}

.payment-toggle button {
  border: 0;
  border-radius: 0.375rem;
  background: transparent;
  color: var(--muted-foreground);
  font-weight: 500;
  padding: 0.5rem 1.5rem;
}

.payment-toggle button.is-active {
  background: var(--primary);
  color: var(--primary-foreground);
}

.tariff-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
}

.tariff-card-featured {
  border: 2px solid var(--primary);
  box-shadow: 0 10px 15px -3px rgba(26, 41, 20, 0.12);
}

.popular-badge {
  position: absolute;
  top: -0.75rem;
  left: 50%;
  width: max-content;
  max-width: calc(100% - 2rem);
  border-radius: 999px;
  background: var(--primary);
  color: var(--primary-foreground);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.125rem 0.625rem;
  transform: translateX(-50%);
}

.tariff-heading {
  text-align: center;
  margin-bottom: 1.5rem;
}

.tariff-heading > span {
  color: var(--muted-foreground);
  display: block;
  font-size: 0.875rem;
  letter-spacing: 0.025em;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}

.tariff-heading h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.tariff-heading strong {
  display: block;
  color: var(--primary);
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 400;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.tariff-heading p {
  color: var(--muted-foreground);
  font-size: 0.875rem;
}

.tariff-features {
  display: grid;
  gap: 0.75rem;
  flex: 1;
  list-style: none;
  margin: 0 0 2rem;
  padding: 0;
}

.tariff-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  color: color-mix(in srgb, var(--foreground) 80%, transparent);
  font-size: 0.875rem;
}

.tariff-features span {
  color: var(--primary);
  flex: 0 0 auto;
  font-weight: 700;
  margin-top: 0.125rem;
}

.testimonial-card {
  padding: 1.5rem;
}

.testimonial-person {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
}

.testimonial-avatar {
  display: block;
  width: 4rem;
  height: 4rem;
  border: 2px solid var(--card);
  border-radius: 999px;
  background: linear-gradient(135deg, color-mix(in srgb, var(--primary) 20%, transparent), color-mix(in srgb, var(--secondary) 20%, transparent));
  flex: 0 0 auto;
  object-fit: cover;
  object-position: center;
}

.testimonial-person strong {
  display: block;
  font-weight: 600;
}

.testimonial-person span {
  color: var(--muted-foreground);
  display: block;
  font-size: 0.875rem;
}

.testimonial-card p {
  color: color-mix(in srgb, var(--foreground) 80%, transparent);
  font-style: italic;
  line-height: 1.625;
}

.form-heading {
  margin-bottom: 3rem;
  text-align: center;
}

.form-heading h2 {
  font-size: 1.875rem;
  margin-bottom: 1rem;
}

.form-heading p {
  color: var(--muted-foreground);
}

.form-card {
  position: relative;
  padding: 1.5rem;
}

.application-form {
  display: grid;
  gap: 1.5rem;
}

.form-field label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  background: var(--card);
  color: var(--foreground);
  padding: 0.75rem;
}

.form-field select {
  min-height: 3rem;
  appearance: none;
  background-color: var(--card);
  background-image:
    linear-gradient(45deg, transparent 50%, var(--muted-foreground) 50%),
    linear-gradient(135deg, var(--muted-foreground) 50%, transparent 50%);
  background-position:
    calc(100% - 1.05rem) 50%,
    calc(100% - 0.75rem) 50%;
  background-repeat: no-repeat;
  background-size: 0.35rem 0.35rem, 0.35rem 0.35rem;
  padding-right: 2.5rem;
}

.form-field textarea {
  min-height: 100px;
  resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--ring);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--ring) 18%, transparent);
  outline: none;
}

.form-success {
  border: 1px solid color-mix(in srgb, var(--accent) 28%, var(--border));
  border-radius: 0.5rem;
  background: color-mix(in srgb, var(--accent) 12%, var(--card));
  color: var(--foreground);
  font-weight: 600;
  padding: 1rem 1.25rem;
  text-align: center;
}

.site-footer {
  background: var(--secondary);
  color: var(--secondary-foreground);
  padding-block: 3rem 4rem;
}

.footer-grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.footer-brand span {
  font-size: 1.875rem;
}

.footer-brand strong {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
}

.site-footer h3 {
  color: var(--secondary-foreground);
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0;
  margin-bottom: 1rem;
  text-transform: none;
}

.site-footer p,
.site-footer a {
  color: color-mix(in srgb, var(--secondary-foreground) 80%, transparent);
  font-size: 0.875rem;
}

.site-footer p {
  line-height: 1.625;
  margin-bottom: 0.5rem;
}

.site-footer a:not(.footer-brand) {
  display: block;
  margin-bottom: 0.5rem;
  transition: color 160ms ease;
}

.footer-nav-link {
  width: fit-content;
}

.site-footer a:hover {
  color: var(--primary);
}

.footer-bottom {
  border-top: 1px solid color-mix(in srgb, var(--secondary-foreground) 20%, transparent);
  color: color-mix(in srgb, var(--secondary-foreground) 60%, transparent);
  font-size: 0.875rem;
  padding-top: 2rem;
  text-align: center;
}

.site-footer .footer-bottom a:not(.footer-brand) {
  display: inline;
  margin-bottom: 0;
}

.footer-bottom {
  white-space: nowrap;
}

.mobile-sticky-cta {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 40;
  display: block;
  border-top: 1px solid var(--border);
  background: color-mix(in srgb, var(--background) 95%, transparent);
  backdrop-filter: blur(8px);
  padding: 1rem;
}

@media (min-width: 640px) {
  .hero-actions {
    flex-direction: row;
  }

  .hero-facts {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 768px) {
  .section {
    padding-block: 6rem;
  }

  .header-container {
    min-height: 80px;
    padding-inline: 1.5rem;
  }

  .brand {
    font-size: 1.5rem;
  }

  .hero-container {
    padding-block: 6rem;
  }

  .hero-content h1 {
    font-size: 3.75rem;
  }

  .hero-lead {
    font-size: 1.5rem;
  }

  .hero-copy {
    font-size: 1.125rem;
  }

  .section-title,
  .form-heading h2 {
    font-size: 3rem;
  }

  .compact-title,
  .countdown-title,
  .spots-card h2 {
    font-size: 3rem;
  }

  .results-grid,
  .audience-grid,
  .testimonials-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .instructor-card {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    padding: 3rem;
  }

  .instructor-avatar {
    margin-bottom: 0;
  }

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

  .instructor-details {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .countdown-grid {
    gap: 1.5rem;
  }

  .count-card {
    padding: 1.5rem;
  }

  .count-card strong {
    font-size: 3rem;
  }

  .spots-card {
    padding: 3rem;
  }

  .tariff-card {
    padding: 2rem;
  }

  .form-card {
    padding: 2rem;
  }

  .footer-grid {
    grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
  }
}

@media (min-width: 1200px) {
  .desktop-nav {
    display: flex;
  }

  .mobile-menu-button,
  .mobile-nav {
    display: none !important;
  }

  .hero-content h1 {
    font-size: 4.5rem;
  }

  .audience-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .format-grid,
  .tariffs-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .mobile-sticky-cta {
    display: none;
  }
}

@media (max-width: 1023px) {
  .site-footer {
    padding-bottom: 8.5rem;
  }
}

@media (max-width: 480px) {
  .container {
    width: min(100% - 1.25rem, 1280px);
  }

  .image-break-frame {
    height: 16rem;
  }

  .hero-content h1 {
    font-size: 2.1rem;
  }

  .countdown-grid {
    gap: 0.5rem;
  }

  .count-card {
    padding: 0.75rem 0.5rem;
  }

  .count-card strong {
    font-size: 1.85rem;
  }

  .count-card span {
    font-size: 0.65rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal-item {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
