/* ============================================================
   Roundline Booking Agency — Stylesheet
   Visual system: 2over3 design language
   Colors: deep black / iPhone 17 orange / warm dust
   Fonts: Cormorant Garamond (display) + DM Sans (body) + Space Mono (mono)
   ============================================================ */

/* ─── Variables ──────────────────────────────────────────── */
:root {
  --black:        #0a0908;
  --deep:         #111010;
  --surface:      #181614;
  --surface-2:    #1f1c19;
  --white:        #f5f0e8;
  --text:         #ede8df;
  --text-muted:   rgba(237,232,223,0.55);
  --text-faint:   rgba(237,232,223,0.28);
  --border:       rgba(237,232,223,0.08);
  --border-mid:   rgba(237,232,223,0.14);

  /* 2over3 orange accent */
  --orange:       #FF6B2B;
  --orange-deep:  #E85520;
  --orange-pale:  rgba(255,107,43,0.07);

  /* Legacy aliases so existing PHP/HTML refs still resolve */
  --bg:           #181614;
  --blue:         #FF6B2B;
  --blue-dark:    #E85520;
  --blue-pale:    rgba(255,107,43,0.07);
  --border-mid-light: rgba(237,232,223,0.14);

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'DM Sans', system-ui, -apple-system, sans-serif;
  --font-mono:    'Space Mono', monospace;
  --max-w:        1100px;
  --max-w-narrow: 760px;
  --header-h:     68px;
  --radius:       6px;
  --radius-lg:    14px;
  --radius-pill:  100px;
  --transition:   0.22s ease;
}

/* ─── Reset ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--black);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
ul { list-style: none; }

/* ─── Typography ─────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--white);
}
h1 { font-size: clamp(3rem, 7vw, 5.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 1.9rem); }
h4 { font-size: 1.2rem; font-family: var(--font-body); font-weight: 500; letter-spacing: 0; }
p  { line-height: 1.75; }

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
}

/* ─── Layout Helpers ─────────────────────────────────────── */
.container { width: 100%; max-width: var(--max-w); margin: 0 auto; padding: 0 2rem; }
.container--narrow { max-width: var(--max-w-narrow); }
.section { padding: 6rem 0; }
.section--sm { padding: 4rem 0; }
.divider { width: 100%; height: 1px; background: var(--border); }
.divider--blue { background: var(--orange); width: 48px; height: 2px; margin: 1.5rem 0; }

/* ─── Scroll Reveal — one element appears then the next ─── */
.rl-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity  0.85s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
}
.rl-reveal.rl-from-left  { transform: translateX(-36px); }
.rl-reveal.rl-from-right { transform: translateX(36px); }
.rl-reveal.rl-scale      { transform: scale(0.94); }
.rl-reveal.rl-visible    { opacity: 1; transform: none; }
/* Sibling stagger */
.rl-reveal:nth-child(2) { transition-delay: 0.12s; }
.rl-reveal:nth-child(3) { transition-delay: 0.24s; }
.rl-reveal:nth-child(4) { transition-delay: 0.36s; }

