:root {
  --rs-bg-deep: #050d18;
  --rs-bg-elevated: #0c1829;
  --rs-surface: #ffffff;
  --rs-surface-soft: #f4f7fb;
  --rs-text: #0f172a;
  --rs-text-muted: #64748b;
  --rs-accent: #0d9488;
  --rs-accent-hover: #0f766e;
  --rs-accent-soft: rgba(13, 148, 136, 0.12);
  --rs-line: rgba(15, 23, 42, 0.08);
  --rs-glow: rgba(45, 212, 191, 0.35);
  --rs-radius: 14px;
  --rs-radius-sm: 10px;
  --rs-shadow: 0 24px 60px rgba(5, 13, 24, 0.35);
  --rs-font-sans: "DM Sans", "Noto Sans TC", system-ui, sans-serif;
  --rs-font-zh: "Noto Sans TC", "DM Sans", system-ui, sans-serif;
  --rs-header-h: 72px;
  --rs-brand-logo-mega: 23.1rem;
  --rs-brand-logo-slot: 23.1rem;
}

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

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

body.site-body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--rs-font-zh);
  color: var(--rs-text);
  background: var(--rs-surface-soft);
  line-height: 1.65;
}

body.site-body.lang-zh-hans {
  font-family: "Noto Sans SC", "Noto Sans TC", "DM Sans", system-ui, sans-serif;
}

.site-main {
  padding-top: var(--rs-header-h);
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--rs-line);
  transition: box-shadow 0.25s ease, background 0.25s ease;
  overflow: visible;
}

.site-navbar,
.site-nav-inner {
  overflow: visible;
}

.site-navbar.navbar {
  overflow: visible;
}

.site-header.is-scrolled {
  box-shadow: 0 8px 32px rgba(5, 13, 24, 0.08);
}

.site-navbar {
  padding-top: 0.65rem;
  padding-bottom: 0.65rem;
}

.site-nav-inner {
  max-width: 1200px;
}

.site-brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
  color: var(--rs-text) !important;
}

/* 圖檔 Logo：維持導覽列佔高不變，圖形放大 4 倍並向下跨入 hero */
.site-brand--mega {
  align-items: flex-start;
  position: relative;
  z-index: 1001;
}

.site-brand--mega .site-brand__img-wrap {
  position: relative;
  flex-shrink: 0;
  width: var(--rs-brand-logo-slot);
  height: 2.75rem;
  overflow: visible;
  align-self: flex-start;
}

.site-brand--mega .site-brand__img--mega {
  position: absolute;
  top: -0.5cm;
  left: 0;
  width: var(--rs-brand-logo-mega);
  height: var(--rs-brand-logo-mega);
  max-width: none;
  object-fit: contain;
  border-radius: var(--rs-radius-sm);
  filter: drop-shadow(0 10px 28px rgba(5, 13, 24, 0.15));
}

@media (max-width: 991.98px) {
  .site-brand--mega .site-brand__img-wrap {
    width: 14.85rem;
    height: 2.25rem;
  }

  .site-brand--mega .site-brand__img--mega {
    width: 14.85rem;
    height: 14.85rem;
  }
}

@media (max-width: 575.98px) {
  .site-brand--mega .site-brand__img-wrap {
    width: 10.725rem;
    height: 2rem;
  }

  .site-brand--mega .site-brand__img--mega {
    width: 10.725rem;
    height: 10.725rem;
  }
}

.site-brand__mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: var(--rs-radius-sm);
  background: linear-gradient(145deg, var(--rs-accent), #0f766e);
  color: #fff;
  font-family: var(--rs-font-sans);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.02em;
}

.site-brand__mark--footer {
  margin-bottom: 0.75rem;
}

.site-brand__img {
  width: 3.5rem;
  height: 3.5rem;
  max-width: 100%;
  object-fit: contain;
  flex-shrink: 0;
  border-radius: var(--rs-radius-sm);
}

/* 內頁：Logo 留在白色導覽列內，不跨入 hero */
.site-brand:not(.site-brand--mega) {
  align-items: center;
}

