/* ==========================================================================
   ÓTICA MARCELO'S — MOBILE-FIRST LUXURY EYEWEAR DESIGN SYSTEM
   Alameda Paulista, 1539 - Vila Xavier, Araraquara - SP
   True Mobile-First Architecture (Zero Desktop Overflow Trap)
   ========================================================================== */

:root {
  --bg-black: #060709;
  --bg-surface: #0b0d11;
  --bg-card: rgba(16, 18, 24, 0.9);
  --bg-card-hover: rgba(23, 27, 36, 0.98);
  --border-subtle: rgba(212, 175, 55, 0.16);
  --border-gold: rgba(212, 175, 55, 0.32);
  --border-gold-glow: rgba(212, 175, 55, 0.65);
  
  --gold-300: #faebba;
  --gold-400: #e2c068;
  --gold-500: #c9a444;
  --gold-600: #a8832a;
  --gold-gradient: linear-gradient(135deg, #faebba 0%, #d4af37 45%, #9b7922 100%);
  --gold-text-gradient: linear-gradient(135deg, #fff2cc 0%, #e2c068 50%, #b8912d 100%);
  --gold-glow: rgba(212, 175, 55, 0.25);

  --text-primary: #f8fafc;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;
  --text-gold: #e2c068;

  --font-heading: 'Cinzel', Georgia, 'Times New Roman', serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-full: 9999px;

  --transition-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-smooth: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-long: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* --------------------------------------------------------------------------
   RESET & STRICT VIEWPORT CONTAINMENT (MOBILE DEFAULT)
   -------------------------------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box !important;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: var(--bg-black);
  color: var(--text-primary);
  overflow-x: hidden !important;
  width: 100% !important;
  max-width: 100% !important;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-black);
  color: var(--text-primary);
  line-height: 1.6;
  min-height: 100vh;
  position: relative;
  overflow-x: hidden !important;
  width: 100% !important;
  max-width: 100% !important;
  display: flex;
  flex-direction: column;
}

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

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

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

/* --------------------------------------------------------------------------
   AMBIENT BACKGROUND LIGHTING (CONTAINED)
   -------------------------------------------------------------------------- */
.bg-ambient-layer {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
  max-width: 100vw;
}

.ambient-mesh {
  position: absolute;
  top: -10%;
  left: 50%;
  transform: translateX(-50%);
  width: min(800px, 100vw);
  height: 500px;
  background: radial-gradient(ellipse at center, rgba(212, 175, 55, 0.08) 0%, rgba(212, 175, 55, 0.02) 50%, rgba(6, 7, 9, 0) 75%);
  filter: blur(40px);
}

.ambient-gold-bottom {
  position: absolute;
  bottom: 0%;
  right: -5%;
  width: min(500px, 90vw);
  height: 400px;
  background: radial-gradient(circle, rgba(168, 131, 42, 0.06) 0%, rgba(6, 7, 9, 0) 70%);
  filter: blur(60px);
}

/* --------------------------------------------------------------------------
   LAYOUT UTILITIES (MOBILE DEFAULT)
   -------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: clamp(0.85rem, 3.5vw, 2.5rem);
  padding-right: clamp(0.85rem, 3.5vw, 2.5rem);
  position: relative;
  z-index: 2;
  box-sizing: border-box;
}

.section {
  padding-top: clamp(3rem, 6vw, 6rem);
  padding-bottom: clamp(3rem, 6vw, 6rem);
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.text-gold-gradient {
  background: var(--gold-text-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

/* --------------------------------------------------------------------------
   NAVBAR (MOBILE BASE WITH DEDICATED BRAND SPACE)
   -------------------------------------------------------------------------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: background-color var(--transition-smooth), border-color var(--transition-smooth), backdrop-filter var(--transition-smooth), padding var(--transition-smooth);
  padding: 0.65rem 0;
  width: 100%;
  max-width: 100vw;
  box-sizing: border-box;
  background-color: rgba(6, 7, 9, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-subtle);
}

.navbar.scrolled {
  padding: 0.55rem 0;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.85);
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  width: 100%;
  box-sizing: border-box;
  padding-left: env(safe-area-inset-left, 0);
  padding-right: env(safe-area-inset-right, 0);
}

.brand-logo-link {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  text-decoration: none;
  min-width: 0;
  flex: 1 1 auto;
}

.brand-logo-img {
  width: auto;
  height: 32px;
  object-fit: contain;
  border-radius: var(--radius-sm);
  transition: transform var(--transition-fast);
  flex-shrink: 0;
}

.brand-text-block {
  display: flex;
  flex-direction: column;
  min-width: 0;
  justify-content: center;
}

.brand-name {
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #ffffff;
  text-transform: uppercase;
  line-height: 1.15;
  white-space: nowrap;
}

.brand-badge {
  font-size: 0.54rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold-400);
  font-weight: 600;
  white-space: nowrap;
}

/* Nav links hidden on mobile by default */
.nav-links {
  display: none;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
  margin-left: auto;
}

.nav-phone-full {
  display: none !important;
}

.nav-phone-short {
  display: inline !important;
}

.nav-cta-btn {
  min-height: 36px !important;
  height: 36px;
  padding: 0 0.85rem !important;
  font-size: 0.78rem !important;
  gap: 0.35rem;
  border-radius: var(--radius-full);
  box-shadow: 0 2px 10px rgba(212, 175, 55, 0.25);
  flex-shrink: 0;
}

.nav-cta-btn .btn-icon {
  width: 14px;
  height: 14px;
}

/* --------------------------------------------------------------------------
   SHINY SWEEP BUTTONS (MOBILE DEFAULT FULL WIDTH WHERE APPROPRIATE)
   -------------------------------------------------------------------------- */
.btn-gold {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 48px;
  padding: 0.8rem 1.4rem;
  border-radius: var(--radius-full);
  background: var(--gold-gradient);
  color: #07080a;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(212, 175, 55, 0.28);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
  text-decoration: none;
  box-sizing: border-box;
}

.btn-gold::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -130%;
  width: 55%;
  height: 200%;
  background: linear-gradient(
    115deg,
    transparent 0%,
    rgba(255, 255, 255, 0) 25%,
    rgba(255, 255, 255, 0.65) 50%,
    rgba(255, 255, 255, 0) 75%,
    transparent 100%
  );
  transform: rotate(25deg);
  pointer-events: none;
  transition: none;
}

