/* === Reset & Base === */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

:root {
  --purple:       #8B2FC9;
  --purple-dark:  #6B1FA0;
  --purple-light: #A855F7;
  --purple-faint: rgba(139, 47, 201, 0.12);
  --black:        #0a0a0a;
  --dark:         #111111;
  --dark-mid:     #1c1c1c;
  --dark-border:  rgba(255,255,255,0.07);
  --gray:         #6b7280;
  --light-gray:   #f5f3ff;
  --white:        #ffffff;
  --font:         'Spline Sans Mono', 'Courier New', monospace;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  color-scheme: light;
}

body {
  font-family: var(--font);
  background: var(--white);
  color: var(--black);
  line-height: 1.6;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
}

/* === Shared Typography === */
.overline {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  color: var(--purple);
  text-transform: uppercase;
  margin-bottom: 16px;
  display: block;
}

.overline-light { color: var(--purple-light); }

.editorial-heading {
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--black);
  margin-bottom: 36px;
}

.section-heading {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.015em;
  color: var(--black);
  margin-bottom: 24px;
}

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

/* === Pill Buttons === */
.btn-pill {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 100px;
  font-family: var(--font);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-decoration: none;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.2s;
  text-align: center;
  white-space: nowrap;
}

.btn-pill-solid {
  background: var(--purple);
  color: var(--white);
  border-color: var(--purple);
}
.btn-pill-solid:hover {
  background: var(--purple-dark);
  border-color: var(--purple-dark);
}

.btn-pill-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.btn-pill-outline:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.08);
}

.btn-pill-outline-dark {
  background: transparent;
  color: var(--purple);
  border-color: var(--purple);
}
.btn-pill-outline-dark:hover {
  background: var(--purple);
  color: var(--white);
}

.btn-pill-purple {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}
.btn-pill-purple:hover {
  background: var(--purple);
  border-color: var(--purple);
}

.btn-full { width: 100%; }

/* === Navbar === */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  padding: 0 32px;
  height: 72px;
  display: flex;
  align-items: center;
  gap: 40px;
  background: transparent;
  transition: background 0.4s, box-shadow 0.4s;
}

.navbar.scrolled {
  background: rgba(10,10,10,0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 24px rgba(0,0,0,0.4);
}

.nav-logo { display: flex; align-items: center; }

.nav-logo-img {
  height: 32px;
  width: auto;
  display: block;
}


.nav-links {
  display: flex;
  list-style: none;
  gap: 36px;
  margin-left: auto;
}

.nav-links a {
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--white); }

.nav-cta { margin-left: 8px; padding: 10px 22px; font-size: 0.78rem; }

/* Burger */
.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  padding: 4px;
  background: none;
  border: none;
  cursor: pointer;
  margin-left: auto;
  flex-shrink: 0;
}
.nav-burger span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
  transform-origin: center;
}
.nav-burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* === Hero === */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  background: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Purple radial glow */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 70% at 30% 50%, rgba(139,47,201,0.3) 0%, transparent 65%),
    radial-gradient(ellipse 50% 50% at 75% 60%, rgba(139,47,201,0.12) 0%, transparent 60%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 28px;
  padding: 0 24px;
  width: 100%;
  max-width: 100%;
}

.hero-logo {
  width: min(720px, 88vw);
  height: auto;
  display: block;
}

.hero-location {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
  width: 100%;
  max-width: 100%;
}

.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 8px;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  color: rgba(255,255,255,0.25);
  z-index: 1;
}

/* === Marquee === */
.marquee-bar {
  background: var(--purple);
  overflow: hidden;
  padding: 16px 0;
  user-select: none;
}

.marquee-track {
  display: flex;
  white-space: nowrap;
  animation: marquee-scroll 28s linear infinite;
}

.marquee-track span {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
  flex-shrink: 0;
}

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

/* === About === */
.about-section {
  padding: 120px 0;
  background: var(--white);
}

.about-layout {
  display: flex;
  gap: 56px;
  align-items: flex-start;
  margin-bottom: 48px;
}

.about-body {
  flex: 1;
  min-width: 0;
}

.about-body p {
  color: var(--gray);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 18px;
}

.about-link {
  color: var(--purple);
  text-decoration: none;
  font-weight: 700;
  border-bottom: 1.5px solid rgba(139,47,201,0.35);
  transition: border-color 0.2s, color 0.2s;
}
.about-link:hover {
  color: var(--purple-dark);
  border-color: var(--purple-dark);
}

.about-brand {
  flex-shrink: 0;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 4px;
}

.hardianism-logo {
  height: 320px;
  width: auto;
}

.coords-line {
  font-size: 0.78rem !important;
  letter-spacing: 0.1em;
  color: var(--purple) !important;
  font-weight: 700;
  margin-top: 8px;
}

.discipline-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag {
  background: rgba(139,47,201,0.08);
  color: var(--purple-dark);
  border: 1.5px solid rgba(139,47,201,0.3);
  border-radius: 100px;
  padding: 8px 20px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}

