/* =========================================================
   Anjelské služby — hlavný štýl
   Pietnosť bez pátosu. Mobile-first. Bootstrap 5.3 base.
   ========================================================= */

:root {
  /* Paleta */
  --as-bg:          #f8f6f1;   /* slonovinová */
  --as-bg-alt:      #efeae0;   /* tlmené pozadie pre sekcie */
  --as-paper:       #ffffff;
  --as-ink:         #23303b;   /* tmavo-sivo-modrý text */
  --as-ink-soft:    #5a6672;
  --as-ink-muted:   #8a95a0;
  --as-line:        #d9d1c0;
  --as-accent:      #7a1f2b;   /* burgundy — akcia, telefón */
  --as-accent-deep: #5a1721;
  --as-accent-soft: #f4e9ea;
  --as-gold:        #a88a4a;

  /* Typografia */
  --ff-display: 'Lora', 'Playfair Display', Georgia, serif;
  --ff-body:    'Inter', 'Source Sans 3', system-ui, -apple-system, sans-serif;

  /* Rozmery */
  --container-max: 1180px;
  --radius: 4px;
  --radius-lg: 8px;

  /* Elevácia */
  --shadow-sm: 0 1px 2px rgba(35,48,59,0.06), 0 1px 3px rgba(35,48,59,0.04);
  --shadow-md: 0 4px 10px rgba(35,48,59,0.08), 0 2px 4px rgba(35,48,59,0.05);
  --shadow-lg: 0 12px 30px rgba(35,48,59,0.10);
}

/* =========================================================
   Základy
   ========================================================= */

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  font-family: var(--ff-body);
  font-size: 19px;
  line-height: 1.65;
  color: var(--as-ink);
  background: var(--as-bg);
  margin: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

@media (min-width: 992px) {
  body { font-size: 20px; }
}

h1, h2, h3, h4, h5, h6,
.display-heading {
  font-family: var(--ff-display);
  font-weight: 500;
  color: var(--as-ink);
  letter-spacing: -0.01em;
  line-height: 1.2;
  margin: 0 0 0.6em;
}

h1 { font-size: clamp(2.4rem, 5.5vw, 3.8rem); font-weight: 500; }
h2 { font-size: clamp(1.9rem, 4vw, 2.7rem); }
h3 { font-size: clamp(1.45rem, 2.6vw, 1.8rem); }
h4 { font-size: 1.3rem; font-family: var(--ff-body); font-weight: 600; letter-spacing: 0.01em; }

p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }

a {
  color: var(--as-accent);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  transition: color 0.15s ease;
}
a:hover, a:focus { color: var(--as-accent-deep); }

ul, ol { padding-left: 1.3em; }
ul li, ol li { margin-bottom: 0.4em; }

strong, b { font-weight: 600; }

hr {
  border: 0;
  border-top: 1px solid var(--as-line);
  margin: 2.5rem 0;
  opacity: 1;
}

/* Selekcia textu */
::selection { background: var(--as-accent); color: #fff; }

/* Focus */
:focus-visible {
  outline: 2px solid var(--as-accent);
  outline-offset: 3px;
  border-radius: 2px;
}

/* Kontajner */
.container-as {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: 20px;
}
@media (min-width: 768px) { .container-as { padding-inline: 32px; } }

/* Skip link pre prístupnosť */
.skip-link {
  position: absolute;
  top: -40px;
  left: 8px;
  background: var(--as-accent);
  color: #fff;
  padding: 8px 14px;
  text-decoration: none;
  border-radius: var(--radius);
  z-index: 9999;
}
.skip-link:focus { top: 8px; color: #fff; }

/* =========================================================
   Hlavička
   ========================================================= */

.site-header {
  position: sticky;
  top: 0;
  background: rgba(248, 246, 241, 0.96);
  backdrop-filter: saturate(1.1) blur(8px);
  -webkit-backdrop-filter: saturate(1.1) blur(8px);
  border-bottom: 1px solid var(--as-line);
  z-index: 1000;
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  height: 72px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--as-ink);
}
.brand:hover, .brand:focus { color: var(--as-ink); }

.brand__mark {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}

.brand__text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}
.brand__name {
  font-family: var(--ff-display);
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.01em;
}
.brand__sub {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--as-ink-muted);
}

/* Desktop navigácia */
.nav-main {
  display: none;
  align-items: center;
  gap: 2px;
}
@media (min-width: 992px) { .nav-main { display: flex; } }

.nav-main a {
  color: var(--as-ink);
  text-decoration: none;
  font-weight: 500;
  padding: 10px 14px;
  border-radius: var(--radius);
  position: relative;
  font-size: 0.97rem;
}
.nav-main a::after {
  content: "";
  position: absolute;
  left: 14px; right: 14px; bottom: 4px;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}
.nav-main a:hover::after,
.nav-main a:focus::after,
.nav-main a.is-active::after { transform: scaleX(1); }
.nav-main a.is-active { color: var(--as-accent); }

/* Akcie v hlavičke */
.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.btn-call {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--as-accent);
  color: #fff !important;
  padding: 10px 16px;
  border-radius: var(--radius);
  font-weight: 600;
  text-decoration: none;
  transition: background 0.15s ease;
  border: 0;
  line-height: 1;
  font-size: 0.97rem;
}
.btn-call:hover, .btn-call:focus {
  background: var(--as-accent-deep);
  color: #fff !important;
}
.btn-call__icon { width: 18px; height: 18px; }
.btn-call__label { display: none; }
@media (min-width: 480px) { .btn-call__label { display: inline; } }

