:root {
  --navy:        #2E4A68;
  --navy-deep:   #213858;
  --navy-soft:   #435D7E;
  --sand:        #C9B69B;
  --sand-deep:   #B9A684;
  --sand-light:  #E7DDCD;
  --cream:       #F7F2EB;
  --cream-soft:  #FBF8F3;
  --white:       #FFFFFF;
  --ink:         #2B3848;
  --muted:       #6E7783;
  --radius:      22px;
  --shadow:      0 24px 60px -28px rgba(33, 56, 88, 0.30), 0 8px 24px -16px rgba(33, 56, 88, 0.18);
  --shadow-sm:   0 10px 30px -18px rgba(33, 56, 88, 0.28);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* ---- STAGE (bounds the sticky hero so it unsticks naturally) ---- */
.stage { position: relative; }

/* ---- HERO ---- */
.hero {
  position: relative;
  height: 100vh;
  height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 32px 24px 160px;
  text-align: center;
  background:
    radial-gradient(ellipse at 50% 46%, var(--sand) 0%, transparent 62%),
    radial-gradient(ellipse at 50% 46%, var(--sand-light) 0%, transparent 80%),
    var(--cream-soft);
  overflow: hidden;
}

.hero__logo-wrap {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: rise 1.1s cubic-bezier(.16,.84,.36,1) both;
}

/* white radial halo that lifts the logo off the beige background */
.hero__logo-wrap::before {
  content: "";
  position: absolute;
  inset: -30%;
  background: radial-gradient(circle, rgba(255,255,255,0.92) 28%, rgba(255,255,255,0) 68%);
  pointer-events: none;
  z-index: 0;
}

.hero__logo {
  position: relative;
  width: min(600px, 88vw);
  height: auto;
  z-index: 1;
  filter:
    drop-shadow(0 4px 10px rgba(33,56,88,0.14))
    drop-shadow(0 14px 32px rgba(33,56,88,0.18))
    drop-shadow(0 28px 52px rgba(33,56,88,0.10));
}

@keyframes rise {
  from { opacity: 0; transform: translateY(18px) scale(.985); }
  to   { opacity: 1; transform: none; }
}

.hero__hours-title {
  position: relative;
  z-index: 1;
  margin-top: -60px;
  margin-bottom: 12px;
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 600;
  letter-spacing: -0.01em;
  color: #344D6E;
  animation: rise 1.1s cubic-bezier(.16,.84,.36,1) 0.15s both;
}

.hero__hours {
  position: relative;
  z-index: 1;
  margin-top: 0;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.70);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 999px;
  padding: 11px 22px;
  box-shadow: 0 4px 24px rgba(33, 56, 88, 0.10);
  font-size: 17px;
  color: var(--navy-deep);
  font-weight: 500;
  letter-spacing: 0.01em;
  animation: rise 1.1s cubic-bezier(.16,.84,.36,1) 0.2s both;
}
.hero__hours svg {
  width: 16px;
  height: 16px;
  color: var(--sand-deep);
  flex-shrink: 0;
}
.hero__hours-sep {
  color: var(--sand);
  font-weight: 300;
  font-size: 19px;
  line-height: 1;
  opacity: 0.7;
}
.hero__hours-time {
  font-weight: 700;
  color: var(--navy);
}

.scroll-cue {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 1;
  color: var(--navy-soft);
  text-decoration: none;
  opacity: 0;
  animation: fadeIn 1s ease 0.9s forwards;
}
.scroll-cue span {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--sand-deep);
}
.scroll-cue svg {
  width: 24px; height: 24px;
  animation: bob 2.2s ease-in-out infinite;
}
@keyframes bob {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(6px); }
}
@keyframes fadeIn { to { opacity: 1; } }

/* ---- SERVICES ---- */
.services {
  padding: clamp(56px, 9vw, 120px) 24px clamp(64px, 9vw, 120px);
  display: flex;
  justify-content: center;
}

.services__inner {
  width: 100%;
  max-width: 1080px;
}

.services__list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: clamp(32px, 6vw, 72px);
}

.services__item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(46, 74, 104, 0.08);
}

.services__item:nth-last-child(-n+2) {
  border-bottom: none;
}

.services__item::before {
  content: "";
  flex-shrink: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--sand);
}

.services__name {
  font-size: clamp(15px, 1.8vw, 23px);
  font-weight: 600;
  color: var(--navy-deep);
  letter-spacing: -0.01em;
  line-height: 1.3;
}

@media (max-width: 640px) {
  .services__list { grid-template-columns: 1fr; }
  .services__item:nth-last-child(-n+2) { border-bottom: 1px solid rgba(46, 74, 104, 0.08); }
  .services__item:last-child { border-bottom: none; }
}

