/* ============================================================
   Hope McFarlin — moody B&W editorial / quiet luxury
   Near-black charcoal base, soft warm white text, ONE luminous
   mint accent (echoing the neon wordmark). Mint = accent, never fill.
   Mobile-first. No framework, no build step.
   ============================================================ */

:root {
  --bg:          #141414;   /* near-black charcoal */
  --surface:     #1C1C1C;   /* raised panel / alt section */
  --ink:         #F2F0EC;   /* soft warm white */
  --muted:       #A8A6A1;   /* secondary text */
  --accent:      #74E0C2;   /* luminous mint */
  --accent-deep: #4FC8A6;
  --line:        #2A2A2A;   /* hairline borders */

  /* Type */
  --head: 'Montserrat', system-ui, -apple-system, sans-serif;
  --sans: 'Inter', system-ui, -apple-system, sans-serif;

  /* Shape */
  --radius:    14px;
  --radius-sm: 8px;
  --container: 1180px;
  --gutter:    22px;

  /* Mint glow (neon echo) — used sparingly */
  --glow:    0 0 16px rgba(116, 224, 194, 0.40);
  --glow-sm: 0 0 8px rgba(116, 224, 194, 0.45);
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }

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

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { color: var(--accent); }

h1, h2, h3 {
  font-family: var(--head);
  font-weight: 300;
  line-height: 1.12;
  letter-spacing: 0.02em;
  margin: 0;
}

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

/* ---------- Subtle atmosphere (replaces the old starfield) ---------- */
.stars {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(60% 40% at 50% -8%, rgba(116, 224, 194, 0.06), transparent 70%),
    radial-gradient(120% 90% at 50% 50%, transparent 55%, rgba(0, 0, 0, 0.55) 100%);
}
.site-header, main, .footer { position: relative; z-index: 1; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--head);
  font-weight: 400;
  font-size: 0.92rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.9em 1.8em;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease, color .2s ease, background-color .2s ease;
}
/* Primary = mint outline + neon glow (NOT a mint fill) */
.btn--primary {
  color: var(--accent);
  border-color: var(--accent);
  background: rgba(116, 224, 194, 0.06);
  box-shadow: var(--glow);
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 26px rgba(116, 224, 194, 0.55);
  background: rgba(116, 224, 194, 0.12);
}
.btn--ghost { color: var(--ink); border-color: var(--line); }
.btn--ghost:hover { transform: translateY(-2px); border-color: var(--muted); }

/* ---------- Focus visibility ---------- */
a:focus-visible, button:focus-visible, [tabindex]:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 6px;
}

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(20, 20, 20, 0.78);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: var(--container);
  margin-inline: auto;
  padding: 0.9rem var(--gutter);
}
/* Wordmark — mint, light, spaced, with a soft neon glow */
.nav__brand {
  font-family: var(--head);
  font-weight: 400;
  font-size: 1.1rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--accent);
  text-shadow: 0 0 12px rgba(116, 224, 194, 0.55), 0 0 2px rgba(116, 224, 194, 0.5);
}
.nav__toggle {
  display: inline-flex; flex-direction: column; justify-content: center; align-items: center; gap: 5px;
  min-width: 44px; min-height: 44px;            /* ≥44px tap target */
  background: none; border: 0; padding: 10px; cursor: pointer;
}
.nav__bar { width: 24px; height: 2px; border-radius: 2px; background: var(--ink); }

