/* ==========================================================================
   LEAF & LIFE — CAFÉ & BISTRO (Action Area III, New Town, Kolkata)
   Unique Visual Scrapbook, Matchmaker & Boarding Pass Design System
   Designed & Engineered by Debashish Paul
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. CSS Custom Properties & Dynamic Theming
   -------------------------------------------------------------------------- */
:root {
  /* Color Palette: Botanical Noir & Warm Blush Bistro */
  --bg-primary: #0d120e;
  --bg-surface: #131a14;
  --bg-surface-elevated: #1a231b;
  --bg-chalkboard: #141b15;
  --bg-glass: rgba(26, 35, 27, 0.75);
  --bg-glass-card: rgba(255, 255, 255, 0.04);

  /* Primary Accent: Romantic Bistro Rose & Coral Neon */
  --accent-rose: #ff476f;
  --accent-rose-glow: rgba(255, 71, 111, 0.35);
  --accent-gold: #f59e0b;
  --accent-gold-glow: rgba(245, 158, 11, 0.3);
  --accent-sage: #34d399;
  --accent-sage-glow: rgba(52, 211, 153, 0.25);
  --accent-cream: #fbf7ee;

  /* Typography Colors */
  --text-main: #f3f4f6;
  --text-muted: #9ca3af;
  --text-dim: #6b7280;
  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-highlight: rgba(255, 255, 255, 0.16);
  --border-rose: rgba(255, 71, 111, 0.3);

  /* Typography Families */
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Outfit', 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --font-hand: 'Caveat', cursive, sans-serif;

  /* Transitions & Shadows */
  --transition-smooth: all 0.28s cubic-bezier(0.16, 1, 0.3, 1);
  --shadow-polaroid: 0 16px 36px rgba(0, 0, 0, 0.65), 0 4px 12px rgba(0, 0, 0, 0.4);
  --shadow-glow-rose: 0 0 30px rgba(255, 71, 111, 0.22);
}

/* Mood Switcher Dynamic Themes */
body.mood-morning {
  --accent-rose: #10b981;
  --accent-rose-glow: rgba(16, 185, 129, 0.35);
  --accent-gold: #fbbf24;
}

body.mood-night {
  --accent-rose: #ff2e63;
  --accent-rose-glow: rgba(255, 46, 99, 0.45);
  --accent-gold: #e11d48;
}

/* --------------------------------------------------------------------------
   2. Reset & Baseline Setup
   -------------------------------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--font-sans);
  line-height: 1.6;
  overflow-x: clip;
  position: relative;
  background-color: var(--bg-primary);
  background-image: 
    radial-gradient(circle at 10% 15%, rgba(52, 211, 153, 0.04) 0%, transparent 40%),
    radial-gradient(circle at 90% 55%, rgba(255, 71, 111, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 50% 90%, rgba(245, 158, 11, 0.04) 0%, transparent 45%);
}

/* Atmospheric Glow Orbs */
.ambient-glows {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.glow-sage {
  position: absolute;
  top: 5%;
  left: -10%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(52, 211, 153, 0.1) 0%, transparent 70%);
  filter: blur(80px);
}

.glow-blush {
  position: absolute;
  top: 45%;
  right: -5%;
  width: 550px;
  height: 550px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 71, 111, 0.12) 0%, transparent 70%);
  filter: blur(90px);
}

.glow-neon {
  position: absolute;
  bottom: 5%;
  left: 20%;
  width: 650px;
  height: 650px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.08) 0%, transparent 70%);
  filter: blur(100px);
}

/* Standard Section Containers */
.section-container {
  width: 100%;
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
  z-index: 1;
}

/* --------------------------------------------------------------------------
   3. Buttons & Interactive Controls (STRICT NO-SPLIT TEXT RULE)
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-sans);
  font-weight: 600;
  text-decoration: none;
  border-radius: 999px;
  cursor: pointer;
  transition: var(--transition-smooth);
  border: 1px solid transparent;
  white-space: nowrap !important;
  flex-shrink: 0;
}

.btn-sm {
  padding: 0.48rem 1.05rem;
  font-size: 0.84rem;
}

.btn-md {
  padding: 0.65rem 1.35rem;
  font-size: 0.9rem;
}

.btn-lg {
  padding: 0.8rem 1.65rem;
  font-size: 0.98rem;
}

.btn-primary-accent {
  background: linear-gradient(135deg, var(--accent-rose), #e11d48);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 18px var(--accent-rose-glow);
}

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

.btn-glass {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #f3f4f6;
  backdrop-filter: blur(8px);
}

.btn-glass:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

.btn-gold {
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: #000;
  font-weight: 700;
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(245, 158, 11, 0.4);
}

.btn-whatsapp {
  background: #25d366;
  color: #000;
  font-weight: 700;
}

.btn-whatsapp:hover {
  background: #20ba59;
}

/* --------------------------------------------------------------------------
   4. Top Announcement Bar
   -------------------------------------------------------------------------- */
.top-announcement-bar {
  background: rgba(13, 18, 14, 0.95);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  padding: 0.45rem 0;
  position: relative;
  z-index: 100;
  font-size: 0.82rem;
}

.bar-container {
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.bar-left, .bar-right {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: nowrap;
}

.live-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: rgba(52, 211, 153, 0.15);
  border: 1px solid rgba(52, 211, 153, 0.3);
  color: #34d399;
  padding: 0.18rem 0.55rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  white-space: nowrap !important;
}

