:root {
  --bg: #0b1220;
  --surface: #121b2c;
  --surface-alt: #18243a;
  --text: #eef2f8;
  --text-muted: #9fb0c6;
  --border: rgba(238, 242, 248, 0.14);
  --accent: #d9b382;
  --accent-2: #6fa3b8;
  --secondary: #1b2942;
  --on-accent: #111a29;
  --dark-band: #070d17;
  --radius: 0px;
  --shadow-card: 0 2px 12px rgba(0, 0, 0, 0.06);
  --font-heading: Constantia, Georgia, serif;
  --font-body: 'Trebuchet MS', 'Segoe UI', sans-serif;
  --content-w: 1180px;
  --section-pad: 108px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.78;
  -webkit-font-smoothing: antialiased;
}

main {
  flex: 1;
}

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

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

h1 {
  font-size: clamp(40px, 6.5vw, 72px);
}

h2 {
  font-size: clamp(28px, 4.4vw, 44px);
}

h3 {
  font-size: 22px;
}

p {
  margin: 0 0 1.1em;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  color: var(--text);
  text-decoration: underline;
  text-underline-offset: 3px;
}

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

.wrap {
  max-width: var(--content-w);
  margin: 0 auto;
  padding: 0 28px;
}

.kicker {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 18px;
}

.kicker--alt {
  color: var(--accent-2);
}

.prose p {
  color: var(--text-muted);
  max-width: 62ch;
}

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

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

.section-dark {
  background: var(--dark-band);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.hairline {
  border: 0;
  border-top: 1px solid var(--border);
  margin: 0;
}

.independence-notice {
  background: var(--surface-alt);
  color: var(--text-muted);
  font-size: 12.5px;
  line-height: 1.55;
  text-align: center;
  padding: 9px 20px;
  letter-spacing: 0.01em;
}

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

.brand-row {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 26px 20px 20px;
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand-lockup img {
  width: 46px;
  height: 30px;
  object-fit: contain;
}

.brand-name {
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 500;
  letter-spacing: -0.2px;
  color: var(--text);
  line-height: 1.1;
}

.brand-name:hover {
  color: var(--accent);
  text-decoration: none;
}

.nav-row {
  border-top: 1px solid var(--border);
}

.nav-row ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
}

.nav-row a {
  display: block;
  padding: 15px 22px;
  font-size: 13.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  border-bottom: 2px solid transparent;
}

.nav-row a:hover {
  color: var(--text);
  text-decoration: none;
}

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

.nav-toggle {
  display: none;
  position: absolute;
  top: 20px;
  right: 18px;
  background: none;
  border: 1px solid var(--border);
  color: var(--text);
  width: 44px;
  height: 40px;
  cursor: pointer;
  padding: 0;
  z-index: 50;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  display: block;
  width: 18px;
  height: 2px;
  background: var(--text);
  margin: 0 auto;
  position: relative;
}

.nav-toggle span::before {
  position: absolute;
  top: -6px;
  left: 0;
}

.nav-toggle span::after {
  position: absolute;
  top: 6px;
  left: 0;
}

.hero {
  position: relative;
  padding: 96px 0 200px;
}

.hero .wrap {
  position: relative;
  z-index: 1;
}

.hero h1 {
  line-height: 1.08;
  max-width: 15ch;
  margin-bottom: 0.45em;
}

.hero-intro {
  margin: 0 0 0 26%;
  max-width: 46ch;
  color: var(--text-muted);
  font-size: 17px;
}

.hero-photo {
  position: absolute;
  right: 4%;
  bottom: -130px;
  width: 300px;
  z-index: 2;
}

.hero-photo img {
  width: 300px;
  height: 300px;
  object-fit: cover;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
}

.hero-photo figcaption {
  margin-top: 8px;
  font-size: 11.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-align: right;
}

.page-head {
  padding: 84px 0 56px;
  border-bottom: 1px solid var(--border);
}

.page-head h1 {
  margin-bottom: 0.35em;
}

.page-head .intro {
  color: var(--text-muted);
  max-width: 62ch;
  font-size: 17px;
  margin: 0;
}

.band-venue {
  padding: 72px 0;
}

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

.band-venue .photo {
  max-width: var(--content-w);
  margin: 0 auto;
  padding: 0 28px;
}

.band-venue .photo img {
  width: 100%;
  height: 460px;
  object-fit: cover;
}

.band-venue .band-body {
  max-width: 760px;
  margin: 0 auto;
  padding: 40px 28px 0;
  text-align: center;
}

.band-venue h2 {
  margin: 10px 0 14px;
}

.band-venue .band-body p {
  color: var(--text-muted);
  margin: 0 auto 26px;
  max-width: 56ch;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.venue-card {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--border);
  border-top: 3px solid var(--accent);
  box-shadow: var(--shadow-card);
}

.venue-card .photo img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.venue-card .card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 22px 22px 24px;
}

