/* ===== ROOT & GLOBAL ===== */

:root {
  --paper: #f5f1e8;
  --paper-wash: #e9e2d3;
  --ink: #252820;
  --muted: #717067;
  --accent-olive: #435b3b;
  --accent-olive-soft: #5a7450;
  --border: #d3c7b4;
  --border-soft: rgba(37, 40, 32, 0.18);
  --radius-lg: 18px;
  --shadow-tight: 0 10px 24px rgba(37, 40, 32, 0.14);
  --shadow-soft: 0 12px 30px rgba(37, 40, 32, 0.14);
}

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

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Work Sans", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background:
    radial-gradient(circle at 14% 20%, rgba(90, 116, 80, 0.12), transparent 48%),
    radial-gradient(circle at 82% 10%, rgba(113, 112, 103, 0.12), transparent 42%),
    var(--paper);
  color: var(--ink);
}

/* subtle paper grain */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: repeating-linear-gradient(
      0deg,
      rgba(0, 0, 0, 0.04),
      rgba(0, 0, 0, 0.04) 1px,
      transparent 1px,
      transparent 3px
    );
  opacity: 0.35;
  mix-blend-mode: soft-light;
  z-index: -1;
}

.page {
  min-height: 100vh;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 18px 40px;
}

a {
  color: inherit;
}

/* ===== NAVBAR - Indie Roots ===== */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;

  padding: 18px 28px;

  background: rgba(10, 10, 10, 0.15);
  border-bottom: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(10px);
}

.nav.nav--scrolled {
  background: rgba(10, 10, 10, 0.72);
  border-bottom: 1px solid rgba(255,255,255,0.16);
  padding: 12px 28px;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  flex-wrap: wrap;
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  flex: 0 0 auto;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.site-name {
  font-family: "Playfair Display", Georgia, serif;
  letter-spacing: 0.12em;
  font-size: 1rem;
  text-transform: uppercase;
  color: var(--accent-olive);
}

.template-label {
  font-size: 0.78rem;
  color: var(--muted);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0 auto;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.ev-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.nav-social {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(0,0,0,0.25);
  border-radius: 12px;
  cursor: pointer;
  padding: 10px;
  margin-left: auto;
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 6px 0;
  background: rgba(255,255,255,0.92);
  border-radius: 999px;
}

.nav-link {
  font-size: 0.88rem;
  text-decoration: none;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 600;
  padding-bottom: 2px;
  position: relative;
  transition: color 0.16s ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--accent-olive);
  transition: width 0.16s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--ink);
}

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

.nav-link.social {
  letter-spacing: 0.18em;
}

.nav .logo-tag,
.nav .logo-sub,
.nav a {
  color: rgba(255,255,255,0.92);
}

.nav .logo-sub {
  color: rgba(255,255,255,0.70);
}

.nav .nav-link:hover,
.nav .nav-link.active {
  color: rgba(255,255,255,0.95);
}

.nav .nav-link::after {
  background: rgba(255,255,255,0.85);
}

body.drawer-open {
  overflow: hidden;
}

.nav-drawer {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(6px);
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition: opacity .2s ease;
  z-index: 200;
}

.drawer-open .nav-drawer {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
}

.nav-drawer__panel {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: min(320px, 88vw);
  background: rgba(10,10,10,0.88);
  border-right: 1px solid rgba(255,255,255,0.14);
  padding: 18px;
  transform: translateX(-102%);
  transition: transform .25s ease;
}

.drawer-open .nav-drawer__panel {
  transform: translateX(0);
}

.nav-drawer__close {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.92);
  cursor: pointer;
}

.nav-drawer__brand {
  margin-top: 12px;
}

.nav-drawer__title { color: rgba(255,255,255,0.95); font-weight: 700; }
.nav-drawer__sub { color: rgba(255,255,255,0.70); margin-top: 2px; }

.nav-drawer__links {
  margin-top: 18px;
  display: grid;
  gap: 10px;
}

