:root {
  --bg: #f5f7f3;
  --surface: #ffffff;
  --surface-alt: #e9eee5;
  --text: #1a221a;
  --text-muted: #525d51;
  --border: rgba(26, 34, 26, 0.12);
  --accent: #5c7350;
  --accent-2: #9c6f3c;
  --secondary: #2c3a2a;
  --on-accent: #ffffff;
  --dark: #161f16;
  --radius: 10px;
  --radius-btn: 0px;
  --font-heading: 'Book Antiqua', Palatino, Georgia, serif;
  --font-body: Tahoma, Verdana, sans-serif;
  --max: 1120px;
  --section-pad: 88px;
  --header-h: auto;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.68;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--accent);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--accent-2);
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 600;
  letter-spacing: -0.3px;
  line-height: 1.2;
  color: var(--text);
  margin: 0 0 0.6em;
}

h1 {
  font-size: clamp(34px, 5.4vw, 56px);
  line-height: 1.16;
}

h2 {
  font-size: clamp(24px, 3.8vw, 36px);
}

h3 {
  font-size: clamp(18px, 2.2vw, 24px);
}

p {
  margin: 0 0 1em;
}

p:last-child {
  margin-bottom: 0;
}

ul, ol {
  margin: 0 0 1em;
  padding-left: 1.25em;
}

.wrap {
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
}

.kicker {
  display: block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.2;
  padding: 0.85rem 1.35rem;
  border-radius: var(--radius-btn);
  border: 1px solid var(--secondary);
  background: var(--secondary);
  color: var(--on-accent);
  text-decoration: none;
  cursor: pointer;
  transition: box-shadow 0.22s ease, background 0.22s ease, color 0.22s ease, border-color 0.22s ease;
}

.btn:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--on-accent);
  box-shadow: 0 8px 24px rgba(22, 31, 22, 0.14);
}

.btn--ghost {
  background: transparent;
  color: var(--secondary);
  border-color: var(--secondary);
}

.btn--ghost:hover {
  background: var(--secondary);
  color: var(--on-accent);
}

.btn:disabled {
  opacity: 0.65;
  cursor: wait;
  box-shadow: none;
}

.site-header {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  position: relative;
  z-index: 40;
}

.header-brand-row {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem 1.25rem 0.85rem;
  position: relative;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: var(--text);
}

.brand img {
  width: 44px;
  height: 37px;
  object-fit: contain;
}

.brand-name {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: -0.3px;
  line-height: 1;
}

.header-nav-row {
  border-top: 1px solid var(--border);
  padding: 0.55rem 1.25rem 0.7rem;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.35rem 1.35rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--text-muted);
  text-decoration: none;
  padding: 0.25rem 0;
  border-bottom: 2px solid transparent;
}

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

.nav-links a[aria-current="page"] {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: var(--radius-btn);
  width: 44px;
  height: 40px;
  padding: 0;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  position: absolute;
  right: 1.25rem;
  top: 50%;
  transform: translateY(-50%);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--text);
}

.independence-notice {
  border-bottom: 1px solid var(--border);
  background: var(--bg);
  padding: 0.55rem 1.25rem;
}

.independence-notice p {
  width: min(100%, var(--max));
  margin: 0 auto;
  font-size: 0.78rem;
  line-height: 1.5;
  color: var(--text-muted);
}

.hero-quiet {
  background: var(--surface-alt);
  padding: calc(var(--section-pad) - 12px) 0 var(--section-pad);
}

.hero-quiet .accent-rule {
  width: 48px;
  height: 2px;
  background: var(--accent);
  margin-bottom: 1.1rem;
  border: 0;
}

.hero-quiet .lede {
  max-width: 62ch;
  color: var(--text-muted);
  font-size: 1.05rem;
}

.section {
  padding: var(--section-pad) 0;
}

.section--alt {
  background: var(--surface-alt);
}

.section--dark {
  background: var(--dark);
  color: rgba(245, 247, 243, 0.88);
}

.section--dark h2,
.section--dark h3 {
  color: #f5f7f3;
}