.pulse-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #34d399;
  box-shadow: 0 0 8px #34d399;
  animation: pulseDot 1.8s infinite;
}

@keyframes pulseDot {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: 0.6; }
}

.bar-text {
  color: #9ca3af;
  white-space: nowrap;
}

.bar-text strong {
  color: #fff;
}

.bar-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: #d1d5db;
  text-decoration: none;
  transition: var(--transition-smooth);
  white-space: nowrap !important;
}

.bar-phone:hover {
  color: var(--accent-rose);
}

.return-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: #f3f4f6;
  text-decoration: none;
  font-weight: 600;
  padding: 0.22rem 0.65rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 6px;
  transition: var(--transition-smooth);
  white-space: nowrap !important;
  font-size: 0.8rem;
}

.return-link:hover {
  background: rgba(255, 71, 111, 0.15);
  border-color: var(--accent-rose);
  color: var(--accent-rose);
}

/* --------------------------------------------------------------------------
   5. Site Header & Nav
   -------------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 990;
  background: rgba(13, 18, 14, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: var(--transition-smooth);
}

.site-header.scrolled {
  background: rgba(13, 18, 14, 0.96);
  border-bottom-color: rgba(255, 71, 111, 0.2);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.header-container {
  max-width: 1220px;
  margin: 0 auto;
  padding: 0.8rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  color: inherit;
  flex-shrink: 0;
}

.logo-crest {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(255, 71, 111, 0.2), rgba(245, 158, 11, 0.15));
  border: 1px solid rgba(255, 71, 111, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-rose);
  box-shadow: 0 0 16px rgba(255, 71, 111, 0.2);
}

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

.brand-name {
  font-family: var(--font-serif);
  font-size: 1.18rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #fff;
  line-height: 1.1;
  white-space: nowrap;
}

.brand-sub {
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--accent-sage);
  white-space: nowrap;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 1.6rem;
}

.nav-item {
  color: #d1d5db;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: var(--transition-smooth);
  position: relative;
  white-space: nowrap !important;
}

.nav-item:hover {
  color: #fff;
}

.nav-item::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-rose);
  transition: width 0.3s ease;
}

.nav-item:hover::after {
  width: 100%;
}

.nav-badge-item {
  color: var(--accent-rose);
  font-weight: 600;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  flex-shrink: 0;
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.4rem;
}

.mobile-toggle span {
  width: 22px;
  height: 2px;
  background: #fff;
  transition: 0.3s ease;
}

/* Mobile Drawer */
.mobile-drawer {
  display: none;
}

/* --------------------------------------------------------------------------
   6. Hero Section: Asymmetrical Editorial Magazine & Live Mood Bar
   -------------------------------------------------------------------------- */
.hero-section {
  padding: 2rem 0 4.5rem 0;
  position: relative;
}

/* Mood Bar Switcher */
.mood-bar-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.8rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  padding: 0.45rem 1.1rem;
  margin-bottom: 2.5rem;
  max-width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.mood-bar-label {
  font-size: 0.78rem;
  font-weight: 600;
  color: #9ca3af;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.mood-pill-group {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.mood-btn {
  background: transparent;
  border: 1px solid transparent;
  color: #d1d5db;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  transition: var(--transition-smooth);
  white-space: nowrap !important;
}

.mood-btn:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
}

.mood-btn.active {
  background: var(--accent-rose);
  color: #fff;
  box-shadow: 0 2px 14px var(--accent-rose-glow);
}

/* Hero Mosaic Grid */
.hero-mosaic-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3.5rem;
  align-items: center;
}

.hero-hand-tag {
  display: inline-flex;
  position: relative;
  margin-bottom: 1.1rem;
}

.tape-strip {
  position: absolute;
  top: -8px;
  left: 20px;
  width: 48px;
  height: 15px;
  background: rgba(245, 158, 11, 0.45);
  transform: rotate(-3deg);
  border-radius: 2px;
  backdrop-filter: blur(2px);
}

.hand-tag-text {
  font-family: var(--font-hand);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  font-weight: 700;
  color: var(--accent-gold);
  background: rgba(245, 158, 11, 0.12);
  border: 1px dashed rgba(245, 158, 11, 0.35);
  padding: 0.25rem 0.85rem;
  border-radius: 6px;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.hero-headline {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4.2vw, 3.4rem);
  font-weight: 700;
  line-height: 1.18;
  color: #ffffff;
  margin-bottom: 1.3rem;
}

.italic-serif {
  font-style: italic;
  font-weight: 400;
}

.text-blush {
  color: #fbcfe8;
  text-shadow: 0 0 20px rgba(251, 207, 232, 0.3);
}

.highlight-stroke {
  color: var(--accent-rose);
  position: relative;
  display: inline-block;
}

.hero-lead {
  font-size: clamp(0.95rem, 1.6vw, 1.06rem);
  color: #d1d5db;
  line-height: 1.68;
  margin-bottom: 1.6rem;
  max-width: 580px;
}

/* Dynamic Vibe Ticker Card */
.vibe-ticker-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-left: 3px solid var(--accent-rose);
  border-radius: 12px;
  padding: 0.9rem 1.15rem;
  margin-bottom: 1.8rem;
  max-width: 580px;
  backdrop-filter: blur(10px);
}