.venue-card .card-name {
  font-family: var(--font-heading);
  font-size: 23px;
  font-weight: 500;
  letter-spacing: -0.2px;
  line-height: 1.2;
  margin: 0 0 6px;
}

.venue-card .card-meta {
  font-size: 12.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-2);
  margin: 0 0 14px;
}

.venue-card .card-desc {
  color: var(--text-muted);
  font-size: 15px;
  margin: 0 0 22px;
}

.venue-card .card-btn {
  margin-top: auto;
}

.btn {
  display: inline-block;
  background: var(--accent);
  color: var(--on-accent);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 14px 26px;
  border: 1px solid var(--accent);
  border-radius: var(--radius);
  text-align: center;
  transition: background-color 0.15s ease, color 0.15s ease;
}

.btn:hover {
  background: transparent;
  color: var(--accent);
  text-decoration: none;
}

.btn--block {
  display: block;
  width: 100%;
}

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

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

.btn--ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.text-link {
  display: inline-block;
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
  border-bottom: 1px solid var(--accent);
  padding-bottom: 3px;
}

.cat-card {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--border);
  border-top: 3px solid var(--accent);
  box-shadow: var(--shadow-card);
}

.cat-card .photo img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.cat-card .card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 24px 24px 26px;
}

.cat-card h3 {
  font-size: 26px;
  margin: 0 0 12px;
}

.cat-card p {
  color: var(--text-muted);
  font-size: 15px;
  margin: 0 0 20px;
}

.cat-card .text-link {
  margin-top: auto;
  align-self: flex-start;
}

.center-band {
  text-align: center;
}

.center-band h2 {
  max-width: 22ch;
  margin-left: auto;
  margin-right: auto;
}

.center-band .col {
  max-width: 62ch;
  margin: 0 auto;
  color: var(--text-muted);
}

.about-split {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 56px;
  align-items: start;
}

.about-split .left h2 {
  margin-bottom: 0;
}

.about-split .right p {
  color: var(--text-muted);
  margin-bottom: 1.1em;
}

.mission-split {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 0;
  align-items: start;
}

.mission-split .left {
  padding-right: 56px;
  border-right: 1px solid var(--border);
}

.mission-split .right {
  padding-left: 56px;
}

.mission-split .left h2 {
  margin-bottom: 0.5em;
}

.mission-split p {
  color: var(--text-muted);
}

.look-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px 56px;
}

.look-item {
  border-top: 1px solid var(--border);
  padding-top: 22px;
}

.look-item .num {
  font-family: var(--font-heading);
  font-size: 15px;
  letter-spacing: 0.24em;
  color: var(--accent);
  display: block;
  margin-bottom: 10px;
}

.look-item h3 {
  margin: 0 0 10px;
}

.look-item p {
  color: var(--text-muted);
  margin: 0;
}

.strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.strip figure {
  margin: 0;
}