/* ─── Buttons ────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.75rem 1.75rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  border-radius: var(--radius-pill);
  transition: background var(--transition), color var(--transition),
              border-color var(--transition), box-shadow var(--transition);
  cursor: pointer;
  border: 1.5px solid transparent;
  white-space: nowrap;
}
.btn--primary {
  background: var(--orange);
  color: #fff;
  border-color: var(--orange);
}
.btn--primary:hover, .btn--primary:focus-visible {
  background: var(--orange-deep);
  border-color: var(--orange-deep);
  box-shadow: 0 4px 20px rgba(255,107,43,0.35);
}
.btn--outline {
  background: rgba(237,232,223,0.06);
  color: var(--text);
  border-color: var(--border-mid);
}
.btn--outline:hover, .btn--outline:focus-visible {
  background: rgba(237,232,223,0.11);
  border-color: rgba(237,232,223,0.28);
}
.btn--ghost {
  background: transparent;
  color: var(--orange);
  border-color: transparent;
  padding-left: 0;
  padding-right: 0;
}
.btn--ghost:hover { color: var(--orange-deep); }
.btn-group { display: flex; flex-wrap: wrap; gap: 0.75rem; align-items: center; }
.btn .arrow { font-style: normal; margin-left: 0.2rem; }

/* ─── Header — floating pill (handna/2over3 technique) ───── */
.site-header {
  position: fixed;
  top: 1rem; left: 0; right: 0;
  z-index: 100;
  padding: 0 1.5rem;
  pointer-events: none;
  height: auto; /* override old fixed height */
}
.header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  background: rgba(17,16,14,0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border-mid);
  border-radius: var(--radius-pill);
  padding: 0 1.25rem 0 1rem;
  pointer-events: all;
  transition: box-shadow 0.3s ease;
}
.header-inner.scrolled {
  box-shadow: 0 4px 32px rgba(0,0,0,0.55), 0 0 0 1px rgba(255,107,43,0.1);
}

/* Brand — Roundline name + original circle SVG mark */
.brand {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--white);
  flex-shrink: 0;
}
.brand-mark { color: var(--orange); flex-shrink: 0; }
.brand-name { line-height: 1; color: var(--white); }

/* Nav links */
.main-nav ul { display: flex; align-items: center; gap: 0.1rem; }
.main-nav a {
  display: block;
  padding: 0.4rem 0.85rem;
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--text-muted);
  border-radius: var(--radius-pill);
  transition: color var(--transition), background var(--transition);
}
.main-nav a:hover,
.main-nav li.active a {
  color: var(--white);
  background: rgba(237,232,223,0.07);
}
.main-nav li.active a { font-weight: 500; }

/* Booking link — orange pill */
.main-nav li:last-child a {
  background: var(--orange);
  color: #fff;
  border-radius: var(--radius-pill);
  padding: 0.4rem 1.1rem;
  font-weight: 500;
}
.main-nav li:last-child a:hover { background: var(--orange-deep); }

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  background: none;
  border: none;
  cursor: pointer;
  border-radius: var(--radius);
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--white);
  transition: transform 0.22s ease, opacity 0.22s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ─── Page Wrap ──────────────────────────────────────────── */
