@font-face {
  font-family: 'Zuume';
  src: url('./assets/fonts/zuume-black.otf') format('opentype');
  font-weight: 900;
}
@font-face {
  font-family: 'Zuume';
  src: url('./assets/fonts/zuume-bold.otf') format('opentype');
  font-weight: 700;
}
@font-face {
  font-family: 'Quattrocento';
  src: url('./assets/fonts/quattrocento-regular.ttf') format('truetype');
  font-weight: 400;
}
@font-face {
  font-family: 'Quattrocento';
  src: url('./assets/fonts/quattrocento-bold.ttf') format('truetype');
  font-weight: 700;
}

:root { --green: #00594C; --cream: #FFF8D6; --dark-green: #003d34; --mid-green: #00705f; }
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Quattrocento', Georgia, serif; background: var(--cream); color: var(--green); overflow-x: hidden; }

/* NAV */
nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; display: flex; align-items: center; justify-content: space-between; padding: 1rem 3rem; background: var(--green); border-bottom: 3px solid var(--dark-green); }
.nav-links { position: absolute; left: 50%; transform: translateX(-50%); display: flex; gap: 2.5rem; list-style: none; }
.nav-logo { height: 40px; opacity: 0.92; }

.nav-links a { font-family: 'Zuume', sans-serif; font-weight: 700; font-size: 1rem; letter-spacing: 0.1em; color: var(--cream); text-decoration: none; text-transform: uppercase; transition: opacity 0.2s; position: relative; }
.nav-links a::after { content: ''; position: absolute; bottom: -6px; left: 0; right: 0; height: 6px; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 60 6' preserveAspectRatio='none'%3E%3Cpath d='M0 4 Q7.5 0 15 3 Q22.5 6 30 3 Q37.5 0 45 3 Q52.5 6 60 4' fill='none' stroke='%23FFF8D6' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: repeat-x; background-size: 60px 6px; transform: scaleX(0); transition: transform 0.3s ease; transform-origin: left; }
.nav-links a:hover::after { transform: scaleX(1); }

/* HERO */
.hero { min-height: 95vh; background: var(--green); display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; padding-top: 80px; padding-bottom: 5rem; }
@media (max-width: 768px) {
  .hero { min-height: 0; padding-top: 120px; padding-bottom: 4rem; align-items: flex-start; }
  .hero-content { margin-top: 2rem; }
}
.hero-bg-text { position: absolute; font-family: 'Zuume', sans-serif; font-weight: 900; font-size: clamp(12rem, 30vw, 28rem); color: var(--dark-green); letter-spacing: 0.01em; user-select: none; pointer-events: none; top: 50%; left: 50%; transform: translate(-50%, -50%) rotate(-8deg); white-space: nowrap; opacity: 0.4; }
.hero-content { position: relative; z-index: 2; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 2.5rem; animation: fadeUp 1s ease forwards; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(40px); } to { opacity: 1; transform: translateY(0); } }
.hero-logo { width: clamp(260px, 45vw, 520px); opacity: 0.95; }
.hero-tagline { font-family: 'Quattrocento', Georgia, serif; font-size: clamp(1rem, 2.5vw, 1.5rem); color: var(--cream); letter-spacing: 0.25em; text-transform: uppercase; opacity: 0.85; }
.hero-cta { display: inline-flex; gap: 1rem; margin-top: 0.5rem; flex-wrap: wrap; justify-content: center; }
.btn { font-family: 'Zuume', sans-serif; font-weight: 700; font-size: 1.1rem; letter-spacing: 0.12em; text-transform: uppercase; padding: 0.85rem 2.5rem; border: 2.5px solid var(--cream); cursor: pointer; text-decoration: none; transition: all 0.25s; display: inline-block; }
.btn-primary { background: var(--cream); color: var(--green); }
.btn-primary:hover { background: transparent; color: var(--cream); }
.btn-outline { background: transparent; color: var(--cream); }
.btn-outline:hover { background: var(--cream); color: var(--green); }
.hero-character { position: absolute; bottom: -20px; right: 5vw; width: clamp(120px, 18vw, 320px); animation: bob 3s ease-in-out infinite; filter: brightness(10) opacity(0.18); max-width: 30vw; }
@media (max-width: 500px) { .hero-character { width: 120px; right: 2vw; bottom: 0; opacity: 0.15; } }
@keyframes bob { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-18px); } }

