/* =========================================================
   Nanette Welmans — gospel & jazz vocalist
   Visual identity: warm parchment paper, deep plum ink,
   gold hymnal accent — an old concert programme feel.
   ========================================================= */

:root {
  --paper: #faf3e6;
  --paper-alt: #f2e8d6;
  --ink: #3a1f2e;
  --ink-soft: #6b4f5c;
  --plum: #5c2a44;
  --gold: #b8862f;
  --line: #ddccae;
  --max: 46rem;
  --serif: "Fraunces", Georgia, "Times New Roman", serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }

html {
  background: var(--paper);
}

body {
  margin: 0;
  background-color: var(--paper);
  background-image:
    linear-gradient(rgba(250, 243, 230, 0.78), rgba(250, 243, 230, 0.78)),
    url("/images/site-backdrop.jpg");
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  background-attachment: fixed;
  color: var(--ink);
  font-family: var(--sans);
  font-size: 18px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

@media (max-width: 700px) {
  body { background-attachment: scroll; }
}

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

a { color: var(--plum); text-decoration-color: rgba(92,42,68,0.35); }
a:hover { text-decoration-color: var(--plum); }
a:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--gold);
  color: var(--paper);
  padding: 0.6em 1em;
  z-index: 100;
  font-family: var(--sans);
  font-weight: 600;
}
.skip-link:focus { left: 0.5rem; top: 0.5rem; }

h1, h2 {
  font-family: var(--serif);
  color: var(--plum);
  line-height: 1.2;
  margin: 0 0 0.4em;
}
h1 { font-size: clamp(2.2rem, 6vw, 3.2rem); font-weight: 700; }
h2 { font-size: clamp(1.4rem, 4vw, 1.8rem); font-weight: 600; }

.eyebrow {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}

.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ---------- header ------------------------------------------ */

.site-header {
  text-align: center;
  padding: 3rem 0 1.5rem;
  border-bottom: 3px double var(--gold);
}
.site-header .name {
  font-family: var(--serif);
  font-size: clamp(2rem, 6vw, 2.8rem);
  color: var(--plum);
  margin: 0;
}
.site-header .role {
  font-family: var(--sans);
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-top: 0.4em;
}
.site-nav {
  margin-top: 1.4rem;
}
.site-nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 1.6rem;
  margin: 0;
  padding: 0;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
}
.site-nav a { color: var(--ink-soft); text-decoration: none; }
.site-nav a:hover { color: var(--plum); }

/* ---------- sections ------------------------------------------- */

main > section {
  padding: 3rem 0;
}
main > section + section {
  border-top: 1px solid var(--line);
}

.hero {
  text-align: center;
  padding-top: 3.5rem;
}
.hero-photo {
  width: 200px;
  height: 200px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid var(--paper-alt);
  box-shadow: 0 0 0 1px var(--gold);
}
.hero-photo img { width: 100%; height: 100%; object-fit: cover; }
.hero p.lede {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.3rem;
  color: var(--ink-soft);
  max-width: 34ch;
  margin: 0 auto;
}

.bio p { margin: 0 0 1.1em; }
.bio h2 + p::first-letter {
  font-family: var(--serif);
  font-size: 3.2em;
  float: left;
  line-height: 0.8;
  padding: 0.05em 0.1em 0 0;
  color: var(--plum);
}

/* ---------- watch / video grid ---------------------------------- */

.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}
.video-card {
  border: 1px solid var(--line);
  background: var(--paper-alt);
}
.video-frame {
  display: block;
  position: relative;
  aspect-ratio: 16 / 9;
  background: #000;
}
.video-frame img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.video-card .meta {
  padding: 0.7rem 0.9rem 0.9rem;
  text-align: center;
}
.video-card h3 {
  font-family: var(--serif);
  font-size: 1.05rem;
  margin: 0;
  color: var(--plum);
}

/* ---------- connect ----------------------------------------------- */

.connect { text-align: center; }
.connect-photo {
  width: 220px;
  height: 220px;
  margin: 0 auto 1.75rem;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid var(--paper-alt);
  box-shadow: 0 0 0 1px var(--gold);
}
.connect-photo img { width: 100%; height: 100%; object-fit: cover; }
.connect-email {
  display: inline-block;
  margin-top: 0.6em;
  padding: 0.7em 1.4em;
  border: 1px solid var(--plum);
  color: var(--plum);
  text-decoration: none;
  font-weight: 600;
  border-radius: 2px;
}
.connect-email:hover { background: var(--plum); color: var(--paper); }

.social-links {
  margin-top: 1.6rem;
  display: flex;
  justify-content: center;
  gap: 1.4rem;
  list-style: none;
  padding: 0;
}
.social-links a {
  color: var(--ink-soft);
  text-decoration: none;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--line);
}
.social-links a:hover { color: var(--plum); border-color: var(--plum); }

/* ---------- footer -------------------------------------------------- */

.site-footer {
  text-align: center;
  padding: 2rem 0 3rem;
  color: var(--ink-soft);
  font-size: 0.85rem;
}

/* ---------- biography photo gallery -------------------------------- */

.bio-gallery {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 1rem;
  margin: 1.5rem 0 2.5rem;
}
.bio-gallery .tall {
  grid-row: span 2;
}
.bio-gallery figure {
  margin: 0;
  border: 1px solid var(--line);
  background: var(--paper-alt);
  overflow: hidden;
  height: 100%;
}
.bio-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.bio-gallery .pair {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 1rem;
}
@media (max-width: 560px) {
  .bio-gallery { grid-template-columns: 1fr; }
  .bio-gallery .tall { grid-row: auto; }
}

blockquote.testimony {
  margin: 1.6rem 0 0;
  padding: 1.2rem 1.4rem;
  border-left: 3px solid var(--gold);
  background: var(--paper-alt);
  font-style: italic;
  color: var(--ink-soft);
}
blockquote.testimony p { margin: 0 0 0.8em; }
blockquote.testimony p:last-child { margin-bottom: 0; }
