/* Google Fonts import - Cormorant Garamond (heading) + Source Sans 3 (body) */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;0,700;1,400&family=Source+Sans+3:wght@300;400;600&display=swap');

:root {
  /* Palette */
  --ochre: #D4A843;
  --header-yellow: #F5C172;
  --pink: #D47B8A;
  --lilac: #B8A9C9;
  --orange: #C4723A;
  --blue: #8AAEC4;
  --bg: #FAFAF7;
  --text: #2C2C2C;
  --text-light: #6B6B6B;
  --white: #FFFFFF;

  /* Typography */
  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Source Sans 3', 'Segoe UI', sans-serif;
  --font-logo: 'Cormorant Garamond', Georgia, serif;

  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 6rem;

  /* Layout */
  --max-width: 1200px;
  --header-height: 210px;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  font-weight: 300;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

/* Prevent horizontal overflow on all iframes */
iframe {
  max-width: 100%;
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.2;
}

/* ===== HEADER ===== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-height);
  background: var(--header-yellow);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.header-inner {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end; /* Push hamburger to right */
  max-width: var(--max-width);
  height: 100%;
  margin: 0 auto;
  padding: 0 var(--space-md);
  position: relative; /* Anchor for absolute logo */
}

/* Logo */

.logo {
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%); /* Perfectly center in header */
  z-index: 10;
}

.logo-img {
  height: 200px; /* Double the previous size */
  width: auto;
  display: block;
  transform: translate(1%, -8%);
  transform-origin: center;
}

.site-nav {
  position: static;
}

/* Fullscreen Navigation Overlay */

.nav-links {
  position: fixed;
  top: 0;
  right: 0;
  left: auto;
  width: min(340px, 82vw);
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  background: var(--header-yellow);
  z-index: 150;
  list-style: none;
  margin: 0;
  padding: 5.5rem 1.25rem 1.5rem;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  transform: translateX(100%);
  transition: transform 0.6s cubic-bezier(0.77, 0, 0.175, 1);
  box-shadow: -10px 0 40px rgba(0,0,0,0.1);
}

.nav-links.is-open {
  transform: translateX(0);
}

.nav-links li {
  overflow: visible;
  margin: 0.2rem 0;
  width: 100%;
}

.nav-links li a {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(1.7rem, 4.4vw, 2.6rem);
  font-weight: 600;
  font-style: italic;
  line-height: 1.18;
  letter-spacing: 0.01em;
  text-transform: none;
  text-decoration: none;
  color: var(--text);
  transition: transform 0.35s ease, color 0.2s ease, opacity 0.35s ease;
  transform: translateY(0.7rem);
  opacity: 0;
  padding: 0.06em 0;
  position: relative;
}

.nav-links.is-open li a {
  transform: translateY(0);
  opacity: 1;
}

/* Stagger the link animations */
.nav-links.is-open li:nth-child(1) a { transition-delay: 0.3s; }
.nav-links.is-open li:nth-child(2) a { transition-delay: 0.4s; }
.nav-links.is-open li:nth-child(3) a { transition-delay: 0.5s; }
.nav-links.is-open li:nth-child(4) a { transition-delay: 0.6s; }
.nav-links.is-open li:nth-child(5) a { transition-delay: 0.7s; }
.nav-links.is-open li:nth-child(6) a { transition-delay: 0.8s; }
.nav-links.is-open li:nth-child(7) a { transition-delay: 0.9s; }
.nav-links.is-open li:nth-child(8) a { transition-delay: 1.0s; }
.nav-links.is-open li:nth-child(9) a { transition-delay: 1.1s; }
.nav-links.is-open li:nth-child(10) a { transition-delay: 1.2s; }

.nav-links li a:hover,
.nav-links li a:focus {
  color: var(--white);
  transform: translateY(0) scale(1.03);
}

/* Hamburger toggle */

.nav-toggle {
  position: fixed;
  top: 1rem;
  right: 1rem;
  z-index: 220;
  display: flex;
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
  -webkit-appearance: none;
  appearance: none;
  cursor: pointer;
  padding: 0;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  transition: transform 0.2s ease;
}

.nav-toggle:hover {
  transform: scale(1.04);
}

.nav-toggle:focus-visible {
  outline: 2px solid var(--text);
  outline-offset: 2px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2.5px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease, background-color 0.2s ease;
}

/* Hamburger open state */

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

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

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-toggle[aria-expanded="true"] {
  background: transparent;
}

.nav-toggle[aria-expanded="true"] span {
  background: var(--text);
}

@media (max-width: 768px) {
  .nav-links {
    width: min(300px, 84vw);
    padding-top: 5rem;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .nav-links li a {
    font-size: clamp(1.45rem, 7vw, 2rem);
    line-height: 1.2;
    font-style: normal;
  }
}

@media (max-width: 480px) {
  .nav-links {
    width: min(280px, 86vw);
    padding-top: 4.75rem;
  }

  .nav-links li a {
    font-size: clamp(1.25rem, 7.2vw, 1.7rem);
    line-height: 1.22;
  }

  .nav-toggle {
    top: 0.75rem;
    right: 0.75rem;
    width: 44px;
    height: 44px;
  }
}

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

.site-footer {
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  padding: var(--space-lg) var(--space-md) var(--space-md);
  text-align: center;
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
}

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

.footer-socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  transition: color 0.2s ease;
  padding: 0.25rem;
}

