:root {
  --bg: #f5edde;
  --bg-alt: #ece0c8;
  --ink: #2b1d14;
  --ink-soft: #5b4d3d;
  --rust: #a8461c;
  --gold: #c89b3c;
  --moss: #5c6b4f;
  --line: #d8c9a3;
  --paper-shadow: rgba(43, 29, 20, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    url("./images/content/bg-paper.svg") repeat top left / 320px 320px,
    var(--bg);
  color: var(--ink);
  font-family: "Work Sans", sans-serif;
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* soft vignette over the paper stock */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(
    ellipse 80% 70% at 50% 50%,
    transparent 55%,
    rgba(43, 29, 20, 0.1) 100%
  );
  z-index: 1;
}

h1,
h2,
h3 {
  font-family: "Fraunces", serif;
  font-weight: 500;
  margin: 0;
  color: var(--ink);
}

.mono {
  font-family: "JetBrains Mono", monospace;
  letter-spacing: 0.02em;
}

a {
  color: inherit;
}

.wrap {
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 28px;
}

/* ---------- ICONS ---------- */
/* Icons live once as <symbol>s in the #sprite block at the top of <body>;
   reference anywhere with <svg class="icon"><use href="#i-name" /></svg>.
   Colour follows currentColor; size follows font-size unless a context
   (.platform, .stage-link, .social-pill, .booking-submit) sets width/height. */
.sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.icon {
  width: 1em;
  height: 1em;
  display: block;
  flex-shrink: 0;
}

/* ---------- NAV ---------- */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  background: transparent;
  backdrop-filter: none;
  border-bottom: 1px solid transparent;
  transition:
    background 0.3s ease,
    backdrop-filter 0.3s ease,
    border-color 0.3s ease;
}

nav.scrolled {
  background: rgba(245, 237, 222, 0.82);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(216, 201, 163, 0.5);
}

.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 16px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  flex-direction: column;
  font-family: "Fraunces", serif;
  font-size: 1.05rem;
  line-height: 1.05;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #fdf6ea;
  text-shadow: 0 2px 12px rgba(20, 13, 8, 0.4);
  transition:
    opacity 0.2s ease,
    color 0.3s ease,
    text-shadow 0.3s ease;
}

.nav-logo span {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  color: rgba(253, 246, 234, 0.75);
  transition: color 0.3s ease;
}

.nav-logo:hover {
  opacity: 0.8;
}

nav.scrolled .nav-logo {
  color: var(--ink);
  text-shadow: none;
}

nav.scrolled .nav-logo span {
  color: var(--ink-soft);
}

.nav-logo-img {
  display: block;
  height: 90px;
  width: auto;
  filter: drop-shadow(0 2px 12px rgba(20, 13, 8, 0.4));
  transition:
    height 0.3s ease,
    filter 0.3s ease;
}

nav.scrolled .nav-logo-img {
  height: 50px;
  filter: none;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 34px;
}

.nav-links {
  display: flex;
  gap: 26px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  font-family: "Work Sans", sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-decoration: none;
  padding: 11px 24px;
  border-radius: 100px;
  background: var(--rust);
  color: #fdf6ea;
  box-shadow: 0 6px 18px -8px rgba(43, 29, 20, 0.45);
  transition:
    background 0.2s ease,
    color 0.2s ease;
  white-space: nowrap;
}

.nav-cta:hover {
  background: #8f3a17;
}

.nav-links a {
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 500;
  color: #fdf6ea;
  text-shadow: 0 2px 12px rgba(20, 13, 8, 0.4);
  opacity: 0.92;
  position: relative;
  padding-bottom: 3px;
  transition:
    opacity 0.2s ease,
    color 0.3s ease,
    text-shadow 0.3s ease;
}

nav.scrolled .nav-links a {
  color: var(--ink-soft);
  text-shadow: none;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 1px;
  background: var(--rust);
  transition: width 0.25s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-links a:hover {
  opacity: 1;
}

nav.scrolled .nav-links a:hover {
  color: var(--ink);
}

/* ---------- NAV TOGGLE (sandwich menu) ---------- */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  flex-shrink: 0;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 2px;
  background: #fdf6ea;
  box-shadow: 0 2px 12px rgba(20, 13, 8, 0.4);
  transition:
    transform 0.25s ease,
    opacity 0.2s ease,
    background 0.3s ease;
}