.strip img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.strip figcaption {
  margin-top: 10px;
  font-size: 11.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.duo-row {
  display: grid;
  grid-template-columns: 40% 60%;
  border: 1px solid var(--border);
  background: var(--surface);
}

.duo-row + .duo-row {
  margin-top: 30px;
}

.duo-row .photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.duo-row .row-body {
  display: flex;
  flex-direction: column;
  padding: 30px 34px 32px;
}

.duo-row.flip {
  grid-template-columns: 60% 40%;
}

.duo-row.flip .photo {
  order: 2;
}

.duo-row.flip .row-body {
  order: 1;
}

.duo-row h2 {
  font-size: 27px;
  margin: 0 0 8px;
}

.duo-row .row-body p {
  color: var(--text-muted);
  font-size: 15px;
  margin-bottom: 1em;
}

.duo-row .card-btn {
  margin-top: auto;
}

.editorial-band {
  padding: 84px 0;
}

.editorial-band + .editorial-band {
  border-top: 1px solid var(--border);
}

.ed-grid {
  display: grid;
  grid-template-columns: 6fr 5fr;
  gap: 60px;
  align-items: center;
}

.ed-grid.flip .ed-photo {
  order: 2;
}

.ed-grid .ed-text h2 {
  font-size: clamp(26px, 3.6vw, 36px);
  margin-bottom: 18px;
}

.ed-grid .ed-text p {
  color: var(--text-muted);
  margin-bottom: 1.05em;
}

.ed-grid .ed-photo img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border: 1px solid var(--border);
}

.closing-note {
  border-top: 1px solid var(--border);
  padding: 48px 0 96px;
}

.closing-note .inner {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.closing-note p {
  color: var(--text-muted);
}

.contact-panel {
  background: var(--surface);
  border: 1px solid var(--border);
  max-width: 680px;
  margin: 0 auto;
  padding: 40px 42px 44px;
}

.contact-panel .field {
  margin-bottom: 20px;
}

.contact-panel label {
  display: block;
  font-size: 12.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.contact-panel input[type="text"],
.contact-panel input[type="email"],
.contact-panel select,
.contact-panel textarea {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 0;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 15px;
  padding: 12px 14px;
  line-height: 1.5;
}

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

.contact-panel textarea {
  min-height: 140px;
  resize: vertical;
}

.agree-row {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin: 24px 0 26px;
}

.agree-row input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 4px;
  accent-color: var(--accent);
  flex-shrink: 0;
}

.agree-row label {
  margin: 0;
  font-size: 14.5px;
  color: var(--text-muted);
  letter-spacing: 0.01em;
  text-transform: none;
  line-height: 1.6;
}

.form-error {
  color: #e0a1a1;
  font-size: 13.5px;
  margin: -10px 0 18px;
  min-height: 0;
}

.form-error:empty {
  margin: 0;
}

.form-status {
  font-size: 14px;
  color: #e0a1a1;
  margin-top: 14px;
}

.form-status:empty {
  margin: 0;
}

.confirmation-panel {
  background: var(--surface);
  border: 1px solid var(--border);
  max-width: 680px;
  margin: 0 auto;
  padding: 44px 42px;
  text-align: center;
}

.confirmation-panel h2 {
  font-size: 30px;
}

.confirmation-panel p {
  color: var(--text-muted);
}

.confirmation-panel .ref {
  font-family: var(--font-heading);
  font-size: 20px;
  color: var(--accent);
  letter-spacing: 0.06em;
}

.site-footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
}

.footer-grid {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 56px;
  padding: 64px 0 48px;
}

.footer-left .fgroup {
  margin-bottom: 30px;
}

.footer-left h3 {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--text);
  margin: 0 0 6px;
}

.footer-left h3::after {
  content: "";
  display: block;
  width: 26px;
  height: 2px;
  background: var(--accent);
  margin-top: 8px;
}

.footer-left ul {
  list-style: none;
  margin: 10px 0 0;
  padding: 0;
}

.footer-left li {
  margin-bottom: 9px;
}

.footer-left a {
  color: var(--text-muted);
  font-size: 14.5px;
}

.footer-left a:hover {
  color: var(--text);
}

.footer-right .brand-lockup {
  margin-bottom: 18px;
}

