:root {
  --navy: #0f2744;
  --navy-light: #1a3a5c;
  --accent: #e8a317;
  --accent-hover: #f0b429;
  --teal: #1a7a6d;
  --bg: #f4f6f9;
  --surface: #ffffff;
  --text: #1e293b;
  --text-muted: #64748b;
  --border: #e2e8f0;
  --shadow: 0 4px 24px rgba(15, 39, 68, 0.08);
  --radius: 12px;
  --max: 1120px;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Segoe UI", system-ui, -apple-system, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
}

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

a { color: var(--teal); text-decoration: none; }
a:hover { text-decoration: underline; }

.container {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 8px rgba(0,0,0,0.04);
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.site-header.is-scrolled {
  box-shadow: 0 4px 20px rgba(15, 39, 68, 0.1);
  border-bottom-color: transparent;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0.85rem 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--navy);
}

.logo-img {
  height: 48px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  flex-shrink: 0;
  display: block;
}

.logo-mark {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--navy) 60%, var(--teal));
  border-radius: 10px;
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.logo-mark[hidden],
.logo-img[hidden] {
  display: none !important;
}

.logo-text strong {
  display: block;
  font-size: 1.05rem;
  line-height: 1.2;
}

.logo-text span {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 400;
}

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.45rem 0.65rem;
  cursor: pointer;
  font-size: 1.25rem;
  color: var(--navy);
}

.main-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 0.25rem;
}

.main-nav a {
  display: block;
  padding: 0.5rem 0.9rem;
  border-radius: 8px;
  color: var(--text);
  font-weight: 500;
  font-size: 0.95rem;
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
}

.main-nav a:hover,
.main-nav a.active {
  background: var(--bg);
  color: var(--navy);
  text-decoration: none;
}

.nav-cta {
  background: var(--accent) !important;
  color: var(--navy) !important;
  font-weight: 600 !important;
}

.nav-cta:hover {
  background: var(--accent-hover) !important;
}

/* Hero */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 55%, #1a5c52 100%);
  background-size: 200% 200%;
  animation: hero-gradient 20s ease infinite;
  color: #fff;
  padding: 4.5rem 0 5rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  width: min(520px, 80vw);
  height: min(520px, 80vw);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(26, 122, 109, 0.22) 0%, transparent 68%);
  top: -28%;
  right: -12%;
  pointer-events: none;
  animation: hero-glow 14s ease-in-out infinite;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.hero .hero-badge-wrap {
  animation: fade-up 0.75s ease 0.1s both;
}

.hero h1 {
  animation: fade-up 0.75s ease 0.22s both;
}

.hero-lead {
  animation: fade-up 0.75s ease 0.34s both;
}

.hero .container { position: relative; z-index: 1; }

.hero-badge-wrap {
  position: relative;
  display: inline-block;
  margin-bottom: 1.25rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  font-size: 0.82rem;
  letter-spacing: 0.02em;
  color: inherit;
  font-family: inherit;
  line-height: inherit;
  cursor: pointer;
  transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.hero-badge-pin {
  transition: transform 0.35s ease;
}

.hero-badge-wrap:hover .hero-badge,
.hero-badge-wrap.is-open .hero-badge,
.hero-badge:focus-visible {
  background: rgba(255,255,255, 0.22);
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(232, 163, 23, 0.28), 0 8px 24px rgba(0, 0, 0, 0.18);
  transform: translateY(-1px);
  outline: none;
}

.hero-badge-wrap:hover .hero-badge-pin,
.hero-badge-wrap.is-open .hero-badge-pin {
  transform: scale(1.15);
}

.hero-map-popup {
  position: fixed;
  top: 5.25rem;
  left: 1rem;
  width: min(400px, calc(100vw - 2rem));
  z-index: 250;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px) scale(0.96);
  transition: opacity 0.35s ease, transform 0.35s ease, visibility 0.35s;
  pointer-events: none;
}

.hero-map-popup.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.hero-map-popup-inner {
  background: var(--surface);
  border: 2px solid var(--accent);
  border-radius: 14px;
  overflow: visible;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.28);
  animation: map-glow 2.5s ease-in-out infinite;
}

