/* ============================================================
   His Life for Mine — Christa Devenport
   Design language: golden sunset + wooden cross album artwork.
   Deep warm blacks, gilded golds, elegant serif typography.
   ============================================================ */

/* ---------- Self-hosted fonts (in the /fonts folder) ----------
   Bundled with the site so typography never depends on an
   outside service being reachable. */
@font-face {
  font-family: "Cormorant Garamond"; font-style: normal; font-weight: 500;
  font-display: swap; src: url("fonts/cormorant-garamond-latin-500-normal.woff2") format("woff2");
}
@font-face {
  font-family: "Cormorant Garamond"; font-style: normal; font-weight: 600;
  font-display: swap; src: url("fonts/cormorant-garamond-latin-600-normal.woff2") format("woff2");
}
@font-face {
  font-family: "Cormorant Garamond"; font-style: normal; font-weight: 700;
  font-display: swap; src: url("fonts/cormorant-garamond-latin-700-normal.woff2") format("woff2");
}
@font-face {
  font-family: "Cormorant Garamond"; font-style: italic; font-weight: 500;
  font-display: swap; src: url("fonts/cormorant-garamond-latin-500-italic.woff2") format("woff2");
}
@font-face {
  font-family: "EB Garamond"; font-style: normal; font-weight: 400;
  font-display: swap; src: url("fonts/eb-garamond-latin-400-normal.woff2") format("woff2");
}
@font-face {
  font-family: "EB Garamond"; font-style: normal; font-weight: 500;
  font-display: swap; src: url("fonts/eb-garamond-latin-500-normal.woff2") format("woff2");
}
@font-face {
  font-family: "EB Garamond"; font-style: normal; font-weight: 600;
  font-display: swap; src: url("fonts/eb-garamond-latin-600-normal.woff2") format("woff2");
}
@font-face {
  font-family: "EB Garamond"; font-style: italic; font-weight: 400;
  font-display: swap; src: url("fonts/eb-garamond-latin-400-italic.woff2") format("woff2");
}
@font-face {
  font-family: "Great Vibes"; font-style: normal; font-weight: 400;
  font-display: swap; src: url("fonts/great-vibes-latin-400-normal.woff2") format("woff2");
}

:root {
  --bg-deep: #0B0805;        /* near-black, warm            */
  --bg-panel: #16100A;       /* warm charcoal section bg    */
  --panel-card: #1A130C;     /* card surfaces               */
  --gold-1: #E8C784;         /* light gold                  */
  --gold-2: #C79A4B;         /* deep gold                   */
  --amber: #C8791F;          /* sunset amber                */
  --cream: #F3E9D8;          /* headline / bright text      */
  --muted: #C9BBA6;          /* body text                   */
  --line: rgba(232, 199, 132, 0.22);
  --line-soft: rgba(232, 199, 132, 0.12);
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "EB Garamond", Georgia, serif;
  --font-script: "Great Vibes", cursive;
  --header-h: 72px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 12px);
}

body {
  background-color: var(--bg-deep);
  /* Subtle sunset glow, echoing the album cover */
  background-image:
    radial-gradient(1100px 700px at 85% -5%, rgba(200, 121, 31, 0.16), transparent 60%),
    radial-gradient(900px 600px at -10% 30%, rgba(199, 154, 75, 0.07), transparent 55%);
  background-attachment: fixed;
  color: var(--muted);
  font-family: var(--font-body);
  font-size: 1.125rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

.container { width: min(1120px, 92%); margin-inline: auto; }

/* ---------- Accessibility ---------- */
.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--gold-2); color: #140d05; padding: 10px 18px;
  z-index: 200; font-family: var(--font-body);
}
.skip-link:focus { left: 12px; top: 12px; }

:focus-visible {
  outline: 2px solid var(--gold-1);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ---------- Type helpers ---------- */
.eyebrow {
  font-family: var(--font-body);
  font-size: 0.82rem;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--gold-2);
  margin-bottom: 0.9rem;
}

h1, h2, h3 { font-family: var(--font-display); color: var(--cream); font-weight: 600; }

h2 { font-size: clamp(2.1rem, 4.5vw, 3.1rem); line-height: 1.1; }