.nav-drawer__links a {
  color: rgba(255,255,255,0.92);
  text-decoration: none;
  padding: 12px 10px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.04);
}

.nav-drawer__links a::after {
  display: none;
}

.nav-drawer__social {
  margin-top: 18px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.nav-drawer__social a::after {
  display: none;
}

/* ===== BUTTONS ===== */

.btn-primary {
  font-family: "Work Sans", system-ui, sans-serif;
  font-size: 0.95rem;
  padding: 0.6em 1.5em;
  border-radius: 999px;
  border: 1px solid var(--accent-olive);
  cursor: pointer;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  background: linear-gradient(135deg, var(--accent-olive), var(--accent-olive-soft));
  color: #f5f1e8;
  box-shadow: 0 6px 18px rgba(67, 91, 59, 0.25);
  transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
}

.btn-primary:hover {
  transform: translateY(-1px);
  filter: brightness(1.04);
  box-shadow: 0 12px 28px rgba(67, 91, 59, 0.35);
}

.btn-secondary {
  font-family: "Work Sans", system-ui, sans-serif;
  font-size: 0.93rem;
  padding: 0.55em 1.35em;
  border-radius: 999px;
  border: 1px solid rgba(37, 40, 32, 0.35);
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-left: 10px;
  transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}

.btn-secondary:hover {
  border-color: var(--accent-olive);
  background: rgba(67, 91, 59, 0.08);
}

.btn-template-primary {
  /* inherits base primary button styling */
}

.btn-template-secondary {
  opacity: 0.9;
  box-shadow: none;
}

.btn-template-secondary:hover {
  opacity: 1;
}

/* ===== SECTION BASE ===== */

.section {
  padding: 40px 0;
}

.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
}

.section-head {
  max-width: 60ch;
}

.section-head h2 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  letter-spacing: 0.04em;
}

.section-head .sub {
  margin: 8px 0 0;
  color: rgba(31,31,27,.70);
  line-height: 1.6;
}

.muted {
  color: rgba(31,31,27,.70);
}

.section.listen {
  background: var(--paper-wash);
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
}

.section-head .kicker {
  letter-spacing: .18em;
  font-size: .75rem;
  color: rgba(31,31,27,.65);
  margin: 0 0 8px;
}

.listen-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 18px;
  margin-top: 18px;
}

.player-card,
.playlist-card {
  border: 1px solid var(--border);
  background: rgba(245,239,223,.90);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-tight);
  padding: 16px;
}

.player-cover {
  height: 220px;
  border-radius: 18px;
  border: 1px solid var(--border-soft);
  background: #ddd center/cover no-repeat;
  margin-bottom: 14px;
  position: relative;
  overflow: hidden;
}

.player-meta h3 {
  margin: 0;
  font-size: 1.2rem;
}

.player-meta p {
  margin: 4px 0 0;
  color: rgba(31,31,27,.70);
}

.player-progress {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 10px;
  align-items: center;
  margin-top: 14px;
}

.player-progress input[type="range"] {
  width: 100%;
}

.player-controls {
  display: flex;
  gap: 10px;
  margin-top: 14px;
}

.ctrl {
  border-radius: 14px;
  border: 1px solid rgba(31,31,27,.28);
  background: rgba(255,255,255,.20);
  padding: 12px 14px;
  cursor: pointer;
}

.ctrl.main {
  background: rgba(63,90,58,.92);
  color: white;
  border-color: rgba(63,90,58,.65);
  padding: 12px 18px;
}

