/* Ambition — match wctedance.com (Wix Studio, 2026) */

:root {
  --navy: #16162e;
  --navy-deep: #101024;
  --navy-card: #1c1c38;
  --purple: #6b3aed;
  --purple-hover: #7d52f5;
  --magenta: #e91e8c;
  --pink: #ff3d9a;
  --white: #ffffff;
  --muted: #b8b8cc;
  --line: rgba(255, 255, 255, 0.12);
  --line-dark: rgba(22, 22, 46, 0.12);
  --radius-pill: 999px;
  --max: 1120px;
  --header-h: 78px;
  --ticker-h: 34px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Plus Jakarta Sans", "Wix Madefor Display", Helvetica, Arial, sans-serif;
  background: var(--navy);
  color: var(--white);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

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

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

button,
.btn {
  font-family: inherit;
}

.wrap {
  width: min(var(--max), calc(100% - 48px));
  margin-inline: auto;
}

/* Ticker */
.ticker {
  height: var(--ticker-h);
  background: var(--white);
  color: #111;
  font-size: 12px;
  font-weight: 600;
  overflow: hidden;
  white-space: nowrap;
}

.ticker-track {
  display: flex;
  gap: 48px;
  width: max-content;
  animation: ticker 28s linear infinite;
  padding: 8px 0;
}

@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--navy);
  height: var(--header-h);
  display: flex;
  align-items: center;
}

.header-inner {
  width: min(1240px, calc(100% - 40px));
  margin-inline: auto;
  display: flex;
  align-items: center;
  gap: 28px;
}

.logo {
  display: flex;
  align-items: center;
  height: 48px;
  overflow: hidden;
}

.logo img {
  height: 42px;
  width: auto;
}

.nav {
  display: flex;
  align-items: center;
  gap: 22px;
  flex: 1;
  font-size: 15px;
  font-weight: 500;
}

.nav a {
  opacity: 0.92;
}

.nav a:hover,
.nav a.is-current {
  opacity: 1;
}

.nav a.is-current {
  box-shadow: 0 1px 0 currentColor;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--purple);
  color: var(--white);
  border: 0;
  border-radius: var(--radius-pill);
  padding: 11px 22px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s ease, transform 0.15s ease;
}

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

.btn-pink {
  background: var(--magenta);
}

.btn-pink:hover {
  background: #f03a9a;
}

.btn-ghost {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.08);
}

.btn-lg {
  padding: 14px 28px;
  font-size: 16px;
}

.menu-toggle {
  display: none;
  margin-left: auto;
  background: none;
  border: 0;
  color: white;
  font-size: 22px;
  cursor: pointer;
}

/* Hero */
.hero {
  position: relative;
  min-height: 72vh;
  display: flex;
  align-items: flex-end;
  background-color: #000;
  background-image: linear-gradient(180deg, rgba(16, 16, 36, 0.2) 0%, rgba(16, 16, 36, 0.45) 48%, rgba(16, 16, 36, 0.92) 100%), url("../images/hero.jpeg");
  background-size: cover;
  background-position: 58% 42%;
  background-repeat: no-repeat;
}

.hero-inner {
  padding: 0 0 64px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
  color: #f3d4e8;
  margin-bottom: 14px;
}

.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--magenta);
}

.hero h1 {
  margin: 0;
  font-size: clamp(42px, 6vw, 72px);
  line-height: 0.95;
  letter-spacing: -0.03em;
  font-weight: 800;
}

.hero h1 span {
  color: var(--magenta);
  display: block;
  font-size: 0.48em;
  letter-spacing: 0.04em;
  margin-top: 10px;
  font-weight: 700;
}

.hero-lead {
  margin: 18px 0 28px;
  font-size: clamp(18px, 2.2vw, 26px);
  max-width: 520px;
  font-weight: 500;
}

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

/* White CTA strip */
.cta-strip {
  background: var(--white);
  color: #111;
  padding: 28px 0;
}

.cta-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.cta-strip h2 {
  margin: 0;
  font-size: clamp(22px, 3vw, 32px);
  letter-spacing: -0.03em;
  font-weight: 800;
}

/* Sections */
.section {
  padding: 88px 0;
}

.section-kicker {
  color: var(--magenta);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.section h2 {
  margin: 0 0 16px;
  font-size: clamp(28px, 4vw, 44px);
  letter-spacing: -0.03em;
  line-height: 1.1;
  font-weight: 800;
}

.section p.lede {
  max-width: 640px;
  color: var(--muted);
  font-size: 18px;
  margin: 0 0 36px;
}

.section-light {
  background: var(--white);
  color: var(--navy);
}

.section-light .lede,
.section-light .muted {
  color: #5b5b72;
}

.section-magenta {
  background: linear-gradient(180deg, #d81880, #b10f68);
}

/* Event cards — match /tour + /nationals */
.date-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.date-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0;
  overflow: hidden;
  background: var(--navy-card);
  display: flex;
  flex-direction: column;
}

.date-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
}