.btn-wa {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: var(--radius);
  background: #25D366;
  color: #fff !important;
  text-decoration: none;
  transition: opacity 0.15s ease;
}
.btn-wa:hover { opacity: 0.88; color: #fff !important; }
.btn-wa svg { width: 20px; height: 20px; }

/* Hamburger */
.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  background: transparent;
  border: 1px solid var(--as-line);
  border-radius: var(--radius);
  cursor: pointer;
  color: var(--as-ink);
}
@media (min-width: 992px) { .nav-toggle { display: none; } }

.nav-toggle svg { width: 22px; height: 22px; }

/* Mobilná offcanvas navigácia */
.nav-mobile {
  position: fixed;
  top: 0; right: 0;
  width: min(320px, 85vw);
  height: 100dvh;
  background: var(--as-paper);
  border-left: 1px solid var(--as-line);
  padding: 72px 20px 20px;
  transform: translateX(100%);
  transition: transform 0.28s ease;
  z-index: 999;
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
}
.nav-mobile.is-open { transform: translateX(0); }

.nav-mobile a {
  display: block;
  padding: 14px 4px;
  color: var(--as-ink);
  text-decoration: none;
  font-weight: 500;
  font-size: 1.05rem;
  border-bottom: 1px solid var(--as-line);
}
.nav-mobile a:last-of-type { border-bottom: 0; }
.nav-mobile a:hover, .nav-mobile a:focus { color: var(--as-accent); }
.nav-mobile a.is-active { color: var(--as-accent); font-weight: 600; }

.nav-mobile__footer {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--as-line);
}
.nav-mobile__footer p {
  font-size: 0.85rem;
  color: var(--as-ink-soft);
  margin-bottom: 4px;
}

.nav-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(35,48,59,0.45);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
  z-index: 998;
}
.nav-backdrop.is-open {
  opacity: 1;
  pointer-events: auto;
}

/* =========================================================
   Hero sekcie
   ========================================================= */

.hero {
  position: relative;
  padding: 48px 0 56px;
  background: linear-gradient(180deg, var(--as-bg) 0%, var(--as-bg-alt) 100%);
  overflow: hidden;
}
@media (min-width: 768px) { .hero { padding: 72px 0 84px; } }
@media (min-width: 1200px) { .hero { padding: 96px 0 110px; } }

/* Hero — split layout (text vľavo, fotka vpravo v rámčeku).
   Nahraj do assets/img/hero.jpg  — 1000×1250 px (formát 4:5),
     napr. interiér predajne, kvetinová výzdoba, detail rakvy,
     cintorínska alej (vertikálny výrez).
   Ak súbor chýba, ostane sivý rámček s alt popisom — layout sa nerozbije. */
.hero--split {
  padding: 56px 0 64px;
}
@media (min-width: 768px) { .hero--split { padding: 80px 0 88px; } }
@media (min-width: 1200px) { .hero--split { padding: 104px 0 112px; } }

.hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}
@media (min-width: 992px) {
  .hero__grid {
    grid-template-columns: 1.2fr 1fr;
    gap: 64px;
  }
}

.hero__photo {
  position: relative;
  margin: 0;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--as-bg-alt);
  box-shadow: var(--shadow-lg);
}
.hero__photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__photo::before {
  content: "";
  position: absolute;
  top: 24px;
  left: -8px;
  width: 3px;
  height: 72px;
  background: var(--as-gold);
  z-index: 2;
}
@media (max-width: 991.98px) {
  .hero__photo { max-width: 520px; margin: 0 auto; aspect-ratio: 3 / 2; }
  .hero__photo::before { display: none; }
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--as-accent);
  margin-bottom: 18px;
  font-weight: 600;
}
.hero__eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--as-accent);
}

.hero__title {
  font-size: clamp(2.1rem, 5.5vw, 3.6rem);
  line-height: 1.08;
  max-width: 14ch;
  margin-bottom: 20px;
}

.hero__lead {
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  color: var(--as-ink-soft);
  max-width: 50ch;
  margin-bottom: 32px;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}

.btn-hero-call {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--as-accent);
  color: #fff;
  padding: 16px 26px;
  border-radius: var(--radius);
  font-weight: 600;
  text-decoration: none;
  font-size: 1.15rem;
  transition: all 0.15s ease;
  box-shadow: var(--shadow-md);
}
.btn-hero-call:hover, .btn-hero-call:focus {
  background: var(--as-accent-deep);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: var(--shadow-lg);
}
.btn-hero-call svg { width: 22px; height: 22px; }

.btn-hero-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--as-paper);
  color: var(--as-ink);
  padding: 16px 22px;
  border-radius: var(--radius);
  font-weight: 500;
  text-decoration: none;
  border: 1px solid var(--as-line);
  transition: all 0.15s ease;
}
.btn-hero-secondary:hover, .btn-hero-secondary:focus {
  background: var(--as-bg);
  color: var(--as-ink);
  border-color: var(--as-ink-muted);
}

.hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  font-size: 0.9rem;
  color: var(--as-ink-soft);
}
.hero__meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* Hero na vnútorných stránkach */
.hero--inner {
  padding: 40px 0 32px;
}
@media (min-width: 768px) { .hero--inner { padding: 56px 0 48px; } }

.hero--inner .hero__title {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  max-width: 28ch;
}
.hero--inner .hero__lead { margin-bottom: 0; }

/* Breadcrumb */
.breadcrumb-as {
  font-size: 0.87rem;
  color: var(--as-ink-muted);
  margin-bottom: 18px;
}
.breadcrumb-as a {
  color: var(--as-ink-soft);
  text-decoration: none;
}
.breadcrumb-as a:hover { color: var(--as-accent); text-decoration: underline; }
.breadcrumb-as span.sep { margin: 0 8px; opacity: 0.5; }