.footer-socials a:hover,
.footer-socials a:focus {
  color: var(--ochre);
}

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

p.footer-photo-credit {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-style: italic;
  font-weight: 300;
  color: var(--text-light);
  margin: 0.3rem 0 0;
  letter-spacing: 0;
  text-transform: none;
}

.footer-link {
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--text-light);
  border-bottom: 1px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.footer-link:hover,
.footer-link:focus {
  color: var(--ochre);
  border-bottom-color: var(--ochre);
}

/* Footer brand mark (palomino horse) */
.footer-brand {
  margin-bottom: var(--space-sm);
}

.footer-brand img {
  height: 112px;
  width: auto;
  border-radius: 4px;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

@media (max-width: 768px) {
  .footer-brand img {
    height: 96px;
  }
}

.footer-brand img:hover {
  opacity: 1;
}

/* About page brand accent */
.about-brand-accent {
  margin: var(--space-md) 0;
  text-align: center;
}

.about-brand-accent img {
  height: 100px;
  width: auto;
  border-radius: 4px;
  opacity: 0.75;
}

/* Footer Spotify player */
.footer-spotify {
  width: 100%;
  max-width: 400px;
  background: var(--header-yellow);
  padding: 6px;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: var(--space-sm);
}

@media (max-width: 768px) {
  .footer-spotify {
    max-width: none;
  }
}

.footer-spotify iframe {
  display: block;
  width: 100%;
  border-radius: 8px;
}

/* Shift Spotify's default green UI toward the site's ochre header tone */
iframe[src*="open.spotify.com/embed"] {
  filter: hue-rotate(-96deg) saturate(0.8);
}

/* ===== HOMEPAGE COLLAGE ===== */

.home {
  position: relative;
  overflow: hidden;
  background-color: #F6F4F0; /* Cleaner, Kinfolk-inspired off-white */
  min-height: 100vh;
}

/* Texture layers (Subtle) */
.collage-bg {
  position: absolute;
  top: -5%; left: -5%; right: -5%; bottom: -5%;
  z-index: 0; pointer-events: none;
}
.collage-bg::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: url('../images/texture-stipple.png') repeat;
  background-size: 400px;
  opacity: 0.08;
  mix-blend-mode: multiply;
}

/* Giant background typography for the collage (Fat Serif) */
.collage-text-bg {
  position: absolute;
  top: 15%;
  left: 5%;
  font-family: var(--font-heading);
  font-size: 28vw;
  font-weight: 700;
  font-style: italic;
  color: var(--text);
  opacity: 0.05;
  line-height: 0.8;
  z-index: 1;
  pointer-events: none;
  letter-spacing: -0.02em;
}

.collage-text-fg {
  position: absolute;
  bottom: 5%;
  right: 5%;
  font-family: var(--font-heading);
  font-size: 12vw;
  font-weight: 600;
  color: var(--ochre);
  z-index: 1;
  pointer-events: none;
  opacity: 0.8;
  mix-blend-mode: multiply;
}

/* Geometric Color Blocks */
.color-block-1 {
  position: absolute;
  top: 10%; right: 15%;
  width: 35vw; height: 35vw;
  border-radius: 50%;
  background-color: #E24A36; /* Bold red/orange */
  z-index: 2;
  mix-blend-mode: multiply;
}

.color-block-2 {
  position: absolute;
  bottom: 10%; left: 10%;
  width: 40vw; height: 25vw;
  background-color: #5B8291; /* Moody blue */
  z-index: 2;
  mix-blend-mode: multiply;
  transform: rotate(-5deg);
}

.color-block-3 {
  position: absolute;
  top: 40%; left: 35%;
  width: 20vw; height: 40vw;
  background-color: #D4A843; /* Ochre yellow */
  z-index: 2;
  mix-blend-mode: multiply;
}


/* Main collage container */
.collage-canvas {
  position: relative;
  z-index: 5;
  width: 100%;
  max-width: 1400px;
  height: 120vh;
  min-height: 900px;
  margin: 0 auto;
  overflow: visible;
}

/* Base piece styling */
.collage-piece {
  position: absolute;
  display: block;
  text-decoration: none;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transform-origin: center center;
}

.collage-piece img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  /* Stronger monochrome editorial look */
  filter: grayscale(100%) contrast(1.2);
  transition: filter 0.4s ease;
}

/* Clickable piece hover */
a.collage-piece:hover {
  z-index: 30 !important;
}

a.collage-piece:hover img {
  filter: grayscale(0%) contrast(1.1);
}

a.collage-piece:hover .piece-label {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

/* Labels */
.piece-label {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.9);
  padding: 0;
  font-family: var(--font-heading);
  font-size: clamp(4rem, 12vw, 10rem);
  font-weight: 700;
  font-style: italic;
  letter-spacing: -0.02em;
  color: var(--white);
  background: transparent;
  /* Clean editorial drop-shadow instead of harsh outline */
  text-shadow: 0 15px 50px rgba(0,0,0,0.6), 0 4px 15px rgba(0,0,0,0.4);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  pointer-events: none;
  white-space: nowrap;
  z-index: 100;
}

/* Specific Piece Placements */

