/* ==========================================================================
   CAFE MRP — Custom Style Sheet (Brutalist Party Pub Theme)
   Palette: obsidian, slate, neon yellow, hot rose
   ========================================================================== */

:root {
  --bg-primary: #09090b;
  --bg-secondary: #121217;
  --bg-card: #16161f;
  --accent-yellow: #facc15;
  --accent-rose: #f43f5e;
  --text-primary: #f4f4f5;
  --text-secondary: #a1a1aa;
  --text-muted: #71717a;
  --border-color: #27272a;
  
  --font-display: 'Staatliches', sans-serif;
  --font-body: 'Space Grotesk', sans-serif;
  
  --radius: 4px; /* Brutalist sharp corners preferred */
  --transition: 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-primary);
  color: var(--text-primary);
}

body {
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Focus indicator for keyboard navigators */
button:focus-visible, a:focus-visible {
  outline: 3px solid var(--accent-yellow);
  outline-offset: 4px;
}

/* ---- BRUTALIST GIG HERO ---- */
.gig-hero {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 350px 1fr;
  border-bottom: 2px solid var(--border-color);
}

/* Left side gig poster column */
.lineup-column {
  background-color: var(--bg-secondary);
  border-right: 2px solid var(--border-color);
  padding: 2.5rem 1.5rem;
  display: flex;
  flex-direction: column;
}

.lineup-banner {
  background-color: var(--accent-yellow);
  color: #000;
  font-family: var(--font-display);
  font-size: 1.3rem;
  text-align: center;
  padding: 0.5rem;
  margin-bottom: 2.5rem;
  letter-spacing: 2px;
  transform: rotate(-1.5deg);
}

.lineup-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.lineup-list li {
  border-bottom: 1px dashed var(--border-color);
  padding-bottom: 0.8rem;
}

.lineup-list .day {
  display: inline-block;
  background-color: var(--accent-rose);
  color: #fff;
  font-family: var(--font-display);
  font-size: 0.85rem;
  padding: 0.2rem 0.6rem;
  letter-spacing: 1px;
  margin-right: 0.5rem;
}

.lineup-list .event {
  display: block;
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: 1px;
  margin-top: 0.5rem;
  color: var(--text-primary);
}

/* Right side main hero details */
.hero-main {
  padding: 5rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

.hero-main::before {
  content: '';
  position: absolute;
  top: 10%; right: 10%;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(244,63,94,0.08) 0%, transparent 70%);
  z-index: 0;
  pointer-events: none;
}

.hero-bottle {
  position: absolute;
  right: 2%;
  top: 50%;
  height: clamp(500px, 90vh, 1000px);
  z-index: 0; /* Behind the text but over the background */
  opacity: 0.85;
  transform-origin: center center;
  animation: float-bottle 5s ease-in-out infinite;
  mix-blend-mode: screen; /* Removes the black background */
  pointer-events: none;
}

@keyframes float-bottle {
  0% { transform: translateY(-50%) rotate(-5deg); }
  50% { transform: translateY(calc(-50% - 30px)) rotate(-2deg); }
  100% { transform: translateY(-50%) rotate(-5deg); }
}

.location-badge {
  color: var(--accent-yellow);
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 2px;
  margin-bottom: 1rem;
  z-index: 1;
}

.main-title {
  font-family: var(--font-display);
  font-size: clamp(4rem, 10vw, 8rem);
  line-height: 0.85;
  letter-spacing: -2px;
  margin-bottom: 1rem;
  z-index: 1;
}

.main-title span {
  color: transparent;
  -webkit-text-stroke: 2px var(--text-primary);
}

.tagline {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--accent-rose);
  letter-spacing: 1.5px;
  margin-bottom: 1.5rem;
  z-index: 1;
}

.hero-desc {
  max-width: 620px;
  color: var(--text-secondary);
  font-size: 1.05rem;
  margin-bottom: 2.5rem;
  z-index: 1;
}

.hero-desc .terms {
  display: block;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 0.8rem;
}

.hero-actions {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 3.5rem;
  flex-wrap: wrap;
  z-index: 1;
}