.hero-map-title {
  margin: 0;
  padding: 0.65rem 0.85rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--navy);
  background: linear-gradient(90deg, rgba(232, 163, 23, 0.15), rgba(26, 122, 109, 0.08));
  border-bottom: 1px solid var(--border);
}

.hero-map-canvas {
  width: 100%;
  height: 260px;
  background: #e8eef4;
  border-radius: 0 0 12px 12px;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.hero-map-canvas .leaflet-container {
  width: 100%;
  height: 100%;
  font: inherit;
  background: #e8eef4;
}

.hero-map-canvas .leaflet-pane.radius-pane,
.hero-map-canvas .leaflet-overlay-pane {
  z-index: 650 !important;
}

.hero-map-canvas .leaflet-overlay-pane svg,
.hero-map-canvas .leaflet-overlay-pane canvas {
  overflow: visible !important;
  z-index: 650 !important;
}

.hero-map-canvas .leaflet-tile-pane {
  z-index: 200 !important;
}

.map-radius-label {
  background: #ff3300;
  color: #fff;
  border: 2px solid #fff;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 18px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
  white-space: nowrap;
}

.map-radius-legend {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.4rem 0.55rem;
  font-size: 0.68rem;
  color: var(--navy);
  line-height: 1.45;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.12);
}

.map-radius-legend-item {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.legend-border {
  width: 18px;
  height: 3px;
  border-radius: 2px;
  background: #ff0000;
  box-shadow: 0 0 0 1px #fff;
  flex-shrink: 0;
}

.legend-area {
  width: 18px;
  height: 12px;
  border-radius: 3px;
  background: rgba(255, 85, 0, 0.25);
  border: 1px solid #ff5500;
  flex-shrink: 0;
}

.hero-map-fallback {
  width: 100%;
  height: 260px;
  border: 0;
  display: block;
}

.hero-map-hint {
  margin: 0;
  padding: 0.45rem 0.85rem 0.55rem;
  font-size: 0.72rem;
  color: var(--text-muted);
  background: var(--bg);
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1.15;
  margin: 0 0 1rem;
  max-width: 18ch;
}

.hero-lead {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  opacity: 0.9;
  max-width: 52ch;
  margin: 0 0 2rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  animation: fade-up 0.75s ease 0.46s both;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.75rem 1.4rem;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s, background 0.15s;
}

.btn:hover { text-decoration: none; transform: translateY(-1px); }

.btn-primary {
  background: var(--accent);
  color: var(--navy);
  box-shadow: 0 4px 14px rgba(232, 163, 23, 0.35);
}

.btn-primary:hover { background: var(--accent-hover); }

.btn-outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.5);
}

.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: #fff;
}

/* Sections */
section { padding: 4rem 0; }

.section-title {
  text-align: center;
  margin-bottom: 2.5rem;
}

.section-title h2 {
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  color: var(--navy);
  margin: 0 0 0.5rem;
}

.section-title p {
  color: var(--text-muted);
  margin: 0;
  max-width: 50ch;
  margin-inline: auto;
}

/* Cards grid */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: transform 0.2s, box-shadow 0.2s;
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(15, 39, 68, 0.12);
}

.card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--navy), var(--teal));
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.card h3 {
  margin: 0 0 0.5rem;
  color: var(--navy);
  font-size: 1.15rem;
}

.card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.card ul {
  margin: 0.75rem 0 0;
  padding-left: 1.1rem;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.card ul li { margin-bottom: 0.25rem; }

/* References */
.ref-category {
  margin-bottom: 2.5rem;
}

.ref-category h2 {
  color: var(--navy);
  font-size: 1.35rem;
  margin: 0 0 1.25rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--accent);
  display: inline-block;
}

.ref-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
}

.ref-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.35rem 1.5rem;
  box-shadow: var(--shadow);
}

.ref-card .ref-type {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--teal);
  background: rgba(26, 122, 109, 0.1);
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  margin-bottom: 0.65rem;
}

.ref-card h3 {
  margin: 0 0 0.35rem;
  font-size: 1.05rem;
  color: var(--navy);
  line-height: 1.35;
}

