/* ───────────────────────── TOKENS — MIDNIGHT VELVET ───────────────────────── */
:root {
  --ink: #E4DEDD;
  --ink-soft: #B0A8AC;
  --paper: #121016;
  --paper-alt: #1B1820;
  --teal: #9B5A8C;
  --teal-soft: #C189B5;
  --sand: #5C5560;
  --plum: #C189B5;
  --line: #2E2A35;

  --display: 'Fraunces', Georgia, serif;
  --body: 'Inter', -apple-system, sans-serif;

  --max: 1080px;
  --max-narrow: 720px;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
}

:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
}

/* ───────────────────────── NAV ───────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 48px;
  background: rgba(18, 16, 22, 0.88);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.nav-mark {
  font-family: var(--display);
  font-size: 19px;
  font-weight: 500;
  letter-spacing: -0.01em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--ink-soft);
}

.nav-links a {
  position: relative;
  transition: color 0.2s ease;
}

.nav-links a:not(.nav-cta):hover { color: var(--ink); }

.nav-links a:not(.nav-cta)::after {
  content: '';
  position: absolute;
  left: 0; bottom: -6px;
  width: 0; height: 1px;
  background: var(--teal);
  transition: width 0.25s ease;
}

.nav-links a:not(.nav-cta):hover::after { width: 100%; }

.nav-cta {
  background: var(--ink);
  color: var(--paper);
  padding: 9px 18px;
  border-radius: 100px;
  transition: background 0.2s ease;
}

.nav-cta:hover { background: var(--teal); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  width: 22px; height: 1.5px;
  background: var(--ink);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

/* ───────────────────────── HERO ───────────────────────── */
.hero {
  position: relative;
  max-width: var(--max-narrow);
  margin: 0 auto;
  padding: 120px 32px 96px;
  text-align: center;
}

.breath-line {
  width: 100%;
  height: 50px;
  overflow: visible;
}

.breath-line path {
  fill: none;
  stroke: var(--teal-soft);
  stroke-width: 1.4;
  stroke-linecap: round;
  opacity: 0.55;
}

.breath-hero {
  position: absolute;
  top: 48px; left: 0;
  opacity: 0.4;
  height: 70px;
}

.eyebrow {
  font-family: var(--body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 18px;
}

.hero h1 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(40px, 6vw, 64px);
  line-height: 1.08;
  letter-spacing: -0.01em;
  margin-bottom: 28px;
}

.hero h1 em {
  font-style: italic;
  font-weight: 300;
  color: var(--ink-soft);
}

.hero-sub {
  font-size: 17.5px;
  color: var(--ink-soft);
  max-width: 540px;
  margin: 0 auto 40px;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* ───────────────────────── BUTTONS ───────────────────────── */
.btn {
  display: inline-block;
  padding: 13px 28px;
  border-radius: 100px;
  font-size: 14.5px;
  font-weight: 600;
  transition: all 0.22s ease;
}

.btn-primary {
  background: var(--ink);
  color: var(--paper);
}

.btn-primary:hover {
  background: var(--teal);
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line);
}

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

.link-arrow {
  display: inline-block;
  margin-top: 8px;
  font-weight: 600;
  font-size: 14.5px;
  color: var(--teal);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease;
}

.link-arrow:hover { border-color: var(--teal); }

/* ───────────────────────── SECTIONS ───────────────────────── */
.section {
  padding: 96px 32px;
}

.section.alt {
  background: var(--paper-alt);
}

.section-inner {
  max-width: var(--max);
  margin: 0 auto;
}

.section-inner.narrow {
  max-width: var(--max-narrow);
}

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

.section h2 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1.18;
  letter-spacing: -0.01em;
  margin-bottom: 28px;
  max-width: 640px;
}

.section-inner.center h2 { margin-left: auto; margin-right: auto; }

.lede {
  font-size: 18.5px;
  color: var(--ink-soft);
  max-width: 620px;
  margin-bottom: 18px;
}

.section p:not(.lede):not(.eyebrow) {
  max-width: 620px;
  margin-bottom: 18px;
  color: var(--ink-soft);
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  margin-top: 12px;
}

.grid-2 p { max-width: none; }

/* ───────────────────────── EVENT FEATURE ───────────────────────── */
.event-feature {
  margin-top: 40px;
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 48px;
  align-items: start;
}

.event-feature-image {
  border-radius: 8px;
  overflow: hidden;
  background: var(--paper-alt);
}

.event-feature-image img {
  width: 100%;
  height: auto;
  display: block;
}

.event-date {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--sand);
  margin-bottom: 10px;
}

