:root {
  color-scheme: dark;
  --ink: #fff5dc;
  --deep: #120807;
  --night: #24100e;
  --muted: #d7bda0;
  --paper: #2a1714;
  --paper-2: #3a1d18;
  --sage: #879472;
  --sage-dark: #263324;
  --stone: #c84f32;
  --stone-dark: #72271f;
  --blush: #eaa889;
  --gold: #e8b84f;
  --smoke: rgba(255, 245, 220, 0.08);
  --line: rgba(255, 245, 220, 0.2);
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.36);
  font-family:
    "Trebuchet MS", "Avenir Next", ui-sans-serif, system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    url("./assets/texture/overlay.png") repeat,
    linear-gradient(180deg, rgba(18, 8, 7, 0.72), rgba(18, 8, 7, 0.98)),
    url("./assets/rock-wall.svg") center / cover fixed;
  color: var(--ink);
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

.page-atmosphere {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.page-atmosphere::before {
  position: absolute;
  inset: 0;
  content: "";
  background-image:
    url("./assets/texture/paper-pattern.png"),
    linear-gradient(rgba(255, 245, 220, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 245, 220, 0.03) 1px, transparent 1px);
  background-size: 350px 350px, 52px 52px, 52px 52px;
  background-blend-mode: multiply, normal, normal;
  opacity: 0.58;
  mask-image: linear-gradient(180deg, transparent, #000 14%, #000 86%, transparent);
}

.page-atmosphere::after {
  position: absolute;
  inset: -20%;
  content: "";
  background:
    radial-gradient(circle at 25% 20%, rgba(232, 184, 79, 0.28), transparent 18%),
    radial-gradient(circle at 78% 18%, rgba(200, 79, 50, 0.26), transparent 20%),
    radial-gradient(circle at 50% 82%, rgba(135, 148, 114, 0.18), transparent 24%);
  filter: blur(28px);
  animation: atmosphere-drift 18s ease-in-out infinite alternate;
}

main,
.site-header,
.site-footer {
  position: relative;
  z-index: 1;
}

.guitar-float,
.section-guitar {
  position: absolute;
  display: block;
  width: clamp(76px, 10vw, 150px);
  aspect-ratio: 260 / 680;
  background: url("./assets/guitar.svg") center / contain no-repeat;
  filter: drop-shadow(0 22px 24px rgba(0, 0, 0, 0.42));
  opacity: 0.72;
}

.guitar-one {
  top: 12vh;
  left: 4vw;
  animation: guitar-spin 13s linear infinite;
}

.guitar-two {
  top: 46vh;
  right: 7vw;
  transform: scale(0.82) rotate(18deg);
  animation: guitar-spin-reverse 16s linear infinite;
  opacity: 0.48;
}

.guitar-three {
  bottom: -6vh;
  left: 48vw;
  transform: scale(1.15) rotate(-24deg);
  animation: guitar-stage-sway 9s ease-in-out infinite;
  opacity: 0.34;
}

.light-beam {
  position: absolute;
  top: -20vh;
  width: 22vw;
  height: 150vh;
  background: linear-gradient(180deg, rgba(232, 184, 79, 0.24), transparent 78%);
  filter: blur(7px);
  opacity: 0.5;
  transform-origin: top center;
}

.beam-one {
  left: 16vw;
  transform: rotate(18deg);
  animation: beam-sweep 10s ease-in-out infinite alternate;
}

.beam-two {
  right: 9vw;
  transform: rotate(-18deg);
  animation: beam-sweep-two 12s ease-in-out infinite alternate;
}

.site-header {
  position: sticky;
  top: 44px;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(20px, 4vw, 56px);
  background: rgba(18, 8, 7, 0.72);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.upload-strip {
  position: sticky;
  top: 0;
  z-index: 11;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 44px;
  padding: 8px clamp(14px, 3vw, 36px);
  background: #fffaf2;
  color: #22130f;
  border-bottom: 2px solid var(--gold);
  font-size: 13px;
  font-weight: 800;
}

.upload-strip strong {
  color: var(--rust);
  text-transform: uppercase;
}

.upload-strip a {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  background: var(--rust);
  color: #fffaf2;
  border-radius: 6px;
  text-transform: uppercase;
}

.upload-strip span {
  color: #5f4238;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 220px;
}

.brand-mark {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  background: var(--stone);
  color: #fffaf2;
  font-family: Georgia, serif;
  font-size: 22px;
  font-weight: 700;
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  color: var(--blush);
  margin-top: 2px;
}

nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  color: var(--ink);
  font-weight: 700;
}

nav a {
  position: relative;
}

nav a::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

nav a:hover::after {
  transform: scaleX(1);
}

.hero {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  align-items: center;
  min-height: calc(100vh - 70px);
  padding: clamp(32px, 6vw, 72px);
  gap: clamp(28px, 5vw, 64px);
  background:
    url("./assets/texture/overlay.png") repeat,
    linear-gradient(115deg, rgba(18, 8, 7, 0.96), rgba(42, 23, 20, 0.78) 44%, rgba(114, 39, 31, 0.64)),
    url("./assets/rock-wall.svg") center / cover;
  isolation: isolate;
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    linear-gradient(115deg, rgba(18, 8, 7, 0.94), rgba(18, 8, 7, 0.62) 46%, rgba(114, 39, 31, 0.42)),
    radial-gradient(circle at 63% 31%, rgba(232, 184, 79, 0.32), transparent 18%),
    radial-gradient(circle at 85% 78%, rgba(200, 79, 50, 0.28), transparent 26%);
  pointer-events: none;
}

.hero::after {
  position: absolute;
  inset: auto -8vw -12vh -8vw;
  z-index: 0;
  height: 34vh;
  content: "";
  background:
    radial-gradient(ellipse at center, rgba(0, 0, 0, 0.55), transparent 62%),
    repeating-linear-gradient(90deg, rgba(232, 184, 79, 0.28) 0 2px, transparent 2px 42px);
  transform: perspective(420px) rotateX(58deg);
  transform-origin: bottom;
  pointer-events: none;
}

.hero-video {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
  background: var(--deep);
}

.hero-video iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: max(100vw, 178vh);
  height: max(56.25vw, 100vh);
  border: 0;
  opacity: 0.58;
  pointer-events: none;
  transform: translate(-50%, -50%) scale(1.08);
}

.hero-stage {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.stage-light {
  position: absolute;
  top: 14%;
  width: 18vw;
  height: 18vw;
  border-radius: 50%;
  background: rgba(232, 184, 79, 0.36);
  filter: blur(28px);
  animation: pulse-light 4.5s ease-in-out infinite alternate;
}

.stage-left {
  left: 8%;
}

.stage-right {
  right: 15%;
  animation-delay: 1.4s;
}

.stage-line {
  position: absolute;
  right: 8%;
  bottom: 13%;
  left: 38%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 245, 220, 0.44), transparent);
  transform: rotate(-10deg);
}