.page-wrap {
  padding-top: calc(var(--header-h) + 1rem);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
main { flex: 1; }

/* ─── Hero (Home) ────────────────────────────────────────── */
.hero-home {
  position: relative;
  min-height: calc(100vh - var(--header-h));
  display: flex;
  align-items: center;
  padding: 5rem 0 4rem;
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  background: var(--black);
}
/* Ambient orange glow */
.hero-home::before {
  content: '';
  position: absolute;
  top: -15%; right: -5%;
  width: 55%; height: 90%;
  background: radial-gradient(ellipse 60% 65% at 70% 30%, rgba(255,107,43,0.1) 0%, transparent 65%);
  pointer-events: none;
}
.hero-home::after {
  content: '';
  position: absolute;
  bottom: -10%; left: -5%;
  width: 40%; height: 60%;
  background: radial-gradient(ellipse 55% 50% at 30% 70%, rgba(201,168,76,0.05) 0%, transparent 70%);
  pointer-events: none;
}
.hero-home .container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.hero-home__eyebrow { margin-bottom: 1.25rem; }
.hero-home h1 { margin-bottom: 1.5rem; }
.hero-home__sub {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 400px;
  margin-bottom: 2.5rem;
}
.hero-home__visual { display: flex; align-items: center; justify-content: center; }

/* Original circle mark — restyled for dark bg */
.hero-bg-mark {
  width: 360px; height: 360px;
  border-radius: 50%;
  border: 1px solid rgba(255,107,43,0.12);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: slowSpin 40s linear infinite;
}
.hero-bg-mark::before {
  content: '';
  position: absolute;
  width: 260px; height: 260px;
  border-radius: 50%;
  border: 1px solid rgba(237,232,223,0.06);
}
.hero-bg-mark::after {
  content: '';
  position: absolute;
  width: 160px; height: 160px;
  border-radius: 50%;
  background: rgba(255,107,43,0.05);
  border: 1px solid rgba(255,107,43,0.15);
}
.hero-bg-mark svg { position: relative; z-index: 1; color: var(--orange); }
@keyframes slowSpin { to { transform: rotate(360deg); } }

/* ─── Section: What We Do ────────────────────────────────── */
.what-we-do { border-bottom: 1px solid var(--border); }
.what-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
.what-grid__right { padding-top: 0.5rem; }
.what-grid__right p { color: var(--text-muted); margin-bottom: 1.5rem; }

/* ─── Section: Touring ───────────────────────────────────── */
.touring {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}
.touring-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
.touring-inner p { color: var(--text-muted); margin-bottom: 1.75rem; }
.touring-list { display: flex; flex-direction: column; gap: 0.75rem; }
.touring-list li {
  display: flex; align-items: center; gap: 0.75rem;
  font-size: 0.9rem; color: var(--text-muted);
}
.touring-list li::before {
  content: ''; display: block;
  width: 20px; height: 1px;
  background: var(--orange); flex-shrink: 0;
}

/* ─── Artist Cards — glassmorphism on dark ───────────────── */
.artists-section { border-bottom: 1px solid var(--border); }
.section-header {
  display: flex; align-items: flex-end;
  justify-content: space-between; margin-bottom: 3.5rem;
}
.artists-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.artist-card {
  position: relative;
  background: linear-gradient(135deg, rgba(38,34,28,0.9), rgba(18,16,14,0.5));
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-mid);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color var(--transition),
              box-shadow var(--transition),
              transform 0.35s cubic-bezier(0.22,1,0.36,1);
}
.artist-card:hover {
  border-color: rgba(255,107,43,0.4);
  box-shadow: 0 8px 40px rgba(255,107,43,0.12);
  transform: translateY(-3px);
}
.artist-card__image {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--surface);
  position: relative;
}
.artist-card__image::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 50%;
  background: linear-gradient(to bottom, transparent, rgba(10,9,8,0.65));
}
.artist-card__image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.22,1,0.36,1);
}
.artist-card:hover .artist-card__image img { transform: scale(1.04); }
.artist-card__body { padding: 1.75rem; position: relative; z-index: 1; }
.artist-card__name {
  font-family: var(--font-display);
  font-size: 1.5rem; font-weight: 600;
  letter-spacing: -0.02em; margin-bottom: 0.25rem;
  color: var(--white);
}
.artist-card__genre {
  font-size: 0.8rem; color: var(--orange);
  font-weight: 500; letter-spacing: 0.08em;
  text-transform: uppercase; margin-bottom: 0.75rem;
}
.artist-card__desc { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 1.5rem; }
.artist-card__actions { display: flex; gap: 0.75rem; }