/* MARQUEE */
.marquee-strip { background: var(--cream); border-top: 3px solid var(--green); border-bottom: 3px solid var(--green); padding: 0.85rem 0; overflow: hidden; white-space: nowrap; }
.marquee-inner { display: inline-block; animation: marquee 18s linear infinite; }
.marquee-inner span { font-family: 'Zuume', sans-serif; font-weight: 900; font-size: 1.6rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--green); padding: 0 2rem; }
.marquee-inner span.dot { opacity: 0.4; padding: 0; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ABOUT */
.about { background: var(--cream); display: grid; grid-template-columns: 1fr 1fr; min-height: 80vh; overflow: hidden; }
.about-text { padding: clamp(3rem, 8vw, 7rem) clamp(2rem, 6vw, 6rem); display: flex; flex-direction: column; justify-content: center; gap: 1.5rem; }
.section-label { font-family: 'Quattrocento', Georgia, serif; font-size: 0.8rem; letter-spacing: 0.35em; text-transform: uppercase; color: var(--green); opacity: 0.6; }
.about-text h2 { font-family: 'Zuume', sans-serif; font-weight: 900; font-size: clamp(3.5rem, 7vw, 6.5rem); line-height: 0.92; letter-spacing: 0.01em; color: var(--green); text-transform: uppercase; }
.about-text p { font-size: 1.05rem; line-height: 1.75; color: var(--green); opacity: 0.8; max-width: 44ch; }
.about-image { background: var(--green); display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; min-height: 500px; }
.about-character { width: 70%; max-width: 400px; animation: bob 3.5s ease-in-out infinite; position: relative; z-index: 2; }
.about-image::before { content: 'SWAY'; position: absolute; font-family: 'Zuume', sans-serif; font-weight: 900; font-size: 20rem; color: var(--dark-green); letter-spacing: -0.05em; opacity: 0.25; top: 50%; left: 50%; transform: translate(-50%, -50%) rotate(-15deg); }

/* MENU */
.menu { background: var(--green); padding: clamp(4rem, 10vw, 9rem) clamp(2rem, 8vw, 8rem); }
.menu-header { text-align: center; margin-bottom: 4rem; }
.menu-header h2 { font-family: 'Zuume', sans-serif; font-weight: 900; font-size: clamp(4rem, 10vw, 9rem); line-height: 0.9; color: var(--cream); text-transform: uppercase; letter-spacing: 0.01em; }
.menu-tabs { display: flex; justify-content: center; gap: 0; margin-bottom: 3rem; flex-wrap: wrap; }
.menu-tab { font-family: 'Zuume', sans-serif; font-weight: 700; font-size: 1rem; letter-spacing: 0.12em; text-transform: uppercase; padding: 0.7rem 2rem; border: 2px solid rgba(255,248,214,0.4); color: var(--cream); background: transparent; cursor: pointer; transition: all 0.2s; opacity: 0.6; }
.menu-tab:hover { opacity: 1; }
.menu-tab.active { background: var(--cream); color: var(--green); opacity: 1; border-color: var(--cream); }
.menu-panel { display: none; }
.menu-panel.active { display: block; }
.menu-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.5px; background: rgba(255,248,214,0.15); border: 1.5px solid rgba(255,248,214,0.15); }
.menu-grid.food-grid { grid-template-columns: repeat(5, 1fr); }
.menu-card { background: var(--green); padding: 2.5rem; border: 1.5px solid rgba(255,248,214,0.12); transition: background 0.25s; position: relative; overflow: hidden; }
.food-grid .menu-card { padding: 1.6rem 1.4rem; }
.menu-card:hover { background: var(--dark-green); }
.menu-card-tag { font-family: 'Quattrocento', Georgia, serif; font-size: 0.72rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--cream); opacity: 0.5; margin-bottom: 0.75rem; display: block; }
.food-grid .menu-card-tag { font-size: 0.63rem; letter-spacing: 0.18em; margin-bottom: 0.4rem; }
.menu-card h3 { font-family: 'Zuume', sans-serif; font-weight: 900; font-size: 2.2rem; color: var(--cream); text-transform: uppercase; line-height: 1; margin-bottom: 1rem; letter-spacing: 0.01em; }
.food-grid .menu-card h3 { font-size: 1.65rem; margin-bottom: 0.55rem; }
.menu-items { list-style: none; }
.menu-items li { font-family: 'Quattrocento', Georgia, serif; font-size: 0.9rem; color: var(--cream); opacity: 0.8; padding: 0.35rem 0; border-bottom: 1px solid rgba(255,248,214,0.1); display: flex; justify-content: space-between; align-items: flex-start; gap: 1rem; }
.food-grid .menu-items li { font-size: 0.78rem; padding: 0.25rem 0; gap: 0.4rem; }
.menu-items li:last-child { border-bottom: none; }
.menu-items li .item-name { flex: 1; }
.menu-items li .item-price { white-space: nowrap; opacity: 0.9; font-weight: 700; }
.menu-items li.sub-item { opacity: 0.55; font-size: 0.82rem; padding: 0.2rem 0; border-bottom: none; padding-left: 0.5rem; }
.food-grid .menu-items li.sub-item { font-size: 0.72rem; }
.menu-items li.section-head { opacity: 1; font-weight: 700; padding-top: 0.8rem; border-bottom: 1px solid rgba(255,248,214,0.25); font-size: 0.78rem; letter-spacing: 0.15em; text-transform: uppercase; }
.food-grid .menu-items li.section-head { font-size: 0.68rem; padding-top: 0.55rem; }
.menu-items li.note { opacity: 0.45; font-size: 0.8rem; padding: 0.15rem 0; border-bottom: none; font-style: italic; }
.food-grid .menu-items li.note { font-size: 0.7rem; }
.menu-card-char { position: absolute; bottom: -15px; right: -15px; width: 120px; opacity: 0.1; transform: rotate(10deg); }

/* HOURS / LOCATION */
.info { display: grid; grid-template-columns: 1fr 1fr; min-height: 60vh; }
.info-hours { background: var(--cream); padding: clamp(3rem, 8vw, 7rem) clamp(2rem, 6vw, 6rem); display: flex; flex-direction: column; justify-content: center; gap: 1.5rem; border-right: 3px solid var(--green); }
.info-hours h2, .info-location h2 { font-family: 'Zuume', sans-serif; font-weight: 900; font-size: clamp(3rem, 5vw, 5rem); color: var(--green); text-transform: uppercase; line-height: 1; }
.hours-table { display: flex; flex-direction: column; gap: 0.5rem; }
.hours-row { display: flex; justify-content: space-between; font-size: 1rem; padding: 0.5rem 0; border-bottom: 1px solid rgba(0,89,76,0.15); color: var(--green); }
.hours-row:last-child { border-bottom: none; }
.hours-row .day { font-weight: 700; letter-spacing: 0.05em; }
.info-location { background: var(--green); padding: clamp(3rem, 8vw, 7rem) clamp(2rem, 6vw, 6rem); display: flex; flex-direction: column; justify-content: center; gap: 1.5rem; }
.info-location h2 { color: var(--cream); }
.info-location p { font-size: 1.05rem; color: var(--cream); opacity: 0.8; line-height: 1.7; }
.info-location a { color: var(--cream); font-weight: 700; letter-spacing: 0.08em; }
.info-location a.btn-primary { color: var(--green); background: var(--cream); border-color: var(--cream); }
.info-location a.btn-primary:hover { color: var(--cream); background: transparent; }

/* MAP SECTION */
.map-section { background: var(--cream); border-top: 3px solid var(--green); }
.map-section-inner { display: grid; grid-template-columns: 1fr 1.6fr; min-height: 520px; }
.map-info { padding: clamp(3rem, 6vw, 5rem) clamp(2rem, 5vw, 4rem); display: flex; flex-direction: column; justify-content: center; gap: 1.8rem; border-right: 3px solid var(--green); }
.map-info h2 { font-family: 'Zuume', sans-serif; font-weight: 900; font-size: clamp(3rem, 5vw, 5rem); color: var(--green); text-transform: uppercase; line-height: 1; }
.map-info-detail { display: flex; flex-direction: column; gap: 0.4rem; }
.map-info-detail .label { font-family: 'Quattrocento', serif; font-size: 0.75rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--green); opacity: 0.5; }
.map-info-detail .value { font-family: 'Quattrocento', serif; font-size: 1rem; color: var(--green); line-height: 1.6; }
.map-info-detail .value strong { font-weight: 700; }
.map-hours-grid { display: flex; flex-direction: column; gap: 0.3rem; }
.map-hours-row { display: flex; justify-content: space-between; font-size: 0.95rem; padding: 0.4rem 0; border-bottom: 1px solid rgba(0,89,76,0.12); color: var(--green); }
.map-hours-row:last-child { border-bottom: none; }
.map-hours-row .day { font-weight: 700; }
.map-cta { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 0.5rem; }
.btn-green { font-family: 'Zuume', sans-serif; font-weight: 700; font-size: 1rem; letter-spacing: 0.12em; text-transform: uppercase; padding: 0.75rem 2rem; border: 2.5px solid var(--green); cursor: pointer; text-decoration: none; transition: all 0.25s; display: inline-block; background: var(--green); color: var(--cream); }
.btn-green:hover { background: transparent; color: var(--green); }
.btn-green-outline { font-family: 'Zuume', sans-serif; font-weight: 700; font-size: 1rem; letter-spacing: 0.12em; text-transform: uppercase; padding: 0.75rem 2rem; border: 2.5px solid var(--green); cursor: pointer; text-decoration: none; transition: all 0.25s; display: inline-block; background: transparent; color: var(--green); }
.btn-green-outline:hover { background: var(--green); color: var(--cream); }
#sway-map { width: 100%; height: 100%; min-height: 520px; }