.nav__menu {
  list-style: none; margin: 0; padding: 0.3rem 0 0.4rem;
  display: none; width: 100%; flex-direction: column; gap: 0.1rem;
}
.nav__menu--open { display: flex; }
.nav__menu a {
  display: flex; align-items: center; min-height: 44px;   /* ≥44px tap target */
  padding: 0.55rem 0.5rem;
  text-decoration: none; color: var(--muted);
  font-family: var(--head); font-weight: 400; font-size: 0.95rem;
  letter-spacing: 0.06em; border-radius: var(--radius-sm);
}
.nav__menu a:hover { color: var(--ink); }
.nav__cta { color: var(--accent) !important; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ============================================================
   HERO — split editorial portrait. Her name is IN the source photo,
   so we use a cropped portrait (no baked-in text) and add no <h1>.
   Mobile: portrait on top (framed on her face, fading to charcoal), text below.
   Desktop: portrait left ~50% feathering into a crisp text block right ~50%.
   ============================================================ */
.hero { position: relative; background: var(--bg); }

.hero__figure {
  position: relative;
  height: 58vh; min-height: 360px; max-height: 560px;
  overflow: hidden;
}
.hero__img {
  display: block; width: 100%; height: 100%;
  object-fit: cover; object-position: 50% 22%;  /* keep her face in frame below the nav (mobile) */
  filter: grayscale(100%) contrast(1.02);        /* B&W by default, color on hover (like the gallery) */
  transition: filter .5s ease;
}
.hero__figure:hover .hero__img,
.hero__figure:focus-within .hero__img { filter: grayscale(0%); }
/* Mobile: feather the BOTTOM of the portrait into the charcoal page */
.hero__feather {
  position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(to bottom, transparent 55%, var(--bg) 100%);
}
.hero__content {
  padding: 2rem var(--gutter) 2.8rem;
}
.hero__eyebrow {
  font-family: var(--head); text-transform: uppercase;
  letter-spacing: 0.34em; font-size: 0.72rem; font-weight: 400;
  color: var(--accent); margin: 0 0 1rem;
}
.hero__tagline {
  font-family: var(--head); font-weight: 300;
  font-size: clamp(1.7rem, 7vw, 2.4rem); letter-spacing: 0.04em;
  color: var(--ink); margin: 0 0 1rem;
}
.hero__sub { color: var(--muted); font-size: 1rem; max-width: 46ch; margin: 0 0 1.8rem; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 0.8rem; }
.hero__listeners {
  margin: 2rem 0 0; color: var(--muted);
  font-size: 0.82rem; letter-spacing: 0.08em; text-transform: uppercase;
}
.hero__listeners::before { content: "✦ "; color: var(--accent); }

/* ============================================================
   SECTIONS
   ============================================================ */
.section { padding-block: clamp(3.2rem, 9vw, 6rem); }
.section--alt {
  background: var(--surface);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section__head { max-width: 60ch; margin: 0 auto clamp(2rem, 5vw, 3rem); text-align: center; }
.section__head--left { margin-inline: 0; text-align: left; }
.section__kicker {
  font-family: var(--head); text-transform: uppercase;
  letter-spacing: 0.3em; font-size: 0.7rem; font-weight: 400;
  color: var(--accent); margin: 0 0 0.8rem;
}
.section__title { font-size: clamp(2rem, 6vw, 3.2rem); letter-spacing: 0.02em; }
.section__lead { color: var(--muted); margin: 0.9rem 0 0; }

/* ---------- Featured: top-songs slideshow ---------- */
.slideshow {
  position: relative;
  max-width: 460px;
  margin: 0 auto;
  padding-inline: 44px;
}
.slides { display: grid; }
.slide {
  grid-area: 1 / 1;
  opacity: 0; visibility: hidden;
  transition: opacity .5s ease;
  text-align: center;
}
.slide.is-active { opacity: 1; visibility: visible; }
@media (prefers-reduced-motion: reduce) { .slide { transition: none; } }

.slide__cover-wrap {
  width: 100%; aspect-ratio: 1 / 1;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.55);
}
.slide__cover { width: 100%; height: 100%; object-fit: cover; }
.slide__title {
  font-family: var(--head); font-weight: 300;
  font-size: clamp(1.2rem, 4vw, 1.6rem); letter-spacing: 0.03em;
  margin: 1.2rem 0 1.1rem;
}

/* Arrows */
.slide-arrow {
  position: absolute; transform: translateY(-50%);
  top: var(--cover-mid, 45%);
  width: 44px; height: 44px; border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(20, 20, 20, 0.6);
  border: 1px solid var(--line);
  color: var(--ink); font-size: 1.4rem; line-height: 1; cursor: pointer;
  transition: background-color .15s ease, border-color .15s ease, color .15s ease, box-shadow .15s ease;
  z-index: 2;
}
.slide-arrow:hover { color: var(--accent); border-color: var(--accent); box-shadow: var(--glow-sm); }
.slide-arrow--prev { left: 0; }
.slide-arrow--next { right: 0; }

/* Dots */
.dots { display: flex; justify-content: center; gap: 0.55rem; margin-top: 1.6rem; }
.dot {
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--line); border: 1px solid var(--line); cursor: pointer; padding: 0;
  transition: background-color .15s ease, transform .15s ease, box-shadow .15s ease;
}
.dot:hover { background: var(--muted); }
.dot.is-active { background: var(--accent); border-color: var(--accent); box-shadow: var(--glow-sm); transform: scale(1.2); }