/* Painted Shape Accents (Now repurposed as textural elements) */
.piece-deco1 { top: 5%; left: 0%; width: 30%; height: 40%; z-index: 3; transform: rotate(-15deg); opacity: 0.6; mix-blend-mode: hard-light; }
.piece-deco2 { bottom: -5%; right: -5%; width: 40%; height: 50%; z-index: 3; transform: rotate(25deg); opacity: 0.6; mix-blend-mode: hard-light; }
.piece-deco3 { display: none; } /* Hide one to reduce clutter and focus on solid blocks */

/* Photos & Content */
.piece-hero { 
  top: 12%; right: 20%; 
  width: 32%; height: 48%; 
  z-index: 10; 
  transform: rotate(4deg);
  box-shadow: -15px 15px 0px rgba(0,0,0,0.9); /* Stark graphical shadow */
}

.piece-cairn { 
  bottom: 18%; left: 12%; 
  width: 30%; height: 35%; 
  z-index: 9; 
  transform: rotate(-6deg);
  border: 15px solid #fff;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.piece-child { 
  top: 15%; left: 15%; 
  width: 24%; height: 32%; 
  z-index: 8; 
  transform: rotate(-12deg);
  mix-blend-mode: multiply; /* Blend into the background like ink */
}

.piece-palo { 
  top: 45%; left: 50%; 
  transform: translate(-50%, -50%) scale(1.15); 
  width: 30%; height: auto;
  z-index: 9; 
  pointer-events: none;
}
.piece-palo img {
  object-fit: contain;
  filter: grayscale(100%) contrast(1.3) drop-shadow(0 20px 40px rgba(0,0,0,0.4)) !important;
  transform: scaleX(-1);
}
.piece-palo:hover img {
  filter: grayscale(0%) contrast(1.1) drop-shadow(0 20px 40px rgba(0,0,0,0.5)) !important;
  transform: scaleX(-1) scale(1.05);
}

.piece-live { 
  top: 50%; right: 12%; 
  width: 25%; height: 35%; 
  z-index: 7; 
  transform: rotate(-8deg);
  border-top: 40px solid var(--ochre); /* "Tape" or color block header */
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.piece-wood { 
  bottom: 25%; right: 28%; 
  width: 24%; height: 30%; 
  z-index: 11; 
  transform: rotate(12deg);
  padding: 10px;
  background: var(--text); /* Black polaroid frame */
}

.piece-guit { 
  top: 58%; left: 22%; 
  width: 20%; aspect-ratio: 1/1; 
  border-radius: 0; /* Changed from circle to sharp rectangle */
  z-index: 12; 
  transform: rotate(35deg);
  mix-blend-mode: color-burn;
  opacity: 0.9;
}

.piece-port { 
  top: 5%; left: 42%; 
  width: 20%; height: 28%; 
  z-index: 6; 
  transform: rotate(8deg);
  border-bottom: 30px solid #E24A36;
}

.piece-bw { 
  bottom: 8%; left: 42%; 
  width: 28%; height: 38%; 
  z-index: 8; 
  transform: rotate(-2deg);
}
.piece-bw img {
  -webkit-mask-image: url('../images/mask-rough-3.svg'); 
  mask-image: url('../images/mask-rough-3.svg');
  -webkit-mask-size: 100% 100%; 
  mask-size: 100% 100%;
}

.piece-farm { 
  top: 75%; left: -2%; 
  width: 22%; height: 28%; 
  z-index: 10; 
  transform: rotate(18deg);
  box-shadow: 12px 12px 0 var(--text);
}

.piece-pony { 
  bottom: 10%; right: 4%; 
  width: 26%; height: 35%; 
  z-index: 12; 
  transform: rotate(-15deg);
  /* Removed border to allow the mask to make it look like a cutout */
  overflow: visible;
}

.piece-pony img {
  object-fit: contain;
  transform: scale(1.8);
  filter: drop-shadow(0 4px 15px rgba(0,0,0,0.2));
}

/* Hover overrides for pieces so they pop out */
a.piece-hero:hover, a.piece-cairn:hover, a.piece-child:hover, 
a.piece-live:hover, a.piece-wood:hover, a.piece-port:hover, 
a.piece-bw:hover, a.piece-farm:hover, a.piece-pony:hover { 
  transform: rotate(0deg) scale(1.08) translateY(-10px); 
}

/* ===== ORGANIC STYLING MASKS ===== */
.piece-hero img { -webkit-mask-image: url('../images/mask-rough-1.svg'); mask-image: url('../images/mask-rough-1.svg'); -webkit-mask-size: 100% 100%; mask-size: 100% 100%; }
.piece-live img { -webkit-mask-image: url('../images/mask-rough-4.svg'); mask-image: url('../images/mask-rough-4.svg'); -webkit-mask-size: 100% 100%; mask-size: 100% 100%; }
.piece-farm img { -webkit-mask-image: url('../images/mask-rough-2.svg'); mask-image: url('../images/mask-rough-2.svg'); -webkit-mask-size: 100% 100%; mask-size: 100% 100%; }

/* ===== COLLAGE MOBILE FALLBACK ===== */

@media (max-width: 768px) {
  .home {
    min-height: auto;
    overflow-x: hidden;
  }

  .collage-bg,
  .collage-text-bg,
  .collage-text-fg,
  .color-block-1,
  .color-block-2,
  .color-block-3 {
    display: none;
  }

  .collage-canvas {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.55rem;
    padding: 0.7rem;
    width: 100%;
    max-width: 100%;
    height: auto;
    min-height: 0;
    overflow: visible;
  }

  .collage-piece {
    position: relative !important;
    top: auto !important;
    right: auto !important;
    bottom: auto !important;
    left: auto !important;
    transform: none !important;
    width: 100% !important;
    height: auto !important;
    grid-column: span 1;
    aspect-ratio: 16 / 10;
    border-radius: 0;
    overflow: hidden;
    border: 0 !important;
    padding: 0 !important;
    box-shadow: none !important;
    background: transparent !important;
    mix-blend-mode: normal !important;
  }

  .collage-piece img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(30%) contrast(1.05);
    -webkit-mask-image: none !important;
    mask-image: none !important;
  }

  .piece-deco1,
  .piece-deco2,
  .piece-deco3,
  .piece-guit,
  .piece-palo {
    display: none !important;
  }

  .piece-hero,
  .piece-live {
    aspect-ratio: 16 / 10;
  }

  .piece-hero {
    grid-column: 1 / -1;
    aspect-ratio: 16 / 9;
  }

  .piece-hero img {
    object-position: center 18%;
  }

  .piece-cairn {
    aspect-ratio: 4 / 5;
  }

  .piece-child {
    aspect-ratio: 4 / 5;
  }

  .piece-child img {
    object-fit: cover !important;
    object-position: center 48%;
    transform: scale(1.5);
    transform-origin: center;
  }

  .piece-live {
    grid-column: 1 / -1;
    aspect-ratio: 16 / 9;
  }

  .piece-wood {
    aspect-ratio: 16 / 10;
  }

  .piece-wood img {
    object-fit: cover !important;
    object-position: center 52%;
    transform: scale(1.34);
    transform-origin: center;
  }

  .piece-port {
    aspect-ratio: 16 / 10;
  }

  .piece-port img {
    object-position: center 36%;
  }

  .piece-bw {
    grid-column: 1 / -1;
    aspect-ratio: 16 / 9;
  }

  .piece-bw img {
    filter: none;
    object-position: center 24%;
  }

  .piece-farm {
    aspect-ratio: 3 / 2;
  }

  .piece-pony {
    grid-column: 1 / -1;
    aspect-ratio: 16 / 10;
    background: #f5c172 !important;
  }

  .piece-pony img {
    object-fit: contain;
    padding: 0.35rem;
    filter: none;
    transform: none !important;
  }

  .piece-pony .piece-label {
    color: var(--white);
  }

  .piece-label {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: auto;
    transform: none !important;
    padding: 0.44rem 0.45rem;
    font-size: clamp(0.95rem, 3.4vw, 1.14rem);
    font-style: normal;
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
    letter-spacing: 0.07em;
    line-height: 1.1;
    color: var(--white);
    text-shadow: none;
    background: linear-gradient(180deg, rgba(0,0,0,0.62) 0%, rgba(0,0,0,0.18) 70%, rgba(0,0,0,0) 100%);
    opacity: 1;
    z-index: 2;
    white-space: normal;
  }
}