.line-two {
  bottom: 20%;
  transform: rotate(-6deg);
}

.line-three {
  bottom: 27%;
  transform: rotate(-2deg);
}

.hero-copy {
  position: relative;
  z-index: 1;
  max-width: 780px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 780px;
  margin-bottom: 22px;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(48px, 8vw, 102px);
  line-height: 0.9;
  letter-spacing: 0;
  text-transform: uppercase;
  text-shadow:
    5px 0 0 rgba(0, 219, 232, 0.24),
    -5px 0 0 rgba(200, 79, 50, 0.28),
    0 5px 0 rgba(114, 39, 31, 0.8),
    0 24px 52px rgba(0, 0, 0, 0.52);
}

h2 {
  margin-bottom: 12px;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1.02;
  letter-spacing: 0;
  text-transform: uppercase;
}

h3 {
  margin-bottom: 10px;
  font-size: 22px;
}

.lede {
  max-width: 620px;
  color: #f5d9bb;
  font-size: 20px;
  line-height: 1.6;
}

.hero-actions,
.submit-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1px solid var(--ink);
  border-radius: 6px;
  font-weight: 800;
  cursor: pointer;
}

.button.primary {
  border-color: var(--stone);
  background: linear-gradient(135deg, var(--stone), var(--gold));
  color: #fffaf2;
  box-shadow: 0 16px 34px rgba(200, 79, 50, 0.32);
}

.button.secondary {
  background: rgba(255, 245, 220, 0.08);
  color: var(--ink);
  border-color: rgba(255, 245, 220, 0.42);
}

.hero-art {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
}

.hero-art::before,
.hero-art::after {
  position: absolute;
  content: "";
  background: url("./assets/guitar.svg") center / contain no-repeat;
  filter: drop-shadow(0 24px 28px rgba(0, 0, 0, 0.5));
}

.hero-art::before {
  top: -72px;
  right: -26px;
  width: clamp(82px, 10vw, 148px);
  aspect-ratio: 260 / 680;
  animation: guitar-spin 11s linear infinite;
}

.hero-art::after {
  bottom: -86px;
  left: -32px;
  width: clamp(72px, 8vw, 122px);
  aspect-ratio: 260 / 680;
  animation: guitar-spin-reverse 14s linear infinite;
}

.hero-art img {
  display: block;
  width: 100%;
  border: 1px solid rgba(255, 245, 220, 0.14);
  opacity: 0.72;
  mix-blend-mode: screen;
  box-shadow:
    8px 8px 0 rgba(0, 219, 232, 0.12),
    -8px -8px 0 rgba(200, 79, 50, 0.16),
    var(--shadow);
  transform: rotate(-1.5deg);
}

.transparent-brand {
  position: absolute;
  right: clamp(18px, 4vw, 44px);
  bottom: clamp(18px, 4vw, 42px);
  left: clamp(18px, 4vw, 44px);
  display: grid;
  gap: 6px;
  padding: 18px;
  border: 1px solid rgba(255, 245, 220, 0.28);
  background:
    url("./assets/texture/overlay.png") repeat,
    rgba(18, 8, 7, 0.42);
  color: #fff;
  text-align: left;
  backdrop-filter: blur(12px);
}