.btn-gold:hover::after,
.btn-gold:focus-visible::after,
.btn-gold:active::after {
  left: 150%;
  transition: left 0.85s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.btn-gold:active {
  transform: scale(0.98);
}

.btn-secondary {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 48px;
  padding: 0.8rem 1.35rem;
  border-radius: var(--radius-full);
  background: rgba(16, 18, 24, 0.88);
  border: 1px solid var(--border-gold);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all var(--transition-fast);
  text-decoration: none;
  overflow: hidden;
  box-sizing: border-box;
}

.btn-secondary:active {
  transform: scale(0.98);
}

.btn-icon {
  width: 17px;
  height: 17px;
  flex-shrink: 0;
}

/* --------------------------------------------------------------------------
   HERO SECTION (MOBILE DEFAULT)
   -------------------------------------------------------------------------- */
.hero-section {
  padding-top: 5.25rem;
  padding-bottom: 2.75rem;
  position: relative;
  overflow: hidden;
  width: 100%;
}

.hero-grid {
  display: flex;
  flex-direction: column;
  gap: 2.25rem;
  width: 100%;
  box-sizing: border-box;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
}

.hero-pre-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-full);
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid var(--border-gold);
  color: var(--gold-300);
  font-size: clamp(0.66rem, 2.8vw, 0.74rem);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  max-width: 100%;
  box-sizing: border-box;
  line-height: 1.3;
}

.hero-pre-badge .gold-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold-400);
  box-shadow: 0 0 8px var(--gold-400);
  flex-shrink: 0;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 7.8vw, 2.4rem);
  line-height: 1.18;
  font-weight: 700;
  letter-spacing: 0.01em;
  margin-bottom: 1rem;
  color: #ffffff;
  word-break: break-word;
}

