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

:root {
  --black: #090909;
  --black-soft: #111111;
  --black-raised: #171615;
  --ivory: #f4efe7;
  --coral: #ff4d3d;
  --coral-dark: #d83a2e;
  --coral-deep: #c73326;
  --coral-rgb: 255, 77, 61;
  --stone: #b8b1a7;
  --line: rgba(244, 239, 231, 0.12);
  --serif: "Cormorant Garamond", "Iowan Old Style", "Times New Roman", serif;
  --sans: "Inter", Arial, Helvetica, sans-serif;
  --radius-btn: 18px;
}

* {
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

html {
  scroll-behavior: smooth;
  background: var(--black);
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--black);
  color: var(--ivory);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}

body,
a,
button,
summary {
  cursor: default;
}

a,
button,
summary {
  cursor: pointer;
}

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

img {
  display: block;
  max-width: 100%;
}

::selection {
  background: var(--coral);
  color: white;
}

:focus-visible {
  outline: 2px solid var(--coral);
  outline-offset: 4px;
}

.hero {
  min-height: 100svh;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-image {
  background:
    url("../images/amaya-hero.webp") center center / cover no-repeat,
    radial-gradient(circle at 78% 48%, #572015 0, #18100d 28%, #090909 67%);
  animation: hero-scale 12s ease-out both;
}

.hero-shade {
  background:
    linear-gradient(90deg, #090909 0%, rgba(9, 9, 9, 0.98) 31%, rgba(9, 9, 9, 0.64) 54%, rgba(9, 9, 9, 0.08) 79%),
    linear-gradient(0deg, rgba(9, 9, 9, 0.68), transparent 34%);
}

.site-header {
  min-height: 104px;
  padding: 17px clamp(24px, 4.6vw, 76px);
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(244, 239, 231, 0.09);
}

.brand img {
  width: clamp(132px, 11vw, 170px);
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.3vw, 40px);
}

.desktop-nav a,
footer nav a {
  position: relative;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.desktop-nav .nav-register {
  min-height: 42px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  background: var(--coral);
  color: white;
  border-radius: var(--radius-btn);
  transition:
    background 180ms ease,
    transform 180ms ease;
}

.desktop-nav .nav-register::after {
  display: none;
}

.desktop-nav .nav-register:hover {
  background: var(--coral-dark);
  transform: translateY(-2px);
}

.solid-header {
  background: rgba(9, 9, 9, 0.96);
  backdrop-filter: blur(16px);
}

.desktop-nav a::after,
footer nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  background: var(--coral);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after,
footer nav a:hover::after,
footer nav a:focus-visible::after {
  transform: scaleX(1);
}

.mobile-menu {
  display: none;
}

.hero-content {
  min-height: calc(100svh - 104px);
  padding: clamp(74px, 11vh, 142px) clamp(24px, 6.4vw, 104px) 130px;
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
}

.hero-copy {
  width: min(720px, 52vw);
  padding-left: 32px;
  border-left: 2px solid var(--coral);
}

.eyebrow {
  margin: 0;
  color: var(--coral);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.22em;
  line-height: 1.4;
  text-transform: uppercase;
}

.hero h1 {
  margin: 24px 0 22px;
  font-family: var(--serif);
  font-size: clamp(60px, 6.6vw, 108px);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 0.88;
}

.hero-lede {
  max-width: 610px;
  margin: 0;
  color: rgba(244, 239, 231, 0.86);
  font-size: clamp(17px, 1.3vw, 21px);
  line-height: 1.65;
}

.hero-actions,
.contact-actions {
  margin-top: 38px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.button {
  min-height: 58px;
  padding: 0 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: var(--radius-btn);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition:
    transform 180ms ease,
    color 180ms ease,
    background 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

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

.button-primary {
  background: var(--coral);
  color: white;
}

.button-primary:hover {
  background: var(--coral-dark);
  box-shadow: 0 14px 40px rgba(var(--coral-rgb), 0.2);
}

.button-outline {
  border-color: rgba(244, 239, 231, 0.7);
}

.button-outline:hover {
  background: var(--ivory);
  color: var(--black);
}

.hero-facts {
  margin-top: 34px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
  color: var(--stone);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-facts i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--coral);
}

.scroll-cue {
  position: absolute;
  right: clamp(24px, 4.6vw, 76px);
  bottom: 34px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--stone);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transform: rotate(90deg) translateX(-50%);
  transform-origin: right center;
}

.scroll-cue i {
  width: 54px;
  height: 1px;
  background: var(--coral);
}

.section-pad {
  padding: clamp(86px, 10vw, 154px) clamp(24px, 6.4vw, 104px);
}

.section-heading {
  margin-bottom: 70px;
}

.split-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.7fr);
  align-items: end;
  gap: 60px;
}

.section-heading h2,
.schedule-heading h2,
.about-copy h2,
.quote-band blockquote,
.faq-heading h2,
.contact-copy h2,
.social-callout h2 {
  margin: 17px 0 0;
  font-family: var(--serif);
  font-size: clamp(52px, 6vw, 92px);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 0.94;
}

.section-heading > p,
.schedule-heading > p {
  margin: 0;
  color: var(--stone);
  font-size: 17px;
  line-height: 1.75;
}

.intro {
  background:
    radial-gradient(circle at 11% 20%, rgba(var(--coral-rgb), 0.07), transparent 25%),
    var(--black);
}

.program-grid {
  border-top: 1px solid var(--line);
}

.program-card {
  min-height: 250px;
  padding: 42px 0;
  position: relative;
  display: grid;
  grid-template-columns: 90px 1fr auto;
  align-items: start;
  gap: 40px;
  border-bottom: 1px solid var(--line);
  transition:
    background 220ms ease,
    padding 220ms ease;
}

.program-arrow {
  color: var(--coral);
  font-family: var(--serif);
  font-size: 38px;
  transition: transform 180ms ease;
}

.program-card:hover .program-arrow {
  transform: translateX(8px);
}

.program-card:hover {
  padding-inline: 28px;
  background: linear-gradient(90deg, rgba(var(--coral-rgb), 0.09), transparent 70%);
}

.program-number {
  color: var(--coral);
  font-family: var(--serif);
  font-size: 28px;
}

.program-card h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(38px, 4vw, 60px);
  font-weight: 500;
}

