/* ==========================================================================
   WARKOP TSKUY MUTIARA GADING - BESPOKE EDITORIAL DESIGN SYSTEM
   ========================================================================== */

:root {
  /* Color Palette */
  --bg-main: #FAF7F2;
  --bg-alt: #F4EFE6;
  --bg-card: #FFFFFF;
  --bg-dark: #1C130D;
  --bg-dark-card: #291E16;
  
  --brand-amber: #F59E0B;
  --brand-amber-hover: #D97706;
  --brand-yellow-logo: #FFCC00;
  --brand-terracotta: #B45309;
  
  --text-primary: #1C130D;
  --text-secondary: #574B40;
  --text-muted: #8C7E72;
  
  --border-light: rgba(41, 30, 22, 0.08);
  --border-medium: rgba(41, 30, 22, 0.15);
  --border-accent: rgba(245, 158, 11, 0.3);
  
  --status-green: #10B981;
  --status-red: #EF4444;

  /* Typography */
  --font-heading: 'Space Grotesk', 'Plus Jakarta Sans', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;

  /* Geometry & Shadows */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;
  
  --shadow-soft: 0 10px 30px rgba(28, 19, 13, 0.04);
  --shadow-medium: 0 20px 40px rgba(28, 19, 13, 0.08);
  --shadow-hover: 0 25px 50px rgba(28, 19, 13, 0.12);
  
  --transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  --max-width: 1200px;
}

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

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

body {
  font-family: var(--font-body);
  background-color: var(--bg-main);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-primary);
  line-height: 1.2;
}

a {
  color: var(--brand-amber-hover);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--brand-amber);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 6rem 0;
  position: relative;
}

.text-center {
  text-align: center;
}

/* SECTION HEADER TYPOGRAPHY */
.section-title-block {
  margin-bottom: 3.5rem;
}

.section-kicker {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--brand-terracotta);
  display: inline-block;
  margin-bottom: 0.5rem;
}

.main-section-heading {
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: -0.8px;
  margin-bottom: 0.75rem;
}

.section-lead {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 620px;
  margin: 0 auto;
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.9rem 1.85rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: var(--radius-full);
  border: 1px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-brand-cta {
  background: linear-gradient(135deg, var(--brand-amber) 0%, var(--brand-amber-hover) 100%);
  color: #FFF;
  box-shadow: 0 8px 20px rgba(245, 158, 11, 0.3);
}

.btn-brand-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(245, 158, 11, 0.45);
  color: #FFF;
}

.btn-hero-primary {
  background: linear-gradient(135deg, var(--brand-amber) 0%, var(--brand-terracotta) 100%);
  color: #FFF;
  padding: 1.1rem 2.25rem;
  font-size: 1.05rem;
  box-shadow: 0 10px 30px rgba(245, 158, 11, 0.35);
}

.btn-hero-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(245, 158, 11, 0.5);
  color: #FFF;
}

.btn-hero-secondary {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  color: #FFF;
  border: 1px solid rgba(255, 255, 255, 0.4);
  padding: 1.1rem 2.25rem;
  font-size: 1.05rem;
}

.btn-hero-secondary:hover {
  background: rgba(255, 255, 255, 0.35);
  color: #FFF;
  transform: translateY(-3px);
}

/* TOP TICKER BAR */
.top-ticker-bar {
  background-color: var(--bg-dark);
  color: rgba(255, 255, 255, 0.85);
  padding: 0.55rem 0;
  font-size: 0.85rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.ticker-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.live-status-indicator {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 0.8rem;
  color: #4ADE80;
}

.pulse-ring {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #4ADE80;
  box-shadow: 0 0 8px #4ADE80;
  animation: pulseDot 1.8s infinite;
}

@keyframes pulseDot {
  0% { transform: scale(0.95); opacity: 0.8; }
  50% { transform: scale(1.3); opacity: 1; }
  100% { transform: scale(0.95); opacity: 0.8; }
}

.ticker-text {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255, 255, 255, 0.8);
}