.transparent-brand span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.transparent-brand strong {
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(24px, 3vw, 44px);
  line-height: 0.96;
  text-transform: uppercase;
  text-shadow:
    3px 0 0 rgba(0, 219, 232, 0.28),
    -3px 0 0 rgba(200, 79, 50, 0.32);
}

.band {
  position: relative;
  overflow: hidden;
  padding: clamp(42px, 7vw, 88px) clamp(20px, 5vw, 72px);
}

.news-section,
.town-profile-section {
  position: relative;
  overflow: hidden;
  padding: clamp(42px, 7vw, 88px) clamp(20px, 5vw, 72px);
  background:
    linear-gradient(180deg, rgba(18, 8, 7, 0.94), rgba(38, 51, 36, 0.82)),
    url("./assets/rock-wall.svg") center / cover;
}

.news-section::before,
.town-profile-section::before,
.shoplocal-section::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    radial-gradient(circle at 12% 18%, rgba(232, 184, 79, 0.18), transparent 22%),
    radial-gradient(circle at 88% 32%, rgba(200, 79, 50, 0.2), transparent 24%),
    repeating-linear-gradient(90deg, rgba(255, 245, 220, 0.035) 0 1px, transparent 1px 28px);
  pointer-events: none;
}

.news-section .section-heading p:not(.eyebrow),
.town-profile-section .section-heading p:not(.eyebrow),
.shoplocal-section .section-heading p:not(.eyebrow) {
  color: #e7c5a5;
  line-height: 1.6;
}

.news-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(280px, 1.05fr);
  gap: 18px;
}

.lead-story,
.brief-card,
.shop-card,
.sponsor-strip {
  border: 1px solid rgba(255, 245, 220, 0.2);
  background:
    linear-gradient(145deg, rgba(255, 245, 220, 0.12), rgba(255, 245, 220, 0.035)),
    rgba(18, 8, 7, 0.54);
  box-shadow: 0 22px 52px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(8px);
}

.lead-story {
  min-height: 420px;
  padding: clamp(24px, 4vw, 42px);
  border-radius: 10px;
  background:
    linear-gradient(145deg, rgba(232, 184, 79, 0.18), rgba(200, 79, 50, 0.12)),
    rgba(18, 8, 7, 0.62);
}

.lead-story h3 {
  margin: 0 0 16px;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(38px, 5vw, 72px);
  line-height: 0.92;
  text-transform: uppercase;
}

.lead-story p {
  max-width: 640px;
  color: #f1d2b7;
  font-size: 18px;
  line-height: 1.65;
}

.story-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.story-meta span,
.shop-card span {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 0 9px;
  border-radius: 999px;
  background: rgba(232, 184, 79, 0.16);
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.brief-stack {
  display: grid;
  gap: 14px;
}

.brief-card {
  display: grid;
  min-height: 128px;
  align-content: center;
  gap: 8px;
  padding: 22px;
  border-radius: 8px;
}

.brief-card strong {
  font-size: 20px;
}

.brief-card span {
  color: #e7c5a5;
  line-height: 1.5;
}

.sample-articles {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr repeat(2, minmax(0, 0.9fr));
  gap: 18px;
  margin-top: 24px;
}

.sample-article {
  overflow: hidden;
  display: grid;
  border: 1px solid rgba(255, 250, 242, 0.16);
  border-radius: 8px;
  background: rgba(255, 250, 242, 0.08);
  box-shadow: 0 24px 52px rgba(0, 0, 0, 0.24);
}

.sample-article img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  background: #24110d;
}

.sample-article div {
  display: grid;
  gap: 10px;
  padding: 18px;
}

.sample-article h3 {
  margin: 0;
  color: #fffaf2;
  font-size: clamp(22px, 2.4vw, 36px);
  line-height: 1.02;
}

.sample-article p {
  margin: 0;
  color: #f4d8ca;
  line-height: 1.6;
}

.sample-article a {
  width: fit-content;
  color: var(--gold);
  font-weight: 900;
  text-transform: uppercase;
}

.article-category {
  width: fit-content;
  padding: 6px 9px;
  border: 1px solid rgba(232, 184, 79, 0.55);
  color: var(--gold);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.feature-article {
  grid-row: span 2;
}

.feature-article img {
  aspect-ratio: 4 / 3;
}

.town-profile-section,
.town-directory-section {
  background:
    url("./assets/texture/overlay.png") repeat,
    linear-gradient(180deg, rgba(38, 51, 36, 0.9), rgba(18, 8, 7, 0.94)),
    url("./assets/rock-wall.svg") center / cover;
}

.town-profile-section .section-heading::after,
.town-directory-section .section-heading::after {
  display: block;
  width: min(230px, 100%);
  height: 12px;
  margin-top: 14px;
  content: "";
  background: url("./assets/texture/line.svg") left center / contain no-repeat;
  filter: drop-shadow(0 0 10px rgba(0, 219, 232, 0.34));
}

.profile-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(320px, 1.35fr) repeat(2, minmax(220px, 0.82fr));
  gap: 16px;
}

