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

:root {
  --cream: #f7f2e8;
  --oat: #f1e6d4;
  --clay: #c86b5a;
  --copper: #9b4f3f;
  --ink: #1f1b16;
  --olive: #3a4a2b;
  --mist: rgba(31, 27, 22, 0.08);
  --shadow: 0 20px 50px rgba(31, 27, 22, 0.18);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Space Grotesk", sans-serif;
  color: var(--ink);
  background: radial-gradient(circle at top left, #fbead8 0%, var(--cream) 50%)
      no-repeat,
    repeating-linear-gradient(
      45deg,
      rgba(198, 139, 96, 0.08) 0,
      rgba(198, 139, 96, 0.08) 6px,
      transparent 6px,
      transparent 12px
    );
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

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

ul {
  list-style: none;
  padding-left: 0;
}

h1,
h2,
h3 {
  font-family: "Fraunces", serif;
  line-height: 1.1;
}

main {
  padding: 0 6vw 6rem;
}

main.coming-soon {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 0 6vw;
}

.site-header,
main,
.site-footer {
  position: relative;
  z-index: 1;
}

.dancer-ring {
  position: fixed;
  top: -6vh;
  left: 50%;
  transform: translateX(-50%);
  width: min(90vw, 720px);
  height: min(90vw, 720px);
  display: grid;
  place-items: center;
  opacity: 0.28;
  z-index: 0;
  pointer-events: none;
}

.dancer-ring svg,
.dancer-ring img {
  width: 100%;
  height: 100%;
  transform: rotate(var(--ring-rotate, 0deg));
  transition: transform 0.08s linear;
  display: block;
}

.ring-outline {
  fill: none;
  stroke: rgba(155, 79, 63, 0.18);
  stroke-width: 2;
  stroke-dasharray: 6 10;
}

.dancer-ring .head {
  fill: rgba(31, 27, 22, 0.6);
}

.dancer-ring .body {
  stroke: rgba(31, 27, 22, 0.6);
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.site-header {
  padding: 2rem 6vw 4rem;
}

.site-header.compact {
  padding-bottom: 2rem;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.logo {
  font-family: "Fraunces", serif;
  font-size: 1.4rem;
  font-weight: 700;
}

.nav-links {
  display: flex;
  gap: 1.5rem;
  font-weight: 500;
}

.nav-links a {
  position: relative;
  padding-bottom: 0.25rem;
}

.nav-links a.active::after,
.nav-links a:hover::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 3px;
  background: var(--clay);
}

.hero {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2.5rem;
  align-items: center;
}

.hero.small {
  margin-top: 2rem;
}

main.coming-soon .hero {
  margin-top: 0;
}

.coming-text {
  text-align: center;
  display: grid;
  gap: 1.2rem;
  max-width: 700px;
}

.coming-text h1 {
  font-size: clamp(2.6rem, 4.5vw, 4.2rem);
}

.coming-text .tagline {
  font-family: "Fraunces", serif;
  font-size: clamp(1.2rem, 2.2vw, 1.7rem);
  color: var(--copper);
  letter-spacing: 0.04em;
}

.coming-text .notice {
  font-size: 1.05rem;
  color: rgba(31, 27, 22, 0.7);
}

.hero-text p {
  max-width: 540px;
  margin-top: 1rem;
  font-size: 1.05rem;
}

.hero-text h1 {
  font-size: clamp(2.4rem, 4vw, 3.8rem);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  color: var(--copper);
  font-weight: 600;
}

.hero-actions {
  margin-top: 1.8rem;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn {
  padding: 0.75rem 1.6rem;
  border-radius: 999px;
  border: 2px solid transparent;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn.primary {
  background: var(--clay);
  color: #fff;
  box-shadow: var(--shadow);
}

.btn.ghost {
  border-color: var(--copper);
  color: var(--copper);
}

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

.hero-card {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(10px);
  padding: 2rem;
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.meta {
  margin-top: 1rem;
  display: grid;
  gap: 0.5rem;
  font-weight: 500;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--copper);
  font-weight: 600;
}

.section {
  margin-top: 4rem;
}

.section.alt {
  background: rgba(255, 255, 255, 0.7);
  padding: 3rem;
  border-radius: 32px;
  box-shadow: 0 12px 40px rgba(31, 27, 22, 0.08);
}

.section-head {
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.muted {
  color: rgba(31, 27, 22, 0.7);
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
}

.card {
  background: #fff;
  padding: 1.5rem;
  border-radius: 24px;
  box-shadow: 0 12px 30px rgba(31, 27, 22, 0.08);
  min-height: 150px;
}

.card h3 {
  margin-bottom: 0.75rem;
}

.event-grid {
  display: grid;
  gap: 2rem;
}

.event-card {
  background: #fff;
  padding: 2rem;
  border-radius: 28px;
  box-shadow: 0 18px 40px rgba(31, 27, 22, 0.12);
  display: grid;
  gap: 1.5rem;
}

.event-date {
  font-weight: 600;
  color: var(--clay);
}

.event-meta {
  display: grid;
  gap: 0.5rem;
  line-height: 1.4;
}

.event-meta strong {
  color: var(--olive);
}

.event-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.site-footer {
  margin-top: 4rem;
  padding: 3rem 6vw;
  background: var(--ink);
  color: #fef7ea;
  display: grid;
  gap: 1.5rem;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.small {
  font-size: 0.85rem;
  color: rgba(254, 247, 234, 0.7);
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 720px) {
  .nav {
    flex-direction: column;
    align-items: flex-start;
  }

  .section.alt {
    padding: 2rem;
  }

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

  .dancer-ring {
    width: min(110vw, 520px);
    height: min(110vw, 520px);
    opacity: 0.2;
  }
}
