/* ==========================================================================
   Gavin Skinner — solo acoustic rock
   Single stylesheet for all pages. No build step, no dependencies.
   ========================================================================== */

:root {
  --ink: #111214;
  --ink-soft: #3f434a;
  --ink-muted: #6b7280;
  --paper: #ffffff;
  --paper-alt: #f6f5f3;
  --line: #e3e1dd;
  --accent: #a9682f;        /* warm spruce/mahogany tone from the logo art */
  --accent-dark: #7f4d21;
  --focus: #1d4ed8;

  --max: 1120px;
  --radius: 14px;
  --shadow-sm: 0 1px 2px rgba(17, 18, 20, .06), 0 4px 14px rgba(17, 18, 20, .05);
  --shadow-md: 0 10px 34px rgba(17, 18, 20, .10);

  --font-display: "Jost", "Futura", "Century Gothic", "Trebuchet MS", sans-serif;
  --font-body: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

/* --------------------------------------------------------------- base --- */

*,
*::before,
*::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.7;
  overflow-wrap: break-word;
}

img { max-width: 100%; display: block; height: auto; }

a {
  color: var(--accent-dark);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover { color: var(--ink); }

:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 3px;
  border-radius: 4px;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.15;
  margin: 0 0 .5em;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.25rem, 6vw, 3.75rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); }
h3 { font-size: 1.25rem; }

p { margin: 0 0 1.15em; }

.lede {
  font-size: clamp(1.075rem, 2.2vw, 1.3rem);
  color: var(--ink-soft);
  max-width: 62ch;
}

.eyebrow {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: .28em;
  font-size: .75rem;
  color: var(--ink-muted);
  margin: 0 0 1rem;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--ink);
  color: #fff;
  padding: .75rem 1.25rem;
  z-index: 999;
}

.skip-link:focus { left: 0; }

/* ------------------------------------------------------------- layout --- */

.wrap {
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
}

.section { padding: clamp(3.5rem, 8vw, 6rem) 0; }
.section--alt { background: var(--paper-alt); border-block: 1px solid var(--line); }
.section__head { max-width: 62ch; margin-bottom: 2.5rem; }

.grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 720px) {
  .grid--2 { grid-template-columns: repeat(2, 1fr); }
  .grid--3 { grid-template-columns: repeat(3, 1fr); }
}

/* ------------------------------------------------------------ buttons --- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  font-family: var(--font-display);
  font-size: .95rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  text-decoration: none;
  padding: .85rem 1.6rem;
  border-radius: 999px;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: #fff;
  cursor: pointer;
  transition: transform .15s ease, background-color .15s ease, color .15s ease;
}

.btn:hover { background: var(--accent-dark); border-color: var(--accent-dark); color: #fff; transform: translateY(-1px); }

.btn--ghost { background: transparent; color: var(--ink); }
.btn--ghost:hover { background: var(--ink); color: #fff; border-color: var(--ink); }

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: .85rem;
  margin-top: 2rem;
}

/* -------------------------------------------------------------- header --- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 72px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  text-decoration: none;
  color: var(--ink);
}

.brand img { width: 40px; height: 40px; object-fit: contain; }

.brand__name {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: .22em;
  font-size: .9rem;
  white-space: nowrap;
}

.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0 10px;
  background: none;
  border: 1px solid var(--line);
  border-radius: 10px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--ink);
  transition: transform .2s ease, opacity .2s ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.site-nav {
  display: none;
  gap: 1.75rem;
  align-items: center;
}

.site-nav a {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .82rem;
  text-decoration: none;
  color: var(--ink-soft);
  padding: .35rem 0;
  border-bottom: 2px solid transparent;
}

.site-nav a:hover { color: var(--ink); }
.site-nav a[aria-current="page"] { color: var(--ink); border-bottom-color: var(--accent); }

.site-nav .btn {
  color: #fff;
  padding: .7rem 1.4rem;
  border: 1px solid var(--ink);
}

.site-nav .btn:hover { border-color: var(--accent-dark); }

@media (max-width: 819px) {
  .site-nav[data-open="true"] {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: .35rem;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    padding: 1rem clamp(1.25rem, 5vw, 2rem) 1.5rem;
    box-shadow: var(--shadow-md);
  }

  .site-nav[data-open="true"] a { padding: .7rem 0; font-size: 1rem; }
  .site-nav[data-open="true"] .btn { margin-top: .5rem; }
}

@media (min-width: 820px) {
  .nav-toggle { display: none; }
  .site-nav { display: flex; }
  .brand img { width: 46px; height: 46px; }
}

/* ---------------------------------------------------------------- hero --- */