.profile-card {
  min-height: 170px;
  padding: 22px;
  border: 1px solid rgba(255, 245, 220, 0.2);
  border-radius: 10px;
  background:
    url("./assets/texture/paper-pattern.png") center / 350px 350px,
    linear-gradient(145deg, rgba(255, 245, 220, 0.11), rgba(255, 245, 220, 0.035)),
    rgba(18, 8, 7, 0.58);
  background-blend-mode: multiply, normal, normal;
  box-shadow: 0 22px 52px rgba(0, 0, 0, 0.3);
}

.profile-lead {
  grid-row: span 2;
  min-height: 356px;
}

.profile-card h3 {
  margin: 18px 0 14px;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(42px, 5vw, 74px);
  line-height: 0.9;
  text-transform: uppercase;
}

.profile-card p,
.profile-card span {
  color: #e7c5a5;
  line-height: 1.55;
}

.profile-card strong {
  display: block;
  margin-bottom: 12px;
  color: var(--gold);
  font-size: 14px;
  text-transform: uppercase;
}

.verify-card {
  border-color: rgba(0, 219, 232, 0.38);
  box-shadow:
    7px 7px 0 rgba(0, 219, 232, 0.14),
    0 22px 52px rgba(0, 0, 0, 0.3);
}

.town-directory-section {
  position: relative;
  overflow: hidden;
  padding: clamp(42px, 7vw, 88px) clamp(20px, 5vw, 72px);
}

.town-directory-section::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    radial-gradient(circle at 18% 14%, rgba(0, 219, 232, 0.16), transparent 24%),
    radial-gradient(circle at 88% 36%, rgba(232, 184, 79, 0.18), transparent 26%),
    repeating-linear-gradient(135deg, rgba(255, 245, 220, 0.035) 0 1px, transparent 1px 18px);
  pointer-events: none;
}

.town-directory-section .section-heading p:not(.eyebrow) {
  color: #e7c5a5;
  line-height: 1.6;
}

.directory-toolbar {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.directory-toolbar a {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  padding: 0 12px;
  border: 1px solid rgba(0, 219, 232, 0.42);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.24);
  color: #d9fbff;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.directory-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.directory-card {
  min-height: 240px;
  padding: 20px;
  border: 1px solid rgba(255, 245, 220, 0.2);
  border-radius: 10px;
  background:
    url("./assets/texture/paper-pattern.png") center / 350px 350px,
    linear-gradient(145deg, rgba(255, 245, 220, 0.1), rgba(255, 245, 220, 0.035)),
    rgba(18, 8, 7, 0.6);
  background-blend-mode: multiply, normal, normal;
  box-shadow: 0 22px 52px rgba(0, 0, 0, 0.3);
}

.directory-card span {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  padding: 0 9px;
  border-radius: 999px;
  background: rgba(232, 184, 79, 0.14);
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.directory-card h3 {
  margin: 28px 0 12px;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(27px, 2.6vw, 38px);
  line-height: 0.98;
  text-transform: uppercase;
}

.directory-card p {
  color: #e7c5a5;
  line-height: 1.48;
}

.directory-card small {
  display: block;
  margin-top: 14px;
  color: #d9fbff;
  font-weight: 800;
}

.shows-section {
  position: relative;
  overflow: hidden;
  padding: clamp(42px, 7vw, 88px) clamp(20px, 5vw, 72px);
  background:
    url("./assets/texture/overlay.png") repeat,
    linear-gradient(180deg, rgba(18, 8, 7, 0.92), rgba(42, 23, 20, 0.86)),
    url("./assets/rock-wall.svg") center / cover;
}

.shows-section::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    radial-gradient(circle at 14% 10%, rgba(232, 184, 79, 0.22), transparent 22%),
    radial-gradient(circle at 90% 36%, rgba(200, 79, 50, 0.28), transparent 24%),
    repeating-linear-gradient(135deg, rgba(255, 245, 220, 0.045) 0 1px, transparent 1px 18px);
  pointer-events: none;
}

.shows-section .section-heading {
  display: grid;
  gap: 10px;
  max-width: 920px;
}

.shows-section .section-heading p:not(.eyebrow) {
  max-width: 720px;
  color: #e7c5a5;
  line-height: 1.6;
}