/* =========================================================
   Sekcie
   ========================================================= */

.section {
  padding: 56px 0;
}
@media (min-width: 768px) { .section { padding: 80px 0; } }
@media (min-width: 1200px) { .section { padding: 100px 0; } }

.section--tight { padding: 40px 0; }
@media (min-width: 768px) { .section--tight { padding: 56px 0; } }

.section--alt {
  background: var(--as-bg-alt);
}

.section__header {
  max-width: 680px;
  margin-bottom: 40px;
}
.section__header--center {
  margin-inline: auto;
  text-align: center;
}

.section__eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--as-gold);
  font-weight: 600;
  margin-bottom: 14px;
}

.section__lead {
  font-size: 1.12rem;
  color: var(--as-ink-soft);
  max-width: 55ch;
}

/* =========================================================
   Dlaždice — typy úmrtia
   ========================================================= */

.tile-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
@media (min-width: 576px) { .tile-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 992px) { .tile-grid { grid-template-columns: repeat(4, 1fr); gap: 20px; } }

.tile {
  display: block;
  background: var(--as-paper);
  border: 1px solid var(--as-line);
  border-radius: var(--radius-lg);
  padding: 24px 22px 26px;
  text-decoration: none;
  color: var(--as-ink);
  transition: all 0.2s ease;
  position: relative;
  overflow: hidden;
}
.tile:hover, .tile:focus {
  border-color: var(--as-accent);
  color: var(--as-ink);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.tile::after {
  content: "→";
  position: absolute;
  right: 20px;
  bottom: 22px;
  font-size: 1.2rem;
  color: var(--as-accent);
  opacity: 0;
  transform: translateX(-4px);
  transition: all 0.2s ease;
}
.tile:hover::after, .tile:focus::after {
  opacity: 1;
  transform: translateX(0);
}

.tile__icon {
  width: 40px;
  height: 40px;
  margin-bottom: 16px;
  color: var(--as-accent);
}

.tile__title {
  font-family: var(--ff-display);
  font-size: 1.35rem;
  font-weight: 500;
  margin-bottom: 8px;
}

.tile__desc {
  font-size: 0.95rem;
  color: var(--as-ink-soft);
  line-height: 1.55;
  margin: 0;
}

/* =========================================================
   Zoznam služieb
   ========================================================= */

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 576px) { .services-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 992px) { .services-grid { grid-template-columns: repeat(3, 1fr); gap: 24px; } }

.service-card {
  background: var(--as-paper);
  border: 1px solid var(--as-line);
  border-radius: var(--radius-lg);
  padding: 26px 24px 28px;
  transition: border-color 0.2s ease;
}
.service-card:hover { border-color: var(--as-ink-muted); }

.service-card__icon {
  width: 36px;
  height: 36px;
  color: var(--as-gold);
  margin-bottom: 14px;
}

.service-card__title {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.service-card__desc {
  font-size: 0.95rem;
  color: var(--as-ink-soft);
  margin: 0;
}

/* =========================================================
   Info bar (napríklad príspevok na pohreb)
   ========================================================= */

.info-bar {
  background: var(--as-ink);
  color: #fff;
  padding: 40px 24px;
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
}
@media (min-width: 768px) { .info-bar { padding: 56px 48px; } }

.info-bar::before {
  content: "";
  position: absolute;
  top: -50%; right: -20%;
  width: 60%;
  height: 180%;
  background: radial-gradient(ellipse, rgba(168,138,74,0.15), transparent 65%);
  pointer-events: none;
}

.info-bar__label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--as-gold);
  margin-bottom: 12px;
  font-weight: 600;
  position: relative;
}

.info-bar__title {
  font-family: var(--ff-display);
  font-size: clamp(1.7rem, 3.5vw, 2.4rem);
  color: #fff;
  margin-bottom: 16px;
  position: relative;
}

.info-bar__text {
  color: #dcd5c6;
  max-width: 58ch;
  margin-bottom: 24px;
  position: relative;
}

.info-bar__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  padding: 12px 20px;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: var(--radius);
  position: relative;
  transition: all 0.15s ease;
}
.info-bar__link:hover {
  color: #fff;
  background: rgba(255,255,255,0.08);
  border-color: #fff;
}

/* =========================================================
   O nás — krátky blok
   ========================================================= */

.about-block {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
}
@media (min-width: 768px) {
  .about-block { grid-template-columns: 1fr 1fr; gap: 56px; }
}

.about-block__image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--as-bg-alt);
}
.about-block__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-block__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 24px 36px;
  padding: 20px 0;
  border-top: 1px solid var(--as-line);
  border-bottom: 1px solid var(--as-line);
  margin: 24px 0;
}

.stat__number {
  font-family: var(--ff-display);
  font-size: 2.4rem;
  font-weight: 500;
  color: var(--as-accent);
  line-height: 1;
}

.stat__label {
  font-size: 0.85rem;
  color: var(--as-ink-soft);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 6px;
}

/* =========================================================
   TOC (tabulka obsahu) — sticky na desktope
   ========================================================= */

.page-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
@media (min-width: 992px) {
  .page-layout { grid-template-columns: 240px 1fr; gap: 56px; }
}

.toc {
  background: var(--as-paper);
  border: 1px solid var(--as-line);
  border-radius: var(--radius-lg);
  padding: 16px 18px;
}
@media (min-width: 992px) {
  .toc {
    position: sticky;
    top: 90px;
    align-self: start;
  }
}