.ticker-indicator {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 0.3rem;
}

.ticker-pulse {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent-rose);
  box-shadow: 0 0 8px var(--accent-rose);
}

.ticker-title {
  font-size: 0.78rem;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.ticker-quote {
  font-family: var(--font-hand);
  font-size: clamp(1.05rem, 2.2vw, 1.25rem);
  line-height: 1.45;
  color: #fce7f3;
  margin: 0;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.hero-quick-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.2rem;
  padding-top: 1.1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.quick-meta-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.84rem;
  color: #9ca3af;
  white-space: nowrap;
}

.qm-icon {
  font-size: 0.95rem;
}

/* Right: Tilted Polaroid Collage */
.hero-visual-collage {
  position: relative;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
}

/* Rotating Stamp */
.rotating-seal {
  position: absolute;
  top: -15px;
  right: 15px;
  width: 110px;
  height: 110px;
  z-index: 10;
  pointer-events: none;
}

.rotating-seal svg {
  animation: rotateSeal 22s linear infinite;
  width: 100%;
  height: 100%;
}

@keyframes rotateSeal {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.seal-center-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 1.4rem;
}

/* Polaroids */
.polaroid-card {
  position: absolute;
  background: #fdfbf7;
  padding: 0.8rem 0.8rem 1.1rem 0.8rem;
  border-radius: 4px;
  box-shadow: var(--shadow-polaroid);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), z-index 0.2s ease;
  cursor: pointer;
}

.polaroid-card:hover {
  transform: scale(1.04) rotate(0deg) !important;
  z-index: 15 !important;
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.8), var(--shadow-glow-rose);
}

.polaroid-media {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
}

.polaroid-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.polaroid-stamp {
  position: absolute;
  top: 8px;
  right: 8px;
  background: var(--accent-rose);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 0.18rem 0.45rem;
  border-radius: 4px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.5);
  white-space: nowrap;
}

.polaroid-caption {
  padding-top: 0.6rem;
  text-align: center;
  color: #1a1a1a;
}

.caption-hand {
  display: block;
  font-family: var(--font-hand);
  font-size: 1.18rem;
  font-weight: 700;
  color: #18181b;
  line-height: 1.1;
  white-space: nowrap;
}

.caption-sub {
  font-size: 0.7rem;
  color: #52525b;
  white-space: nowrap;
}

/* Washi Tape Strip */
.washi-tape {
  position: absolute;
  background: rgba(245, 158, 11, 0.55);
  backdrop-filter: blur(3px);
  box-shadow: 0 2px 5px rgba(0,0,0,0.15);
  z-index: 5;
}

.tape-top-center {
  top: -10px;
  left: 50%;
  transform: translateX(-50%) rotate(2deg);
  width: 75px;
  height: 20px;
}

.tape-top-right {
  top: -9px;
  right: 18px;
  transform: rotate(-4deg);
  width: 55px;
  height: 17px;
  background: rgba(52, 211, 153, 0.5);
}

.tape-bottom-left {
  bottom: -9px;
  left: 18px;
  transform: rotate(5deg);
  width: 60px;
  height: 17px;
  background: rgba(255, 71, 111, 0.5);
}

/* Position specifics for collage */
.polaroid-main {
  width: 310px;
  z-index: 4;
  transform: rotate(-2deg);
  top: 35px;
  left: 40px;
}

.polaroid-main .polaroid-media {
  height: 270px;
}

.polaroid-secondary {
  width: 215px;
  z-index: 2;
  transform: rotate(7deg);
  top: 15px;
  right: 15px;
}

.polaroid-secondary .polaroid-media {
  height: 175px;
}

.polaroid-tertiary {
  width: 225px;
  z-index: 3;
  transform: rotate(-9deg);
  bottom: 20px;
  right: 35px;
}

.polaroid-tertiary .polaroid-media {
  height: 165px;
}

/* --------------------------------------------------------------------------
   7. Section 2: Visual Scrapbook Moments (Pinboard Vignettes)
   -------------------------------------------------------------------------- */
.scrapbook-section {
  padding: 4.5rem 0;
  background: rgba(0, 0, 0, 0.2);
  position: relative;
}

.scrapbook-header {
  text-align: center;
  max-width: 660px;
  margin: 0 auto 3rem auto;
}

.header-stamp {
  display: inline-block;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: var(--accent-gold);
  background: rgba(245, 158, 11, 0.12);
  border: 1px solid rgba(245, 158, 11, 0.3);
  padding: 0.22rem 0.75rem;
  border-radius: 999px;
  margin-bottom: 0.75rem;
  white-space: nowrap;
}

.scrapbook-title {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.7rem;
}

.scrapbook-subtitle {
  font-size: clamp(0.88rem, 1.6vw, 0.98rem);
  color: #9ca3af;
}

.scrapbook-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.8rem;
}

.scrapbook-item {
  background: var(--bg-surface-elevated);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 1.15rem;
  position: relative;
  transition: var(--transition-smooth);
}

.scrapbook-item:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 71, 111, 0.3);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.5), var(--shadow-glow-rose);
}

.pin-clip {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 1.2rem;
  z-index: 5;
}

.scrapbook-img-frame {
  position: relative;
  height: 200px;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 1rem;
}

