@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800&family=Noto+Sans+KR:wght@300;400;500;700;900&display=swap');

:root {
  /* Colors */
  --bg-color: #06050a;
  --bg-gradient: linear-gradient(135deg, #06050a 0%, #0e0b16 100%);
  --bg-card: rgba(18, 16, 28, 0.65);
  --bg-card-hover: rgba(26, 23, 40, 0.85);
  --bg-header: rgba(6, 5, 10, 0.85);
  --bg-modal: rgba(12, 10, 18, 0.95);
  
  --border-color: rgba(255, 255, 255, 0.07);
  --border-hover: rgba(223, 183, 108, 0.35);
  --border-neon: rgba(189, 94, 255, 0.3);
  
  --text-primary: #ffffff;
  --text-secondary: #a4a1b5;
  --text-muted: #6e6b82;
  
  /* Brand Accents */
  --accent-gold: #dfb76c;
  --accent-gold-hover: #f0cb85;
  --accent-gold-glow: rgba(223, 183, 108, 0.4);
  --accent-pink: #ff007f;
  --accent-purple: #9d4edd;
  --accent-cyan: #00f0ff;
  
  /* Fonts */
  --font-display: 'Outfit', 'Noto Sans KR', sans-serif;
  --font-body: 'Inter', 'Noto Sans KR', sans-serif;
  
  /* Shadows & Blur */
  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.3), 0 4px 6px -2px rgba(0, 0, 0, 0.15);
  --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.5), 0 10px 10px -5px rgba(0, 0, 0, 0.3);
  --shadow-neon-pink: 0 0 15px rgba(255, 0, 127, 0.3);
  --shadow-neon-gold: 0 0 15px rgba(223, 183, 108, 0.25);
  --blur-val: 12px;
  
  /* Layout */
  --max-width: 1200px;
  --transition-smooth: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Base Styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background-color: var(--bg-color);
  background-image: var(--bg-gradient);
  color: var(--text-primary);
  font-family: var(--font-body);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Accessibility: Focus visible outline ring */
*:focus-visible {
  outline: 2px solid var(--accent-gold);
  outline-offset: 4px;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-color);
}
::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--accent-gold);
}

/* Typography */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  line-height: 1.15;
}

h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  margin-bottom: 1rem;
}

p {
  color: var(--text-secondary);
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-smooth);
}

/* Screen reader only utility class for clean SEO H1 tag */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Header & Nav */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background-color: var(--bg-header);
  backdrop-filter: blur(var(--blur-val));
  -webkit-backdrop-filter: blur(var(--blur-val));
  border-bottom: 1px solid var(--border-color);
  transition: var(--transition-smooth);
}

header.scrolled {
  padding: 0.5rem 0;
  box-shadow: var(--shadow-md);
}

.header-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.5rem;
  letter-spacing: 0.05em;
  background: linear-gradient(90deg, var(--text-primary) 0%, var(--accent-gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo span {
  color: var(--accent-gold);
}

.nav-menu {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-secondary);
  position: relative;
  padding: 0.25rem 0;
}

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

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-gold);
  transition: var(--transition-smooth);
}

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

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--accent-gold) 0%, #b3893c 100%);
  color: #000;
  padding: 0.6rem 1.2rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: var(--shadow-neon-gold);
  transition: var(--transition-smooth);
}

.header-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 20px rgba(223, 183, 108, 0.45);
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10rem 1.5rem 4rem;
  overflow: hidden;
  background: radial-gradient(circle at center, rgba(15, 10, 30, 0.3) 0%, var(--bg-color) 80%);
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  object-fit: cover;
  opacity: 0.35;
  filter: brightness(0.6) contrast(1.1) saturate(1.2);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: linear-gradient(to bottom, rgba(6, 5, 10, 0.5) 0%, var(--bg-color) 95%);
}

.hero-content {
  max-width: 850px;
  text-align: center;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-neon);
  padding: 0.5rem 1.2rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent-gold);
  margin-bottom: 1.5rem;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  letter-spacing: 0.05em;
  box-shadow: 0 0 15px rgba(189, 94, 255, 0.15);
}