.dot-sep {
  color: var(--brand-amber);
}

/* FLOATING NAVBAR */
.main-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 247, 242, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-light);
  padding: 0.75rem 0;
  transition: var(--transition);
}

.main-header.scrolled {
  box-shadow: var(--shadow-soft);
  background: rgba(255, 253, 249, 0.96);
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.logo-img {
  height: 44px;
  width: auto;
  border-radius: 6px;
}

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

.brand-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: -0.3px;
  color: var(--text-primary);
}

.brand-tagline {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--brand-terracotta);
  letter-spacing: 1px;
}

.nav-links-menu {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.nav-item {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-secondary);
  padding: 0.3rem 0;
  position: relative;
}

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

.nav-item.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--brand-amber);
  border-radius: 2px;
}

.highlight-link {
  color: var(--brand-terracotta) !important;
  font-weight: 700;
}

.menu-toggle-btn {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--text-primary);
  cursor: pointer;
}

/* BESPOKE HERO WITH USER EXT ILLUSTRATION BACKGROUND */
.hero-bespoke {
  position: relative;
  min-height: 84vh;
  display: flex;
  align-items: center;
  padding: 6.5rem 0 5.5rem;
  color: #FFF;
  overflow: hidden;
}

.hero-bg-media {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.hero-gradient-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20, 13, 8, 0.88) 0%, rgba(20, 13, 8, 0.76) 65%, #FAF7F2 100%);
}

.hero-content-wrapper {
  position: relative;
  z-index: 2;
}

.hero-editorial-text {
  max-width: 740px;
}

.hero-subtitle-line {
  margin-bottom: 1rem;
}

.hero-jp-sub {
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--brand-amber);
  background: rgba(0, 0, 0, 0.4);
  padding: 0.35rem 0.9rem;
  border-radius: var(--radius-full);
  display: inline-block;
}

.hero-headline {
  font-size: 4rem;
  font-weight: 900;
  line-height: 1.08;
  margin-bottom: 1.5rem;
  letter-spacing: -1.5px;
  color: #FFF;
  text-shadow: 0 4px 20px rgba(0,0,0,0.7);
}

.accent-handwritten {
  position: relative;
  display: inline-block;
  color: #FFF;
}

.stroke-underline {
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 100%;
  height: 16px;
  overflow: visible;
}

.hero-description {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.6;
  margin-bottom: 2rem;
  max-width: 640px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.6);
}

.hero-features-inline {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex-wrap: wrap;
  font-size: 0.95rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 2.5rem;
  text-shadow: 0 2px 8px rgba(0,0,0,0.6);
}

.feat-inline i {
  color: var(--brand-amber);
  margin-right: 0.4rem;
}

.feat-bullet {
  color: var(--brand-amber);
  opacity: 0.6;
}

.hero-cta-row {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}

/* SPOTLIGHT SECTION */
.spotlight-section {
  margin-top: -3rem;
  position: relative;
  z-index: 10;
}

.spotlight-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-medium);
  box-shadow: var(--shadow-medium);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
}

.spotlight-content {
  padding: 3.5rem;
}

.spotlight-tag {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.75rem;
  letter-spacing: 2px;
  color: var(--brand-terracotta);
  background: rgba(245, 158, 11, 0.12);
  padding: 0.35rem 0.9rem;
  border-radius: var(--radius-full);
  display: inline-block;
  margin-bottom: 1rem;
}

.spotlight-content h2 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.spotlight-content p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  margin-bottom: 1.75rem;
}

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

.spotlight-price {
  font-size: 1.1rem;
  color: var(--text-primary);
}

.spotlight-price strong {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--brand-terracotta);
}

.spotlight-link {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--brand-terracotta);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.spotlight-link:hover {
  color: var(--brand-amber);
}

.spotlight-visual {
  height: 100%;
  min-height: 300px;
}

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

/* DAFTAR HARGA EDITORIAL SECTION */
.menu-editorial-section {
  background-color: var(--bg-main);
}