.event-feature-body h3 {
  font-family: var(--display);
  font-size: 28px;
  font-weight: 500;
  margin-bottom: 14px;
}

.event-feature-body p {
  max-width: 460px;
}

.event-dates {
  list-style: none;
  margin: 20px 0 22px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.event-dates li {
  display: flex;
  gap: 16px;
  font-size: 15px;
  color: var(--ink);
  padding-bottom: 8px;
  border-bottom: 1px solid var(--line);
  max-width: 320px;
}

.event-dates li span:first-child {
  font-weight: 600;
  width: 90px;
}

.event-dates li span:last-child {
  color: var(--ink-soft);
}

.event-price {
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 22px !important;
}

/* ───────────────────────── TESTIMONIALS ───────────────────────── */
.testimonials {
  overflow: hidden;
  padding-bottom: 96px;
}

.testimonial-track {
  display: flex;
  gap: 24px;
  margin-top: 32px;
  animation: scroll-testimonials 60s linear infinite;
  width: max-content;
}

.testimonials:hover .testimonial-track {
  animation-play-state: paused;
}

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

.testimonial-card {
  flex: 0 0 380px;
  background: var(--paper-alt);
  border-radius: 8px;
  padding: 32px;
  display: flex;
  flex-direction: column;
}

.testimonial-quote {
  font-size: 15px;
  color: var(--ink-soft);
  margin-bottom: 20px;
  flex-grow: 1;
}

.testimonial-name {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--plum);
}

.testimonial-role {
  font-size: 13px;
  color: var(--sand);
}

/* ───────────────────────── BLOG ───────────────────────── */
.blog-list {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
}

.blog-item {
  display: block;
  padding: 28px 0;
  border-top: 1px solid var(--line);
  transition: padding-left 0.25s ease;
}

.blog-item:hover {
  padding-left: 10px;
}

.blog-tag {
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--sand);
}

.blog-item h3 {
  font-family: var(--display);
  font-size: 21px;
  font-weight: 500;
  margin: 8px 0 8px;
}

.blog-item p {
  color: var(--ink-soft);
  max-width: 560px;
  margin: 0;
}

/* ───────────────────────── SIGNUP FORM ───────────────────────── */
.signup-form {
  display: flex;
  gap: 10px;
  max-width: 420px;
  margin: 32px auto 12px;
}

.signup-form input {
  flex: 1;
  padding: 13px 18px;
  border: 1px solid var(--line);
  border-radius: 100px;
  background: var(--paper);
  font-family: var(--body);
  font-size: 14.5px;
  color: var(--ink);
}

.signup-form input:focus {
  outline: none;
  border-color: var(--teal);
}

.signup-form button {
  padding: 13px 26px;
  border-radius: 100px;
  background: var(--ink);
  color: var(--paper);
  border: none;
  font-family: var(--body);
  font-size: 14.5px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease;
}

.signup-form button:hover { background: var(--teal); }

.form-note {
  font-size: 12.5px;
  color: var(--sand);
  max-width: none;
}

.contact-cta {
  margin-top: 40px;
}

/* ───────────────────────── FOOTER ───────────────────────── */
.footer {
  padding: 56px 32px;
  border-top: 1px solid var(--line);
}

.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-mark {
  font-family: var(--display);
  font-size: 16px;
}

.footer-social {
  display: flex;
  gap: 24px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-soft);
}

.footer-social a:hover { color: var(--teal); }

.footer-copy {
  font-size: 13px;
  color: var(--sand);
  width: 100%;
  text-align: center;
  margin-top: 8px;
}

/* ───────────────────────── RESPONSIVE ───────────────────────── */
@media (max-width: 860px) {
  .grid-2 { grid-template-columns: 1fr; gap: 24px; }

  .event-feature { grid-template-columns: 1fr; gap: 28px; }
  .event-feature-image { max-width: 320px; }

  .nav-links {
    position: fixed;
    top: 73px; left: 0; right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    transform: translateY(-110%);
    transition: transform 0.3s ease;
    padding: 8px 32px 20px;
  }

  .nav-links.open { transform: translateY(0); }

  .nav-links a:not(.nav-cta) {
    width: 100%;
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
  }

  .nav-links a:not(.nav-cta)::after { display: none; }

  .nav-cta { margin-top: 16px; }

  .nav-toggle { display: flex; }
}

@media (max-width: 600px) {
  .nav { padding: 18px 20px; }
  .hero { padding: 90px 20px 72px; }
  .section { padding: 72px 20px; }
  .signup-form { flex-direction: column; }
}