@media (max-width: 380px) {
  .collage-canvas {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.45rem;
    padding: 0.55rem;
  }

  .collage-piece {
    grid-column: span 1;
    aspect-ratio: 3 / 2;
  }

  .piece-hero,
  .piece-live,
  .piece-bw {
    grid-column: 1 / -1;
    aspect-ratio: 16 / 10;
  }

  .piece-label {
    font-size: clamp(0.82rem, 3.8vw, 0.98rem);
    padding: 0.35rem 0.3rem;
  }
}

/* ===== MOBILE (max-width: 768px) ===== */

@media (max-width: 768px) {
  :root {
    --header-height: 100px;
  }

  .site-header {
    height: 100px;
  }

  .logo-img {
    height: 90px;
    transform: translate(1%, -10%);
  }
}

/* ===== INNER PAGES (shared) ===== */

.page {
  padding-top: 0;
  max-width: var(--max-width);
  margin: 0 auto;
  padding-left: var(--space-md);
  padding-right: var(--space-md);
}

.page-hero {
  padding: var(--space-xl) 0 var(--space-lg);
  text-align: center;
}

.page-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text);
}

/* Editorial Hero Quote */
.hero-quote {
  padding: var(--space-xl) var(--space-md) var(--space-lg);
  max-width: 900px;
  margin: 0 auto;
}

.hero-quote blockquote {
  position: relative;
}

.hero-quote p {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 600;
  font-style: italic;
  line-height: 1.2;
  color: var(--text);
  margin-bottom: var(--space-sm);
  letter-spacing: -0.01em;
}

.hero-quote cite {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ochre);
}

/* Inner pages responsive */

@media (max-width: 1100px) {
  .page-hero {
    padding: var(--space-lg) 0 var(--space-md);
  }
}

@media (max-width: 768px) {
  .page {
    padding-top: 0.4rem;
    padding-left: var(--space-sm);
    padding-right: var(--space-sm);
  }

  .page-hero {
    padding: 1.2rem 0 0.85rem;
  }
}

/* ===== ABOUT PAGE ===== */

.about-content {
  padding-bottom: var(--space-xl);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 0.65fr;
  gap: var(--space-lg);
  align-items: start;
}