.hero-title {
  font-family: var(--font-display);
  color: var(--text-primary);
  margin-bottom: 1.5rem;
  text-shadow: 0 5px 15px rgba(0,0,0,0.5);
}

.hero-title span {
  display: block;
  font-size: 0.4em;
  text-transform: uppercase;
  letter-spacing: 0.35em;
  color: var(--text-secondary);
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.hero-title em {
  font-style: normal;
  background: linear-gradient(90deg, #ff007f 0%, var(--accent-gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-desc {
  font-size: 1.15rem;
  max-width: 650px;
  margin: 0 auto 2.5rem;
  color: var(--text-secondary);
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 2rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-gold) 0%, #b3893c 100%);
  color: #000;
  box-shadow: var(--shadow-neon-gold);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 25px rgba(223, 183, 108, 0.5);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-color);
  color: var(--text-primary);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255,255,255,0.2);
  transform: translateY(-3px);
}

/* Dynamic Filter & Search Section */
.search-filter-section {
  max-width: var(--max-width);
  margin: -3rem auto 4rem;
  padding: 0 1.5rem;
  position: relative;
  z-index: 10;
}

.filter-panel {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 24px;
  padding: 2rem;
  backdrop-filter: blur(var(--blur-val));
  -webkit-backdrop-filter: blur(var(--blur-val));
  box-shadow: var(--shadow-lg);
}

.search-box-wrapper {
  position: relative;
  margin-bottom: 1.5rem;
}

.search-input {
  width: 100%;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid var(--border-color);
  padding: 1.1rem 1.5rem 1.1rem 3.2rem;
  border-radius: 50px;
  color: var(--text-primary);
  font-size: 1rem;
  font-family: var(--font-body);
  transition: var(--transition-smooth);
}

.search-input:focus {
  border-color: var(--accent-gold);
  box-shadow: 0 0 15px rgba(223, 183, 108, 0.15);
  outline: none;
}

.search-icon {
  position: absolute;
  left: 1.3rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  width: 1.25rem;
  height: 1.25rem;
}

.filter-controls {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.filter-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.filter-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  min-width: 60px;
}

.filter-chips {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.chip {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-color);
  color: var(--text-secondary);
  padding: 0.5rem 1.2rem;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition-smooth);
  user-select: none;
}

.chip:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-primary);
}

.chip.active {
  background: linear-gradient(135deg, var(--accent-gold) 0%, #b3893c 100%);
  color: #000;
  border-color: var(--accent-gold);
  font-weight: 600;
  box-shadow: var(--shadow-neon-gold);
}

/* Sort controls inside search-filter panel */
.sort-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 0.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 1.2rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.results-count {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.sort-select-wrapper {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.sort-select {
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid var(--border-color);
  color: var(--text-secondary);
  padding: 0.4rem 1.5rem 0.4rem 0.8rem;
  border-radius: 50px;
  font-size: 0.85rem;
  cursor: pointer;
  outline: none;
  transition: var(--transition-smooth);
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23a4a1b5'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.7rem center;
  background-size: 0.9rem;
}

.sort-select:focus {
  border-color: var(--accent-gold);
  color: var(--text-primary);
}

/* Curation Gallery / Grid */
.curation-section {
  max-width: var(--max-width);
  margin: 0 auto 5rem;
  padding: 0 1.5rem;
}

.grid-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 2rem;
}

.section-subtitle {
  color: var(--accent-gold);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 0.4rem;
}

.section-desc {
  max-width: 600px;
  font-size: 1rem;
}

.venue-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
}

/* Venue Card styling */
.venue-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: var(--transition-smooth);
  position: relative;
}

.venue-card:hover {
  transform: translateY(-8px);
  background: var(--bg-card-hover);
  border-color: var(--border-hover);
  box-shadow: var(--shadow-lg), 0 10px 30px -5px rgba(223, 183, 108, 0.12);
}

.card-img-wrapper {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
  background: rgba(0,0,0,0.2);
}

