/* ==========================================================================
   Central Reach Art Walk — Styles
   A community art walk celebrating local artists
   ========================================================================== */

/* --- Google Fonts Import --- */
@import url('https://fonts.googleapis.com/css2?family=Cormorant:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500&family=Outfit:wght@300;400;500;600;700&display=swap');

/* --- Custom Properties --- */
:root {
  --ink: #1a1520;
  --ink-light: #2d2535;
  --cream: #f5f0e6;
  --cream-dark: #e8e0d0;
  --sand: #d9cfc0;
  --terracotta: #c85a3a;
  --terracotta-light: #d4765c;
  --terracotta-dark: #a84828;
  --sage: #5a7a62;
  --sage-light: #7a9e84;
  --sage-dark: #3d5a44;
  --ochre: #c49a3c;
  --ochre-light: #d4b060;
  --blush: #d4a08a;
  --slate: #6b7280;
  --white: #fefcf9;

  --font-display: 'Cormorant', 'Georgia', serif;
  --font-body: 'Outfit', 'Helvetica Neue', sans-serif;

  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 6rem;
  --space-2xl: 10rem;

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;

  --shadow-sm: 0 1px 3px rgba(26, 21, 32, 0.08);
  --shadow-md: 0 4px 12px rgba(26, 21, 32, 0.1);
  --shadow-lg: 0 8px 30px rgba(26, 21, 32, 0.12);
  --shadow-xl: 0 16px 50px rgba(26, 21, 32, 0.15);

  --header-height: 72px;
  --max-width: 1400px;
  --content-width: 1100px;
}

/* --- Reset & Base --- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.7;
  color: var(--ink);
  background-color: var(--cream);
  padding-bottom: 42px;
  overflow-x: hidden;
}

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

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

ul, ol {
  list-style: none;
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

h1 {
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 300;
}

h2 {
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 400;
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
}

h4 {
  font-size: clamp(1.2rem, 2vw, 1.5rem);
}

p {
  max-width: 65ch;
  font-size: 1.05rem;
}

.text-sm {
  font-size: 0.875rem;
}

.text-lg {
  font-size: 1.25rem;
  line-height: 1.6;
}

.font-display {
  font-family: var(--font-display);
}

.text-balance {
  text-wrap: balance;
}

/* --- Utility Classes --- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.container--narrow {
  max-width: var(--content-width);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.1);
  transform: translateX(-100%);
  transition: transform 0.4s ease;
}

.btn:hover::after {
  transform: translateX(0);
}

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

.btn--primary {
  background: var(--terracotta);
  color: var(--white);
}

.btn--primary:hover {
  background: var(--terracotta-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn--secondary {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--ink);
}

.btn--secondary:hover {
  background: var(--ink);
  color: var(--cream);
  transform: translateY(-2px);
}

.btn--light {
  background: var(--cream);
  color: var(--ink);
}

.btn--light:hover {
  background: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* --- Header --- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-height);
  display: flex;
  align-items: center;
  transition: all 0.4s ease;
  background: transparent;
}

.site-header.scrolled {
  background: rgba(245, 240, 230, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(26, 21, 32, 0.06);
}

.site-header.scrolled .header-logo,
.site-header.scrolled .nav-link,
.site-header.scrolled .mobile-menu-btn span {
  color: var(--ink);
}

.site-header.scrolled .mobile-menu-btn span {
  background: var(--ink);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.header-logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--white);
  transition: color 0.4s ease;
  z-index: 1001;
}

.header-logo em {
  font-style: italic;
  font-weight: 300;
  opacity: 0.8;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-link {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  transition: color 0.3s ease, opacity 0.3s ease;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--terracotta);
  transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-link:hover {
  color: var(--terracotta-light);
}

.nav-link:focus-visible {
  outline: 2px solid var(--terracotta);
  outline-offset: 4px;
}

/* Mobile Menu Button */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  z-index: 1001;
}