.editorial-controls {
  margin-bottom: 3rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.editorial-search {
  position: relative;
  max-width: 600px;
  margin: 0 auto;
  width: 100%;
}

.editorial-search i {
  position: absolute;
  left: 1.25rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
}

.editorial-search input {
  width: 100%;
  padding: 1rem 1rem 1rem 3rem;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-medium);
  background: var(--bg-card);
  font-family: inherit;
  font-size: 1rem;
  color: var(--text-primary);
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
}

.editorial-search input:focus {
  outline: none;
  border-color: var(--brand-amber);
  box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.2);
}

.clear-search-btn {
  position: absolute;
  right: 1.25rem;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  font-size: 1.4rem;
  color: var(--text-muted);
  cursor: pointer;
  display: none;
}

.editorial-tabs {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.tab-btn {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  color: var(--text-secondary);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.6rem 1.35rem;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: var(--transition);
}

.tab-btn:hover, .tab-btn.active {
  background: var(--brand-amber);
  color: #FFF;
  border-color: var(--brand-amber);
  box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}

.btn-photo-modal {
  align-self: center;
  background: var(--bg-card);
  border: 1px solid var(--border-medium);
  color: var(--text-primary);
  font-size: 0.88rem;
}

.btn-photo-modal:hover {
  border-color: var(--brand-terracotta);
  color: var(--brand-terracotta);
}

/* Editorial Menu Grid */
.menu-editorial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
  gap: 2.5rem;
}

.menu-block {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  padding: 2.25rem;
  box-shadow: var(--shadow-soft);
}

.block-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.75rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border-light);
}

.block-header h3 {
  font-size: 1.35rem;
  font-weight: 800;
}

.item-count {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 600;
}

/* Editorial Menu Lines */
.menu-lines-grid {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.menu-line-item {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 1rem;
}

.line-title {
  font-weight: 600;
  color: var(--text-primary);
  white-space: nowrap;
}

.tag-fav, .tag-star {
  font-size: 0.65rem;
  font-weight: 800;
  padding: 0.15rem 0.5rem;
  border-radius: var(--radius-full);
  margin-left: 0.4rem;
  vertical-align: middle;
}

.tag-fav {
  background: rgba(245, 158, 11, 0.15);
  color: var(--brand-terracotta);
}

.tag-star {
  background: rgba(16, 185, 129, 0.15);
  color: #059669;
}

.line-dots {
  flex: 1;
  border-bottom: 1px dashed var(--border-medium);
  margin: 0 0.5rem;
}

.line-price {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--brand-terracotta);
  white-space: nowrap;
}

.line-price-dual {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--brand-terracotta);
  white-space: nowrap;
}

/* MODAL FOR MENU PHOTO */
.menu-photo-modal {
  position: fixed;
  inset: 0;
  z-index: 1100;
  background: rgba(28, 19, 13, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  padding: 1.5rem;
}

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

.modal-wrapper {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 2rem;
  max-width: 700px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: var(--shadow-hover);
}

.modal-close {
  position: absolute;
  top: 15px;
  right: 20px;
  background: none;
  border: none;
  font-size: 2.2rem;
  cursor: pointer;
}

.modal-img-container img {
  width: 100%;
  border-radius: var(--radius-md);
  margin-top: 1rem;
}

/* FASILITAS SECTION */
.experience-section {
  background-color: var(--bg-alt);
}

.experience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.exp-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
}

.exp-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
}

.main-exp-card {
  grid-column: span 2;
  background: linear-gradient(135deg, var(--bg-dark-card) 0%, var(--bg-dark) 100%);
  color: #FFF;
  border: none;
  display: flex;
  align-items: center;
}

.main-exp-card h3 {
  color: #FFF;
  font-size: 1.8rem;
  margin-bottom: 0.85rem;
}

.main-exp-card p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.05rem;
}

.exp-tag {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--brand-amber);
  margin-bottom: 1rem;
  display: inline-block;
}

.exp-icon {
  font-size: 2rem;
  color: var(--brand-terracotta);
  margin-bottom: 1.25rem;
}