.hero-subtitle {
  font-size: clamp(0.92rem, 3.2vw, 1.05rem);
  color: var(--text-secondary);
  line-height: 1.6;
  max-width: 580px;
  margin-bottom: 1.5rem;
}

.hero-badges-row {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.5rem;
  margin-bottom: 1.65rem;
  width: 100%;
}

.trust-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.4rem 0.8rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  color: #e2e8f0;
  max-width: 100%;
}

.trust-pill.highlight {
  border-color: var(--border-gold);
  background: rgba(212, 175, 55, 0.08);
  color: var(--gold-300);
}

.trust-pill svg {
  width: 14px;
  height: 14px;
  color: var(--gold-400);
  flex-shrink: 0;
}

.hero-cta-group {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  width: 100%;
}

.hero-cta-group .btn-gold,
.hero-cta-group .btn-secondary {
  width: 100%;
}

.hero-meta-strip {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  width: 100%;
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  color: var(--text-secondary);
}

.meta-item svg {
  width: 15px;
  height: 15px;
  color: var(--gold-400);
  flex-shrink: 0;
}

/* --------------------------------------------------------------------------
   HERO VISUAL SHOWCASE (MOBILE DEFAULT)
   -------------------------------------------------------------------------- */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 440px;
  margin: 0 auto;
}

.hero-image-frame {
  position: relative;
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border-gold);
  background: var(--bg-card);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.8), 0 0 25px rgba(212, 175, 55, 0.1);
}

.hero-image-frame img {
  width: 100%;
  height: 310px;
  object-fit: cover;
}

.hero-visual-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 7, 9, 0.05) 0%, rgba(6, 7, 9, 0.4) 60%, rgba(6, 7, 9, 0.92) 100%);
  pointer-events: none;
}

.hero-floating-badge {
  position: absolute;
  bottom: 0.65rem;
  left: 0.65rem;
  right: 0.65rem;
  background: rgba(11, 13, 17, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
  padding: 0.65rem 0.85rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.45rem;
}

.badge-info-title {
  font-family: var(--font-heading);
  font-size: 0.84rem;
  color: #ffffff;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.badge-info-desc {
  font-size: 0.7rem;
  color: var(--text-secondary);
}

.badge-status-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 0.3rem 0.65rem;
  border-radius: var(--radius-full);
  background: rgba(34, 197, 94, 0.12);
  color: #4ade80;
  border: 1px solid rgba(34, 197, 94, 0.25);
  box-sizing: border-box;
}

.badge-status-pill.closed {
  background: rgba(239, 68, 68, 0.12);
  color: #f87171;
  border-color: rgba(239, 68, 68, 0.25);
}

.badge-status-pill .indicator-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: currentColor;
  flex-shrink: 0;
}

/* --------------------------------------------------------------------------
   CREDIBILITY SECTION (MOBILE DEFAULT)
   -------------------------------------------------------------------------- */
.section-header {
  text-align: center;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: clamp(1.75rem, 4vw, 3rem);
  width: 100%;
}

.section-pretitle {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-400);
  font-weight: 700;
  margin-bottom: 0.5rem;
  display: block;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.65rem, 5.5vw, 2.6rem);
  color: #ffffff;
  line-height: 1.25;
  font-weight: 700;
  margin-bottom: 0.75rem;
  word-break: break-word;
}

.section-desc {
  font-size: clamp(0.88rem, 2.8vw, 0.98rem);
  color: var(--text-secondary);
  line-height: 1.6;
}

.pillars-grid {
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
  width: 100%;
}

.pillar-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  padding: 1.35rem 1.15rem;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
}

.pillar-icon-box {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-400);
  margin-bottom: 1rem;
}

.pillar-icon-box svg {
  width: 22px;
  height: 22px;
}