/* Ticket Style Button */
.btn-ticket {
  display: inline-flex;
  align-items: center;
  background-color: var(--accent-yellow);
  color: #000;
  font-family: var(--font-display);
  font-size: 1.2rem;
  letter-spacing: 1.5px;
  text-decoration: none;
  padding: 0.8rem 2rem;
  position: relative;
  transition: var(--transition);
  border: none;
}

.btn-ticket:hover {
  background-color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 0 var(--accent-rose);
}

.ticket-stub {
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%) translateX(-50%);
  width: 12px; height: 12px;
  background-color: var(--bg-primary);
  border-radius: 50%;
}

.btn-hollow {
  display: inline-flex;
  align-items: center;
  border: 2px solid var(--text-primary);
  color: var(--text-primary);
  font-family: var(--font-display);
  font-size: 1.2rem;
  letter-spacing: 1.5px;
  text-decoration: none;
  padding: 0.8rem 2rem;
  transition: var(--transition);
}

.btn-hollow:hover {
  background-color: rgba(255,255,255,0.06);
  border-color: var(--accent-yellow);
  color: var(--accent-yellow);
}

.hero-ratings {
  display: flex;
  gap: 3rem;
  z-index: 1;
}

.rating-stat {
  display: flex;
  flex-direction: column;
}

.rating-stat .number {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--text-primary);
  line-height: 1;
}

.rating-stat .label {
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 1px;
  margin-top: 0.3rem;
}

/* ---- TICKER (ACCESSIBLE MARQUEE) ---- */
.marquee-wrapper {
  background-color: var(--bg-secondary);
  border-top: 2px solid var(--border-color);
  border-bottom: 2px solid var(--border-color);
  padding: 1rem 0;
  overflow: hidden;
  position: relative;
}

.marquee-content {
  display: inline-block;
  white-space: nowrap;
  animation: marquee-spin 25s infinite linear;
}

.marquee-content span {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 3px;
  color: var(--accent-yellow);
}

@keyframes marquee-spin {
  0% { transform: translateX(0%); }
  100% { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .marquee-content {
    animation-duration: 60s;
  }
}

/* ---- ESTIMATOR SECTION ---- */
.estimator-section {
  padding: 6rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.brutal-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  letter-spacing: 1px;
  margin-bottom: 1rem;
}

.section-desc {
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.05rem;
}

.calculator-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  align-items: start;
}

.calc-panel {
  background-color: var(--bg-secondary);
  border: 2px solid var(--border-color);
  padding: 2.5rem;
}

.calc-panel h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: 1.5px;
  margin-bottom: 2rem;
  border-bottom: 2px solid var(--border-color);
  padding-bottom: 0.5rem;
}

.calc-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 0;
  border-bottom: 1px solid var(--border-color);
}

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

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

.item-name {
  font-weight: bold;
  font-size: 1.05rem;
  color: var(--text-primary);
}

