:root {
  --bg: #fbf8f2;
  --surface: #ffffff;
  --text: #2f2a24;
  --muted: #6f675e;
  --accent: #a98b4c;
  --accent-dark: #7d6536;
  --border: #e7dfd2;
  --shadow: 0 18px 45px rgba(62, 51, 38, 0.10);
  --radius: 20px;
  --max: 1180px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
.skip-link {
  position: absolute; left: -9999px; top: 0;
}
.skip-link:focus {
  left: 1rem; top: 1rem; z-index: 9999;
  background: #fff; padding: .7rem 1rem; border: 1px solid var(--border);
}
.site-header {
  position: sticky; top: 0; z-index: 1000;
  backdrop-filter: blur(12px);
  background: rgba(251,248,242,.94);
  border-bottom: 1px solid rgba(231,223,210,.9);
}
.nav-wrap {
  max-width: var(--max); margin: 0 auto; padding: 1rem 1.25rem;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.brand {
  text-decoration: none; font-size: 1.35rem; font-weight: 700; letter-spacing: .02em;
}
.brand span { color: var(--accent-dark); }
.nav-toggle {
  display: none; border: 1px solid var(--border); background: var(--surface);
  border-radius: 10px; padding: .55rem .7rem; font-size: 1rem;
}
.site-nav { display: flex; align-items: center; gap: 1.25rem; }
.site-nav a {
  text-decoration: none; color: var(--muted); font-family: Arial, sans-serif; font-size: .93rem;
}
.site-nav a:hover, .site-nav a[aria-current="page"] { color: var(--accent-dark); }
.container { max-width: var(--max); margin: 0 auto; padding: 0 1.25rem; }
.hero {
  min-height: 72vh; display: grid; place-items: center;
  padding: 6rem 0 4rem;
}
.hero-grid {
  display: grid; grid-template-columns: 1.15fr .85fr; gap: 3.5rem; align-items: center;
}
.eyebrow {
  font-family: Arial, sans-serif; text-transform: uppercase; letter-spacing: .18em;
  color: var(--accent-dark); font-weight: 700; font-size: .78rem;
}
h1, h2, h3 { line-height: 1.15; margin-top: 0; }
h1 { font-size: clamp(3rem, 7vw, 6.3rem); margin-bottom: 1rem; font-weight: 500; }
h2 { font-size: clamp(2rem, 4vw, 3.4rem); font-weight: 500; }
h3 { font-size: 1.45rem; font-weight: 600; }
.lead { font-size: 1.2rem; color: var(--muted); max-width: 720px; }
.actions { display: flex; gap: .9rem; flex-wrap: wrap; margin-top: 1.75rem; }
.btn {
  display: inline-block; text-decoration: none; border-radius: 999px; padding: .82rem 1.2rem;
  font-family: Arial, sans-serif; font-weight: 700; font-size: .92rem;
  border: 1px solid var(--accent);
}
.btn.primary { background: var(--accent-dark); color: white; border-color: var(--accent-dark); }
.btn.secondary { background: transparent; color: var(--accent-dark); }
.hero-art, .photo-placeholder {
  background: linear-gradient(135deg, #efe8dc, #f8f2e7);
  border-radius: var(--radius);
  min-height: 430px; border: 1px solid var(--border);
  display: grid; place-items: center; color: var(--muted); text-align: center; padding: 2rem;
  box-shadow: var(--shadow);
}
.hero-art small, .photo-placeholder small { font-family: Arial, sans-serif; max-width: 270px; }
.section { padding: 5rem 0; }
.section.alt { background: var(--surface); border-block: 1px solid var(--border); }
.section-header { max-width: 760px; margin-bottom: 2.25rem; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; align-items: center; }
.cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.25rem; }
.card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 1.5rem; box-shadow: 0 12px 30px rgba(62,51,38,.06);
}
.card p { color: var(--muted); margin-bottom: 0; }
.quote {
  padding: 2rem; border-left: 4px solid var(--accent);
  background: var(--surface); border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 1.25rem;
}
.story-block {
  display: grid; grid-template-columns: 84px 1fr; gap: 1.25rem;
  padding: 2rem 0; border-top: 1px solid var(--border);
}
.story-num { color: var(--accent-dark); font-size: 1.8rem; }
.story-block p { margin-top: 0; color: var(--muted); }
.release {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 2rem; display: grid; grid-template-columns: 320px 1fr; gap: 2rem; align-items: center;
}
.cover-placeholder { aspect-ratio: 1/1; min-height: 0; box-shadow: none; }
.notice {
  padding: 1rem 1.1rem; background: #f3eee5; border: 1px solid var(--border);
  border-radius: 12px; color: var(--muted);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
label { display: block; font-family: Arial, sans-serif; font-size: .88rem; font-weight: 700; margin-bottom: .35rem; }
input, textarea {
  width: 100%; border: 1px solid #cfc5b7; background: #fff; border-radius: 10px;
  padding: .85rem .95rem; font: inherit; color: var(--text);
}
textarea { min-height: 180px; resize: vertical; }
input:focus, textarea:focus { outline: 2px solid #c2a76d; outline-offset: 2px; }
.form-row { margin-bottom: 1rem; }
.form-status { margin: 1rem 0; padding: .9rem 1rem; border-radius: 10px; font-family: Arial, sans-serif; }
.form-status.success { background: #edf5ed; border: 1px solid #b9d5b9; }
.form-status.error { background: #fbefef; border: 1px solid #e0baba; }
.hp { position: absolute !important; left: -10000px !important; top: auto !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.site-footer {
  padding: 2.5rem 0; border-top: 1px solid var(--border); background: #f5efe5;
  font-family: Arial, sans-serif; color: var(--muted); font-size: .9rem;
}
.footer-grid { display: flex; justify-content: space-between; align-items: center; gap: 1.5rem; flex-wrap: wrap; }
.footer-links { display: flex; gap: 1rem; flex-wrap: wrap; }
.footer-links a { text-decoration: none; }
.footer-links a:hover { text-decoration: underline; }
.page-hero { padding: 5.5rem 0 2.5rem; }
.page-hero h1 { font-size: clamp(2.8rem, 6vw, 5rem); }
.kicker { color: var(--accent-dark); font-style: italic; font-size: 1.2rem; }
@media (max-width: 850px) {
  .nav-toggle { display: inline-block; }
  .site-nav {
    display: none; position: absolute; left: 1rem; right: 1rem; top: 72px;
    background: var(--surface); border: 1px solid var(--border); border-radius: 14px;
    padding: 1rem; flex-direction: column; align-items: stretch; box-shadow: var(--shadow);
  }
  .site-nav.open { display: flex; }
  .hero-grid, .grid-2, .release { grid-template-columns: 1fr; }
  .cards { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .hero { min-height: auto; padding-top: 4rem; }
  .hero-art { min-height: 330px; }
}

.hero-photo, .section-photo {
  width: 100%;
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}
.hero-photo {
  aspect-ratio: 4 / 3;
  object-position: 38% center;
}
.section-photo {
  aspect-ratio: 4 / 5;
  object-position: center;
}
.music-photo {
  aspect-ratio: 4 / 3;
  object-position: center;
}
.journey-photo {
  aspect-ratio: 16 / 10;
  object-position: center;
}
.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-top: 1.25rem;
}
.social-link {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  text-decoration: none;
  border: 1px solid var(--accent);
  border-radius: 999px;
  padding: .7rem 1rem;
  font-family: Arial, sans-serif;
  font-weight: 700;
  color: var(--accent-dark);
  background: var(--surface);
}
.social-link:hover {
  background: #f3eee5;
}