/* ---------- Stats band ---------- */
.stats { max-width: 880px; margin: clamp(3rem, 7vw, 4.5rem) auto 0; }
.stats__row { display: grid; grid-template-columns: 1fr; gap: 1rem; }
.stat {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius); padding: 1.8rem 1rem;
  text-align: center;
}
.section--alt .stat { background: var(--surface); }
.stat__num {
  display: block; font-family: var(--head); font-weight: 300;
  font-size: clamp(2.2rem, 7vw, 3rem); line-height: 1; letter-spacing: 0.01em;
  color: var(--accent);
  text-shadow: 0 0 18px rgba(116, 224, 194, 0.30);
}
.stat__label {
  display: block; margin-top: 0.6rem;
  color: var(--muted); font-size: 0.78rem;
  letter-spacing: 0.14em; text-transform: uppercase;
}
.stats__caption {
  text-align: center; color: var(--muted);
  font-size: 0.78rem; letter-spacing: 0.06em; margin: 1.2rem 0 0;
}

/* ---------- Discography ---------- */
.filters { display: flex; flex-wrap: wrap; gap: 0.5rem; justify-content: center; margin-bottom: 2.2rem; }
.filter {
  font-family: var(--head); font-weight: 400; font-size: 0.8rem;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--muted); background: transparent;
  border: 1px solid var(--line); border-radius: 999px;
  padding: 0.55em 1.3em; cursor: pointer;
  transition: color .15s ease, border-color .15s ease, box-shadow .15s ease;
}
.filter:hover { color: var(--ink); }
/* Active = mint outline + glow, not a fill */
.filter.is-active { color: var(--accent); border-color: var(--accent); box-shadow: var(--glow-sm); }

.disco { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.disc__link { display: block; text-decoration: none; color: var(--ink); transition: transform .18s ease; }
.disc__link:hover { transform: translateY(-5px); }
.disc__cover {
  width: 100%; height: auto; aspect-ratio: 1/1; object-fit: cover;
  border-radius: var(--radius-sm); border: 1px solid var(--line);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
}
.disc__link:hover .disc__cover { border-color: var(--accent); box-shadow: 0 16px 38px rgba(0, 0, 0, 0.6), var(--glow-sm); }
.disc__title {
  display: block; font-family: var(--head); font-weight: 400;
  font-size: 0.95rem; letter-spacing: 0.02em; margin-top: 0.8rem; line-height: 1.3;
}
.disc__type { display: block; color: var(--muted); font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; margin-top: 0.2rem; }

/* ---------- Collaborations (music-card style) ---------- */
.collabs {
  list-style: none; margin: 0 auto; padding: 0;
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem;
  max-width: 760px;
}
.collab__with {
  display: block; margin-top: 0.2rem;
  color: var(--accent); font-family: var(--head);
  font-size: 0.74rem; letter-spacing: 0.1em; text-transform: uppercase;
}

/* Centered CTA under a section's content */
.section__cta { display: flex; justify-content: center; margin-top: clamp(2rem, 5vw, 3rem); }
.section__cta--left { justify-content: flex-start; }

/* ---------- About ---------- */
.about { display: grid; grid-template-columns: 1fr; gap: 2.5rem; align-items: start; }
.about__text p { color: var(--muted); margin: 0 0 1.1rem; }
.about__text p:first-of-type { color: var(--ink); font-size: 1.08rem; }
.about__quote {
  font-family: var(--head); font-weight: 300; font-style: italic;
  font-size: 1.2rem; color: var(--ink); margin: 1.8rem 0 0;
  padding-left: 1.2rem; border-left: 1px solid var(--accent); line-height: 1.5;
}
.about__quote cite { display: block; font-size: 0.86rem; color: var(--muted); font-style: normal; letter-spacing: 0.06em; margin-top: 0.7rem; }

/* ---------- Gallery (grayscale → color on hover/focus) ---------- */
.about__gallery { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.8rem; }
.gallery__item {
  margin: 0; overflow: hidden;
  border: 1px solid var(--line); border-radius: var(--radius-sm);
  background: var(--surface); aspect-ratio: 1 / 1;
}
.gallery__item--tall { grid-row: span 2; aspect-ratio: auto; }
.gallery__item img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  filter: grayscale(100%) contrast(1.04);
  transition: filter .5s ease, transform .6s ease;
}
.gallery__item:hover img,
.gallery__item:focus-within img,
.gallery__item:focus img { filter: grayscale(0%); transform: scale(1.03); }
@media (prefers-reduced-motion: reduce) {
  .gallery__item img { transition: filter .3s ease; }
  .gallery__item:hover img, .gallery__item:focus img, .gallery__item:focus-within img { transform: none; }
}