.scrapbook-img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.scrapbook-item:hover .scrapbook-img-frame img {
  transform: scale(1.05);
}

.scrapbook-neon-tag {
  position: absolute;
  bottom: 8px;
  left: 8px;
  background: rgba(0, 0, 0, 0.8);
  border: 1px solid var(--accent-rose);
  color: var(--accent-rose);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  padding: 0.18rem 0.5rem;
  border-radius: 4px;
  backdrop-filter: blur(6px);
  white-space: nowrap;
}

.tag-amber {
  border-color: var(--accent-gold);
  color: var(--accent-gold);
}

.tag-green {
  border-color: var(--accent-sage);
  color: var(--accent-sage);
}

.tag-red {
  border-color: #ef4444;
  color: #ef4444;
}

.scrapbook-num {
  font-size: 0.72rem;
  font-weight: 700;
  color: #9ca3af;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.25rem;
  white-space: nowrap;
}

.scrapbook-h3 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: #fff;
  margin-bottom: 0.5rem;
  line-height: 1.25;
}

.scrapbook-desc {
  font-size: 0.86rem;
  color: #d1d5db;
  line-height: 1.58;
  margin-bottom: 0.9rem;
}

.scrapbook-footnote {
  font-size: 0.75rem;
  color: var(--accent-gold);
  padding-top: 0.6rem;
  border-top: 1px dashed rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.fn-star {
  color: var(--accent-rose);
}

/* --------------------------------------------------------------------------
   8. Section 3: The Vibe & Bite Matchmaker (Gamified Quiz Engine)
   -------------------------------------------------------------------------- */
.matchmaker-section {
  padding: 4.5rem 0;
  position: relative;
}

.matchmaker-box {
  background: linear-gradient(135deg, rgba(26, 35, 27, 0.95), rgba(19, 26, 20, 0.98));
  border: 1px solid rgba(255, 71, 111, 0.25);
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), 0 0 40px rgba(255, 71, 111, 0.12);
  position: relative;
}

.matchmaker-header {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 2.2rem auto;
}

.mm-badge {
  display: inline-block;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--accent-rose);
  background: rgba(255, 71, 111, 0.12);
  border: 1px solid rgba(255, 71, 111, 0.3);
  padding: 0.22rem 0.75rem;
  border-radius: 999px;
  margin-bottom: 0.75rem;
  white-space: nowrap;
}

.mm-title {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 3vw, 2.4rem);
  color: #fff;
  margin-bottom: 0.55rem;
}

.mm-sub {
  font-size: clamp(0.88rem, 1.5vw, 0.95rem);
  color: #9ca3af;
}

.matchmaker-steps {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
  margin-bottom: 2.2rem;
}

.step-label {
  font-size: 0.84rem;
  font-weight: 700;
  color: #f3f4f6;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
}

.choice-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.choice-pill {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #d1d5db;
  padding: 0.55rem 1.05rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  transition: var(--transition-smooth);
  white-space: nowrap !important;
}

.choice-pill:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.25);
  color: #fff;
}

.choice-pill.active {
  background: rgba(255, 71, 111, 0.2);
  border-color: var(--accent-rose);
  color: #fff;
  box-shadow: 0 0 16px rgba(255, 71, 111, 0.3);
}

/* Dynamic Recommendation Result Card */
.match-result-card {
  background: rgba(0, 0, 0, 0.45);
  border: 1px dashed rgba(245, 158, 11, 0.4);
  border-radius: 16px;
  padding: 1.6rem;
  position: relative;
}

.result-badge {
  position: absolute;
  top: -11px;
  left: 20px;
  background: var(--accent-gold);
  color: #000;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 0.18rem 0.55rem;
  border-radius: 4px;
  white-space: nowrap;
}

.result-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 1.3rem;
  margin-bottom: 1.4rem;
}

.result-cell {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.cell-k {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #9ca3af;
  white-space: nowrap;
}

.cell-v {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
}

.highlight-price {
  color: var(--accent-gold);
}

.result-action {
  text-align: right;
}

/* --------------------------------------------------------------------------
   9. Section 4: Artisan Chalkboard Bistro Menu (Open Docket Ledger)
   -------------------------------------------------------------------------- */
.blackboard-section {
  padding: 4.5rem 0;
  position: relative;
}

.blackboard-frame {
  background: var(--bg-chalkboard);
  border: 6px solid #222c23;
  border-radius: 18px;
  box-shadow: inset 0 0 40px rgba(0, 0, 0, 0.8), 0 20px 60px rgba(0, 0, 0, 0.7);
  padding: 2.5rem;
  position: relative;
}

.chalkboard-top {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 2.5rem auto;
}

.chalk-badge {
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  color: #a7f3d0;
  margin-bottom: 0.55rem;
  font-weight: 700;
  white-space: nowrap;
}

.chalk-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.4vw, 2.7rem);
  color: #fff;
  margin-bottom: 0.55rem;
}

.chalk-subtitle {
  font-size: clamp(0.88rem, 1.5vw, 0.95rem);
  color: #9ca3af;
  margin-bottom: 1.6rem;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}

/* Chalk Tabs - Single horizontal line on desktop */
.chalk-tabs {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  gap: 0.55rem;
  width: 100%;
}