.mobile-menu-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s ease;
  transform-origin: center;
}

.mobile-menu-btn[aria-expanded="true"] span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn[aria-expanded="true"] span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* --- Hero Section --- */
.hero {
  position: relative;
  min-height: 100svh;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  padding: var(--space-xl) 0 var(--space-lg);
  background: var(--ink);
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero__bg img,
.hero__bg svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(180deg,
      rgba(26, 21, 32, 0.3) 0%,
      rgba(26, 21, 32, 0.1) 40%,
      rgba(26, 21, 32, 0.5) 70%,
      rgba(26, 21, 32, 0.85) 100%
    );
}

.hero__noise {
  position: absolute;
  inset: 0;
  z-index: 3;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 200px;
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 4;
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ochre);
  margin-bottom: var(--space-md);
}

.hero__eyebrow::before {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--ochre);
}

.hero__title {
  color: var(--cream);
  margin-bottom: var(--space-md);
  max-width: 900px;
}

.hero__title span {
  display: block;
}

.hero__title .title-accent {
  font-style: italic;
  font-weight: 300;
  color: var(--terracotta-light);
}

.hero__desc {
  color: rgba(245, 240, 230, 0.75);
  font-size: 1.15rem;
  max-width: 550px;
  margin-bottom: var(--space-lg);
  line-height: 1.8;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  align-items: center;
}

.hero__date-badge {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: var(--space-lg);
  padding: 1.25rem 1.75rem;
  background: rgba(245, 240, 230, 0.06);
  border: 1px solid rgba(245, 240, 230, 0.1);
  border-radius: var(--radius-md);
  max-width: max-content;
}

.hero__date-badge .badge-date {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--cream);
  line-height: 1;
}

.hero__date-badge .badge-info {
  font-size: 0.85rem;
  color: rgba(245, 240, 230, 0.6);
  line-height: 1.5;
}

.hero__date-badge .badge-info strong {
  color: var(--cream);
  display: block;
  font-weight: 500;
}

/* Scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: 2rem;
  right: var(--space-md);
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(245, 240, 230, 0.4);
  writing-mode: vertical-rl;
}

.hero__scroll::after {
  content: '';
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(245, 240, 230, 0.4), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; height: 40px; }
  50% { opacity: 1; height: 60px; }
}

/* --- Section Shared --- */
.section {
  padding: var(--space-xl) 0;
}

.section--dark {
  background: var(--ink);
  color: var(--cream);
}

.section--sand {
  background: var(--cream-dark);
}

.section--sage {
  background: var(--sage);
  color: var(--cream);
}

.section__header {
  margin-bottom: var(--space-lg);
}

.section__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: var(--space-sm);
}

.section--dark .section__eyebrow {
  color: var(--ochre);
}

.section__eyebrow::before {
  content: '';
  width: 24px;
  height: 1px;
  background: currentColor;
}

.section__title {
  margin-bottom: var(--space-sm);
}

.section__subtitle {
  font-size: 1.1rem;
  color: var(--slate);
  max-width: 55ch;
  line-height: 1.7;
}

.section--dark .section__subtitle {
  color: rgba(245, 240, 230, 0.6);
}

/* --- About / Intro Section --- */
.intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  align-items: center;
}

.intro__text {
  padding-right: var(--space-md);
}

.intro__lead {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 1.75rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.5;
  color: var(--sage-dark);
  margin-bottom: var(--space-md);
}

.intro__body {
  color: var(--slate);
  margin-bottom: var(--space-md);
}

.intro__stats {
  display: flex;
  gap: var(--space-lg);
  padding-top: var(--space-md);
  border-top: 1px solid var(--sand);
}

.intro__stat-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--terracotta);
  line-height: 1;
}

.intro__stat-label {
  font-size: 0.85rem;
  color: var(--slate);
  margin-top: 0.25rem;
}

.intro__visual {
  position: relative;
}