.playlist {
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.track {
  display: grid;
  gap: 4px;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(31,31,27,.16);
  background: rgba(255,255,255,.18);
  cursor: pointer;
}

.track.active {
  border-color: rgba(63,90,58,.55);
  background: rgba(63,90,58,.12);
}

.track-title { font-weight: 700; }
.track-artist { color: rgba(31,31,27,.70); font-size: .9rem; }

.btn {
  display: inline-block;
  text-decoration: none;
}

.pin-actions .btn-secondary {
  margin-left: 0;
}

.section.diary {
  background: var(--paper-wash);
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
}

.diary-grid {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 22px;
  align-items: start;
}

.timeline {
  position: relative;
  margin-top: 16px;
  padding-left: 18px;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 6px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: rgba(31,31,27,.18);
}

.entry {
  position: relative;
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 14px;
  margin-bottom: 16px;
}

.entry-dot {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: var(--accent-olive);
  margin-top: 18px;
  box-shadow: 0 0 0 4px rgba(63,90,58,.12);
}

.entry-card {
  border: 1px solid var(--border);
  background: rgba(245,239,223,.92);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-tight);
  padding: 14px;
}

.entry-top {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 6px;
}

.entry-date {
  font-size: .75rem;
  letter-spacing: .14em;
  color: rgba(31,31,27,.65);
}

.entry-tag {
  font-size: .72rem;
  letter-spacing: .14em;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(31,31,27,.18);
  background: rgba(255,255,255,.18);
}

.pinned {
  display: grid;
  gap: 14px;
  position: sticky;
  top: 92px;
}

.pin-card {
  border: 1px solid var(--border);
  background: rgba(245,239,223,.90);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-tight);
  padding: 14px;
}

.pin-kicker {
  font-size: .72rem;
  letter-spacing: .16em;
  color: rgba(31,31,27,.65);
  margin: 0 0 6px;
}

.pin-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.pin-list {
  margin: 10px 0 0;
  padding-left: 18px;
  color: rgba(31,31,27,.78);
}

.section.projects {
  background: var(--paper);
}

.project-stack {
  display: grid;
  gap: 16px;
  margin-top: 18px;
}

.project-row {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 16px;
  align-items: center;
  border: 1px solid var(--border);
  background: rgba(245,239,223,.86);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-tight);
  padding: 14px;
}

.project-row.reverse {
  grid-template-columns: 1.1fr .9fr;
}

.project-row.reverse .project-photo { order: 2; }
.project-row.reverse .project-body { order: 1; }

.project-photo {
  height: 180px;
  border-radius: 18px;
  border: 1px solid var(--border-soft);
  background: #ddd center/cover no-repeat;
}

.project-meta {
  color: rgba(168,90,42,.82);
  font-style: italic;
  margin-top: 10px;
}

/* ===== HERO SECTION ===== */

.section.hero {
  min-height: 100vh;
  padding-top: 120px; /* space for fixed nav */
  position: relative;
  overflow: hidden;

  width: 100vw;
  margin-left: calc(50% - 50vw);
  padding-left: 18px;
  padding-right: 18px;

  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 32px;
  align-items: center;

  background:
    linear-gradient(180deg, rgba(15, 16, 14, 0.55), rgba(15, 16, 14, 0.15)),
    url("../../assets/img/demo-image-4.webp") center/cover no-repeat;
}

.section.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='280' height='280'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='280' height='280' filter='url(%23n)' opacity='.18'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
  opacity: 0.25;
}

.hero-left {
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  z-index: 1;
}

.hero-tagline {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: rgba(255,255,255,0.75);
  margin: 0;
}

.hero-title {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 2.5rem;
  letter-spacing: 0.05em;
  margin: 0;
  color: rgba(255,255,255,0.95);
}

.hero-subtitle {
  margin: 0;
  font-size: 1rem;
  color: rgba(255,255,255,0.78);
  max-width: 34rem;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 8px;
}

.hero-note {
  font-size: 0.86rem;
  color: rgba(255,255,255,0.72);
  margin: 8px 0 0;
}

.hero-right {
  display: flex;
  justify-content: flex-end;
  position: relative;
  z-index: 1;
}

.section.hero .btn-secondary {
  border-color: rgba(255,255,255,0.35);
  color: rgba(255,255,255,0.92);
}