.schedule-source {
  display: inline-flex;
  width: fit-content;
  min-height: 38px;
  align-items: center;
  padding: 0 13px;
  border: 1px solid rgba(232, 184, 79, 0.56);
  border-radius: 999px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.shows-section .section-heading::after,
.news-section .section-heading::after,
.shoplocal-section .section-heading::after {
  display: block;
  width: min(230px, 100%);
  height: 12px;
  margin-top: 14px;
  content: "";
  background: url("./assets/texture/line.svg") left center / contain no-repeat;
  filter: drop-shadow(0 0 10px rgba(0, 219, 232, 0.34));
}

.show-marquee {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(9, minmax(260px, 1fr));
  gap: 16px;
  overflow-x: auto;
  padding: 8px 0 18px;
  scroll-snap-type: x mandatory;
}

.show-card {
  position: relative;
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  min-height: 236px;
  overflow: hidden;
  border: 1px solid rgba(255, 245, 220, 0.2);
  border-radius: 10px;
  background:
    url("./assets/texture/paper-pattern.png") center / 350px 350px,
    linear-gradient(145deg, rgba(255, 245, 220, 0.13), rgba(255, 245, 220, 0.04)),
    rgba(18, 8, 7, 0.62);
  background-blend-mode: multiply, normal, normal;
  box-shadow: 0 22px 52px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(8px);
  scroll-snap-align: start;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.show-card::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    radial-gradient(circle at 18% 18%, rgba(232, 184, 79, 0.24), transparent 22%),
    linear-gradient(135deg, transparent 0 64%, rgba(200, 79, 50, 0.22) 64% 100%);
  pointer-events: none;
}

.show-card::after {
  position: absolute;
  right: 16px;
  bottom: -34px;
  width: 62px;
  aspect-ratio: 260 / 680;
  content: "";
  background: url("./assets/guitar.svg") center / contain no-repeat;
  opacity: 0.2;
  transform: rotate(-18deg);
}

.show-card:hover {
  border-color: rgba(232, 184, 79, 0.68);
  box-shadow:
    8px 8px 0 rgba(0, 219, 232, 0.26),
    -8px -8px 0 rgba(200, 79, 50, 0.2),
    0 30px 74px rgba(0, 0, 0, 0.44);
  transform: translateY(-8px) rotate(-0.8deg);
}

.featured-show {
  background:
    linear-gradient(145deg, rgba(232, 184, 79, 0.24), rgba(200, 79, 50, 0.1)),
    rgba(18, 8, 7, 0.74);
}

.show-date {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: start;
  justify-items: center;
  padding-top: 20px;
  border-right: 1px solid rgba(255, 245, 220, 0.18);
  background: rgba(0, 0, 0, 0.2);
}

.show-date span,
.show-date small {
  display: block;
}

.show-date span {
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: 44px;
  line-height: 0.9;
}

.show-date small {
  margin-top: 7px;
  color: var(--gold);
  font-weight: 900;
  text-transform: uppercase;
}

.show-copy {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: space-between;
  gap: 12px;
  padding: 20px;
}

.show-type {
  margin: 0;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.show-copy h3 {
  margin: 0;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 0.96;
  letter-spacing: 0;
  text-transform: uppercase;
}

.show-copy p:not(.show-type) {
  color: #e7c5a5;
  line-height: 1.45;
}

.show-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.show-meta span {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 0 9px;
  border: 1px solid rgba(255, 245, 220, 0.2);
  border-radius: 999px;
  background: rgba(255, 245, 220, 0.08);
  color: #fff5dc;
  font-size: 12px;
  font-weight: 900;
}

.month-calendar {
  position: relative;
  z-index: 1;
  margin-top: clamp(24px, 5vw, 52px);
  border: 1px solid rgba(255, 245, 220, 0.18);
  border-radius: 12px;
  background:
    linear-gradient(145deg, rgba(255, 245, 220, 0.11), rgba(255, 245, 220, 0.035)),
    rgba(18, 8, 7, 0.56);
  box-shadow: 0 26px 68px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(10px);
}

.music-modules {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr 0.92fr 0.92fr;
  gap: 16px;
  margin-top: 14px;
}

.music-module {
  position: relative;
  overflow: hidden;
  min-height: 210px;
  padding: 22px;
  border: 1px solid rgba(255, 245, 220, 0.2);
  border-radius: 10px;
  background:
    url("./assets/texture/paper-pattern.png") center / 350px 350px,
    linear-gradient(145deg, rgba(0, 219, 232, 0.1), rgba(200, 79, 50, 0.13)),
    rgba(18, 8, 7, 0.62);
  background-blend-mode: multiply, normal, normal;
  box-shadow: 0 22px 52px rgba(0, 0, 0, 0.3);
}

.music-module::before {
  position: absolute;
  top: 16px;
  right: 18px;
  content: "RRP";
  color: rgba(255, 255, 255, 0.12);
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: 48px;
  line-height: 1;
}

.music-module h3 {
  max-width: 360px;
  margin: 0 0 12px;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(30px, 3vw, 48px);
  line-height: 0.94;
  text-transform: uppercase;
}

.music-module p:not(.eyebrow) {
  max-width: 420px;
  color: #e7c5a5;
  line-height: 1.5;
}

.artist-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 18px;
}

.artist-strip span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 0 10px;
  border: 1px solid rgba(0, 219, 232, 0.54);
  border-radius: 999px;
  color: #d9fbff;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.month-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  padding: clamp(18px, 3vw, 28px);
  border-bottom: 1px solid rgba(255, 245, 220, 0.16);
}