.venue-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.venue-card:hover .venue-img {
  transform: scale(1.06);
}

.badge-overlay {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 2;
  display: flex;
  gap: 0.4rem;
}

.badge {
  padding: 0.35rem 0.8rem;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.badge-tag-category {
  background: #000;
  color: var(--accent-gold);
  border: 1px solid var(--accent-gold);
}

.badge-tag-city {
  background: rgba(157, 78, 221, 0.85);
  color: #fff;
}

.card-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.venue-neighborhood {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent-gold);
  margin-bottom: 0.4rem;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.venue-neighborhood svg {
  width: 0.85rem;
  height: 0.85rem;
  fill: currentColor;
}

.venue-title {
  font-size: 1.25rem;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.venue-curation-text {
  font-size: 0.92rem;
  color: var(--text-secondary);
  margin-bottom: 1.2rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: 2.8em;
}

.venue-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.82rem;
  color: var(--text-muted);
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.meta-item svg {
  width: 0.9rem;
  height: 0.9rem;
  stroke: currentColor;
}

.card-cta-btn {
  width: 100%;
  margin-top: 1.2rem;
  padding: 0.75rem 1.2rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-color);
  color: var(--text-primary);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: var(--transition-smooth);
}

.card-cta-btn:hover {
  background: linear-gradient(135deg, var(--accent-gold) 0%, #b3893c 100%);
  color: #000;
  border-color: var(--accent-gold);
  box-shadow: var(--shadow-neon-gold);
}

/* Empty filter results state */
.no-results {
  grid-column: 1 / -1;
  text-align: center;
  padding: 4rem 2rem;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 20px;
}

.no-results-title {
  font-size: 1.3rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.no-results-desc {
  font-size: 0.95rem;
  color: var(--text-secondary);
}

/* Category Landing Sections */
.category-landing-section {
  max-width: var(--max-width);
  margin: 0 auto 5rem;
  padding: 0 1.5rem;
}

.category-banner {
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  padding: 5rem 3rem;
  margin-bottom: 3rem;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-lg);
}

.category-banner-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
  opacity: 0.35;
  filter: brightness(0.5);
}

.category-banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: linear-gradient(90deg, rgba(8, 7, 13, 0.95) 0%, rgba(8, 7, 13, 0.4) 100%);
}

.category-banner-content {
  max-width: 600px;
  position: relative;
  z-index: 1;
}

.category-tag {
  color: var(--accent-gold);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  display: block;
}

.category-desc {
  font-size: 1.05rem;
  margin-bottom: 1.8rem;
}

/* Curation Info (Trust Factor) */
.curation-philosophy {
  background: linear-gradient(180deg, rgba(18, 16, 28, 0.3) 0%, rgba(8, 7, 13, 0.95) 100%);
  border-top: 1px solid var(--border-color);
  padding: 6rem 1.5rem;
}

.philosophy-container {
  max-width: var(--max-width);
  margin: 0 auto;
}

.philosophy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.philosophy-title {
  margin-bottom: 1.5rem;
}

.philosophy-title em {
  font-style: normal;
  color: var(--accent-gold);
}

.philosophy-text {
  font-size: 1.05rem;
  margin-bottom: 2rem;
  line-height: 1.8;
}

.features-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.8rem;
}

.feature-item {
  display: flex;
  gap: 1.2rem;
}

.feature-icon-wrapper {
  flex-shrink: 0;
  width: 3.2rem;
  height: 3.2rem;
  border-radius: 12px;
  background: rgba(223, 183, 108, 0.08);
  border: 1px solid rgba(223, 183, 108, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-gold);
}

.feature-icon-wrapper svg {
  width: 1.5rem;
  height: 1.5rem;
  fill: none;
  stroke: currentColor;
}

.feature-title {
  font-size: 1.15rem;
  color: var(--text-primary);
  margin-bottom: 0.3rem;
}

.feature-desc {
  font-size: 0.92rem;
  color: var(--text-secondary);
}