/* ─── Artist Hero (individual pages) ─────────────────────── */
.artist-hero {
  position: relative;
  padding: 5rem 0 4rem;
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.artist-hero::before {
  content: '';
  position: absolute; top: 0; right: 0;
  width: 50%; height: 100%;
  background: radial-gradient(ellipse 70% 80% at 80% 30%, rgba(255,107,43,0.07) 0%, transparent 65%);
  pointer-events: none;
}
.artist-hero .container {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 1.1fr;
  gap: 4rem; align-items: center;
}
.artist-hero__image {
  aspect-ratio: 4/5; overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid var(--border-mid);
  box-shadow: 0 8px 40px rgba(0,0,0,0.4);
}
.artist-hero__image img { width: 100%; height: 100%; object-fit: cover; }
.artist-hero h1 { font-size: clamp(2.5rem, 5vw, 4rem); margin-bottom: 0.4rem; }
.artist-hero__instrument {
  font-family: var(--font-body);
  font-size: 0.9rem; color: var(--orange);
  font-weight: 500; letter-spacing: 0.08em;
  text-transform: uppercase; margin-bottom: 1rem;
}
.artist-hero__sub {
  font-size: 1.15rem; color: var(--text-muted);
  margin-bottom: 2rem; max-width: 380px;
}

/* ─── Video Section ──────────────────────────────────────── */
.video-section { border-bottom: 1px solid var(--border); }
.video-wrapper {
  position: relative; padding-bottom: 56.25%; height: 0;
  overflow: hidden; background: #111;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}
.video-wrapper iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: none; }
.video-placeholder {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 1rem;
  background: #0d0d0d;
  color: rgba(255,255,255,0.25); font-size: 0.85rem;
}
.video-placeholder svg { opacity: 0.2; }

/* ─── Artist Detail Sections ─────────────────────────────── */
.artist-detail .container { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
.detail-block { margin-bottom: 2.5rem; }
.detail-block h3 {
  font-size: 0.72rem; font-family: var(--font-body);
  font-weight: 500; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--orange); margin-bottom: 1rem;
}
.detail-list { display: flex; flex-direction: column; gap: 0.6rem; }
.detail-list li {
  display: flex; align-items: center;
  gap: 0.75rem; font-size: 0.9rem; color: var(--text-muted);
}
.detail-list li::before {
  content: ''; display: block;
  width: 16px; height: 1px;
  background: var(--orange); flex-shrink: 0;
}

/* ─── CTA Block ──────────────────────────────────────────── */
.cta-block {
  position: relative; overflow: hidden;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 5rem 0; text-align: center;
}
.cta-block::before {
  content: '';
  position: absolute; top: -50%; left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 400px;
  background: radial-gradient(ellipse, rgba(255,107,43,0.1) 0%, transparent 65%);
  pointer-events: none;
}
.cta-block h2 { margin-bottom: 0.75rem; position: relative; z-index: 1; }
.cta-block p { color: var(--text-muted); margin-bottom: 2rem; font-size: 1rem; position: relative; z-index: 1; }

/* ─── Artists / page-hero ─────────────────────────────────── */
.page-hero {
  position: relative; overflow: hidden;
  padding: 5rem 0 3.5rem;
  border-bottom: 1px solid var(--border);
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 50% 80% at 15% 50%, rgba(255,107,43,0.07) 0%, transparent 60%);
  pointer-events: none;
}
.page-hero p { font-size: 1.1rem; color: var(--text-muted); margin-top: 0.75rem; }

/* ─── Events ─────────────────────────────────────────────── */
.events-grid { display: flex; flex-direction: column; gap: 0; }
.event-row {
  display: grid; grid-template-columns: 140px 1fr auto;
  gap: 2rem; align-items: center;
  padding: 1.75rem 0;
  border-bottom: 1px solid var(--border);
  transition: background var(--transition), padding var(--transition), border-radius var(--transition);
}
.event-row:first-child { border-top: 1px solid var(--border); }
.event-row:hover {
  background: rgba(255,107,43,0.05);
  border-radius: var(--radius);
  padding-left: 1rem; padding-right: 1rem;
  margin: 0 -1rem;
}
.event-date {
  text-align: center; padding: 0.75rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
}
.event-date__month { font-size: 0.7rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--orange); }
.event-date__day { font-family: var(--font-display); font-size: 2rem; font-weight: 600; line-height: 1; margin: 0.15rem 0; color: var(--white); }
.event-date__year { font-size: 0.75rem; color: var(--text-faint); }
.event-info__artist { font-size: 0.72rem; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: var(--orange); margin-bottom: 0.3rem; }
.event-info__title { font-family: var(--font-display); font-size: 1.4rem; font-weight: 600; margin-bottom: 0.3rem; color: var(--white); }
.event-info__meta { font-size: 0.85rem; color: var(--text-muted); }
.event-ticket { text-align: right; }
.event-ticket__price { font-size: 1rem; font-weight: 500; margin-bottom: 0.75rem; color: var(--white); }
.badge {
  display: inline-block; font-size: 0.7rem; font-weight: 500;
  letter-spacing: 0.06em; text-transform: uppercase;
  padding: 0.25rem 0.6rem; border-radius: 3px; border: 1px solid;
}
.badge--blue { color: var(--orange); border-color: var(--orange); background: var(--orange-pale); }
.badge--sold { color: var(--text-faint); border-color: var(--border); }