/* ---------- Watch (16:9 video embeds) ---------- */
.video-row { display: grid; grid-template-columns: 1fr; gap: 1.2rem; }
.video-embed {
  position: relative; aspect-ratio: 16 / 9;
  border-radius: var(--radius-sm); overflow: hidden;
  border: 1px solid var(--line); background: #000;
}
.video-embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* ---------- Live / Residency (the section's visual anchor) ---------- */
.residency {
  position: relative;
  border: 1px solid var(--accent);
  border-radius: var(--radius);
  background: rgba(116, 224, 194, 0.06);
  box-shadow: var(--glow);
  padding: clamp(1.8rem, 6vw, 3rem);
}
.residency__every {
  font-family: var(--head); font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.18em;
  font-size: clamp(1.7rem, 8vw, 2.6rem); line-height: 1.1;
  color: var(--accent); text-shadow: var(--glow-sm);
  margin: 0 0 0.9rem;
}
.residency__venue {
  font-family: var(--head); font-weight: 300;
  font-size: clamp(1.4rem, 5vw, 1.9rem); letter-spacing: 0.02em;
  color: var(--ink); margin: 0 0 0.3rem;
}
.residency__address { color: var(--muted); font-size: 1rem; letter-spacing: 0.02em; margin: 0 0 1.3rem; }
.residency__link {
  display: inline-flex; align-items: center; min-height: 44px;
  color: var(--accent); text-decoration: none;
  font-family: var(--head); font-size: 0.85rem; letter-spacing: 0.1em; text-transform: uppercase;
}
.residency__link::after { content: "→"; margin-left: 0.5em; }
.residency__link:hover { text-decoration: underline; }

/* Secondary follow block — deliberately quieter than the residency above it */
.follow { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-top: 1.2rem; }

/* ---------- Contact (split intents) ---------- */
.booking { max-width: 880px; }
.contact-paths { display: grid; grid-template-columns: 1fr; gap: 1.4rem; }
.contact-path {
  background: var(--bg); border: 1px solid var(--line);
  border-radius: var(--radius); padding: clamp(1.5rem, 5vw, 2.2rem);
}
.contact-path__title {
  font-family: var(--head); font-weight: 300; font-size: 1.5rem;
  letter-spacing: 0.03em; margin: 0 0 0.5rem;
}
.contact-path__intent { color: var(--muted); font-size: 1rem; margin: 0 0 1.3rem; }
.contact-path__actions { display: flex; flex-wrap: wrap; gap: 0.8rem; }

/* ---------- Shows list (shared) ---------- */
.shows { margin-top: clamp(2rem, 5vw, 2.8rem); padding-top: 2rem; border-top: 1px solid var(--line); }
.shows__head { font-family: var(--head); font-weight: 400; font-size: 1.05rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); margin: 0 0 0.6rem; }
.shows__empty { color: var(--muted); margin: 0; }
.shows__list { list-style: none; margin: 1rem 0 0; padding: 0; display: grid; gap: 0.7rem; }
.show {
  display: grid; grid-template-columns: auto 1fr auto; gap: 1rem; align-items: baseline;
  padding: 0.8rem 0; border-bottom: 1px solid var(--line);
}
.show__date { font-family: var(--head); color: var(--accent); font-weight: 400; letter-spacing: 0.04em; }
.show__venue { font-weight: 600; }
.show__city { color: var(--muted); font-size: 0.9rem; }