/* ---- INSURANCE MARQUEE ---- */
.insurances {
  background: var(--cream);
  border-top: 1px solid rgba(46, 74, 104, 0.08);
  padding: 32px 0 36px;
}

.insurances__label {
  text-align: center;
  font-size: clamp(10px, 4vw, 38px);
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--navy-deep);
  margin-bottom: 20px;
}

.insurances__viewport {
  position: relative;
  overflow: hidden;
}

.insurances__viewport::before,
.insurances__viewport::after {
  content: "";
  position: absolute;
  top: 0; bottom: 0;
  width: 80px;
  z-index: 1;
  pointer-events: none;
}
.insurances__viewport::before {
  left: 0;
  background: linear-gradient(to right, var(--cream), transparent);
}
.insurances__viewport::after {
  right: 0;
  background: linear-gradient(to left, var(--cream), transparent);
}

.insurances__track {
  display: flex;
  width: max-content;
  padding: 4px 0;
  /* animation is set by JS after images load */
}

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

/* margin-right instead of gap: ensures the gap between set1 last item
   and set2 first item equals internal gaps → -50% loops perfectly */
.insurances__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 4px 0;
  margin-right: 56px;
  white-space: nowrap;
  user-select: none;
}

.insurances__logo {
  height: 36px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
}

.insurances__abbr {
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.04em;
}

/* ---- INFO SECTION ---- */
.info {
  padding: clamp(56px, 9vw, 120px) 24px clamp(24px, 3vw, 40px);
  display: flex;
  justify-content: center;
}

.info__inner { width: 100%; max-width: 1080px; }

.info__eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
  color: var(--sand-deep);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}
.info__eyebrow::before {
  content: "";
  width: 30px; height: 2px;
  background: var(--sand);
  border-radius: 2px;
}

.info__title {
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--navy-deep);
  margin-bottom: clamp(28px, 4vw, 44px);
}

.grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(20px, 3vw, 32px);
  align-items: stretch;
}

.card {
  background: var(--white);
  border: 1px solid rgba(46, 74, 104, 0.07);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

/* contact card */
.contact { padding: clamp(28px, 4vw, 44px); }

.contact__list {
  list-style: none;
  display: flex;
  flex-direction: column;
}
.contact__item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(46, 74, 104, 0.08);
}
.contact__item:first-child { padding-top: 0; }

.contact__icon {
  flex: 0 0 auto;
  width: 46px; height: 46px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  background: var(--cream);
  color: var(--navy);
}
.contact__icon svg { width: 21px; height: 21px; }

.contact__label {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
  margin-bottom: 3px;
}
.contact__value {
  font-size: clamp(16px, 2vw, 18px);
  font-weight: 500;
  color: var(--navy-deep);
  text-decoration: none;
  line-height: 1.45;
  transition: color 0.2s ease;
  word-break: break-word;
}
a.contact__value:hover { color: var(--sand-deep); }

/* copy-to-clipboard button */
.copy-btn {
  flex: 0 0 auto;
  display: inline-grid;
  place-items: center;
  width: 30px; height: 30px;
  border: 1.5px solid rgba(46, 74, 104, 0.18);
  border-radius: 8px;
  background: transparent;
  color: var(--navy-soft);
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease, transform 0.15s ease;
  padding: 0;
  vertical-align: middle;
}
.copy-btn:hover {
  background: var(--cream);
  border-color: var(--sand);
  color: var(--navy);
  transform: scale(1.08);
}
.copy-btn svg { width: 14px; height: 14px; pointer-events: none; }
.copy-btn--copied {
  background: rgba(46, 74, 104, 0.06);
  border-color: var(--navy-soft);
  color: var(--navy);
}