.site-brand__img--nav {
  width: auto;
  height: 2.75rem;
  max-width: 11rem;
  max-height: 2.75rem;
  object-fit: contain;
  flex-shrink: 0;
  border-radius: var(--rs-radius-sm);
}

@media (max-width: 575.98px) {
  .site-brand__img--nav {
    height: 2.35rem;
    max-width: 9rem;
    max-height: 2.35rem;
  }
}

/* 頁尾 Logo：沿用 --nav 比例，與頁首導覽列同圖同尺寸邏輯 */
.site-brand__img--footer-match {
  margin-bottom: 0.75rem;
}

@media (max-width: 575.98px) {
  .site-brand__img--footer-match {
    margin-bottom: 0.65rem;
  }
}

.site-nav-toggler {
  border: 1px solid rgba(15, 23, 42, 0.12);
  padding: 0.35rem 0.5rem;
  /* 高於首頁 mega logo（z-index 1001），避免窄螢幕被大圖蓋住無法點 */
  position: relative;
  z-index: 1002;
  background-color: rgba(255, 255, 255, 0.92);
}

.site-nav-toggler:focus {
  box-shadow: 0 0 0 2px var(--rs-accent-soft);
}

.site-nav-links .nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--rs-text) !important;
  padding: 0.5rem 0.85rem !important;
  border-radius: 8px;
  transition: color 0.2s, background 0.2s;
}

.site-nav-links .nav-link:hover,
.site-nav-links .nav-link:focus {
  color: var(--rs-accent) !important;
  background: var(--rs-accent-soft);
}

.site-nav-divider {
  display: inline-block;
  width: 1px;
  height: 1.25rem;
  background: var(--rs-line);
  vertical-align: middle;
}

.site-nav-lang {
  font-family: var(--rs-font-sans);
  font-weight: 600 !important;
  font-size: 0.8rem !important;
  opacity: 0.85;
}

.site-nav-lang-group {
  gap: 0.1rem;
}

.site-nav-lang-group .site-nav-lang-link {
  font-family: var(--rs-font-sans);
  font-weight: 600 !important;
  font-size: 0.8rem !important;
  padding-left: 0.55rem !important;
  padding-right: 0.55rem !important;
}

.site-nav-lang-sep {
  color: var(--rs-text-muted);
  font-size: 0.75rem;
  user-select: none;
  padding: 0 0.05rem;
}

.site-nav-lang-link.is-active {
  color: var(--rs-accent) !important;
}

.site-nav-tool-link {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  color: var(--rs-text) !important;
  opacity: 0.92;
  padding-left: 0.5rem !important;
  padding-right: 0.5rem !important;
}

.site-nav-tool-link:hover,
.site-nav-tool-link:focus {
  color: var(--rs-accent) !important;
  opacity: 1;
  background: var(--rs-accent-soft) !important;
}

.site-nav-tool-link__svg {
  display: block;
  flex-shrink: 0;
}

@media (min-width: 992px) {
  .site-nav-links {
    gap: 0.15rem;
  }
}

/* Hero */
.hero {
  position: relative;
  min-height: calc(100vh - var(--rs-header-h));
  display: flex;
  align-items: center;
  padding: 4rem 0 5rem;
  background: var(--rs-bg-deep);
  color: #e2e8f0;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 55% at 20% 20%, rgba(13, 148, 136, 0.25), transparent 55%),
    radial-gradient(ellipse 60% 40% at 85% 70%, rgba(56, 189, 248, 0.12), transparent 50%),
    linear-gradient(180deg, var(--rs-bg-deep) 0%, var(--rs-bg-elevated) 100%);
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 160px;
  background: linear-gradient(to top, var(--rs-surface-soft), transparent);
  pointer-events: none;
  z-index: 2;
}

.hero--has-carousel {
  isolation: isolate;
}

.hero--has-carousel::before {
  display: none;
}

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

.hero-carousel-root {
  height: 100%;
}

.hero-carousel-inner {
  position: relative;
  height: 100%;
}

.hero-carousel-inner .carousel-item {
  position: relative;
  height: 100%;
  min-height: calc(100vh - var(--rs-header-h));
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: var(--rs-bg-deep);
}

