:root {
  color-scheme: dark;
  --navy: #141416;
  --ink: #f7f2ed;
  --muted: rgba(247, 242, 237, 0.68);
  --paper: #08080a;
  --cream: #111114;
  --coral: #cf2f49;
  --coral-dark: #a91f35;
  --teal: #e9ba6c;
  --line: rgba(255, 255, 255, 0.12);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.38);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 8% 12%, rgba(207, 47, 73, 0.18), transparent 28rem),
    radial-gradient(circle at 88% 8%, rgba(233, 186, 108, 0.08), transparent 26rem),
    var(--paper);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  color-scheme: dark;
}

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

img {
  display: block;
  max-width: 100%;
  forced-color-adjust: none;
}

button,
input,
select,
textarea {
  color-scheme: dark;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 5vw;
  color: #fff;
  background: rgba(8, 8, 10, 0.82);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(18px);
  forced-color-adjust: none;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 3.7rem;
  height: 3.1rem;
  flex: 0 0 auto;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 12px;
  padding: 0.28rem;
  forced-color-adjust: none;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.2;
}

.brand strong {
  font-size: 0.95rem;
}

.brand small {
  margin-top: 0.15rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
  font-weight: 600;
}

.site-nav a:hover {
  color: #fff;
}

.header-cta {
  padding: 0.72rem 1rem;
  color: #fff;
  background: var(--coral);
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 800;
  box-shadow: 0 10px 28px rgba(255, 116, 72, 0.28);
}

.floating-enroll {
  position: fixed;
  right: 1.4rem;
  bottom: 1.4rem;
  z-index: 30;
  display: inline-flex;
  min-height: 3.35rem;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 1.35rem;
  color: #fff;
  background: linear-gradient(135deg, #d9314c, #a91f35);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  box-shadow: 0 20px 50px rgba(207, 47, 73, 0.38);
  font-weight: 900;
  forced-color-adjust: none;
}

.hero {
  position: relative;
  min-height: 94vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #fff;
  padding: 8.5rem 5vw 3.5rem;
  forced-color-adjust: none;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 44%;
  filter: saturate(1.04);
}

.hero-overlay {
  background:
    radial-gradient(circle at 14% 36%, rgba(207, 47, 73, 0.32), transparent 25rem),
    linear-gradient(90deg, rgba(8, 8, 10, 0.98) 0%, rgba(8, 8, 10, 0.86) 42%, rgba(8, 8, 10, 0.56) 72%, rgba(8, 8, 10, 0.72) 100%),
    linear-gradient(0deg, rgba(8, 8, 10, 0.88), rgba(8, 8, 10, 0.12) 44%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(760px, 100%);
}

.partner-logos {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  max-width: 100%;
  margin-bottom: 0.5rem;
  padding: 0.5rem;
  background: white;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 16px;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.18);
  forced-color-adjust: none;
}

.partner-logos img {
  width: auto;
  height: 3.15rem;
  max-width: 10.5rem;
  object-fit: contain;
}

.partner-logos img:first-child {
  height: 4.8rem;
  max-width: 7rem;
  border-radius: 6px;
}

.partner-logos span {
  width: 1px;
  height: 2.3rem;
  background: rgba(8, 45, 95, 0.18);
}

.eyebrow,
.section-kicker {
  margin: 0 0 0.85rem;
  color: #ff6b83;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

h1,
h2 {
  font-family: "Playfair Display", Georgia, serif;
  line-height: 0.98;
  letter-spacing: 0;
}

h1 {
  max-width: 720px;
  margin-bottom: 1.1rem;
  font-size: 4.4rem;
}

h2 {
  margin-bottom: 1rem;
  font-size: 2.75rem;
}

h3 {
  margin-bottom: 0.55rem;
  font-size: 1.15rem;
  line-height: 1.25;
}

.hero-copy {
  max-width: 650px;
  color: rgba(247, 242, 237, 0.78);
  font-size: 1.1rem;
}

.hero-actions,
.admission-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.6rem;
}

.btn {
  display: inline-flex;
  min-height: 3.25rem;
  align-items: center;
  justify-content: center;
  padding: 0.92rem 1.2rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  line-height: 1.1;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
  forced-color-adjust: none;
}

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

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, #d9314c, #a91f35);
  box-shadow: 0 16px 42px rgba(207, 47, 73, 0.34);
}