.email-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* opening hours — visually distinct block */
.hours {
  margin-top: 26px;
  background: linear-gradient(150deg, var(--navy) 0%, var(--navy-deep) 100%);
  border-radius: 16px;
  padding: 26px 28px;
  color: #EAF0F7;
  position: relative;
  overflow: hidden;
}
.hours::after {
  content: "";
  position: absolute;
  right: -40px; top: -40px;
  width: 150px; height: 150px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,182,155,0.22) 0%, rgba(201,182,155,0) 70%);
}
.hours__head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  position: relative;
}
.hours__head svg { width: 20px; height: 20px; color: var(--sand); }
.hours__head h3 {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--sand);
}
.hours__row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  position: relative;
}
.hours__days  { font-size: 17px; font-weight: 500; }
.hours__time  { font-size: 17px; font-weight: 600; color: #fff; letter-spacing: 0.01em; }
.hours__note {
  margin-top: 12px;
  font-size: 13px;
  color: rgba(234, 240, 247, 0.62);
  position: relative;
}

/* map */
.map-wrap {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.map-wrap .map {
  flex: 1;
}

.map-note {
  display: inline-flex;
  align-self: center;
  align-items: center;
  gap: 9px;
  font-size: 15px;
  color: var(--navy-deep);
  font-weight: 600;
  background: var(--white);
  border: 1px solid rgba(46, 74, 104, 0.14);
  border-radius: 999px;
  padding: 10px 20px;
  box-shadow: var(--shadow-sm);
}
.map-note svg {
  flex: 0 0 auto;
  width: 17px;
  height: 17px;
  color: var(--navy);
}

.map {
  position: relative;
  min-height: 380px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(46, 74, 104, 0.07);
  box-shadow: var(--shadow);
}
/* Leaflet popup brand styling */
.leaflet-popup-content-wrapper {
  border-radius: 14px 14px 14px 14px !important;
  box-shadow: 0 12px 32px rgba(33,56,88,0.22) !important;
  font-family: 'DM Sans', system-ui, sans-serif !important;
  padding: 0 !important;
}
.leaflet-popup-content {
  margin: 14px 36px 14px 18px !important;
  line-height: 1.5 !important;
}
.leaflet-popup-tip-container { margin-top: -8px !important; transform: translateY(-6px) !important; }
.leaflet-popup-tip { background: #fff !important; }
.leaflet-popup-close-button {
  top: 12px !important;
  right: 8px !important;
}
.leaflet-control-zoom a {
  font-family: system-ui !important;
  color: var(--navy) !important;
}
/* custom navy pin */
.map-pin-wrap {
  width: 44px; height: 44px;
  background: var(--navy);
  border-radius: 50% 50% 50% 4px;
  transform: rotate(-45deg);
  display: grid; place-items: center;
  box-shadow: 0 8px 22px rgba(33,56,88,0.42);
}
.map-pin-wrap svg { transform: rotate(45deg); color: #fff; width: 22px; height: 22px; }
.map__marker {
  width: 56px; height: 56px;
  display: grid; place-items: center;
  border-radius: 50% 50% 50% 6px;
  transform: rotate(-45deg);
  background: var(--navy);
  box-shadow: 0 14px 26px -10px rgba(33,56,88,0.5);
}
.map__marker svg { width: 26px; height: 26px; color: #fff; transform: rotate(45deg); }
.map__pin strong { font-size: 17px; font-weight: 600; color: var(--navy-deep); }
.map__pin span   { font-size: 13px; color: var(--muted); letter-spacing: 0.02em; }
.map__tag {
  position: absolute;
  top: 16px; left: 16px;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--muted);
  background: rgba(255,255,255,0.78);
  backdrop-filter: blur(4px);
  padding: 6px 12px;
  border-radius: 999px;
}

/* ---- CENÍK ---- */
.pricing {
  padding: clamp(24px, 3vw, 40px) 24px clamp(72px, 10vw, 140px);
  display: flex;
  justify-content: center;
}

.pricing__inner {
  width: 100%;
  max-width: 1080px;
}

.pricing__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2.5vw, 24px);
}

.pricing__card {
  padding: clamp(22px, 3vw, 32px);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pricing__cat {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--navy);
}

.pricing__list {
  list-style: none;
  display: flex;
  flex-direction: column;
}

.pricing__row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(46, 74, 104, 0.07);
}
.pricing__row:first-child { padding-top: 0; }
.pricing__row:last-child  { border-bottom: none; padding-bottom: 0; }

.pricing__name {
  font-size: 14px;
  color: var(--ink);
  font-weight: 400;
  line-height: 1.4;
}

.pricing__price {
  font-size: 14px;
  font-weight: 600;
  color: var(--navy-deep);
  white-space: nowrap;
}

.pricing__payment {
  margin-top: 10px;
  font-size: 17px;
  font-weight: 600;
  color: var(--navy-deep);
  text-align: center;
}

.pricing__note {
  margin-top: clamp(20px, 3vw, 32px);
  font-size: 13px;
  color: var(--muted);
  text-align: center;
  font-style: italic;
}

@media (max-width: 900px) {
  .pricing__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .pricing__grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .hero__hours-title { margin-top: 24px; }
}

/* footer */
.footer {
  text-align: center;
  padding: 0 24px clamp(40px, 6vw, 64px);
  color: var(--muted);
  font-size: 13px;
  letter-spacing: 0.03em;
}
.footer strong { color: var(--navy); font-weight: 600; }

/* ---- RESPONSIVE ---- */
@media (max-width: 820px) {
  .grid { grid-template-columns: 1fr; }
  .map  { min-height: 300px; }
}
@media (max-width: 460px) {
  .contact__item { gap: 14px; padding: 18px 0; }
  .contact__icon { width: 42px; height: 42px; }
  .hours { padding: 22px; }
  .hours__row { flex-direction: column; gap: 2px; }
}
@media (prefers-reduced-motion: reduce) {
  .hero__logo-wrap, .scroll-cue, .scroll-cue svg { animation: none; opacity: 1; }
}