nav.scrolled .nav-toggle span {
  background: var(--ink);
  box-shadow: none;
}

nav.nav-open .nav-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

nav.nav-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

nav.nav-open .nav-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ---------- HERO ---------- */
.hero {
  min-height: 110vh;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  text-align: left;
  position: relative;
  overflow: hidden;
  padding: 148px 28px 64px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  transform: scaleX(-1);
  background:
    linear-gradient(
      180deg,
      rgba(43, 29, 20, 0.32) 0%,
      rgba(43, 29, 20, 0.05) 28%,
      transparent 55%,
      rgba(43, 29, 20, 0.15) 100%
    ),
    url("./images/content/aeryn-photo.jpeg") no-repeat center 30% / cover;
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 880px;
  width: 100%;
  margin: 0 auto;
}

.hero .eyebrow {
  display: block;
  font-size: 0.78rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin-bottom: 18px;
  text-shadow: 0 2px 16px rgba(20, 13, 8, 0.7);
}

.hero h1 {
  font-size: clamp(3.6rem, 12vw, 7.5rem);
  line-height: 0.92;
  letter-spacing: -0.01em;
  color: #fdf6ea;
  text-shadow: 0 4px 28px rgba(20, 13, 8, 0.65);
}

.hero .underline {
  width: 220px;
  max-width: 60vw;
  height: auto;
  margin: 14px 0 0;
}

.hero-tagline {
  color: rgba(253, 246, 234, 0.9);
  text-shadow: 0 2px 14px rgba(20, 13, 8, 0.7);
  font-size: 1.05rem;
  max-width: 420px;
  margin: 20px 0 0;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.hero-ctas .pill:not(.primary) {
  border-color: rgba(253, 246, 234, 0.6);
  color: #fdf6ea;
}

.hero-ctas .pill:not(.primary):hover {
  background: #fdf6ea;
  color: var(--ink);
  border-color: #fdf6ea;
}

/* ---------- SECTION SHELL ---------- */
section {
  position: relative;
  padding: 100px 0;
  z-index: 2;
}

section.alt {
  background:
    radial-gradient(
      ellipse 70% 100% at 50% 100%,
      rgba(168, 70, 28, 0.14),
      transparent 65%
    ),
    linear-gradient(
      180deg,
      rgba(92, 107, 79, 0.1),
      rgba(92, 107, 79, 0.04) 40%
    ),
    url("./images/content/bg-linen.svg") repeat top left / 320px 320px,
    var(--bg-alt);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-head {
  margin-bottom: 48px;
}

.section-head-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent, var(--rust));
}

.section-head-label .rule {
  width: 28px;
  height: 1px;
  flex-shrink: 0;
  background: var(--accent, var(--rust));
}

.section-head-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  flex-wrap: wrap;
}

#videos .section-head {
  --accent: var(--moss);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- PHOTO GALLERY ---------- */
.gallery-row {
  display: flex;
  width: 100%;
  height: 85vh;
  min-height: 420px;
  max-height: 900px;
  position: relative;
}

.gallery-row img {
  flex: 1 1 0;
  min-width: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(1) contrast(1.08) brightness(1.02);
}

.gallery-row::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  box-shadow: inset 0 0 90px 10px rgba(0, 0, 0, 0.45);
  mix-blend-mode: multiply;
}

@media (max-width: 640px) {
  .gallery-row {
    flex-direction: column;
    height: auto;
    max-height: none;
  }

  .gallery-row img {
    height: 60vh;
  }

  /* Smaller logo and hero type so the headline and CTAs sit inside the
     photo instead of crowding it edge-to-edge. */
  .nav-logo-img {
    height: 56px;
  }

  nav.scrolled .nav-logo-img {
    height: 40px;
  }

  .hero {
    min-height: 100vh;
    padding: 108px 20px 48px;
  }

  .hero h1 {
    font-size: clamp(2.6rem, 15vw, 3.6rem);
  }

  .hero-tagline {
    font-size: 0.95rem;
    max-width: 320px;
  }

  .hero-ctas .pill {
    padding: 11px 20px;
    font-size: 0.85rem;
  }
}