.hero-slide--video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(ellipse 80% 55% at 18% 18%, rgba(13, 148, 136, 0.2), transparent 52%),
    linear-gradient(105deg, rgba(5, 13, 24, 0.9) 0%, rgba(5, 13, 24, 0.55) 48%, rgba(5, 13, 24, 0.38) 100%);
}

.hero-carousel-chrome {
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
}

.hero-carousel-chrome .hero-carousel-indicators,
.hero-carousel-chrome .hero-carousel-control {
  pointer-events: auto;
}

.hero-carousel-indicators {
  bottom: 1.25rem;
  margin-bottom: 0;
  gap: 0.35rem;
}

.hero-carousel-indicators [data-bs-target] {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  border: none;
  background-color: rgba(255, 255, 255, 0.35);
  opacity: 1;
}

.hero-carousel-indicators .active {
  background-color: var(--rs-accent);
}

.hero-carousel-control {
  width: min(3rem, 11vw);
  opacity: 0.45;
}

.hero-carousel-control:hover,
.hero-carousel-control:focus {
  opacity: 0.95;
}

.hero--has-carousel .hero-carousel-control .carousel-control-prev-icon,
.hero--has-carousel .hero-carousel-control .carousel-control-next-icon {
  filter: invert(1);
}

.hero .container,
.hero .hero-content {
  position: relative;
  z-index: 1;
  max-width: 1200px;
}

.hero--has-carousel .hero-content {
  z-index: 3;
  pointer-events: auto;
}

.hero-kicker {
  font-family: var(--rs-font-sans);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--rs-accent);
  margin-bottom: 1.25rem;
}

.hero-title-en {
  font-family: var(--rs-font-sans);
  font-size: clamp(2rem, 5vw, 3.35rem);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 1rem;
  max-width: 18ch;
}

.hero-title-zh {
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  font-weight: 500;
  color: #ffffff;
  margin: 0 0 2rem;
  max-width: 32ch;
  line-height: 1.5;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 3rem;
}

.btn-rs-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: 999px;
  border: none;
  background: linear-gradient(135deg, var(--rs-accent), #0f766e);
  color: #fff !important;
  text-decoration: none;
  box-shadow: 0 12px 28px var(--rs-glow);
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn-rs-primary:hover {
  transform: translateY(-1px);
  color: #fff !important;
}

.btn-rs-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.45);
  background: transparent;
  color: #e2e8f0 !important;
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s;
}

.btn-rs-ghost:hover {
  border-color: var(--rs-accent);
  color: #fff !important;
  background: rgba(13, 148, 136, 0.12);
}

.hero-scroll {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--rs-font-sans);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #64748b;
}

.hero-scroll__line {
  width: 48px;
  height: 1px;
  background: linear-gradient(90deg, var(--rs-accent), transparent);
}

/* Sections */
.section {
  padding: clamp(3.5rem, 8vw, 6rem) 0;
}

.section--surface {
  background: var(--rs-surface);
}

.section--soft {
  background: var(--rs-surface-soft);
}

.section-head {
  max-width: 720px;
  margin-bottom: 2.5rem;
}

.section-eyebrow {
  font-family: var(--rs-font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rs-accent);
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: clamp(1.65rem, 3.5vw, 2.25rem);
  font-weight: 700;
  line-height: 1.3;
  margin: 0 0 1rem;
  letter-spacing: -0.02em;
}

.section-lead {
  margin: 0;
  color: var(--rs-text-muted);
  font-size: 1.05rem;
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 600;
  color: var(--rs-accent) !important;
  text-decoration: none;
  margin-top: 1.25rem;
}

.link-arrow:hover {
  color: var(--rs-accent-hover) !important;
}

.split-block {
  display: grid;
  gap: 2rem;
  align-items: start;
}