.chalk-tab {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #d1d5db;
  padding: 0.45rem 0.95rem;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-smooth);
  white-space: nowrap !important;
  flex-shrink: 0;
}

.chalk-tab:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.chalk-tab.active {
  background: var(--accent-gold);
  color: #000;
  border-color: var(--accent-gold);
  font-weight: 700;
}

/* Docket Ledger */
.docket-ledger {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2.5rem;
}

.ledger-heading {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-bottom: 1.6rem;
}

.ledger-heading span:first-child {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--accent-sage);
}

.chalk-line {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.12);
  position: relative;
}

.ledger-items-list {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.docket-item {
  padding: 0.8rem 0.95rem;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid transparent;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.docket-item:hover, .docket-item.active-dish {
  background: rgba(255, 71, 111, 0.08);
  border-color: rgba(255, 71, 111, 0.25);
  transform: translateX(4px);
}

.docket-line {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.6rem;
  margin-bottom: 0.35rem;
}

.d-name {
  font-family: var(--font-serif);
  font-size: clamp(0.98rem, 2vw, 1.15rem);
  font-weight: 700;
  color: #fff;
  flex-shrink: 1;
}

.d-dots {
  flex: 1 1 auto;
  min-width: 15px;
  border-bottom: 1px dotted rgba(255, 255, 255, 0.2);
}

.d-price {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--accent-gold);
  white-space: nowrap !important;
  flex-shrink: 0;
}

.d-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.d-tag {
  font-size: 0.7rem;
  padding: 0.12rem 0.45rem;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.06);
  color: #9ca3af;
  white-space: nowrap;
}

.tag-hot {
  background: rgba(239, 68, 68, 0.2);
  color: #fca5a5;
  font-weight: 600;
}

.tag-loved {
  background: rgba(255, 71, 111, 0.2);
  color: #fbcfe8;
  font-weight: 600;
}

.tag-veg {
  background: rgba(52, 211, 153, 0.2);
  color: #6ee7b7;
  font-weight: 600;
}

.tag-sweet {
  background: rgba(245, 158, 11, 0.2);
  color: #fde68a;
  font-weight: 600;
}

/* Spotlight Box */
.docket-spotlight {
  display: flex;
  align-items: center;
  gap: 1.8rem;
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  padding: 1.35rem;
  backdrop-filter: blur(10px);
}

.spotlight-photo {
  width: 120px;
  height: 100px;
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
}

.spotlight-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.spotlight-info {
  flex: 1;
}

.spotlight-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.3rem;
  gap: 0.8rem;
}

.spotlight-header h4 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: #fff;
}

.spotlight-price {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--accent-rose);
  white-space: nowrap;
}

.spotlight-info p {
  font-size: 0.86rem;
  color: #d1d5db;
  line-height: 1.5;
  margin-bottom: 0.45rem;
}

.spotlight-tip {
  font-size: 0.78rem;
  color: var(--accent-gold);
}

/* --------------------------------------------------------------------------
   10. Section 5: The Live Café Boarding Pass / Ticket Reservation Engine
   -------------------------------------------------------------------------- */
.table-pass-section {
  padding: 4.5rem 0;
  position: relative;
}

.pass-header {
  max-width: 660px;
  margin: 0 auto 2.8rem auto;
}

.pass-badge {
  display: inline-block;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--accent-gold);
  background: rgba(245, 158, 11, 0.12);
  border: 1px solid rgba(245, 158, 11, 0.3);
  padding: 0.22rem 0.75rem;
  border-radius: 999px;
  margin-bottom: 0.75rem;
  white-space: nowrap;
}

.pass-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.4vw, 2.7rem);
  color: #fff;
  margin-bottom: 0.55rem;
}

.pass-subtitle {
  font-size: clamp(0.88rem, 1.5vw, 0.98rem);
  color: #9ca3af;
}

.pass-interactive-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2.8rem;
  align-items: start;
}

/* Pass Form */
.pass-form {
  background: var(--bg-surface-elevated);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.15rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.form-group label {
  font-size: 0.8rem;
  font-weight: 600;
  color: #d1d5db;
}

.form-input, .form-select {
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff;
  padding: 0.7rem 0.95rem;
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.9rem;
  transition: var(--transition-smooth);
}

.form-input:focus, .form-select:focus {
  outline: none;
  border-color: var(--accent-rose);
  box-shadow: 0 0 14px var(--accent-rose-glow);
}

.pass-submit-btn {
  width: 100%;
  margin-top: 0.5rem;
}

/* Right Side: The Live Generated Vintage Bistro Ticket */
.live-ticket-pass {
  background: #fbf7ee;
  color: #1a1a1a;
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7), 0 0 30px rgba(245, 158, 11, 0.15);
  position: relative;
  overflow: hidden;
  transition: var(--transition-smooth);
}

.ticket-header {
  padding: 1.3rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #f4ede0;
}