.hero {
  position: relative;
  padding: clamp(3rem, 9vw, 6rem) 0 clamp(3rem, 8vw, 5rem);
  background:
    radial-gradient(1100px 480px at 78% 8%, rgba(169, 104, 47, .10), transparent 62%),
    linear-gradient(180deg, #fff 0%, var(--paper-alt) 100%);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

.hero__inner {
  display: grid;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: center;
}

@media (min-width: 900px) {
  .hero__inner { grid-template-columns: 1.05fr .95fr; }
}

.hero__art {
  justify-self: center;
  max-width: 460px;
  mix-blend-mode: multiply;   /* drops the logo's white background into the page */
}

.hero h1 { margin-bottom: .35em; }

.hero__tag {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: .3em;
  font-size: .8rem;
  color: var(--accent-dark);
  margin-bottom: 1.25rem;
}

/* --------------------------------------------------------------- cards --- */

.card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
}

.card h3 { margin-bottom: .4rem; }
.card p:last-child { margin-bottom: 0; }

.card__icon {
  font-size: 1.5rem;
  line-height: 1;
  margin-bottom: .85rem;
  color: var(--accent-dark);
}

/* --------------------------------------------------------- setlist/tags --- */

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.tag-list li {
  border: 1px solid var(--line);
  background: var(--paper);
  border-radius: 999px;
  padding: .4rem 1rem;
  font-size: .92rem;
  color: var(--ink-soft);
}

.song-list {
  columns: 2;
  column-gap: 2.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.song-list li {
  break-inside: avoid;
  padding: .45rem 0;
  border-bottom: 1px solid var(--line);
}

.song-list li span { display: block; color: var(--ink-muted); font-size: .88rem; }

@media (max-width: 620px) { .song-list { columns: 1; } }

/* --------------------------------------------------------------- media --- */

.embed {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--ink);
  border: 1px solid var(--line);
}

.embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Stand-in shown only when the page is opened straight off the disk, where
   YouTube refuses to play (its "Error 153"). */
.embed-fallback {
  position: absolute;
  inset: 0;
  display: grid;
  place-content: center;
  gap: .75rem;
  text-align: center;
  padding: 2rem;
  background: var(--ink);
  color: #fff;
  text-decoration: none;
}

.embed-fallback:hover { color: #fff; }
.embed-fallback:hover .embed-fallback__play { background: var(--accent); border-color: var(--accent); }

.embed-fallback__play {
  justify-self: center;
  width: 64px;
  height: 64px;
  border: 2px solid #fff;
  border-radius: 50%;
  display: grid;
  place-content: center;
  transition: background-color .15s ease, border-color .15s ease;
}

.embed-fallback__play svg { width: 22px; height: 22px; fill: #fff; margin-left: 3px; }

.embed-fallback strong {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.15rem;
}

.embed-fallback span { color: #b9b6b1; font-size: .92rem; max-width: 34ch; }

/* --------------------------------------------------------- social feeds --- */

.feed {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.feed__head {
  display: flex;
  align-items: center;
  gap: .65rem;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--line);
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .78rem;
  color: var(--ink-soft);
}

.feed__head svg { width: 18px; height: 18px; fill: currentColor; flex: none; }

.feed__body {
  position: relative;
  min-height: 520px;
  background: var(--paper-alt);
}

.feed__body iframe {
  display: block;
  width: 100%;
  max-width: 500px;
  border: 0;
}

/* Shown underneath the embed; the iframe covers it once the feed loads. */
.feed__fallback {
  position: absolute;
  inset: 0;
  z-index: -1;
  display: grid;
  place-content: center;
  gap: .5rem;
  text-align: center;
  padding: 2rem;
  color: var(--ink-muted);
  font-size: .95rem;
}

.feed__note {
  padding: .9rem 1.25rem;
  border-top: 1px solid var(--line);
  font-size: .9rem;
}

/* ---------------------------------------------------------------- form --- */

.form { display: grid; gap: 1.1rem; }

.field { display: grid; gap: .4rem; }

.field label {
  font-family: var(--font-display);
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--ink-soft);
}

.field input,
.field select,
.field textarea {
  font: inherit;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: .75rem .9rem;
  width: 100%;
}

.field textarea { min-height: 150px; resize: vertical; }

.field input:focus,
.field select:focus,
.field textarea:focus { border-color: var(--accent); }

@media (min-width: 720px) {
  .form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
}

.form__note { font-size: .9rem; color: var(--ink-muted); }

.form__hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* --------------------------------------------------------------- misc --- */

.quote {
  margin: 0;
  border-left: 3px solid var(--accent);
  padding-left: 1.25rem;
  font-size: 1.15rem;
  color: var(--ink-soft);
  font-style: italic;
}

.quote footer { font-style: normal; font-size: .9rem; color: var(--ink-muted); margin-top: .5rem; }

.cta {
  text-align: center;
  background: var(--ink);
  color: #fff;
  border-radius: var(--radius);
  padding: clamp(2.5rem, 6vw, 4rem) 1.5rem;
}

.cta h2 { color: #fff; }
.cta p { color: #d7d5d1; max-width: 52ch; margin-inline: auto; }
.cta .btn { background: #fff; color: var(--ink); border-color: #fff; }
.cta .btn:hover { background: var(--accent); border-color: var(--accent); color: #fff; }

.faq { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); padding: 1.1rem 0; }
.faq summary {
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 1.1rem;
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--accent-dark); font-size: 1.4rem; line-height: 1; }
.faq details[open] summary::after { content: "\2013"; }
.faq details p { margin: .85rem 0 0; color: var(--ink-soft); }

/* -------------------------------------------------------------- footer --- */

.site-footer {
  background: var(--paper-alt);
  border-top: 1px solid var(--line);
  padding: 3rem 0 2rem;
  font-size: .95rem;
}

.site-footer__grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 2rem;
}

@media (min-width: 720px) {
  .site-footer__grid { grid-template-columns: 1.4fr 1fr 1fr; }
}

.site-footer h4 {
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: var(--ink-muted);
}

.site-footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .5rem; }
.site-footer a { color: var(--ink-soft); text-decoration: none; }
.site-footer a:hover { color: var(--accent-dark); text-decoration: underline; }

.site-footer__bottom {
  border-top: 1px solid var(--line);
  padding-top: 1.25rem;
  display: flex;
  flex-wrap: wrap;
  gap: .5rem 1.5rem;
  justify-content: space-between;
  color: var(--ink-muted);
  font-size: .85rem;
}

/* Beats the .site-footer ul grid rule so the icons sit in a row. */
.site-footer ul.social {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: .75rem;
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
}

.social a {
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--paper);
  color: var(--ink);
}

.social a:hover { background: var(--ink); color: #fff; border-color: var(--ink); }
.social svg { width: 18px; height: 18px; fill: currentColor; }

.btn svg { width: 18px; height: 18px; fill: currentColor; }

/* ------------------------------------------------------------- motion --- */

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .6s ease, transform .6s ease;
}

.reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    transition-duration: .001ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* --------------------------------------------------------------- print --- */

@media print {
  .site-header, .site-footer, .btn-row, .nav-toggle { display: none; }
  body { font-size: 11pt; }
}