.about-text p {
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: var(--space-md);
  color: var(--text);
}

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

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

.about-photo {
  margin: 0 0 var(--space-md);
}

.about-photo img {
  width: 100%;
  height: auto;
  border-radius: 4px;
  display: block;
}

.pull-quote {
  border-left: 4px solid var(--ochre);
  padding-left: var(--space-md);
  margin: var(--space-md) 0;
}

.pull-quote p {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.15rem;
  line-height: 1.6;
  color: var(--text);
  margin-bottom: var(--space-sm);
}

.pull-quote cite {
  font-family: var(--font-body);
  font-style: normal;
  font-size: 0.85rem;
  color: var(--text-light);
  letter-spacing: 0.03em;
}

/* Press quotes section */

.press-quotes {
  padding-bottom: var(--space-xl);
}

.press-quotes h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: var(--space-lg);
  color: var(--text);
}

.quotes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--space-md);
}

.quote-card {
  background: #F2F2EE;
  padding: var(--space-md);
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.quote-card p {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--text);
  margin-bottom: var(--space-sm);
}

.quote-card cite {
  font-family: var(--font-body);
  font-style: normal;
  font-size: 0.8rem;
  color: var(--text-light);
  letter-spacing: 0.03em;
  display: block;
}

/* About page responsive */

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

  .about-sidebar {
    position: static;
  }

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

/* ===== LYRICS PAGE ===== */

.lyrics-list {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 0 var(--space-xl);
}

.lyric-item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  margin-bottom: 0;
}

.lyric-item:last-child {
  border-bottom: none;
}

.lyric-toggle {
  display: flex;
  align-items: center;
  width: 100%;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: var(--space-md) var(--space-xs);
  text-align: left;
  gap: var(--space-sm);
  transition: background-color 0.2s ease;
}

.lyric-toggle:hover {
  background: rgba(0, 0, 0, 0.02);
}

.lyric-title {
  font-family: var(--font-heading);
  font-size: clamp(1.2rem, 2.5vw, 1.5rem);
  font-weight: 600;
  color: var(--text);
  flex: 1;
  min-width: 0;
}

.lyric-credits {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 300;
  color: var(--text-light);
  letter-spacing: 0.03em;
  flex: 1;
  text-align: center;
  display: none;
}

.toggle-icon {
  position: relative;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.toggle-icon::before,
.toggle-icon::after {
  content: '';
  position: absolute;
  background: var(--text-light);
  transition: transform 0.3s ease;
}

.toggle-icon::before {
  top: 50%;
  left: 2px;
  right: 2px;
  height: 1.5px;
  transform: translateY(-50%);
}

.toggle-icon::after {
  left: 50%;
  top: 2px;
  bottom: 2px;
  width: 1.5px;
  transform: translateX(-50%);
}

/* Rotate + to x when expanded */
.lyric-toggle[aria-expanded="true"] .toggle-icon::before {
  transform: translateY(-50%) rotate(45deg);
}

.lyric-toggle[aria-expanded="true"] .toggle-icon::after {
  transform: translateX(-50%) rotate(45deg);
}

.lyric-content {
  padding: 0 var(--space-xs) var(--space-md);
}

.lyric-text {
  white-space: pre-line;
  font-family: var(--font-heading);
  font-size: clamp(1.05rem, 2.4vw, 1.25rem);
  font-weight: 500;
  line-height: 1.8;
  color: var(--text);
}

.section-label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ochre);
  margin-top: var(--space-md);
  margin-bottom: var(--space-xs);
}

.lyric-text .section-label:first-child {
  margin-top: 0;
}

/* Lyrics page responsive */

@media (max-width: 768px) {
  .lyric-toggle {
    padding: var(--space-sm) var(--space-xs);
  }

  .lyric-content {
    padding: 0 var(--space-xs) var(--space-sm);
  }
}

/* ===== TOUR PAGE ===== */

.tour-page .tour-dates {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 0 var(--space-xl);
  text-align: center;
}

.bandsintown-embed {
  width: 100%;
  padding: var(--space-md) 0;
}

/* Bandsintown widget style overrides */
.bit-widget-initializer {
  display: block;
  width: 100%;
}

.bit-widget .bit-event {
  font-family: var(--font-body) !important;
}

.bit-widget .bit-event .bit-details {
  font-family: var(--font-body) !important;
}

.bit-widget .bit-event .bit-venue {
  font-family: var(--font-body) !important;
}

.bit-widget .bit-button,
.bit-widget .bit-rsvp,
.bit-widget .bit-offers a {
  font-family: var(--font-body) !important;
  font-size: 0.82rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.06em !important;
  text-transform: uppercase !important;
  border-radius: 4px !important;
  transition: opacity 0.2s ease !important;
}

.bit-widget .bit-button:hover,
.bit-widget .bit-rsvp:hover,
.bit-widget .bit-offers a:hover {
  opacity: 0.85 !important;
}

.bit-widget .bit-play-my-city {
  font-family: var(--font-body) !important;
}

/* Noscript fallback */
.tour-noscript {
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text);
  padding: var(--space-lg) 0;
}

.tour-noscript a {
  color: var(--ochre);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s ease;
}

.tour-noscript a:hover,
.tour-noscript a:focus {
  color: var(--orange);
}

/* Tour page responsive */