.section--dark .kicker {
  color: #b8c9ae;
}

.section--surface {
  background: var(--surface);
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 320ms ease, transform 320ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.cat-band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 320px;
  background: var(--surface);
}

.cat-band--flip .cat-band__media {
  order: 2;
}

.cat-band--flip .cat-band__body {
  order: 1;
}

.cat-band__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 320px;
}

.cat-band__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 3rem 3.25rem;
  background: var(--surface);
}

.cat-band__body p {
  color: var(--text-muted);
  max-width: 42ch;
  margin-bottom: 1.5rem;
}

.about-split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.4fr);
  gap: 2.5rem 3rem;
  align-items: start;
}

.about-split__cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.75rem;
}

.about-split__cols p {
  color: rgba(245, 247, 243, 0.82);
}

.quote-block {
  text-align: center;
  max-width: 46rem;
  margin: 0 auto;
}

.quote-block blockquote {
  margin: 0 0 1.25rem;
  font-family: var(--font-heading);
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 600;
  letter-spacing: -0.3px;
  line-height: 1.25;
  color: var(--accent);
}

.quote-block .frame {
  color: var(--text-muted);
  font-size: 1rem;
  max-width: 48ch;
  margin: 0 auto;
}

.look-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem 2.5rem;
}

.look-item {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 1.75rem 1.6rem;
}

.look-item .num {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--accent-2);
  letter-spacing: -0.3px;
  margin-bottom: 0.5rem;
}

.look-item h3 {
  margin-bottom: 0.55rem;
}

.look-item p {
  color: var(--text-muted);
  font-size: 0.96rem;
}

.page-title {
  padding: calc(var(--section-pad) - 24px) 0 2.5rem;
}

.page-title .intro {
  max-width: 62ch;
  color: var(--text-muted);
  font-size: 1.05rem;
}

.masonry {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.75rem;
  align-items: start;
}

.card-city {
  background: var(--surface);
  border-radius: var(--radius);
  overflow: hidden;
}

.card-city__photo {
  position: relative;
}

.card-city__photo img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.card-city__name {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0;
  padding: 0.9rem 1.1rem;
  background: rgba(22, 31, 22, 0.62);
  color: #f5f7f3;
  font-family: var(--font-heading);
  font-size: clamp(18px, 2.2vw, 24px);
  font-weight: 600;
  letter-spacing: -0.3px;
}

.card-city__body {
  padding: 1.35rem 1.35rem 1.5rem;
}