.section.hero .btn-secondary:hover {
  border-color: rgba(255,255,255,0.55);
  background: rgba(255,255,255,0.08);
}

/* POLAROID FRAME */

.polaroid-frame {
  width: 100%;
  max-width: 360px;
  background: var(--paper);
  border: 1px solid rgba(37, 40, 32, 0.25);
  border-radius: 12px;
  padding: 12px 12px 16px;
  position: relative;
  box-shadow: 0 16px 30px rgba(37, 40, 32, 0.26);
}

.polaroid-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
      0deg,
      rgba(0, 0, 0, 0.05),
      rgba(0, 0, 0, 0.05) 1px,
      transparent 1px,
      transparent 4px
    );
  opacity: 0.25;
  pointer-events: none;
  mix-blend-mode: multiply;
}

.polaroid-photo {
  width: 100%;
  height: 200px;
  border-radius: 8px;
  background:
    radial-gradient(circle at 22% 18%, rgba(67, 91, 59, 0.5), transparent 48%),
    radial-gradient(circle at 78% 78%, rgba(113, 112, 103, 0.35), transparent 55%),
    linear-gradient(135deg, #c7c0b1, #a99f8a);
  position: relative;
  overflow: hidden;
}

.polaroid-photo::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
      0deg,
      rgba(255, 255, 255, 0.16),
      rgba(255, 255, 255, 0.16) 1px,
      transparent 1px,
      transparent 3px
    );
  opacity: 0.35;
  mix-blend-mode: soft-light;
}

.polaroid-caption {
  margin: 10px 4px 0;
  font-size: 0.82rem;
  color: var(--muted);
}

.polaroid-tape {
  position: absolute;
  background: rgba(233, 226, 211, 0.9);
  box-shadow: 0 2px 6px rgba(37, 40, 32, 0.32);
  mix-blend-mode: multiply;
}

.tape-top {
  top: 8px;
  left: 26%;
  width: 96px;
  height: 16px;
  transform: rotate(-6deg);
}

.tape-side {
  bottom: 12px;
  right: 24%;
  width: 16px;
  height: 74px;
  transform: rotate(6deg);
}

/* ===== SECTION HEADERS ===== */

.section-header {
  max-width: 640px;
  margin-bottom: 22px;
}

.section-title {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.8rem;
  letter-spacing: 0.03em;
  margin: 0 0 8px;
  color: var(--ink);
}

.section-subtitle {
  margin: 0;
  font-size: 0.96rem;
  color: var(--muted);
  line-height: 1.5;
}

/* ===== FEATURES ===== */

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

.feature-card {
  background: var(--paper);
  border-radius: 16px;
  padding: 14px 14px 16px;
  border: 1px solid var(--border);
  box-shadow: 0 10px 24px rgba(37, 40, 32, 0.18);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -10%;
  width: 120%;
  height: 12px;
  background-image: radial-gradient(circle at top, rgba(113, 112, 103, 0.28) 50%, transparent 70%);
  opacity: 0.55;
  mix-blend-mode: multiply;
  pointer-events: none;
}

.feature-title {
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin: 0 0 8px;
  color: var(--accent-olive);
}

.feature-text {
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.5;
}

/* ===== SHOWS ===== */

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

.show-card {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 12px 14px;
  background: var(--paper);
  border-radius: 16px;
  border: 1px solid var(--border);
  box-shadow: 0 10px 24px rgba(37, 40, 32, 0.18);
}

