/* ── reset ── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; padding: 0; }
body {
  min-height: 100vh;
  font-family: 'DM Sans', system-ui, sans-serif;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  overflow-x: hidden;
}
img, video { max-width: 100%; height: auto; display: block; }

/* ── design tokens ── */
:root {
  --bg: #f5efe4;
  --ink: #2b1e14;
  --accent: #c25a37;
  --secondary: #6a7a4a;
  --warm-light: #f0d9b5;
  --glow-y: 30%;
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
  --max-w: 1200px;
}

/* ── glow background ── */
.glow {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background: radial-gradient(circle at 50% var(--glow-y), var(--warm-light) 0%, transparent 60%);
  opacity: 0.5;
  transition: background 0.1s linear;
}

/* ── nav ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  padding: 1.25rem 1.5rem;
  z-index: 100;
  background: linear-gradient(180deg, rgba(245,239,228,0.92) 0%, transparent 100%);
  animation: navSlide 0.6s ease-out 0.6s both;
}
.nav-link {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--ink);
  opacity: 0.7;
  transition: opacity 0.2s, color 0.2s;
}
.nav-link:hover { opacity: 1; color: var(--accent); }

@keyframes navSlide {
  from { transform: translateY(-100%); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}

/* ── hero ── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 6rem 1.5rem 4rem;
  position: relative;
  z-index: 1;
}
.hero-name {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 12vw, 7rem);
  font-weight: 200;
  font-variation-settings: 'wght' 200;
  line-height: 1;
  margin: 0;
  color: var(--ink);
  letter-spacing: -0.02em;
  transition: font-variation-settings 0.4s ease;
  animation: typeIn 1.2s steps(20, end) 0.1s both;
  overflow: hidden;
  white-space: nowrap;
  border-right: 3px solid var(--accent);
  width: 0;
  animation: typeIn 1.2s steps(20, end) 0.1s forwards;
}
.hero-name:hover {
  font-variation-settings: 'wght' 900;
}
.hero-sub {
  font-family: var(--font-body);
  font-size: clamp(1rem, 2.5vw, 1.35rem);
  font-weight: 300;
  color: var(--ink);
  opacity: 0.7;
  margin: 1rem 0 0;
  animation: fadeUp 0.8s ease-out 0.7s both;
}
.hero-mark {
  margin-top: 2.5rem;
  animation: fadeUp 0.8s ease-out 1.1s both;
}
.hero-accent-mark {
  font-size: 2.5rem;
  color: var(--accent);
  opacity: 0.6;
}

@keyframes typeIn {
  from { width: 0; border-color: var(--accent); }
  to   { width: 100%; border-color: transparent; }
}
@keyframes fadeUp {
  from { transform: translateY(24px); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}

/* ── band section ── */
.band-section {
  padding: 4rem 0 5rem;
  position: relative;
  z-index: 1;
}
.section-label {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 350;
  font-variation-settings: 'wght' 350;
  color: var(--ink);
  padding: 0 1.5rem;
  max-width: var(--max-w);
  margin: 0 auto 2rem;
}
.band {
  overflow-x: auto;
  overflow-y: hidden;
  cursor: grab;
  padding: 0.5rem 1.5rem 1.5rem;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  user-select: none;
}
.band::-webkit-scrollbar { display: none; }
.band.grabbing { cursor: grabbing; }
.band-track {
  display: flex;
  gap: 1.5rem;
  width: max-content;
  padding-right: 1.5rem;
}
.band-card {
  flex: 0 0 280px;
  background: rgba(255,255,255,0.55);
  backdrop-filter: blur(4px);
  border-radius: 16px;
  padding: 1.75rem;
  border: 1px solid rgba(43,30,20,0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.band-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(43,30,20,0.08);
}
.card-visual {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  border: 1px solid rgba(194,90,55,0.15);
}
.card-icon {
  font-size: 1.3rem;
  color: var(--accent);
}
.card-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  font-variation-settings: 'wght' 500;
  margin: 0 0 0.4rem;
  color: var(--ink);
}
.card-desc {
  font-size: 0.88rem;
  line-height: 1.5;
  color: var(--ink);
  opacity: 0.7;
  margin: 0 0 0.75rem;
}
.card-price {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  font-variation-settings: 'wght' 600;
  color: var(--accent);
}

