/* Sångare — sångare.se
   Skog, sten, koppar. En katalog, inte en mall. */

:root {
  --bg: #e7e9e3;
  --bg-deep: #d6dcd5;
  --paper: #f5f6f1;
  --ink: #11201a;
  --ink-soft: #2a3c34;
  --muted: #5c6b63;
  --line: rgba(20, 36, 30, 0.12);
  --card: #f4f6f1;
  --card-alt: #eef1e9;
  --copper: #a35432;
  --copper-deep: #7a3a22;
  --copper-ink: #fff8f4;
  --forest: #1c3b31;
  --forest-soft: #2a4f43;
  --forest-deep: #0e211b;
  --header: #12271f;
  --header-ink: #eef4f0;
  --focus: #0e211b;
  --max: 74rem;
  --measure: 40.5rem;
  --nav-h: 3.9rem;
  --serif: "Cormorant Garamond", "Palatino Linotype", Palatino, "Times New Roman", serif;
  --sans: "Source Sans 3", "Segoe UI", Helvetica, Arial, sans-serif;
  --shadow-sm: 0 1px 2px rgba(17, 32, 26, 0.06), 0 1px 1px rgba(17, 32, 26, 0.04);
  --shadow: 0 8px 24px rgba(17, 32, 26, 0.10), 0 2px 6px rgba(17, 32, 26, 0.06);
  --shadow-lg: 0 24px 56px rgba(14, 26, 21, 0.22), 0 6px 16px rgba(14, 26, 21, 0.12);
  --radius-sm: 6px;
  --radius: 12px;
  --radius-lg: 20px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --dur: 220ms;
}

*,
*::before,
*::after { box-sizing: border-box; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

html {
  font-size: 107%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(1100px 520px at 100% -4%, rgba(163, 84, 50, 0.07), transparent 55%),
    radial-gradient(900px 460px at -6% 8%, rgba(28, 59, 49, 0.06), transparent 50%),
    linear-gradient(180deg, #dfe4dc 0%, var(--bg) 20rem);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 430;
  line-height: 1.63;
  -webkit-font-smoothing: antialiased;
}

img, svg { max-width: 100%; height: auto; display: block; }
a { color: var(--copper); text-underline-offset: 0.18em; text-decoration-thickness: 1px; }
a:hover { color: var(--copper-deep); }
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--focus);
  outline-offset: 3px;
  border-radius: 3px;
}

.skip {
  position: absolute;
  left: 0.8rem;
  top: -4rem;
  background: var(--ink);
  color: #f4f8f5;
  padding: 0.4rem 0.7rem;
  z-index: 40;
  border-radius: var(--radius-sm);
}
.skip:focus { top: 0.8rem; }

/* ---------------------------------------------------------------------- */
/* Header + nav                                                           */
/* ---------------------------------------------------------------------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: color-mix(in srgb, var(--header) 94%, transparent);
  backdrop-filter: blur(14px) saturate(1.1);
  color: var(--header-ink);
  border-bottom: 1px solid rgba(163, 84, 50, 0.55);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.15);
}
.header-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0.55rem 1.1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--nav-h);
}
.wordmark {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--header-ink);
  text-decoration: none;
  line-height: 1.05;
}
.logo-mark { color: var(--copper); flex-shrink: 0; }
.wordmark-text {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.5rem;
  letter-spacing: -0.02em;
  display: block;
}
.wordmark-text small {
  display: block;
  font-family: var(--sans);
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: #b9c9c0;
  text-transform: none;
  margin-top: 0.12rem;
}
.footer-mark {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--serif);
  font-size: 1.3rem;
  color: #f4f8f5;
  margin: 0 0 0.5rem;
}
.footer-mark .logo-mark { color: var(--copper); }

.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 2.35rem;
  height: 2.35rem;
  align-items: center;
  border: 1px solid rgba(238, 244, 240, 0.28);
  background: transparent;
  border-radius: 999px;
  cursor: pointer;
  padding: 0;
}
.nav-toggle span {
  display: block;
  width: 1.05rem;
  height: 1.5px;
  background: var(--header-ink);
  border-radius: 2px;
  transition: transform var(--dur) var(--ease), opacity var(--dur) var(--ease);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.site-nav {
  display: block;
  max-height: 0;
  overflow: hidden;
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  background: #142d24;
  transition: max-height var(--dur) var(--ease);
}
.site-nav.is-open { max-height: 22rem; }
.site-nav a {
  display: block;
  padding: 0.72rem 1.1rem;
  color: var(--header-ink);
  text-decoration: none;
  border-bottom: 1px solid rgba(238, 244, 240, 0.08);
  font-weight: 520;
}
.site-nav a:active { background: rgba(163, 84, 50, 0.12); }
.site-nav .nav-quiet { color: #b9c9c0; font-weight: 450; }

@media (min-width: 900px) {
  html { font-size: 112.5%; }
  .nav-toggle { display: none; }
  .site-nav {
    display: flex;
    position: static;
    max-height: none;
    background: none;
    padding: 0;
    gap: 1.5rem;
    align-items: center;
    overflow: visible;
  }
  .site-nav a {
    display: inline;
    padding: 0;
    border: 0;
    font-size: 0.93rem;
    position: relative;
  }
  .site-nav a:not(.nav-quiet)::after {
    content: "";
    position: absolute;
    left: 0;
    right: 100%;
    bottom: -0.4rem;
    height: 2px;
    background: var(--copper);
    transition: right var(--dur) var(--ease);
  }
  .site-nav a:not(.nav-quiet):hover::after,
  .site-nav a:not(.nav-quiet):focus-visible::after { right: 0; }
}

/* ---------------------------------------------------------------------- */
/* Page band (decorative photo strip)                                     */
/* ---------------------------------------------------------------------- */