.footer-right .brand-lockup img {
  width: 42px;
  height: 28px;
}

.footer-right .brand-name {
  font-size: 22px;
}

.footer-blurb {
  color: var(--text-muted);
  font-size: 14.5px;
  max-width: 52ch;
  margin: 0 0 18px;
}

.footer-contact {
  font-size: 14.5px;
  margin: 0 0 20px;
  color: var(--text-muted);
}

.footer-notice {
  font-size: 13px;
  color: var(--text-muted);
  border-top: 1px solid var(--border);
  padding-top: 18px;
  max-width: 60ch;
  margin: 0;
}

.footer-bottom {
  border-top: 1px solid var(--border);
}

.footer-bottom .inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  padding: 20px 0;
  font-size: 13px;
  color: var(--text-muted);
}

.footer-bottom .legal-inline {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-bottom .legal-inline a,
.footer-bottom .legal-inline button {
  color: var(--text-muted);
  font-size: 13px;
}

.footer-bottom .legal-inline a:hover {
  color: var(--text);
}

.cookie-settings-btn {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--text-muted);
  letter-spacing: 0.02em;
  border-bottom: 1px solid var(--border);
}

.cookie-settings-btn:hover {
  color: var(--accent);
}

.consent-panel {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 34px 36px 36px;
  margin-bottom: 4px;
}

.consent-panel h2 {
  font-size: 26px;
  margin-bottom: 10px;
}

.consent-panel .consent-copy {
  color: var(--text-muted);
  font-size: 14.5px;
  max-width: 70ch;
  margin: 0 0 20px;
}

.consent-categories {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.3s ease;
  border-top: 0 solid var(--border);
}

.consent-categories.open {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.consent-cat {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  padding: 16px 0;
}

.consent-cat + .consent-cat {
  border-top: 1px solid var(--border);
}

.consent-cat .cat-info {
  flex: 1;
}

.consent-cat .cat-name {
  font-family: var(--font-heading);
  font-size: 17px;
  display: block;
  margin-bottom: 4px;
}

.consent-cat .cat-desc {
  color: var(--text-muted);
  font-size: 13.5px;
  margin: 0;
  max-width: 58ch;
}

.consent-cat .locked {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-2);
  padding-top: 4px;
  white-space: nowrap;
}

.consent-cat input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  accent-color: var(--accent);
  flex-shrink: 0;
}

.consent-manage {
  background: none;
  border: 1px solid var(--border);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 12.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 10px 18px;
  cursor: pointer;
  margin-bottom: 18px;
}

.consent-manage:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.consent-actions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 22px;
}

.consent-actions .btn {
  padding: 13px 10px;
  font-size: 12.5px;
}

.consent-policy-link {
  display: block;
  margin-top: 16px;
  font-size: 13px;
  color: var(--text-muted);
}

.consent-pill {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 60;
  background: var(--surface-alt);
  border: 1px solid var(--border);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 12.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 12px 20px;
  cursor: pointer;
}

.consent-pill:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.sitemap-line {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px 0;
  margin-top: 30px;
}

.sitemap-line a {
  color: var(--text-muted);
  font-size: 15px;
}

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

.sitemap-line .dot {
  color: var(--accent);
  padding: 0 10px;
}

.legal-body {
  max-width: 820px;
}

.legal-body h1 {
  margin-bottom: 0.3em;
}

.legal-body h2 {
  font-size: 26px;
  margin-top: 1.6em;
  margin-bottom: 0.5em;
}

.legal-body h3 {
  margin-top: 1.3em;
  margin-bottom: 0.4em;
}

.legal-body p {
  color: var(--text-muted);
  margin-bottom: 1em;
}