/* FAQ Section */
.faq-section {
  max-width: 800px;
  margin: 6rem auto;
  padding: 0 1.5rem;
}

.faq-header {
  text-align: center;
  margin-bottom: 3rem;
}

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

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  overflow: hidden;
  transition: var(--transition-smooth);
}

.faq-item:hover {
  border-color: rgba(223, 183, 108, 0.2);
}

.faq-question-btn {
  width: 100%;
  background: none;
  border: none;
  padding: 1.2rem 1.5rem;
  text-align: left;
  color: var(--text-primary);
  font-size: 1.05rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: var(--transition-smooth);
  background: rgba(0, 0, 0, 0.15);
}

.faq-answer-content {
  padding: 1.5rem;
  color: var(--text-secondary);
  font-size: 0.95rem;
  border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.faq-toggle-icon {
  width: 1.25rem;
  height: 1.25rem;
  transition: var(--transition-smooth);
  color: var(--text-muted);
}

/* Open FAQ State */
.faq-item.active {
  border-color: var(--border-hover);
  box-shadow: 0 0 15px rgba(223, 183, 108, 0.05);
}

.faq-item.active .faq-toggle-icon {
  transform: rotate(180deg);
  color: var(--accent-gold);
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

/* Call to Action (CTA) Section */
.cta-section {
  max-width: var(--max-width);
  margin: 6rem auto;
  padding: 0 1.5rem;
}

.cta-banner {
  background: radial-gradient(circle at top right, rgba(157, 78, 221, 0.15) 0%, rgba(6, 5, 10, 0.95) 80%), var(--bg-card);
  border: 1px solid var(--border-hover);
  border-radius: 32px;
  padding: 5rem 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg), 0 0 40px rgba(223, 183, 108, 0.05);
}

.cta-banner::before {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(223, 183, 108, 0.1) 0%, transparent 70%);
  top: -150px;
  left: -150px;
  border-radius: 50%;
}

.cta-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.cta-title em {
  font-style: normal;
  color: var(--accent-gold);
}

.cta-desc {
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 2.5rem;
}

.cta-phone-number {
  font-family: var(--font-display);
  font-size: clamp(2rem, 6vw, 3.5rem);
  font-weight: 800;
  color: var(--accent-gold);
  margin-bottom: 2rem;
  display: block;
  transition: var(--transition-smooth);
  letter-spacing: 0.05em;
  text-shadow: 0 0 15px rgba(223, 183, 108, 0.25);
}

.cta-phone-number:hover {
  color: var(--accent-gold-hover);
  transform: scale(1.03);
  text-shadow: 0 0 25px rgba(223, 183, 108, 0.45);
}

/* Modal details styling */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(4, 3, 7, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-container {
  background: var(--bg-modal);
  border: 1px solid var(--border-hover);
  border-radius: 24px;
  width: 100%;
  max-width: 720px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  transform: scale(0.9);
  opacity: 0;
  transition: var(--transition-smooth);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.7);
}

.modal-overlay.active .modal-container {
  transform: scale(1);
  opacity: 1;
}

.modal-close-btn {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid var(--border-color);
  color: var(--text-primary);
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: var(--transition-smooth);
}

.modal-close-btn:hover {
  background: var(--accent-gold);
  color: #000;
  transform: rotate(90deg);
}

.modal-banner-img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.modal-content {
  padding: 2rem;
}

.modal-badge-row {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 0.8rem;
}

.modal-title {
  font-size: 1.8rem;
  color: #fff;
  margin-bottom: 1rem;
}

.modal-meta-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 1.5rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-color);
  padding: 1rem;
  border-radius: 12px;
}

.modal-meta-item {
  font-size: 0.9rem;
}

.modal-meta-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 0.2rem;
  font-weight: 600;
}

.modal-meta-value {
  color: var(--text-primary);
  font-weight: 500;
}

.modal-curator-opinion {
  background: rgba(223, 183, 108, 0.04);
  border-left: 4px solid var(--accent-gold);
  padding: 1.2rem;
  border-radius: 0 12px 12px 0;
  margin-bottom: 1.5rem;
}