.ref-card .ref-place {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.ref-card .ref-services {
  margin: 0.75rem 0 0;
  padding-top: 0.75rem;
  border-top: 1px solid var(--border);
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Photo gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.gallery-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.2s, box-shadow 0.2s;
}

.gallery-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(15, 39, 68, 0.12);
}

.gallery-item img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}

.gallery-item:hover img {
  transform: scale(1.04);
}

.gallery-caption {
  padding: 1rem 1.15rem 1.15rem;
}

.gallery-caption strong {
  display: block;
  color: var(--navy);
  font-size: 0.95rem;
  margin-bottom: 0.25rem;
  line-height: 1.35;
}

.gallery-caption span {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.map-block {
  margin-top: 0;
}

.map-frame {
  width: 100%;
  height: 360px;
  border: 0;
  border-radius: var(--radius);
  display: block;
  box-shadow: var(--shadow);
}

.map-links {
  margin-top: 0.75rem;
  font-size: 0.9rem;
}

.form-status {
  margin-bottom: 1rem;
  padding: 0.75rem 0.9rem;
  border-radius: 8px;
  font-size: 0.9rem;
  display: none;
}

.form-status.ok {
  display: block;
  background: #ecfdf5;
  color: #065f46;
  border: 1px solid #a7f3d0;
}

.form-status.err {
  display: block;
  background: #fef2f2;
  color: #991b1b;
  border: 1px solid #fecaca;
}

/* Features strip */
.features-strip {
  background: var(--surface);
  border-block: 1px solid var(--border);
  padding: 2.5rem 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  text-align: center;
}

.feature-item strong {
  display: block;
  color: var(--navy);
  font-size: 1.05rem;
  margin-bottom: 0.25rem;
}

.feature-item span {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* CTA band */
.cta-band {
  background: var(--navy);
  color: #fff;
  padding: 3.5rem 0;
  text-align: center;
}

.cta-band h2 { margin: 0 0 0.75rem; font-size: 1.75rem; }
.cta-band p { margin: 0 0 1.5rem; opacity: 0.85; }

/* Page header (subpages) */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  color: #fff;
  padding: 3rem 0;
  position: relative;
  overflow: hidden;
}

.page-hero h1 {
  margin: 0;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  animation: fade-up 0.7s ease 0.12s both;
}

.page-hero p {
  margin: 0.5rem 0 0;
  opacity: 0.85;
  animation: fade-up 0.7s ease 0.24s both;
}

/* Content blocks */
.content-block {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  margin-bottom: 1.5rem;
}

.content-block h2 {
  color: var(--navy);
  margin: 0 0 1rem;
  font-size: 1.35rem;
}

.content-block h3 {
  color: var(--navy-light);
  margin: 1.5rem 0 0.5rem;
  font-size: 1.05rem;
}

.content-block p,
.content-block li {
  color: var(--text-muted);
}

.content-block ul { padding-left: 1.2rem; }
.content-block li { margin-bottom: 0.35rem; }

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.contact-info-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.contact-info-item .icon {
  width: 44px;
  height: 44px;
  background: var(--bg);
  border-radius: 10px;
  display: grid;
  place-items: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-info-item strong {
  display: block;
  color: var(--navy);
}

.contact-info-item span,
.contact-info-item a {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.contact-form label {
  display: block;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 0.35rem;
  font-size: 0.9rem;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 0.7rem 0.9rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  font: inherit;
  margin-bottom: 1rem;
  background: var(--bg);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid var(--teal);
  outline-offset: 0;
  border-color: var(--teal);
}

.contact-form textarea { min-height: 140px; resize: vertical; }

.form-hint {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: -0.5rem;
  margin-bottom: 1rem;
}

/* Footer */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,0.75);
  padding: 3rem 0 1.5rem;
  font-size: 0.9rem;
}

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

.site-footer h4 {
  color: #fff;
  margin: 0 0 0.75rem;
  font-size: 0.95rem;
}

.site-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-footer li { margin-bottom: 0.4rem; }

.site-footer a {
  color: rgba(255,255,255,0.75);
  text-decoration: none;
}

.site-footer a:hover { color: var(--accent); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 1.25rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.5rem;
  font-size: 0.82rem;
}

/* Legal pages */
.legal h2 { font-size: 1.2rem; margin-top: 2rem; }
.legal p, .legal li { font-size: 0.95rem; }

.placeholder-note {
  background: #fff8e6;
  border: 1px solid #f0d080;
  border-radius: 8px;
  padding: 0.85rem 1rem;
  font-size: 0.88rem;
  color: #7a5c00;
  margin-bottom: 1.5rem;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.25rem 0 1.75rem;
}

.btn-telegram {
  background: #229ed9;
  color: #fff;
}

.btn-telegram:hover { background: #1a8bc4; color: #fff; }

.tg-icon {
  width: 1.15em;
  height: 1.15em;
  flex-shrink: 0;
  display: block;
}

.contact-info-item .icon--telegram {
  background: transparent;
  padding: 0;
}

.contact-info-item .icon--telegram .tg-icon {
  width: 44px;
  height: 44px;
}

/* Animations */
@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes hero-gradient {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

@keyframes hero-glow {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.85; }
  50% { transform: translate(-28px, 18px) scale(1.06); opacity: 1; }
}

@keyframes map-glow {
  0%, 100% { box-shadow: 0 16px 48px rgba(0, 0, 0, 0.28); }
  50% { box-shadow: 0 16px 48px rgba(232, 163, 23, 0.35), 0 0 0 1px rgba(232, 163, 23, 0.4); }
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
  transition-delay: var(--reveal-delay, 0s);
}

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

@media (prefers-reduced-motion: reduce) {
  .hero,
  .hero::before,
  .hero .hero-badge-wrap,
  .hero h1,
  .hero-lead,
  .hero-actions,
  .page-hero h1,
  .page-hero p {
    animation: none;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .gallery-item img {
    transition: none;
  }

  .gallery-item:hover img {
    transform: none;
  }

  .hero-map-popup,
  .hero-map-popup-inner {
    animation: none;
    transition: none;
  }

  .hero-map-popup.is-open {
    opacity: 1;
    visibility: visible;
    transform: none;
  }
}

/* Shop / Verkauf */
.shop-intro p {
  margin: 0 0 0.75rem;
  color: var(--text-muted);
}

.shop-note {
  font-size: 0.9rem;
  padding: 0.65rem 0.85rem;
  background: var(--bg);
  border-radius: 8px;
  border-left: 3px solid var(--accent);
}

.shop-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.75rem;
}

.shop-filter {
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
  font: inherit;
  font-size: 0.88rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
}

.shop-filter:hover,
.shop-filter.is-active {
  background: var(--navy);
  border-color: var(--navy);
  color: #fff;
}

.shop-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.shop-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.35rem 1.4rem 1.25rem;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  transition: transform 0.2s, box-shadow 0.2s;
}

.shop-card.is-filtered-out {
  display: none !important;
}

.shop-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(15, 39, 68, 0.1);
}