/* ── diagonal split ── */
.diagonal-split {
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 1;
  clip-path: polygon(0 6%, 100% 0, 100% 94%, 0 100%);
}
.split-left, .split-right {
  padding: 5rem 1.5rem;
}
.split-left {
  background: var(--ink);
  color: var(--bg);
}
.split-right {
  background: var(--secondary);
  color: var(--bg);
}
.split-content {
  max-width: 560px;
  margin: 0 auto;
}
.split-heading {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 350;
  font-variation-settings: 'wght' 350;
  margin: 0 0 1.25rem;
  color: inherit;
}
.split-body {
  font-size: 0.95rem;
  line-height: 1.7;
  opacity: 0.88;
  margin: 0 0 1rem;
}
.studio-address {
  font-style: italic;
  opacity: 0.7;
  font-size: 0.9rem;
  margin-top: 1.5rem;
}

/* ── approach ── */
.approach-section {
  padding: 5rem 1.5rem;
  position: relative;
  z-index: 1;
  max-width: var(--max-w);
  margin: 0 auto;
}
.approach-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}
.approach-card {
  background: rgba(255,255,255,0.5);
  backdrop-filter: blur(4px);
  border-radius: 16px;
  padding: 1.75rem;
  border: 1px solid rgba(43,30,20,0.06);
}
.approach-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  font-variation-settings: 'wght' 500;
  margin: 0 0 0.5rem;
  color: var(--ink);
}
.approach-text {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--ink);
  opacity: 0.75;
  margin: 0;
}

/* ── contact ── */
.contact-section {
  padding: 5rem 1.5rem;
  position: relative;
  z-index: 1;
  background: var(--ink);
  color: var(--bg);
  margin-top: 2rem;
}
.contact-inner {
  max-width: 560px;
  margin: 0 auto;
}
.contact-intro {
  font-size: 0.95rem;
  opacity: 0.8;
  margin: 0 0 2rem;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.form-row {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.form-label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  opacity: 0.7;
}
.form-input {
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 0.7rem 0.9rem;
  border: 1px solid rgba(245,239,228,0.2);
  border-radius: 8px;
  background: rgba(245,239,228,0.08);
  color: var(--bg);
  transition: border-color 0.2s, background 0.2s;
}
.form-input:focus {
  outline: none;
  border-color: var(--accent);
  background: rgba(245,239,228,0.14);
}
.form-textarea { resize: vertical; min-height: 90px; }
.form-btn {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
  font-variation-settings: 'wght' 500;
  padding: 0.8rem 2rem;
  border: none;
  border-radius: 8px;
  background: var(--accent);
  color: var(--bg);
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  align-self: flex-start;
}
.form-btn:hover { background: #d46a46; transform: translateY(-1px); }
.form-btn:active { transform: translateY(0); }
.form-status {
  font-size: 0.85rem;
  opacity: 0.8;
  margin: 0;
}

/* ── footer ── */
.site-footer {
  padding: 2rem 1.5rem;
  text-align: center;
  position: relative;
  z-index: 1;
  background: var(--ink);
  color: var(--bg);
  border-top: 1px solid rgba(245,239,228,0.08);
}
.footer-text {
  font-size: 0.85rem;
  opacity: 0.7;
  margin: 0 0 0.5rem;
}
.footer-text a { color: var(--accent); text-decoration: none; }
.footer-text a:hover { text-decoration: underline; }
.attribution {
  font-size: 0.7rem;
  opacity: 0.4;
}
.attribution a { color: inherit; text-decoration: none; }

/* ── responsive ── */
@media (min-width: 640px) {
  .approach-grid { grid-template-columns: 1fr 1fr; }
  .diagonal-split { flex-direction: row; }
  .split-left, .split-right {
    flex: 1;
    padding: 6rem 2.5rem;
  }
  .band-card { flex: 0 0 300px; }
}
@media (min-width: 1024px) {
  .hero-name { font-size: clamp(5rem, 10vw, 8rem); }
  .band-card { flex: 0 0 320px; }
}

/* ── reduced motion ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .hero-name {
    width: 100% !important;
    border-right: none !important;
    white-space: normal !important;
    overflow: visible !important;
  }
  .nav { animation: none !important; }
  .hero-sub, .hero-mark { animation: none !important; opacity: 1 !important; }
  .band-card:hover { transform: none !important; }
  .hero-name:hover { font-variation-settings: 'wght' 200 !important; }
}