.script-accent {
  font-family: var(--font-script);
  font-weight: 400;
  background: linear-gradient(120deg, var(--gold-1), var(--gold-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  padding-right: 0.15em; /* keep script flourish from clipping */
}

/* ---------- Gold flourish divider with crown ---------- */
.flourish {
  display: flex; align-items: center; justify-content: center;
  gap: 14px; margin: 1.2rem auto 0;
  max-width: 300px;
}
.flourish span {
  height: 1px; flex: 1;
  background: linear-gradient(90deg, transparent, var(--gold-2));
}
.flourish span:last-child {
  background: linear-gradient(90deg, var(--gold-2), transparent);
}
.crown {
  width: 26px; height: 20px; flex: none;
  fill: none; stroke: var(--gold-2); stroke-width: 1.4;
  stroke-linejoin: round; stroke-linecap: round;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.95rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 15px 34px;
  border-radius: 3px;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease, color 0.25s ease;
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold-1), var(--gold-2));
  color: #1b1104;
  font-weight: 600;
  border: none;
  box-shadow: 0 6px 22px rgba(199, 154, 75, 0.28);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(199, 154, 75, 0.4); }
.btn-ghost {
  background: transparent;
  color: var(--gold-1);
  border: 1px solid var(--gold-2);
}
.btn-ghost:hover { background: rgba(199, 154, 75, 0.12); transform: translateY(-2px); }
.btn-disabled {
  background: var(--panel-card);
  color: var(--muted);
  border: 1px solid var(--line);
  box-shadow: none;
  cursor: pointer;
}
.btn-disabled:hover { transform: none; box-shadow: none; }