@media (max-width: 768px) {
  .tour-page .tour-dates {
    padding: 0 0 var(--space-lg);
  }

  .bandsintown-embed {
    padding: var(--space-sm) 0;
  }
}

/* ===== LISTEN PAGE ===== */

.listen-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 0 var(--space-xl);
  text-align: center;
}

.spotify-embed {
  background: var(--header-yellow);
  padding: 6px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  margin-bottom: var(--space-lg);
}

.spotify-embed iframe {
  display: block;
  width: 100%;
  border-radius: 8px;
}

.streaming-links {
  padding-top: var(--space-md);
}

.streaming-links h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: var(--space-md);
}

.streaming-grid {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  justify-content: center;
}

.streaming-link {
  display: inline-block;
  padding: 0.6rem 1.6rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--text);
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 50px;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.streaming-link:hover,
.streaming-link:focus {
  background: var(--ochre);
  color: var(--white);
  border-color: var(--ochre);
}

/* Twang Factor badge & press links */

.twang-factor-win,
.epk-twang-factor {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ochre);
  text-align: center;
  margin-top: var(--space-md);
  padding-top: var(--space-sm);
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.twang-factor-win a,
.epk-twang-factor a {
  color: var(--ochre);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s ease;
}

.twang-factor-win a:hover,
.epk-twang-factor a:hover {
  color: var(--orange);
}

.epk-press-link {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 400;
  text-align: center;
  margin-top: var(--space-xs);
}

.epk-press-link a {
  color: var(--text-light);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s ease;
}

.epk-press-link a:hover {
  color: var(--ochre);
}

/* ===== VIDEO PAGE ===== */

.video-featured {
  width: 100%;
  margin-bottom: var(--space-xl);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.video-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
  padding: 0 0 var(--space-xl);
}

.video-card {
  border-radius: 8px;
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}

.video-card:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.video-embed {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 aspect ratio */
  background: #F2F2EE;
}

.video-embed iframe,
.video-embed .video-placeholder {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.video-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px dashed rgba(0, 0, 0, 0.15);
  border-radius: 8px;
}

.video-placeholder p {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--text-light);
  font-style: italic;
}

.video-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  padding: var(--space-sm) var(--space-xs);
  color: var(--text);
}

@media (min-width: 769px) {
  .video-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ===== GALLERY PAGE ===== */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--space-md);
  padding: 0 0 var(--space-xl);
}

.gallery-item {
  display: block;
  text-decoration: none;
  margin: 0;
  overflow: hidden;
  border-radius: 6px;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
  border-radius: 6px;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.04);
}

/* Gallery responsive */

@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-sm);
  }

  .gallery-item img {
    height: 180px;
  }
}

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

  .gallery-item img {
    height: 220px;
  }
}

/* ===== CONTACT PAGE ===== */

.contact-content {
  padding: 0 0 var(--space-xl);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  align-items: start;
}

.contact-info h2,
.contact-mailing h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3vw, 2rem);
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: var(--space-sm);
}

.contact-info p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text);
  margin-bottom: var(--space-sm);
}

.contact-info h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text);
  margin-top: var(--space-md);
  margin-bottom: var(--space-sm);
}

.contact-email {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--text);
  text-decoration: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  padding-bottom: 2px;
  transition: color 0.2s ease, border-color 0.2s ease;
  margin-bottom: var(--space-sm);
}

.contact-email:hover,
.contact-email:focus {
  color: var(--ochre);
  border-bottom-color: var(--ochre);
}

.contact-socials {
  display: flex;
  gap: var(--space-sm);
  align-items: center;
  margin-bottom: var(--space-sm);
}

.contact-socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  transition: color 0.2s ease;
  padding: 0.25rem;
}

.contact-socials a:hover,
.contact-socials a:focus {
  color: var(--ochre);
}

.contact-linktree a {
  color: var(--text-light);
  text-decoration: none;
  font-size: 0.95rem;
  border-bottom: 1px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.contact-linktree a:hover,
.contact-linktree a:focus {
  color: var(--ochre);
  border-bottom-color: var(--ochre);
}

.contact-mailing p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text);
  margin-bottom: var(--space-md);
}

.mailing-form {
  display: flex;
  gap: var(--space-xs);
}

.mailing-form input[type="email"] {
  flex: 1;
  padding: 0.75rem 1rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 4px;
  background: var(--white);
  color: var(--text);
  outline: none;
  transition: border-color 0.2s ease;
}

.mailing-form input[type="email"]:focus {
  border-color: var(--ochre);
}

.mailing-form button {
  padding: 0.75rem 1.5rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--ochre);
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.mailing-form button:hover {
  opacity: 0.85;
}

/* Contact page responsive */

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

/* ===== MERCH PAGE ===== */

.merch-content {
  text-align: center;
  padding: var(--space-lg) 0 var(--space-xl);
  max-width: 600px;
  margin: 0 auto;
}

.coming-soon-message {
  font-family: var(--font-heading);
  font-size: clamp(1.2rem, 2.5vw, 1.5rem);
  font-weight: 400;
  line-height: 1.7;
  color: var(--text);
  font-style: italic;
}

.coming-soon-message a {
  color: var(--ochre);
  text-decoration: none;
  border-bottom: 1px solid var(--ochre);
  transition: color 0.2s ease, border-color 0.2s ease;
}