/* ---------- MUSIC ---------- */
.music-head {
  margin-bottom: 44px;
}

.music-head .section-head-label {
  --accent: var(--rust);
  margin-bottom: 26px;
}

.music-head-row {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
  column-gap: clamp(40px, 6vw, 96px);
  align-items: end;
}

.music-headline {
  font-size: clamp(2.5rem, 6.5vw, 4.8rem);
  line-height: 0.98;
  letter-spacing: -0.02em;
  font-weight: 600;
  margin: 0;
}

.music-head-note {
  color: var(--ink-soft);
  font-size: 1.05rem;
  max-width: 40ch;
  margin: 0 0 0.7rem;
}

.music-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.9fr) minmax(0, 1fr);
  gap: 26px;
  align-items: stretch;
}

.music-card {
  position: relative;
  background: #100f0e;
  border: 1px solid rgba(253, 246, 234, 0.08);
  border-radius: 24px;
  overflow: hidden;
}

.music-card-spotify {
  padding: 26px 26px 24px;
}

.music-card-label {
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(253, 246, 234, 0.72);
  margin-bottom: 20px;
}

.music-card-label .live-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #1db954;
  box-shadow: 0 0 0 4px rgba(29, 185, 84, 0.16);
  flex-shrink: 0;
}

.spotify-embed {
  display: block;
  width: 100%;
  height: 420px;
  border: 0;
  border-radius: 14px;
}

.music-card-stage {
  display: flex;
  flex-direction: column;
  padding: 44px 34px 34px;
  min-height: 340px;
}

.music-card-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(
      130% 80% at 100% 100%,
      rgba(168, 70, 28, 0.4),
      transparent 62%
    ),
    radial-gradient(
      90% 60% at 0% 100%,
      rgba(168, 70, 28, 0.12),
      transparent 55%
    );
}

.music-card-stage::after {
  content: "";
  position: absolute;
  top: 0;
  left: 34px;
  width: 52px;
  height: 3px;
  background: var(--rust);
}

.stage-quote {
  position: relative;
  font-family: "Fraunces", serif;
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.7rem, 2.4vw, 2.15rem);
  line-height: 1.16;
  color: #fdf6ea;
  margin: clamp(24px, 7vh, 72px) 0 auto;
}

.stage-links {
  position: relative;
  display: flex;
  gap: 14px;
  margin-top: 40px;
  padding-top: 26px;
  border-top: 1px solid rgba(253, 246, 234, 0.1);
}

.stage-link {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(253, 246, 234, 0.08);
  border: 1px solid rgba(253, 246, 234, 0.14);
  color: #fdf6ea;
  transition: background 0.2s ease;
}

.stage-link:hover {
  background: rgba(253, 246, 234, 0.18);
}

.stage-link svg {
  width: 20px;
  height: 20px;
}

/* ---------- VIDEOS GRID ---------- */
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem 1.2rem;
  margin-top: 2rem;
}

.video-card {
  flex: 1 1 290px;
  max-width: 420px;
}

/* Every card uses one 4 / 5 frame regardless of source platform, so the
   grid stays in tidy rows. Per-card knobs (set inline on .video-media):
     --card-src   url('./images/videos/clip.jpg')   the thumbnail
     --card-fit   cover (default) | contain          crop vs. letterbox
     --card-pos   center (default) | e.g. center 20%  focal point after crop */
.video-media {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 14px;
  overflow: hidden;
  display: block;
  background-image:
    linear-gradient(
      180deg,
      rgba(20, 13, 8, 0) 0%,
      rgba(20, 13, 8, 0.12) 42%,
      rgba(20, 13, 8, 0.82) 100%
    ),
    var(
      --card-src,
      repeating-linear-gradient(
        45deg,
        rgba(253, 246, 234, 0.04) 0 2px,
        transparent 2px 10px
      )
    );
  background-color: var(--ink);
  background-size: auto, var(--card-fit, cover);
  background-position: center, var(--card-pos, center);
  background-repeat: no-repeat;
  box-shadow: 0 16px 34px -16px rgba(43, 29, 20, 0.35);
  text-decoration: none;
}