@media (min-width: 992px) {
  .split-block {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

.split-block__text {
  font-size: 1.05rem;
  color: var(--rs-text-muted);
  margin: 0;
}

/* Pillars */
.pillars {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .pillars {
    grid-template-columns: repeat(3, 1fr);
  }
}

.pillar {
  background: var(--rs-surface);
  border-radius: var(--rs-radius);
  padding: 1.75rem 1.5rem;
  border: 1px solid var(--rs-line);
  box-shadow: 0 4px 24px rgba(5, 13, 24, 0.04);
  height: 100%;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.pillar:hover {
  border-color: rgba(13, 148, 136, 0.35);
  box-shadow: 0 12px 40px rgba(13, 148, 136, 0.08);
}

.pillar__icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--rs-accent-soft);
  color: var(--rs-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  margin-bottom: 1rem;
  font-weight: 700;
  font-family: var(--rs-font-sans);
}

.pillar__title {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0 0 0.5rem;
}

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

/* Stats */
.stats-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

@media (min-width: 768px) {
  .stats-row {
    grid-template-columns: repeat(5, 1fr);
  }
}

.stat-card {
  text-align: center;
  padding: 1.5rem 0.75rem;
  background: var(--rs-surface);
  border-radius: var(--rs-radius);
  border: 1px solid var(--rs-line);
}

.stat-card__num {
  font-family: var(--rs-font-sans);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--rs-accent);
  line-height: 1;
  margin-bottom: 0.35rem;
}

.stat-card__unit {
  font-size: 0.85rem;
  color: var(--rs-text-muted);
}

/* Feature / narrative dark band */
.band-dark {
  background: linear-gradient(165deg, var(--rs-bg-elevated) 0%, var(--rs-bg-deep) 100%);
  color: #cbd5e1;
  position: relative;
  overflow: hidden;
}

.band-dark::before {
  content: "";
  position: absolute;
  top: -40%;
  right: -10%;
  width: 50%;
  height: 100%;
  background: radial-gradient(circle, rgba(13, 148, 136, 0.15), transparent 65%);
  pointer-events: none;
}

.band-dark .container {
  position: relative;
  z-index: 1;
  max-width: 1200px;
}

.band-dark .section-title {
  color: #f1f5f9;
}

.band-dark .section-lead,
.band-dark .split-block__text {
  color: #94a3b8;
}

/* Cards grid (services / news) */
.card-rs {
  height: 100%;
  border-radius: var(--rs-radius);
  border: 1px solid var(--rs-line);
  background: var(--rs-surface);
  overflow: hidden;
  transition: box-shadow 0.2s, border-color 0.2s;
  display: flex;
  flex-direction: column;
}

.card-rs:hover {
  border-color: rgba(13, 148, 136, 0.3);
  box-shadow: var(--rs-shadow);
}

.card-rs__body {
  padding: 1.5rem 1.5rem 1.25rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.card-rs__tag {
  font-family: var(--rs-font-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--rs-accent);
  margin-bottom: 0.5rem;
}

.card-rs__title {
  font-size: 1.15rem;
  font-weight: 700;
  margin: 0 0 0.5rem;
  line-height: 1.35;
}

.card-rs__text {
  margin: 0 0 1rem;
  font-size: 0.95rem;
  color: var(--rs-text-muted);
  flex: 1;
}

.card-rs__meta {
  font-size: 0.8rem;
  color: var(--rs-text-muted);
}

/* Services — ISO 9001 band */
.services-iso-band {
  border: 1px solid var(--rs-line);
  background: linear-gradient(135deg, rgba(13, 148, 136, 0.06), rgba(255, 255, 255, 0.95));
}

.services-iso-band__eyebrow {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--rs-accent);
}

.services-iso-band__title {
  color: var(--rs-text);
  font-weight: 700;
}

.services-iso-band__img {
  display: block;
  max-width: 240px;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 8px 20px rgba(15, 23, 42, 0.08));
}

/* After-sales / list */
.check-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.check-list li {
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: 1rem;
  color: var(--rs-text-muted);
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--rs-accent);
  box-shadow: 0 0 0 3px var(--rs-accent-soft);
}

/* Inner page hero (short) */
.page-hero {
  padding: 3rem 0 2.5rem;
  background: var(--rs-bg-deep);
  color: #e2e8f0;
}

.page-hero .container {
  max-width: 1200px;
}