.page-band {
  margin: 0;
  position: relative;
  height: clamp(7rem, 20vw, 13rem);
  overflow: hidden;
  background: var(--forest);
}
.page-band img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 38%;
  filter: saturate(0.92) contrast(1.03);
}
.page-band::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(14, 33, 27, 0.05) 0%, rgba(14, 33, 27, 0.55) 100%);
}
.page-band figcaption {
  position: absolute;
  right: 0.7rem;
  bottom: 0.5rem;
  font-size: 0.66rem;
  color: #e8efe9;
  background: rgba(14, 33, 27, 0.5);
  padding: 0.16rem 0.45rem;
  border-radius: 3px;
  max-width: min(92vw, 36rem);
  z-index: 1;
}
.page-band a { color: inherit; text-decoration: none; }
.page-band a:hover { text-decoration: underline; }
.home-page .page-band { display: none; }

.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 1.5rem 1.1rem 4rem;
}
.prose { max-width: var(--measure); }
.prose > * + * { margin-top: 1em; }
.prose h2, .prose h3 { margin-top: 1.9em; }

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.14;
  color: var(--ink);
}
h1 { font-size: clamp(2.15rem, 5.6vw, 3.5rem); margin: 0 0 0.65rem; }
h2 { font-size: clamp(1.4rem, 2.9vw, 1.9rem); }
h3 { font-size: 1.18rem; }

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--serif);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--copper);
  font-weight: 500;
  margin: 0 0 0.5rem;
}
.ornament { color: var(--copper); opacity: 0.75; flex-shrink: 0; }
.lede {
  font-size: 1.17rem;
  color: var(--ink-soft);
  max-width: 40rem;
  margin: 0 0 1.3rem;
}
.meta { color: var(--muted); font-size: 0.92rem; }
.empty-note { padding: 1rem 0; }

/* ---------------------------------------------------------------------- */
/* Cinematic homepage hero                                                */
/* ---------------------------------------------------------------------- */

.hero-cinematic {
  position: relative;
  margin: -1.5rem -1.1rem 2.2rem;
  min-height: min(78vh, 42rem);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--forest-deep);
  isolation: isolate;
}
.hero-cinematic img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 38%;
  z-index: -2;
  filter: saturate(0.88) brightness(0.92);
}
.hero-cinematic::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(10, 22, 18, 0.15) 0%, rgba(10, 22, 18, 0.55) 62%, rgba(8, 18, 15, 0.9) 100%),
    linear-gradient(100deg, rgba(8, 18, 15, 0.55) 0%, rgba(8, 18, 15, 0.05) 46%);
}
.hero-cinematic-inner {
  position: relative;
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 3.2rem 1.3rem 2.6rem;
  color: #f3f6f2;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.05rem;
  color: #f0c6a8;
  margin: 0 0 0.55rem;
}
.hero-cinematic h1 {
  color: #fbfbf7;
  max-width: 34rem;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.35);
}
.hero-cinematic .lede {
  color: #dfe8e2;
  max-width: 34rem;
  font-size: 1.14rem;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.2rem;
}
.hero-credit {
  position: absolute;
  right: 1.1rem;
  bottom: 0.7rem;
  font-size: 0.66rem;
  color: rgba(240, 244, 240, 0.72);
  z-index: 1;
}
.hero-credit a { color: inherit; text-decoration: none; }
.hero-credit a:hover { text-decoration: underline; }