.ticket-brand {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.t-icon {
  font-size: 1.5rem;
}

.t-name {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 800;
  color: #0f140e;
  line-height: 1.1;
  white-space: nowrap;
}

.t-sub {
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: #78350f;
  white-space: nowrap;
}

.ticket-status-stamp {
  border: 2px solid #b45309;
  color: #b45309;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 0.18rem 0.5rem;
  border-radius: 4px;
  transform: rotate(-3deg);
  white-space: nowrap !important;
}

/* Tear Line */
.ticket-tear-line {
  position: relative;
  display: flex;
  align-items: center;
  height: 20px;
  background: #fbf7ee;
}

.tear-notch {
  width: 20px;
  height: 20px;
  background: var(--bg-primary);
  border-radius: 50%;
  position: absolute;
  top: 0;
}

.notch-left {
  left: -10px;
}

.notch-right {
  right: -10px;
}

.tear-dots {
  flex: 1;
  margin: 0 15px;
  border-bottom: 2px dashed #d6cfc2;
}

/* Ticket Content */
.ticket-body {
  padding: 1.35rem 1.5rem;
}

.ticket-meta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.1rem;
  margin-bottom: 1.3rem;
}

.t-field {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.t-field.full-width {
  grid-column: 1 / -1;
}

.tf-label {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #71717a;
  white-space: nowrap;
}

.tf-val {
  font-size: 0.98rem;
  font-weight: 700;
  color: #18181b;
}

.font-mono {
  font-family: monospace;
}

.text-accent-rose {
  color: #e11d48;
}

.ticket-perks {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  font-size: 0.72rem;
  font-weight: 600;
  color: #047857;
  padding-bottom: 1.1rem;
  border-bottom: 1px solid #e4dccf;
  margin-bottom: 1.1rem;
}

.ticket-perks span {
  white-space: nowrap;
}

/* Barcode */
.ticket-barcode {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
}

.barcode-bars {
  display: flex;
  gap: 2px;
  height: 32px;
  align-items: flex-end;
}

.barcode-bars span {
  background: #18181b;
  width: 2px;
  height: 100%;
}

.barcode-bars span:nth-child(2n) { width: 3px; }
.barcode-bars span:nth-child(3n) { width: 1px; }
.barcode-bars span:nth-child(5n) { width: 4px; }

.barcode-num {
  font-family: monospace;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  color: #71717a;
  white-space: nowrap;
}

.ticket-confirmed-banner {
  background: #047857;
  color: #fff;
  padding: 1.1rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.55rem;
}

.tc-stamp {
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: 0.1em;
  white-space: nowrap;
}

/* --------------------------------------------------------------------------
   11. Section 6: Sticky Notes Corkboard (Community Reviews)
   -------------------------------------------------------------------------- */
.community-section {
  padding: 4.5rem 0;
  position: relative;
}

.sticky-notes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.sticky-note {
  padding: 1.8rem 1.6rem;
  border-radius: 4px;
  color: #1f2937;
  position: relative;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.4);
  transition: var(--transition-smooth);
}

.note-peach {
  background: #fee2e2;
  transform: rotate(-2deg);
}

.note-sage {
  background: #d1fae5;
  transform: rotate(2.5deg);
}

.note-lemon {
  background: #fef3c7;
  transform: rotate(-1.5deg);
}

.sticky-note:hover {
  transform: scale(1.04) rotate(0deg) !important;
  z-index: 10;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
}

.pin-top {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 1.2rem;
}

.note-stars {
  color: #f59e0b;
  font-size: 1.05rem;
  letter-spacing: 0.1em;
  margin-bottom: 0.7rem;
}

.note-body {
  font-family: var(--font-sans);
  font-size: 0.92rem;
  line-height: 1.6;
  color: #27272a;
  margin-bottom: 1.1rem;
  font-style: italic;
}

.note-author {
  display: flex;
  flex-direction: column;
  font-size: 0.8rem;
}

.note-author strong {
  color: #09090b;
}

.note-author span {
  color: #71717a;
}

/* --------------------------------------------------------------------------
   12. Section 7: Neighborhood Pocket Guide & Map
   -------------------------------------------------------------------------- */
.neighborhood-section {
  padding: 4rem 0 5.5rem 0;
  position: relative;
}

.guide-card {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  background: var(--bg-surface);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.guide-content {
  padding: 3rem;
}

.guide-tag {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: var(--accent-sage);
  margin-bottom: 0.55rem;
  white-space: nowrap;
}

.guide-title {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3vw, 2.3rem);
  color: #fff;
  margin-bottom: 0.75rem;
}

.guide-lead {
  font-size: 0.95rem;
  color: #9ca3af;
  margin-bottom: 1.8rem;
}

.landmark-list {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin-bottom: 2rem;
}

.landmark-item {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
}

.lm-icon {
  font-size: 1.3rem;
  padding: 0.45rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  flex-shrink: 0;
}

.lm-title {
  font-weight: 700;
  color: #fff;
  font-size: 0.92rem;
}

.lm-desc {
  font-size: 0.82rem;
  color: #9ca3af;
}

.guide-actions {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex-wrap: wrap;
}

.guide-visual {
  position: relative;
  overflow: hidden;
}

.guide-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.guide-visual-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13, 18, 14, 0.9), transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 1.8rem;
}

.gvo-badge {
  background: rgba(0, 0, 0, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  padding: 0.45rem 0.9rem;
  border-radius: 8px;
  font-size: 0.8rem;
  backdrop-filter: blur(8px);
}

/* --------------------------------------------------------------------------
   13. Modal Backdrop & Card
   -------------------------------------------------------------------------- */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.modal-backdrop.open {
  opacity: 1;
  pointer-events: auto;
}

.modal-card {
  background: #141a14;
  border: 1px solid rgba(255, 71, 111, 0.3);
  border-radius: 18px;
  max-width: 460px;
  width: 100%;
  padding: 2rem;
  text-align: center;
  position: relative;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8), 0 0 40px rgba(255, 71, 111, 0.2);
}