/* ---------- Header / nav ---------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}
.site-header.scrolled {
  background: rgba(11, 8, 5, 0.88);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 var(--line-soft);
}
.nav {
  width: min(1120px, 92%); margin-inline: auto;
  height: var(--header-h);
  display: flex; align-items: center; justify-content: space-between;
}
.brand {
  font-family: var(--font-display);
  font-size: 1.35rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--cream); text-decoration: none; font-weight: 600;
}
.brand span { color: var(--gold-1); }
.nav-menu { display: flex; gap: 2rem; list-style: none; }
.nav-menu a {
  font-family: var(--font-body);
  font-size: 0.85rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--muted); text-decoration: none;
  padding: 6px 2px;
  border-bottom: 1px solid transparent;
  transition: color 0.25s ease, border-color 0.25s ease;
}
.nav-menu a:hover { color: var(--gold-1); border-bottom-color: var(--gold-2); }

.nav-toggle {
  display: none;
  background: none; border: none; cursor: pointer;
  width: 44px; height: 44px;
  flex-direction: column; align-items: center; justify-content: center; gap: 6px;
}
.nav-toggle span {
  display: block; width: 26px; height: 2px;
  background: var(--gold-1);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: calc(var(--header-h) + 48px) 0 40px;
  min-height: 100svh;
  display: flex; align-items: center;
}
.hero-inner {
  width: min(1120px, 92%); margin-inline: auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.hero-art { order: 2; }
.hero-copy { order: 1; text-align: left; }

.gilded-frame {
  position: relative;
  border: 1px solid var(--line);
  padding: 12px;
  background: rgba(26, 19, 12, 0.55);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.55);
}
.gilded-frame::after {
  content: "";
  position: absolute; inset: 5px;
  border: 1px solid var(--line-soft);
  pointer-events: none;
}
.gilded-frame img { width: 100%; height: auto; }
.gilded-frame.glow { box-shadow: 0 20px 70px rgba(200, 121, 31, 0.22), 0 30px 80px rgba(0, 0, 0, 0.5); }

.hero-title { line-height: 0.95; margin: 0.4rem 0 1rem; }
.hero-title .line-serif {
  display: block;
  font-size: clamp(3.4rem, 8.5vw, 6rem);
  font-weight: 700;
  background: linear-gradient(160deg, var(--gold-1) 20%, var(--gold-2) 80%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-title .line-script {
  display: block;
  font-family: var(--font-script);
  font-size: clamp(2.6rem, 6.5vw, 4.6rem);
  font-weight: 400;
  color: var(--gold-1);
  margin-top: 0.35rem;
  padding-left: 0.6em;
  padding-right: 0.15em;
}
.hero-artist {
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  letter-spacing: 0.34em; text-transform: uppercase;
  color: var(--cream);
  margin-top: 1.4rem;
}
.hero .flourish { margin: 1.3rem 0 1.3rem; max-width: 260px; justify-content: flex-start; }
.hero .flourish span { max-width: 90px; }

.hero-verse {
  font-size: 0.98rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  line-height: 1.9;
  max-width: 42ch;
}
.hero-verse cite { font-style: normal; color: var(--gold-2); letter-spacing: 0.2em; }

.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2.1rem; }

.hero-fade {
  position: absolute; left: 0; right: 0; bottom: 0; height: 120px;
  background: linear-gradient(180deg, transparent, var(--bg-deep));
  pointer-events: none;
}

/* ---------- Sections ---------- */
.section { padding: clamp(4.5rem, 9vw, 7rem) 0; }
.section-panel {
  background: var(--bg-panel);
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}
.section-head { text-align: center; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section-sub { margin-top: 1.4rem; font-size: 1.05rem; color: var(--muted); font-style: italic; }

/* ---------- About ---------- */
.about-grid {
  display: grid; grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
.about-bio p { margin-bottom: 1.3rem; }
.about-bio strong { color: var(--cream); font-weight: 600; }
.about-bio em { color: var(--gold-1); }

.thank-you-card {
  background: var(--panel-card);
  border: 1px solid var(--line);
  padding: 2.2rem 2.1rem 2rem;
  position: relative;
}
.thank-you-card::before {
  content: "\201C";
  position: absolute; top: -6px; left: 18px;
  font-family: var(--font-display);
  font-size: 5rem; line-height: 1;
  color: var(--gold-2); opacity: 0.5;
}
.thank-you-label {
  font-size: 0.78rem; letter-spacing: 0.34em; text-transform: uppercase;
  color: var(--gold-2); margin-bottom: 1.1rem; text-align: center;
}
.thank-you-card blockquote p {
  font-family: var(--font-display);
  font-size: 1.18rem; line-height: 1.65;
  color: var(--cream);
  text-align: center;
  margin-bottom: 1rem;
  font-style: italic;
}
.thank-you-card footer { text-align: center; margin-top: 1.4rem; }
.all-my-love { display: block; font-style: italic; color: var(--muted); font-size: 1rem; }
.signature {
  display: block;
  font-family: var(--font-script);
  font-size: 2.7rem;
  background: linear-gradient(120deg, var(--gold-1), var(--gold-2));
  -webkit-background-clip: text; background-clip: text; color: transparent;
  margin-top: 0.3rem;
  padding-bottom: 0.35rem; /* keep descender from clipping */
}

.insert-figure { margin-top: clamp(2.5rem, 5vw, 4rem); }
.insert-figure img {
  width: 100%;
  height: auto; /* keeps the wide insert photo in its true proportions */
  border: 1px solid var(--line);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
}
.insert-figure figcaption {
  text-align: center; margin-top: 1rem;
  font-size: 0.95rem; font-style: italic; color: var(--muted);
}

/* ---------- Music ---------- */
.music-grid {
  display: grid; grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.music-art { max-width: 460px; width: 100%; margin-inline: auto; }
.music-verse {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.4vw, 1.55rem);
  font-style: italic; line-height: 1.6;
  color: var(--gold-1);
  margin-bottom: 1.4rem;
}
.music-verse cite { font-style: normal; font-size: 0.75em; letter-spacing: 0.18em; color: var(--gold-2); }
.music-copy p { margin-bottom: 1.2rem; }
.music-copy strong { color: var(--cream); }
.music-copy em { color: var(--gold-1); }
.music-copy .btn { margin-top: 0.4rem; }

/* ---------- Song preview player ---------- */
.preview-player {
  display: flex; align-items: center; gap: 1.1rem;
  background: var(--panel-card);
  border: 1px solid var(--line);
  padding: 1.1rem 1.3rem;
  margin-top: 2rem;
}
.pp-btn {
  flex: none;
  width: 58px; height: 58px;
  border-radius: 50%;
  border: none; cursor: pointer;
  background: linear-gradient(135deg, var(--gold-1), var(--gold-2));
  display: grid; place-items: center;
  box-shadow: 0 6px 22px rgba(199, 154, 75, 0.3);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.pp-btn:hover { transform: scale(1.06); box-shadow: 0 8px 28px rgba(199, 154, 75, 0.45); }
.pp-btn svg { width: 26px; height: 26px; fill: #1b1104; }
.pp-icon-pause { display: none; }
.preview-player.playing .pp-icon-play { display: none; }
.preview-player.playing .pp-icon-pause { display: block; }
.pp-info { flex: 1; min-width: 0; }
.pp-label {
  font-size: 0.75rem; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--gold-2); margin-bottom: 0.25rem;
}
.pp-song {
  font-family: var(--font-display);
  font-size: 1.1rem; color: var(--cream);
  line-height: 1.3;
  margin-bottom: 0.55rem;
}
.pp-bar {
  height: 4px; border-radius: 2px;
  background: rgba(232, 199, 132, 0.15);
  overflow: hidden;
}
.pp-fill {
  height: 100%; width: 0%;
  background: linear-gradient(90deg, var(--gold-1), var(--gold-2));
  transition: width 0.2s linear;
}
.pp-time {
  flex: none;
  font-family: var(--font-body);
  font-size: 0.9rem; letter-spacing: 0.08em;
  color: var(--muted);
  font-variant-numeric: tabular-nums;
}
@media (max-width: 720px) {
  .preview-player { gap: 0.9rem; padding: 1rem; }
  .pp-btn { width: 52px; height: 52px; }
}

.tracklist { margin-top: 2.2rem; }
.tracklist-empty {
  border: 1px dashed var(--line);
  padding: 1.1rem 1.4rem;
  font-style: italic;
  color: var(--muted);
  font-size: 1rem;
}
.tracklist ol { list-style: none; counter-reset: track; }
.tracklist li {
  counter-increment: track;
  display: flex; align-items: baseline; gap: 1rem;
  padding: 0.65rem 0.2rem;
  border-bottom: 1px solid var(--line-soft);
  font-family: var(--font-display);
  font-size: 1.15rem; color: var(--cream);
}
.tracklist li::before {
  content: counter(track, decimal-leading-zero);
  font-family: var(--font-body);
  font-size: 0.85rem; color: var(--gold-2); letter-spacing: 0.1em;
}

/* ---------- Store ---------- */
.store-grid {
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.5rem, 4vw, 3rem);
  max-width: 920px; margin-inline: auto;
}
.product-card {
  background: var(--panel-card);
  border: 1px solid var(--line);
  display: flex; flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5), 0 8px 30px rgba(200, 121, 31, 0.12);
}
.product-media { aspect-ratio: 1; overflow: hidden; }
.product-media img { width: 100%; height: 100%; object-fit: cover; }
.product-media-light { background: #ffffff; display: grid; place-items: center; padding: 8%; }
.product-media-light img { object-fit: contain; height: auto; }
.product-body { padding: 1.8rem 1.7rem 2rem; text-align: center; display: flex; flex-direction: column; flex: 1; }
.product-body h3 { font-size: 1.5rem; margin-bottom: 0.5rem; }
.price {
  font-family: var(--font-display);
  font-size: 1.9rem; font-weight: 700;
  background: linear-gradient(120deg, var(--gold-1), var(--gold-2));
  -webkit-background-clip: text; background-clip: text; color: transparent;
  margin-bottom: 0.8rem;
}
.price span {
  font-family: var(--font-body);
  font-size: 0.85rem; font-weight: 400; letter-spacing: 0.1em;
  text-transform: uppercase;
  -webkit-text-fill-color: var(--muted);
}
.product-desc { font-size: 1rem; margin-bottom: 1.5rem; flex: 1; }
.product-body .btn { align-self: center; }

.store-notes {
  text-align: center; margin-top: clamp(2rem, 4vw, 3rem);
  font-size: 1rem; max-width: 62ch; margin-inline: auto;
}
.store-notes strong { color: var(--cream); }
.order-fallback { margin-top: 0.7rem; }
.email-link { color: var(--gold-1); text-decoration: none; border-bottom: 1px solid var(--gold-2); }
.email-link:hover { color: var(--cream); }

/* ---------- Tour ---------- */
.tour-list { list-style: none; max-width: 860px; margin-inline: auto; }
.tour-item {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 1.2rem;
  align-items: baseline;
  padding: 1.15rem 0.4rem;
  border-bottom: 1px solid var(--line-soft);
  transition: background-color 0.25s ease;
}
.tour-item:first-child { border-top: 1px solid var(--line-soft); }
.tour-item:hover { background: rgba(232, 199, 132, 0.04); }
.tour-date {
  font-family: var(--font-display);
  font-size: 1.25rem; font-weight: 600; color: var(--gold-1);
  line-height: 1.3;
}
.tour-time { display: block; font-family: var(--font-body); font-size: 0.85rem; letter-spacing: 0.12em; color: var(--muted); text-transform: uppercase; }
.tour-venue { font-family: var(--font-display); font-size: 1.25rem; color: var(--cream); line-height: 1.35; }
.tour-loc { display: block; font-family: var(--font-body); font-size: 0.95rem; color: var(--muted); font-style: italic; }
.tour-item.past { opacity: 0.4; }
.tour-empty { text-align: center; font-style: italic; padding: 2rem 0; }

.tour-more { text-align: center; margin-top: 2.6rem; }
.tour-note { margin-top: 1.1rem; font-size: 0.95rem; font-style: italic; }

/* ---------- Contact ---------- */
.contact-grid {
  display: grid; grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
  max-width: 980px; margin-inline: auto;
}
.contact-form .field { margin-bottom: 1.3rem; }
.contact-form label {
  display: block;
  font-size: 0.8rem; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--gold-2);
  margin-bottom: 0.5rem;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  background: var(--panel-card);
  border: 1px solid var(--line);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 1.05rem;
  padding: 13px 15px;
  border-radius: 2px;
  transition: border-color 0.25s ease;
}
.contact-form select { appearance: none; background-image: linear-gradient(45deg, transparent 50%, var(--gold-2) 50%), linear-gradient(135deg, var(--gold-2) 50%, transparent 50%); background-position: calc(100% - 20px) 55%, calc(100% - 14px) 55%; background-size: 6px 6px; background-repeat: no-repeat; }
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus { outline: none; border-color: var(--gold-2); }
.contact-form textarea { resize: vertical; }
.hp-field { position: absolute; left: -9999px; }

.contact-aside h3 { font-size: 1.5rem; margin-bottom: 0.9rem; }
.contact-aside p { margin-bottom: 1.1rem; font-size: 1.02rem; }
.contact-email-line { font-size: 1.1rem; }
.fb-link {
  display: inline-flex; align-items: center; gap: 10px;
  color: var(--gold-1); text-decoration: none;
  font-size: 1rem; letter-spacing: 0.08em;
  border: 1px solid var(--gold-2);
  padding: 12px 20px; border-radius: 3px;
  transition: background-color 0.25s ease, transform 0.25s ease;
  margin-top: 0.3rem;
}
.fb-link:hover { background: rgba(199, 154, 75, 0.12); transform: translateY(-2px); }
.fb-link svg { width: 20px; height: 20px; fill: var(--gold-1); }
.aside-soft { margin-top: 1.4rem; font-style: italic; font-size: 0.98rem; }

/* ---------- Footer ---------- */
.site-footer {
  border-top: 1px solid var(--line-soft);
  padding: 3.5rem 0 2.8rem;
  background: var(--bg-panel);
}
.footer-inner { text-align: center; }
.crown-footer { width: 30px; height: 24px; margin: 0 auto 0.8rem; display: block; }
.footer-name {
  font-family: var(--font-display);
  font-size: 1.5rem; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--cream);
}
.footer-verse {
  margin-top: 0.6rem;
  font-size: 0.85rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold-2);
}
.footer-fb { display: inline-block; margin-top: 1.3rem; }
.footer-fb svg { width: 26px; height: 26px; fill: var(--gold-2); transition: fill 0.25s ease; }
.footer-fb:hover svg { fill: var(--gold-1); }
.footer-copy { margin-top: 1.3rem; font-size: 0.9rem; }
.footer-soft { margin-top: 0.4rem; font-size: 0.85rem; font-style: italic; color: rgba(201, 187, 166, 0.78); }