.intro__image-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: var(--space-sm);
  aspect-ratio: 1;
}

.intro__image-grid .grid-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
}

.intro__image-grid .grid-item img,
.intro__image-grid .grid-item svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.intro__image-grid .grid-item:first-child {
  grid-row: span 2;
  border-radius: var(--radius-lg);
}

/* --- Featured Artists Section --- */
.artists-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-sm);
}

.artist-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
  group: artist;
}

.artist-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.artist-card:hover .artist-card__image {
  transform: scale(1.08);
}

.artist-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    0deg,
    rgba(26, 21, 32, 0.85) 0%,
    rgba(26, 21, 32, 0.2) 40%,
    transparent 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  transition: background 0.4s ease;
}

.artist-card:hover .artist-card__overlay {
  background: linear-gradient(
    0deg,
    rgba(26, 21, 32, 0.9) 0%,
    rgba(26, 21, 32, 0.3) 50%,
    rgba(26, 21, 32, 0.1) 100%
  );
}

.artist-card__medium {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ochre);
  margin-bottom: 0.25rem;
}

.artist-card__name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--cream);
  line-height: 1.2;
}

.artist-card__bio {
  font-size: 0.85rem;
  color: rgba(245, 240, 230, 0.6);
  margin-top: 0.5rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.4s ease;
  opacity: 0;
}

.artist-card:hover .artist-card__bio {
  max-height: 60px;
  opacity: 1;
}

/* --- Bento Grid Info Section --- */
.bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: auto;
  gap: var(--space-sm);
}

.bento__item {
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  position: relative;
  overflow: hidden;
}

.bento__item--large {
  grid-column: span 8;
  padding: var(--space-lg);
  background: var(--ink);
  color: var(--cream);
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.bento__item--large .bento__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.bento__item--large .bento__bg img,
.bento__item--large .bento__bg svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}

.bento__item--large .bento__content {
  position: relative;
  z-index: 1;
}

.bento__item--side {
  grid-column: span 4;
  background: var(--sage);
  color: var(--cream);
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 360px;
}

.bento__item--half {
  grid-column: span 6;
  background: var(--white);
  border: 1px solid var(--sand);
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.bento__item--third {
  grid-column: span 4;
  background: var(--white);
  border: 1px solid var(--sand);
  min-height: 200px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.bento__icon {
  font-size: 2.5rem;
  margin-bottom: var(--space-sm);
}

.bento__title {
  font-family: var(--font-display);
  font-size: 1.75rem;
  margin-bottom: 0.75rem;
}

.bento__text {
  font-size: 0.95rem;
  line-height: 1.7;
  opacity: 0.85;
}

/* --- Schedule / Timeline --- */
.timeline {
  position: relative;
  padding-left: 3rem;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--sand);
}

.timeline__day {
  margin-bottom: var(--space-lg);
}

.timeline__day-label {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--terracotta);
  margin-bottom: var(--space-md);
  position: relative;
}

.timeline__day-label::before {
  content: '';
  position: absolute;
  left: calc(-3rem - 5px);
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--terracotta);
}

.timeline__event {
  position: relative;
  padding: 1.5rem;
  background: var(--white);
  border: 1px solid var(--sand);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.timeline__event:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow-md);
}

.timeline__event::before {
  content: '';
  position: absolute;
  left: calc(-3rem + 3px);
  top: 1.75rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--sage);
}

.timeline__event-time {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 0.25rem;
}

.timeline__event-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 0.25rem;
}

.timeline__event-location {
  font-size: 0.85rem;
  color: var(--sage);
  font-weight: 500;
}

.timeline__event-desc {
  font-size: 0.9rem;
  color: var(--slate);
  margin-top: 0.5rem;
}

/* --- Venue Cards --- */
.venues-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.venue-card {
  padding: var(--space-md);
  background: var(--white);
  border: 1px solid var(--sand);
  border-radius: var(--radius-md);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.venue-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.venue-card__number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--sand);
  line-height: 1;
  margin-bottom: var(--space-sm);
}

