:root {
  --bg: #0f0e0c;
  --panel: #171411;
  --panel-2: #211d19;
  --text: #eee8df;
  --muted: #b5a99a;
  --line: rgba(238, 232, 223, 0.14);
  --accent: #d1a369;
  --max: 1120px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

img { width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1rem clamp(1rem, 4vw, 3rem);
  background: rgba(15, 14, 12, 0.82);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.brand {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.2rem;
  letter-spacing: 0.04em;
}

nav {
  display: flex;
  gap: clamp(0.8rem, 2vw, 1.5rem);
  font-size: 0.86rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

nav a:hover, .text-link:hover { color: var(--accent); }

.section-pad {
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto;
  padding: clamp(4rem, 8vw, 7rem) 0;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 1.1fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
  min-height: calc(100svh - 74px);
}

.hero-copy { max-width: 620px; }
.eyebrow {
  color: var(--accent);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin: 0 0 0.8rem;
}

h1, h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  line-height: 1.05;
  margin: 0;
}

h1 { font-size: clamp(4rem, 10vw, 8.5rem); }
h2 { font-size: clamp(2.4rem, 5vw, 4.4rem); }

.subtitle {
  color: var(--muted);
  font-size: clamp(1.1rem, 2.2vw, 1.55rem);
  margin: 1rem 0 1.4rem;
}

.intro, .narrow p, .feature-copy p, .split-text p, .contact p {
  color: var(--muted);
  font-size: 1.05rem;
}

.hero-image img, .portrait-card img, .feature-image img {
  border-radius: 2px;
  filter: saturate(0.9) contrast(1.04);
  box-shadow: 0 26px 80px rgba(0,0,0,0.36);
}

.hero-image {
  position: relative;
}
.hero-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(15,14,12,0.26), transparent 58%);
  pointer-events: none;
}

.hero-actions { display: flex; gap: 0.9rem; margin-top: 2rem; flex-wrap: wrap; }
.button {
  border: 1px solid var(--accent);
  background: var(--accent);
  color: #16120d;
  padding: 0.85rem 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  cursor: pointer;
}
.button.ghost { background: transparent; color: var(--text); border-color: var(--line); }
.button:hover { transform: translateY(-1px); }

.music-strip {
  display: grid;
  grid-template-columns: 0.35fr 0.65fr;
  gap: 2rem;
  align-items: center;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.spotify { border-radius: 12px; }

.split, .feature, .contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 7vw, 5rem);
  align-items: center;
}

.split-text p { margin: 1.2rem 0 0; }
.portrait-card { max-width: 420px; justify-self: end; }
.portrait-card img { aspect-ratio: 4 / 5; object-fit: cover; }

.feature { align-items: end; }
.feature-image img { max-height: 760px; object-fit: cover; object-position: center; }
.feature-copy { background: var(--panel); padding: clamp(1.5rem, 4vw, 3rem); border: 1px solid var(--line); }
.text-link { display: inline-block; margin-top: 1rem; color: var(--accent); }

.teaching {
  background: linear-gradient(180deg, transparent, rgba(209, 163, 105, 0.06), transparent);
  width: 100%;
  max-width: none;
  padding-inline: max(1rem, calc((100vw - var(--max)) / 2));
}
.narrow { max-width: 780px; }
.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 2rem;
}
.pill-list span {
  border: 1px solid var(--line);
  color: var(--muted);
  padding: 0.55rem 0.75rem;
  background: rgba(255,255,255,0.02);
}

.contact { align-items: start; }
.contact-form {
  display: grid;
  gap: 1rem;
  padding: clamp(1.2rem, 3vw, 2rem);
  background: var(--panel-2);
  border: 1px solid var(--line);
}
label { color: var(--muted); font-size: 0.9rem; }
input, textarea {
  width: 100%;
  margin-top: 0.35rem;
  background: #0d0c0a;
  color: var(--text);
  border: 1px solid var(--line);
  padding: 0.85rem;
  font: inherit;
}
input:focus, textarea:focus { outline: 1px solid var(--accent); }
.hidden { display: none; }
.site-footer {
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto;
  padding: 2rem 0;
  color: var(--muted);
  border-top: 1px solid var(--line);
  font-size: 0.9rem;
}

@media (max-width: 820px) {
  .site-header { align-items: flex-start; flex-direction: column; }
  nav { width: 100%; overflow-x: auto; padding-bottom: 0.2rem; }
  .hero, .music-strip, .split, .feature, .contact { grid-template-columns: 1fr; }
  .hero { min-height: auto; padding-top: 3rem; }
  .hero-image { order: -1; }
  .hero-image img { max-height: 62svh; object-fit: cover; }
  .portrait-card { justify-self: start; max-width: 100%; }
}