/* ---------- Footer ---------- */
.footer { background: var(--bg); border-top: 1px solid var(--line); padding-block: 2.8rem; }
.footer__inner { display: flex; flex-direction: column; gap: 1.4rem; }
.footer__name {
  font-family: var(--head); font-weight: 400; font-size: 1.15rem;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--accent);
  text-shadow: 0 0 10px rgba(116, 224, 194, 0.45); margin: 0;
}
.footer__tag { color: var(--muted); font-size: 0.82rem; letter-spacing: 0.06em; margin: 0.3rem 0 0; }
/* Social icon row — monochrome, mint on hover */
.footer__social { display: flex; gap: 0.6rem; }
.footer__icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border-radius: 50%;   /* ≥44px tap target */
  color: var(--muted); text-decoration: none;
  transition: color .15s ease, transform .15s ease, box-shadow .15s ease;
}
.footer__icon:hover { color: var(--accent); transform: translateY(-2px); text-shadow: var(--glow-sm); }
.footer__icon svg { display: block; }
.footer__legal p { margin: 0; color: var(--muted); font-size: 0.78rem; }
.footer__credit a { color: var(--muted); text-decoration: none; }
.footer__credit a:hover { color: var(--accent); }

/* ---------- Merch (merch.html) — visual demo only ---------- */
.products {
  list-style: none; margin: 0; padding: 0;
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem;
}
.product {
  display: flex; flex-direction: column;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); overflow: hidden;
}
.product__media {
  aspect-ratio: 1 / 1; background: var(--bg);
  border-bottom: 1px solid var(--line);
}
.product__media img { width: 100%; height: 100%; object-fit: cover; display: block; }
/* Inline-SVG product mockups — light apparel, dark logo ink */
.product__svg { width: 100%; height: 100%; display: block; color: #1a1a1a; }
.product__body { display: flex; flex-direction: column; flex: 1; padding: clamp(0.9rem, 3vw, 1.3rem); }
.product__name { font-family: var(--head); font-weight: 400; font-size: 1.05rem; letter-spacing: 0.02em; margin: 0 0 0.3rem; }
.product__desc { color: var(--muted); font-size: 0.9rem; margin: 0; }
.product__price { color: var(--accent); font-family: var(--head); font-weight: 500; letter-spacing: 0.04em; margin: 0.5rem 0 1rem; }
.product .btn { display: block; text-align: center; margin-top: auto; }

/* Demo-only disabled button */
.btn--disabled {
  color: var(--muted); border-color: var(--line); background: transparent;
  box-shadow: none; cursor: not-allowed;
}
.btn--disabled:hover { transform: none; box-shadow: none; background: transparent; border-color: var(--line); }

.merch__note {
  text-align: center; color: var(--muted);
  font-size: 0.82rem; letter-spacing: 0.02em;
  max-width: 52ch; margin: clamp(1.8rem, 4vw, 2.6rem) auto 0;
}

@media (min-width: 768px) { .products { grid-template-columns: repeat(3, 1fr); gap: 1.4rem; } }
@media (min-width: 1100px) { .products { grid-template-columns: repeat(4, 1fr); } }

/* ---------- Tip Jar (compact, QR-friendly) ---------- */
.tips { padding-block: clamp(2.2rem, 6vw, 3.4rem); border-top: 1px solid var(--line); }
.tips__inner { max-width: 440px; }
.tips__head { margin-bottom: 1.4rem; }
.tips__title { font-size: clamp(1.6rem, 6vw, 2.2rem); }   /* a touch smaller — unobtrusive */
.tips__head .section__lead { margin-top: 0.5rem; }

/* Single centered "Tip on Venmo" CTA */
.tips__cta { display: flex; justify-content: center; }
.tip-venmo { display: inline-flex; align-items: center; gap: 0.6rem; }
.tip-venmo__icon { width: 1.2em; height: 1.2em; flex: 0 0 auto; }

/* ---------- Contact form (contact.html) ---------- */
.form-card {
  max-width: 560px; margin: 0 auto;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); padding: clamp(1.4rem, 5vw, 2.4rem);
}

/* Honeypot: present for bots, invisible to people */
.form__hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.field { margin-bottom: 1.2rem; }
.field > label, .field__label {
  display: block; font-family: var(--head); font-weight: 400;
  font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 0.45rem;
}
.field__opt { color: var(--muted); text-transform: none; letter-spacing: 0; font-size: 0.92em; }
.field__help { display: block; margin-top: 0.4rem; color: var(--muted); font-size: 0.8rem; }