/* Leaflet popup */
.sway-popup .leaflet-popup-content-wrapper { background: var(--green); border-radius: 0; border: 3px solid var(--dark-green); box-shadow: 6px 6px 0 rgba(0,0,0,0.15); }
.sway-popup .leaflet-popup-tip { background: var(--green); }
.sway-popup .leaflet-popup-content { margin: 1.2rem 1.5rem; color: var(--cream); }
.sway-popup-title { font-family: 'Zuume', sans-serif; font-weight: 900; font-size: 1.4rem; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 0.4rem; }
.sway-popup-addr { font-size: 0.85rem; opacity: 0.75; margin-bottom: 0.3rem; }
.sway-popup-hours { font-size: 0.8rem; opacity: 0.65; }

/* FOOTER */
footer { background: var(--dark-green); padding: 2rem 3rem; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; border-top: 3px solid var(--green); }
.footer-logo { height: 40px; opacity: 0.85; }
.footer-text { font-family: 'Quattrocento', Georgia, serif; font-size: 0.85rem; color: var(--cream); opacity: 0.5; text-align: center; }
.footer-social { display: flex; gap: 1rem; }
.footer-social a { font-family: 'Zuume', sans-serif; font-weight: 700; font-size: 0.95rem; letter-spacing: 0.1em; color: var(--cream); text-decoration: none; opacity: 0.85; text-transform: uppercase; transition: opacity 0.2s; }
.footer-social a:hover { opacity: 1; }

/* SCROLL REVEAL */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* RESPONSIVE */
@media (max-width: 1024px) { .hours-pill { display: none !important; } }
@media (max-width: 900px) {
  .map-section-inner { grid-template-columns: 1fr; }
  .map-info { border-right: none; border-bottom: 3px solid var(--green); }
  #sway-map { min-height: 380px; }
  .menu-grid.food-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  nav { padding: 0.85rem 1.2rem; }
  .nav-links { gap: 1.2rem; position: absolute; left: 50%; transform: translateX(-50%); }
  .nav-links a { font-size: 0.85rem; letter-spacing: 0.06em; }
  .hours-pill { display: none; }
  .about { grid-template-columns: 1fr; } .about-image { min-height: 350px; }
  .info { grid-template-columns: 1fr; } .info-hours { border-right: none; border-bottom: 3px solid var(--green); }
  footer { flex-direction: column; align-items: center; text-align: center; }
  .menu-tab { font-size: 0.85rem; padding: 0.6rem 1.2rem; }
  /* Food grid: 2 columns on mobile */
  .menu-grid.food-grid { grid-template-columns: repeat(2, 1fr); }
  .food-grid .menu-card { padding: 1.4rem 1.2rem; }
  .food-grid .menu-card h3 { font-size: 1.5rem; }
  .food-grid .menu-items li { font-size: 0.8rem; }
}
@media (max-width: 480px) {
  /* Single column only on very small screens */
  .menu-grid.food-grid { grid-template-columns: 1fr; }
  .food-grid .menu-card h3 { font-size: 1.8rem; }
  .food-grid .menu-items li { font-size: 0.88rem; }
  .food-grid .menu-card { padding: 1.8rem 1.4rem; }
}

/* =====================
   VIDEO SECTION
   ===================== */
.video-section {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  z-index: 0;
}

.video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.15) 0%,
    rgba(0,40,34,0.55) 60%,
    rgba(0,61,52,0.75) 100%
  );
  z-index: 1;
}

.video-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--cream);
  padding: 0 2rem;
}

.video-label {
  font-family: 'Quattrocento', Georgia, serif;
  font-size: 0.8rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--cream);
  opacity: 0.7;
  display: block;
  margin-bottom: 1.5rem;
}

.video-headline {
  font-family: 'Zuume', sans-serif;
  font-weight: 900;
  font-size: clamp(4rem, 10vw, 9rem);
  line-height: 0.92;
  letter-spacing: 0.01em;
  color: var(--cream);
  text-transform: uppercase;
}

.reveal-video {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1.2s ease 0.4s forwards;
}

.video-scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: var(--cream);
  opacity: 0.5;
  font-size: 1.4rem;
  animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* =====================
   VIBES / SPOTIFY SECTION
   ===================== */
.vibes-section {
  background: var(--dark-green);
  padding: clamp(5rem, 10vw, 9rem) clamp(2rem, 8vw, 8rem);
  border-top: 3px solid var(--green);
  border-bottom: 3px solid var(--green);
}

.vibes-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(3rem, 6vw, 7rem);
  align-items: center;
  max-width: 1300px;
  margin: 0 auto;
}

.vibes-headline {
  font-family: 'Zuume', sans-serif;
  font-weight: 900;
  font-size: clamp(3.5rem, 7vw, 6.5rem);
  line-height: 0.92;
  letter-spacing: 0.01em;
  color: var(--cream);
  text-transform: uppercase;
  margin: 0.75rem 0 1.25rem;
}

.vibes-body {
  font-family: 'Quattrocento', Georgia, serif;
  font-size: 1rem;
  line-height: 1.8;
  color: var(--cream);
  opacity: 0.7;
  max-width: 40ch;
  margin-bottom: 2rem;
}

.btn-spotify {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: 'Zuume', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.75rem 2rem;
  background: #1DB954;
  color: #000;
  text-decoration: none;
  border: 2.5px solid #1DB954;
  transition: all 0.25s;
}