.video-media .play {
  position: absolute;
  right: 14px;
  bottom: 14px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(20, 13, 8, 0.35);
  color: var(--rust);
  transition:
    transform 0.2s ease,
    background 0.2s ease;
}

.has-photo .play {
  background: rgba(20, 13, 8, 0.55);
  backdrop-filter: blur(2px);
  color: #fdf6ea;
  font-size: 1rem;
}

.has-photo .video-media:hover .play {
  transform: scale(1.08);
  background: rgba(20, 13, 8, 0.75);
}

.video-media .platform {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--rust);
  color: #fdf6ea;
}

.video-media .platform svg {
  width: 16px;
  height: 16px;
}

.video-caption {
  position: absolute;
  left: 16px;
  right: 62px;
  bottom: 14px;
  z-index: 1;
}

.video-title {
  font-family: "Fraunces", serif;
  font-weight: 600;
  font-size: 1.05rem;
  line-height: 1.2;
  margin: 0 0 3px;
  color: #fdf6ea;
  text-shadow: 0 1px 10px rgba(20, 13, 8, 0.55);
}

.video-meta {
  display: inline-block;
  font-size: 0.72rem;
  color: rgba(253, 246, 234, 0.82);
  letter-spacing: 0.04em;
  text-shadow: 0 1px 8px rgba(20, 13, 8, 0.5);
}

/* ---------- ABOUT ---------- */
.about-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  column-gap: clamp(40px, 6vw, 96px);
  row-gap: 30px;
  align-items: start;
}

.about-layout > .section-head-label {
  grid-column: 1 / -1;
  --accent: var(--gold);
  margin-bottom: 0;
}

.about-headline {
  font-size: clamp(2.6rem, 6vw, 4.4rem);
  line-height: 0.98;
  letter-spacing: -0.02em;
  font-weight: 600;
  margin-bottom: 40px;
}

.about-photo {
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 24px 48px -22px var(--paper-shadow);
  background: var(--bg-alt);
}

.about-photo img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 30%;
}

.about-copy {
  padding-top: 0;
}

.about-lead {
  font-family: "Fraunces", serif;
  font-weight: 500;
  font-size: clamp(1.5rem, 2.6vw, 2.05rem);
  line-height: 1.2;
  color: var(--ink);
  margin: 0 0 28px;
}

.about-copy p:not(.about-lead) {
  color: var(--ink-soft);
  max-width: 54ch;
  margin: 0 0 20px;
}

.about-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}

.social-pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 11px 20px;
  border-radius: 100px;
  background: rgba(43, 29, 20, 0.06);
  border: 1px solid transparent;
  text-decoration: none;
  font-size: 0.88rem;
  color: var(--ink);
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease;
}

.social-pill:hover {
  background: rgba(168, 70, 28, 0.1);
  border-color: rgba(168, 70, 28, 0.35);
  color: var(--rust);
}

.social-pill svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* ---------- BOOKINGS & BUSINESS ---------- */
.booking-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  column-gap: clamp(40px, 6vw, 96px);
  row-gap: 40px;
  align-items: start;
}

.booking-intro > .section-head-label {
  margin-bottom: 18px;
}

.booking-headline {
  font-size: clamp(2.6rem, 6vw, 4.4rem);
  line-height: 0.98;
  letter-spacing: -0.02em;
  font-weight: 600;
  margin: 0 0 28px;
}

.booking-note {
  color: var(--ink-soft);
  font-size: 1.05rem;
  max-width: 42ch;
  margin: 0;
}

/* Honeypot field for the booking form: present in the DOM for bots to find,
   invisible and untabbable for real visitors. See main.js for the check. */
.hp-field {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
  padding: 0;
  margin: -1px;
}