.item-meta {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.item-controls {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.btn-qty {
  width: 32px; height: 32px;
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  color: var(--text-primary);
  font-size: 1.2rem;
  font-weight: bold;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.btn-qty:hover {
  background-color: var(--accent-yellow);
  color: #000;
  border-color: var(--accent-yellow);
}

.item-qty {
  font-family: var(--font-display);
  font-size: 1.5rem;
  width: 20px;
  text-align: center;
}

/* Simulated Receipt Card */
.receipt-panel {
  position: sticky;
  top: 100px;
}

.receipt-card {
  background-color: #fcfcf9;
  color: #121212;
  border: 2px solid #e5e5e0;
  padding: 2.5rem;
  position: relative;
}

/* jagged receipt bottom edge styling */
.receipt-card::after {
  content: '';
  position: absolute;
  bottom: -10px; left: 0; right: 0;
  height: 10px;
  background: radial-gradient(circle, transparent, transparent 50%, #fcfcf9 50%, #fcfcf9 100%),
              radial-gradient(circle, transparent, transparent 50%, #fcfcf9 50%, #fcfcf9 100%);
  background-size: 20px 20px;
  background-position: 0 0, 10px 0;
}

.receipt-header {
  text-align: center;
  margin-bottom: 2rem;
}

.receipt-header h4 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 2px;
}

.receipt-header p {
  font-size: 0.75rem;
  color: #666;
  letter-spacing: 1px;
}

.dash-line {
  border-top: 2px dashed #999;
  margin: 1.2rem 0;
}

.receipt-body {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.bill-line {
  display: flex;
  justify-content: space-between;
  font-size: 0.95rem;
}

.bill-line.subtotal {
  font-weight: bold;
}

.bill-line.tax {
  font-size: 0.85rem;
  color: #555;
}

.total-highlight {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 1px;
  padding: 0.4rem 0.8rem;
}

.total-highlight.accent-yellow {
  background-color: var(--accent-yellow);
  color: #000;
}

.total-highlight.cp-danger {
  background-color: #fee2e2;
  color: #b91c1c;
  margin-top: 0.5rem;
}

.savings-badge {
  background-color: #d1fae5;
  border: 1px solid #10b981;
  padding: 1rem;
  text-align: center;
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
}

.save-label {
  font-size: 0.75rem;
  color: #065f46;
  font-weight: bold;
  letter-spacing: 1px;
}

.save-val {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: #047857;
  line-height: 1.1;
}

.receipt-footer {
  margin-top: 2.5rem;
  text-align: center;
}

.receipt-footer p {
  font-size: 0.7rem;
  color: #777;
  line-height: 1.4;
  margin-bottom: 1.5rem;
}

.btn-book-party {
  display: block;
  background-color: #121212;
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.2rem;
  letter-spacing: 2px;
  text-decoration: none;
  padding: 0.8rem;
  transition: var(--transition);
}

.btn-book-party:hover {
  background-color: var(--accent-rose);
  color: #fff;
}

/* ---- CHALKBOARD MENU ---- */
.menu-section {
  background-color: var(--bg-secondary);
  border-top: 2px solid var(--border-color);
  border-bottom: 2px solid var(--border-color);
  padding: 6rem 2rem;
}

.section-tag {
  color: var(--accent-rose);
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 2px;
  display: block;
  margin-bottom: 0.5rem;
}

.menu-tabs {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3.5rem;
  flex-wrap: wrap;
}

.tab-btn {
  background-color: var(--bg-primary);
  color: var(--text-secondary);
  border: 1px solid var(--border-color);
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 1px;
  padding: 0.6rem 1.8rem;
  cursor: pointer;
  transition: var(--transition);
}

.tab-btn:hover, .tab-btn.active {
  background-color: var(--accent-yellow);
  color: #000;
  border-color: var(--accent-yellow);
}

.menu-panel {
  display: none;
  max-width: 1100px;
  margin: 0 auto;
}

.menu-panel.active {
  display: block;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.menu-item-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  padding: 2rem;
  position: relative;
}

.menu-item-card:hover {
  border-color: var(--accent-rose);
}

.item-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 0.8rem;
}

.item-head h4 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  letter-spacing: 1px;
}

.item-head .price {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--accent-yellow);
}

.menu-item-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.size-badge {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: bold;
  color: var(--text-muted);
  border: 1px solid var(--border-color);
  padding: 0.1rem 0.4rem;
  margin-top: 1rem;
}

/* ---- THE DUAL VIBE STORY ---- */
.vibe-section {
  padding: 6rem 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.vibe-grid-layout {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  align-items: center;
}

.vibe-text {
  text-align: center;
  max-width: 800px;
}

.vibe-text h2 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 0.95;
  margin: 1rem 0 2rem;
}

.vibe-text p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  margin-bottom: 2.5rem;
}

.vibe-features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.vibe-badge {
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-color);
  padding: 0.6rem 1.2rem;
  font-size: 0.85rem;
  font-weight: 500;
}

/* Polaroid Photo Wall */
.photo-wall {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  width: 100%;
  margin-top: 2rem;
}

.rope-line {
  position: relative;
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  padding-top: 2rem; /* Space for the rope and clips */
  width: 100%;
}