.btn-spotify:hover {
  background: transparent;
  color: #1DB954;
}

.vibes-embed {
  position: relative;
}

.vibes-embed::before {
  content: '';
  position: absolute;
  inset: -6px;
  border: 1.5px solid rgba(255,248,214,0.12);
  pointer-events: none;
  z-index: 1;
}

.vibes-embed iframe {
  display: block;
  width: 100%;
}

/* =====================
   LOCATION UPGRADES
   ===================== */
.info-address {
  font-family: 'Quattrocento', Georgia, serif;
  font-size: 1.2rem;
  color: var(--cream);
  line-height: 1.6;
  margin-bottom: 1rem;
  font-weight: 700;
}

.info-walk {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 1.2rem;
}

.walk-pill {
  font-family: 'Quattrocento', Georgia, serif;
  font-size: 0.82rem;
  color: var(--cream);
  background: rgba(255,248,214,0.1);
  border: 1px solid rgba(255,248,214,0.2);
  padding: 0.4rem 0.9rem;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

/* =====================
   RESPONSIVE — NEW SECTIONS
   ===================== */
@media (max-width: 900px) {
  .vibes-inner { grid-template-columns: 1fr; }
  .vibes-headline { font-size: clamp(3rem, 8vw, 5rem); }
}

@media (max-width: 768px) {
  .video-headline { font-size: clamp(3rem, 12vw, 5rem); }
  .vibes-section { padding: 4rem 1.5rem; }
}

/* =====================
   GRAIN OVERLAY
   ===================== */
.grain-overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  opacity: 0.045;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 180px 180px;
  mix-blend-mode: overlay;
}

/* =====================
   HOURS PILL (NAV)
   ===================== */
.hours-pill {
  font-family: 'Quattrocento', Georgia, serif;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  border: 1.5px solid rgba(255,248,214,0.3);
  color: var(--cream);
  white-space: nowrap;
  opacity: 0.85;
  transition: opacity 0.3s;
}
.hours-pill.open { border-color: #4ade80; color: #4ade80; }
.hours-pill.closed { border-color: rgba(255,248,214,0.3); }

/* =====================
   ROTATING TAGLINE
   ===================== */
.tagline-rotate {
  display: inline-block;
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.tagline-rotate.fade-out {
  opacity: 0;
  transform: translateY(-8px);
}
.tagline-rotate.fade-in {
  opacity: 1;
  transform: translateY(0);
}

/* =====================
   GALLERY
   ===================== */
.gallery-section {
  background: var(--cream);
  padding: clamp(4rem, 8vw, 7rem) clamp(2rem, 6vw, 6rem);
  border-top: 3px solid var(--green);
}

.gallery-header {
  margin-bottom: 3rem;
}

.gallery-headline {
  font-family: 'Zuume', sans-serif;
  font-weight: 900;
  font-size: clamp(3.5rem, 8vw, 7rem);
  line-height: 0.92;
  letter-spacing: 0.01em;
  color: var(--green);
  text-transform: uppercase;
  margin-top: 0.5rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 6px;
}

.gallery-item {
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: zoom-in;
}

.gallery-item.gallery-large {
  grid-column: span 2;
  aspect-ratio: 16/9;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), filter 0.6s ease;
  filter: saturate(0.9);
}

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

/* Lightbox */
.gallery-lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  cursor: zoom-out;
}
.gallery-lightbox.active { display: flex; }
.gallery-lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  box-shadow: 0 0 80px rgba(0,0,0,0.5);
}
.lightbox-close {
  position: absolute;
  top: 2rem;
  right: 2.5rem;
  color: var(--cream);
  font-size: 2rem;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.2s;
  background: none;
  border: none;
  line-height: 1;
}
.lightbox-close:hover { opacity: 1; }

/* =====================
   AMBIENT MODE
   ===================== */
.btn-ambient {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Zuume', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.75rem 2rem;
  background: transparent;
  color: var(--cream);
  border: 2px solid rgba(255,248,214,0.3);
  cursor: pointer;
  transition: all 0.25s;
  margin-top: 0.5rem;
}
.btn-ambient:hover {
  border-color: var(--cream);
  background: rgba(255,248,214,0.05);
}

/* Ambient overlay */
.ambient-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: #050a09;
  z-index: 500;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
}
.ambient-overlay.active { display: flex; }

.ambient-label {
  font-family: 'Quattrocento', Georgia, serif;
  font-size: 0.75rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--cream);
  opacity: 0.4;
}

.ambient-embed {
  width: min(520px, 90vw);
}

.ambient-waveform {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 32px;
}

.ambient-waveform span {
  display: block;
  width: 3px;
  background: var(--green);
  border-radius: 2px;
  animation: waveBar 1.2s ease-in-out infinite;
  opacity: 0.7;
}

.ambient-waveform span:nth-child(1)  { height: 40%; animation-delay: 0s; }
.ambient-waveform span:nth-child(2)  { height: 70%; animation-delay: 0.1s; }
.ambient-waveform span:nth-child(3)  { height: 100%; animation-delay: 0.2s; }
.ambient-waveform span:nth-child(4)  { height: 60%; animation-delay: 0.3s; }
.ambient-waveform span:nth-child(5)  { height: 85%; animation-delay: 0.15s; }
.ambient-waveform span:nth-child(6)  { height: 45%; animation-delay: 0.25s; }
.ambient-waveform span:nth-child(7)  { height: 75%; animation-delay: 0.05s; }
.ambient-waveform span:nth-child(8)  { height: 55%; animation-delay: 0.35s; }
.ambient-waveform span:nth-child(9)  { height: 90%; animation-delay: 0.18s; }
.ambient-waveform span:nth-child(10) { height: 40%; animation-delay: 0.28s; }
.ambient-waveform span:nth-child(11) { height: 65%; animation-delay: 0.08s; }
.ambient-waveform span:nth-child(12) { height: 80%; animation-delay: 0.22s; }

@keyframes waveBar {
  0%, 100% { transform: scaleY(0.4); }
  50% { transform: scaleY(1); }
}

.ambient-close {
  font-family: 'Quattrocento', Georgia, serif;
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--cream);
  opacity: 0.4;
  background: none;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s;
}
.ambient-close:hover { opacity: 0.8; }

/* Dark map tiles applied via JS */

/* =====================
   GALLERY RESPONSIVE
   ===================== */
@media (max-width: 768px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item.gallery-large { grid-column: span 2; }
  .hours-pill { display: none; }
}
@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item.gallery-large { grid-column: span 1; aspect-ratio: 4/3; }
}