.booking-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding: clamp(26px, 3vw, 40px);
  border-radius: 24px;
  background: linear-gradient(
    155deg,
    rgba(40, 30, 22, 0.5),
    rgba(20, 15, 11, 0.38)
  );
  border: 1px solid rgba(253, 246, 234, 0.18);
  backdrop-filter: blur(24px) saturate(150%);
  -webkit-backdrop-filter: blur(24px) saturate(150%);
  box-shadow:
    0 30px 60px -28px rgba(20, 13, 8, 0.5),
    inset 0 1px 0 rgba(253, 246, 234, 0.18);
  overflow: hidden;
  isolation: isolate;
}

.booking-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(
      130% 90% at 0% 0%,
      rgba(253, 246, 234, 0.12),
      transparent 55%
    ),
    radial-gradient(
      120% 80% at 100% 100%,
      rgba(168, 70, 28, 0.12),
      transparent 60%
    );
}

.booking-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 0;
}

.field-label {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(253, 246, 234, 0.72);
}

.booking-card input,
.booking-card select,
.booking-card textarea {
  width: 100%;
  font: inherit;
  font-family: "Work Sans", sans-serif;
  color: #fdf6ea;
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(253, 246, 234, 0.28);
  border-radius: 0;
  padding: 8px 0;
  transition: border-color 0.2s ease;
}

.booking-card select {
  appearance: none;
  padding-right: 24px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='none' stroke='%238a817a' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 6l4 4 4-4'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0 center;
}

.booking-card option {
  color: var(--ink);
}

.booking-card textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.5;
}

.booking-card input:focus,
.booking-card select:focus,
.booking-card textarea:focus {
  outline: none;
  border-bottom-color: var(--rust);
}

.booking-card input::placeholder,
.booking-card textarea::placeholder {
  color: rgba(253, 246, 234, 0.35);
}

.booking-submit {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 4px;
  padding: 13px 26px;
  border: 0;
  border-radius: 100px;
  background: var(--rust);
  color: #fdf6ea;
  font-family: "Work Sans", sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: background 0.2s ease;
}

.booking-submit:hover {
  background: #8f3a17;
}

.booking-submit .icon {
  width: 18px;
  height: 18px;
}

.booking-fineprint {
  margin: 0;
  font-size: 0.75rem;
  color: rgba(253, 246, 234, 0.6);
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 100px;
  text-decoration: none;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  border: 1px solid var(--ink);
  color: var(--ink);
  transition:
    background 0.2s ease,
    color 0.2s ease;
}

.pill.primary {
  background: var(--rust);
  border-color: var(--rust);
  color: #fdf6ea;
}

.pill.primary:hover {
  background: #8f3a17;
}

.pill:not(.primary):hover {
  background: var(--ink);
  color: var(--bg);
}

footer {
  padding: 34px 28px 44px;
  text-align: center;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.72rem;
  color: var(--ink-soft);
  border-top: 1px solid var(--line);
}

@media (max-width: 720px) {
  .video-card {
    max-width: none;
  }

  .about-layout {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .about-photo {
    max-width: 340px;
  }

  .music-head-row {
    grid-template-columns: 1fr;
    row-gap: 20px;
    align-items: start;
  }

  .music-grid {
    grid-template-columns: 1fr;
  }

  .booking-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .booking-row {
    grid-template-columns: 1fr;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-right {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 96px 28px 32px;
    background: var(--bg);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 20px 40px -20px rgba(43, 29, 20, 0.35);
    transform: translateY(-8px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition:
      opacity 0.25s ease,
      transform 0.25s ease,
      visibility 0.25s;
  }

  nav.nav-open .nav-right {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .nav-links {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  .nav-links a {
    display: block;
    width: 100%;
    padding: 14px 0;
    font-size: 1.05rem;
    color: var(--ink);
    text-shadow: none;
    border-bottom: 1px solid var(--line);
  }

  .nav-links a::after {
    display: none;
  }

  .nav-cta {
    display: inline-flex;
    align-self: flex-start;
    margin-top: 22px;
  }

  .section-head-row {
    align-items: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

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