
:root {
  --font-display: 'Fraunces', serif;
  --font-body: 'Work Sans', sans-serif;
  --bg: #f4f6f9;
  --bg-alt: #eef1f6;
  --text: #0c111b;
  --muted: #4a5568;
  --accent: #ff8a3d;
  --accent-2: #1aa6ff;
  --accent-3: #00c2a8;
  --glass: rgba(255, 255, 255, 0.7);
  --glass-strong: rgba(255, 255, 255, 0.85);
  --border: rgba(15, 23, 42, 0.08);
  --shadow: 0 20px 60px rgba(10, 25, 47, 0.12);
  --radius: 26px;
  --radius-lg: 38px;
  --grad-metal: linear-gradient(135deg, rgba(255,255,255,0.7), rgba(210,220,255,0.5), rgba(255,255,255,0.9));
  --grad-liquid: radial-gradient(circle at 20% 20%, rgba(255,255,255,0.85), rgba(210,220,255,0.2) 45%, rgba(255,255,255,0.1) 70%);
}

:root[data-theme='dark'] {
  --bg: #0b111a;
  --bg-alt: #111827;
  --text: #f8fafc;
  --muted: #cbd5f5;
  --accent: #ff9f5a;
  --accent-2: #38bdf8;
  --accent-3: #22c55e;
  --glass: rgba(15, 23, 42, 0.75);
  --glass-strong: rgba(15, 23, 42, 0.9);
  --border: rgba(148, 163, 184, 0.2);
  --shadow: 0 25px 80px rgba(0, 0, 0, 0.35);
  --grad-metal: linear-gradient(135deg, rgba(255,255,255,0.08), rgba(59,130,246,0.2), rgba(255,255,255,0.04));
  --grad-liquid: radial-gradient(circle at 20% 20%, rgba(255,255,255,0.12), rgba(59,130,246,0.15) 45%, rgba(0,0,0,0.2) 70%);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  min-height: 100vh;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1200px, 92vw);
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--accent);
  color: #fff;
  padding: 8px 14px;
  border-radius: 999px;
  z-index: 9999;
}

.skip-link:focus {
  left: 16px;
  top: 16px;
}

.bg-orb {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.bg-orb::before,
.bg-orb::after {
  content: '';
  position: absolute;
  width: 60vmax;
  height: 60vmax;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.6;
  mix-blend-mode: screen;
  background: radial-gradient(circle at 30% 30%, rgba(56, 189, 248, 0.55), rgba(56, 189, 248, 0) 60%);
  animation: float 18s ease-in-out infinite;
}

.bg-orb::after {
  width: 50vmax;
  height: 50vmax;
  left: auto;
  right: -10vmax;
  top: 10vmax;
  background: radial-gradient(circle at 30% 30%, rgba(56,189,248,0.4), rgba(255,255,255,0) 60%);
  animation-delay: -6s;
}

@keyframes float {
  0%, 100% { transform: translate3d(-10%, -10%, 0) scale(1); }
  50% { transform: translate3d(5%, 10%, 0) scale(1.05); }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px);
  background: rgba(255,255,255,0.6);
  border-bottom: 1px solid var(--border);
}

:root[data-theme='dark'] .site-header {
  background: rgba(8, 12, 20, 0.7);
}

:root[data-theme='dark'] .bg-orb::before {
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.8), rgba(255,255,255,0) 60%);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  flex-shrink: 0;
}

.logo-img {
  height: 42px;
  width: auto;
  max-width: none;
  min-height: 42px;
  display: block;
}

.plate {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 14px;
  border-radius: 12px;
  background: var(--grad-metal);
  border: 1px solid var(--border);
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-family: var(--font-display);
  box-shadow: inset 0 1px 6px rgba(255,255,255,0.6);
}

.logo-text {
  font-family: var(--font-display);
  font-size: 1.1rem;
}

.nav-links {
  display: flex;
  gap: 18px;
  align-items: center;
  font-size: 0.95rem;
  font-weight: 500;
}

.nav-links a,
.nav-dropdown-toggle {
  position: relative;
  z-index: 0;
  padding: 6px 10px;
  border-radius: 999px;
}

.nav-links a {
  opacity: 0.92;
  transition: opacity 0.2s ease;
}

.nav-links a::before,
.nav-dropdown-toggle::before {
  content: '';
  position: absolute;
  inset: -6px -10px;
  border-radius: 999px;
  background: linear-gradient(120deg, rgba(255, 138, 61, 0.28), rgba(26, 166, 255, 0.22), rgba(255, 255, 255, 0.35));
  background-size: 200% 200%;
  opacity: 0;
  transform: scale(0.96);
  transition: opacity 0.3s ease, transform 0.3s ease, background-position 0.6s ease;
  z-index: -1;
}