/* =====================
   MAP — UPGRADED
   ===================== */

/* Pulse ring on Sway marker */
.map-pulse-wrapper {
  position: relative;
  display: inline-block;
}

.map-pulse-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 2px solid rgba(0, 89, 76, 0.6);
  animation: pulseRing 2.4s ease-out infinite;
  pointer-events: none;
  z-index: 1;
}

.map-pulse-ring-2 {
  animation-delay: 1.2s;
}

@keyframes pulseRing {
  0%   { transform: translate(-50%, -50%) scale(0.4); opacity: 0.8; }
  100% { transform: translate(-50%, -50%) scale(2.2); opacity: 0; }
}

/* Landmark dots */
.landmark-dot {
  width: 7px;
  height: 7px;
  background: rgba(255, 248, 214, 0.25);
  border: 1.5px solid rgba(255, 248, 214, 0.4);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
}

.landmark-dot::after {
  content: attr(data-label);
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 40, 34, 0.95);
  color: var(--cream);
  font-family: sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
  padding: 4px 8px;
  border: 1px solid rgba(255,248,214,0.2);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
}

.landmark-dot:hover {
  background: rgba(255, 248, 214, 0.5);
  transform: scale(1.6);
}

.landmark-dot:hover::after {
  opacity: 1;
}

/* Route line fade-in handled via JS setStyle */
.route-line {
  transition: opacity 0.8s ease;
}

/* Map height on mobile */
@media (max-width: 768px) {
  #sway-map { min-height: 340px !important; }
}

/* =====================
   MULTI-PAGE LAYOUT
   ===================== */

/* Page entry animation */
body { animation: pageFadeIn 0.4s ease forwards; }
@keyframes pageFadeIn { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }

/* Active nav link */
.nav-links a.active { opacity: 1; }
.nav-links a.active::after { transform: scaleX(1); }

/* Pages — remove gap at top, just add nav clearance */
.page-about .about,
.page-menu .menu {
  padding-top: 80px;
  min-height: 100vh;
}

.page-about .about { min-height: 100vh; }
.page-menu .menu { min-height: 100vh; }
.page-visit .info { min-height: auto; padding-top: 0; }

/* Nav logo is a link now */
nav a { text-decoration: none; }

/* =====================
   ABOUT PAGE — RICH LAYOUT
   ===================== */

/* Hero */
.about-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 75vh;
  padding-top: 80px;
  background: var(--green);
  overflow: hidden;
}

.about-hero-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2.5rem, 6vw, 5rem) clamp(2rem, 6vw, 6rem);
  gap: 1.5rem;
}

.about-hero-headline {
  font-family: 'Zuume', sans-serif;
  font-weight: 900;
  font-size: clamp(4rem, 8vw, 7.5rem);
  line-height: 0.9;
  letter-spacing: 0.01em;
  color: var(--cream);
  text-transform: uppercase;
}

.about-hero-sub {
  font-family: 'Quattrocento', Georgia, serif;
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--cream);
  opacity: 0.75;
  line-height: 1.7;
  max-width: 38ch;
}

.about-hero-img {
  position: relative;
  overflow: hidden;
}

.about-hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  display: block;
  filter: saturate(0.85);
}

/* Story sections */
.about-story {
  background: var(--cream);
  padding: clamp(4rem, 10vw, 9rem) clamp(2rem, 6vw, 6rem);
}

.about-story-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 7rem);
  align-items: center;
  max-width: 1300px;
  margin: 0 auto;
}

.about-story-text {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.about-story-text h2 {
  font-family: 'Zuume', sans-serif;
  font-weight: 900;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 0.95;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 0.01em;
}

.about-story-text p {
  font-family: 'Quattrocento', Georgia, serif;
  font-size: 1rem;
  line-height: 1.8;
  color: var(--green);
  opacity: 0.8;
  max-width: 48ch;
}

.about-quote {
  font-family: 'Quattrocento', Georgia, serif;
  font-size: 1rem;
  font-style: italic;
  line-height: 1.7;
  color: var(--green);
  opacity: 0.7;
  border-left: 3px solid var(--green);
  padding-left: 1.2rem;
  margin: 0.5rem 0;
}

.about-story-img {
  overflow: hidden;
  aspect-ratio: 3/4;
}

.about-story-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(0.9);
  transition: transform 0.6s ease;
}

.about-story-img:hover img { transform: scale(1.03); }

/* Coffee section */
.about-coffee {
  background: var(--green);
  padding: clamp(4rem, 10vw, 9rem) clamp(2rem, 6vw, 6rem);
}

.about-coffee-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 7rem);
  align-items: center;
  max-width: 1300px;
  margin: 0 auto;
}

.about-coffee-img {
  overflow: hidden;
  aspect-ratio: 3/4;
}

.about-coffee-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(0.85);
  transition: transform 0.6s ease;
}

.about-coffee-img:hover img { transform: scale(1.03); }

.about-coffee-text {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.about-coffee-text h2 {
  font-family: 'Zuume', sans-serif;
  font-weight: 900;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 0.95;
  color: var(--cream);
  text-transform: uppercase;
  letter-spacing: 0.01em;
}

.about-coffee-text p {
  font-family: 'Quattrocento', Georgia, serif;
  font-size: 1rem;
  line-height: 1.8;
  color: var(--cream);
  opacity: 0.75;
  max-width: 48ch;
}

.about-coffee-text .about-quote {
  color: var(--cream);
  border-left-color: rgba(255,248,214,0.4);
  opacity: 0.75;
}

/* Music section */
.about-music {
  background: var(--dark-green);
  padding: clamp(4rem, 10vw, 9rem) clamp(2rem, 6vw, 6rem);
  border-top: 3px solid var(--green);
  border-bottom: 3px solid var(--green);
}

.about-music-inner {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.about-music-inner h2 {
  font-family: 'Zuume', sans-serif;
  font-weight: 900;
  font-size: clamp(2.5rem, 6vw, 5rem);
  line-height: 0.95;
  color: var(--cream);
  text-transform: uppercase;
  letter-spacing: 0.01em;
}

.about-music-inner p {
  font-family: 'Quattrocento', Georgia, serif;
  font-size: 1rem;
  line-height: 1.8;
  color: var(--cream);
  opacity: 0.75;
}

.about-music-inner .about-quote {
  color: var(--cream);
  border-left-color: rgba(255,248,214,0.4);
  opacity: 0.75;
}

.about-music-artists {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 0.5rem;
}

.about-music-artists span {
  font-family: 'Zuume', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cream);
  border: 1.5px solid rgba(255,248,214,0.25);
  padding: 0.35rem 0.9rem;
  opacity: 0.7;
}

/* Closing */
.about-closing {
  background: var(--cream);
  padding: clamp(4rem, 10vw, 9rem) clamp(2rem, 6vw, 6rem);
  text-align: center;
}

.about-closing-inner {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  align-items: center;
}

.about-closing-inner h2 {
  font-family: 'Zuume', sans-serif;
  font-weight: 900;
  font-size: clamp(2.5rem, 6vw, 5rem);
  line-height: 0.95;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 0.01em;
}

.about-closing-inner p {
  font-family: 'Quattrocento', Georgia, serif;
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--green);
  opacity: 0.8;
}