.coming-soon-message a:hover,
.coming-soon-message a:focus {
  color: var(--orange);
  border-bottom-color: var(--orange);
}

/* ===== EPK PAGE ===== */

.epk-page {
  padding-top: var(--header-height);
}

/* EPK section labels */

.epk-label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: var(--space-md);
}

/* EPK sections shared spacing */

.epk-section {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: var(--space-lg) var(--space-md);
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

/* Hero */

.epk-hero {
  text-align: center;
  padding: var(--space-xl) var(--space-md) var(--space-lg);
  max-width: var(--max-width);
  margin: 0 auto;
}

.epk-hero-name {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 7vw, 5rem);
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text);
  line-height: 1.1;
  margin-bottom: var(--space-xs);
}

.epk-hero-subtitle {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 300;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: var(--space-lg);
}

.epk-hero-image {
  max-width: 800px;
  margin: 0 auto;
}

.epk-hero-image img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 4px;
  display: block;
  /* Placeholder styling - remove when real image added */
  background: #F2F2EE;
  border: 2px dashed rgba(0, 0, 0, 0.12);
}

/* Bio */

.epk-bio {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.epk-bio .epk-label {
  width: 100%;
  max-width: 800px;
}

.epk-bio-text {
  max-width: 800px;
  width: 100%;
}

.epk-bio-text p {
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--text);
  margin-bottom: var(--space-md);
}

.epk-bio-text p:last-child {
  margin-bottom: 0;
}

/* Press Quotes */

.epk-quotes {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.epk-quotes .epk-label {
  width: 100%;
  max-width: 900px;
}

.epk-quotes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  max-width: 900px;
  width: 100%;
  align-items: start;
}

.epk-quote {
  padding: var(--space-md);
  border-radius: 6px;
  background: #F2F2EE;
}

.epk-quote p {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--text);
  margin-bottom: var(--space-xs);
}

.epk-quote cite {
  font-family: var(--font-body);
  font-style: normal;
  font-size: 0.78rem;
  font-weight: 400;
  color: var(--text-light);
  letter-spacing: 0.03em;
  display: block;
}

/* Hero quote - larger, spans full width */

.epk-quote--hero {
  grid-column: 1 / -1;
  text-align: center;
  background: transparent;
  padding: var(--space-md) var(--space-lg);
}

.epk-quote--hero p {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 600;
  font-style: italic;
  color: var(--ochre);
  line-height: 1.2;
  margin-bottom: var(--space-xs);
}

.epk-quote--hero cite {
  font-size: 0.85rem;
}

/* Listen */

.epk-listen {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.epk-listen .epk-label {
  width: 100%;
  max-width: 600px;
}

.epk-listen-embed {
  max-width: 600px;
  width: 100%;
  background: var(--header-yellow);
  padding: 6px;
  border-radius: 12px;
  overflow: hidden;
}

.epk-listen-embed iframe {
  display: block;
}

/* Watch */

.epk-watch {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.epk-watch .epk-label {
  width: 100%;
  max-width: 700px;
}

.epk-watch-embed {
  max-width: 700px;
  width: 100%;
}

.epk-video-wrapper {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 */
  border-radius: 8px;
  overflow: hidden;
  background: #F2F2EE;
}

.epk-video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Press Photos */

.epk-photos {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.epk-photos .epk-label {
  width: 100%;
  max-width: 900px;
}

.epk-photos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  max-width: 900px;
  width: 100%;
}

.epk-photo-item {
  margin: 0;
}

.epk-photo-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 4px;
  display: block;
  /* Placeholder styling */
  background: #F2F2EE;
  border: 2px dashed rgba(0, 0, 0, 0.12);
}

.epk-photo-item figcaption {
  padding-top: var(--space-xs);
  text-align: center;
}

.epk-download-link {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--text-light);
  border-bottom: 1px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.epk-download-link:hover,
.epk-download-link:focus {
  color: var(--ochre);
  border-bottom-color: var(--ochre);
}

/* Contact */

.epk-contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-bottom: var(--space-xl);
}

.epk-email {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--text);
  text-decoration: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  padding-bottom: 2px;
  margin-bottom: var(--space-md);
  transition: color 0.2s ease, border-color 0.2s ease;
}

.epk-email:hover,
.epk-email:focus {
  color: var(--ochre);
  border-bottom-color: var(--ochre);
}

.epk-socials {
  display: flex;
  gap: var(--space-sm);
  align-items: center;
  justify-content: center;
}

.epk-socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  transition: color 0.2s ease;
  padding: 0.25rem;
}

.epk-socials a:hover,
.epk-socials a:focus {
  color: var(--ochre);
}

/* EPK responsive */

@media (max-width: 768px) {
  .epk-hero {
    padding: var(--space-lg) var(--space-md) var(--space-md);
  }

  .epk-hero-name {
    font-size: clamp(2rem, 8vw, 3rem);
  }

  .epk-section {
    padding: var(--space-md) var(--space-md);
  }

  .epk-quotes-grid {
    grid-template-columns: 1fr;
    gap: var(--space-sm);
  }

  .epk-quote--hero {
    padding: var(--space-sm) 0;
  }

  .epk-quote--hero p {
    font-size: clamp(1.6rem, 6vw, 2.4rem);
  }

  .epk-photos-grid {
    grid-template-columns: 1fr;
  }

  .epk-photo-item img {
    height: 200px;
  }
}