.nav-links a::after,
.nav-dropdown-toggle::after {
  content: '';
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 3px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  opacity: 0;
  transform: scaleX(0.2);
  transform-origin: left;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.nav-links a:hover,
.nav-links a:focus,
.nav-dropdown-toggle:hover,
.nav-dropdown-toggle:focus {
  opacity: 1;
}

.nav-links a:hover::before,
.nav-links a:focus::before,
.nav-dropdown-toggle:hover::before,
.nav-dropdown-toggle:focus::before {
  opacity: 1;
  transform: scale(1);
  background-position: 100% 50%;
}

.nav-links a:hover::after,
.nav-links a:focus::after,
.nav-dropdown-toggle:hover::after,
.nav-dropdown-toggle:focus::after {
  opacity: 1;
  transform: scaleX(1);
}

.nav-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.nav-dropdown::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 12px;
}

.nav-dropdown-toggle {
  border: 0;
  background: transparent;
  font: inherit;
  color: inherit;
  cursor: pointer;
  opacity: 0.92;
  transition: opacity 0.2s ease;
}

.nav-dropdown-toggle:hover,
.nav-dropdown-toggle:focus {
  opacity: 1;
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  min-width: 200px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 14px;
  background: var(--glass-strong);
  border: 1px solid var(--border);
  border-radius: 18px;
  box-shadow: var(--shadow);
  z-index: 60;
  opacity: 0;
  transform: translateY(8px);
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0s linear 0.25s;
}

.nav-dropdown-menu a {
  opacity: 0.9;
  white-space: nowrap;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
  pointer-events: auto;
  transition-delay: 0s;
}

.nav-actions {
  display: flex;
  gap: 12px;
  align-items: center;
}

.nav-quick {
  display: none;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--glass);
  color: var(--text);
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.4px;
}

.nav-quick svg {
  width: 18px;
  height: 18px;
}

.nav-whatsapp {
  background: #ffffff;
  border-color: rgba(37, 211, 102, 0.5);
  box-shadow: 0 12px 24px rgba(37, 211, 102, 0.25);
}

:root[data-theme='dark'] .nav-whatsapp {
  background: rgba(255, 255, 255, 0.12);
}

.nav-whatsapp-icon {
  width: 20px;
  height: 20px;
  display: block;
}

.contact-actions {
  display: flex;
  gap: 10px;
  margin: 8px 0 6px;
  align-items: center;
}

.contact-actions .nav-quick {
  display: inline-flex;
  width: 34px;
  height: 34px;
}

.contact-actions.inline {
  display: inline-flex;
  margin: 0 0 0 8px;
  vertical-align: middle;
}

.contact-actions.inline .nav-quick {
  width: 28px;
  height: 28px;
}