.venue-card__name {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.venue-card__address {
  font-size: 0.85rem;
  color: var(--sage);
  font-weight: 500;
  margin-bottom: 0.75rem;
}

.venue-card__desc {
  font-size: 0.9rem;
  color: var(--slate);
}

/* --- Gallery Masonry --- */
.gallery-masonry {
  columns: 3;
  column-gap: var(--space-sm);
}

.gallery-masonry__item {
  break-inside: avoid;
  margin-bottom: var(--space-sm);
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: transform 0.4s ease;
}

.gallery-masonry__item:hover {
  transform: scale(1.02);
}

.gallery-masonry__item img,
.gallery-masonry__item svg {
  width: 100%;
  height: auto;
  display: block;
}

.gallery-masonry__caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  background: linear-gradient(0deg, rgba(26, 21, 32, 0.8) 0%, transparent 100%);
  color: var(--cream);
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease;
}

.gallery-masonry__item:hover .gallery-masonry__caption {
  opacity: 1;
  transform: translateY(0);
}

.gallery-masonry__caption h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
}

.gallery-masonry__caption p {
  font-size: 0.8rem;
  opacity: 0.7;
  margin-top: 0.25rem;
}

/* --- Artist Detail Cards (Artists Page) --- */
.artist-detail {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--space-lg);
  padding: var(--space-lg) 0;
  border-bottom: 1px solid var(--sand);
  align-items: center;
}

.artist-detail:nth-child(even) {
  direction: rtl;
}

.artist-detail:nth-child(even) > * {
  direction: ltr;
}

.artist-detail__image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
}

.artist-detail__image img,
.artist-detail__image svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.artist-detail__info {
  padding: var(--space-md) 0;
}

.artist-detail__medium {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: var(--space-xs);
}

.artist-detail__name {
  margin-bottom: var(--space-sm);
}

.artist-detail__bio {
  color: var(--slate);
  margin-bottom: var(--space-md);
}

.artist-detail__quote {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-style: italic;
  color: var(--sage-dark);
  padding-left: var(--space-md);
  border-left: 3px solid var(--terracotta);
  margin-top: var(--space-md);
}

/* --- CTA Banner --- */
.cta-banner {
  position: relative;
  padding: var(--space-xl) 0;
  background: var(--terracotta);
  color: var(--cream);
  text-align: center;
  overflow: hidden;
}

.cta-banner__pattern {
  position: absolute;
  inset: 0;
  opacity: 0.08;
  background-image:
    radial-gradient(circle at 20% 30%, var(--cream) 1px, transparent 1px),
    radial-gradient(circle at 80% 70%, var(--cream) 1px, transparent 1px),
    radial-gradient(circle at 50% 50%, var(--cream) 1px, transparent 1px);
  background-size: 80px 80px, 60px 60px, 100px 100px;
}

.cta-banner__content {
  position: relative;
  z-index: 1;
}

.cta-banner h2 {
  margin-bottom: var(--space-sm);
}

.cta-banner p {
  font-size: 1.15rem;
  margin: 0 auto var(--space-md);
  opacity: 0.85;
}

/* --- Marquee --- */
.marquee-wrap {
  overflow: hidden;
  padding: var(--space-md) 0;
  border-top: 1px solid var(--sand);
  border-bottom: 1px solid var(--sand);
}

.marquee {
  display: flex;
  gap: var(--space-lg);
  animation: marqueeScroll 25s linear infinite;
  width: max-content;
}