.text-exp-card h4 {
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.text-exp-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.highlight-price-card {
  background: linear-gradient(135deg, #FFFBEB 0%, #FFF 100%);
  border-color: rgba(245, 158, 11, 0.3);
}

/* GALERI SECTION */
.gallery-editorial-section {
  background-color: var(--bg-main);
}

.editorial-gallery-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: repeat(2, 220px);
  gap: 1.5rem;
}

.gallery-hero-item {
  grid-row: span 2;
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
}

.gallery-sub-item, .gallery-wide-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
}

.editorial-gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.gallery-caption-overlay {
  position: absolute;
  bottom: 0;
  inset-x: 0;
  padding: 1.5rem 1rem 1rem;
  background: linear-gradient(0deg, rgba(28, 19, 13, 0.85) 0%, transparent 100%);
  color: #FFF;
  font-size: 0.9rem;
  font-weight: 600;
  opacity: 0;
  transition: var(--transition);
}

.editorial-gallery-grid div:hover img {
  transform: scale(1.06);
}

.editorial-gallery-grid div:hover .gallery-caption-overlay {
  opacity: 1;
}

/* LIGHTBOX */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1200;
  background: rgba(28, 19, 13, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  padding: 2rem;
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-content img {
  max-width: 90vw;
  max-height: 80vh;
  border-radius: var(--radius-md);
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  color: #FFF;
  font-size: 3rem;
  background: none;
  border: none;
  cursor: pointer;
}

#lightboxCaption {
  color: rgba(255, 255, 255, 0.9);
  text-align: center;
  margin-top: 1rem;
  font-weight: 600;
}

/* LOKASI SECTION */
.location-editorial {
  background-color: var(--bg-alt);
}

.location-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.loc-info-group {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin: 2rem 0;
}

.loc-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.loc-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--border-medium);
  color: var(--brand-terracotta);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
  box-shadow: var(--shadow-soft);
}

.loc-item h4 {
  font-size: 1.05rem;
  font-weight: 800;
  margin-bottom: 0.2rem;
}

.loc-item p {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.loc-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.location-map-frame {
  width: 100%;
  height: 420px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-medium);
  box-shadow: var(--shadow-medium);
}

/* FOOTER */
.bespoke-footer {
  background-color: var(--bg-dark);
  color: rgba(255, 255, 255, 0.85);
  padding: 4.5rem 0 2rem;
}

.footer-layout {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 3.5rem;
  margin-bottom: 3rem;
}

.footer-logo {
  height: 52px;
  width: auto;
  border-radius: 6px;
  margin-bottom: 1.25rem;
}

.footer-col-brand p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  max-width: 380px;
}

.footer-social-inline {
  display: flex;
  gap: 0.85rem;
}

.footer-social-inline a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: #FFF;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.footer-social-inline a:hover {
  background: var(--brand-amber);
  color: #FFF;
  transform: translateY(-3px);
}

.footer-col-links h4, .footer-col-info h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--brand-amber);
  margin-bottom: 1.25rem;
}

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

.footer-col-links a {
  color: rgba(255, 255, 255, 0.75);
}

.footer-col-links a:hover {
  color: var(--brand-amber);
}