.nav-call {
  background: linear-gradient(135deg, #f472b6, #f59e0b);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 12px 24px rgba(244, 114, 182, 0.3);
}

:root[data-theme='dark'] .nav-call {
  box-shadow: 0 14px 26px rgba(245, 158, 11, 0.35);
}

.theme-toggle {
  border: 1px solid var(--border);
  background: var(--glass);
  color: var(--text);
  border-radius: 999px;
  width: 42px;
  height: 42px;
  padding: 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  justify-content: center;
}

.theme-toggle .icon {
  display: none;
}

:root[data-theme='dark'] .theme-toggle .icon.moon {
  display: inline-flex;
}

:root[data-theme='light'] .theme-toggle .icon.sun {
  display: inline-flex;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn.primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff;
  box-shadow: 0 15px 30px rgba(255,138,61,0.3);
}

:root[data-theme='light'] .btn.primary {
  background: linear-gradient(135deg, #1d4ed8, #60a5fa);
  box-shadow: 0 16px 32px rgba(37, 99, 235, 0.28);
}

:root[data-theme='dark'] .btn.primary {
  background: linear-gradient(135deg, #1d4ed8, #60a5fa);
  box-shadow: 0 16px 32px rgba(37, 99, 235, 0.3);
}

.btn.secondary {
  background: var(--glass);
  border: 1px solid var(--border);
}

.btn:hover {
  transform: translateY(-2px);
}

.nav-toggle {
  display: none;
  background: linear-gradient(135deg, #22c55e, #0ea5e9);
  border: 1px solid transparent;
  border-radius: 999px;
  color: #fff;
  font-weight: 600;
  padding: 8px 10px;
  cursor: pointer;
  box-shadow: 0 14px 28px rgba(14, 165, 233, 0.28);
}

:root[data-theme='dark'] .nav-toggle {
  color: #fff;
  box-shadow: 0 16px 30px rgba(14, 165, 233, 0.35);
}

.hero {
  position: relative;
  padding: 60px 0 80px;
  z-index: 1;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  align-items: center;
}

.hero h1 {
  margin: 0 0 10px;
}

.hero-main-heading {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4vw, 4rem);
  margin: 0 0 18px;
}

.hero p {
  font-size: 1.1rem;
  color: var(--muted);
  line-height: 1.7;
}

.hero-card {
  padding: 28px;
  border-radius: var(--radius-lg);
  background: var(--glass-strong);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  position: relative;
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  will-change: transform;
}

.hero-card::after {
  content: '';
  position: absolute;
  inset: -40%;
  background: radial-gradient(circle at 20% 20%, rgba(255,255,255,0.25), rgba(255,255,255,0) 60%);
  opacity: 0;
  transform: translateY(7px);
  transition: opacity 0.4s ease, transform 0.4s ease;
  pointer-events: none;
}

.hero-card:hover {
  transform: translateY(-4px);
  border-color: rgba(26, 166, 255, 0.24);
  box-shadow: 0 18px 60px rgba(26, 166, 255, 0.12), var(--shadow);
}

.hero-card:hover::after {
  opacity: 0.8;
  transform: translateY(0);
}

.hero-card:active {
  transform: translateY(-1px) scale(0.993);
}

.section {
  padding: 80px 0;
  position: relative;
  z-index: 1;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin-bottom: 12px;
}

.section-subtitle {
  color: var(--muted);
  max-width: 700px;
}

.card-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  margin-top: 36px;
}

.card {
  padding: 24px;
  border-radius: var(--radius);
  background: var(--glass);
  border: 1px solid var(--border);
  backdrop-filter: blur(16px);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
  position: relative;
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  will-change: transform;
}

.card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--grad-liquid);
  opacity: 0.4;
}

.card::after {
  content: '';
  position: absolute;
  inset: -40%;
  background: radial-gradient(circle at 20% 20%, rgba(255,255,255,0.22), rgba(255,255,255,0) 60%);
  opacity: 0;
  transform: translateY(10%);
  transition: opacity 0.4s ease, transform 0.4s ease;
  pointer-events: none;
}

.card > * {
  position: relative;
}

.card h3 {
  margin-top: 0;
  font-family: var(--font-display);
}

.card img {
  transition: transform 0.5s ease;
}

.card:hover {
  transform: translateY(-6px);
  border-color: rgba(26, 166, 255, 0.18);
  box-shadow: 0 20px 70px rgba(26, 166, 255, 0.1), var(--shadow);
}

.card:hover::after {
  opacity: 0.7;
  transform: translateY(0);
}

.card:hover img {
  transform: scale(1.03);
}

.card:active {
  transform: translateY(-2px) scale(0.99);
}

.service-card picture {
  display: block;
  margin-bottom: 16px;
}
.service-card img {
  border-radius: 18px;
}

.price-list {
  display: grid;
  gap: 18px;
  margin-top: 30px;
}

.price-item {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 20px;
  border-radius: 18px;
  background: var(--glass);
  border: 1px solid var(--border);
}

.price-item strong {
  font-weight: 600;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--glass);
  border: 1px solid var(--border);
  font-size: 0.85rem;
}

.two-col {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  margin-top: 32px;
  align-items: start;
}

.map-embed {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 340px;
  box-shadow: var(--shadow);
}

.map-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.form {
  display: grid;
  gap: 16px;
}

.form input,
.form textarea,
.form select {
  width: 100%;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: var(--glass-strong);
  font-family: var(--font-body);
}

.form textarea {
  min-height: 120px;
}

:root[data-theme='dark'] .form input,
:root[data-theme='dark'] .form textarea,
:root[data-theme='dark'] .form select,
:root[data-theme='dark'] .form select option {
  color: #f8fafc;
  background-color: #0f172a;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin-top: 32px;
}