.marquee__item {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 300;
  font-style: italic;
  white-space: nowrap;
  color: var(--ink);
  opacity: 0.3;
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.marquee__item::after {
  content: '\2022';
  font-size: 0.5em;
  color: var(--terracotta);
}

@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* --- Footer --- */
.site-footer {
  background: var(--ink);
  color: var(--cream);
  padding: var(--space-xl) 0 var(--space-md);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: var(--space-lg);
  margin-bottom: var(--space-xl);
}

.footer__brand {
  max-width: 320px;
}

.footer__brand-name {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 600;
  margin-bottom: var(--space-sm);
}

.footer__brand-name em {
  font-weight: 300;
  font-style: italic;
  opacity: 0.7;
}

.footer__brand-desc {
  font-size: 0.9rem;
  color: rgba(245, 240, 230, 0.5);
  line-height: 1.7;
}

.footer__heading {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(245, 240, 230, 0.4);
  margin-bottom: var(--space-md);
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer__link {
  font-size: 0.95rem;
  color: rgba(245, 240, 230, 0.65);
  transition: color 0.3s ease;
}

.footer__link:hover {
  color: var(--terracotta-light);
}

.footer__link:focus-visible {
  outline: 2px solid var(--terracotta);
  outline-offset: 4px;
}

.footer__contact-item {
  font-size: 0.9rem;
  color: rgba(245, 240, 230, 0.5);
  margin-bottom: 0.5rem;
}

.footer__contact-item strong {
  color: rgba(245, 240, 230, 0.8);
  display: block;
  margin-bottom: 0.15rem;
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--space-md);
  border-top: 1px solid rgba(245, 240, 230, 0.08);
  font-size: 0.8rem;
  color: rgba(245, 240, 230, 0.3);
}

.footer__social {
  display: flex;
  gap: var(--space-sm);
}

.footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(245, 240, 230, 0.06);
  color: rgba(245, 240, 230, 0.5);
  font-size: 0.85rem;
  transition: all 0.3s ease;
}

.footer__social-link:hover {
  background: var(--terracotta);
  color: var(--cream);
  transform: translateY(-2px);
}

.footer__social-link:focus-visible {
  outline: 2px solid var(--terracotta);
  outline-offset: 4px;
}

/* --- Scroll Animations --- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal-stagger > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.reveal-stagger.revealed > *:nth-child(1) { transition-delay: 0.05s; }
.reveal-stagger.revealed > *:nth-child(2) { transition-delay: 0.1s; }
.reveal-stagger.revealed > *:nth-child(3) { transition-delay: 0.15s; }
.reveal-stagger.revealed > *:nth-child(4) { transition-delay: 0.2s; }
.reveal-stagger.revealed > *:nth-child(5) { transition-delay: 0.25s; }
.reveal-stagger.revealed > *:nth-child(6) { transition-delay: 0.3s; }
.reveal-stagger.revealed > *:nth-child(7) { transition-delay: 0.35s; }
.reveal-stagger.revealed > *:nth-child(8) { transition-delay: 0.4s; }

.reveal-stagger.revealed > * {
  opacity: 1;
  transform: translateY(0);
}

/* --- 404 Page --- */
.page-404 {
  min-height: 100svh;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-xl) var(--space-md);
  background: var(--ink);
  color: var(--cream);
}

.page-404__code {
  font-family: var(--font-display);
  font-size: clamp(6rem, 20vw, 14rem);
  font-weight: 300;
  line-height: 1;
  color: var(--terracotta);
  opacity: 0.6;
}

.page-404__title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 400;
  margin: var(--space-sm) 0;
}

.page-404__desc {
  color: rgba(245, 240, 230, 0.5);
  margin-bottom: var(--space-md);
}

/* --- About Page Hero --- */
.page-hero {
  position: relative;
  padding: calc(var(--header-height) + var(--space-xl)) 0 var(--space-xl);
  background: var(--ink);
  color: var(--cream);
  overflow: hidden;
}

.page-hero__bg {
  position: absolute;
  inset: 0;
  opacity: 0.15;
}

.page-hero__bg img,
.page-hero__bg svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero__content {
  position: relative;
  z-index: 1;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.page-hero__eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ochre);
  margin-bottom: var(--space-sm);
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