.page-hero__title {
  font-size: clamp(1.85rem, 4vw, 2.5rem);
  font-weight: 700;
  margin: 0 0 0.5rem;
  color: #f8fafc;
}

.page-hero__sub {
  margin: 0;
  color: #94a3b8;
  max-width: 40ch;
}

.page-content .container {
  max-width: 1200px;
}

/* Footer */
.site-footer {
  background: var(--rs-bg-deep);
  color: #94a3b8;
  padding: 3.5rem 0 0;
  margin-top: 0;
}

.site-footer-grid {
  padding-bottom: 2rem;
}

.site-footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.site-footer-name {
  font-family: var(--rs-font-sans);
  font-weight: 600;
  color: #e2e8f0;
  font-size: 0.95rem;
}

.site-footer-zh-names {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.82rem;
  font-weight: 500;
  color: #94a3b8;
  letter-spacing: 0.04em;
}

.site-footer-lead {
  margin: 0.75rem 0 0;
  font-size: 0.9rem;
  line-height: 1.6;
  max-width: 340px;
}

.site-footer-heading {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #cbd5e1;
  margin: 0 0 1rem;
}

.site-footer-address {
  font-style: normal;
  font-size: 0.9rem;
  line-height: 1.75;
}

.site-footer-address a {
  color: #e2e8f0;
  text-decoration: none;
}

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

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

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

.site-footer-links a {
  color: #94a3b8;
  text-decoration: none;
  font-size: 0.9rem;
}

.site-footer-links a:hover {
  color: #f1f5f9;
}

.site-footer-bottom {
  border-top: 1px solid rgba(148, 163, 184, 0.15);
  padding: 1.25rem 0;
}

.site-footer-bottom p {
  margin: 0;
  font-size: 0.8rem;
  color: #64748b;
}

/* Contact / prose */
.prose-block {
  max-width: 720px;
}

.prose-block p {
  color: var(--rs-text-muted);
}

.contact-card {
  background: var(--rs-surface);
  border-radius: var(--rs-radius);
  border: 1px solid var(--rs-line);
  padding: 1.75rem;
}

/* Equal-height cards only when a single card fills a grid cell (e.g. Contact page columns) */
.row > [class*="col-"] > .contact-card:only-child {
  height: 100%;
}

.contact-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin: 0 0 0.75rem;
}

.contact-card address {
  font-style: normal;
  font-size: 0.95rem;
  color: var(--rs-text-muted);
  line-height: 1.75;
}

.contact-card a {
  color: var(--rs-accent);
  text-decoration: none;
  font-weight: 500;
}

.contact-card a:hover {
  text-decoration: underline;
}

/* Service locations map (Leaflet) */
.service-map-section {
  padding-bottom: clamp(2.5rem, 5vw, 4rem);
}

.service-map-wrap {
  height: min(520px, 62vh);
  min-height: 300px;
  border-radius: var(--rs-radius);
  overflow: hidden;
  border: 1px solid var(--rs-line);
  box-shadow: 0 12px 44px rgba(5, 13, 24, 0.1);
  background: var(--rs-bg-deep);
  z-index: 1;
}

.contact-map-wrap {
  height: min(400px, 52vh);
  min-height: 280px;
}

.contact-three-map__eyebrow {
  font-family: var(--rs-font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--rs-accent);
}

.contact-three-map .link-arrow-wrap {
  text-align: center;
  line-height: 1.6;
}

.service-map-wrap .leaflet-container {
  height: 100%;
  width: 100%;
  font-family: var(--rs-font-zh);
}

.map-pin-wrapper {
  background: transparent !important;
  border: none !important;
}

.map-pin {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--rs-accent), #0f766e);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  font-family: var(--rs-font-sans);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(13, 148, 136, 0.45);
  border: 2px solid rgba(255, 255, 255, 0.92);
  line-height: 1;
}

.map-attribution a {
  color: var(--rs-text-muted);
}

.leaflet-popup-content-wrapper {
  border-radius: var(--rs-radius-sm);
}

.leaflet-popup-content {
  margin: 0.75rem 1rem;
  font-size: 0.9rem;
  line-height: 1.55;
}