.show-date {
  width: 56px;
  height: 68px;
  border-radius: 12px;
  background:
    radial-gradient(circle at 50% 0%, #f5f1e8, transparent 70%),
    linear-gradient(160deg, #c8c0b0, #8b897f);
  color: var(--ink);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: "Playfair Display", Georgia, serif;
  border: 1px solid rgba(37, 40, 32, 0.4);
}

.show-day {
  font-size: 1.2rem;
  font-weight: 700;
}

.show-month {
  font-size: 0.74rem;
  letter-spacing: 0.16em;
}

.show-info {
  display: flex;
  flex-direction: column;
}

.show-title {
  margin: 0 0 3px;
  font-size: 0.98rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent-olive);
}

.show-meta {
  margin: 0;
  font-size: 0.88rem;
  color: var(--muted);
}

/* ===== RECORD GRID ===== */

.record-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.record-card {
  background: var(--paper);
  border-radius: 16px;
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: 0 16px 30px rgba(37, 40, 32, 0.2);
  position: relative;
}

.record-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -10%;
  width: 120%;
  height: 12px;
  background-image: radial-gradient(circle at top, rgba(113, 112, 103, 0.28) 45%, transparent 70%);
  opacity: 0.6;
  mix-blend-mode: multiply;
  pointer-events: none;
}

.record-cover {
  height: 120px;
  position: relative;
}

.record-cover-a {
  background:
    radial-gradient(circle at 22% 28%, rgba(67, 91, 59, 0.6), transparent 60%),
    linear-gradient(135deg, #c7c0b1, #8b897f);
}

.record-cover-b {
  background:
    radial-gradient(circle at 70% 22%, rgba(113, 112, 103, 0.5), transparent 60%),
    linear-gradient(135deg, #d9d0c0, #a49b89);
}

.record-cover-c {
  background:
    radial-gradient(circle at 50% 50%, rgba(37, 40, 32, 0.5), transparent 70%),
    linear-gradient(135deg, #9fa18f, #5f7257);
}

.record-cover::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
      0deg,
      rgba(255, 255, 255, 0.16),
      rgba(255, 255, 255, 0.16) 1px,
      transparent 1px,
      transparent 3px
    );
  opacity: 0.3;
  mix-blend-mode: soft-light;
}

.record-body {
  padding: 12px 14px 16px;
}

.record-title {
  margin: 0 0 4px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.05rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-olive);
}

.record-meta {
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted);
}

/* ===== SPLIT ABOUT ===== */

.section-split {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1.4fr);
  gap: 24px;
}

.body-text {
  margin: 0 0 10px;
  font-size: 0.96rem;
  color: var(--muted);
  line-height: 1.6;
}

/* ===== CTA ===== */

.section-cta {
  padding: 44px 0 32px;
}

.cta-inner {
  background:
    radial-gradient(circle at 18% 18%, rgba(67, 91, 59, 0.14), transparent 70%),
    radial-gradient(circle at 80% 82%, rgba(113, 112, 103, 0.16), transparent 70%),
    #ece4d6;
  border-radius: 20px;
  padding: 24px 20px 20px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
}

.cta-inner::before {
  content: "";
  position: absolute;
  inset: 0 6% 0 6%;
  background-image: repeating-linear-gradient(
      180deg,
      rgba(37, 40, 32, 0.12),
      rgba(37, 40, 32, 0.12) 1px,
      transparent 1px,
      transparent 24px
    );
  opacity: 0.35;
  mix-blend-mode: multiply;
  pointer-events: none;
}

.cta-inner > * {
  position: relative;
  z-index: 1;
}

.cta-actions {
  margin-top: 16px;
  margin-bottom: 8px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cta-note {
  font-size: 0.88rem;
  color: var(--muted);
}

/* ===== FOOTER ===== */

.footer {
  padding-top: 10px;
  border-top: 1px solid rgba(37, 40, 32, 0.2);
  margin-top: 26px;
}

.footer-cta-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 10px;
}

.footer-cta {
  text-decoration: none;
}

.footer-text {
  font-size: 0.84rem;
  color: var(--muted);
  text-align: center;
}

/* ===== INTERACTIONS ===== */

.feature-card,
.show-card,
.record-card,
.polaroid-frame {
  transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
}