@media (min-width: 720px) {
  .hero-cinematic { margin: -1.5rem -1.1rem 2.6rem; min-height: min(72vh, 34rem); }
  .hero-cinematic-inner { padding: 4rem 2rem 3.2rem; }
}

/* Legacy split hero, still used on a few tool pages for a lighter feel */
.hero {
  display: grid;
  gap: 1.3rem;
  padding: 0.2rem 0 1.6rem;
  margin-bottom: 1.5rem;
}
@media (min-width: 820px) {
  .hero { grid-template-columns: 1.05fr 0.95fr; align-items: end; gap: 2.2rem; min-height: 20rem; }
}
.hero-photo, .hero-art {
  margin: 0;
  background: var(--forest);
  color: #e7f0eb;
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 13rem;
  position: relative;
  box-shadow: var(--shadow);
}
.hero-photo img, .hero-art img {
  width: 100%;
  height: 100%;
  min-height: 15rem;
  object-fit: cover;
  object-position: center 45%;
}
@media (min-width: 820px) {
  .hero-photo img, .hero-art img { min-height: 20rem; }
}
.hero-photo figcaption, .hero-caption {
  padding: 0.5rem 0.8rem 0.65rem;
  font-size: 0.72rem;
  color: #c5d4cd;
  background: #12271f;
}
.hero-photo figcaption a { color: inherit; }

/* ---------------------------------------------------------------------- */
/* Trust strip                                                            */
/* ---------------------------------------------------------------------- */

.trust-strip {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.4rem;
  margin: 0 0 2rem;
  padding: 1.1rem 0.5rem;
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
.trust-strip li {
  text-align: center;
  padding: 0.5rem 0.4rem;
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.trust-strip li:last-child { border-right: 0; }
.trust-strip strong {
  font-family: var(--serif);
  font-size: clamp(1.35rem, 3.4vw, 1.9rem);
  color: var(--forest);
  font-weight: 650;
}
.trust-strip span { font-size: 0.82rem; color: var(--muted); line-height: 1.35; }

.fact {
  background: var(--card);
  border-left: 4px solid var(--copper);
  padding: 1.05rem 1.2rem;
  margin: 1.3rem 0;
  box-shadow: var(--shadow-sm);
  border-radius: 0 var(--radius) var(--radius) 0;
}
.fact p { margin: 0; }

/* ---------------------------------------------------------------------- */
/* Doors                                                                  */
/* ---------------------------------------------------------------------- */

.doors {
  display: grid;
  gap: 1.1rem;
  margin: 1.5rem 0 1.8rem;
}
.door {
  display: block;
  text-decoration: none;
  color: inherit;
  background: var(--card);
  padding: 1.5rem 1.4rem 1.6rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.door::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 5px;
  background: var(--forest);
}
.door.work::before { background: var(--copper); }
.door:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.door h2 { margin: 0 0 0.45rem; font-size: 1.6rem; }
.door p { margin: 0; color: var(--ink-soft); }
.door .tag { color: var(--copper); font-family: var(--serif); font-style: italic; margin-bottom: 0.3rem; display: block; }
.door-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 0.9rem;
  font-weight: 620;
  font-size: 0.92rem;
  color: var(--copper);
}
.door-cta svg { transition: transform var(--dur) var(--ease); }
.door:hover .door-cta svg { transform: translateX(3px); }

@media (min-width: 720px) {
  .doors { grid-template-columns: 1fr 1fr; }
}

/* ---------------------------------------------------------------------- */
/* Chips / filter bar                                                     */
/* ---------------------------------------------------------------------- */

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 0.7rem 0 1rem;
}
.chip {
  appearance: none;
  border: 0;
  background: #fff;
  color: var(--ink);
  font: inherit;
  font-size: 0.92rem;
  padding: 0.42rem 0.85rem;
  border-radius: 999px;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  box-shadow: 0 0 0 1px var(--line) inset;
  transition: box-shadow var(--dur) var(--ease), background var(--dur) var(--ease), color var(--dur) var(--ease);
}
.chip:hover { box-shadow: 0 0 0 1px var(--ink) inset; }
.chip.is-on,
a.chip.is-on,
button.chip.is-on {
  background: var(--forest);
  color: #f3f8f5;
  box-shadow: none;
}

