@font-face {
  font-family: "HHF Sans";
  src: url("fonts/inter-latin-wght-normal.woff2") format("woff2");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

@font-face {
  font-family: "HHF Display";
  src: url("fonts/anton-latin-400-normal.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

:root {
  --ink: #080807;
  --paper: #e9e6de;
  --paper-deep: #d8d3c8;
  --ember: #d34625;
  --ember-bright: #f26437;
  --gold: #b6955b;
  --muted: #9d998f;
  --font-sans: "HHF Sans", Arial, Helvetica, sans-serif;
  --font-display: "HHF Display", Impact, "Arial Narrow", sans-serif;
}

* { box-sizing: border-box; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: hidden;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
svg { width: 1.15em; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

.nav-shell {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(100% - 64px, 1380px);
  height: 112px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  border-bottom: 1px solid rgba(255,255,255,.14);
}
.brand { display: flex; align-items: center; width: fit-content; }
.brand img { display: block; width: clamp(165px, 15vw, 190px); height: auto; object-fit: contain; }
nav { display: flex; gap: 42px; }
nav a { font-size: 12px; text-transform: uppercase; font-weight: 700; letter-spacing: .15em; color: #bbb8b0; transition: color .2s; }
nav a:hover { color: #fff; }
.nav-cta { justify-self: end; display: flex; align-items: center; gap: 12px; color: white; text-transform: uppercase; font-weight: 800; letter-spacing: .13em; font-size: 11px; }
.nav-cta svg { color: var(--ember-bright); transition: transform .2s; }
.nav-cta:hover svg { transform: translateX(4px); }
.mobile-menu-toggle, .mobile-menu { display: none; }
.mobile-menu-toggle {
  position: relative;
  z-index: 2;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, .28);
  background: rgba(8, 8, 7, .7);
  color: #fff;
  cursor: pointer;
}
.mobile-menu-toggle span { position: absolute; left: 13px; width: 20px; height: 1px; background: currentColor; transition: transform .25s, top .25s, opacity .2s; }
.mobile-menu-toggle span:nth-child(1) { top: 16px; }
.mobile-menu-toggle span:nth-child(2) { top: 23px; }
.mobile-menu-toggle span:nth-child(3) { top: 30px; }
.mobile-menu-toggle[aria-expanded="true"] span:nth-child(1) { top: 23px; transform: rotate(45deg); }
.mobile-menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.mobile-menu-toggle[aria-expanded="true"] span:nth-child(3) { top: 23px; transform: rotate(-45deg); }
.mobile-menu-toggle:focus-visible { outline: 3px solid #fff; outline-offset: 3px; }

.mobile-menu {
  position: fixed;
  z-index: 1190;
  inset: 0;
  padding: 106px max(24px, env(safe-area-inset-right)) max(28px, env(safe-area-inset-bottom)) max(24px, env(safe-area-inset-left));
  overflow: auto;
  background:
    radial-gradient(circle at 90% 25%, rgba(211, 70, 37, .22), transparent 25%),
    rgba(7, 7, 6, .98);
}
.mobile-menu::before { content: ""; position: absolute; inset: 0; opacity: .16; pointer-events: none; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.22'/%3E%3C/svg%3E"); }
.mobile-menu__panel { position: relative; z-index: 1; width: min(100%, 620px); margin: 0 auto; padding-top: 34px; border-top: 1px solid rgba(255, 255, 255, .18); }
.mobile-menu__panel > p { margin: 0 0 25px; color: var(--ember-bright); font-size: 9px; font-weight: 800; letter-spacing: .25em; text-transform: uppercase; }
.mobile-menu__nav { display: grid; gap: 0; }
.mobile-menu__nav a { display: grid; grid-template-columns: 36px 1fr; align-items: center; min-height: 74px; border-bottom: 1px solid #302e2a; color: var(--paper); font-family: var(--font-display); font-size: clamp(38px, 11vw, 58px); font-weight: 400; line-height: 1; letter-spacing: 0; text-transform: uppercase; }
.mobile-menu__nav a:first-child { border-top: 1px solid #302e2a; }
.mobile-menu__nav a span { color: var(--ember); font-family: var(--font-sans); font-size: 9px; font-weight: 800; letter-spacing: .14em; }
.mobile-menu__nav a:focus-visible, .mobile-menu__nav a:hover { color: var(--ember-bright); outline: none; }
.mobile-menu__cta { min-height: 56px; margin-top: 28px; padding: 0 20px; display: flex; justify-content: space-between; align-items: center; background: var(--ember); color: #fff; font-size: 10px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.mobile-menu__cta:focus-visible, .mobile-menu__cta:hover { background: var(--ember-bright); outline: 3px solid #fff; outline-offset: 3px; }
.mobile-menu__panel > small { display: block; margin-top: 26px; color: #6f6b64; font-size: 8px; font-weight: 700; letter-spacing: .19em; text-transform: uppercase; }
.mobile-menu-open { overflow: hidden; }
.mobile-menu-open .nav-shell { position: fixed; z-index: 1200; }

.hero {
  min-height: 780px;
  height: 100svh;
  position: relative;
  overflow: hidden;
  display: grid;
  align-items: center;
  padding: 130px max(32px, calc((100vw - 1380px)/2)) 90px;
  background:
    radial-gradient(circle at 73% 55%, rgba(192,53,20,.23), transparent 9%),
    radial-gradient(ellipse at 70% 50%, rgba(101,24,8,.35), transparent 38%),
    linear-gradient(105deg, #050505 0%, #0a0908 62%, #110b08 100%);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .24;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.22'/%3E%3C/svg%3E");
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  width: min(48vw, 680px);
  aspect-ratio: 1;
  right: 3vw;
  top: 18%;
  border: 1px solid rgba(185,142,78,.18);
  border-radius: 50%;
  box-shadow: inset 0 0 100px rgba(177,61,25,.06), 0 0 100px rgba(177,61,25,.08);
}
.embers { position: absolute; inset: 0; pointer-events: none; opacity: .7; background:
  radial-gradient(circle at 82% 31%, #ef6237 0 1px, transparent 2px),
  radial-gradient(circle at 72% 71%, #f0874d 0 1px, transparent 2px),
  radial-gradient(circle at 91% 58%, #bb4c28 0 1.5px, transparent 2.5px),
  radial-gradient(circle at 61% 43%, #dd562e 0 1px, transparent 2px),
  radial-gradient(circle at 79% 85%, #ef8a45 0 1px, transparent 2px); }
.hero-copy { position: relative; z-index: 2; width: min(760px, 63vw); }
.eyebrow, .section-kicker { margin: 0 0 28px; color: var(--ember-bright); text-transform: uppercase; letter-spacing: .27em; font-weight: 800; font-size: 11px; }
.eyebrow { display: flex; align-items: center; gap: 13px; color: var(--gold); }
.eyebrow span { width: 36px; height: 1px; background: var(--ember); }
h1, h2, h3 { margin: 0; max-width: 100%; overflow-wrap: break-word; text-transform: uppercase; font-family: var(--font-display); font-weight: 400; }
h1 { font-size: clamp(72px, 8.4vw, 136px); line-height: .84; letter-spacing: -.035em; }
h1 em { color: transparent; font-style: normal; -webkit-text-stroke: 1px var(--gold); text-shadow: 0 0 35px rgba(199,127,54,.1); }
.hero-lead { max-width: 590px; margin: 38px 0 0; padding-left: 22px; border-left: 2px solid var(--ember); color: #aaa79f; font-size: clamp(16px, 1.35vw, 20px); line-height: 1.7; }
.hero-actions { display: flex; gap: 16px; margin-top: 40px; }
.button { min-height: 55px; padding: 0 27px; display: inline-flex; justify-content: center; align-items: center; gap: 20px; border: 1px solid rgba(255,255,255,.3); text-transform: uppercase; letter-spacing: .13em; font-weight: 800; font-size: 11px; transition: .2s; }
.button.primary { border-color: var(--ember); background: var(--ember); color: #fff; }
.button.primary:hover { background: var(--ember-bright); border-color: var(--ember-bright); }
.button.ghost:hover { border-color: white; background: white; color: var(--ink); }
.hero-mark { position: absolute; z-index: 2; right: max(32px, calc((100vw - 1380px)/2)); top: 50%; transform: translateY(-45%); display: flex; flex-direction: column; align-items: center; color: var(--gold); }
.hero-mark::before, .hero-mark::after { content: ""; width: 1px; height: 90px; background: linear-gradient(transparent, rgba(182,149,91,.45)); margin-bottom: 20px; }
.hero-mark::after { margin: 20px 0 0; transform: rotate(180deg); }
.hero-mark span, .hero-mark small { font-size: 9px; letter-spacing: .28em; }
.hero-mark strong { font-family: var(--font-sans); font-size: 24px; font-weight: 500; margin: 7px 0 9px; }
.scroll-hint { position: absolute; z-index: 2; bottom: 34px; left: max(32px, calc((100vw - 1380px)/2)); display: flex; align-items: center; gap: 14px; font-size: 9px; text-transform: uppercase; letter-spacing: .24em; color: #77746e; }
.scroll-hint span { width: 34px; height: 1px; background: #55534e; }

.section-pad { padding: 140px max(32px, calc((100vw - 1220px)/2)); }
.statement { background: var(--paper); color: var(--ink); text-align: center; }
.statement h2 { font-size: clamp(50px, 6.3vw, 94px); line-height: .94; }
.statement > p:last-child { max-width: 780px; margin: 34px auto 0; color: #69665e; font-family: var(--font-sans); font-size: clamp(16px, 1.35vw, 20px); line-height: 1.75; }
.section-head { display: grid; grid-template-columns: 1fr 380px; align-items: end; gap: 50px; margin-bottom: 65px; }
.section-head h2 { font-size: clamp(55px, 6vw, 88px); line-height: .9; }
.section-head > p { margin: 0; color: #78746d; line-height: 1.7; }
.section-head .section-kicker { margin-bottom: 20px; }
.roster { background: #dcd8cf; color: var(--ink); }
.artist-list { display: grid; gap: 28px; }
.artist-card { min-height: 510px; display: grid; grid-template-columns: 70px minmax(340px, .9fr) 1.1fr; border: 1px solid #aaa59b; background: #e9e6de; }
.artist-number { padding: 28px 20px; border-right: 1px solid #aaa59b; color: var(--ember); font-size: 11px; font-weight: 800; letter-spacing: .14em; }
.artist-visual { position: relative; overflow: hidden; background: #141513; border-right: 1px solid #aaa59b; }
.artist-photo { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: saturate(.78) contrast(1.07); }
.artist-visual::after { content: ""; position: absolute; inset: 0; background: linear-gradient(transparent 50%, rgba(0,0,0,.7)); }
.artist-visual > p { position: absolute; z-index: 3; left: 28px; bottom: 22px; margin: 0; color: #b8ad94; text-transform: uppercase; letter-spacing: .19em; font-size: 9px; font-weight: 800; }
.forest { position: absolute; inset: 0; background: radial-gradient(circle at 64% 32%, rgba(219,215,185,.21), transparent 16%), linear-gradient(#171b18, #080a09); }
.moon { position: absolute; width: 110px; height: 110px; left: 58%; top: 19%; border-radius: 50%; background: #a99e82; filter: blur(.3px); opacity: .55; box-shadow: 0 0 55px rgba(209,191,149,.3); }
.tree { position: absolute; bottom: 0; width: 0; height: 0; border-left: 90px solid transparent; border-right: 90px solid transparent; border-bottom: 390px solid #050706; filter: drop-shadow(0 0 8px #000); }
.tree::after { content: ""; position: absolute; width: 12px; height: 430px; background: #050706; left: -6px; top: 70px; }
.t1 { left: -70px; transform: scale(.75); }
.t2 { left: 30px; transform: scale(1.15); }
.t3 { left: 155px; transform: scale(.72); opacity: .95; }
.t4 { right: -30px; transform: scale(1.05); }
.t5 { right: 90px; transform: scale(.63); opacity: .85; }
.artist-copy { padding: 62px clamp(35px, 5vw, 75px); display: flex; flex-direction: column; justify-content: center; }
.artist-meta { color: var(--ember); text-transform: uppercase; font-weight: 800; letter-spacing: .19em; font-size: 9px; margin: 0 0 13px; }
.artist-copy h3 { font-size: clamp(60px, 6.3vw, 94px); line-height: 1; }
.artist-copy > p:not(.artist-meta) { color: #69665f; line-height: 1.7; max-width: 530px; margin: 22px 0; }
.artist-stats { display: flex; gap: clamp(25px, 4vw, 55px); margin: 8px 0 32px; }
.artist-stats span { display: flex; flex-direction: column; gap: 4px; color: #8a867d; font-size: 9px; text-transform: uppercase; letter-spacing: .15em; }
.artist-stats strong { color: #24231f; font-size: 13px; letter-spacing: .06em; }
.text-link { display: flex; align-items: center; gap: 15px; width: fit-content; text-transform: uppercase; font-size: 10px; font-weight: 800; letter-spacing: .15em; padding-bottom: 8px; border-bottom: 1px solid var(--ember); }
.text-link svg { color: var(--ember); }
.preline { white-space: pre-line; }

.services { position: relative; overflow: hidden; background: #0c0c0b; }
.services::before { content: ""; position: absolute; width: 700px; height: 700px; left: -350px; top: -180px; border-radius: 50%; border: 1px solid rgba(211,70,37,.15); box-shadow: 0 0 100px rgba(150,42,19,.08); }
.inverse > p { color: #8e8a82; }
.service-grid { position: relative; display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid #34322f; border-bottom: 1px solid #34322f; }
.service-grid article { min-height: 300px; padding: 42px; border-right: 1px solid #34322f; }
.service-grid article:last-child { border-right: 0; }
.service-grid span { color: var(--ember); font-size: 10px; font-weight: 800; letter-spacing: .15em; }
.service-grid h3 { margin-top: 65px; font-size: clamp(30px, 3vw, 45px); }
.service-grid p { color: #89857e; line-height: 1.75; max-width: 320px; }

.contact { text-align: center; background: #191715; background-image: linear-gradient(rgba(0,0,0,.62), rgba(0,0,0,.8)), radial-gradient(circle at 50% 40%, #512015, transparent 45%); }
.contact h2 { font-size: clamp(70px, 8vw, 120px); line-height: .85; }
.contact > p:not(.section-kicker) { color: #aaa69e; margin: 30px auto 34px; }
.button.large { min-height: 65px; padding: 0 36px; }
.contact-notes { display: flex; justify-content: center; gap: 40px; margin-top: 40px; color: #817d75; text-transform: uppercase; letter-spacing: .12em; font-size: 9px; font-weight: 800; }
.contact-notes span { display: flex; align-items: center; gap: 8px; }
.contact-notes svg { color: var(--gold); width: 14px; }

footer { min-height: 190px; padding: 45px max(32px, calc((100vw - 1380px)/2)); display: grid; grid-template-columns: 1fr 1fr 1fr; align-items: center; gap: 25px; border-top: 1px solid #292724; color: #76736c; }
.footer-brand img { width: clamp(165px, 15vw, 185px); }
footer > p { text-align: center; text-transform: uppercase; font-size: 9px; letter-spacing: .18em; }
footer > div { justify-self: end; display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 20px; text-transform: uppercase; font-size: 9px; letter-spacing: .15em; }
footer > div a:hover { color: white; }
footer small { grid-column: 1 / -1; text-align: center; font-size: 9px; letter-spacing: .1em; }
.footer-link-button {
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  text-transform: inherit;
  letter-spacing: inherit;
  cursor: pointer;
}
.footer-link-button:hover { color: white; }

@media (max-width: 900px) {
  .nav-shell { width: calc(100% - 36px); height: 86px; grid-template-columns: 1fr auto; }
  .brand img { width: clamp(150px, 27vw, 175px); }
  nav { display: none; }
  .nav-cta { display: none; }
  .mobile-menu-toggle { display: block; justify-self: end; }
  .mobile-menu:not([hidden]) { display: block; }
  .mobile-menu__nav { display: grid; }
  .hero { min-height: 100svh; height: auto; padding: 115px 24px calc(118px + env(safe-area-inset-bottom)); }
  .hero-copy { width: 100%; padding-bottom: 24px; }
  .hero-mark { display: none; }
  .hero::after { width: 85vw; right: -35vw; top: 30%; }
  .section-pad { padding: 90px 24px; }
  .section-head { grid-template-columns: 1fr; gap: 22px; margin-bottom: 42px; }
  .section-head > p { max-width: 520px; }
  .artist-card { grid-template-columns: 52px 1fr; }
  .artist-number { grid-row: 1 / 3; }
  .artist-visual { min-height: 330px; border-right: 0; border-bottom: 1px solid #aaa59b; }
  .artist-copy { padding: 45px 35px; }
  .service-grid { grid-template-columns: 1fr; }
  .service-grid article { min-height: auto; border-right: 0; border-bottom: 1px solid #34322f; }
  .service-grid article:last-child { border-bottom: 0; }
  .service-grid h3 { margin-top: 35px; }
  footer { grid-template-columns: 1fr 1fr; }
  footer > p { display: none; }
  .scroll-hint { bottom: calc(24px + env(safe-area-inset-bottom)); }
}

@media (max-width: 560px) {
  .brand img { width: clamp(140px, 42vw, 165px); }
  .nav-shell { width: calc(100% - 28px); }
  .mobile-menu { padding-top: 96px; }
  h1 { font-size: clamp(38px, 11vw, 58px); line-height: .9; }
  .hero { display: block; padding: 108px 20px calc(40px + env(safe-area-inset-bottom)); }
  .hero-copy { padding-bottom: 0; }
  .hero-lead { padding-left: 16px; font-size: 15px; margin-top: 24px; }
  .hero-actions { flex-direction: column; align-items: stretch; gap: 12px; margin-top: 28px; }
  .button { width: 100%; }
  .scroll-hint { position: static; margin-top: 34px; }
  .section-pad { padding: 72px 20px; }
  .statement h2 { font-size: clamp(24px, 7vw, 36px); line-height: 1; white-space: normal; word-break: normal; }
  .section-head h2 { font-size: clamp(42px, 13vw, 62px); overflow-wrap: anywhere; word-break: break-word; }
  .contact h2 { font-size: clamp(46px, 14vw, 68px); overflow-wrap: anywhere; }
  .artist-card { display: block; }
  .artist-number { display: none; }
  .artist-visual { min-height: 300px; }
  .artist-copy { padding: 36px 24px 42px; }
  .artist-copy h3 { font-size: clamp(42px, 14vw, 58px); overflow-wrap: anywhere; }
  .artist-stats { gap: 20px; flex-wrap: wrap; }
  .contact-notes { flex-direction: column; align-items: center; gap: 14px; }
  footer { display: flex; flex-direction: column; align-items: center; text-align: center; }
  footer > div { justify-self: auto; justify-content: center; }
  .legal-page > header { flex-direction: column; gap: 18px; }
}

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

/* Standalone PHP installation */
.setup-body { min-height: 100svh; display: grid; place-items: center; padding: 30px; background: radial-gradient(circle at 70% 20%, #3a160e, transparent 35%), #090908; }
.setup-card, .login-card { width: min(760px, 100%); padding: clamp(28px, 5vw, 58px); background: #e9e6de; color: #171714; box-shadow: 0 30px 100px rgba(0,0,0,.5); }
.setup-card > img, .login-card > img { width: min(300px, 82%); filter: invert(1); margin-bottom: 25px; }
.setup-card h1, .login-card h1 { font-size: clamp(54px, 8vw, 88px); }
.setup-card > p:not(.section-kicker), .login-card > p:not(.section-kicker) { color: #6d6961; line-height: 1.7; }
.setup-form, .password-form { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 30px; }
.setup-form label, .login-card label, .password-form label { display: flex; flex-direction: column; gap: 8px; }
.setup-form label span, .login-card label span, .password-form label span { color: #69655e; font-size: 9px; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; }
.setup-form .wide { grid-column: 1 / -1; }
.setup-form input, .login-card input, .password-form input { min-height: 48px; border: 1px solid #bdb7ac; padding: 0 13px; background: #faf8f3; color: #171714; font: inherit; }
.setup-form button, .login-card button, .password-form button, .php-field-grid + button, .php-field-grid button, .php-band-form > button { min-height: 48px; padding: 0 22px; border: 0; background: var(--ember); color: white; font-size: 9px; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; cursor: pointer; }
.setup-form > button { grid-column: 1 / -1; }
.login-card { max-width: 500px; }
.login-card form { display: grid; gap: 18px; margin: 28px 0; }
.login-card > a { color: #726e66; font-size: 11px; }
.php-alert { margin: 18px 0; padding: 14px 17px; border-left: 3px solid #4d8a51; background: #e0eddf; color: #315c34; font-size: 13px; }
.php-alert.error { border-color: #b94730; background: #f1ded9; color: #843320; }

.php-admin { background: #efede7; color: #191815; }
.php-admin-layout { min-height: calc(100svh - 88px); display: grid; grid-template-columns: 220px 1fr; }
.php-admin-layout > aside { position: sticky; top: 0; align-self: start; height: calc(100svh - 88px); padding: 42px 22px; display: flex; flex-direction: column; gap: 4px; background: #151513; }
.php-admin-layout > aside a { padding: 13px 14px; border-left: 2px solid transparent; color: #99958d; font-size: 13px; }
.php-admin-layout > aside a:hover { border-left-color: var(--ember); background: rgba(255,255,255,.05); color: white; }
.php-admin-layout > main { width: min(1100px, 100%); padding: 55px clamp(24px, 5vw, 70px) 100px; }
.php-panel { margin-bottom: 100px; scroll-margin-top: 25px; }
.php-panel > h1 { margin-bottom: 36px; font-size: clamp(48px, 6vw, 78px); }
.php-field-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 19px; }
.php-field-grid label { display: flex; flex-direction: column; gap: 8px; }
.php-field-grid label.wide { grid-column: 1 / -1; }
.php-field-grid label > span, .php-image-row label > span, .password-form label > span { color: #66625b; font-size: 9px; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; }
.php-field-grid input, .php-field-grid textarea, .php-image-row input { width: 100%; padding: 13px; border: 1px solid #c4beb4; background: #faf8f3; color: #22211e; font: 14px/1.6 Arial,sans-serif; resize: vertical; }
.php-field-grid input:focus, .php-field-grid textarea:focus { border-color: var(--ember); outline: 2px solid rgba(211,70,37,.1); }
.php-field-grid textarea.html-editor { min-height: 430px; font: 13px/1.55 Consolas, "SFMono-Regular", "Liberation Mono", monospace; tab-size: 2; }
.html-editor-help { color: #706c64; font-size: 11px; line-height: 1.55; }
.php-field-grid > button { grid-column: 1 / -1; justify-self: end; }
.php-band-list { border-top: 1px solid #c4beb4; margin-bottom: 46px; }
.php-band-list article { min-height: 100px; display: grid; grid-template-columns: 90px 1fr auto auto auto; align-items: center; gap: 16px; border-bottom: 1px solid #c4beb4; }
.php-band-list article > img, .php-no-image { width: 90px; height: 65px; object-fit: cover; }
.php-no-image { display: grid; place-items: center; background: #262520; color: #77736b; font-size: 8px; text-transform: uppercase; }
.php-band-list h2 { font-size: 28px; }
.php-band-list p { margin: 4px 0 0; color: #77736c; font-size: 12px; }
.php-band-list article > span { padding: 6px 9px; background: #dce9db; color: #3e7042; font-size: 8px; font-weight: 800; text-transform: uppercase; }
.php-band-list article > a, .php-band-list button { padding: 9px 11px; border: 1px solid #99938a; background: transparent; color: #44413c; font-size: 8px; font-weight: 800; text-transform: uppercase; cursor: pointer; }
.php-band-list form { margin: 0; }
.php-band-list button.danger { color: #a53d29; border-color: #c8aaa3; }
.php-band-form { padding: clamp(22px, 4vw, 38px); background: #dfdbd2; border: 1px solid #c2bcb1; }
.php-form-title { display: flex; justify-content: space-between; align-items: start; margin-bottom: 25px; }
.php-form-title p { margin: 0; color: var(--ember); font-size: 9px; font-weight: 800; text-transform: uppercase; }
.php-form-title h2 { font-size: 38px; }
.php-form-title a { font-size: 9px; text-transform: uppercase; color: #6e6a63; }
.php-image-row { display: grid; grid-template-columns: 210px 1fr; gap: 24px; align-items: center; margin-bottom: 24px; }
.php-image-row > img, .php-image-row > div { width: 210px; height: 135px; object-fit: cover; display: grid; place-items: center; background: #171714; color: #77736b; font-size: 9px; text-transform: uppercase; }
.php-image-row label { display: grid; gap: 9px; }
.php-image-row small { color: #77736b; }
.checkline { display: flex !important; flex-direction: row !important; align-items: center; gap: 8px !important; color: #56534d; font-size: 11px !important; text-transform: none !important; }
.checkline input { width: 18px !important; height: 18px; }
.php-band-form > button { margin-top: 24px; }
.password-form { width: min(700px,100%); }
.password-form button { grid-column: 1 / -1; }

@media (max-width: 850px) {
  .php-admin-layout { grid-template-columns: 1fr; }
  .php-admin-layout > aside { position: static; width: 100%; height: auto; padding: 8px 14px; flex-direction: row; overflow-x: auto; }
  .php-admin-layout > aside a { white-space: nowrap; border-left: 0; border-bottom: 2px solid transparent; }
  .php-admin-layout > main { padding: 35px 22px 70px; }
  .php-band-list article { grid-template-columns: 75px 1fr auto; padding: 17px 0; }
  .php-band-list article > img, .php-no-image { width: 75px; height: 55px; }
}

@media (max-width: 600px) {
  .setup-form, .password-form, .php-field-grid { grid-template-columns: 1fr; }
  .setup-form .wide, .php-field-grid label.wide, .php-field-grid > button, .password-form button { grid-column: auto; }
  .php-band-list article { grid-template-columns: 1fr 1fr; }
  .php-band-list article > img, .php-no-image { width: 100%; height: 130px; grid-column: 1 / -1; }
  .php-band-list article > div:nth-child(2) { grid-column: 1 / -1; }
  .php-image-row { grid-template-columns: 1fr; }
  .php-image-row > img, .php-image-row > div { width: 100%; height: 180px; }
}

/* Legal pages */
.legal-page { min-height: 100svh; background: #0b0b0a; }
.legal-page > header { min-height: 110px; padding: 20px max(24px, calc((100vw - 1100px)/2)); display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid #2a2825; }
.back-link { color: #aaa69e; text-transform: uppercase; letter-spacing: .14em; font-size: 10px; font-weight: 800; }
.legal-page article { width: min(calc(100% - 48px), 900px); margin: 0 auto; padding: 100px 0 120px; }
.legal-page h1 { font-size: clamp(62px, 8vw, 110px); }
.legal-copy { margin-top: 50px; color: #bbb7af; font-family: var(--font-sans); font-size: 17px; line-height: 1.85; }
.legal-copy p { margin: 0 0 1.35em; }
.legal-copy h2 { margin: 1.8em 0 .55em; color: #f0ece4; font-size: clamp(34px, 5vw, 52px); line-height: 1.05; }
.legal-copy h3 { margin: 1.7em 0 .55em; color: #e4dfd6; font-family: var(--font-sans); font-size: clamp(19px, 3vw, 24px); font-weight: 800; line-height: 1.3; letter-spacing: .02em; }
.legal-copy h4 { margin: 1.5em 0 .45em; color: #d8d3ca; font-family: var(--font-sans); font-size: 17px; font-weight: 800; line-height: 1.4; }
.legal-copy ul, .legal-copy ol { margin: 0 0 1.5em; padding-left: 1.5em; }
.legal-copy li { margin-bottom: .45em; padding-left: .25em; }
.legal-copy a { color: var(--ember-bright); text-decoration: underline; text-underline-offset: 4px; overflow-wrap: anywhere; }
.legal-copy blockquote { margin: 1.6em 0; padding: 2px 0 2px 22px; border-left: 3px solid var(--ember); color: #d4cfc6; }
.legal-copy hr { height: 1px; margin: 2.5em 0; border: 0; background: #3b3833; }
.legal-copy address { margin-bottom: 1.35em; font-style: normal; }
.legal-copy dl { margin: 0 0 1.5em; }
.legal-copy dt { margin-top: .8em; color: #e1ddd5; font-weight: 800; }
.legal-copy dd { margin: .2em 0 0; }
.legal-copy table { display: block; width: 100%; max-width: 100%; margin: 1.5em 0; overflow-x: auto; border-collapse: collapse; font-size: 14px; }
.legal-copy th, .legal-copy td { padding: 12px; border: 1px solid #3c3934; text-align: left; vertical-align: top; }
.legal-copy th { color: #eee9e0; background: #171714; }
.legal-footer { min-height: 120px; display: flex; justify-content: space-between; padding: 35px max(24px, calc((100vw - 1100px)/2)); font-size: 9px; text-transform: uppercase; letter-spacing: .13em; }
.legal-footer > div { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 20px; }
.privacy-technical-note { margin-top: 55px; padding: clamp(24px, 5vw, 42px); border: 1px solid #37342f; background: #121210; }
.privacy-technical-note h2 { font-size: clamp(34px, 5vw, 52px); line-height: 1; }
.privacy-technical-note p { color: #aaa69e; font-size: 15px; line-height: 1.75; }
.privacy-settings-button { min-height: 46px; margin-top: 8px; padding: 0 19px; border: 1px solid var(--ember); background: transparent; color: #fff; font: 800 9px/1 var(--font-sans); text-transform: uppercase; letter-spacing: .12em; cursor: pointer; }
.privacy-settings-button:hover { background: var(--ember); }

/* Lokale Datenschutz- und Cookie-Einstellungen */
.cookie-banner {
  position: fixed;
  z-index: 1000;
  right: max(18px, env(safe-area-inset-right));
  bottom: max(18px, env(safe-area-inset-bottom));
  left: max(18px, env(safe-area-inset-left));
  width: min(920px, calc(100% - 36px));
  max-height: calc(100dvh - 36px);
  margin-left: auto;
  padding: clamp(22px, 3vw, 34px);
  overflow: auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: end;
  border: 1px solid #4b4740;
  border-top: 3px solid var(--ember);
  background: rgba(12, 12, 11, .98);
  color: var(--paper);
  box-shadow: 0 24px 80px rgba(0, 0, 0, .62);
}
.cookie-banner__kicker { margin: 0 0 10px; color: var(--ember-bright); font-size: 9px; font-weight: 800; letter-spacing: .22em; text-transform: uppercase; }
.cookie-banner h2, .cookie-dialog h2 { font-size: clamp(34px, 4vw, 48px); line-height: 1; }
.cookie-banner__copy > p:not(.cookie-banner__kicker) { max-width: 610px; margin: 14px 0 9px; color: #b7b3ab; font-size: 14px; line-height: 1.65; }
.cookie-banner__copy > a { color: #d6d1c8; font-size: 11px; text-decoration: underline; text-underline-offset: 4px; }
.cookie-banner__actions { display: grid; gap: 10px; min-width: 220px; }
.cookie-button { min-height: 48px; padding: 0 19px; border: 1px solid #6a655d; font: 800 9px/1 var(--font-sans); letter-spacing: .11em; text-transform: uppercase; cursor: pointer; }
.cookie-button--primary { border-color: var(--ember); background: var(--ember); color: #fff; }
.cookie-button--primary:hover { border-color: var(--ember-bright); background: var(--ember-bright); }
.cookie-button--secondary { background: transparent; color: #ddd8cf; }
.cookie-button--secondary:hover { border-color: #fff; color: #fff; }
.cookie-button:focus-visible, .cookie-dialog__close:focus-visible, .footer-link-button:focus-visible, .privacy-settings-button:focus-visible { outline: 3px solid #fff; outline-offset: 3px; }

.cookie-dialog {
  position: fixed;
  z-index: 1100;
  inset: 0;
  padding: max(18px, env(safe-area-inset-top)) max(18px, env(safe-area-inset-right)) max(18px, env(safe-area-inset-bottom)) max(18px, env(safe-area-inset-left));
  display: grid;
  place-items: center;
  overflow: auto;
  background: rgba(0, 0, 0, .78);
}
.cookie-dialog__panel { position: relative; width: min(680px, 100%); max-height: calc(100dvh - 36px); padding: clamp(26px, 5vw, 48px); overflow: auto; border: 1px solid #4b4740; border-top: 3px solid var(--ember); background: #11110f; color: var(--paper); box-shadow: 0 30px 100px rgba(0, 0, 0, .7); }
.cookie-dialog__close { position: absolute; top: 14px; right: 16px; width: 42px; height: 42px; border: 1px solid #4d4942; background: transparent; color: #fff; font: 300 27px/1 var(--font-sans); cursor: pointer; }
.cookie-dialog__intro { margin: 16px 42px 28px 0; color: #aaa69e; font-size: 14px; line-height: 1.7; }
.cookie-category { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 18px; align-items: start; padding: 22px; border: 1px solid #3a3732; background: #191815; }
.cookie-category h3 { font-family: var(--font-sans); font-size: 15px; font-weight: 800; letter-spacing: .04em; }
.cookie-category p { margin: 8px 0 0; color: #96928a; font-size: 13px; line-height: 1.6; }
.cookie-category > span { padding: 7px 9px; background: rgba(211, 70, 37, .16); color: var(--ember-bright); font-size: 8px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; white-space: nowrap; }
.cookie-details-list { margin: 18px 0 0; }
.cookie-details-list > div { padding: 15px 0; border-bottom: 1px solid #34312d; }
.cookie-details-list dt { color: #e0dcd3; font-size: 12px; font-weight: 800; overflow-wrap: anywhere; }
.cookie-details-list dd { margin: 5px 0 0; color: #8f8b83; font-size: 12px; line-height: 1.55; }
.cookie-dialog__actions { display: flex; justify-content: space-between; align-items: center; gap: 18px; margin-top: 28px; }
.cookie-dialog__actions > a { color: #c4c0b8; font-size: 11px; text-decoration: underline; text-underline-offset: 4px; }
.cookie-dialog-open { overflow: hidden; }

@media (max-width: 680px) {
  .cookie-banner { right: 0; bottom: 0; left: 0; width: 100%; max-height: calc(100dvh - env(safe-area-inset-top)); margin: 0; padding: 22px 18px calc(18px + env(safe-area-inset-bottom)); grid-template-columns: 1fr; gap: 20px; border-right: 0; border-bottom: 0; border-left: 0; }
  .cookie-banner__actions { min-width: 0; }
  .cookie-dialog { padding: 0; place-items: end center; }
  .cookie-dialog__panel { width: 100%; max-height: calc(100dvh - env(safe-area-inset-top)); padding: 28px 18px calc(22px + env(safe-area-inset-bottom)); border-right: 0; border-bottom: 0; border-left: 0; }
  .cookie-category { grid-template-columns: 1fr; }
  .cookie-category > span { width: fit-content; }
  .cookie-dialog__actions { flex-direction: column-reverse; align-items: stretch; }
  .cookie-dialog__actions > a { text-align: center; }
  .legal-footer { flex-direction: column; align-items: center; gap: 22px; text-align: center; }
  .legal-footer > div { justify-content: center; }
}

/* Admin */
.admin-shell { min-height: 100svh; background: #f0eee8; color: #171714; }
.admin-header { height: 88px; padding: 0 38px; display: flex; justify-content: space-between; align-items: center; background: #0c0c0b; color: white; border-bottom: 1px solid #322e29; }
.admin-brand { display: flex; align-items: center; gap: 16px; }
.admin-brand img { width: clamp(135px, 13vw, 150px); }
.admin-brand span { color: var(--gold); font-size: 10px; font-weight: 800; letter-spacing: .25em; }
.admin-header > div { display: flex; align-items: center; gap: 24px; color: #918d84; font-size: 10px; text-transform: uppercase; letter-spacing: .1em; }
.admin-header > div a { color: #ddd9d1; }
.admin-layout { min-height: calc(100svh - 88px); display: grid; grid-template-columns: 230px 1fr; }
.admin-layout > aside { padding: 45px 22px; background: #151513; color: #8f8b82; }
.admin-layout > aside p { margin: 0 14px 22px; color: #5f5c56; font-size: 9px; font-weight: 800; text-transform: uppercase; letter-spacing: .18em; }
.admin-layout > aside button { width: 100%; padding: 14px; border: 0; border-left: 2px solid transparent; background: transparent; color: #98948c; text-align: left; font: inherit; font-size: 13px; cursor: pointer; }
.admin-layout > aside button.active { border-left-color: var(--ember); background: rgba(255,255,255,.05); color: white; }
.admin-main { position: relative; padding: 55px clamp(28px, 5vw, 80px) 90px; overflow: hidden; }
.admin-title { display: flex; align-items: end; justify-content: space-between; gap: 30px; margin-bottom: 42px; }
.admin-title p, .modal-title p { margin: 0 0 7px; color: var(--ember); font-size: 9px; font-weight: 800; text-transform: uppercase; letter-spacing: .18em; }
.admin-title h1 { font-size: clamp(45px, 5vw, 72px); }
.admin-title > button, .modal-actions button, .band-modal button[type="submit"] { min-height: 46px; padding: 0 22px; border: 0; background: var(--ember); color: white; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; font-size: 9px; cursor: pointer; }
.admin-title > button:disabled { opacity: .5; cursor: default; }
.field-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; }
.field-grid label, .legal-editor label { display: flex; flex-direction: column; gap: 9px; }
.field-grid label.wide { grid-column: 1 / -1; }
.field-grid label > span, .legal-editor label > span { font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; color: #6b6861; }
.field-grid input, .field-grid textarea, .legal-editor textarea { width: 100%; border: 1px solid #cbc6bc; border-radius: 0; background: #faf9f5; color: #24231f; padding: 14px; font: 14px/1.6 Arial, sans-serif; outline: none; resize: vertical; }
.field-grid input:focus, .field-grid textarea:focus, .legal-editor textarea:focus { border-color: var(--ember); box-shadow: 0 0 0 2px rgba(211,70,37,.08); }
.admin-notice { position: fixed; z-index: 80; right: 25px; top: 105px; padding: 15px 45px 15px 18px; background: #20201d; color: white; box-shadow: 0 10px 35px rgba(0,0,0,.2); font-size: 13px; }
.admin-notice button { position: absolute; right: 8px; top: 7px; border: 0; background: transparent; color: #aaa; font-size: 20px; cursor: pointer; }
.admin-loading { color: #77736c; padding: 60px 0; }
.band-table { border-top: 1px solid #c5c0b7; }
.band-table article { min-height: 105px; display: grid; grid-template-columns: 45px 86px 1fr auto auto auto; align-items: center; gap: 18px; border-bottom: 1px solid #c5c0b7; }
.band-index { color: var(--ember); font-size: 10px; font-weight: 800; }
.band-thumb { width: 86px; height: 62px; display: grid; place-items: center; overflow: hidden; background: #24231f; color: #77736b; font-size: 8px; text-transform: uppercase; letter-spacing: .08em; }
.band-thumb img { width: 100%; height: 100%; object-fit: cover; }
.band-table h2 { font-size: 28px; }
.band-table p { margin: 4px 0 0; color: #807c74; font-size: 12px; }
.status { padding: 6px 9px; background: #ddd8cf; color: #7d776e; font-size: 8px; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; }
.status.live { background: #dce9db; color: #3e7042; }
.small-button { border: 1px solid #aaa59b; padding: 9px 12px; background: transparent; color: #4a4843; font-size: 9px; text-transform: uppercase; font-weight: 800; cursor: pointer; }
.small-button.danger { color: #a43a29; border-color: #c8aaa3; }
.legal-editor { display: grid; grid-template-columns: 1fr 1fr; gap: 25px; }
.legal-warning { color: #a04a36; font-size: 12px; line-height: 1.6; }
.modal-backdrop { position: fixed; z-index: 100; inset: 0; display: grid; place-items: center; padding: 20px; background: rgba(0,0,0,.73); }
.band-modal { width: min(800px, 100%); max-height: 92svh; overflow: auto; padding: 34px; background: #f0eee8; color: #171714; box-shadow: 0 25px 80px rgba(0,0,0,.45); }
.modal-title { display: flex; justify-content: space-between; align-items: start; margin-bottom: 28px; }
.modal-title h2 { font-size: 36px; }
.modal-title > button { border: 0; background: transparent; color: #666; font-size: 28px; cursor: pointer; }
.image-upload { display: grid; grid-template-columns: 210px 1fr; gap: 25px; align-items: center; margin-bottom: 28px; padding: 18px; background: #e5e1d8; border: 1px solid #cbc5ba; }
.image-preview { height: 135px; display: grid; place-items: center; overflow: hidden; background: #171714; color: #77736b; font-size: 9px; text-transform: uppercase; letter-spacing: .1em; }
.image-preview img { width: 100%; height: 100%; object-fit: cover; }
.image-upload > div:last-child { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; }
.image-upload p { width: 100%; margin: 0 0 3px; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; font-size: 10px; }
.upload-button, .remove-image { min-height: 38px; display: inline-flex; align-items: center; padding: 0 14px; border: 1px solid #8e887e; background: #f6f3ed; color: #383631; text-transform: uppercase; letter-spacing: .08em; font-size: 9px; font-weight: 800; cursor: pointer; }
.upload-button input { position: absolute; width: 1px; height: 1px; opacity: 0; pointer-events: none; }
.remove-image { color: #a43a29; border-color: #c8aaa3; }
.image-upload small { width: 100%; color: #77736b; font-size: 10px; }
.field-grid.compact { gap: 16px; }
.field-grid .checkbox { flex-direction: row; align-items: center; justify-content: start; }
.field-grid .checkbox input { width: 18px; height: 18px; }
.modal-actions { display: flex; justify-content: flex-end; gap: 12px; margin-top: 28px; }
.modal-actions button.secondary { background: transparent; border: 1px solid #a8a39a; color: #5c5953; }
.admin-denied { min-height: 100svh; display: grid; place-content: center; text-align: center; background: #0b0b0a; padding: 30px; }
.admin-denied h1 { font-size: 64px; }
.admin-denied p { color: #aaa; }
.admin-denied a { color: var(--ember-bright); }

@media (max-width: 900px) {
  .admin-header { padding: 0 20px; }
  .admin-header > div > span { display: none; }
  .admin-layout { grid-template-columns: 1fr; }
  .admin-layout > aside { padding: 8px 16px; display: flex; gap: 4px; overflow-x: auto; }
  .admin-layout > aside p { display: none; }
  .admin-layout > aside button { width: auto; min-width: max-content; border-left: 0; border-bottom: 2px solid transparent; }
  .admin-layout > aside button.active { border-bottom-color: var(--ember); }
  .admin-main { padding: 38px 22px 70px; }
  .legal-editor { grid-template-columns: 1fr; }
  .band-table article { grid-template-columns: 38px 72px 1fr auto; padding: 18px 0; }
  .band-thumb { width: 72px; height: 54px; }
  .band-table .status { grid-column: 3; grid-row: 1; }
  .band-table .small-button { grid-row: 2; }
}

@media (max-width: 600px) {
  .admin-brand span { display: none; }
  .admin-header > div { gap: 14px; }
  .field-grid, .field-grid.compact { grid-template-columns: 1fr; }
  .field-grid label.wide { grid-column: auto; }
  .admin-title { align-items: stretch; flex-direction: column; }
  .admin-title > button { width: 100%; }
  .band-table article { grid-template-columns: 35px 1fr; }
  .band-thumb { grid-column: 2; width: 100%; height: 120px; }
  .band-table .status { grid-column: 2; grid-row: 2; width: fit-content; }
  .band-table .small-button { grid-row: auto; }
  .legal-page > header { align-items: flex-start; }
  .back-link { margin-top: 16px; }
  .image-upload { grid-template-columns: 1fr; }
}