.btn-secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.38);
  background: rgba(255, 255, 255, 0.05);
}

.btn-whatsapp {
  color: #21160b;
  background: #e9ba6c;
  box-shadow: 0 16px 38px rgba(233, 186, 108, 0.16);
}

.btn-link {
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--line);
}

.btn-map {
  width: fit-content;
  min-height: 2.8rem;
  margin-top: 0.95rem;
  color: #fff;
  background: rgba(207, 47, 73, 0.18);
  border-color: rgba(255, 107, 131, 0.48);
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  width: min(860px, 100%);
  margin: 2.35rem 0 0;
}

.hero-facts div {
  padding: 1rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 16px;
  backdrop-filter: blur(16px);
}

.hero-facts dt {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-facts dd {
  margin: 0.2rem 0 0;
  font-size: 1rem;
  font-weight: 800;
}

.section-band {
  background: #08080a;
}

.section-inner {
  width: min(1160px, 90vw);
  margin: 0 auto;
  padding: 5rem 0;
}

.intro-grid,
.admission-grid,
.experience {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  gap: 3rem;
  align-items: center;
}

.intro p,
.experience-copy p,
.admission p {
  color: var(--muted);
  font-size: 1.02rem;
}

.feature-panel,
.lead-form {
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  forced-color-adjust: none;
}

.feature-panel ul {
  display: grid;
  gap: 0.85rem;
  padding: 0;
  margin: 1rem 0 0;
  list-style: none;
}

.feature-panel li {
  display: grid;
  gap: 0.15rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid var(--line);
}

.feature-panel li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.feature-panel span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
}

.feature-panel strong {
  color: var(--ink);
}

.highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.highlights article {
  padding: 1.5rem;
  background: #0e0e11;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 16px 44px rgba(16, 24, 39, 0.07);
}

.number {
  display: inline-block;
  margin-bottom: 1.5rem;
  color: #ff6b83;
  font-weight: 800;
}

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

.section-heading {
  max-width: 700px;
  margin-bottom: 2rem;
}

.curriculum {
  background:
    radial-gradient(circle at 12% 18%, rgba(207, 47, 73, 0.22), transparent 24rem),
    #08080a;
  color: #fff;
}

.curriculum .section-kicker {
  color: #ffb098;
}

.curriculum-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.8rem;
}

.module {
  min-height: 5.25rem;
  display: flex;
  align-items: center;
  padding: 1rem;
  background: #0e0e11;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 700;
}

.module.wide {
  grid-column: span 2;
  background: rgba(207, 47, 73, 0.18);
}

.image-card {
  overflow: hidden;
  background: #0e0e11;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.image-card img {
  width: 100%;
}

.checks {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.checks span {
  padding: 0.9rem;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid var(--line);
  border-left: 4px solid var(--coral);
  border-radius: 12px;
  font-weight: 800;
}

.admission {
  background:
    radial-gradient(circle at 78% 24%, rgba(207, 47, 73, 0.18), transparent 26rem),
    linear-gradient(135deg, #08080a 0%, #111114 100%);
}

.location-card {
  display: grid;
  gap: 0.45rem;
  max-width: 620px;
  margin-top: 1.4rem;
  padding: 1.2rem;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid var(--line);
  border-left: 4px solid var(--teal);
  border-radius: 16px;
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.18);
  font-style: normal;
  forced-color-adjust: none;
}

.location-card strong {
  color: var(--ink);
  font-size: 1.08rem;
  line-height: 1.3;
}

.location-label {
  color: #ff6b83;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.lead-form {
  display: grid;
  gap: 1rem;
}

.form-heading p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.lead-form label {
  display: grid;
  gap: 0.38rem;
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 800;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  appearance: none;
  width: 100%;
  min-height: 3rem;
  padding: 0.82rem 0.9rem;
  color: var(--ink);
  background-color: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line);
  border-radius: 12px;
  font: inherit;
  outline: none;
  transition: border 160ms ease, box-shadow 160ms ease;
  forced-color-adjust: none;
}