.month-header h3 {
  margin: 0;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(38px, 5vw, 70px);
  line-height: 0.9;
  text-transform: uppercase;
}

.month-header p:not(.eyebrow) {
  max-width: 520px;
  margin: 0;
  color: #e7c5a5;
  line-height: 1.5;
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(130px, 1fr));
  overflow-x: auto;
}

.weekday,
.day {
  min-width: 130px;
  border-right: 1px solid rgba(255, 245, 220, 0.12);
  border-bottom: 1px solid rgba(255, 245, 220, 0.12);
}

.weekday:nth-child(7n),
.day:nth-child(7n) {
  border-right: 0;
}

.weekday {
  padding: 12px;
  background: rgba(0, 0, 0, 0.2);
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}

.day {
  position: relative;
  display: grid;
  align-content: start;
  min-height: 132px;
  padding: 10px;
  background: rgba(255, 245, 220, 0.035);
}

.day span {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 50%;
  color: #fff5dc;
  font-weight: 900;
}

.day strong {
  margin-top: 8px;
  font-size: 13px;
  line-height: 1.15;
  text-transform: uppercase;
}

.day small {
  margin-top: 5px;
  color: #e7c5a5;
  line-height: 1.25;
}

.has-show {
  background:
    radial-gradient(circle at 20% 14%, rgba(232, 184, 79, 0.22), transparent 34%),
    linear-gradient(145deg, rgba(200, 79, 50, 0.18), rgba(255, 245, 220, 0.045));
}

.has-show span {
  background: var(--stone);
}

.school-day {
  background:
    radial-gradient(circle at 20% 14%, rgba(135, 148, 114, 0.22), transparent 34%),
    linear-gradient(145deg, rgba(135, 148, 114, 0.16), rgba(255, 245, 220, 0.035));
}

.school-day span {
  background: var(--sage);
  color: #10170f;
}

.multi-show::after {
  position: absolute;
  top: 11px;
  right: 10px;
  padding: 3px 6px;
  border-radius: 999px;
  content: "2+";
  background: var(--gold);
  color: #1f1a13;
  font-size: 11px;
  font-weight: 900;
}

.muted-day {
  opacity: 0.48;
  background: rgba(0, 0, 0, 0.14);
}

.shoplocal-section {
  position: relative;
  overflow: hidden;
  padding: clamp(42px, 7vw, 88px) clamp(20px, 5vw, 72px);
  background:
    linear-gradient(180deg, rgba(42, 23, 20, 0.9), rgba(18, 8, 7, 0.96)),
    url("./assets/rock-wall.svg") center / cover;
}

.shop-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.shop-card {
  position: relative;
  overflow: hidden;
  min-height: 270px;
  padding: 22px;
  border-radius: 10px;
}

.shop-card::after {
  position: absolute;
  right: -22px;
  bottom: -34px;
  width: 82px;
  aspect-ratio: 260 / 680;
  content: "";
  background: url("./assets/guitar.svg") center / contain no-repeat;
  opacity: 0.15;
  transform: rotate(-18deg);
}

.shop-card h3 {
  margin-top: 44px;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(28px, 3vw, 44px);
  line-height: 0.96;
  text-transform: uppercase;
}

.shop-card p {
  color: #e7c5a5;
  line-height: 1.52;
}

.shop-card a {
  position: relative;
  z-index: 1;
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  margin-top: 10px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.dining {
  background:
    radial-gradient(circle at 18% 14%, rgba(232, 184, 79, 0.2), transparent 30%),
    rgba(18, 8, 7, 0.56);
}

.lodging {
  background:
    radial-gradient(circle at 18% 14%, rgba(135, 148, 114, 0.26), transparent 30%),
    rgba(18, 8, 7, 0.56);
}

.gear {
  background:
    radial-gradient(circle at 18% 14%, rgba(200, 79, 50, 0.24), transparent 30%),
    rgba(18, 8, 7, 0.56);
}

.services {
  background:
    radial-gradient(circle at 18% 14%, rgba(234, 168, 137, 0.2), transparent 30%),
    rgba(18, 8, 7, 0.56);
}

.sponsor-strip {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 18px;
  padding: 20px;
  border-radius: 10px;
}

.sponsor-strip strong,
.sponsor-strip span {
  display: block;
}

.sponsor-strip strong {
  margin-bottom: 5px;
  font-size: 20px;
}

.sponsor-strip span {
  color: #e7c5a5;
  line-height: 1.45;
}

.assignment-band {
  background:
    linear-gradient(180deg, rgba(38, 51, 36, 0.86), rgba(18, 8, 7, 0.9)),
    url("./assets/rock-wall.svg") center / cover;
  color: #fffaf2;
}

.assignment-band::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    radial-gradient(circle at 15% 22%, rgba(232, 184, 79, 0.2), transparent 24%),
    linear-gradient(90deg, rgba(18, 8, 7, 0.76), transparent);
  pointer-events: none;
}

.assignment-band .eyebrow,
.assignment-band p {
  color: #f4d7c8;
}

.section-heading {
  position: relative;
  z-index: 1;
  max-width: 780px;
  margin-bottom: 28px;
}