.rope {
  position: absolute;
  top: 15px;
  left: -5%;
  width: 110%;
  border-top: 3px solid #8b7355; /* The thick string */
  box-shadow: 0 2px 4px rgba(0,0,0,0.3);
  z-index: 0;
}

.polaroid-frame {
  position: relative;
  background-color: #fff;
  padding: 0.5rem 0.5rem 2rem;
  border: 1px solid #ddd;
  box-shadow: 0 10px 20px rgba(0,0,0,0.3);
  width: 300px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  z-index: 1;
}

/* The Clip holding the photo to the rope */
.polaroid-frame::after {
  content: '';
  position: absolute;
  top: -15px; /* Reaches the rope */
  left: 50%;
  transform: translateX(-50%);
  width: 15px;
  height: 25px;
  background: #333;
  border-radius: 4px;
  box-shadow: inset 0 0 5px rgba(255,255,255,0.2), 0 3px 5px rgba(0,0,0,0.4);
  z-index: 5;
}

.polaroid-frame:hover {
  transform: scale(1.05) translateY(-5px) !important;
  box-shadow: 0 15px 30px rgba(0,0,0,0.5);
  z-index: 10;
}

.polaroid-frame img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.polaroid-label {
  display: block;
  font-family: var(--font-display);
  color: #121212;
  font-size: 1.1rem;
  text-align: center;
  margin-top: 1rem;
}

/* Subtle rotations for the scattered effect without overlap */
.polaroid-frame:nth-child(even) {
  transform: rotate(2deg);
}
.polaroid-frame:nth-child(odd) {
  transform: rotate(-2deg);
}
.polaroid-frame:nth-child(3n) {
  transform: rotate(3deg);
}
.polaroid-frame:nth-child(4n) {
  transform: rotate(-1deg);
}

/* ---- COORDINATES DOCKING SECTION ---- */
.coordinates-section {
  background-color: var(--bg-secondary);
  border-top: 2px solid var(--border-color);
  padding: 6rem 2rem;
}

.coords-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.coords-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.coord-row {
  display: flex;
  flex-direction: column;
  border-left: 2px solid var(--accent-rose);
  padding-left: 1.2rem;
}

.coord-row .label {
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: var(--accent-yellow);
  letter-spacing: 1px;
}

.coord-row .val {
  font-size: 1.05rem;
  color: var(--text-primary);
  margin-top: 0.2rem;
}

.coord-row .val a {
  color: var(--text-primary);
  text-decoration: none;
  font-weight: bold;
}

.coord-row .val a:hover {
  color: var(--accent-yellow);
}

.btn-maps {
  display: inline-block;
  align-self: flex-start;
  background-color: var(--accent-rose);
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.2rem;
  letter-spacing: 1px;
  text-decoration: none;
  padding: 0.8rem 2rem;
  transition: var(--transition);
  margin-top: 1rem;
}

.btn-maps:hover {
  background-color: #fff;
  color: #000;
}

/* Simulated Radar Map Screen */
.coords-map {
  background-color: #050508;
  border: 2px solid var(--border-color);
  aspect-ratio: 16/10;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.coords-map::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(18, 18, 23, 0.5) 1px, transparent 1px),
    linear-gradient(90deg, rgba(18, 18, 23, 0.5) 1px, transparent 1px);
  background-size: 20px 20px;
}

.map-placeholder {
  position: relative;
  text-align: center;
  z-index: 1;
}

.map-radar {
  width: 120px; height: 120px;
  border: 2px solid var(--accent-rose);
  border-radius: 50%;
  margin: 0 auto 1.5rem;
  position: relative;
}

.map-radar::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 8px; height: 8px;
  background-color: var(--accent-yellow);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 10px var(--accent-yellow);
}

.map-radar::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(244,63,94,0.3);
  border-radius: 50%;
  animation: radar-pulse 3s infinite linear;
}

@keyframes radar-pulse {
  0% { transform: scale(0.2); opacity: 1; }
  100% { transform: scale(1.1); opacity: 0; }
}