.program-card p {
  max-width: 670px;
  margin: 14px 0 28px;
  color: var(--stone);
  font-size: 16px;
  line-height: 1.7;
}

.program-card ul {
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
}

.program-card li {
  padding: 8px 12px;
  border: 1px solid var(--line);
  color: var(--ivory);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.schedule {
  background: var(--ivory);
  color: var(--black);
}

.section-kicker {
  padding-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid rgba(9, 9, 9, 0.15);
}

.section-kicker span {
  color: #5c5751;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.schedule-heading {
  padding: 56px 0 72px;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.6fr);
  align-items: end;
  gap: 70px;
}

.schedule-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(9, 9, 9, 0.2);
  border-left: 1px solid rgba(9, 9, 9, 0.2);
}

.day-card {
  min-width: 0;
  border-right: 1px solid rgba(9, 9, 9, 0.2);
  border-bottom: 1px solid rgba(9, 9, 9, 0.2);
}

.day-card-head {
  min-height: 130px;
  padding: 28px;
  background: var(--black);
  color: var(--ivory);
}

.day-card-head h3 {
  margin: 0 0 10px;
  font-family: var(--serif);
  font-size: 35px;
  font-weight: 500;
}

.day-card-head p {
  margin: 0;
  color: var(--coral);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.day-card ol {
  margin: 0;
  padding: 10px 28px 22px;
  list-style: none;
}

.day-card li {
  min-height: 94px;
  padding: 22px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  border-bottom: 1px solid rgba(9, 9, 9, 0.12);
}

.day-card li:last-child {
  border-bottom: 0;
}

.day-card time {
  color: #5c5751;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.day-card li span {
  font-size: 15px;
  font-weight: 600;
}

.schedule-note {
  margin: 22px 0 0;
  color: #746e67;
  font-size: 12px;
}

.about {
  min-height: 800px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
}

.about-image {
  min-height: 720px;
  background:
    linear-gradient(90deg, transparent 65%, var(--black) 100%),
    url("../images/amaya-community.webp") center / cover no-repeat,
    #241713;
}

.about-copy {
  padding: clamp(80px, 9vw, 140px) clamp(24px, 7vw, 114px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-copy h2 {
  max-width: 650px;
}

.about-copy > p:not(.eyebrow) {
  max-width: 640px;
  color: var(--stone);
  font-size: 15px;
  line-height: 1.8;
}

.about-copy .about-lede {
  margin: 30px 0 12px;
  color: var(--ivory) !important;
  font-size: 18px !important;
  line-height: 1.7 !important;
}

.about-stats {
  margin: 34px 0;
  padding: 28px 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.about-stats div {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.about-stats strong {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
}

.about-stats span {
  color: var(--stone);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.text-link,
.price-card > a {
  width: max-content;
  color: var(--ivory);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.text-link span,
.price-card > a span {
  display: inline-block;
  margin-left: 7px;
  color: var(--coral);
  transition: transform 180ms ease;
}

.text-link:hover span,
.price-card > a:hover span {
  transform: translateX(5px);
}

.quote-band {
  text-align: center;
  background:
    linear-gradient(rgba(9, 9, 9, 0.82), rgba(9, 9, 9, 0.92)),
    radial-gradient(circle at 50% 50%, rgba(var(--coral-rgb), 0.22), transparent 45%);
  border-block: 1px solid var(--line);
}

.quote-band blockquote {
  max-width: 1120px;
  margin-inline: auto;
  margin-top: 36px;
  font-size: clamp(42px, 5vw, 72px);
}

.quote-meta {
  margin-top: 35px;
  display: flex;
  justify-content: center;
  gap: 18px;
  color: var(--stone);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.quote-meta span:last-child {
  color: var(--coral);
  letter-spacing: 0.1em;
}

.pricing {
  background: var(--black-soft);
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.price-card {
  min-height: 430px;
  padding: 38px 30px;
  position: relative;
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.price-card.featured {
  background: var(--coral);
  color: white;
}

.price-badge {
  width: max-content;
  margin-bottom: 22px;
  padding: 7px 10px;
  background: var(--black);
  color: var(--ivory);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.price-card h3 {
  margin: 0;
  color: var(--stone);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.price-card.featured h3,
.price-card.featured p {
  color: rgba(255, 255, 255, 0.82);
}

.price {
  margin: 24px 0;
}

.price strong {
  display: block;
  font-family: var(--serif);
  font-size: 70px;
  font-weight: 500;
  line-height: 0.9;
}

.price span {
  color: var(--stone);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.featured .price span {
  color: rgba(255, 255, 255, 0.78);
}

.price-card > p {
  margin: 0 0 30px;
  color: var(--stone);
  font-size: 14px;
  line-height: 1.7;
}

.price-card > a {
  margin-top: auto;
  padding: 12px 0;
}

.price-card.featured > a,
.price-card.featured > a span {
  color: white;
}

.pass-row {
  margin-top: 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.pass-row > div {
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 9px;
  border: 1px solid var(--line);
}

.pass-row span,
.pass-row small {
  color: var(--stone);
}

.pass-row span {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.pass-row strong {
  font-family: var(--serif);
  font-size: clamp(23px, 2.4vw, 34px);
  font-weight: 500;
}

.pass-row small {
  font-size: 11px;
}

.social-callout {
  padding: 72px clamp(24px, 6.4vw, 104px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  background: var(--coral);
  color: white;
}

.social-callout .eyebrow {
  color: var(--black);
}

.social-callout h2 {
  margin-top: 12px;
  font-size: clamp(48px, 5vw, 76px);
}

.social-callout p:not(.eyebrow) {
  max-width: 660px;
  margin: 18px 0 0;
  font-size: 15px;
  line-height: 1.7;
}

.button-light {
  flex: 0 0 auto;
  background: white;
  color: var(--black);
}

.button-light:hover {
  background: var(--black);
  color: white;
}

.faq {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 90px;
  background: var(--ivory);
  color: var(--black);
}

.faq-heading h2 {
  font-size: clamp(52px, 5vw, 76px);
}

.faq-list {
  border-top: 1px solid rgba(9, 9, 9, 0.18);
}

.faq-list details {
  border-bottom: 1px solid rgba(9, 9, 9, 0.18);
}

.faq-list summary {
  min-height: 92px;
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  font-family: var(--serif);
  font-size: 27px;
  font-weight: 600;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary span {
  color: var(--coral);
  font-family: var(--sans);
  font-size: 26px;
  font-weight: 400;
  transition: transform 180ms ease;
}

.faq-list details[open] summary span {
  transform: rotate(45deg);
}

.faq-list details p {
  max-width: 690px;
  margin: -6px 0 30px;
  color: #655f58;
  font-size: 15px;
  line-height: 1.75;
}

.contact {
  display: grid;
  grid-template-columns: 1fr 0.7fr;
  align-items: center;
  gap: 100px;
  background:
    radial-gradient(circle at 15% 100%, rgba(var(--coral-rgb), 0.16), transparent 30%),
    var(--black);
}

.contact-copy h2 {
  max-width: 800px;
}

.contact-copy > p:not(.eyebrow) {
  max-width: 640px;
  color: var(--stone);
  font-size: 17px;
  line-height: 1.75;
}

.contact-card {
  padding: 42px;
  display: flex;
  flex-direction: column;
  gap: 34px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.025);
  font-style: normal;
}

.contact-card div {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-card span {
  color: var(--coral);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.contact-card a,
.contact-card p {
  width: max-content;
  max-width: 100%;
  margin: 0;
  color: var(--ivory);
  font-size: 15px;
  line-height: 1.7;
}

.contact-card a:hover {
  color: var(--coral);
}

footer {
  min-height: 170px;
  padding: 34px clamp(24px, 6.4vw, 104px);
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 46px;
  border-top: 1px solid var(--line);
  color: var(--stone);
}

.footer-brand img {
  width: 120px;
}

footer p,
footer small {
  margin: 0;
  font-size: 11px;
}

footer nav {
  display: flex;
  gap: 30px;
}

footer nav a {
  color: var(--ivory);
  font-size: 10px;
}

/* Multi-page layout */

.page-hero {
  min-height: 680px;
  position: relative;
  overflow: hidden;
  background-position: center;
  background-size: cover;
  border-bottom: 1px solid var(--line);
}

.page-hero-community {
  background-image: url("../images/amaya-community.webp");
}

.page-hero-dance {
  background-image: url("../images/amaya-hero.webp");
}

.page-hero-shade {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(180deg, rgba(9, 9, 9, 0.72) 0%, rgba(9, 9, 9, 0.28) 20%, transparent 42%),
    linear-gradient(90deg, rgba(9, 9, 9, 0.99) 0%, rgba(9, 9, 9, 0.92) 42%, rgba(9, 9, 9, 0.38) 72%, rgba(9, 9, 9, 0.2) 100%),
    linear-gradient(0deg, rgba(9, 9, 9, 0.72), transparent 48%);
}

.page-hero-content {
  min-height: 576px;
  max-width: 930px;
  padding: clamp(84px, 9vw, 140px) clamp(24px, 6.4vw, 104px) 90px;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.page-hero h1 {
  max-width: 900px;
  margin: 20px 0 22px;
  font-family: var(--serif);
  font-size: clamp(64px, 7vw, 110px);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 0.9;
}

.page-hero-content > p:not(.eyebrow) {
  max-width: 680px;
  margin: 0;
  color: rgba(244, 239, 231, 0.84);
  font-size: clamp(17px, 1.35vw, 21px);
  line-height: 1.65;
}

.home-schedule {
  background: var(--ivory);
  color: var(--black);
}

.mini-schedule {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(9, 9, 9, 0.2);
  border-left: 1px solid rgba(9, 9, 9, 0.2);
}

.mini-schedule article {
  min-height: 210px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-right: 1px solid rgba(9, 9, 9, 0.2);
  border-bottom: 1px solid rgba(9, 9, 9, 0.2);
}

.mini-schedule span,
.mini-schedule small {
  color: #5c5751;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.mini-schedule strong {
  max-width: 220px;
  font-family: var(--serif);
  font-size: 31px;
  font-weight: 600;
  line-height: 1.05;
}

.section-actions {
  margin-top: 34px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
}

.home-schedule .text-link,
.dark-link {
  color: var(--black);
}

.registration-band {
  padding: 70px clamp(24px, 6.4vw, 104px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  background: var(--coral-dark);
  color: white;
}

.registration-band .eyebrow {
  color: var(--black);
}

.registration-band h2 {
  margin: 12px 0 10px;
  font-family: var(--serif);
  font-size: clamp(48px, 5vw, 76px);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 0.95;
}

.registration-band p:not(.eyebrow) {
  max-width: 650px;
  margin: 0;
  font-size: 15px;
  line-height: 1.7;
}

.registration-band .button {
  flex: 0 0 auto;
}

.class-catalog {
  background:
    radial-gradient(circle at 90% 8%, rgba(var(--coral-rgb), 0.09), transparent 22%),
    var(--black);
}

.class-list {
  border-top: 1px solid var(--line);
}

.class-row {
  min-height: 300px;
  padding: 42px 0;
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) 240px;
  align-items: start;
  gap: 40px;
  border-bottom: 1px solid var(--line);
}

.class-row-main {
  max-width: 820px;
}

.class-row-title {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
}

.class-row-title p {
  margin: 0 0 7px;
  color: var(--coral);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.class-row-title h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(38px, 4vw, 58px);
  font-weight: 500;
  line-height: 1;
}

.class-row-title strong {
  flex: 0 0 auto;
  color: var(--stone);
  font-size: 10px;
  letter-spacing: 0.1em;
  line-height: 1.5;
  text-align: right;
  text-transform: uppercase;
}

.class-row-main > p {
  max-width: 760px;
  margin: 24px 0;
  color: var(--stone);
  font-size: 15px;
  line-height: 1.75;
}

.class-row-main ul {
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  list-style: none;
}

.class-row-main li {
  padding: 8px 10px;
  border: 1px solid var(--line);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.class-register {
  align-self: end;
  justify-self: end;
  padding: 12px 0;
  text-align: right;
}

.service-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.service-split article {
  min-height: 500px;
  padding: clamp(74px, 8vw, 120px) clamp(24px, 6vw, 90px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--ivory);
  color: var(--black);
}

.service-split article:last-child {
  background: var(--coral);
  color: white;
}

.service-split article:last-child .eyebrow {
  color: var(--black);
}

.service-split h2 {
  margin: 17px 0 20px;
  font-family: var(--serif);
  font-size: clamp(52px, 5vw, 78px);
  font-weight: 500;
  letter-spacing: -0.04em;
}

.service-split p:not(.eyebrow) {
  max-width: 580px;
  margin: 0 0 30px;
  color: #655f58;
  font-size: 15px;
  line-height: 1.75;
}

.service-split article:last-child p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.84);
}

.service-split .text-link {
  color: var(--black);
}

.service-split article:last-child .text-link,
.service-split article:last-child .text-link span {
  color: white;
}

.page-schedule {
  scroll-margin-top: 100px;
}

.day-register {
  min-height: 58px;
  padding: 0 28px;
  display: flex;
  align-items: center;
  border-top: 1px solid rgba(9, 9, 9, 0.15);
  color: var(--coral-deep);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.day-register:hover {
  background: rgba(var(--coral-rgb), 0.08);
}

.schedule-footer-note {
  margin-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.schedule-footer-note p {
  margin: 0;
  color: #5c5751;
  font-size: 12px;
}

.price-page-section {
  scroll-margin-top: 100px;
}

.alternate-pricing {
  background: var(--black);
}

.price-grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

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

.checkout-note {
  margin: 22px 0 0;
  color: var(--stone);
  font-size: 11px;
}

.about-page-story {
  min-height: 820px;
}

.about-page-story .about-copy > p:not(.eyebrow) {
  margin-top: 14px;
}

.values {
  background: var(--ivory);
  color: var(--black);
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(9, 9, 9, 0.18);
  border-left: 1px solid rgba(9, 9, 9, 0.18);
}

.value-grid article {
  min-height: 340px;
  padding: 38px;
  border-right: 1px solid rgba(9, 9, 9, 0.18);
  border-bottom: 1px solid rgba(9, 9, 9, 0.18);
}

.value-grid span {
  color: var(--coral);
  font-family: var(--serif);
  font-size: 27px;
}

.value-grid h3 {
  margin: 66px 0 16px;
  font-family: var(--serif);
  font-size: 34px;
  font-weight: 600;
}

.value-grid p {
  margin: 0;
  color: #655f58;
  font-size: 14px;
  line-height: 1.75;
}

.contact-page {
  min-height: 720px;
}

.map-callout {
  padding: 72px clamp(24px, 6.4vw, 104px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  background: var(--coral-dark);
  color: white;
}

.map-callout .eyebrow {
  color: var(--black);
}

.map-callout h2 {
  margin: 12px 0 10px;
  font-family: var(--serif);
  font-size: clamp(48px, 5vw, 76px);
  font-weight: 500;
  letter-spacing: -0.04em;
}

.map-callout p:not(.eyebrow) {
  margin: 0;
}

.map-callout .button {
  flex: 0 0 auto;
}

.events-feature {
  background:
    radial-gradient(circle at 92% 12%, rgba(var(--coral-rgb), 0.1), transparent 24%),
    var(--black);
}

.event-feature-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  border: 1px solid var(--line);
}

.event-date-card {
  min-height: 520px;
  padding: clamp(38px, 5vw, 72px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--coral);
  color: white;
}

.event-date-card p {
  margin: 0 0 34px;
  color: var(--black);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.event-date-card strong {
  font-family: var(--serif);
  font-size: clamp(72px, 8vw, 124px);
  font-weight: 500;
  letter-spacing: -0.06em;
  line-height: 0.76;
}

.event-date-card span {
  margin-top: 28px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.event-details-card {
  min-height: 520px;
  padding: clamp(42px, 6vw, 86px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.event-details-heading h3 {
  max-width: 700px;
  margin: 15px 0 38px;
  font-family: var(--serif);
  font-size: clamp(42px, 5vw, 68px);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 0.95;
}

.event-details-card dl {
  margin: 0 0 28px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.event-details-card dl div {
  min-height: 98px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.event-details-card dt {
  color: var(--coral);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.event-details-card dd {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5;
}

.event-location-note {
  margin: 0 0 24px;
  color: var(--stone);
  font-size: 12px;
  line-height: 1.7;
}

.event-experience {
  background: var(--ivory);
  color: var(--black);
}

.event-experience .section-heading {
  max-width: 980px;
}

.event-highlight-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(9, 9, 9, 0.18);
  border-left: 1px solid rgba(9, 9, 9, 0.18);
}

.event-highlight-grid article {
  min-height: 330px;
  padding: 36px 30px;
  border-right: 1px solid rgba(9, 9, 9, 0.18);
  border-bottom: 1px solid rgba(9, 9, 9, 0.18);
}

.event-highlight-grid span {
  color: var(--coral);
  font-family: var(--serif);
  font-size: 27px;
}

.event-highlight-grid h3 {
  margin: 72px 0 14px;
  font-family: var(--serif);
  font-size: 33px;
  font-weight: 600;
}

.event-highlight-grid p {
  margin: 0;
  color: #655f58;
  font-size: 14px;
  line-height: 1.75;
}

.event-news-callout {
  padding: clamp(78px, 9vw, 132px) clamp(24px, 6.4vw, 104px);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 70px;
  background:
    radial-gradient(circle at 15% 100%, rgba(var(--coral-rgb), 0.2), transparent 34%),
    var(--black-soft);
}

.event-news-callout h2 {
  max-width: 850px;
  margin: 15px 0 22px;
  font-family: var(--serif);
  font-size: clamp(48px, 5.4vw, 82px);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 0.94;
}

.event-news-callout p:not(.eyebrow) {
  max-width: 680px;
  margin: 0;
  color: var(--stone);
  font-size: 15px;
  line-height: 1.75;
}

.event-news-actions {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 24px;
}

@keyframes hero-scale {
  from {
    transform: scale(1.035);
  }
  to {
    transform: scale(1);
  }
}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-copy > * {
  animation: rise-in 600ms ease both;
}

.hero-copy > :nth-child(2) {
  animation-delay: 70ms;
}

.hero-copy > :nth-child(3) {
  animation-delay: 130ms;
}

.hero-copy > :nth-child(4) {
  animation-delay: 190ms;
}

.hero-copy > :nth-child(5) {
  animation-delay: 250ms;
}

@media (max-width: 1100px) {
  .hero-shade {
    background:
      linear-gradient(90deg, #090909 0%, rgba(9, 9, 9, 0.92) 48%, rgba(9, 9, 9, 0.3) 100%),
      linear-gradient(0deg, rgba(9, 9, 9, 0.74), transparent 50%);
  }

  .hero-copy {
    width: min(720px, 70vw);
  }

  .schedule-grid,
  .price-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .mini-schedule {
    grid-template-columns: repeat(2, 1fr);
  }

  .event-highlight-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .class-row {
    grid-template-columns: 58px minmax(0, 1fr);
  }

  .class-register {
    grid-column: 2;
    justify-self: start;
    text-align: left;
  }

  .about {
    grid-template-columns: 0.9fr 1.1fr;
  }

  .about-stats {
    grid-template-columns: 1fr;
  }

  footer {
    grid-template-columns: auto 1fr auto;
  }

  footer small {
    grid-column: 2 / -1;
  }
}

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

  .mobile-menu {
    display: block;
    position: relative;
  }

  .mobile-menu summary {
    width: 44px;
    height: 44px;
    padding: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    border: 1px solid var(--line);
    list-style: none;
  }

  .mobile-menu summary::-webkit-details-marker {
    display: none;
  }

  .mobile-menu summary span {
    width: 100%;
    height: 1px;
    background: var(--ivory);
  }

  .mobile-menu nav {
    width: min(280px, calc(100vw - 48px));
    padding: 12px;
    position: absolute;
    top: 54px;
    right: 0;
    display: flex;
    flex-direction: column;
    background: var(--black-raised);
    border: 1px solid var(--line);
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.5);
  }

  .mobile-menu nav a {
    padding: 16px;
    border-bottom: 1px solid var(--line);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
  }

  .mobile-menu nav a:last-child {
    border-bottom: 0;
  }

  .hero {
    min-height: 850px;
  }

  .hero-image {
    background-position: 62% center;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(9, 9, 9, 0.98) 0%, rgba(9, 9, 9, 0.86) 66%, rgba(9, 9, 9, 0.45) 100%),
      linear-gradient(0deg, #090909 4%, transparent 54%);
  }

  .hero-content {
    min-height: 746px;
    padding-top: 90px;
    align-items: flex-start;
  }

  .hero-copy {
    width: min(650px, 90vw);
  }

  .split-heading,
  .schedule-heading,
  .faq,
  .contact {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .section-heading,
  .schedule-heading {
    margin-bottom: 50px;
  }

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

  .about-image {
    min-height: 560px;
    background:
      linear-gradient(0deg, var(--black) 0%, transparent 30%),
      url("../images/amaya-community.webp") center / cover no-repeat,
      #241713;
  }

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

  .page-hero {
    min-height: 620px;
  }

  .page-hero-shade {
    inset: 0;
    background:
      linear-gradient(180deg, rgba(9, 9, 9, 0.76) 0%, rgba(9, 9, 9, 0.22) 25%, transparent 48%),
      linear-gradient(90deg, rgba(9, 9, 9, 0.96), rgba(9, 9, 9, 0.7)),
      linear-gradient(0deg, rgba(9, 9, 9, 0.84), transparent 55%);
  }

  .page-hero-content {
    min-height: 532px;
  }

  .service-split {
    grid-template-columns: 1fr;
  }

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

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

  .registration-band,
  .map-callout {
    align-items: flex-start;
    flex-direction: column;
  }

  .social-callout {
    align-items: flex-start;
    flex-direction: column;
  }

  .event-news-callout {
    align-items: flex-start;
    flex-direction: column;
  }

  .event-news-actions {
    align-items: flex-start;
  }

  footer {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }

  footer p,
  footer small {
    grid-column: auto;
  }
}

@media (max-width: 560px) {
  .site-header {
    min-height: 88px;
  }

  .brand img {
    width: 118px;
  }

  .hero {
    min-height: 810px;
  }

  .hero-image {
    inset: 88px 0 auto;
    height: 48%;
    background-position: 66% center;
  }

  .hero-shade {
    background:
      linear-gradient(0deg, #090909 23%, rgba(9, 9, 9, 0.72) 67%, rgba(9, 9, 9, 0.18) 100%),
      linear-gradient(90deg, rgba(9, 9, 9, 0.36), transparent);
  }

  .hero-content {
    min-height: 722px;
    padding-top: 270px;
    padding-bottom: 80px;
    align-items: center;
  }

  .hero-copy {
    width: 100%;
    padding-left: 18px;
  }

  .hero h1 {
    margin-top: 18px;
    font-size: clamp(48px, 15vw, 70px);
  }

  .hero-lede {
    font-size: 15px;
    line-height: 1.55;
  }

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

  .hero-actions .button,
  .contact-actions .button {
    width: 100%;
  }

  .hero-facts {
    gap: 10px;
    font-size: 9px;
  }

  .hero-facts i:nth-of-type(2),
  .hero-facts span:last-child {
    display: none;
  }

  .scroll-cue {
    display: none;
  }

  .section-pad {
    padding-block: 82px;
  }

  .section-heading h2,
  .schedule-heading h2,
  .about-copy h2,
  .contact-copy h2 {
    font-size: 50px;
  }

  .section-kicker {
    align-items: flex-start;
    flex-direction: column;
  }

  .schedule-heading {
    padding-block: 42px;
  }

  .schedule-grid,
  .price-grid,
  .pass-row,
  .mini-schedule {
    grid-template-columns: 1fr;
  }

  .program-card {
    grid-template-columns: 38px 1fr auto;
    gap: 18px;
  }

  .program-card:hover {
    padding-inline: 12px;
  }

  .about-image {
    min-height: 430px;
  }

  .about-copy {
    padding-block: 76px;
  }

  .quote-band blockquote {
    font-size: 40px;
  }

  .price-card {
    min-height: 380px;
  }

  .faq-list summary {
    font-size: 23px;
  }

  .contact-card {
    padding: 30px 24px;
  }

  .social-callout {
    padding-block: 62px;
  }

  .social-callout .button {
    width: 100%;
  }

  .page-hero {
    min-height: 620px;
    background-position: 65% center;
  }

  .page-hero-content {
    min-height: 532px;
    padding-top: 90px;
  }

  .page-hero h1 {
    font-size: clamp(54px, 16vw, 72px);
  }

  .page-hero .hero-actions {
    flex-direction: column;
  }

  .page-hero .button {
    width: 100%;
  }

  .class-row {
    grid-template-columns: 38px 1fr;
    gap: 18px;
  }

  .class-row-title {
    flex-direction: column;
    gap: 15px;
  }

  .class-row-title strong {
    text-align: left;
  }

  .class-register {
    grid-column: 2;
  }

  .schedule-footer-note {
    align-items: flex-start;
    flex-direction: column;
  }

  .registration-band .button,
  .map-callout .button {
    width: 100%;
  }

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

  .event-date-card {
    min-height: 380px;
  }

  .event-details-card {
    padding-inline: 24px;
  }

  .event-details-card dl {
    grid-template-columns: 1fr;
  }

  .event-news-actions,
  .event-news-actions .button {
    width: 100%;
  }

  footer {
    grid-template-columns: 1fr;
  }

  footer nav {
    flex-wrap: wrap;
  }
}

.powered-by {
  padding: 22px clamp(24px, 6.4vw, 104px);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  background: var(--black-soft);
  border-top: 1px solid var(--line);
}

.powered-by span {
  color: var(--stone);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.powered-by a {
  display: inline-flex;
  align-items: center;
  padding: 10px 16px;
  background: var(--ivory);
  border-radius: var(--radius-btn);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.powered-by a:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35);
}

.powered-by img {
  height: 20px;
  width: auto;
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