.feature-card:hover,
.show-card:hover,
.record-card:hover,
.polaroid-frame:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(37, 40, 32, 0.24);
  filter: brightness(1.02);
}

/* ===== RESPONSIVE ===== */

@media (max-width: 980px) {
  .diary-grid { grid-template-columns: 1fr; }
  .pinned { position: relative; top: auto; }
  .project-row, .project-row.reverse { grid-template-columns: 1fr; }
  .project-row.reverse .project-photo,
  .project-row.reverse .project-body { order: initial; }
  .project-photo { height: 200px; }
}

@media (max-width: 900px) {
  .listen-grid { grid-template-columns: 1fr; }
  .player-cover { height: 200px; }

  .hero {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-right {
    order: -1;
  }

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

  .shows-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .section-split {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 820px) {
  .nav-links,
  .nav-social { display: none; }

  .nav-toggle { display: inline-block; }
}

@media (max-width: 640px) {
  .page {
    padding: 0 14px 32px;
  }

  .section.hero {
    padding-left: 14px;
    padding-right: 14px;
  }

  .hero {
    gap: 22px;
  }

  .hero-title {
    font-size: 2.1rem;
  }

  .feature-grid,
  .shows-list,
  .record-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .btn-secondary {
    margin-left: 0;
  }
}

/* EV nav badge (scoped) */
.ev-navhome{
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}

.ev-navhome__badge{
  width: 36px;
  height: 36px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-weight: 800;
  letter-spacing: .4px;

  background: var(--ev-brand-purple-soft);
  border: 1px solid var(--ev-brand-purple-border);
  color: var(--ev-brand-purple);
  box-shadow: 0 0 0 transparent;
}

.ev-navhome:hover .ev-navhome__badge{
  background: var(--ev-brand-purple-soft);
  border-color: var(--ev-brand-purple-border);
  box-shadow: 0 0 24px rgba(164, 155, 255, 0.35);
}

:root{
  --ev-brand-purple: #a49bff;
  --ev-brand-purple-soft: rgba(164, 155, 255, 0.16);
  --ev-brand-purple-border: rgba(164, 155, 255, 0.35);
}

.ev-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;

  padding: 1rem 1.5rem;
  margin-top: 4rem;

  font-size: 0.85rem;
  opacity: 0.8;

  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.ev-footer__logo {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #7c4dff;
  color: #fff;

  display: flex;
  align-items: center;
  justify-content: center;

  font-weight: 600;
  text-decoration: none;
}

.ev-footer__center {
  text-align: center;
  opacity: 0.7;
}

.ev-footer__cta {
  text-decoration: none;
  font-weight: 500;
  opacity: 0.9;
}

.ev-footer__cta:hover {
  opacity: 1;
}

@media (max-width: 768px) {
  .ev-footer {
    flex-direction: column;
    text-align: center;
  }
}

.ev-copyright {
  text-align: center;
  margin-top: 0.75rem;
  margin-bottom: 1.25rem;
  font-size: 0.75rem;
  opacity: 0.5;
}

.demo-safe-link { cursor: pointer; }


/* Footer layout */
.site-footer {
  margin-top: 60px;
  padding: 20px 22px;
}

.footer-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px 18px;
  flex-wrap: wrap;
}

.footer-left,
.footer-center,
.footer-right {
  color: var(--muted, var(--ink-muted, rgba(255, 255, 255, 0.78)));
  font-size: 0.95rem;
  line-height: 1.4;
}

.footer-left {
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 700;
}

.footer-right {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.footer-right a {
  color: inherit;
  text-decoration: none;
  font-weight: 600;
}

.footer-right a:hover {
  color: var(--text, var(--ink-main, #ffffff));
}

@media (max-width: 720px) {
  .footer-inner {
    justify-content: center;
    text-align: center;
  }

  .footer-left,
  .footer-center,
  .footer-right {
    width: 100%;
    justify-content: center;
  }

  .footer-right {
    justify-content: center;
  }
}