/* ---------- Reveal-on-scroll ----------
   Only hides elements when JavaScript is running (html.js),
   so the site is never blank for anyone. */
.js .reveal { opacity: 0; transform: translateY(16px); transition: opacity 0.7s ease, transform 0.7s ease; }
.js .reveal.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .js .reveal { opacity: 1; transform: none; transition: none; }
  .btn, .product-card, .fb-link { transition: none; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 2.4rem; }
  .hero { padding-top: calc(var(--header-h) + 28px); }
  .hero-art { order: 1; max-width: 430px; margin-inline: auto; width: 100%; }
  .hero-copy { order: 2; text-align: center; }
  .hero .flourish { justify-content: center; margin-inline: auto; }
  .hero-verse { margin-inline: auto; }
  .hero-actions { justify-content: center; }

  .about-grid, .music-grid, .contact-grid { grid-template-columns: 1fr; }
  .music-art { max-width: 400px; }
}

@media (max-width: 720px) {
  body { font-size: 1.06rem; }

  .nav-toggle { display: flex; }
  .nav-menu {
    position: fixed; inset: var(--header-h) 0 auto 0;
    flex-direction: column; align-items: center; gap: 0;
    background: rgba(11, 8, 5, 0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--line);
    padding: 0.6rem 0 1.2rem;
    transform: translateY(-130%);
    transition: transform 0.35s ease;
  }
  .nav-menu.open { transform: translateY(0); }
  .nav-menu li { width: 100%; text-align: center; }
  .nav-menu a { display: block; padding: 14px 0; border-bottom: none; }
  .nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

  .store-grid { grid-template-columns: 1fr; max-width: 440px; }

  .tour-item { grid-template-columns: 1fr; gap: 0.25rem; padding: 1.1rem 0.2rem; }
  .tour-date { font-size: 1.15rem; }
  .tour-venue { font-size: 1.15rem; }

  .hero-actions .btn { width: 100%; text-align: center; }
  .btn { padding: 15px 26px; }
}