.pillar-title {
  font-family: var(--font-heading);
  font-size: 1.18rem;
  color: #ffffff;
  margin-bottom: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.pillar-text {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* --------------------------------------------------------------------------
   EDITORIAL GALLERY (MOBILE DEFAULT)
   -------------------------------------------------------------------------- */
.gallery-mosaic {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  width: 100%;
}

.gallery-item {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  background: var(--bg-surface);
  aspect-ratio: 4 / 3;
  cursor: pointer;
}

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

.gallery-caption-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(6, 7, 9, 0.92) 0%, rgba(6, 7, 9, 0.25) 45%, transparent 80%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1rem 1.15rem;
  opacity: 0.92;
}

.gallery-tag {
  font-size: 0.68rem;
  color: var(--gold-400);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  margin-bottom: 0.2rem;
}

.gallery-title {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  color: #ffffff;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.gallery-zoom-icon {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(6, 7, 9, 0.8);
  border: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-300);
}

/* --------------------------------------------------------------------------
   VISIT & LOCATION SECTION (SURGICAL MOBILE-FIRST ARCHITECTURE)
   -------------------------------------------------------------------------- */
.visit-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.visit-info-card {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: 16px;
  padding: 1.15rem 0.85rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.5);
  box-sizing: border-box;
  width: 100%;
  max-width: 100%;
}

.address-block {
  margin-bottom: 1.25rem;
  width: 100%;
}

.address-headline {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  margin-bottom: 0.45rem;
  width: 100%;
}

.address-headline svg {
  width: 20px;
  height: 20px;
  color: var(--gold-400);
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.address-text {
  flex: 1 1 auto;
  min-width: 0;
}

.address-text h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: #ffffff;
  margin-bottom: 0.25rem;
  word-break: break-word;
}

.address-text p {
  color: var(--text-secondary);
  font-size: 0.85rem;
  line-height: 1.5;
  word-break: break-word;
}

.hours-wrapper {
  margin-bottom: 1.25rem;
  width: 100%;
  box-sizing: border-box;
}

/* Mobile Default: Stacked with dedicated status row */
.hours-header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.6rem;
  margin-bottom: 0.75rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  width: 100%;
  box-sizing: border-box;
}

.hours-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: #ffffff;
  width: 100%;
}

.hours-title svg {
  width: 16px;
  height: 16px;
  color: var(--gold-400);
  flex-shrink: 0;
}

.hours-header .badge-status-pill {
  align-self: flex-start;
  max-width: 100%;
  white-space: normal;
  font-size: 0.74rem;
  padding: 0.35rem 0.75rem;
  line-height: 1.25;
}

.hours-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  width: 100%;
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.45rem 0.45rem;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  width: 100%;
  box-sizing: border-box;
  gap: 0.5rem;
}

.day-col {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  min-width: 0;
}

.day-name {
  font-size: clamp(0.78rem, 2.8vw, 0.86rem);
  color: var(--text-secondary);
  font-weight: 500;
  white-space: nowrap;
}

.today-tag {
  display: inline-block;
  font-size: 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 0.1rem 0.35rem;
  border-radius: 4px;
  background: rgba(212, 175, 55, 0.25);
  color: var(--gold-300);
  border: 1px solid rgba(212, 175, 55, 0.4);
  flex-shrink: 0;
}

.time-col {
  font-size: clamp(0.78rem, 2.8vw, 0.86rem);
  color: var(--text-secondary);
  font-weight: 600;
  white-space: nowrap;
  text-align: right;
  font-variant-numeric: tabular-nums;
  flex-shrink: 0;
}

.hours-row.today {
  background: rgba(212, 175, 55, 0.12);
  border-color: rgba(212, 175, 55, 0.35);
}

.hours-row.today .day-name,
.hours-row.today .time-col {
  color: var(--gold-300);
  font-weight: 700;
}

.hours-row.closed .time-col {
  color: var(--text-muted);
}

.visit-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1rem;
  width: 100%;
  box-sizing: border-box;
}

.visit-actions .btn-gold,
.visit-actions .btn-secondary {
  width: 100%;
  font-size: 0.82rem;
  padding: 0.75rem 1rem;
  text-align: center;
  justify-content: center;
}