.assignment-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.assignment {
  min-height: 210px;
  padding: 24px;
  border: 1px solid rgba(255, 250, 242, 0.22);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 250, 242, 0.12), rgba(255, 250, 242, 0.03)),
    rgba(18, 8, 7, 0.26);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(8px);
  transition:
    transform 180ms ease,
    border-color 180ms ease;
}

.assignment:hover {
  border-color: rgba(232, 184, 79, 0.62);
  transform: translateY(-6px) rotate(-0.6deg);
}

.status {
  display: inline-flex;
  margin-bottom: 16px;
  padding: 5px 9px;
  border-radius: 4px;
  background: var(--gold);
  color: #1f1a13;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.intake-layout {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(250px, 0.42fr) minmax(0, 0.58fr);
  gap: clamp(28px, 5vw, 70px);
  padding: clamp(42px, 7vw, 92px) clamp(20px, 5vw, 72px);
  background:
    linear-gradient(90deg, rgba(255, 245, 220, 0.92), rgba(255, 245, 220, 0.78)),
    url("./assets/rock-wall.svg") center / cover fixed;
  color: #22130f;
}

.intake-layout::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(120deg, transparent 0 18%, rgba(200, 79, 50, 0.12) 18% 31%, transparent 31% 100%),
    radial-gradient(circle at 82% 10%, rgba(232, 184, 79, 0.26), transparent 18%);
  pointer-events: none;
}

.sticky-heading {
  position: sticky;
  top: 104px;
  align-self: start;
  z-index: 1;
}

.sticky-heading p:not(.eyebrow) {
  color: #5c4035;
  line-height: 1.7;
}

.paul-handoff {
  display: grid;
  gap: 8px;
  margin-top: 18px;
  padding: 16px;
  border: 1px solid rgba(34, 19, 15, 0.16);
  border-radius: 8px;
  background:
    url("./assets/texture/paper-pattern.png") center / 350px 350px,
    rgba(255, 250, 242, 0.72);
  background-blend-mode: multiply, normal;
  box-shadow: 0 16px 34px rgba(57, 31, 20, 0.12);
}

.paul-handoff strong {
  color: #22130f;
  font-size: 15px;
  text-transform: uppercase;
}

.paul-handoff span {
  color: #5c4035;
  font-weight: 800;
}

.paul-handoff a {
  display: inline-flex;
  width: fit-content;
  min-height: 32px;
  align-items: center;
  padding: 0 10px;
  border: 1px solid rgba(157, 63, 46, 0.42);
  border-radius: 999px;
  color: var(--stone-dark);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.intake-form {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 18px;
  padding: clamp(18px, 3vw, 30px);
  border: 1px solid rgba(34, 19, 15, 0.16);
  border-radius: 10px;
  background: rgba(255, 250, 242, 0.84);
  box-shadow: 0 28px 70px rgba(57, 31, 20, 0.22);
  backdrop-filter: blur(10px);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

label {
  display: grid;
  gap: 8px;
  color: #35241f;
  font-size: 14px;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(34, 19, 15, 0.18);
  border-radius: 6px;
  background: #fff;
  color: #22130f;
  font: inherit;
  font-weight: 500;
}

input,
select {
  height: 46px;
  padding: 0 12px;
}

textarea {
  resize: vertical;
  min-height: 240px;
  padding: 12px;
  line-height: 1.55;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(197, 154, 66, 0.24);
  border-color: var(--gold);
}

.upload-zone {
  padding: 18px;
  border: 1px dashed rgba(157, 63, 46, 0.55);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(200, 79, 50, 0.12), rgba(232, 184, 79, 0.14));
}

.upload-zone span,
.upload-zone small {
  display: block;
}

.upload-zone small {
  color: #6f4c3f;
  font-weight: 600;
}

.file-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: #6f4c3f;
}

.file-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  max-width: 100%;
  padding: 7px 9px;
  border: 1px solid rgba(34, 19, 15, 0.16);
  border-radius: 6px;
  background: rgba(255, 245, 220, 0.82);
}

.file-pill span {
  overflow: hidden;
  max-width: 280px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.file-pill small {
  color: #6f4c3f;
}

.estimate-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid rgba(34, 19, 15, 0.16);
  border-radius: 8px;
  overflow: hidden;
}

.estimate-strip div {
  padding: 18px;
  background: rgba(255, 245, 220, 0.74);
  border-right: 1px solid rgba(34, 19, 15, 0.16);
}

.estimate-strip div:last-child {
  border-right: 0;
}

.estimate-strip span,
.estimate-strip small {
  display: block;
}

.estimate-strip span {
  font-size: 28px;
  font-weight: 900;
}

.estimate-strip small {
  color: #6f4c3f;
  font-weight: 700;
}

#formStatus {
  margin: 0;
  color: #6f4c3f;
  font-weight: 700;
}

.review-band {
  background:
    linear-gradient(180deg, rgba(42, 23, 20, 0.86), rgba(18, 8, 7, 0.96)),
    url("./assets/rock-wall.svg") center / cover;
  color: var(--ink);
}