.modal-close-btn {
  position: absolute;
  top: 14px;
  right: 16px;
  background: none;
  border: none;
  font-size: 1.7rem;
  color: #9ca3af;
  cursor: pointer;
}

.modal-icon-wrap {
  font-size: 2rem;
  margin-bottom: 0.7rem;
}

.modal-title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: 0.35rem;
}

.modal-sub {
  font-size: 0.88rem;
  color: #d1d5db;
  margin-bottom: 1.35rem;
}

.modal-summary-box {
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  margin-bottom: 1.1rem;
  text-align: left;
  font-size: 0.86rem;
}

.m-sum-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.m-sum-row span {
  color: #9ca3af;
}

.modal-note {
  font-size: 0.8rem;
  color: #9ca3af;
  margin-bottom: 1.35rem;
}

.modal-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

/* --------------------------------------------------------------------------
   14. Footer with Engineering Credit to Debashish Paul
   -------------------------------------------------------------------------- */
.site-footer {
  background: #080c09;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 4.5rem 0 2.5rem 0;
  position: relative;
  z-index: 10;
}

.footer-container {
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.1fr 1.2fr 1.5fr;
  gap: 2.2rem;
  margin-bottom: 3.5rem;
}

.footer-brand-desc {
  font-size: 0.86rem;
  color: #9ca3af;
  line-height: 1.58;
  margin: 0.9rem 0 1.3rem 0;
}

.social-links-row {
  display: flex;
  gap: 0.55rem;
}

.soc-circle {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #d1d5db;
  text-decoration: none;
  transition: var(--transition-smooth);
}

.soc-circle:hover {
  background: var(--accent-rose);
  border-color: var(--accent-rose);
  color: #fff;
  transform: translateY(-2px);
}

.footer-col-title {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: #fff;
  margin-bottom: 1.1rem;
  white-space: nowrap;
}

.footer-nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-nav-list a {
  color: #9ca3af;
  text-decoration: none;
  font-size: 0.86rem;
  transition: var(--transition-smooth);
  white-space: nowrap;
}

.footer-nav-list a:hover {
  color: var(--accent-rose);
  transform: translateX(3px);
}

.f-info-line {
  font-size: 0.84rem;
  color: #9ca3af;
  line-height: 1.52;
  margin-bottom: 0.75rem;
}

.f-info-line strong {
  color: #e5e7eb;
}

.f-info-line a {
  color: var(--accent-gold);
  text-decoration: none;
}

/* Col 5: Portfolio Credit */
.footer-credit-col {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 1.35rem;
}

.credit-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--accent-gold);
  margin-bottom: 0.55rem;
  white-space: nowrap;
}

.cr-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent-gold);
}

.credit-title {
  font-size: 0.92rem;
  color: #fff;
  margin-bottom: 0.35rem;
}

.credit-desc {
  font-size: 0.8rem;
  color: #9ca3af;
  line-height: 1.48;
  margin-bottom: 0.95rem;
}

.credit-meta-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-bottom: 1.1rem;
}

.cm-tag {
  font-size: 0.68rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0.15rem 0.45rem;
  border-radius: 4px;
  color: #d1d5db;
  white-space: nowrap;
}

.credit-btn {
  width: 100%;
}

.footer-bottom-bar {
  padding-top: 1.8rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  color: #6b7280;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.dp-link {
  color: var(--accent-rose);
  text-decoration: none;
  font-weight: 600;
}

.footer-bottom-links {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer-bottom-links a {
  color: #9ca3af;
  text-decoration: none;
  white-space: nowrap;
}

.footer-bottom-links a:hover {
  color: #fff;
}

/* --------------------------------------------------------------------------
   15. Responsive Breakpoints & Device Optimizations
   -------------------------------------------------------------------------- */
/* Large Tablets / Laptops */
@media (max-width: 1120px) {
  .hero-mosaic-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .hero-visual-collage {
    height: 440px;
    max-width: 580px;
    margin: 0 auto;
  }

  .docket-ledger {
    grid-template-columns: 1fr;
    gap: 2.2rem;
  }

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

  .footer-credit-col {
    grid-column: 1 / -1;
  }
}

/* Tablets & Mobile (<= 860px) */
@media (max-width: 860px) {
  .header-actions .btn {
    display: none !important;
  }

  .chalk-tabs {
    flex-wrap: wrap;
    gap: 0.45rem;
  }

  .pass-interactive-grid {
    grid-template-columns: 1fr;
  }

  .guide-card {
    grid-template-columns: 1fr;
  }

  .guide-visual {
    height: 240px;
  }

  .main-nav {
    display: none;
  }

  .mobile-toggle {
    display: flex;
  }

  .mobile-drawer {
    display: block;
    position: fixed;
    top: 55px;
    right: -100%;
    width: 280px;
    height: calc(100vh - 55px);
    background: #0d120e;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 95;
    transition: right 0.3s ease;
    padding: 1.8rem 1.4rem;
    overflow-y: auto;
  }

  .mobile-drawer.open {
    right: 0;
  }

  .drawer-links {
    display: flex;
    flex-direction: column;
    gap: 1.15rem;
  }

  .drawer-item {
    color: #d1d5db;
    text-decoration: none;
    font-size: 0.98rem;
    font-weight: 500;
    white-space: nowrap !important;
  }

  .drawer-cta {
    color: var(--accent-rose);
    font-weight: 700;
  }

  .drawer-back {
    margin-top: 0.8rem;
    padding-top: 0.8rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--accent-gold);
  }
}

