:root {
  --bg: #0e0e10;
  --bg-alt: #16161a;
  --fg: #f5f5f7;
  --muted: #a1a1aa;
  --accent: #ff5b3a;
  --accent-2: #ffd166;
  --border: #26262c;
  --radius: 14px;
  --max: 1100px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  background: var(--bg);
  color: var(--fg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin: 0 0 0.5em;
}

h1 { font-size: clamp(2.5rem, 6vw, 4.75rem); }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.5rem); margin-bottom: 0.75em; }
h3 { font-size: 1.15rem; }

p { margin: 0 0 1em; }

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

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Nav */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  background: rgba(14, 14, 16, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
}
.logo-mark {
  color: var(--accent);
  width: 1.5rem;
  height: 1.5rem;
  display: inline-block;
}

.nav nav { display: flex; gap: 1.75rem; }
.nav nav a {
  color: var(--muted);
  font-size: 0.95rem;
  transition: color 0.2s;
}
.nav nav a:hover { color: var(--fg); }

.menu-toggle {
  display: none;
  background: none;
  border: 0;
  color: var(--fg);
  font-size: 1.5rem;
  cursor: pointer;
}

/* Hero */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  padding: 4rem 1.5rem;
  overflow: hidden;
}
.hero-inner {
  position: relative;
  z-index: 2;
  max-width: var(--max);
  margin: 0 auto;
  width: 100%;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse at 20% 30%, rgba(255, 91, 58, 0.22), transparent 55%),
    radial-gradient(ellipse at 80% 70%, rgba(255, 209, 102, 0.15), transparent 55%),
    radial-gradient(ellipse at 50% 100%, rgba(95, 110, 255, 0.18), transparent 60%);
  filter: blur(20px);
  animation: drift 18s ease-in-out infinite alternate;
}
@keyframes drift {
  to { transform: translate3d(-3%, 2%, 0) scale(1.05); }
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 1rem;
}
.accent { color: var(--accent); font-style: italic; }
.lead {
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  color: var(--muted);
  max-width: 36rem;
  margin-bottom: 2rem;
}

/* Buttons */
.cta-row { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.btn {
  display: inline-block;
  padding: 0.85rem 1.5rem;
  border-radius: 999px;
  font-weight: 500;
  font-size: 0.95rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s, background 0.2s, color 0.2s;
}
.btn-primary {
  background: var(--accent);
  color: #1a0a06;
}
.btn-primary:hover { transform: translateY(-1px); background: #ff7050; }
.btn-ghost {
  background: transparent;
  color: var(--fg);
  border-color: var(--border);
}
.btn-ghost:hover { border-color: var(--fg); }

/* Sections */
.section { padding: 6rem 0; }
.section-alt { background: var(--bg-alt); }

.two-col {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  align-items: start;
}
.prose { color: var(--muted); max-width: 38rem; }

/* Cards */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}
.grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
}
.card {
  padding: 1.75rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: transform 0.2s, border-color 0.2s;
}
.card:hover { transform: translateY(-3px); border-color: var(--accent); }
.card h3 { margin-bottom: 0.5rem; }
.card p { color: var(--muted); margin: 0 0 0.75rem; font-size: 0.95rem; }
.card p:last-child { margin-bottom: 0; }

.style-card .card-meta {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.72rem;
  color: var(--accent);
  margin-bottom: 1rem;
}

/* Pricing */
.price-card {
  display: flex;
  flex-direction: column;
  position: relative;
}
.price-card .price {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--fg);
  margin: 0.25rem 0 1.25rem;
}
.price-card .price span {
  font-size: 1rem;
  color: var(--muted);
  font-weight: 400;
  margin-left: 0.25rem;
}
.price-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  display: grid;
  gap: 0.5rem;
  color: var(--muted);
  font-size: 0.95rem;
  flex: 1;
}
.price-card ul li {
  padding-left: 1.25rem;
  position: relative;
}
.price-card ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--accent);
}
.price-card .btn { align-self: flex-start; }
.price-card.featured {
  border-color: var(--accent);
  background: linear-gradient(180deg, rgba(255, 91, 58, 0.08), transparent);
}
.price-card .badge {
  position: absolute;
  top: -0.7rem;
  left: 1.5rem;
  background: var(--accent);
  color: #1a0a06;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  margin: 0;
  font-weight: 500;
}

.note {
  margin-top: 1.5rem;
  font-size: 0.85rem;
  color: var(--muted);
  font-style: italic;
}

/* Schedule */
.table-wrap {
  margin-top: 2rem;
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.schedule {
  width: 100%;
  border-collapse: collapse;
  min-width: 520px;
}
.schedule th, .schedule td {
  text-align: left;
  padding: 0.9rem 1.25rem;
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
}
.schedule th {
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  color: var(--muted);
  font-weight: 500;
  background: var(--bg);
}
.schedule tbody tr:last-child td { border-bottom: 0; }
.schedule tbody tr:hover { background: rgba(255, 91, 58, 0.04); }
.schedule td:first-child { font-weight: 500; color: var(--accent); }

/* Contact */
.contact-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
  display: grid;
  gap: 0.75rem;
}
.contact-list li {
  display: flex;
  gap: 1rem;
  align-items: baseline;
}
.contact-list strong {
  color: var(--muted);
  font-weight: 500;
  width: 6rem;
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
}

.form {
  display: grid;
  gap: 1rem;
  background: var(--bg);
  padding: 2rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}
.form label { display: grid; gap: 0.4rem; font-size: 0.85rem; color: var(--muted); }
.form input,
.form select,
.form textarea {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  color: var(--fg);
  border-radius: 8px;
  padding: 0.7rem 0.85rem;
  font: inherit;
  transition: border-color 0.2s;
}
.form input:focus,
.form select:focus,
.form textarea:focus {
  outline: none;
  border-color: var(--accent);
}
.form .btn { justify-self: start; }
.form-status { margin: 0; color: var(--accent-2); font-size: 0.9rem; min-height: 1em; }

/* Footer */
.footer {
  border-top: 1px solid var(--border);
  padding: 2rem 0;
  color: var(--muted);
  font-size: 0.9rem;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer a:hover { color: var(--fg); }

/* Responsive */
@media (max-width: 720px) {
  .nav nav { display: none; }
  .nav nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    padding: 1rem 1.5rem;
    gap: 1rem;
  }
  .menu-toggle { display: block; }
  .two-col { grid-template-columns: 1fr; gap: 2rem; }
  .section { padding: 4rem 0; }
  .hero { min-height: 70vh; padding: 3rem 1.5rem; }
}
