/* Lane Haas — honky-tonk singer/songwriter, Coldwater, Kansas.
   Built like a dance-hall show bill: poster type at scale, warm night ground,
   neon amber over the door, and a red lifted off the Impala in the hero. */

:root {
  --night: #0f0d0c;
  --night-2: #171310;
  --night-3: #201a15;
  --bone: #f4ece0;
  --bone-dim: rgba(244, 236, 224, 0.7);
  --bone-faint: rgba(244, 236, 224, 0.45);
  --amber: #ffb347;
  --amber-hot: #ffd08a;
  --red: #c8452f;
  --line: rgba(244, 236, 224, 0.14);

  --display: "Alfa Slab One", Georgia, serif;
  --body: Barlow, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --cond: "Barlow Condensed", var(--body);

  --gutter: clamp(20px, 5vw, 64px);
  --band: clamp(64px, 10vw, 140px);
  --measure: 62ch;
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--night);
  color: var(--bone);
  font-family: var(--body);
  font-size: clamp(16.5px, 1.05vw, 18.5px);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* height:auto is load-bearing — width/height attributes act as presentational
   hints, so clamping width alone stretches the picture. */
img { max-width: 100%; height: auto; display: block; }

a { color: var(--amber); text-underline-offset: 3px; }
a:hover { color: var(--amber-hot); }

:focus-visible { outline: 3px solid var(--amber); outline-offset: 3px; }

.skip {
  position: absolute; left: -9999px; top: 0; z-index: 100;
  background: var(--amber); color: var(--night); padding: 12px 18px; font-weight: 600;
}
.skip:focus { left: 0; }

.wrap { width: 100%; max-width: 1200px; margin-inline: auto; padding-inline: var(--gutter); }

/* ------------------------------------------------------------------ nav -- */

.nav {
  position: sticky; top: 0; z-index: 60;
  background: rgba(15, 13, 12, 0.86);
  backdrop-filter: saturate(150%) blur(10px);
  border-bottom: 1px solid var(--line);
}

.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 18px; min-height: 62px;
}

.nav-name {
  font-family: var(--display); font-size: 1.1rem; letter-spacing: 0.01em;
  color: var(--bone); text-decoration: none; white-space: nowrap;
}

.nav-links { display: flex; gap: clamp(12px, 2.2vw, 30px); align-items: center; }

.nav-links a {
  font-family: var(--cond); font-weight: 600; font-size: 1.02rem;
  letter-spacing: 0.09em; text-transform: uppercase;
  color: var(--bone-dim); text-decoration: none;
  padding: 4px 0; border-bottom: 2px solid transparent;
}
.nav-links a:hover { color: var(--bone); border-bottom-color: var(--amber); }

.nav-book {
  background: var(--amber); color: var(--night) !important;
  padding: 8px 16px; border-radius: 2px; border-bottom: 0 !important;
}
.nav-book:hover { background: var(--amber-hot); }

/* ----------------------------------------------------------------- hero -- */

.hero { position: relative; isolation: isolate; min-height: min(92vh, 860px);
        display: flex; align-items: flex-end; background: var(--night-2); }

.hero-img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: 62% 50%; z-index: -2;
}

.hero-scrim {
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(to top, rgba(12, 10, 9, 0.96) 2%, rgba(12, 10, 9, 0.72) 30%,
                    rgba(12, 10, 9, 0.24) 62%, rgba(12, 10, 9, 0.05) 100%),
    linear-gradient(to right, rgba(12, 10, 9, 0.82) 0%, rgba(12, 10, 9, 0.3) 46%, transparent 76%);
}

.hero-inner { padding-block: clamp(34px, 7vw, 88px); }

.kicker {
  font-family: var(--cond); font-weight: 600; font-size: clamp(.86rem, 1.3vw, 1rem);
  letter-spacing: 0.3em; text-transform: uppercase; color: var(--amber);
  margin: 0 0 clamp(12px, 2vw, 20px);
}