/* EPK download button */

.epk-download-bar {
  text-align: right;
  padding: var(--space-sm) var(--space-md);
  max-width: var(--max-width);
  margin: 0 auto;
}

.epk-pdf-btn {
  display: inline-block;
  padding: 0.6rem 1.6rem;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--ochre);
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.epk-pdf-btn:hover {
  opacity: 0.85;
}

/* ===== WIDE SCREENS (min-width: 1200px) ===== */

@media (min-width: 1200px) {
  .gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  }

  .gallery-item img {
    height: 320px;
  }

  .epk-photos-grid {
    gap: var(--space-lg);
  }

  .epk-photo-item img {
    height: 260px;
  }
}

/* ===== FADE-IN ANIMATIONS ===== */

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered delays for grid children */
.fade-in.stagger-1 { transition-delay: 0.1s; }
.fade-in.stagger-2 { transition-delay: 0.2s; }
.fade-in.stagger-3 { transition-delay: 0.3s; }
.fade-in.stagger-4 { transition-delay: 0.4s; }

/* Respect prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
  .fade-in {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ===== BRAND LETTERPRESS TEXTURES & ABSTRACT BACKGROUNDS ===== */

body {
  /* Set a nice warm paper base for the inner pages */
  background-color: #F6F4F0;
}

/* Base setup for texture layers */
.page::before,
.epk-page::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  pointer-events: none;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  opacity: 0.35;
  mix-blend-mode: multiply;
  transition: opacity 0.5s ease;
}

/* Specific page textures (Abstract Painted Canvas) */

.tour-page .page::before {
  background-image: url('../images/puri-GaW8HROqgoY-unsplash.jpg');
  opacity: 0.25;
}

.about-page .page::before {
  background-image: url('../images/puri-9RvRhDBGobA-unsplash.jpg');
  opacity: 0.4;
}

.lyrics-page .page::before {
  background-image: url('../images/puri-9VPKEVYc3Ik-unsplash.jpg');
  opacity: 0.3;
}

.listen-page .page::before,
.video-page .page::before {
  background-image: url('../images/puri-8oO7vkFC1Tw-unsplash.jpg');
  opacity: 0.2;
}

.gallery-page .page::before,
.merch-page .page::before {
  background-image: url('../images/puri-U3QMyn5F4AE-unsplash.jpg');
  opacity: 0.3;
}

.contact-page .page::before {
  background-image: url('../images/puri-V3ESV0iYnlA-unsplash.jpg');
  opacity: 0.25;
}

.epk-page::before {
  background-image: url('../images/puri-jzNOxyJ5blo-unsplash.jpg');
  opacity: 0.25;
}

/* Stipple grain over the top of everything for cohesion */
body::after {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('../images/texture-stipple.png') repeat;
  background-size: 400px;
  mix-blend-mode: multiply;
  opacity: 0.08;
  pointer-events: none;
  z-index: 1000;
}

/* Print-only fallback text (hidden on screen) */
.epk-print-only {
  display: none;
}

/* ===== PRINT STYLESHEET (EPK) ===== */

@media print {
  /* Ensure fade-in elements are visible in print */
  .fade-in {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  /* Hide non-printable elements */
  .site-header,
  .site-footer,
  .epk-download-bar,
  .epk-listen-embed,
  .epk-watch-embed,
  .nav-toggle {
    display: none !important;
  }

  /* Show print-only fallback URLs */
  .epk-print-only {
    display: block !important;
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: #666;
    margin-top: 0.5rem;
  }

  /* Reset page layout */
  .epk-page {
    padding-top: 0;
  }

  .epk-hero {
    padding: 1rem 0 0.5rem;
  }

  .epk-hero-name {
    font-size: 2.4rem;
  }

  .epk-hero-subtitle {
    font-size: 0.9rem;
  }

  .epk-hero-image {
    max-width: 500px;
    margin: 1rem auto;
  }

  .epk-section {
    padding: 0.8rem 0;
    border-top: 1px solid #ccc;
  }

  .epk-label {
    font-size: 0.6rem;
    margin-bottom: 0.4rem;
  }

  .epk-bio-text p {
    font-size: 0.85rem;
    line-height: 1.5;
    margin-bottom: 0.5rem;
  }

  /* Compact quotes for print */
  .epk-quotes-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
  }

  .epk-quote--hero p {
    font-size: 1.6rem;
  }

  .epk-quote p {
    font-size: 0.8rem;
    line-height: 1.4;
  }

  .epk-quote cite {
    font-size: 0.65rem;
  }

  /* Photos grid tighter */
  .epk-photos-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
  }

  .epk-photo-item img {
    height: 140px;
  }

  .epk-download-link {
    display: none;
  }

  /* Contact compact */
  .epk-email {
    font-size: 0.9rem;
  }

  .epk-socials {
    gap: 0.5rem;
  }

  /* Links show URLs */
  .epk-twang-factor a::after,
  .epk-press-link a::after {
    content: " (" attr(href) ")";
    font-size: 0.65rem;
    color: #999;
  }

  /* Avoid page breaks inside sections */
  .epk-section {
    break-inside: avoid;
  }

  .epk-hero {
    break-after: avoid;
  }
}