.map-text {
  display: block;
  font-family: var(--font-display);
  font-size: 1.3rem;
  letter-spacing: 1px;
  color: var(--text-primary);
}

.coordinates-text {
  font-size: 0.8rem;
  color: var(--text-muted);
  letter-spacing: 1px;
  display: block;
  margin-top: 0.3rem;
}

/* ---- FLOATING YOM GUPTA BADGE ---- */
.yom-gupta-badge {
  position: fixed;
  bottom: 20px; right: 20px;
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  padding: 0.5rem 1rem;
  font-size: 0.75rem;
  color: var(--text-secondary);
  text-decoration: none;
  z-index: 9999;
  font-weight: 500;
  box-shadow: 0 4px 12px rgba(0,0,0,0.5);
  transition: var(--transition);
}

.yom-gupta-badge span {
  color: var(--accent-yellow);
  font-weight: bold;
}

.yom-gupta-badge:hover {
  border-color: var(--accent-yellow);
  transform: translateY(-2px);
}

/* ---- FIELD NOTES (REAL REVIEWS) ---- */
.field-notes-section {
  padding: 6rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.notes-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.note-card {
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-left: 4px solid var(--accent-rose);
  padding: 2rem;
  font-style: italic;
}

.note-card p {
  color: var(--text-primary);
  font-size: 1.05rem;
  margin-bottom: 1rem;
}

.note-card cite {
  display: block;
  font-family: var(--font-display);
  font-size: 0.9rem;
  color: var(--accent-yellow);
  letter-spacing: 1px;
  font-style: normal;
}

/* ---- OUTPOST SPECIFICATIONS ---- */
.specs-section {
  background-color: var(--bg-secondary);
  border-top: 2px solid var(--border-color);
  border-bottom: 2px solid var(--border-color);
  padding: 6rem 2rem;
}

.specs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.specs-card {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  padding: 2rem;
}

.specs-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--accent-yellow);
  margin-bottom: 1.2rem;
  letter-spacing: 1px;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 0.5rem;
}

.specs-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.specs-list li {
  font-size: 0.95rem;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.status-yes {
  color: #10b981;
  font-weight: bold;
}

.status-no {
  color: #ef4444;
  font-weight: bold;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .gig-hero {
    grid-template-columns: 1fr;
  }
  .lineup-column {
    border-right: none;
    border-bottom: 2px solid var(--border-color);
    padding: 2rem;
  }
  .calculator-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .receipt-panel {
    position: static;
  }
  .specs-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .hero-main {
    padding: 3rem 1.5rem;
  }
  .main-title {
    font-size: 4rem;
  }
  .menu-grid {
    grid-template-columns: 1fr;
  }
  .vibe-grid-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .polaroid-frame {
    width: 240px;
  }
  .polaroid-frame img {
    height: 200px;
  }
  .rope-line {
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  .rope {
    display: none; /* Hide rope on mobile as it might not span correctly with wrapping items */
  }
  .polaroid-frame::after {
    display: none; /* Hide clips on mobile if rope is hidden */
  }
  .coords-container {
    grid-template-columns: 1fr;
  }
  .notes-grid {
    grid-template-columns: 1fr;
  }
  .specs-grid {
    grid-template-columns: 1fr;
  }
}

/* ---- ATMOSPHERE & IMPORTED HIGHLIGHTS ---- */
.highlight-section {
  padding: 6rem 2rem;
  background-color: var(--bg-primary);
  border-top: 2px solid var(--border-color);
}

.highlight-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.highlight-box {
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-color);
  padding: 3rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.highlight-box.accent-box {
  border-color: var(--accent-yellow);
}

.highlight-box h3 {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--accent-rose);
  letter-spacing: 1px;
}

.highlight-box.accent-box h3 {
  color: var(--accent-yellow);
}

.highlight-box p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.6;
}

.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: auto;
}

.tag-cloud span {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-primary);
}

@media (max-width: 768px) {
  .highlight-container {
    grid-template-columns: 1fr;
  }
  .highlight-box {
    padding: 2rem;
  }
}