/* ─── Booking / Contact Forms ────────────────────────────── */
.booking-layout { display: grid; grid-template-columns: 1fr 340px; gap: 4rem; align-items: start; }
.form-section-title {
  font-size: 0.7rem; font-weight: 500; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--orange);
  margin: 2rem 0 1.25rem; padding-bottom: 0.6rem;
  border-bottom: 1px solid var(--border);
}
.form-section-title:first-of-type { margin-top: 0; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group--full { grid-column: 1 / -1; }
label { font-size: 0.82rem; font-weight: 500; color: var(--text); }
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="date"],
input[type="number"],
input[type="url"],
select,
textarea {
  width: 100%;
  padding: 0.65rem 0.85rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text);
  background: var(--surface-2);
  border: 1.5px solid var(--border-mid);
  border-radius: var(--radius);
  transition: border-color var(--transition), box-shadow var(--transition);
  appearance: none; -webkit-appearance: none;
}
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(255,107,43,0.1);
}
textarea { resize: vertical; min-height: 140px; }
select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23FF6B2B' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 0.9rem center; padding-right: 2.2rem;
}
.radio-group { display: flex; gap: 1.5rem; }
.radio-label { display: flex; align-items: center; gap: 0.4rem; font-size: 0.9rem; cursor: pointer; }
input[type="radio"] { accent-color: var(--orange); }
.form-submit { margin-top: 2rem; }
.honeypot { display: none !important; visibility: hidden; }

/* Sidebar info boxes */
.info-box {
  background: linear-gradient(135deg, rgba(38,34,28,0.9), rgba(18,16,14,0.5));
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-mid);
  border-radius: var(--radius-lg);
  padding: 1.75rem; margin-bottom: 1.5rem;
}
.info-box h4 { font-family: var(--font-display); font-size: 1.1rem; margin-bottom: 1rem; color: var(--white); }
.info-box ul { display: flex; flex-direction: column; gap: 0.5rem; }
.info-box ul li { display: flex; gap: 0.6rem; font-size: 0.875rem; color: var(--text-muted); align-items: flex-start; }
.info-box ul li::before { content: '—'; color: var(--orange); flex-shrink: 0; font-size: 0.8rem; margin-top: 0.1rem; }