/* --------------------------------------------------------------------------
   MAP CARD (MOBILE DEFAULT)
   -------------------------------------------------------------------------- */
.map-embed-card {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border-gold);
  background: var(--bg-surface);
  display: flex;
  flex-direction: column;
  position: relative;
  min-height: 280px;
  height: 300px;
  width: 100%;
  max-width: 100%;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.5);
  box-sizing: border-box;
}

.map-frame {
  width: 100%;
  max-width: 100%;
  height: 100%;
  min-height: 280px;
  border: none;
  background: #11141a;
  display: block;
}

.map-card-footer {
  position: absolute;
  bottom: 0.55rem;
  left: 0.55rem;
  right: 0.55rem;
  box-sizing: border-box;
  max-width: calc(100% - 1.1rem);
  background: rgba(11, 13, 17, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
  padding: 0.55rem 0.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.6);
}

.map-footer-text h4 {
  font-family: var(--font-heading);
  font-size: 0.84rem;
  color: #ffffff;
  line-height: 1.2;
}

.map-footer-text p {
  font-size: 0.7rem;
  color: var(--text-secondary);
}

.map-footer-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.45rem 0.85rem;
  border-radius: var(--radius-full);
  background: rgba(212, 175, 55, 0.15);
  border: 1px solid var(--border-gold);
  color: var(--gold-300);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  white-space: nowrap;
  flex-shrink: 0;
}

/* --------------------------------------------------------------------------
   PRESTIGE BANNER / FINAL CTA (MOBILE DEFAULT)
   -------------------------------------------------------------------------- */
.cta-prestige-box {
  background: linear-gradient(135deg, rgba(16, 18, 24, 0.95) 0%, rgba(26, 31, 42, 0.9) 100%);
  border: 1px solid var(--border-gold);
  border-radius: 16px;
  padding: 2rem 1rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.7), 0 0 45px rgba(212, 175, 55, 0.08);
  box-sizing: border-box;
  width: 100%;
  max-width: 100%;
}

.cta-tag {
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-400);
  font-weight: 700;
  margin-bottom: 0.65rem;
  display: inline-block;
}

.cta-title {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 5.5vw, 2.5rem);
  color: #ffffff;
  line-height: 1.22;
  margin-bottom: 1rem;
  font-weight: 700;
  word-break: break-word;
}

.cta-desc {
  font-size: clamp(0.88rem, 2.8vw, 1.05rem);
  color: var(--text-secondary);
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1.65rem;
  line-height: 1.6;
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  width: 100%;
}

.cta-buttons .btn-gold,
.cta-buttons .btn-secondary {
  width: 100%;
}

/* --------------------------------------------------------------------------
   FOOTER (MOBILE DEFAULT)
   -------------------------------------------------------------------------- */
.site-footer {
  margin-top: auto;
  border-top: 1px solid var(--border-subtle);
  background-color: #040507;
  padding: 2.5rem 0 1.75rem;
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 100vw;
  box-sizing: border-box;
}

.footer-grid {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  margin-bottom: 2rem;
  width: 100%;
}

.footer-brand p {
  color: var(--text-secondary);
  font-size: 0.86rem;
  line-height: 1.55;
  margin-top: 0.75rem;
}

.footer-col-title {
  font-family: var(--font-heading);
  font-size: 0.92rem;
  color: #ffffff;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 0.85rem;
  position: relative;
  padding-bottom: 0.4rem;
}

.footer-col-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 24px;
  height: 2px;
  background: var(--gold-400);
}

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

.footer-link-item {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--text-secondary);
  font-size: 0.84rem;
}

.footer-link-item svg {
  width: 15px;
  height: 15px;
  color: var(--gold-400);
  flex-shrink: 0;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  text-align: center;
  gap: 0.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.76rem;
  color: var(--text-muted);
  width: 100%;
}

/* --------------------------------------------------------------------------
   LIGHTBOX DIALOG
   -------------------------------------------------------------------------- */