.toc__title {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--as-ink-muted);
  margin-bottom: 10px;
  font-weight: 600;
}

.toc ol {
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: toc;
}

.toc li {
  counter-increment: toc;
  margin-bottom: 4px;
}

.toc a {
  display: block;
  padding: 8px 10px;
  color: var(--as-ink);
  text-decoration: none;
  font-size: 0.95rem;
  border-radius: var(--radius);
  border-left: 2px solid transparent;
  transition: all 0.15s ease;
}
.toc a::before {
  content: counter(toc) ". ";
  color: var(--as-ink-muted);
  font-variant-numeric: tabular-nums;
}
.toc a:hover {
  background: var(--as-bg-alt);
  color: var(--as-accent);
}
.toc a.is-active {
  border-left-color: var(--as-accent);
  color: var(--as-accent);
  background: var(--as-accent-soft);
  font-weight: 600;
}

/* Článok */
.article {
  max-width: 68ch;
}

.article h2 {
  margin-top: 2em;
  padding-top: 0.8em;
  border-top: 1px solid var(--as-line);
  scroll-margin-top: 90px;
}
.article h2:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}

.article h3 {
  margin-top: 1.6em;
  scroll-margin-top: 90px;
}

.article ul li, .article ol li {
  margin-bottom: 0.55em;
}

/* Callout box — varovanie / dôležité */
.callout {
  background: var(--as-accent-soft);
  border-left: 4px solid var(--as-accent);
  padding: 18px 22px;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 24px 0;
}
.callout__title {
  font-weight: 700;
  color: var(--as-accent);
  margin-bottom: 8px;
  font-family: var(--ff-body);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.callout p:last-child { margin: 0; }

.callout--info {
  background: #eef2f6;
  border-left-color: var(--as-ink);
}
.callout--info .callout__title { color: var(--as-ink); }

/* Phone inline box */
.phone-box {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px 24px;
  background: var(--as-paper);
  border: 1px solid var(--as-line);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  margin: 24px 0;
}
.phone-box__label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--as-ink-muted);
  font-weight: 600;
}
.phone-box__number {
  font-family: var(--ff-display);
  font-size: 1.8rem;
  color: var(--as-accent);
  text-decoration: none;
  font-weight: 500;
  font-variant-numeric: tabular-nums;
}
.phone-box__number:hover { color: var(--as-accent-deep); }
.phone-box__note { color: var(--as-ink-soft); font-size: 0.9rem; }

/* =========================================================
   Tabuľka cien
   ========================================================= */

.price-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--as-paper);
  border: 1px solid var(--as-line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.price-table th {
  text-align: left;
  font-family: var(--ff-body);
  font-weight: 600;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--as-ink-muted);
  padding: 14px 18px;
  background: var(--as-bg-alt);
  border-bottom: 1px solid var(--as-line);
}

.price-table td {
  padding: 16px 18px;
  border-bottom: 1px solid var(--as-line);
  vertical-align: top;
}
.price-table tr:last-child td { border-bottom: 0; }

.price-table td.price {
  font-variant-numeric: tabular-nums;
  font-weight: 600;
  color: var(--as-accent);
  white-space: nowrap;
}

@media (max-width: 575px) {
  .price-table thead { display: none; }
  .price-table tr {
    display: block;
    border-bottom: 1px solid var(--as-line);
    padding: 14px 16px;
  }
  .price-table tr:last-child { border-bottom: 0; }
  .price-table td {
    display: block;
    padding: 2px 0;
    border: 0;
  }
  .price-table td.price {
    margin-top: 4px;
    font-size: 1.05rem;
  }
}

/* =========================================================
   Kontakt stránka
   ========================================================= */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 768px) { .contact-grid { grid-template-columns: 1fr 1fr; gap: 32px; } }

.contact-card {
  background: var(--as-paper);
  border: 1px solid var(--as-line);
  border-radius: var(--radius-lg);
  padding: 28px 26px;
}

.contact-card h3 {
  margin-top: 0;
  font-size: 1.35rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-card__row {
  display: flex;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--as-line);
}
.contact-card__row:last-child { border-bottom: 0; }
.contact-card__row svg {
  width: 18px;
  height: 18px;
  color: var(--as-ink-muted);
  flex-shrink: 0;
  margin-top: 3px;
}
.contact-card__row strong { display: block; margin-bottom: 2px; }

.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--as-line);
  height: 400px;
  background: var(--as-bg-alt);
}
.map-wrap iframe { width: 100%; height: 100%; border: 0; display: block; }

/* Formulár */
.form-as {
  background: var(--as-paper);
  border: 1px solid var(--as-line);
  border-radius: var(--radius-lg);
  padding: 28px 26px;
}

.form-as .form-label {
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 6px;
  color: var(--as-ink);
}

.form-as .form-control {
  border: 1px solid var(--as-line);
  border-radius: var(--radius);
  padding: 10px 14px;
  font-family: inherit;
  font-size: 1rem;
  background: var(--as-bg);
  transition: border-color 0.15s ease, background 0.15s ease;
}
.form-as .form-control:focus {
  border-color: var(--as-accent);
  background: #fff;
  box-shadow: none;
  outline: 2px solid var(--as-accent-soft);
  outline-offset: 0;
}

.form-as .form-check-label { font-size: 0.88rem; color: var(--as-ink-soft); }

.btn-primary-as {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--as-accent);
  color: #fff;
  padding: 12px 24px;
  border-radius: var(--radius);
  border: 0;
  font-weight: 600;
  font-family: inherit;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.15s ease;
}
.btn-primary-as:hover { background: var(--as-accent-deep); }