.lead-form select {
  padding-right: 2.5rem;
  background-image:
    linear-gradient(45deg, transparent 50%, rgba(247, 242, 237, 0.78) 50%),
    linear-gradient(135deg, rgba(247, 242, 237, 0.78) 50%, transparent 50%);
  background-position:
    calc(100% - 1.25rem) 50%,
    calc(100% - 0.9rem) 50%;
  background-size: 0.38rem 0.38rem, 0.38rem 0.38rem;
  background-repeat: no-repeat;
}

.lead-form option {
  color: #f7f2ed;
  background: #141416;
}

.lead-form textarea {
  resize: vertical;
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  border-color: #ff6b83;
  box-shadow: 0 0 0 4px rgba(207, 47, 73, 0.18);
}

.lead-form input::placeholder,
.lead-form textarea::placeholder {
  color: rgba(247, 242, 237, 0.42);
}

.consent {
  grid-template-columns: auto 1fr;
  align-items: start;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 700;
}

.consent input {
  appearance: auto;
  width: 1.05rem;
  min-height: 1.05rem;
  margin-top: 0.15rem;
  accent-color: var(--coral);
}

.lead-form button:disabled {
  cursor: wait;
  opacity: 0.7;
  transform: none;
}

.form-status {
  min-height: 1.35rem;
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.form-status[data-state="success"] {
  color: #e9ba6c;
}

.form-status[data-state="error"] {
  color: var(--coral-dark);
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.4rem 5vw;
  color: rgba(255, 255, 255, 0.72);
  background: #08080a;
  font-size: 0.88rem;
}

.site-footer p {
  margin: 0;
}

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

  h1 {
    font-size: 3.25rem;
  }

  h2 {
    font-size: 2.25rem;
  }

  .hero {
    min-height: 88vh;
  }

  .hero-facts,
  .intro-grid,
  .admission-grid,
  .experience,
  .highlights,
  .curriculum-grid {
    grid-template-columns: 1fr;
  }

  .module.wide {
    grid-column: auto;
  }

  .experience .image-card {
    order: 2;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding: 0.7rem 1rem;
  }

  .brand small {
    display: none;
  }

  .header-cta {
    display: inline-flex;
    min-height: 2.5rem;
    align-items: center;
    padding: 0.62rem 0.78rem;
    font-size: 0.78rem;
  }

  .brand strong {
    font-size: 0.86rem;
  }

  .brand-mark {
    width: 3rem;
    height: 2.5rem;
  }

  .hero {
    min-height: 90vh;
    padding: 7rem 1.1rem 2rem;
  }

  .hero-overlay {
    background:
      radial-gradient(circle at 18% 34%, rgba(207, 47, 73, 0.26), transparent 18rem),
      linear-gradient(0deg, rgba(8, 8, 10, 0.98) 0%, rgba(8, 8, 10, 0.86) 58%, rgba(8, 8, 10, 0.5) 100%),
      linear-gradient(90deg, rgba(8, 8, 10, 0.58), rgba(8, 8, 10, 0.28));
  }

  .hero-media img {
    object-position: 43% 50%;
  }

  h1 {
    font-size: 2.55rem;
  }

  h2 {
    font-size: 2rem;
  }

  .hero-copy,
  .intro p,
  .experience-copy p,
  .admission p {
    font-size: 1rem;
  }

  .partner-logos {
    display: grid;
    grid-template-columns: 5.85rem 1px 5.35rem 1px 4.55rem;
    gap: 0.45rem;
    width: 100%;
    padding: 0.55rem;
  }

  .partner-logos img {
    width: 100%;
    height: 2.4rem;
  }

  .partner-logos img:first-child {
    height: 3.65rem;
  }

  .partner-logos span {
    height: 2rem;
  }

  .hero-actions,
  .admission-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .section-inner {
    width: calc(100% - 2rem);
    padding: 3.75rem 0;
  }

  .feature-panel,
  .lead-form,
  .highlights article {
    padding: 1.1rem;
  }

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

  .site-footer {
    padding: 1.25rem 1rem;
  }

  .floating-enroll {
    right: 1rem;
    bottom: 1rem;
    left: auto;
    min-height: 3.2rem;
    padding-inline: 1.15rem;
  }
}