.shop-brand {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--teal);
  background: rgba(26, 122, 109, 0.1);
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  width: fit-content;
}

.shop-card[data-brand="sopro"] .shop-brand {
  color: #1a4a8a;
  background: rgba(26, 74, 138, 0.1);
}

.shop-card h3 {
  margin: 0;
  font-size: 1.05rem;
  color: var(--navy);
  line-height: 1.35;
}

.shop-card p {
  margin: 0;
  flex: 1;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.shop-price {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy-light);
}

.shop-actions {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.35rem;
}

.shop-actions--wide {
  margin-top: 1rem;
  flex-wrap: wrap;
}

.btn-sm {
  padding: 0.55rem 1rem;
  font-size: 0.88rem;
}

.shop-footer-note h2 {
  margin-top: 0;
}

/* Responsive */
@media (max-width: 768px) {
  .nav-toggle { display: block; }

  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    padding: 0.5rem 1rem 1rem;
    box-shadow: var(--shadow);
  }

  .main-nav.open { display: block; }

  .main-nav ul {
    flex-direction: column;
    gap: 0;
  }

  .main-nav a { padding: 0.75rem 0.5rem; }

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

  .hero { padding: 3rem 0 3.5rem; }

  .hero-map-popup {
    top: 4.75rem;
    left: 0.75rem;
    width: min(360px, calc(100vw - 1.5rem));
  }

  section { padding: 2.5rem 0; }
}