/* Form alerts */
.alert { padding: 1rem 1.25rem; border-radius: var(--radius); font-size: 0.875rem; margin-bottom: 1.5rem; }
.alert--success { background: rgba(16,185,129,0.08); border: 1px solid rgba(16,185,129,0.25); color: #6ee7b7; }
.alert--error   { background: rgba(239,68,68,0.08);  border: 1px solid rgba(239,68,68,0.25);  color: #fca5a5; }

/* ─── Thank You Page ─────────────────────────────────────── */
.thankyou-page { min-height: calc(100vh - var(--header-h)); display: flex; align-items: center; justify-content: center; text-align: center; padding: 4rem 2rem; }
.thankyou-page__inner { max-width: 480px; }
.thankyou-page svg { color: var(--orange); margin: 0 auto 1.5rem; }
.thankyou-page h1 { font-size: clamp(2rem, 5vw, 3rem); margin-bottom: 0.75rem; }
.thankyou-page p { color: var(--text-muted); margin-bottom: 2rem; }

/* ─── Footer ─────────────────────────────────────────────── */
.site-footer {
  border-top: 1px solid var(--border);
  background: var(--surface);
  position: relative; overflow: hidden;
}
.site-footer::before {
  content: '';
  position: absolute; bottom: 0; left: 50%; transform: translateX(-50%);
  width: 400px; height: 200px;
  background: radial-gradient(ellipse, rgba(255,107,43,0.05) 0%, transparent 70%);
  pointer-events: none;
}
.footer-inner {
  max-width: var(--max-w); margin: 0 auto;
  padding: 3.5rem 2rem 3rem;
  display: grid; grid-template-columns: 200px 1fr auto;
  gap: 3rem; align-items: start;
  position: relative; z-index: 1;
}
.footer-brand {
  display: flex; align-items: center; gap: 0.5rem;
  font-family: var(--font-display); font-size: 1rem;
  font-weight: 700; letter-spacing: -0.02em; color: var(--white);
}
.footer-brand svg { color: var(--orange); }
.footer-details p,
.footer-details a { display: block; font-size: 0.85rem; color: var(--text-muted); line-height: 1.9; }
.footer-details a:hover { color: var(--orange); }
.footer-nav { display: flex; flex-direction: column; gap: 0.4rem; }
.footer-nav a { font-size: 0.85rem; color: var(--text-muted); transition: color var(--transition); }
.footer-nav a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 1.25rem 2rem;
  max-width: var(--max-w); margin: 0 auto; width: 100%;
  position: relative; z-index: 1;
}
.footer-bottom p { font-size: 0.78rem; color: var(--text-faint); }

/* ─── Focus Styles ───────────────────────────────────────── */
:focus-visible { outline: 2px solid var(--orange); outline-offset: 3px; border-radius: 2px; }

/* ─── Responsive ─────────────────────────────────────────── */
@media (max-width: 900px) {
  .hero-home .container { grid-template-columns: 1fr; gap: 3rem; }
  .hero-bg-mark { width: 240px; height: 240px; }
  .hero-bg-mark::before { width: 170px; height: 170px; }
  .hero-bg-mark::after { width: 100px; height: 100px; }
  .what-grid, .touring-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .artists-grid { grid-template-columns: 1fr; }
  .artist-hero .container { grid-template-columns: 1fr; }
  .artist-hero__image { max-width: 420px; aspect-ratio: 3/2; }
  .artist-detail .container { grid-template-columns: 1fr; gap: 2rem; }
  .booking-layout { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .event-row { grid-template-columns: 100px 1fr; }
  .event-ticket { grid-column: 2; }
}

@media (max-width: 640px) {
  :root { --header-h: 60px; }
  .container { padding: 0 1.25rem; }
  .section { padding: 4rem 0; }
  h1 { font-size: 2.5rem; }
  h2 { font-size: 1.75rem; }
  .nav-toggle { display: flex; }
  .main-nav {
    position: fixed;
    top: calc(var(--header-h) + 1rem);
    left: 1rem; right: 1rem;
    background: rgba(24,22,20,0.97);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid var(--border-mid);
    border-radius: var(--radius-lg);
    padding: 1.25rem;
    flex-direction: column;
    display: none;
    z-index: 99;
  }
  .main-nav.open { display: flex; }
  .main-nav ul { flex-direction: column; gap: 0.25rem; }
  .main-nav li:last-child a { text-align: center; display: block; margin-top: 0.5rem; }
  .main-nav a {
    font-size: 1rem; padding: 0.75rem 1rem;
    border-radius: var(--radius);
    border-bottom: none;
  }
  .main-nav a:hover { background: rgba(255,107,43,0.08); color: var(--orange); }
  .form-grid { grid-template-columns: 1fr; }
  .form-group--full { grid-column: 1; }
  .artists-grid { grid-template-columns: 1fr; }
  .event-row { grid-template-columns: 1fr; gap: 1rem; }
  .event-date { display: flex; gap: 0.5rem; align-items: center; text-align: left; max-width: 200px; }
  .event-ticket { text-align: left; }
  .hero-home { min-height: auto; padding: 3rem 0; }
  .hero-bg-mark { display: none; }
  .section-header { flex-direction: column; align-items: flex-start; gap: 1rem; }
}