.page-hero__eyebrow::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--ochre);
}

.page-hero__title {
  font-size: clamp(2.5rem, 6vw, 5rem);
  max-width: 700px;
}

.page-hero__subtitle {
  font-size: 1.15rem;
  color: rgba(245, 240, 230, 0.6);
  max-width: 550px;
  margin-top: var(--space-sm);
}

/* --- About Content --- */
.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: start;
}

.about-content__body h3 {
  color: var(--terracotta);
  margin-bottom: var(--space-sm);
  margin-top: var(--space-lg);
}

.about-content__body h3:first-child {
  margin-top: 0;
}

.about-content__body p {
  color: var(--slate);
  margin-bottom: var(--space-sm);
}

.about-content__sidebar {
  position: sticky;
  top: calc(var(--header-height) + var(--space-md));
}

.about-sidebar-card {
  background: var(--white);
  border: 1px solid var(--sand);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  margin-bottom: var(--space-md);
}

.about-sidebar-card__title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin-bottom: var(--space-sm);
}

.about-sidebar-card__list {
  font-size: 0.9rem;
  color: var(--slate);
}

.about-sidebar-card__list li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--sand);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.about-sidebar-card__list li:last-child {
  border-bottom: none;
}

.about-sidebar-card__list li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--terracotta);
  flex-shrink: 0;
}

/* --- Inner Page Header Override --- */
.site-header--inner {
  background: rgba(26, 21, 32, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.site-header--inner.scrolled {
  background: rgba(245, 240, 230, 0.92);
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .artists-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .bento__item--large {
    grid-column: span 12;
  }

  .bento__item--side {
    grid-column: span 12;
  }

  .bento__item--half {
    grid-column: span 6;
  }

  .bento__item--third {
    grid-column: span 4;
  }

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

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
  }

  .gallery-masonry {
    columns: 2;
  }

  .about-content {
    grid-template-columns: 1fr;
  }

  .about-content__sidebar {
    position: static;
  }
}

@media (max-width: 768px) {
  :root {
    --space-xl: 4rem;
    --space-lg: 2.5rem;
  }

  .header-nav {
    position: fixed;
    inset: 0;
    background: rgba(26, 21, 32, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    z-index: 999;
  }

  .header-nav.open {
    opacity: 1;
    visibility: visible;
  }

  .header-nav .nav-link {
    font-size: 1.5rem;
    color: var(--cream);
    font-family: var(--font-display);
    font-weight: 400;
    letter-spacing: 0.02em;
    text-transform: none;
  }

  .mobile-menu-btn {
    display: flex;
  }

  .intro {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }

  .intro__text {
    padding-right: 0;
  }

  .intro__stats {
    gap: var(--space-md);
  }

  .artists-grid {
    grid-template-columns: 1fr;
  }

  .artist-card {
    aspect-ratio: 4/3;
  }

  .bento__item--half,
  .bento__item--third {
    grid-column: span 12;
  }

  .venues-grid {
    grid-template-columns: 1fr;
  }

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

  .footer__bottom {
    flex-direction: column;
    gap: var(--space-sm);
    text-align: center;
  }

  .gallery-masonry {
    columns: 1;
  }

  .artist-detail {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }

  .artist-detail:nth-child(even) {
    direction: ltr;
  }

  .hero__date-badge {
    flex-direction: column;
    align-items: flex-start;
  }

  .timeline {
    padding-left: 2rem;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 2.5rem;
  }

  .hero__desc {
    font-size: 1rem;
  }

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

  .btn {
    width: 100%;
    justify-content: center;
  }
}

/* --- Print --- */
@media print {
  .site-header,
  .hero__scroll,
  .mobile-menu-btn {
    display: none;
  }

  body {
    padding-bottom: 0;
  }

  .hero {
    min-height: auto;
    padding: 2rem 0;
  }
}