.gallery picture {
  display: block;
}
.gallery img {
  border-radius: 18px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.gallery img:hover {
  transform: scale(1.02);
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(7, 10, 18, 0.7);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 100;
}

.lightbox.active {
  display: flex;
}

.lightbox img {
  max-width: min(90vw, 1100px);
  max-height: 80vh;
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.site-footer {
  padding: 40px 0 60px;
  border-top: 1px solid var(--border);
  background: var(--bg-alt);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

@media (max-width: 900px) {
  .nav-actions .btn.primary:not(.order-float) {
    display: none;
  }

  .nav-quick {
    display: inline-flex;
    width: 41px;
    height: 41px;
  }

  .contact-actions .nav-quick {
    width: 32px;
    height: 32px;
  }

  .contact-actions.inline .nav-quick {
    width: 26px;
    height: 26px;
  }

  .order-float {
    display: none;
  }

  .order-float.is-floating {
    display: inline-flex;
    position: fixed;
    right: calc(16px + env(safe-area-inset-right));
    bottom: calc(16px + env(safe-area-inset-bottom));
    z-index: 200;
    box-shadow: 0 18px 36px rgba(14, 165, 233, 0.25);
    padding: 13px 22px;
    font-size: 1.24rem;
  }

  .nav {
    gap: 7px;
  }

  .logo-img {
    height: 32px;
    min-height: 32px;
  }

  .nav-actions {
    gap: 5px;
  }

  .theme-toggle {
    width: 41px;
    height: 41px;
  }

  .btn.primary:not(.order-float) {
    padding: 10px 17px;
    font-size: 0.95rem;
  }

  .nav-links {
    position: fixed;
    top: 70px;
    right: 16px;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 18px;
    background: var(--glass-strong);
    border: 1px solid var(--border);
    border-radius: 18px;
    box-shadow: var(--shadow);
    transform: translateY(-10px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  body.nav-open .nav-links {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-dropdown {
    width: 100%;
  }

  .nav-dropdown::after {
    display: none;
  }

  .nav-dropdown-toggle {
    width: 100%;
    text-align: left;
  }

  .nav-dropdown-menu {
    position: static;
    min-width: 0;
    width: 100%;
    margin: 0;
    padding: 0;
    gap: 12px;
    background: transparent;
    border: 0;
    box-shadow: none;
    opacity: 1;
    transform: none;
    visibility: visible;
    pointer-events: auto;
    transition: none;
  }

  .nav-dropdown-toggle {
    display: none;
  }

  .nav-dropdown-menu a {
    display: block;
    padding: 6px 10px;
    border-radius: 999px;
    text-align: left;
  }

  .nav-toggle {
    display: inline-flex;
    padding: 10px 15px;
    font-size: 0.95rem;
    min-height: 41px;
  }

  .two-col {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .nav {
    gap: 5px;
  }

  .logo-img {
    height: 26px;
    min-height: 26px;
  }

  .nav-actions {
    gap: 4px;
  }

  .theme-toggle {
    width: 36px;
    height: 36px;
  }

  .nav-quick {
    width: 36px;
    height: 36px;
  }

  .btn.primary {
    padding: 9px 14px;
    font-size: 0.85rem;
  }

  .nav-toggle {
    padding: 9px 13px;
    font-size: 0.85rem;
    min-height: 36px;
  }
}

@media (max-width: 360px) {
  .nav {
    flex-wrap: wrap;
  }

  .nav-actions {
    width: 100%;
    justify-content: flex-end;
    gap: 8px;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }

  .card,
  .hero-card,
  .card::after,
  .card img {
    transform: none !important;
  }
}

/* ============================================================
   Queue status widget
   ============================================================ */
.queue-container {
  position: relative;
  z-index: 1;
  padding-top: 14px;
  padding-bottom: 0;
}

.queue-heading {
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0 0 8px;
}

.queue-widget {
  margin: 0;
  min-height: 56px;
}

.queue-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  border-radius: 14px;
  flex-wrap: wrap;
  transition: background 0.3s, border-color 0.3s;
}

/* colour themes */
.queue-bar.queue-none,
.queue-bar.queue-low  { background: #dcfce7; border: 1px solid #bbf7d0; }
.queue-bar.queue-mid  { background: #fef9c3; border: 1px solid #fde68a; }
.queue-bar.queue-high {
  background:
    linear-gradient(rgba(220, 38, 38, 0.10), rgba(220, 38, 38, 0.10)),
    #ffffff;
  border: 1px solid rgba(220, 38, 38, 0.25);
}
.queue-bar.queue-closed { background: var(--panel); border: 1px solid var(--border); }

:root[data-theme='dark'] .queue-bar.queue-none,
:root[data-theme='dark'] .queue-bar.queue-low  { background: rgba(22,163,74,.15);  border-color: rgba(22,163,74,.3); }
:root[data-theme='dark'] .queue-bar.queue-mid  { background: rgba(202,138,4,.15);  border-color: rgba(202,138,4,.3); }
:root[data-theme='dark'] .queue-bar.queue-high {
  background:
    linear-gradient(rgba(220, 38, 38, 0.32), rgba(220, 38, 38, 0.32)),
    #1f2937;
  border-color: rgba(220, 38, 38, 0.55);
}
:root[data-theme='dark'] .queue-bar.queue-closed { background: var(--panel); border-color: var(--border); }

/* live dot */
.q-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  flex-shrink: 0;
  display: inline-block;
}
.q-dot-none, .q-dot-low  { background: #16a34a; animation: q-pulse-green 2s infinite; }
.q-dot-mid               { background: #ca8a04; animation: q-pulse-yellow 2s infinite; }
.q-dot-high              { background: #dc2626; animation: q-pulse-red 2s infinite; }
.q-dot-off               { background: var(--muted); }

@keyframes q-pulse-green  { 0%,100%{box-shadow:0 0 0 3px rgba(22,163,74,.2)}  50%{box-shadow:0 0 0 7px rgba(22,163,74,.07)} }
@keyframes q-pulse-yellow { 0%,100%{box-shadow:0 0 0 3px rgba(202,138,4,.2)} 50%{box-shadow:0 0 0 7px rgba(202,138,4,.07)} }
@keyframes q-pulse-red    { 0%,100%{box-shadow:0 0 0 3px rgba(220,38,38,.2)} 50%{box-shadow:0 0 0 7px rgba(220,38,38,.07)} }

/* text */
.queue-text { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 2px; }
.queue-msg  { font-weight: 600; font-size: 15px; color: var(--ink); line-height: 1.3; }
.queue-sub  { font-size: 13px; color: var(--muted); }
.queue-cta  { white-space: nowrap; flex-shrink: 0; }

@media (max-width: 600px) {
  .queue-bar  { gap: 10px; padding: 12px 14px; }
  .queue-cta  { width: 100%; text-align: center; }
  .queue-msg  { font-size: 14px; }
}

.queue-timer {
  font-size: 11px;
  color: var(--muted);
  text-align: right;
  margin-top: 5px;
  margin-bottom: 6px;
  min-height: 15px;
  letter-spacing: 0.02em;
}

/* Form label for select */
.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted);
  margin-bottom: 4px;
}

/* Map facade – lazy load Google Maps on click */
.map-facade {
  cursor: pointer;
  background: linear-gradient(135deg, var(--card-bg) 0%, var(--bg) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 300px;
  border: 2px dashed var(--border);
  border-radius: 16px;
  transition: border-color 0.2s, background 0.2s;
}
.map-facade:hover {
  border-color: var(--primary);
}
.map-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  text-align: center;
  padding: 24px;
}
.map-placeholder p {
  font-weight: 600;
  color: var(--text);
  margin: 0;
}
.map-placeholder span {
  font-size: 0.85rem;
  text-decoration: underline;
}

/* ===== Service landing pages ===== */
.breadcrumb-nav {
  background: var(--glass);
  border-bottom: 1px solid var(--border);
  position: relative;
  z-index: 1;
}
.breadcrumb {
  list-style: none;
  margin: 0;
  padding: 10px 0;
  display: flex;
  gap: 0;
  align-items: center;
  font-size: 0.88rem;
  color: var(--muted);
  flex-wrap: wrap;
}
.breadcrumb li + li::before {
  content: '›';
  margin: 0 8px;
}
.breadcrumb a {
  color: var(--muted);
}
.breadcrumb a:hover {
  color: var(--text);
}
.service-hero {
  padding-top: 48px;
}
.service-hero-content {
  max-width: 760px;
}
.service-hero-content h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-family: var(--font-display);
  margin-bottom: 18px;
  line-height: 1.2;
}
.service-hero-perex {
  font-size: 1.1rem;
  color: var(--muted);
  margin-bottom: 28px;
  line-height: 1.6;
}
.service-hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.btn-sm {
  padding: 8px 16px;
  font-size: 0.88rem;
}

/* ===== Article / blog pages ===== */
.article-header {
  padding-top: 48px;
  padding-bottom: 0;
}
.article-meta {
  font-size: 0.88rem;
  color: var(--muted);
  margin-top: 12px;
  margin-bottom: 0;
}
.article-body {
  max-width: 780px;
}
.article-body h2 {
  font-size: 1.5rem;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}
.article-body h3 {
  font-size: 1.2rem;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}
.article-body p {
  line-height: 1.7;
  margin-bottom: 1rem;
}
.article-body ul, .article-body ol {
  padding-left: 1.4rem;
  margin-bottom: 1rem;
}
.article-body li {
  margin-bottom: 0.4rem;
  line-height: 1.6;
}
.article-cta {
  margin-top: 2.5rem;
  padding: 28px 24px;
  border-radius: var(--radius);
  background: var(--glass);
  border: 1px solid var(--border);
}