/* =========================================================
   Pätička
   ========================================================= */

.site-footer {
  background: #1a232d;
  color: #c5cdd5;
  padding: 56px 0 28px;
  margin-top: 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  margin-bottom: 40px;
}
@media (min-width: 576px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 992px) {
  .footer-grid { grid-template-columns: 1.3fr 1fr 1fr 1fr; }
}

.footer-brand__name {
  font-family: var(--ff-display);
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: 8px;
}
.footer-brand__desc {
  color: #8c97a2;
  font-size: 0.92rem;
  max-width: 36ch;
  margin-bottom: 20px;
}

.footer-title {
  font-family: var(--ff-body);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #a88a4a;
  font-weight: 600;
  margin-bottom: 16px;
}

.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.site-footer li { margin-bottom: 8px; }
.site-footer a {
  color: #c5cdd5;
  text-decoration: none;
  font-size: 0.95rem;
}
.site-footer a:hover { color: #fff; text-decoration: underline; }

.footer-phone {
  font-family: var(--ff-display);
  font-size: 1.4rem;
  color: #fff !important;
  display: inline-block;
  margin: 8px 0;
  font-variant-numeric: tabular-nums;
}

.footer-legal {
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 0.85rem;
  line-height: 1.7;
  color: #8c97a2;
}
.footer-legal strong { color: #c5cdd5; font-weight: 600; letter-spacing: 0.02em; }

.footer-meta {
  padding-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 0.85rem;
  color: #6b7783;
}
@media (min-width: 768px) {
  .footer-meta {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}
.footer-meta a { color: #8c97a2; font-size: 0.85rem; }
.footer-meta a:hover { color: #fff; }

/* =========================================================
   Plávajúce tlačidlo volať (mobile)
   ========================================================= */

.fab-call {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--as-accent);
  color: #fff !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px rgba(122,31,43,0.4);
  z-index: 900;
  transition: all 0.2s ease;
  animation: pulse-subtle 3.5s ease-in-out infinite;
}
.fab-call:hover, .fab-call:focus {
  background: var(--as-accent-deep);
  color: #fff !important;
  transform: scale(1.06);
}
.fab-call svg { width: 26px; height: 26px; }

@media (min-width: 992px) {
  .fab-call { display: none; }
}

@keyframes pulse-subtle {
  0%, 100% { box-shadow: 0 6px 18px rgba(122,31,43,0.4); }
  50% { box-shadow: 0 6px 18px rgba(122,31,43,0.4), 0 0 0 10px rgba(122,31,43,0.08); }
}

/* Redukcia pohybu — rešpektuje user preference */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .fab-call { animation: none; }
}

/* =========================================================
   Utility
   ========================================================= */

.text-accent { color: var(--as-accent) !important; }
.text-muted-soft { color: var(--as-ink-muted); }
.mt-section { margin-top: 3rem; }
.mb-section { margin-bottom: 3rem; }
.no-underline { text-decoration: none; }

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* =========================================================
   Hlavička vnútorných stránok
   ========================================================= */

.page-hero {
  padding: 70px 0 40px;
  background: linear-gradient(to bottom, var(--as-bg-alt) 0%, var(--as-bg) 100%);
  border-bottom: 1px solid var(--as-line);
}

.page-hero h1 {
  font-size: clamp(2rem, 4.2vw, 2.8rem);
  margin-bottom: 20px;
}

.page-hero .lead {
  font-size: 1.15rem;
  color: var(--as-ink-soft);
  max-width: 760px;
  line-height: 1.6;
}

@media (min-width: 992px) {
  .page-hero { padding: 90px 0 60px; }
  .page-hero .lead { font-size: 1.25rem; }
}

.breadcrumbs {
  font-size: 0.88rem;
  color: var(--as-ink-muted);
  margin-bottom: 18px;
  font-family: var(--ff-body);
}

.breadcrumbs a {
  color: var(--as-ink-soft);
  text-decoration: none;
  border-bottom: 1px dotted var(--as-ink-muted);
}

.breadcrumbs a:hover {
  color: var(--as-accent);
  border-color: var(--as-accent);
}

.breadcrumbs span[aria-current] {
  color: var(--as-ink);
}

/* =========================================================
   Sekcie a pozadia
   ========================================================= */

.section {
  padding: 60px 0;
}

@media (min-width: 768px) {
  .section { padding: 80px 0; }
}

@media (min-width: 992px) {
  .section { padding: 100px 0; }
}

.section--bg-alt {
  background: var(--as-bg-alt);
}

.section-divider {
  border: none;
  border-top: 1px solid var(--as-line);
  margin: 60px 0;
  max-width: 120px;
  margin-left: 0;
}

/* =========================================================
   Service row (Naše služby)
   ========================================================= */

.service-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 24px;
  align-items: start;
  max-width: 880px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .service-row { gap: 48px; }
}

.service-row__num {
  font-family: var(--ff-display);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  line-height: 1;
  color: var(--as-accent);
  opacity: 0.85;
  font-weight: 400;
}

.service-row__body h2 {
  margin-top: 0.1em;
  margin-bottom: 16px;
}

.service-row__list {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
  display: grid;
  gap: 8px;
}

.service-row__list li {
  position: relative;
  padding-left: 22px;
  color: var(--as-ink-soft);
  font-size: 0.98rem;
}

.service-row__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  width: 10px;
  height: 1px;
  background: var(--as-accent);
}

@media (max-width: 575.98px) {
  .service-row { grid-template-columns: 1fr; gap: 8px; }
  .service-row__num { font-size: 2.3rem; }
}

/* =========================================================
   Principles grid (cenník)
   ========================================================= */

.principles-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

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

.principle {
  text-align: left;
  padding: 28px;
  background: var(--as-paper);
  border: 1px solid var(--as-line);
  border-radius: var(--radius-lg);
}

.principle__icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--as-accent-soft);
  color: var(--as-accent);
  border-radius: 50%;
  margin-bottom: 18px;
}