.about-closing-inner .about-quote {
  text-align: left;
  width: 100%;
}

/* Responsive */
@media (max-width: 900px) {
  .about-hero,
  .about-story-inner,
  .about-coffee-inner { grid-template-columns: 1fr; }
  .about-hero-img { min-height: 60vw; aspect-ratio: 16/9; }
  .about-story-img,
  .about-coffee-img { aspect-ratio: 16/9; }
  .about-coffee-img { order: -1; }
}

/* =====================
   HOME TILES
   ===================== */
.home-tiles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  min-height: 90vh;
  border-top: 3px solid var(--green);
}

.home-tile {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  border-right: 3px solid var(--green);
  transition: background 0.3s ease;
  background: var(--cream);
}

.home-tile:last-child { border-right: none; }

.home-tile-dark {
  background: var(--green);
}

.home-tile-img {
  width: 100%;
  height: 55%;
  overflow: hidden;
  flex-shrink: 0;
}

.home-tile-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(0.85);
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.home-tile:hover .home-tile-img img {
  transform: scale(1.04);
}

.home-tile-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.75rem;
  padding: 2.5rem 2rem;
  flex: 1;
  border-top: 3px solid var(--green);
}

.home-tile-dark .home-tile-content {
  border-top-color: rgba(255,248,214,0.2);
}

.home-tile-label {
  font-family: 'Quattrocento', Georgia, serif;
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--green);
  opacity: 0.5;
}

.home-tile-dark .home-tile-label {
  color: var(--cream);
  opacity: 0.5;
}

.home-tile-heading {
  font-family: 'Zuume', sans-serif;
  font-weight: 900;
  font-size: clamp(3rem, 5vw, 5rem);
  line-height: 0.92;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--green);
  margin: 0;
}

.home-tile-dark .home-tile-heading {
  color: var(--cream);
}

.home-tile-text {
  font-family: 'Quattrocento', Georgia, serif;
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--green);
  opacity: 0.7;
  max-width: 32ch;
}

.home-tile-dark .home-tile-text {
  color: var(--cream);
}

.home-tile-link {
  font-family: 'Zuume', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
  opacity: 0.6;
  margin-top: 0.5rem;
  transition: opacity 0.2s;
}

.home-tile-dark .home-tile-link {
  color: var(--cream);
}

.home-tile:hover .home-tile-link {
  opacity: 1;
}

@media (max-width: 900px) {
  .home-tiles { grid-template-columns: 1fr; min-height: auto; }
  .home-tile { border-right: none; border-bottom: 3px solid var(--green); flex-direction: row; min-height: 220px; }
  .home-tile:last-child { border-bottom: none; }
  .home-tile-img { width: 40%; height: auto; }
  .home-tile-content { border-top: none; border-left: 3px solid var(--green); }
  .home-tile-dark .home-tile-content { border-left-color: rgba(255,248,214,0.2); }
}

@media (max-width: 600px) {
  .home-tile { flex-direction: column; min-height: auto; }
  .home-tile-img { width: 100%; height: 240px; }
  .home-tile-content { border-left: none; border-top: 3px solid var(--green); }
}

/* Section label variant for dark backgrounds */
.section-label-cream {
  font-family: 'Quattrocento', Georgia, serif;
  font-size: 0.8rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--cream);
  opacity: 0.5;
}

/* Hero sub line */
.hero-sub {
  font-family: 'Quattrocento', Georgia, serif;
  font-size: clamp(0.85rem, 1.8vw, 1.1rem);
  color: var(--cream);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.55;
  margin-top: -0.75rem;
}

/* =====================
   SWAY RADIO PAGE
   ===================== */
.page-radio { background: var(--dark-green); }
.page-radio footer { border-top-color: rgba(255,248,214,0.1); }