.legal-body .updated {
  color: var(--text-muted);
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.band-split {
  display: grid;
  grid-template-columns: 55% 45%;
  border: 1px solid var(--border);
  background: var(--surface);
}

.band-split .photo {
  min-height: 420px;
}

.band-split .photo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.band-split .band-side {
  padding: 38px 40px 40px;
  display: flex;
  flex-direction: column;
}

.band-split h2 {
  font-size: 28px;
  margin: 0 0 6px;
}

.band-split .band-side p {
  color: var(--text-muted);
  font-size: 15px;
  margin-bottom: 1em;
}

.band-split .card-btn {
  margin-top: auto;
}

.age-gate {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(4, 8, 14, 0.96);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.age-gate-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-top: 3px solid var(--accent);
  max-width: 470px;
  width: 100%;
  padding: 40px 42px 44px;
}

.age-gate-card h2 {
  font-size: 26px;
  margin-bottom: 14px;
}

.age-gate-card p {
  color: var(--text-muted);
  font-size: 14.5px;
  margin-bottom: 1em;
}

.age-gate-card .agree-row {
  margin: 18px 0 22px;
}

.age-gate-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

@media (max-width: 1024px) {
  :root {
    --section-pad: 84px;
  }

  .hero {
    padding: 72px 0 170px;
  }

  .hero-photo {
    width: 240px;
    right: 3%;
    bottom: -100px;
  }

  .hero-photo img {
    width: 240px;
    height: 240px;
  }

  .mission-split .left {
    padding-right: 40px;
  }

  .mission-split .right {
    padding-left: 40px;
  }
}

@media (max-width: 900px) {
  .band-split {
    grid-template-columns: 1fr;
  }

  .band-split .photo {
    min-height: 300px;
    order: 0;
  }

  .band-split .band-side {
    order: 1;
    padding: 30px 26px 32px;
  }

  .nav-toggle {
    display: block;
  }

  .nav-row {
    display: none;
  }

  .site-header.nav-open .nav-row {
    display: block;
    border-top: none;
  }

  .site-header.nav-open .nav-row ul {
    flex-direction: column;
    align-items: stretch;
    padding: 8px 0 16px;
  }

  .site-header.nav-open .nav-row a {
    padding: 13px 24px;
    border-bottom: 1px solid var(--border);
  }

  .site-header.nav-open .nav-row a[data-current="page"] {
    border-bottom-color: var(--border);
    color: var(--accent);
  }

  .brand-row {
    justify-content: center;
  }

  .about-split,
  .mission-split {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .mission-split .left {
    padding-right: 0;
    border-right: 0;
    border-bottom: 1px solid var(--border);
    padding-bottom: 36px;
  }

  .mission-split .right {
    padding-left: 0;
  }

  .ed-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .ed-grid .ed-photo,
  .ed-grid.flip .ed-photo {
    order: 0;
  }

  .card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  :root {
    --section-pad: 68px;
  }

  .wrap {
    padding: 0 20px;
  }

  .hero {
    padding: 56px 0 150px;
  }

  .hero-intro {
    margin-left: 0;
  }

  .hero-photo {
    position: relative;
    right: auto;
    bottom: auto;
    width: 220px;
    margin: 44px auto 0;
  }

  .hero-photo img {
    width: 220px;
    height: 220px;
  }

  .hero-photo figcaption {
    text-align: center;
  }

  .strip {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 12px;
  }

  .strip figure {
    flex: 0 0 240px;
    scroll-snap-align: start;
  }

  .look-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .duo-row,
  .duo-row.flip {
    grid-template-columns: 1fr;
  }

  .duo-row .photo {
    order: 0;
  }

  .duo-row .photo img {
    height: 300px;
  }

  .band-venue .photo img {
    height: 320px;
  }

  .consent-actions {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 560px) {
  .card-grid {
    grid-template-columns: 1fr;
  }

  .brand-name {
    font-size: 21px;
  }

  .brand-lockup img {
    width: 38px;
    height: 26px;
  }

  .contact-panel,
  .confirmation-panel {
    padding: 28px 22px 32px;
  }

  .consent-panel {
    padding: 26px 20px 28px;
  }

  .consent-cat {
    flex-direction: column-reverse;
    gap: 10px;
  }

  .footer-bottom .inner {
    flex-direction: column;
    align-items: flex-start;
  }
}
