:root {
  --ink: #1d1815;
  --muted: #70665f;
  --cream: #fbf7ef;
  --paper: #fffdf9;
  --sand: #efe3d2;
  --terracotta: #8f4327;
  --terracotta-dark: #6f321e;
  --gold: #b8873b;
  --line: #e5d8ca;
  --white: #ffffff;
  --shadow: 0 22px 60px rgba(77, 46, 31, 0.12);
  --radius: 22px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
}

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
}

.skip-link:focus {
  left: 16px;
  top: 16px;
  z-index: 999;
  padding: 10px 14px;
  background: var(--ink);
  color: var(--white);
  border-radius: 8px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 253, 249, 0.94);
  border-bottom: 1px solid rgba(229, 216, 202, 0.85);
  backdrop-filter: blur(12px);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
  font-weight: 750;
  letter-spacing: -0.02em;
}

.brand-mark {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--terracotta-dark);
  color: var(--white);
  font-size: 0.82rem;
  letter-spacing: 0.04em;
}

.brand-text {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.12rem;
}

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

.site-nav a {
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 650;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--terracotta);
}

.site-nav .nav-cta {
  padding: 10px 16px;
  border: 1px solid var(--terracotta-dark);
  border-radius: 999px;
  color: var(--terracotta-dark);
}

.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
  border-radius: 10px;
  padding: 9px 12px;
  font: inherit;
  font-weight: 700;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 88px 0 92px;
  background:
    radial-gradient(circle at 88% 16%, rgba(184, 135, 59, 0.18), transparent 28%),
    linear-gradient(145deg, #fffaf1 0%, #fbf4e8 52%, #f4e3d3 100%);
}

.hero::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  border: 1px solid rgba(143, 67, 39, 0.12);
  border-radius: 50%;
  right: -130px;
  top: -155px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.45fr 0.75fr;
  gap: 64px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--terracotta);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.13;
  letter-spacing: -0.025em;
}

h1 {
  max-width: 780px;
  margin-bottom: 24px;
  font-size: clamp(2.7rem, 6vw, 5.15rem);
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 3.25rem);
}

h3 {
  margin-bottom: 12px;
  font-size: 1.45rem;
}

.hero-lead {
  max-width: 690px;
  margin-bottom: 32px;
  color: #52463f;
  font-size: 1.18rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 20px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 750;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--terracotta-dark);
  color: var(--white);
  box-shadow: 0 10px 28px rgba(111, 50, 30, 0.2);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: #5f2817;
}

.btn-secondary {
  border-color: #bea894;
  background: rgba(255, 255, 255, 0.56);
}

.btn-light {
  background: var(--white);
  color: var(--terracotta-dark);
}

.microcopy {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.93rem;
}

.hero-card {
  position: relative;
  padding: 30px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.status-pill {
  display: inline-flex;
  margin-bottom: 26px;
  padding: 7px 11px;
  border-radius: 999px;
  background: #f1e4d5;
  color: var(--terracotta-dark);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.card-kicker,
.panel-label,
.banner-label {
  color: var(--terracotta);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-card h2 {
  font-size: 2rem;
}

.hero-card > p:not(.card-kicker) {
  color: var(--muted);
}

.schedule-list {
  margin: 26px 0;
}

.schedule-list div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.schedule-list dt {
  color: var(--muted);
}

.schedule-list dd {
  margin: 0;
  font-weight: 750;
}

.text-link {
  color: var(--terracotta-dark);
  font-weight: 800;
  text-underline-offset: 4px;
}

.section {
  padding: 88px 0;
}

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

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

.split-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 86px;
  align-items: start;
}

.prose {
  color: #564d47;
  font-size: 1.06rem;
}

.prose p:last-child {
  margin-bottom: 0;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 40px;
}

.section-heading > p:last-child {
  color: var(--muted);
  font-size: 1.06rem;
}

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

.feature-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
}

.feature-number {
  display: inline-block;
  margin-bottom: 34px;
  color: var(--gold);
  font-weight: 850;
  letter-spacing: 0.08em;
}

.feature-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.class-banner {
  margin-top: 22px;
  padding: 30px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-radius: 18px;
  background: var(--terracotta-dark);
  color: var(--white);
}

.class-banner h3 {
  margin-bottom: 0;
  font-size: 1.8rem;
}

.class-banner .banner-label {
  margin-bottom: 7px;
  color: #e6b77a;
}

.upcoming-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: center;
}

.upcoming-copy > p:not(.eyebrow) {
  max-width: 700px;
  color: #5f554f;
  font-size: 1.05rem;
}

.note {
  font-size: 0.94rem !important;
}

.upcoming-panel {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 16px 46px rgba(77, 46, 31, 0.08);
}

.check-list {
  margin: 20px 0 28px;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding: 10px 0 10px 28px;
  border-bottom: 1px solid #eee4d9;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 19px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
}

.full-width {
  width: 100%;
}

.contact-section {
  background: var(--white);
}

.contact-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 38px 0;
}

.contact-inner h2 {
  margin-bottom: 10px;
}

.contact-inner p:last-child {
  max-width: 680px;
  margin-bottom: 0;
  color: var(--muted);
}

.site-footer {
  padding: 44px 0;
  background: #211914;
  color: #f8eee6;
}

.footer-grid {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
}

.footer-brand {
  margin-bottom: 14px;
}

.footer-brand .brand-mark {
  background: #f2d9bd;
  color: #4a2418;
}

.site-footer p {
  margin-bottom: 5px;
  color: #cdbfb5;
  font-size: 0.92rem;
}

.footer-meta {
  text-align: right;
}

.floating-whatsapp {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 90;
  padding: 12px 16px;
  border-radius: 999px;
  background: #1f6f4a;
  color: var(--white);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 800;
  box-shadow: 0 12px 30px rgba(22, 67, 45, 0.25);
}

@media (max-width: 860px) {
  .hero {
    padding-top: 64px;
  }

  .hero-grid,
  .split-grid,
  .upcoming-grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .contact-inner,
  .class-banner,
  .footer-grid {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-meta {
    text-align: left;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(100% - 28px, 1120px);
  }

  .menu-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    left: 14px;
    right: 14px;
    top: 68px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 10px 12px;
  }

  .site-nav .nav-cta {
    margin-top: 4px;
    text-align: center;
  }

  .section {
    padding: 68px 0;
  }

  h1 {
    font-size: clamp(2.5rem, 13vw, 4rem);
  }

  .hero-card,
  .feature-card,
  .upcoming-panel {
    padding: 24px;
  }

  .contact-inner {
    padding: 10px 0;
  }

  .floating-whatsapp {
    right: 14px;
    bottom: 14px;
  }
}

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

  *,
  *::before,
  *::after {
    transition: none !important;
  }
}