/* Hero */
.radio-hero {
  background: var(--dark-green);
  padding: clamp(8rem, 15vw, 12rem) clamp(2rem, 8vw, 8rem) clamp(3rem, 6vw, 5rem);
  border-bottom: 3px solid var(--green);
}
.radio-hero-inner { max-width: 900px; }
.radio-hero-label {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1.5rem;
}
.radio-live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,248,214,0.3);
  flex-shrink: 0;
}
.radio-live-dot.live {
  background: #4ade80;
  box-shadow: 0 0 0 0 rgba(74,222,128,0.4);
  animation: livePulse 2s ease-out infinite;
}
@keyframes livePulse {
  0% { box-shadow: 0 0 0 0 rgba(74,222,128,0.4); }
  70% { box-shadow: 0 0 0 10px rgba(74,222,128,0); }
  100% { box-shadow: 0 0 0 0 rgba(74,222,128,0); }
}
.radio-headline {
  font-family: 'Zuume', sans-serif;
  font-weight: 900;
  font-size: clamp(4rem, 10vw, 9rem);
  line-height: 0.9;
  letter-spacing: 0.01em;
  color: var(--cream);
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.radio-sub {
  font-family: 'Quattrocento', Georgia, serif;
  font-size: 1rem;
  color: var(--cream);
  opacity: 0.55;
  letter-spacing: 0.05em;
}

/* Now Playing */
.radio-now {
  background: var(--green);
  border-bottom: 3px solid rgba(255,248,214,0.1);
  padding: clamp(2.5rem, 5vw, 4rem) clamp(2rem, 8vw, 8rem);
}
.radio-now-inner {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  max-width: 900px;
}
.radio-now-art {
  width: 100px;
  height: 100px;
  flex-shrink: 0;
  background: var(--dark-green);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.radio-now-art-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.radio-art-placeholder { color: rgba(255,248,214,0.2); }
.radio-now-info { flex: 1; }
.radio-now-status {
  font-family: 'Quattrocento', Georgia, serif;
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--cream);
  opacity: 0.5;
  display: block;
  margin-bottom: 0.5rem;
}
.radio-now-track {
  font-family: 'Zuume', sans-serif;
  font-weight: 900;
  font-size: clamp(1.8rem, 4vw, 3rem);
  color: var(--cream);
  text-transform: uppercase;
  letter-spacing: 0.01em;
  line-height: 1;
  margin-bottom: 0.4rem;
}
.radio-now-artist {
  font-family: 'Quattrocento', Georgia, serif;
  font-size: 1rem;
  color: var(--cream);
  opacity: 0.6;
}

/* Waveform */
.radio-waveform {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 40px;
  flex-shrink: 0;
}
.radio-waveform span {
  display: block;
  width: 3px;
  background: var(--cream);
  border-radius: 2px;
  animation: radioWave 1.2s ease-in-out infinite;
  opacity: 0.6;
}
.radio-waveform span:nth-child(1)  { height: 40%; animation-delay: 0s; }
.radio-waveform span:nth-child(2)  { height: 80%; animation-delay: 0.1s; }
.radio-waveform span:nth-child(3)  { height: 100%; animation-delay: 0.2s; }
.radio-waveform span:nth-child(4)  { height: 60%; animation-delay: 0.15s; }
.radio-waveform span:nth-child(5)  { height: 90%; animation-delay: 0.25s; }
.radio-waveform span:nth-child(6)  { height: 50%; animation-delay: 0.05s; }
.radio-waveform span:nth-child(7)  { height: 75%; animation-delay: 0.3s; }
.radio-waveform span:nth-child(8)  { height: 40%; animation-delay: 0.18s; }
.radio-waveform span:nth-child(9)  { height: 85%; animation-delay: 0.08s; }
.radio-waveform span:nth-child(10) { height: 55%; animation-delay: 0.22s; }
@keyframes radioWave {
  0%, 100% { transform: scaleY(0.4); }
  50% { transform: scaleY(1); }
}

/* Stats row */
.radio-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 3px solid rgba(255,248,214,0.1);
}
.radio-stat-card {
  padding: 2.5rem clamp(2rem, 8vw, 8rem);
  border-right: 1.5px solid rgba(255,248,214,0.1);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.radio-stat-card:last-child { border-right: none; }
.radio-stat-label {
  font-family: 'Quattrocento', Georgia, serif;
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--cream);
  opacity: 0.4;
}
.radio-stat-value {
  font-family: 'Zuume', sans-serif;
  font-weight: 900;
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--cream);
  line-height: 1;
  letter-spacing: 0.01em;
}

/* Grid panels */
.radio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 3px solid rgba(255,248,214,0.1);
}
.radio-panel {
  padding: 3rem clamp(1.5rem, 4vw, 4rem);
  border-right: 1.5px solid rgba(255,248,214,0.1);
}
.radio-panel:last-child { border-right: none; }
.radio-panel-title {
  font-family: 'Zuume', sans-serif;
  font-weight: 900;
  font-size: 1.4rem;
  color: var(--cream);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1.5px solid rgba(255,248,214,0.1);
}