.lightbox-dialog {
  border: none;
  background: rgba(4, 5, 7, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  max-width: 90vw;
  max-height: 90vh;
  padding: 0;
  margin: auto;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-gold);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.95);
  outline: none;
}

.lightbox-dialog::backdrop {
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(10px);
}

.lightbox-content {
  position: relative;
  display: flex;
  flex-direction: column;
  max-width: 900px;
}

.lightbox-close-btn {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(6, 7, 9, 0.85);
  border: 1px solid var(--border-gold);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

.lightbox-image-holder {
  width: 100%;
  max-height: 75vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000;
}

.lightbox-image-holder img {
  max-width: 100%;
  max-height: 75vh;
  object-fit: contain;
}

.lightbox-footer-caption {
  padding: 0.85rem 1.25rem;
  background: var(--bg-surface);
  border-top: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.lightbox-title {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  color: #ffffff;
}

.lightbox-sub {
  font-size: 0.75rem;
  color: var(--text-secondary);
}

/* ==========================================================================
   PROGRESSIVE ENHANCEMENT: TABLET & DESKTOP EXPANSION ONLY
   ========================================================================== */

@media (min-width: 600px) {
  .gallery-mosaic {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }
}

@media (min-width: 769px) {
  .navbar {
    padding: 0.9rem 0;
  }

  .nav-wrapper {
    gap: 1.5rem;
  }

  .brand-logo-img {
    height: 42px;
  }

  .brand-name {
    font-size: 1.15rem;
  }

  .brand-badge {
    font-size: 0.65rem;
  }

  .nav-links {
    display: flex;
    align-items: center;
    gap: 1.8rem;
    list-style: none;
  }

  .nav-link {
    font-size: 0.86rem;
    font-weight: 500;
    color: var(--text-secondary);
    letter-spacing: 0.04em;
    position: relative;
    padding: 0.4rem 0;
  }

  .nav-link:hover {
    color: var(--gold-300);
  }

  .nav-phone-full {
    display: inline !important;
  }

  .nav-phone-short {
    display: none !important;
  }

  .nav-cta-btn {
    min-height: 48px !important;
    height: auto;
    padding: 0.85rem 1.65rem !important;
    font-size: 0.875rem !important;
    gap: 0.6rem;
  }

  .nav-cta-btn .btn-icon {
    width: 18px;
    height: 18px;
  }

  .hero-badges-row {
    flex-direction: row;
    justify-content: center;
  }

  .hero-cta-group {
    flex-direction: row;
    justify-content: center;
  }

  .hero-cta-group .btn-gold,
  .hero-cta-group .btn-secondary {
    width: auto;
  }

  .hero-meta-strip {
    flex-direction: row;
    justify-content: center;
    gap: 1.5rem;
  }

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

  /* Desktop Hours Header */
  .hours-header {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .cta-buttons {
    flex-direction: row;
    justify-content: center;
  }

  .cta-buttons .btn-gold,
  .cta-buttons .btn-secondary {
    width: auto;
  }

  .footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 2.5rem;
  }

  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

@media (min-width: 992px) {
  .visit-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }

  .visit-info-card {
    padding: 2.25rem 2rem;
  }

  .map-embed-card {
    min-height: 420px;
    height: 100%;
  }

  .map-frame {
    min-height: 420px;
  }
}

@media (min-width: 1024px) {
  .hero-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 4rem;
    align-items: center;
  }

  .hero-content {
    align-items: flex-start;
    text-align: left;
  }

  .hero-badges-row,
  .hero-cta-group,
  .hero-meta-strip {
    justify-content: flex-start;
  }

  .hero-image-frame img {
    height: 480px;
  }

  .gallery-mosaic {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}

/* --------------------------------------------------------------------------
   ACCESSIBILITY & PREFERS-REDUCED-MOTION
   -------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .btn-gold::after {
    display: none !important;
  }
}

:focus-visible {
  outline: 2px solid var(--gold-400);
  outline-offset: 3px;
}