.card-city__meta {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.card-city__body p {
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

.card-city--flip {
  display: flex;
  flex-direction: column;
}

.card-city__action {
  padding: 0 1.35rem 1.5rem;
}

.band-stack {
  display: flex;
  flex-direction: column;
}

.band-venue {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding-bottom: 0;
}

.band-venue:first-of-type {
  border-top: 1px solid var(--border);
}

.band-venue__photo img {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
  aspect-ratio: 21 / 9;
}

.band-venue__content {
  text-align: center;
  padding: 2.75rem 1.5rem 3rem;
  max-width: 40rem;
  margin: 0 auto;
}

.band-venue__content .meta {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 0.85rem;
}

.band-venue__content p {
  color: var(--text-muted);
  margin-bottom: 1.4rem;
}

.shore-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.75rem;
}

.card-shore {
  background: var(--surface);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.card-shore__photo img {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
  min-height: 260px;
}

.card-shore__body {
  padding: 1.5rem 1.4rem 1.65rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.card-shore__body .kicker {
  margin-bottom: 0.45rem;
}

.card-shore__body p {
  color: var(--text-muted);
  margin-bottom: 1.35rem;
  flex: 1;
}

.catalog-close {
  padding: 3rem 0 var(--section-pad);
}

.catalog-close p {
  max-width: 60ch;
  color: var(--text-muted);
}

.story-layout {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 3rem;
  align-items: start;
  padding-bottom: var(--section-pad);
}

.story-index {
  position: sticky;
  top: 1.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
  border-left: 1px solid var(--border);
}

.story-index a {
  display: block;
  padding: 0.55rem 0 0.55rem 1rem;
  font-size: 0.86rem;
  color: var(--text-muted);
  text-decoration: none;
  border-left: 2px solid transparent;
  margin-left: -1px;
}

.story-index a:hover,
.story-index a:focus {
  color: var(--accent);
  border-left-color: var(--accent);
}

.story-prose section {
  padding: 0 0 2.75rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
  scroll-margin-top: 1.25rem;
}

.story-prose section:last-child {
  border-bottom: 0;
  margin-bottom: 0;
}

.story-prose p {
  color: var(--text-muted);
}

.notes-col {
  max-width: 70ch;
  margin: 0 auto;
  padding-bottom: var(--section-pad);
}

.notes-title {
  padding: calc(var(--section-pad) - 24px) 0 2.5rem;
  margin: 0;
}

.notes-title h1 {
  margin-bottom: 0;
}

.notes-col section {
  padding: 0 0 2.5rem;
  margin-bottom: 2.5rem;
  border-bottom: 1px solid var(--border);
}

.notes-col section:last-child {
  border-bottom: 0;
  margin-bottom: 0;
}

.notes-col p {
  color: var(--text-muted);
}

.contact-intro {
  background: var(--surface-alt);
  padding: calc(var(--section-pad) - 20px) 0 3rem;
}

.contact-intro .lede {
  max-width: 58ch;
  color: var(--text-muted);
}

.contact-form-wrap {
  padding: 3rem 0 var(--section-pad);
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem 1.5rem;
  max-width: 760px;
}

.contact-form .field-full {
  grid-column: 1 / -1;
}

.contact-form label {
  display: block;
  font-size: 0.86rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: var(--text);
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form select,
.contact-form textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 0.75rem 0.85rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-btn);
  background: var(--surface);
  color: var(--text);
}

.contact-form textarea {
  min-height: 160px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: 2px solid var(--accent);
  outline-offset: 1px;
}

.agree-row {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
}

.agree-row input {
  margin-top: 0.3rem;
  flex-shrink: 0;
}

.agree-row label {
  font-weight: 400;
  font-size: 0.92rem;
  color: var(--text-muted);
  margin: 0;
}

.field-error {
  display: none;
  color: #8a2f2f;
  font-size: 0.85rem;
  margin-top: 0.4rem;
}

.field-error.is-visible {
  display: block;
}

.form-status {
  display: none;
  color: #8a2f2f;
  font-size: 0.92rem;
  margin-top: 0.75rem;
}

.form-status.is-visible {
  display: block;
}

.confirm-panel {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  max-width: 560px;
}

.confirm-panel h2 {
  margin-bottom: 0.75rem;
}

.confirm-panel p {
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.legal-body {
  padding-bottom: var(--section-pad);
  max-width: 72ch;
}

.legal-body h2 {
  margin-top: 2rem;
}

.legal-body h3 {
  margin-top: 1.35rem;
}

.legal-body p,
.legal-body li {
  color: var(--text-muted);
}

.sitemap-list {
  list-style: none;
  margin: 0 0 var(--section-pad);
  padding: 0;
  max-width: 40rem;
}

.sitemap-list li {
  border-bottom: 1px solid var(--border);
}

.sitemap-list a {
  display: block;
  padding: 1rem 0;
  text-decoration: none;
  color: var(--text);
  font-weight: 600;
}

.sitemap-list a:hover {
  color: var(--accent);
}

.site-footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 3.5rem 0 2rem;
  margin-top: auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2rem 1.75rem;
}

.footer-brand .brand {
  margin-bottom: 1rem;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.92rem;
  max-width: 34ch;
}

.footer-group h3 {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-variant: small-caps;
  margin: 0 0 0.75rem;
  padding-bottom: 0.55rem;
  border-bottom: 1px solid var(--border);
  color: var(--secondary);
}

.footer-group ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-group li {
  margin-bottom: 0.45rem;
}

.footer-group a,
.footer-group button {
  font-size: 0.9rem;
  color: var(--text-muted);
  text-decoration: none;
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
  font-family: var(--font-body);
}

.footer-group a:hover,
.footer-group button:hover {
  color: var(--accent);
}

.footer-bottom {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  text-align: center;
}

.footer-bottom .independence-copy {
  font-size: 0.78rem;
  color: var(--text-muted);
  max-width: 62ch;
  margin: 0 auto 1rem;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 1.1rem;
  margin-bottom: 1rem;
}

.footer-legal a,
.footer-legal button {
  font-size: 0.82rem;
  color: var(--text-muted);
  text-decoration: none;
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
  font-family: var(--font-body);
}

.footer-legal a:hover,
.footer-legal button:hover {
  color: var(--accent);
}

.footer-copy {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin: 0;
}

.consent {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 80;
  width: min(380px, calc(100vw - 2rem));
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 12px 36px rgba(22, 31, 22, 0.16);
  padding: 1.15rem 1.15rem 1.2rem;
}

.consent[hidden] {
  display: none !important;
}

.consent h2 {
  font-size: 1.15rem;
  margin-bottom: 0.55rem;
}

.consent p {
  font-size: 0.86rem;
  color: var(--text-muted);
  margin-bottom: 0.65rem;
}

.consent-cats {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 0.45rem 0.85rem;
  margin: 0.85rem 0 1rem;
}

.consent-cat {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.84rem;
  color: var(--text);
}

.consent-cat input:disabled {
  opacity: 0.7;
}

.consent-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.consent-actions button {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  border: 1px solid var(--secondary);
  background: transparent;
  color: var(--secondary);
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.consent-actions button:hover,
.consent-actions button:focus-visible {
  background: var(--secondary);
  color: var(--on-accent);
  box-shadow: 0 6px 16px rgba(22, 31, 22, 0.12);
}

.consent-actions button:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.consent-policy {
  display: inline-block;
  margin-top: 0.75rem;
  font-size: 0.8rem;
}

@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .cat-band__body {
    padding: 2.25rem 1.75rem;
  }
  .shore-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 900px) {
  .header-brand-row {
    justify-content: flex-start;
    padding-right: 4.5rem;
    position: relative;
  }
  .nav-toggle {
    display: inline-flex;
    top: auto;
    transform: none;
    right: 1.25rem;
    bottom: auto;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
  }
  .header-nav-row {
    display: block;
    padding: 0;
    border-top: 0;
  }
  .header-nav-row.is-open {
    border-top: 1px solid var(--border);
  }
  .nav-links {
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.5rem 1.25rem 1rem;
  }
  .header-nav-row.is-open .nav-links {
    display: flex;
  }
  .nav-links a {
    padding: 0.7rem 0;
    border-bottom: 1px solid var(--border);
  }
  .nav-links a[aria-current="page"] {
    border-bottom-color: var(--border);
  }
  .story-layout {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .story-index {
    position: static;
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem 1rem;
    border-left: 0;
    border-bottom: 1px solid var(--border);
    padding-bottom: 1rem;
  }
  .story-index a {
    border-left: 0;
    margin: 0;
    padding: 0.25rem 0;
  }
  .about-split {
    grid-template-columns: 1fr;
  }
  .about-split__cols {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    --section-pad: 64px;
  }
  .wrap {
    width: min(100% - 1.75rem, var(--max));
  }
  .cat-band {
    grid-template-columns: 1fr;
  }
  .cat-band--flip .cat-band__media,
  .cat-band--flip .cat-band__body {
    order: initial;
  }
  .masonry,
  .shore-grid,
  .look-grid,
  .contact-form {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .band-venue__photo img {
    aspect-ratio: 16 / 10;
    max-height: 360px;
  }
}

@media (max-width: 640px) {
  .consent {
    right: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    max-width: none;
    border-radius: var(--radius) var(--radius) 0 0;
  }
}

@media (max-width: 480px) {
  .brand-name {
    font-size: 1.15rem;
  }
  .cat-band__body {
    padding: 1.75rem 1.25rem;
  }
  .card-city__name {
    font-size: 1.05rem;
  }
}