.filter-bar {
  background: color-mix(in srgb, var(--card) 92%, transparent);
  backdrop-filter: blur(10px);
  padding: 1.1rem 1.15rem 1.2rem;
  margin: 1.2rem 0 1.6rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: calc(var(--nav-h) + 0.6rem);
  z-index: 5;
}
.filter-bar-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin-bottom: 0.2rem;
}
.filter-bar-head h2 { margin: 0; font-size: 1.35rem; }
@media (max-width: 899px) {
  .filter-bar { position: static; }
}

.picker {
  background: var(--card);
  padding: 1.2rem 1.2rem 1.3rem;
  margin: 1.3rem 0 1.6rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
.picker h2 { margin: 0 0 0.35rem; font-size: 1.4rem; }
.picker-row { margin-top: 0.8rem; }
.picker-row p { margin: 0 0 0.4rem; font-size: 0.92rem; color: var(--muted); font-weight: 560; }

/* ---------------------------------------------------------------------- */
/* Cards + singer cards                                                   */
/* ---------------------------------------------------------------------- */

.cards, .grid-2, .grid-3 {
  display: grid;
  gap: 1.05rem;
  margin: 1.2rem 0;
}
@media (min-width: 640px) {
  .grid-2 { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 900px) {
  .grid-3 { grid-template-columns: 1fr 1fr 1fr; }
}

.card {
  background: var(--card);
  padding: 1.2rem 1.2rem 1.25rem 1.4rem;
  text-decoration: none;
  color: inherit;
  display: block;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.card::after {
  content: "";
  position: absolute;
  left: 0;
  top: 1.1rem;
  bottom: 1.1rem;
  width: 3px;
  background: var(--copper);
  border-radius: 99px;
  opacity: 0.85;
}
a.card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.card h3 { margin: 0 0 0.3rem; }
.card p { margin: 0; color: var(--ink-soft); font-size: 0.97rem; }
.tag {
  display: inline-block;
  font-size: 0.86rem;
  font-family: var(--serif);
  font-style: italic;
  color: var(--copper);
  margin-bottom: 0.24rem;
}

.singer-grid { margin: 1.2rem 0; }
.singer-card {
  background: var(--card);
  padding: 1.25rem 1.25rem 1.3rem;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  min-height: 100%;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
a.singer-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.singer-card-top { display: flex; align-items: center; gap: 0.75rem; }
.singer-card-top .avatar { flex-shrink: 0; }
.singer-card-heading h3 { margin: 0; font-size: 1.16rem; }
.singer-card-city { margin: 0.1rem 0 0; font-size: 0.82rem; color: var(--muted); }
.singer-card-blurb { margin: 0; color: var(--ink-soft); font-size: 0.95rem; flex-grow: 1; }
.singer-card-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
  padding-top: 0.6rem;
  border-top: 1px solid var(--line);
  margin-top: auto;
}
.price {
  font-weight: 680;
  color: var(--forest);
  font-size: 0.98rem;
}
.price-unknown { color: var(--muted); font-weight: 500; font-style: italic; font-size: 0.88rem; }
.singer-card .cta {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.86rem;
  font-weight: 620;
  color: var(--copper);
  white-space: nowrap;
}
.singer-card .cta svg { transition: transform var(--dur) var(--ease); }
a.singer-card:hover .cta svg { transform: translateX(3px); }
.occs { display: flex; flex-wrap: wrap; gap: 0.3rem; }
.occs span {
  font-size: 0.76rem;
  background: var(--card-alt);
  padding: 0.14rem 0.5rem;
  border-radius: 999px;
  color: var(--ink-soft);
  text-transform: capitalize;
}

/* Avatar motif */
.avatar { border-radius: 999px; flex-shrink: 0; }

/* ---------------------------------------------------------------------- */
/* Profile page — sticky kontakta panel                                   */
/* ---------------------------------------------------------------------- */

.profile-grid {
  display: grid;
  gap: 1.6rem;
  align-items: start;
}
@media (min-width: 900px) {
  .profile-grid { grid-template-columns: minmax(0, 1fr) 19rem; }
}

.kontakta-panel {
  background: var(--card);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 1.3rem 1.3rem 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
@media (min-width: 900px) {
  .kontakta-panel { position: sticky; top: calc(var(--nav-h) + 1.2rem); }
}
.kontakta-inner { display: flex; align-items: center; gap: 0.75rem; }
.kontakta-name { margin: 0; font-family: var(--serif); font-weight: 620; font-size: 1.15rem; }
.kontakta-city { margin: 0.05rem 0 0; font-size: 0.84rem; color: var(--muted); }
.kontakta-price {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 650;
  color: var(--forest);
  margin: 0;
}
.kontakta-price.price-unknown { font-size: 1rem; color: var(--muted); font-style: italic; font-weight: 500; }
.kontakta-extra { margin: 0; font-size: 0.88rem; }
.kontakta-note { margin: 0.1rem 0 0; font-size: 0.82rem; color: var(--muted); }

.fact-grid {
  display: grid;
  gap: 0.7rem;
  margin: 1.2rem 0;
  padding: 1.1rem 1.2rem;
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
.fact-row { display: grid; grid-template-columns: 8rem 1fr; gap: 0.8rem; align-items: baseline; }
.fact-row dt { margin: 0; font-size: 0.82rem; color: var(--muted); font-weight: 620; font-family: var(--serif); font-style: italic; }
.fact-row dd { margin: 0; font-size: 0.97rem; color: var(--ink); }
@media (max-width: 480px) {
  .fact-row { grid-template-columns: 1fr; gap: 0.15rem; }
}

/* ---------------------------------------------------------------------- */
/* Tables                                                                  */
/* ---------------------------------------------------------------------- */

.table-wrap { overflow-x: auto; margin: 1.2rem 0; border-radius: var(--radius); box-shadow: var(--shadow-sm); }
table { width: 100%; border-collapse: collapse; font-size: 0.95rem; background: var(--card); }
th, td {
  text-align: left;
  padding: 0.65rem 0.85rem;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}
th { font-weight: 640; color: var(--ink-soft); background: var(--card-alt); }
tbody tr:hover { background: color-mix(in srgb, var(--card-alt) 60%, transparent); }
tbody tr:last-child td { border-bottom: 0; }

/* ---------------------------------------------------------------------- */
/* Forms / tools                                                          */
/* ---------------------------------------------------------------------- */

.tool-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  align-items: center;
  margin: 1rem 0;
}
.tool-bar input[type="search"],
.field input,
.field textarea {
  font: inherit;
  padding: 0.6rem 0.75rem;
  border: 0;
  background: #fff;
  color: var(--ink);
  min-width: 0;
  width: 100%;
  border-radius: var(--radius-sm);
  box-shadow: 0 0 0 1px var(--line) inset;
  transition: box-shadow var(--dur) var(--ease);
}
.tool-bar input[type="search"]:focus,
.field input:focus,
.field textarea:focus { box-shadow: 0 0 0 2px var(--forest) inset; }
.tool-bar input[type="search"] { max-width: 22rem; }
.field { margin: 0.75rem 0; }
.field label { display: block; font-weight: 560; margin-bottom: 0.32rem; }
.field textarea { min-height: 10rem; resize: vertical; }

.btn, button.btn {
  font: inherit;
  font-weight: 620;
  border: 0;
  background: var(--forest);
  color: #f4f8f5;
  padding: 0.6rem 1.05rem;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  border-radius: var(--radius-sm);
  text-align: center;
  transition: background var(--dur) var(--ease), transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.btn:hover { background: var(--copper); color: var(--copper-ink); box-shadow: var(--shadow-sm); }
.btn.ghost {
  background: transparent;
  color: var(--ink);
  box-shadow: 0 0 0 1px var(--forest) inset;
}
.btn.ghost:hover { background: var(--bg-deep); color: var(--ink); box-shadow: 0 0 0 1px var(--forest) inset; }
.btn-block { display: block; width: 100%; }

.song-list { list-style: none; padding: 0; margin: 0.6rem 0 1.2rem; }
.song-list li {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  padding: 0.55rem 0;
  border-bottom: 1px dashed var(--line);
}
.song-list label { cursor: pointer; }
.song-list small { display: block; color: var(--muted); }

.check-list { list-style: none; padding: 0; margin: 0.4rem 0 1.2rem; }
.check-list li {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  padding: 0.65rem 0.25rem;
  border-bottom: 1px solid var(--line);
  transition: background var(--dur) var(--ease);
}
.check-list input { margin-top: 0.35rem; accent-color: var(--forest); }
.check-list.done label,
.check-list li.done label { text-decoration: line-through; color: var(--muted); }
.check-list li.done { background: color-mix(in srgb, var(--card) 55%, transparent); }

.progress-track {
  height: 8px;
  border-radius: 999px;
  background: var(--card-alt);
  overflow: hidden;
  flex-grow: 1;
  min-width: 8rem;
}
.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--forest), var(--copper));
  border-radius: 999px;
  transition: width 320ms var(--ease);
  width: 0%;
}

.note, .callout, .warn {
  padding: 1rem 1.15rem;
  margin: 1.2rem 0;
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
.warn { background: #f4ecd6; }
.callout { border-left: 4px solid var(--forest); }

.out-list { list-style: none; padding: 0; }
.out-list li { margin: 0.55rem 0; }

.steps { counter-reset: step; list-style: none; padding: 0; margin: 1.2rem 0 1.6rem; }
.steps li {
  counter-increment: step;
  padding: 1.05rem 1rem 1.05rem 3.2rem;
  position: relative;
  background: var(--card);
  margin: 0 0 0.7rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
.steps li::before {
  content: counter(step);
  position: absolute;
  left: 0.8rem;
  top: 1.05rem;
  width: 1.85rem;
  height: 1.85rem;
  border-radius: 999px;
  background: var(--forest);
  color: #f3f8f5;
  font-size: 0.88rem;
  font-weight: 700;
  display: grid;
  place-items: center;
}

.crumbs {
  font-size: 0.88rem;
  color: var(--muted);
  margin: 0 0 1rem;
}
.crumbs a { color: var(--muted); }
.crumbs a:hover { color: var(--copper); }

/* ---------------------------------------------------------------------- */
/* Footer                                                                  */
/* ---------------------------------------------------------------------- */

.site-footer {
  background: var(--header);
  color: #c9d6cf;
  padding: 2.4rem 1.1rem 2.6rem;
  font-size: 0.94rem;
  border-top: 1px solid rgba(163, 84, 50, 0.4);
}
.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  gap: 1.6rem;
}
@media (min-width: 720px) {
  .footer-inner { grid-template-columns: 1.5fr 1fr 1fr; }
}
.footer-brand p:last-child { max-width: 28rem; }
.site-footer h2 {
  font-size: 1.2rem;
  margin: 0 0 0.5rem;
  color: #f4f8f5;
}
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin: 0.35rem 0; }
.site-footer a { color: #dbe6e0; }
.site-footer a:hover { color: #f0c6a8; }
.site-footer p { margin: 0; }
.legal { margin-top: 1.6rem; color: #8ea095; font-size: 0.85rem; }

.grief-page .promo-bli,
.grief-page .gear-box { display: none !important; }

.notfound { padding: 2rem 0 4rem; }

.catalog-toolbar {
  background: var(--card);
  padding: 1.1rem 1.15rem;
  margin: 1rem 0;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.ask-box {
  background: var(--card);
  padding: 1.15rem 1.25rem 1.25rem;
  margin: 1.35rem 0;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
.ask-box h2 { margin-top: 0; }

.city-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.9rem 0 1.4rem;
}
.city-chip {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--card);
  border-radius: 999px;
  padding: 0.3rem 0.9rem 0.3rem 0.3rem;
  text-decoration: none;
  color: var(--ink);
  box-shadow: var(--shadow-sm);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.city-chip:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.city-chip img { width: 2.1rem; height: 2.1rem; border-radius: 999px; object-fit: cover; }
.city-chip strong { font-size: 0.92rem; font-weight: 620; }
.city-chip span { display: block; font-size: 0.74rem; color: var(--muted); }

@media print {
  .site-header, .site-footer, .nav-toggle, .skip, .tool-bar .btn, .page-band, .hero-cinematic, .kontakta-panel { display: none !important; }
  body { background: #fff; }
  .wrap { padding: 0; }
}