/* Mobile Devices (<= 640px) */
@media (max-width: 640px) {
  .top-announcement-bar {
    padding: 0.4rem 0;
  }

  .bar-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.4rem;
  }

  .bar-left, .bar-right {
    justify-content: center;
    width: 100%;
    gap: 0.6rem;
  }

  .bar-text {
    font-size: 0.78rem;
  }

  .return-link {
    font-size: 0.76rem;
    padding: 0.2rem 0.55rem;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

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

  .matchmaker-box {
    padding: 1.8rem 1.4rem;
  }

  .blackboard-frame {
    padding: 1.6rem 1.2rem;
  }

  .pass-form {
    padding: 1.6rem 1.2rem;
  }

  .guide-content {
    padding: 2rem 1.4rem;
  }

  .docket-spotlight {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.2rem;
  }

  .spotlight-photo {
    width: 100%;
    height: 160px;
  }

  .hero-visual-collage {
    height: 380px;
    max-width: 100%;
  }

  .polaroid-main {
    width: 250px;
    left: 20px;
    top: 25px;
  }

  .polaroid-main .polaroid-media {
    height: 210px;
  }

  .polaroid-secondary {
    width: 170px;
    right: 10px;
    top: 15px;
  }

  .polaroid-secondary .polaroid-media {
    height: 135px;
  }

  .polaroid-tertiary {
    width: 175px;
    right: 25px;
    bottom: 15px;
  }

  .polaroid-tertiary .polaroid-media {
    height: 130px;
  }

  .rotating-seal {
    width: 90px;
    height: 90px;
    top: -10px;
    right: 5px;
  }
}

/* Small Mobile Screens (<= 480px, e.g. iPhone 14/15, SE, Android) */
@media (max-width: 480px) {
  .section-container {
    padding: 0 1rem;
  }

  .hero-headline {
    font-size: clamp(1.85rem, 7vw, 2.3rem);
  }

  .mood-bar-wrapper {
    width: 100%;
    border-radius: 16px;
    padding: 0.6rem 0.8rem;
  }

  .mood-pill-group {
    width: 100%;
    gap: 0.35rem;
  }

  .mood-btn {
    font-size: 0.76rem;
    padding: 0.3rem 0.65rem;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .hero-actions .btn {
    width: 100%;
    font-size: 0.92rem;
    padding: 0.75rem 1rem;
  }

  .quick-meta-item {
    font-size: 0.78rem;
  }

  .hero-visual-collage {
    height: 320px;
  }

  .polaroid-main {
    width: 210px;
    left: 10px;
    top: 20px;
  }

  .polaroid-main .polaroid-media {
    height: 175px;
  }

  .polaroid-secondary {
    width: 145px;
    right: 5px;
    top: 10px;
  }

  .polaroid-secondary .polaroid-media {
    height: 115px;
  }

  .polaroid-tertiary {
    width: 155px;
    right: 15px;
    bottom: 10px;
  }

  .polaroid-tertiary .polaroid-media {
    height: 115px;
  }

  .choice-pill {
    font-size: 0.78rem;
    padding: 0.45rem 0.85rem;
  }

  .chalk-tab {
    font-size: 0.76rem;
    padding: 0.38rem 0.75rem;
  }

  .result-action #applyMatchToPassBtn {
    width: 100%;
    font-size: 0.86rem;
    padding: 0.65rem 1rem;
  }

  .pass-submit-btn {
    font-size: 0.9rem;
    padding: 0.75rem 1rem;
  }

  .d-name {
    font-size: 0.95rem;
  }

  .d-price {
    font-size: 0.95rem;
  }

  .ticket-meta-grid {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }

  .ticket-header {
    padding: 1rem 1.1rem;
  }

  .ticket-body {
    padding: 1.1rem;
  }

  .guide-actions {
    flex-direction: column;
    width: 100%;
  }

  .guide-actions .btn {
    width: 100%;
  }
}

/* Very Small Mobile Screens (<= 360px, e.g. Galaxy Z Fold outer, iPhone mini) */
@media (max-width: 360px) {
  .brand-name {
    font-size: 1.02rem;
  }

  .logo-crest {
    width: 34px;
    height: 34px;
  }

  .btn-sm {
    padding: 0.4rem 0.85rem;
    font-size: 0.78rem;
  }

  .choice-pill {
    font-size: 0.74rem;
    padding: 0.4rem 0.75rem;
  }

  .hero-visual-collage {
    height: 280px;
  }

  .polaroid-main {
    width: 180px;
  }

  .polaroid-main .polaroid-media {
    height: 150px;
  }

  .polaroid-secondary, .polaroid-tertiary {
    display: none; /* Hide background clutter on extremely narrow 320px screens */
  }

  .rotating-seal {
    width: 75px;
    height: 75px;
  }
}