.principle__icon svg { width: 22px; height: 22px; }

.principle h3 {
  font-size: 1.15rem;
  font-family: var(--ff-body);
  font-weight: 600;
  margin-bottom: 8px;
  letter-spacing: 0.01em;
}

.principle p {
  font-size: 0.95rem;
  color: var(--as-ink-soft);
  margin: 0;
}

/* =========================================================
   Cenové karty
   ========================================================= */

.price-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

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

.price-card {
  background: var(--as-paper);
  border: 1px solid var(--as-line);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  position: relative;
  display: flex;
  flex-direction: column;
}

.price-card__photo {
  margin: -32px -28px 24px;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--as-bg-alt);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.price-card__photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.price-card--featured {
  border-color: var(--as-accent);
  box-shadow: var(--shadow-md);
}

@media (min-width: 992px) {
  .price-card--featured {
    transform: translateY(-8px);
  }
}

.price-card__label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--as-gold);
  margin-bottom: 12px;
  font-weight: 600;
}

.price-card--featured .price-card__label {
  color: var(--as-accent);
}

.price-card__title {
  font-family: var(--ff-display);
  font-size: 1.55rem;
  margin-bottom: 14px;
  color: var(--as-ink);
}

.price-card__price {
  font-size: 1rem;
  color: var(--as-ink-soft);
  margin-bottom: 24px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--as-line);
}

.price-card__price strong {
  font-family: var(--ff-display);
  font-size: 2.2rem;
  color: var(--as-accent);
  font-weight: 500;
  margin-left: 4px;
}

.price-card__list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  flex: 1;
}

.price-card__list li {
  padding: 8px 0;
  font-size: 0.95rem;
  color: var(--as-ink-soft);
  border-bottom: 1px dotted var(--as-line);
}

.price-card__list li:last-child { border-bottom: none; }

.price-card__note {
  font-size: 0.88rem;
  color: var(--as-ink-muted);
  font-style: italic;
  margin-top: auto;
  padding-top: 16px;
}

/* =========================================================
   Price list (detailný cenník)
   ========================================================= */