/* === Full-bleed Atmospheric === */
.fullbleed-dark {
  position: relative;
  min-height: 520px;
  background: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 100px 32px;
}

.fullbleed-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 80% at 50% 50%, rgba(139,47,201,0.22) 0%, transparent 70%);
  pointer-events: none;
}

.fullbleed-rr {
  position: absolute;
  right: -60px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}

.rr-bg-mark {
  width: 480px;
  max-width: 45vw;
  opacity: 0.06;
  filter: brightness(4) saturate(0);
}

.fullbleed-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 800px;
}

.fullbleed-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  color: var(--purple-light);
  text-transform: uppercase;
  margin-bottom: 32px;
}

.fullbleed-quote {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700;
  font-style: italic;
  line-height: 1.2;
  color: var(--white);
  letter-spacing: -0.01em;
  margin-bottom: 44px;
}

/* === Schedule === */
.schedule-section {
  background: var(--dark-mid);
  padding: 120px 0;
}

.schedule-wrap {
  overflow-x: auto;
  border-radius: 12px;
  border: 1px solid var(--dark-border);
  margin-top: 48px;
  margin-bottom: 28px;
}

.schedule-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 700px;
  font-size: 0.82rem;
}

.schedule-table thead tr {
  background: var(--purple);
}

.schedule-table thead th {
  color: var(--white);
  font-weight: 700;
  text-align: center;
  padding: 14px 10px;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.schedule-table thead th:first-child {
  text-align: left;
  padding-left: 20px;
}

.schedule-table tbody tr {
  border-bottom: 1px solid rgba(255,255,255,0.04);
  transition: background 0.15s;
}

.schedule-table tbody tr:hover { background: rgba(255,255,255,0.03); }

.schedule-table td {
  text-align: center;
  padding: 13px 8px;
  vertical-align: middle;
  font-size: 0.78rem;
  line-height: 1.4;
}

.schedule-table td small {
  display: block;
  opacity: 0.65;
  font-size: 0.68rem;
  margin-top: 3px;
}

.time-cell {
  text-align: left !important;
  padding-left: 20px !important;
  color: rgba(255,255,255,0.8);
  white-space: nowrap;
  font-size: 0.78rem !important;
}

td.gi     { background: rgba(139,47,201,0.2);  color: #c084fc; border-radius: 4px; }
td.nogi   { background: rgba(99,102,241,0.2);  color: #a5b4fc; border-radius: 4px; }
td.kids   { background: rgba(251,191,36,0.15); color: #fcd34d; border-radius: 4px; }
td.female { background: rgba(244,114,182,0.15);color: #f9a8d4; border-radius: 4px; }
td.open   { background: rgba(52,211,153,0.12); color: #6ee7b7; border-radius: 4px; }
td.empty  { color: rgba(255,255,255,0.18); }

.schedule-meta {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.schedule-legend {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.legend-item {
  padding: 5px 16px;
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.legend-item.gi     { background: rgba(139,47,201,0.2);  color: #c084fc; }
.legend-item.nogi   { background: rgba(99,102,241,0.2);  color: #a5b4fc; }
.legend-item.kids   { background: rgba(251,191,36,0.15); color: #fcd34d; }
.legend-item.female { background: rgba(244,114,182,0.15);color: #f9a8d4; }
.legend-item.open   { background: rgba(52,211,153,0.12); color: #6ee7b7; }

.schedule-note {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.35);
  line-height: 1.6;
  max-width: 640px;
}

/* === Pull Quote === */
.pullquote-section {
  background: var(--light-gray);
  padding: 100px 0;
  border-top: 1px solid rgba(139,47,201,0.12);
  border-bottom: 1px solid rgba(139,47,201,0.12);
}

.pullquote-inner {
  text-align: center;
}

.pullquote-text {
  font-size: clamp(1.5rem, 3.5vw, 2.4rem);
  font-weight: 700;
  font-style: italic;
  color: var(--black);
  letter-spacing: -0.01em;
  line-height: 1.25;
}

/* === Pricing === */
.pricing-section {
  background: var(--white);
  padding: 120px 0;
}

.pricing-sub {
  color: var(--gray);
  font-size: 0.88rem;
  margin-bottom: 60px;
  max-width: 520px;
  line-height: 1.7;
}

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

.price-card {
  border: 1.5px solid #e5d4f5;
  border-radius: 14px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
  background: var(--white);
}

.price-card:hover {
  border-color: var(--purple);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(139,47,201,0.1);
}

.price-card--featured {
  border-color: var(--purple);
  box-shadow: 0 8px 32px rgba(139,47,201,0.14);
}

.price-card--best {
  border-color: var(--purple-dark);
  background: linear-gradient(150deg, #fdf4ff 0%, #fff 100%);
  box-shadow: 0 8px 32px rgba(139,47,201,0.18);
}

.card-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--purple);
  margin-bottom: 10px;
}

.price-card--best .card-label { color: var(--purple-dark); }

.price-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 16px;
}

.price-amount {
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--purple);
  line-height: 1;
  margin-bottom: 4px;
  letter-spacing: -0.02em;
}

.price-unit {
  font-size: 1.1rem;
  font-weight: 700;
}

.price-validity {
  font-size: 0.75rem;
  color: var(--gray);
  margin-bottom: 20px;
}

.price-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 28px;
  flex: 1;
}

.price-features li {
  font-size: 0.82rem;
  color: var(--gray);
  padding-left: 18px;
  position: relative;
  line-height: 1.4;
}

.price-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--purple);
  font-weight: 700;
}

/* === Contact === */
.contact-section {
  background: var(--light-gray);
  padding: 120px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
  align-items: start;
}

.contact-info .section-heading {
  margin-bottom: 20px;
}

.contact-desc {
  color: var(--gray);
  font-size: 0.92rem;
  line-height: 1.8;
  margin-bottom: 36px;
  max-width: 380px;
}

.contact-details {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 32px;
}

.contact-details li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  color: var(--gray);
  font-size: 0.88rem;
  line-height: 1.6;
}

.contact-details li small {
  font-size: 0.75rem;
  opacity: 0.8;
  display: block;
}

.detail-icon { font-size: 1.1rem; margin-top: 2px; flex-shrink: 0; }

.ig-icon {
  width: 20px;
  height: 20px;
  display: block;
}

.contact-ig-link {
  color: var(--purple);
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.04em;
  transition: color 0.2s;
}
.contact-ig-link:hover { color: var(--purple-dark); text-decoration: underline; }

.contact-map {
  border-radius: 10px;
  overflow: hidden;
  border: 1.5px solid #e5d4f5;
}

.contact-map iframe { display: block; }

/* === Form === */
.contact-form {
  background: var(--white);
  padding: 40px 36px;
  border-radius: 14px;
  border: 1.5px solid #e5d4f5;
  box-shadow: 0 4px 32px rgba(139,47,201,0.06);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 20px;
}

.form-group label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--dark);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 1.5px solid #ddd;
  border-radius: 8px;
  font-size: 0.9rem;
  font-family: var(--font);
  color: var(--dark);
  background: var(--white);
  transition: border-color 0.2s;
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--purple); }

.form-group textarea { resize: vertical; }

.form-note {
  text-align: center;
  color: var(--gray);
  font-size: 0.72rem;
  margin-top: 14px;
  letter-spacing: 0.04em;
}

/* === Footer === */
.footer {
  background: var(--black);
  padding: 56px 0;
  border-top: 1px solid rgba(139,47,201,0.15);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}

.footer-logo { height: 20px; width: auto; opacity: 0.8; }

.footer-links {
  display: flex;
  gap: 32px;
}

.footer-links a {
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--purple-light); }

.footer-address {
  color: rgba(255,255,255,0.3);
  font-size: 0.75rem;
  letter-spacing: 0.06em;
}

.footer-copy {
  color: rgba(255,255,255,0.18);
  font-size: 0.68rem;
  letter-spacing: 0.06em;
}

/* === Responsive === */
@media (max-width: 960px) {
  .pricing-grid   { grid-template-columns: repeat(2, 1fr); }
  .contact-grid   { grid-template-columns: 1fr; gap: 48px; }
  .contact-desc   { max-width: none; }
}

@media (max-width: 700px) {
  .container    { padding: 0 20px; }
  .navbar       { padding: 0 20px; gap: 16px; }
  .nav-links    { display: none; }
  .nav-cta      { display: none; }
  .nav-burger   { display: flex; }
  .nav-logo-img { height: 26px; }
  .hero-logo    { width: min(400px, 68vw); }
  .hero-location { letter-spacing: 0.1em; font-size: 0.65rem; }

  .nav-links.open {
    display: flex;
    position: absolute;
    top: 72px;
    left: 0; right: 0;
    background: rgba(10,10,10,0.97);
    backdrop-filter: blur(12px);
    flex-direction: column;
    gap: 0;
    border-top: 1px solid var(--dark-border);
    border-bottom: 1px solid var(--dark-border);
    padding: 8px 0;
  }

  .nav-links li a {
    display: block;
    padding: 16px 28px;
    font-size: 0.9rem;
  }

  .nav-links li a:hover {
    background: rgba(139,47,201,0.1);
    color: var(--white);
  }

  .about-section,
  .fullbleed-dark,
  .schedule-section,
  .pullquote-section,
  .pricing-section,
  .contact-section { padding: 72px 0; }

  .editorial-heading { letter-spacing: -0.01em; }
  .about-layout { flex-direction: column; gap: 32px; }
  .hardianism-logo { height: auto; width: 100%; max-width: 320px; }
  .pricing-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 28px 20px; }
  .hero-btns { flex-direction: column; align-items: center; }
  .fullbleed-rr { display: none; }
  .footer-links { gap: 20px; flex-wrap: wrap; justify-content: center; }
}