.angie-links-band {
  background:
    url("./assets/texture/overlay.png") repeat,
    linear-gradient(180deg, rgba(38, 51, 36, 0.9), rgba(18, 8, 7, 0.96)),
    url("./assets/rock-wall.svg") center / cover;
}

.angie-links-band .section-heading p:not(.eyebrow) {
  color: #e7c5a5;
  line-height: 1.6;
}

.angie-link-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.angie-link-card {
  display: grid;
  min-height: 170px;
  align-content: end;
  gap: 10px;
  padding: 22px;
  border: 1px solid rgba(255, 245, 220, 0.22);
  border-radius: 10px;
  background:
    url("./assets/texture/paper-pattern.png") center / 350px 350px,
    linear-gradient(145deg, rgba(232, 184, 79, 0.18), rgba(200, 79, 50, 0.1)),
    rgba(18, 8, 7, 0.62);
  background-blend-mode: multiply, normal, normal;
  box-shadow: 0 22px 52px rgba(0, 0, 0, 0.3);
}

.angie-link-card span {
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.angie-link-card strong {
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(30px, 4vw, 54px);
  line-height: 0.96;
  text-transform: uppercase;
}

.flow {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  padding: 0;
  list-style: none;
  counter-reset: flow;
}

.flow li {
  min-height: 190px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 245, 220, 0.08);
  counter-increment: flow;
  backdrop-filter: blur(8px);
}

.flow li::before {
  content: counter(flow);
  display: grid;
  width: 34px;
  height: 34px;
  margin-bottom: 18px;
  place-items: center;
  border-radius: 50%;
  background: var(--stone);
  color: #fffaf2;
  font-weight: 900;
}

.flow strong,
.flow span {
  display: block;
}

.flow span {
  margin-top: 8px;
  color: #e7c5a5;
  line-height: 1.55;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding: 24px clamp(20px, 5vw, 72px);
  background:
    linear-gradient(90deg, rgba(18, 8, 7, 0.98), rgba(114, 39, 31, 0.86)),
    url("./assets/rock-wall.svg") center / cover;
  color: #fffaf2;
  font-weight: 700;
}

.section-guitar {
  z-index: 0;
  opacity: 0.18;
}

.section-guitar-left {
  left: 3vw;
  top: 12%;
  animation: guitar-spin-reverse 20s linear infinite;
}

.section-guitar-right {
  right: 2vw;
  top: 6%;
  animation: guitar-spin 18s linear infinite;
}

.section-guitar-low {
  right: 12vw;
  bottom: -8%;
  animation: guitar-stage-sway 8s ease-in-out infinite;
}

@keyframes guitar-spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes guitar-spin-reverse {
  from {
    transform: rotate(360deg);
  }
  to {
    transform: rotate(0deg);
  }
}

@keyframes guitar-stage-sway {
  0%,
  100% {
    transform: rotate(-22deg) translateY(0);
  }
  50% {
    transform: rotate(18deg) translateY(-24px);
  }
}

@keyframes atmosphere-drift {
  from {
    transform: translate3d(-2%, -1%, 0) scale(1);
  }
  to {
    transform: translate3d(2%, 2%, 0) scale(1.08);
  }
}

@keyframes beam-sweep {
  from {
    transform: rotate(8deg);
  }
  to {
    transform: rotate(24deg);
  }
}

@keyframes beam-sweep-two {
  from {
    transform: rotate(-8deg);
  }
  to {
    transform: rotate(-24deg);
  }
}

@keyframes pulse-light {
  from {
    opacity: 0.28;
    transform: scale(0.9);
  }
  to {
    opacity: 0.62;
    transform: scale(1.14);
  }
}

@media (max-width: 980px) {
  .hero,
  .intake-layout,
  .news-layout,
  .sample-articles {
    grid-template-columns: 1fr;
  }

  .feature-article {
    grid-row: auto;
  }

  .hero {
    min-height: auto;
  }

  .sticky-heading {
    position: static;
  }

  .assignment-grid,
  .flow,
  .directory-grid,
  .profile-grid,
  .shop-grid,
  .music-modules {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .profile-lead {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .month-header {
    align-items: start;
    flex-direction: column;
  }
}

@media (max-width: 680px) {
  .upload-strip {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }

  .site-header {
    top: 106px;
  }

  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  nav {
    gap: 12px;
  }

  .form-grid,
  .assignment-grid,
  .flow,
  .angie-link-grid,
  .directory-grid,
  .profile-grid,
  .shop-grid,
  .music-modules,
  .estimate-strip {
    grid-template-columns: 1fr;
  }

  .sponsor-strip {
    align-items: flex-start;
    flex-direction: column;
  }

  .estimate-strip div {
    border-right: 0;
    border-bottom: 1px solid rgba(34, 19, 15, 0.16);
  }

  .estimate-strip div:last-child {
    border-bottom: 0;
  }

  h1 {
    font-size: 46px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }
}