.price-list {
  background: var(--as-paper);
  border: 1px solid var(--as-line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.price-list__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 22px;
  border-bottom: 1px solid var(--as-line);
  font-size: 0.95rem;
  gap: 16px;
}

.price-list__row:last-child { border-bottom: none; }

.price-list__row:nth-child(odd) { background: rgba(248,246,241,0.5); }

.price-list__item {
  color: var(--as-ink-soft);
}

.price-list__value {
  font-family: var(--ff-display);
  color: var(--as-accent);
  font-weight: 500;
  font-size: 1.05rem;
  white-space: nowrap;
}

/* =========================================================
   Callout boxy
   ========================================================= */

.callout {
  background: var(--as-paper);
  border-left: 4px solid var(--as-accent);
  padding: 28px 32px;
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  box-shadow: var(--shadow-sm);
  max-width: 900px;
  margin: 0 auto;
}

.callout--warning {
  border-left-color: var(--as-gold);
  background: #fdfbf5;
}

.callout h3 {
  font-family: var(--ff-body);
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 12px;
  letter-spacing: 0.01em;
}

.callout ul {
  margin: 14px 0;
  padding-left: 20px;
}

.callout ul li {
  margin-bottom: 8px;
  color: var(--as-ink-soft);
}

.callout ul li strong { color: var(--as-ink); }

/* =========================================================
   Notice bar (full-width pruh s ikonou)
   ========================================================= */

.notice-bar {
  background: var(--as-ink);
  color: #f0eee8;
  padding: 36px 0;
}

.notice-bar__inner {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}

.notice-bar__icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  background: rgba(168,138,74,0.2);
  color: var(--as-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.notice-bar__icon svg { width: 26px; height: 26px; }

.notice-bar__content h3 {
  color: #fff;
  font-family: var(--ff-body);
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 8px;
  letter-spacing: 0.01em;
}

.notice-bar__content p {
  color: #d0cec8;
  margin: 0;
  font-size: 0.97rem;
}

.notice-bar__content a {
  color: var(--as-gold);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.notice-bar__content a:hover { color: #c9a865; }

@media (max-width: 575.98px) {
  .notice-bar__inner { flex-direction: column; gap: 16px; }
}

/* =========================================================
   CTA block
   ========================================================= */

.cta-block {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
  padding: 40px 20px;
}

.cta-block h2 {
  font-size: clamp(1.5rem, 3.5vw, 2.2rem);
  margin-bottom: 16px;
}

.cta-block p {
  color: var(--as-ink-soft);
  margin-bottom: 28px;
  font-size: 1.05rem;
}

.cta-block__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

.cta-block__note {
  margin-top: 20px;
  font-size: 0.9rem;
  color: var(--as-ink-muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 500;
}

/* =========================================================
   Tlačidlá — varianty
   ========================================================= */

.btn-as {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 22px;
  font-family: var(--ff-body);
  font-weight: 600;
  font-size: 0.98rem;
  text-decoration: none;
  border-radius: var(--radius);
  border: 1px solid transparent;
  transition: all 0.15s ease;
  cursor: pointer;
  line-height: 1.2;
}

.btn-as svg { width: 18px; height: 18px; }

.btn-as--primary {
  background: var(--as-accent);
  color: #fff;
  border-color: var(--as-accent);
}

.btn-as--primary:hover {
  background: var(--as-accent-deep);
  border-color: var(--as-accent-deep);
  color: #fff;
}

.btn-as--ghost {
  background: transparent;
  color: var(--as-ink);
  border-color: var(--as-line);
}

.btn-as--ghost:hover {
  border-color: var(--as-accent);
  color: var(--as-accent);
  background: var(--as-accent-soft);
}

.btn-as--lg {
  padding: 14px 28px;
  font-size: 1.05rem;
}

.btn-as--lg svg { width: 20px; height: 20px; }

/* =========================================================
   Link akcent
   ========================================================= */

.link-accent {
  color: var(--as-accent);
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  padding-bottom: 1px;
  font-weight: 500;
}

.link-accent:hover {
  color: var(--as-accent-deep);
}

/* =========================================================
   Príspevok na pohreb — info karty
   ========================================================= */

.info-card {
  background: var(--as-paper);
  border: 1px solid var(--as-line);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  text-align: center;
  height: 100%;
}

.info-card__label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--as-gold);
  font-weight: 600;
  margin-bottom: 14px;
}

.info-card__value {
  font-family: var(--ff-display);
  font-size: 2.8rem;
  color: var(--as-accent);
  font-weight: 500;
  line-height: 1;
  margin-bottom: 16px;
}

.info-card p {
  font-size: 0.95rem;
  color: var(--as-ink-soft);
  margin: 0;
}

/* =========================================================
   Check / X lists
   ========================================================= */

.check-list, .x-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.check-list li, .x-list li {
  position: relative;
  padding-left: 32px;
  margin-bottom: 12px;
  color: var(--as-ink-soft);
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 20px;
  height: 20px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%237a1f2b' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}

.x-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 20px;
  height: 20px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23a88a4a' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='18' y1='6' x2='6' y2='18'/%3E%3Cline x1='6' y1='6' x2='18' y2='18'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}

/* =========================================================
   Steps (postup)
   ========================================================= */

.steps {
  max-width: 780px;
  margin: 0 auto;
  display: grid;
  gap: 32px;
}

.step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 24px;
  align-items: start;
}

.step__num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--as-accent);
  color: #fff;
  font-family: var(--ff-display);
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  line-height: 1;
}

.step__body h3 {
  font-family: var(--ff-body);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 12px;
  letter-spacing: 0.01em;
}

.step__body p {
  color: var(--as-ink-soft);
}

.step__body ul {
  margin: 12px 0;
  padding-left: 20px;
}

.step__body ul li {
  color: var(--as-ink-soft);
  margin-bottom: 6px;
}

.step__body ul li strong { color: var(--as-ink); }

@media (max-width: 575.98px) {
  .step { gap: 16px; }
  .step__num { width: 40px; height: 40px; font-size: 1.2rem; }
}

/* =========================================================
   Mini cards
   ========================================================= */

.mini-card {
  background: var(--as-paper);
  border: 1px solid var(--as-line);
  border-radius: var(--radius-lg);
  padding: 24px;
  height: 100%;
}

.mini-card h4 {
  font-size: 1.05rem;
  margin-bottom: 10px;
  color: var(--as-ink);
}

.mini-card p {
  font-size: 0.94rem;
  color: var(--as-ink-soft);
  margin: 0;
}

/* =========================================================
   Portrait (O nás)
   ========================================================= */

.portrait {
  margin: 0;
  position: relative;
}

.portrait img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  filter: grayscale(0.15);
}

.portrait figcaption {
  margin-top: 14px;
  font-size: 0.92rem;
  color: var(--as-ink-soft);
  text-align: center;
}

.portrait figcaption strong {
  color: var(--as-ink);
  font-family: var(--ff-display);
  font-size: 1.15rem;
  display: block;
}

/* =========================================================
   Stats
   ========================================================= */

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 900px;
  margin: 0 auto;
}

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

.stat {
  text-align: center;
  padding: 16px;
}

.stat__num {
  font-family: var(--ff-display);
  font-size: clamp(2.5rem, 5vw, 3.6rem);
  color: var(--as-accent);
  font-weight: 500;
  line-height: 1;
  margin-bottom: 10px;
}

.stat__label {
  font-size: 0.95rem;
  color: var(--as-ink-soft);
  line-height: 1.4;
}

/* =========================================================
   Cemetery list (O nás)
   ========================================================= */

.cemetery-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--as-line);
  border: 1px solid var(--as-line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

@media (min-width: 576px) {
  .cemetery-list { grid-template-columns: repeat(2, 1fr); }
}

.cemetery-item {
  background: var(--as-paper);
  padding: 14px 18px;
  font-size: 0.95rem;
  color: var(--as-ink);
  position: relative;
  padding-left: 40px;
}

.cemetery-item::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 14px;
  height: 14px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23a88a4a' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21 10c0 7-9 13-9 13s-9-6-9-13a9 9 0 0 1 18 0z'/%3E%3Ccircle cx='12' cy='10' r='3'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}

/* =========================================================
   Value cards
   ========================================================= */

.value-card {
  text-align: center;
  padding: 24px 20px;
  height: 100%;
}