.footer-col-info p {
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 0.85rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.footer-col-info i {
  color: var(--brand-amber);
}

.footer-credit {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.75rem;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}

/* FLOATING WA */
.bespoke-floating-wa {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #25D366;
  color: #FFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
  z-index: 99;
  transition: var(--transition);
}

.bespoke-floating-wa:hover {
  transform: scale(1.1);
  color: #FFF;
}

/* ==========================================================================
   RESPONSIVE BREAKPOINTS (STRICT MOBILE 2 CARDS PER ROW / 1 BARIS 2 CARD)
   ========================================================================== */

@media (max-width: 992px) {
  .hero-headline {
    font-size: 3rem;
  }
  
  .spotlight-card {
    grid-template-columns: 1fr;
  }

  .menu-editorial-grid {
    grid-template-columns: 1fr;
  }

  .location-layout {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 768px) {
  .ticker-flex {
    justify-content: center;
  }

  .ticker-text {
    display: none;
  }

  .menu-toggle-btn {
    display: block;
  }

  .nav-links-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--bg-card);
    border-bottom: 1px solid var(--border-medium);
    flex-direction: column;
    padding: 1.5rem;
    gap: 1.25rem;
    box-shadow: var(--shadow-medium);
    display: none;
  }

  .nav-links-menu.active {
    display: flex;
  }

  .hero-bespoke {
    padding: 4.5rem 0 3.5rem;
    min-height: auto;
  }

  .hero-headline {
    font-size: 2.2rem;
    line-height: 1.15;
  }

  .hero-description {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }

  .hero-features-inline {
    font-size: 0.85rem;
    gap: 0.5rem;
    margin-bottom: 1.75rem;
  }

  .hero-cta-row {
    flex-direction: column;
    gap: 0.75rem;
  }

  .hero-cta-row .btn {
    width: 100%;
  }

  .spotlight-content {
    padding: 1.75rem 1.25rem;
  }

  .spotlight-visual {
    height: 200px;
  }

  /* Filter Tabs Horizontally Scrollable on Mobile */
  .editorial-tabs {
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 0.5rem;
  }

  .tab-btn {
    flex-shrink: 0;
  }

  /* -------------------------------------------------------------
     MOBILE CARDS: 2 CARDS PER ROW (1 BARIS 2 CARD)
     ------------------------------------------------------------- */
  .menu-lines-grid {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 0.65rem !important;
  }

  .menu-line-item {
    background: var(--bg-main);
    border: 1px solid var(--border-medium);
    border-radius: var(--radius-sm);
    padding: 0.7rem 0.55rem !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    justify-content: space-between !important;
    gap: 0.35rem !important;
    font-size: 0.82rem !important;
    min-height: 72px;
  }

  .line-title {
    white-space: normal !important;
    word-break: break-word;
    font-size: 0.82rem !important;
    line-height: 1.25;
  }

  .line-dots {
    display: none !important;
  }

  .line-price, .line-price-dual {
    font-size: 0.88rem !important;
  }

  .tag-fav, .tag-star {
    display: inline-block;
    margin-left: 0;
    margin-top: 0.2rem;
    font-size: 0.58rem !important;
  }

  /* Experience Cards Mobile: 2 Columns Per Row */
  .experience-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 0.65rem !important;
  }

  .main-exp-card {
    grid-column: span 2 !important;
    padding: 1.25rem !important;
  }

  .main-exp-card h3 {
    font-size: 1.3rem !important;
  }

  .exp-card {
    padding: 1rem 0.75rem !important;
  }

  .exp-icon {
    font-size: 1.5rem !important;
    margin-bottom: 0.5rem !important;
  }

  .exp-card h4 {
    font-size: 0.88rem !important;
    margin-bottom: 0.25rem !important;
  }

  .exp-card p {
    font-size: 0.75rem !important;
    line-height: 1.3 !important;
  }

  /* Gallery Grid Mobile: 2 Columns Per Row */
  .editorial-gallery-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    grid-template-rows: auto !important;
    gap: 0.65rem !important;
  }

  .gallery-hero-item {
    grid-row: span 1 !important;
    grid-column: span 2 !important;
    height: 180px !important;
  }

  .gallery-sub-item, .gallery-wide-item {
    height: 135px !important;
  }

  .gallery-caption-overlay {
    font-size: 0.75rem !important;
    padding: 0.75rem 0.5rem 0.4rem !important;
  }

  .menu-block {
    padding: 1.25rem 0.85rem !important;
  }

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

@media (max-width: 480px) {
  .hero-headline {
    font-size: 1.85rem;
  }

  .main-section-heading {
    font-size: 1.65rem;
  }

  .container {
    padding: 0 0.85rem;
  }

  .bespoke-floating-wa {
    bottom: 20px;
    right: 20px;
    width: 52px;
    height: 52px;
    font-size: 1.75rem;
  }
}