.hero-name {
  font-family: var(--display);
  font-size: clamp(3.4rem, 13vw, 10rem);
  line-height: 0.84; letter-spacing: -0.02em;
  margin: 0 0 clamp(14px, 2vw, 22px); color: var(--bone);
  text-shadow: 0 4px 40px rgba(0, 0, 0, 0.55);
}

.hero-sub {
  font-family: var(--cond); font-weight: 500;
  font-size: clamp(1.05rem, 2.4vw, 1.6rem);
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--bone-dim); margin: 0 0 clamp(24px, 3.5vw, 38px);
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }

/* -------------------------------------------------------------- buttons -- */

.btn {
  display: inline-block; font-family: var(--cond); font-weight: 600;
  font-size: 1.02rem; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 15px 30px; border-radius: 2px; text-decoration: none;
  border: 2px solid transparent; cursor: pointer;
  transition: background-color .18s ease, color .18s ease, border-color .18s ease;
}
.btn-solid { background: var(--amber); color: var(--night); border-color: var(--amber); }
.btn-solid:hover { background: var(--amber-hot); border-color: var(--amber-hot); color: var(--night); }
.btn-ghost { color: var(--bone); border-color: rgba(244, 236, 224, 0.4); }
.btn-ghost:hover { border-color: var(--bone); background: rgba(244, 236, 224, 0.08); color: var(--bone); }

/* ---------------------------------------------------------------- bands -- */

.band { padding-block: var(--band); }
.band-2 { background: var(--night-2); }
.band-3 { background: var(--night-3); }

.rule-label {
  display: flex; align-items: center; gap: 18px;
  font-family: var(--cond); font-weight: 600; font-size: .95rem;
  letter-spacing: 0.28em; text-transform: uppercase; color: var(--amber);
  margin: 0 0 clamp(26px, 4vw, 44px);
}
.rule-label::after { content: ""; flex: 1; height: 2px; background: var(--line); }

.headline {
  font-family: var(--display);
  font-size: clamp(1.9rem, 5vw, 3.6rem);
  line-height: 1.02; letter-spacing: -0.015em; margin: 0 0 .6em; color: var(--bone);
}

.lede { font-size: clamp(1.05rem, 1.7vw, 1.35rem); color: var(--bone-dim); max-width: var(--measure); margin: 0; }

/* the band line, set like a bill's centre panel */
.quote {
  font-family: var(--display);
  font-size: clamp(1.5rem, 4.2vw, 3rem);
  line-height: 1.12; letter-spacing: -0.015em;
  max-width: 22ch; margin: 0; color: var(--bone);
}
.quote em { color: var(--amber); font-style: normal; }
.quote-cite {
  display: block; margin-top: 22px; font-family: var(--cond); font-weight: 600;
  font-size: .95rem; letter-spacing: .22em; text-transform: uppercase; color: var(--bone-faint);
}

/* --------------------------------------------------------------- signature
   #HonkyTonkDreams as the neon over the door — used once, on purpose. */

.neon {
  font-family: var(--display);
  font-size: clamp(2rem, 8.5vw, 6.5rem);
  line-height: 1; letter-spacing: -0.01em; margin: 0; text-align: center;
  color: var(--amber-hot);
  text-shadow:
    0 0 6px rgba(255, 179, 71, .9),
    0 0 22px rgba(255, 179, 71, .65),
    0 0 60px rgba(255, 140, 40, .45),
    0 0 120px rgba(255, 120, 20, .3);
}
.neon-wrap { padding-block: clamp(52px, 9vw, 120px); background: var(--night); position: relative; }

/* ---------------------------------------------------------------- video -- */

.video-frame {
  position: relative; aspect-ratio: 16 / 9; overflow: hidden;
  border-radius: 3px; background: #000; border: 1px solid var(--line);
}
.video-frame img { width: 100%; height: 100%; object-fit: cover; }
.video-frame iframe { width: 100%; height: 100%; border: 0; display: block; }