.modal-curator-title {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--accent-gold);
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}

.modal-curator-text {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.modal-tags {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.modal-tag {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-secondary);
  padding: 0.35rem 0.8rem;
  border-radius: 4px;
  font-size: 0.8rem;
}

.modal-cta-group {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

/* Mobile Sticky Footer & Floating Contact */
.mobile-sticky-footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(8, 7, 13, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid var(--border-hover);
  padding: 0.8rem 1.5rem;
  z-index: 90;
  display: none; /* Block on mobile viewports via media queries */
  box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.5);
}

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

.sticky-footer-info {
  display: flex;
  flex-direction: column;
}

.sticky-footer-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 600;
}

.sticky-footer-phone {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--accent-gold);
  font-weight: 700;
}

.btn-sticky-cta {
  background: linear-gradient(135deg, var(--accent-gold) 0%, #b3893c 100%);
  color: #000;
  padding: 0.6rem 1.5rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: var(--shadow-neon-gold);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

/* Footer Section */
footer {
  background: #040306;
  border-top: 1px solid var(--border-color);
  padding: 4rem 1.5rem 6rem; /* Extra padding bottom for sticky mobile footer */
}

.footer-container {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
}

.footer-about .logo {
  margin-bottom: 1rem;
}

.footer-about-text {
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  max-width: 320px;
}

.footer-contact-info {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.footer-contact-info p {
  margin-bottom: 0.5rem;
}

.footer-contact-info strong {
  color: var(--accent-gold);
}

.footer-nav-title {
  font-size: 1rem;
  color: #fff;
  margin-bottom: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

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

.footer-link {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.footer-link:hover {
  color: var(--accent-gold);
  padding-left: 4px;
}

.footer-bottom {
  max-width: var(--max-width);
  margin: 3rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* Responsive Breakpoints */
@media (max-width: 992px) {
  .philosophy-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .footer-container {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav-menu {
    display: none; /* Hide header menu, rely on footer links and layout scrolling */
  }
  
  .header-cta {
    display: none;
  }
  
  .hero {
    min-height: 80vh;
  }
  
  .search-filter-section {
    margin-top: -1.5rem;
  }
  
  .filter-panel {
    padding: 1.25rem;
    border-radius: 16px;
  }
  
  .filter-chips {
    gap: 0.4rem;
  }
  
  .chip {
    padding: 0.4rem 1rem;
    font-size: 0.82rem;
  }
  
  .grid-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
  
  .category-banner {
    padding: 3rem 1.5rem;
  }
  
  .cta-banner {
    padding: 3.5rem 1.5rem;
  }
  
  .footer-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  /* Show sticky CTA footer on mobile viewport */
  .mobile-sticky-footer {
    display: block;
  }
  
  body {
    padding-bottom: 4rem; /* Buffer for mobile sticky bar */
  }
}

/* Sale Announcement Banner */
.sale-banner {
  background: linear-gradient(90deg, #ff007f 0%, #7b2cbf 50%, #00f0ff 100%);
  background-size: 200% auto;
  animation: shine-banner 6s linear infinite;
  color: #fff;
  padding: 0.5rem 1rem;
  font-size: 0.82rem;
  text-align: center;
  font-weight: 500;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  position: relative;
  z-index: 101;
}

@keyframes shine-banner {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.sale-banner-content {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.sale-badge {
  background: #000;
  color: var(--accent-gold);
  border: 1px solid var(--accent-gold);
  font-weight: 700;
  padding: 0.15rem 0.6rem;
  border-radius: 4px;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: 0 0 8px rgba(223, 183, 108, 0.4);
}

.sale-text {
  color: #fff;
}

.sale-text strong {
  color: var(--accent-gold);
  text-shadow: 0 0 8px rgba(223, 183, 108, 0.3);
}

.sale-link {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 0.15rem 0.7rem;
  border-radius: 50px;
  font-weight: 700;
  transition: var(--transition-smooth);
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

.sale-link:hover {
  background: #fff;
  color: #000;
  border-color: #fff;
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.4);
}