.date-card img.card-westborough {
  object-position: center 70%;
}

.date-card img.card-vabeach {
  object-position: center 48%;
}

.date-card .date-body {
  padding: 22px;
}

.date-meta {
  display: flex;
  gap: 28px;
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 8px;
}

.date-meta b {
  display: block;
  color: var(--white);
  font-weight: 600;
  margin-top: 2px;
}

.date-card h3 {
  margin: 0 0 10px;
  color: var(--magenta);
  font-size: 26px;
  letter-spacing: -0.02em;
}

.venue {
  font-size: 14px;
  color: var(--muted);
  margin: 0 0 16px;
}

.venue strong {
  color: var(--white);
  font-weight: 600;
}

.date-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

/* Why / experience */
.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}

.split img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  object-position: center 78%;
  border-radius: 6px;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
  margin-top: 36px;
}

.gallery img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  object-position: center 42%;
  border-radius: 6px;
  grid-column: span 2;
}

.gallery img:nth-child(n+4) {
  grid-column: span 3;
}

.gallery img.portrait {
  object-position: center 62%;
}

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

.why-list li {
  padding: 12px 0;
  border-top: 1px solid var(--line-dark);
  font-weight: 500;
}

.why-list li:last-child {
  border-bottom: 1px solid var(--line-dark);
}

/* Schedule */
.rooms {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.room {
  background: var(--navy-card);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 28px;
}

.room h3 {
  margin: 0 0 4px;
  font-size: 22px;
}

.room .room-sub {
  color: var(--magenta);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.sched {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sched li {
  display: grid;
  grid-template-columns: 118px 1fr;
  gap: 12px;
  padding: 9px 0;
  border-top: 1px solid var(--line);
  font-size: 14px;
}

.sched time {
  color: var(--muted);
  font-variant-numeric: tabular-nums;
}

.styles {
  margin-top: 28px;
  color: var(--muted);
  font-size: 14px;
}

.styles strong {
  color: var(--white);
}

/* Rates */
.rate-note {
  margin: 0 0 24px;
  color: #5b5b72;
}

.rates {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
}

.rates th,
.rates td {
  text-align: left;
  padding: 16px 14px;
  border-bottom: 1px solid var(--line-dark);
}

.rates th {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #6d6d82;
}

.rates td:not(:first-child),
.rates th:not(:first-child) {
  text-align: right;
}

.rates .price {
  font-weight: 800;
  font-size: 18px;
}

.rates tr.featured td {
  background: #f7f1ff;
}

.fine {
  margin-top: 22px;
  font-size: 14px;
  color: #5b5b72;
}

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

.who-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 28px;
  background: var(--navy-card);
}

.who-card h3 {
  margin: 0 0 10px;
  font-size: 22px;
  color: var(--magenta);
}

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

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

.quote {
  background: var(--navy-card);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 28px;
}

.quote p {
  margin: 0 0 18px;
  font-size: 16px;
}

.quote cite {
  font-style: normal;
  color: var(--muted);
  font-size: 13px;
}

.quote cite b {
  display: block;
  color: var(--white);
  font-size: 14px;
}

/* Policies */
.policy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px 48px;
}

.policy h3 {
  margin: 0 0 10px;
  font-size: 18px;
}

.policy ul {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  font-size: 14px;
}

.policy li + li {
  margin-top: 6px;
}

/* Footer — match wctedance.com */
.site-footer {
  background: var(--navy-deep);
  border-top: 1px solid var(--line);
  padding: 56px 0 28px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
}

.footer-brand {
  font-size: 22px;
  font-weight: 800;
}

.footer-brand span {
  color: var(--magenta);
}

.footer-start {
  font-weight: 600;
}

.footer-start a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-cols {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 32px 0;
  font-size: 14px;
}

.footer-cols h4 {
  margin: 0 0 12px;
  font-size: 13px;
}

.footer-cols a,
.footer-cols p {
  display: block;
  color: var(--muted);
  margin: 0 0 8px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 12px;
  color: var(--muted);
}

/* Mobile nav */
.mobile-nav {
  display: none;
}

@media (max-width: 900px) {
  .nav,
  .header-inner .btn {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .date-grid,
  .split,
  .rooms,
  .who-grid,
  .quotes,
  .policy-grid,
  .footer-cols {
    grid-template-columns: 1fr;
  }

  .date-card img {
    height: 200px;
  }

  .split img {
    height: 420px;
    object-position: center 70%;
  }

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

  .gallery img,
  .gallery img:nth-child(n+4) {
    grid-column: auto;
    height: 180px;
  }

  .gallery img:first-child {
    grid-column: 1 / -1;
    height: 200px;
  }

  .hero {
    min-height: 86vh;
    align-items: flex-end;
    background-position: 72% 38%;
  }

  .mobile-nav.open {
    display: flex;
    flex-direction: column;
    gap: 16px;
    background: var(--navy);
    padding: 20px 24px 28px;
  }
}