.field input,
.field select,
.field textarea {
  width: 100%; font-family: var(--sans); font-size: 1rem; color: var(--ink);
  background: #242427; border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: 0.8em 0.9em; min-height: 48px;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.field textarea { min-height: 120px; resize: vertical; }
.field input::placeholder, .field textarea::placeholder { color: var(--muted); }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(116, 224, 194, 0.18);
}

/* Segmented inquiry-type toggle (radios) */
.segmented {
  display: inline-flex; flex-wrap: wrap; gap: 4px;
  padding: 4px; border: 1px solid var(--line); border-radius: 999px; background: var(--bg);
}
.segmented input { position: absolute; opacity: 0; width: 1px; height: 1px; pointer-events: none; }
.segmented label {
  display: inline-flex; align-items: center; min-height: 40px;
  padding: 0 1.2em; border-radius: 999px; cursor: pointer;
  font-family: var(--head); font-size: 0.85rem; letter-spacing: 0.05em; color: var(--muted);
  transition: color .15s ease, background-color .15s ease, box-shadow .15s ease;
}
.segmented label:hover { color: var(--ink); }
.segmented input:checked + label {
  color: var(--accent); background: rgba(116, 224, 194, 0.12); box-shadow: var(--glow-sm);
}
.segmented input:focus-visible + label { outline: 2px solid var(--accent); outline-offset: 2px; }

.form__submit { width: 100%; min-height: 52px; margin-top: 0.4rem; }
.form__error { color: #ff9b9b; font-size: 0.9rem; margin: 0.9rem 0 0; }

/* Success state (replaces the form after submit) */
.form-success { text-align: center; padding: 1.5rem 0; }
.form-success__title { font-family: var(--head); font-weight: 300; font-size: clamp(1.6rem, 5vw, 2.1rem); letter-spacing: 0.02em; color: var(--accent); margin: 0 0 0.8rem; }
.form-success__msg { color: var(--muted); margin: 0; }

@media (min-width: 560px) {
  .form__submit { width: auto; padding-inline: 2.4em; }
}

/* ============================================================
   BREAKPOINTS
   ============================================================ */

/* Tablet 768px+ */
@media (min-width: 768px) {
  .nav__toggle { display: none; }
  .nav__menu { display: flex; flex-direction: row; width: auto; align-items: center; gap: 0.4rem; }
  .nav__menu a { padding: 0.5rem 0.9rem; }

  /* Hero becomes a 50/50 split: portrait left, crisp text right */
  .hero {
    display: grid; grid-template-columns: 1fr 1fr;
    align-items: stretch; min-height: 92vh;
  }
  .hero__figure {
    height: auto; min-height: 0; max-height: none;   /* fills the grid row */
    background: var(--bg);
  }
  .hero__img { object-position: 50% 26%; }           /* her face below the nav */
  /* Feather the RIGHT edge into the page — no hard seam */
  .hero__feather {
    background: linear-gradient(to right, transparent 0%, transparent 55%, var(--bg) 92%);
  }
  .hero__content {
    display: flex; flex-direction: column; justify-content: center;
    padding: clamp(2rem, 6vh, 4rem) clamp(1.5rem, 4vw, 3.5rem) clamp(2rem, 6vh, 4rem) clamp(1rem, 2vw, 2rem);
  }
  .hero__sub { max-width: 42ch; }

  .stats__row { grid-template-columns: repeat(2, 1fr); } /* 2x2 on tablet */
  .disco { grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
  .collabs { gap: 1.4rem; }  /* two centered cards (max-width set on base rule) */
  .contact-paths { grid-template-columns: repeat(2, 1fr); gap: 1.6rem; }

  .about { grid-template-columns: 1.4fr 1fr; gap: 3rem; }
  .video-row { grid-template-columns: 1fr 1fr; }

  .footer__inner { flex-direction: row; justify-content: space-between; align-items: flex-end; }
}

/* Stats: full row once there's width (≥900px) */
@media (min-width: 900px) {
  .stats__row { grid-template-columns: repeat(3, 1fr); }
}

/* Desktop 1280px+ */
@media (min-width: 1280px) {
  .disco { grid-template-columns: repeat(5, 1fr); }
}