.play {
  position: absolute; inset: 0; width: 100%; border: 0; padding: 0; cursor: pointer;
  background: linear-gradient(to top, rgba(12,10,9,.7), rgba(12,10,9,.05) 60%);
  display: grid; place-items: center;
}
.play-glyph {
  width: 84px; height: 84px; border-radius: 50%;
  background: var(--amber); position: relative; display: block;
  transition: transform .2s ease, background-color .2s ease;
  box-shadow: 0 0 40px rgba(255,179,71,.45);
}
.play-glyph::after {
  content: ""; position: absolute; top: 50%; left: 56%; transform: translate(-50%,-50%);
  border-left: 26px solid var(--night); border-top: 16px solid transparent; border-bottom: 16px solid transparent;
}
.play:hover .play-glyph { transform: scale(1.07); background: var(--amber-hot); }
.play-label { position: absolute; width: 1px; height: 1px; overflow: hidden; clip-path: inset(50%); }

.video-cap { margin: 16px 0 0; font-family: var(--cond); letter-spacing: .1em;
             text-transform: uppercase; color: var(--bone-faint); font-size: .92rem; }

/* ---------------------------------------------------------------- shows -- */

.bill {
  border: 2px solid var(--line); border-radius: 3px; padding: clamp(28px, 5vw, 56px);
  text-align: center; background: var(--night);
}
.bill-top, .bill-bottom {
  font-family: var(--cond); font-weight: 600; letter-spacing: .3em;
  text-transform: uppercase; color: var(--amber); font-size: .92rem; margin: 0;
}
.bill-main {
  font-family: var(--display); font-size: clamp(1.5rem, 4vw, 2.6rem);
  line-height: 1.1; margin: 18px 0; color: var(--bone);
}
.bill-note { margin: 0 0 22px; color: var(--bone-dim); }

/* ---------------------------------------------------------------- about -- */

.about-grid { display: grid; gap: clamp(28px, 5vw, 60px); grid-template-columns: 1fr; align-items: center; }
@media (min-width: 860px) { .about-grid { grid-template-columns: 380px 1fr; } }
.about-portrait { border-radius: 3px; overflow: hidden; border: 1px solid var(--line); }

/* ---------------------------------------------------------------- book --- */

.book { text-align: center; }
.book-phone {
  display: inline-block; font-family: var(--display);
  font-size: clamp(2.1rem, 7.5vw, 5rem); line-height: 1;
  color: var(--bone); text-decoration: none; letter-spacing: -0.01em;
}
.book-phone:hover { color: var(--amber); }
.book-email {
  display: inline-block; margin-top: 22px; font-family: var(--cond); font-weight: 600;
  font-size: clamp(1.05rem, 2.2vw, 1.5rem); letter-spacing: .1em;
  color: var(--amber); text-decoration: none;
}
.book-email:hover { color: var(--amber-hot); }
.book-where {
  margin: 30px 0 0; font-family: var(--cond); font-weight: 600; letter-spacing: .26em;
  text-transform: uppercase; color: var(--bone-faint); font-size: .92rem;
}

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

.foot { border-top: 1px solid var(--line); padding-block: clamp(38px, 6vw, 64px); background: var(--night-2); }
.foot-inner { display: flex; flex-wrap: wrap; gap: 22px; align-items: center; justify-content: space-between; }
.foot-name { font-family: var(--display); font-size: 1.3rem; margin: 0; color: var(--bone); }
.social { display: flex; flex-wrap: wrap; gap: clamp(14px, 2.4vw, 28px); }
.social a {
  font-family: var(--cond); font-weight: 600; letter-spacing: .14em; text-transform: uppercase;
  color: var(--bone-dim); text-decoration: none; font-size: .96rem;
}
.social a:hover { color: var(--amber); }
.foot-legal { width: 100%; margin: 0; font-size: .86rem; color: var(--bone-faint); }

@media (max-width: 720px) {
  .nav-links a:not(.nav-book) { display: none; }
  .hero { min-height: 88vh; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .play:hover .play-glyph { transform: none; }
}