.value-card__icon {
  width: 54px;
  height: 54px;
  margin: 0 auto 16px;
  background: var(--as-accent-soft);
  color: var(--as-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.value-card__icon svg { width: 26px; height: 26px; }

.value-card h3 {
  font-size: 1.1rem;
  font-family: var(--ff-body);
  font-weight: 600;
  margin-bottom: 10px;
  letter-spacing: 0.01em;
}

.value-card p {
  font-size: 0.92rem;
  color: var(--as-ink-soft);
  margin: 0;
  line-height: 1.5;
}

/* =========================================================
   NONSTOP banner (Kontakt)
   ========================================================= */

.nonstop-banner {
  background: linear-gradient(135deg, var(--as-accent) 0%, var(--as-accent-deep) 100%);
  color: #fff;
  padding: 28px 0;
}

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

.nonstop-banner__label {
  font-size: 0.82rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.9;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 600;
}

.nonstop-dot {
  width: 10px;
  height: 10px;
  background: #7adf8f;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(122,223,143,0.7);
  animation: nonstop-pulse 2s infinite;
}

@keyframes nonstop-pulse {
  0% { box-shadow: 0 0 0 0 rgba(122,223,143,0.7); }
  70% { box-shadow: 0 0 0 10px rgba(122,223,143,0); }
  100% { box-shadow: 0 0 0 0 rgba(122,223,143,0); }
}

.nonstop-banner__phone {
  display: inline-block;
  font-family: var(--ff-display);
  font-size: clamp(2rem, 5vw, 2.8rem);
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  letter-spacing: -0.01em;
  padding: 6px 0;
}

.nonstop-banner__phone:hover { color: #fff; opacity: 0.9; }

.nonstop-banner__note {
  margin: 6px 0 0;
  opacity: 0.88;
  font-size: 0.95rem;
}

/* =========================================================
   Location card (Kontakt)
   ========================================================= */

.location-card {
  background: var(--as-paper);
  border: 1px solid var(--as-line);
  border-radius: var(--radius-lg);
  padding: 32px;
  height: 100%;
}

.location-card__photo {
  margin: -32px -32px 24px;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--as-bg-alt);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.location-card__photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-figure {
  margin: 0 0 32px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--as-bg-alt);
}
.photo-figure img {
  display: block;
  width: 100%;
  height: auto;
}
.photo-figure figcaption {
  font-size: 0.9rem;
  color: var(--as-ink-soft);
  padding: 12px 4px 0;
  font-style: italic;
}

.location-card__label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--as-gold);
  font-weight: 600;
  margin-bottom: 12px;
}

.location-card__title {
  font-size: 1.45rem;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--as-line);
}

.location-card__data {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin: 0;
}

@media (min-width: 576px) {
  .location-card__data {
    grid-template-columns: 140px 1fr;
    gap: 14px 24px;
    row-gap: 18px;
  }
}

.location-card__data dt {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--as-ink-muted);
  font-weight: 600;
}

.location-card__data dd {
  margin: 0;
  color: var(--as-ink);
  font-size: 0.98rem;
  line-height: 1.5;
}

.location-card__data dd a {
  color: var(--as-accent);
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  padding-bottom: 1px;
}

.tag {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 50px;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  margin-left: 6px;
  vertical-align: middle;
}

.tag--gold {
  background: var(--as-gold);
  color: #fff;
}

/* =========================================================
   Map embed
   ========================================================= */

.map-embed {
  max-width: 1100px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.map-embed iframe {
  display: block;
  width: 100%;
  min-height: 400px;
}

/* =========================================================
   Contact form
   ========================================================= */

.contact-form {
  background: var(--as-paper);
  border: 1px solid var(--as-line);
  border-radius: var(--radius-lg);
  padding: 28px;
}

@media (min-width: 768px) {
  .contact-form { padding: 36px; }
}

.form-row {
  margin-bottom: 18px;
}

.form-row label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--as-ink);
  letter-spacing: 0.01em;
}

.form-row input,
.form-row textarea,
.form-row select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--as-line);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 1rem;
  background: var(--as-bg);
  color: var(--as-ink);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.form-row input:focus,
.form-row textarea:focus,
.form-row select:focus {
  outline: none;
  border-color: var(--as-accent);
  box-shadow: 0 0 0 3px var(--as-accent-soft);
  background: #fff;
}

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

.form-row--check {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: start;
}

.form-row--check input { width: 18px; height: 18px; margin-top: 3px; }

.form-row--check label {
  font-weight: 400;
  font-size: 0.9rem;
  color: var(--as-ink-soft);
  margin: 0;
  line-height: 1.5;
}

.form-row--check a {
  color: var(--as-accent);
  text-decoration: underline;
}

.form-row__note {
  font-size: 0.85rem;
  color: var(--as-ink-muted);
  margin: 14px 0 0;
  font-style: italic;
}

.form-row input[aria-invalid="true"],
.form-row textarea[aria-invalid="true"] {
  border-color: #c0392b;
  background: #fef5f3;
}

/* =========================================================
   Quick actions (Kontakt)
   ========================================================= */

.quick-action {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: var(--as-paper);
  border: 1px solid var(--as-line);
  border-radius: var(--radius-lg);
  text-decoration: none;
  color: var(--as-ink);
  transition: all 0.15s ease;
  height: 100%;
}

.quick-action:hover {
  border-color: var(--as-accent);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  color: var(--as-ink);
}

.quick-action__icon {
  width: 44px;
  height: 44px;
  background: var(--as-accent-soft);
  color: var(--as-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.quick-action__icon svg { width: 20px; height: 20px; }

.quick-action strong {
  display: block;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 2px;
}

.quick-action > div:last-child > div {
  font-size: 0.88rem;
  color: var(--as-ink-soft);
}

/* =========================================================
   Service row variant
   ========================================================= */

.service-row--reverse .service-row__num {
  color: var(--as-gold);
}