/* Track list */
.radio-track-list,
.radio-artist-list { list-style: none; }
.radio-track-item,
.radio-artist-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.7rem 0;
  border-bottom: 1px solid rgba(255,248,214,0.07);
}
.radio-track-item:last-child,
.radio-artist-item:last-child { border-bottom: none; }
.radio-track-item.is-now .radio-track-name { color: #4ade80; }
.radio-track-num {
  font-family: 'Quattrocento', Georgia, serif;
  font-size: 0.72rem;
  color: var(--cream);
  opacity: 0.3;
  width: 16px;
  flex-shrink: 0;
  text-align: center;
}
.radio-track-art {
  width: 38px;
  height: 38px;
  object-fit: cover;
  flex-shrink: 0;
  background: var(--green);
}
.radio-track-art-empty {
  width: 38px;
  height: 38px;
  background: rgba(255,248,214,0.05);
  flex-shrink: 0;
}
.radio-track-meta { flex: 1; min-width: 0; }
.radio-track-name {
  font-family: 'Quattrocento', Georgia, serif;
  font-size: 0.88rem;
  color: var(--cream);
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-weight: 700;
}
.radio-track-artist {
  font-family: 'Quattrocento', Georgia, serif;
  font-size: 0.78rem;
  color: var(--cream);
  opacity: 0.5;
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.radio-track-plays {
  font-family: 'Quattrocento', Georgia, serif;
  font-size: 0.72rem;
  color: var(--cream);
  opacity: 0.35;
  white-space: nowrap;
  flex-shrink: 0;
}
.radio-track-skeleton {
  height: 52px;
  background: rgba(255,248,214,0.04);
  border-radius: 2px;
  margin-bottom: 0.5rem;
  animation: shimmer 1.5s ease-in-out infinite;
}
@keyframes shimmer {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 0.8; }
}
.radio-empty {
  font-family: 'Quattrocento', Georgia, serif;
  font-size: 0.85rem;
  color: var(--cream);
  opacity: 0.4;
  padding: 1rem 0;
  font-style: italic;
}

/* Responsive */
@media (max-width: 900px) {
  .radio-stats { grid-template-columns: repeat(3, 1fr); }
  .radio-grid { grid-template-columns: 1fr; }
  .radio-panel { border-right: none; border-bottom: 1.5px solid rgba(255,248,214,0.1); }
  .radio-panel:last-child { border-bottom: none; }
}
@media (max-width: 600px) {
  .radio-now-inner { flex-wrap: wrap; }
  .radio-waveform { display: none; }
  .radio-stats { grid-template-columns: 1fr; }
  .radio-stat-card { border-right: none; border-bottom: 1.5px solid rgba(255,248,214,0.1); }
}

/* Radio highlights — top track + obsession */
.radio-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 3px solid rgba(255,248,214,0.1);
}
.radio-highlight-card {
  padding: clamp(2rem, 5vw, 4rem) clamp(2rem, 8vw, 8rem);
  border-right: 1.5px solid rgba(255,248,214,0.1);
}
.radio-highlight-card:last-child { border-right: none; }
.radio-highlight-obsession { background: rgba(255,248,214,0.03); }
.radio-highlight-label {
  font-family: 'Quattrocento', Georgia, serif;
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--cream);
  opacity: 0.4;
  display: block;
  margin-bottom: 1.2rem;
}
.radio-highlight-inner {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}
.radio-highlight-art {
  width: 64px;
  height: 64px;
  flex-shrink: 0;
  background: rgba(255,248,214,0.05);
  overflow: hidden;
}
.radio-highlight-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.radio-highlight-info { display: flex; flex-direction: column; gap: 0.25rem; }
.radio-highlight-track {
  font-family: 'Zuume', sans-serif;
  font-weight: 900;
  font-size: clamp(1.4rem, 3vw, 2rem);
  color: var(--cream);
  text-transform: uppercase;
  letter-spacing: 0.01em;
  line-height: 1;
}
.radio-highlight-artist {
  font-family: 'Quattrocento', Georgia, serif;
  font-size: 0.9rem;
  color: var(--cream);
  opacity: 0.55;
}
.radio-highlight-plays {
  font-family: 'Quattrocento', Georgia, serif;
  font-size: 0.75rem;
  color: var(--cream);
  opacity: 0.35;
  margin-top: 0.2rem;
}
.radio-obsession-tag { color: #f87171 !important; opacity: 1 !important; }

/* Open/closed state */
.radio-open-state {
  font-family: 'Quattrocento', Georgia, serif;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.2rem 0.6rem;
  border: 1px solid;
}
.radio-open-state.is-open { color: #4ade80; border-color: #4ade80; }
.radio-open-state.is-closed { color: rgba(255,248,214,0.35); border-color: rgba(255,248,214,0.15); }

/* Last updated */
.radio-last-updated {
  font-family: 'Quattrocento', Georgia, serif;
  font-size: 0.72rem;
  color: var(--cream);
  opacity: 0.25;
  letter-spacing: 0.1em;
  margin-top: 0.5rem;
}

/* Stats row — 5 columns */
.radio-stats { grid-template-columns: repeat(4, 1fr); }
.radio-stat-small { font-size: clamp(1.2rem, 2.5vw, 2rem) !important; }

@media (max-width: 900px) {
  .radio-highlights { grid-template-columns: 1fr; }
  .radio-highlight-card { border-right: none; border-bottom: 1.5px solid rgba(255,248,214,0.1); }
  .radio-stats { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 600px) {
  .radio-stats { grid-template-columns: repeat(2, 1fr); }
}

/* Newsletter Winny */
.newsletter-section { position: relative; overflow: hidden; }
.newsletter-winny {
  position: absolute;
  bottom: -10px;
  right: 4%;
  width: clamp(160px, 20vw, 320px);
  opacity: 0.2;
  filter: brightness(10);
  animation: bob 3s ease-in-out infinite;
  pointer-events: none;
}
.hero-video-bg {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}
.hero-video-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(to bottom, rgba(0,59,52,0.55) 0%, rgba(0,40,34,0.7) 100%);
  z-index: 1;
}
.hero .grain-overlay,
.hero .hero-bg-text,
.hero .hero-content,
.hero .hero-character { z-index: 2; }

/* Winny on About page */
.about-hero { position: relative; overflow: hidden; }
.about-hero-character {
  position: absolute;
  bottom: -10px;
  right: 5%;
  width: clamp(140px, 18vw, 280px);
  opacity: 0.18;
  filter: brightness(10);
  animation: bob 3s ease-in-out infinite;
  pointer-events: none;
}

/* Visit page photo hero */
.visit-photo-hero {
  width: 100%;
  height: 70vh;
  overflow: hidden;
  margin-top: 80px;
  border-bottom: 3px solid var(--green);
}
.visit-photo-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  display: block;
  filter: saturate(0.9);
}
@media (max-width: 768px) {
  .visit-photo-hero { height: 55vw; }
}

/* =====================
   NEWSLETTER SECTION
   ===================== */
.newsletter-section {
  background: var(--green);
  border-top: 3px solid rgba(255,248,214,0.15);
  padding: clamp(3rem, 7vw, 6rem) clamp(2rem, 8vw, 8rem);
}
.newsletter-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}
.newsletter-text { flex: 1; }
.newsletter-headline {
  font-family: 'Zuume', sans-serif;
  font-weight: 900;
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--cream);
  text-transform: uppercase;
  letter-spacing: 0.01em;
  line-height: 0.95;
  margin: 0.5rem 0 0.75rem;
}
.newsletter-sub {
  font-family: 'Quattrocento', Georgia, serif;
  font-size: 0.95rem;
  color: var(--cream);
  opacity: 0.6;
  line-height: 1.7;
  max-width: 40ch;
}
.newsletter-form { flex-shrink: 0; }
@media (max-width: 768px) {
  .newsletter-inner { flex-direction: column; align-items: flex-start; }
}

/* =====================
   FEATURE STRIP
   ===================== */
.feature-strip {
  position: relative;
  background: var(--dark-green);
  border-top: 3px solid var(--green);
  border-bottom: 3px solid var(--green);
  overflow: hidden;
}
.feature-slide {
  display: none;
  grid-template-columns: 1fr 1fr;
  min-height: 70vh;
}
.feature-slide.active { display: grid; }
.feature-img {
  overflow: hidden;
  position: relative;
}
.feature-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: saturate(0.85);
  transition: transform 0.6s ease;
}
.feature-slide:hover .feature-img img { transform: scale(1.03); }
.feature-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(3rem, 8vw, 7rem) clamp(2.5rem, 6vw, 6rem);
  gap: 1.2rem;
  border-left: 3px solid rgba(255,248,214,0.1);
}
.feature-headline {
  font-family: 'Zuume', sans-serif;
  font-weight: 900;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  color: var(--cream);
  text-transform: uppercase;
  letter-spacing: 0.01em;
  line-height: 0.95;
  margin: 0;
}
.feature-body {
  font-family: 'Quattrocento', Georgia, serif;
  font-size: 1rem;
  color: var(--cream);
  opacity: 0.65;
  line-height: 1.8;
  max-width: 40ch;
}
.feature-link {
  font-family: 'Zuume', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cream);
  text-decoration: none;
  opacity: 0.55;
  transition: opacity 0.2s;
  margin-top: 0.5rem;
}
.feature-link:hover { opacity: 1; }
.feature-dots {
  position: absolute;
  bottom: 1.5rem;
  right: 2rem;
  display: flex;
  gap: 0.5rem;
}
.feature-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,248,214,0.4);
  background: transparent;
  cursor: pointer;
  transition: all 0.2s;
  padding: 0;
}
.feature-dot.active {
  background: var(--cream);
  border-color: var(--cream);
}

@media (max-width: 768px) {
  .feature-slide.active { grid-template-columns: 1fr; }
  .feature-img { height: 50vw; }
  .feature-content { border-left: none; border-top: 3px solid rgba(255,248,214,0.1); }
}
