/* ==========================================================
   DTC TRNOVÁ – HOMEPAGE
   Bootstrap 5.3 + vlastní CSS
   ========================================================== */

:root {
  --dtc-pink: #d76aa4;
  --dtc-pink-dark: #c94f91;
  --delfin-blue: #27a9e1;
  --delfin-blue-dark: #168dcb;
  --green: #77a84b;
  --text: #293042;
  --text-soft: #5f6675;
  --line: #e9ebef;
  --surface: #ffffff;
  --surface-warm: #fcfbf9;
  --radius-sm: 14px;
  --radius: 22px;
  --radius-lg: 30px;
  --shadow-sm: 0 10px 30px rgba(35, 43, 63, .07);
  --shadow: 0 18px 48px rgba(35, 43, 63, .12);
  --header-h: 92px;
  --page-x: clamp(20px, 4vw, 72px);
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--surface-warm);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
}

img {
  max-width: 100%;
}

.page-shell {
  padding-left: var(--page-x);
  padding-right: var(--page-x);
}


/* ==========================================================
   HEADER
   ========================================================== */

.site-header {
  z-index: 1030;
  padding-top: 8px;
  transition: .25s ease;
}

.site-header .navbar {
  min-height: var(--header-h);
  transition: .25s ease;
}

.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(8, 17, 10, .58), rgba(8, 17, 10, 0));
  pointer-events: none;
  transition: .25s ease;
}

.site-header.is-scrolled {
  padding-top: 0;
  background: rgba(255,255,255,.94);
  box-shadow: 0 8px 26px rgba(31, 39, 54, .08);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
}

.site-header.is-scrolled::before {
  opacity: 0;
}

.site-header.is-scrolled .navbar {
  min-height: 76px;
}

.brand {
  position: relative;
  z-index: 2;
  margin-right: 36px;
}

.brand img {
  display: block;
  width: 190px;
  max-height: 66px;
  object-fit: contain;
  object-position: left center;
  filter: brightness(0) invert(1);
  transition: .25s ease;
}

.site-header.is-scrolled .brand img {
  filter: none;
}

.navbar-nav {
  gap: clamp(6px, .85vw, 16px);
}

.navbar .nav-item {
    border: none !important;
}


.navbar .nav-link {
  position: relative;
  color: rgba(255,255,255,.94);
  font-size: .82rem;
  font-weight: 750;
  letter-spacing: .055em;
  text-transform: uppercase;
  white-space: nowrap;
  padding: 30px 6px !important;
  transition: .2s ease;
  border: none !important;
}

.navbar .nav-link::after {
  margin-left: 6px;
}

.navbar .nav-link:not(.dropdown-toggle)::before,
.navbar .dropdown-toggle::before {
  content: "";
  position: absolute;
  left: 6px;
  right: 6px;
  bottom: 20px;
  height: 2px;
  border-radius: 2px;
  background: var(--dtc-pink);
  transform: scaleX(0);
  transform-origin: left center;
  transition: .2s ease;
}

.navbar .nav-link:hover::before,
.navbar .nav-link.active::before,
.navbar .dropdown:hover > .nav-link::before {
  transform: scaleX(1);
}

.navbar .nav-link:hover,
.navbar .nav-link:focus,
.navbar .nav-link.active {
  color: #fff;
}

.site-header.is-scrolled .navbar .nav-link {
  color: var(--text);
}

.site-header.is-scrolled .navbar .nav-link:hover,
.site-header.is-scrolled .navbar .nav-link:focus,
.site-header.is-scrolled .navbar .nav-link.active {
  color: var(--dtc-pink-dark);
}

.emergency-btn {
  position: relative;
  z-index: 2;
  align-items: center;
  gap: 12px;
  min-height: 58px;
  padding: 9px 18px;
  color: #fff;
  background: linear-gradient(135deg, var(--dtc-pink), var(--dtc-pink-dark));
  border-radius: 12px;
  text-decoration: none;
  box-shadow: 0 12px 28px rgba(201, 79, 145, .26);
  transition: .2s ease;
}

.emergency-btn:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(201, 79, 145, .33);
}

.emergency-btn small,
.emergency-btn strong {
  display: block;
  line-height: 1.05;
}

.emergency-btn small {
  margin-bottom: 5px;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  opacity: .9;
}

.emergency-btn strong {
  font-size: 1rem;
}

.emergency-icon {
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
}

.emergency-icon svg,
.help-phone-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}


/* dropdown */

.dropdown-menu.mega-menu {
  width: 340px;
  margin-top: -10px !important;
  padding: 12px;
  border: 1px solid rgba(255,255,255,.72);
  border-radius: 18px;
  background: rgba(255,255,255,.96);
  box-shadow: 0 22px 60px rgba(18, 28, 42, .18);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.mega-menu-kicker {
  margin: 5px 8px 9px;
  padding: 0 3px 11px;
  color: var(--dtc-pink-dark);
  border-bottom: 1px solid var(--line);
  font-size: .72rem;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.mega-menu-blue .mega-menu-kicker {
  color: var(--delfin-blue-dark);
}

.mega-menu .dropdown-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 11px 12px;
  color: var(--text);
  border-radius: 10px;
  font-size: .92rem;
  font-weight: 650;
  transition: .16s ease;
}

.mega-menu .dropdown-item span {
  opacity: .35;
  transition: .16s ease;
}

.mega-menu .dropdown-item:hover {
  color: var(--dtc-pink-dark);
  background: #fff3f9;
  padding-left: 16px;
}

.mega-menu-blue .dropdown-item:hover {
  color: var(--delfin-blue-dark);
  background: #effaff;
}

.mega-menu .dropdown-item:hover span {
  opacity: 1;
  transform: translateX(2px);
}



/* ==========================================================
   COMMON SECTIONS
   ========================================================== */

.section {
  padding: clamp(72px, 7vw, 118px) 0;
}

.section-heading {
  margin-bottom: 38px;
}

.section h2 {
  margin: 0;
  font-size: clamp(2.2rem, 4vw, 4.2rem);
  line-height: 1.02;
  letter-spacing: -.035em;
  font-weight: 780;
}

.section-intro {
  max-width: 650px;
  margin: 0;
  color: var(--text-soft);
  font-size: 1.05rem;
  line-height: 1.7;
}

.eyebrow-pink {
  color: var(--dtc-pink-dark);
}

.eyebrow-blue {
  color: var(--delfin-blue-dark);
}

.btn-outline-brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  min-height: 50px;
  padding: 12px 21px;
  color: var(--delfin-blue-dark);
  border: 1px solid rgba(39,169,225,.65);
  border-radius: 12px;
  font-weight: 750;
}

.btn-outline-brand:hover {
  color: #fff;
  background: var(--delfin-blue);
  border-color: var(--delfin-blue);
}


/* ==========================================================
   FEATURE CARDS
   ========================================================== */

.section-services {
  background:
    radial-gradient(circle at 12% 10%, rgba(215,106,164,.055), transparent 24%),
    radial-gradient(circle at 82% 85%, rgba(39,169,225,.055), transparent 26%),
    #fff;
}

.service-grid {
  margin-top: 8px;
}

.feature-card {
  position: relative;
  display: block;
  height: 100%;
  min-height: 270px;
  padding: 25px 22px;
  color: var(--text);
  background: #fff;
  border: 1px solid #edf0f3;
  border-radius: 18px;
  box-shadow: var(--shadow-sm);
  text-decoration: none;
  transition: .22s ease;
}

.feature-card:hover {
  color: var(--text);
  transform: translateY(-6px);
  border-color: transparent;
  box-shadow: var(--shadow);
}

.feature-icon {
  display: grid;
  place-items: center;
    width: 90px;
    height: 90px;
  margin-bottom: 22px;
  border-radius: 18px;
      margin: 0 auto 18px;
}

.feature-icon img {
  width: auto;
  
}

.icon-pink { background: #fff0f7; }
.icon-blue { background: #ecf8fe; }
.icon-green { background: #f2f8ed; }
.icon-purple { background: #f5effd; }
.icon-orange { background: #fff6e8; }
.icon-teal { background: #ecfaf8; }

.feature-card h3 {
  margin: 0 0 10px;
  font-size: 1.02rem;
  font-weight: 800;
}

.feature-card p {
  margin: 0;
  color: var(--text-soft);
  font-size: .9rem;
  line-height: 1.55;
}

.card-arrow {
  position: absolute;
  right: 20px;
  bottom: 17px;
  opacity: 0;
  font-size: 1.25rem;
  transition: .2s ease;
}

.feature-card:hover .card-arrow {
  right: 16px;
  opacity: 1;
}


/* ==========================================================
   HELP
   ========================================================== */

.section-help {
  padding-top: 34px;
  padding-bottom: 34px;
  background: #fff;
}

.help-panel {
  padding: clamp(32px, 4vw, 58px);
  border: 1px solid #dfedf4;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 50% 50%, rgba(39,169,225,.14), transparent 24%),
    linear-gradient(100deg, #f3faff 0%, #eef8ff 55%, #f4fbff 100%);
}

.help-panel h2 {
  margin-bottom: 12px;
  font-size: clamp(2rem, 3vw, 3.1rem);
}

.help-panel p {
  max-width: 520px;
  margin: 0;
  color: var(--text-soft);
  line-height: 1.65;
}

.help-phone-icon {
  display: grid;
  place-items: center;
  width: 98px;
  height: 98px;
  padding: 8px;
  color: #fff;
  background: var(--delfin-blue);
  border: 14px solid rgba(39,169,225,.11);
  outline: 12px solid rgba(39,169,225,.07);
  border-radius: 50%;
  box-shadow: 0 14px 34px rgba(39,169,225,.2);
}

.help-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.help-contact > span {
  color: var(--delfin-blue-dark);
  font-size: .82rem;
  font-weight: 850;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.help-contact > a {
  color: var(--delfin-blue-dark);
  font-size: clamp(2.2rem, 4vw, 4.3rem);
  line-height: 1.1;
  font-weight: 850;
  letter-spacing: -.04em;
  text-decoration: none;
}

.help-contact small {
  margin-top: 8px;
  color: var(--text-soft);
}


/* ==========================================================
   NEWS
   ========================================================== */

.section-news {
  background: #fff;
}

.news-heading {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 30px;
  padding: 10px 10px 10px 0;
}

.news-heading h2 {
  font-size: clamp(2.2rem, 3.4vw, 3.8rem);
}

.news-heading .btn {
  align-self: flex-start;
}

.news-card {
  height: 100%;
  overflow: hidden;
  background: #fff;
  border: 1px solid #e9edf1;
  border-radius: 18px;
  box-shadow: var(--shadow-sm);
  transition: .22s ease;
}

.news-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.news-image {
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.news-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}

.news-card:hover .news-image img {
  transform: scale(1.045);
}

.news-body {
  padding: 20px 21px 22px;
}

.news-category {
  display: block;
  margin-bottom: 7px;
  color: var(--dtc-pink-dark);
  font-size: .68rem;
  font-weight: 850;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.news-card h3 {
  margin: 0 0 8px;
  font-size: 1.06rem;
  line-height: 1.3;
  font-weight: 800;
}

.news-card h3 a {
  text-decoration: none;
}

.news-card p {
  min-height: 44px;
  margin: 0 0 20px;
  color: var(--text-soft);
  font-size: .9rem;
  line-height: 1.5;
}

.news-card time {
  color: #a0a6b1;
  font-size: .82rem;
}


/* ==========================================================
   FOOTER
   ========================================================== */

.site-footer {
  padding: 0 0 24px;
  background: #fff;
}

.footer-panel {
  padding: clamp(30px, 4vw, 48px);
  border: 1px solid #dce7cc;
  border-radius: var(--radius-lg);
  background: linear-gradient(105deg, #f4faec, #edf6e4);
}

.footer-item strong {
  display: block;
  margin-bottom: 10px;
  font-size: .9rem;
}

.footer-item p {
  margin: 0 0 8px;
  color: #4d5944;
  font-size: .9rem;
  line-height: 1.6;
}

.footer-item a {
  color: #3b6430;
  font-size: .88rem;
  text-underline-offset: 3px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 4px 0;
  color: #9298a3;
  font-size: .78rem;
}


/* ==========================================================
   RESPONSIVE
   ========================================================== */

@media (max-width: 1399.98px) {
  :root {
    --page-x: clamp(20px, 3vw, 44px);
  }

  .brand img {
    width: 160px;
  }

  .emergency-btn {
    padding-inline: 14px;
  }
}

@media (max-width: 1199.98px) {
  :root {
    --header-h: 78px;
  }

  .site-header {
    background: rgba(20, 27, 22, .52);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
  }

  .site-header.is-scrolled {
    background: rgba(255,255,255,.97);
  }

  .custom-toggler {
    width: 28px;
    height: 22px;
    position: relative;
    z-index: 2;
    border: 0;
    box-shadow: none !important;
    background: transparent;
    padding: 0;
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
  }
  .toggler-line {
    display: block;
    width: 100%;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: transform .25s ease, opacity .2s ease, background-color .2s ease;
    transform-origin: center;
  }

  .site-header.is-scrolled .toggler-line {
    background-color: #1c2333;
  }

  /* rozbalene menu - hamburger se prekopi na krizek */
  .custom-toggler[aria-expanded="true"] .toggler-line-1 {
    transform: translateY(8px) rotate(45deg);
  }
  .custom-toggler[aria-expanded="true"] .toggler-line-2 {
    opacity: 0;
  }
  .custom-toggler[aria-expanded="true"] .toggler-line-3 {
    transform: translateY(-8px) rotate(-45deg);
  }

  .navbar-collapse {
    margin: 9px calc(var(--page-x) * -1) -8px;
    padding: 16px var(--page-x) 24px;
    background: rgba(22,29,24,.96);
    border-top: 1px solid rgba(255,255,255,.1);
    max-height: calc(100vh - 82px);
    overflow-y: auto;
  }

  .site-header.is-scrolled .navbar-collapse {
    background: rgba(255,255,255,.98);
    border-top-color: #eceef1;
  }

  .navbar-nav {
    align-items: stretch !important;
    gap: 0;
  }

  .navbar .nav-link {
    padding: 13px 2px !important;
  }

  .navbar .nav-link::before {
    display: none;
  }

  .dropdown-menu.mega-menu {
    width: 100%;
    margin: 0 0 8px !important;
    border-radius: 12px;
    box-shadow: none;
  }

  .hero h1 {
    font-size: clamp(3rem, 8vw, 5.8rem);
  }

  .hero-services {
    max-width: 900px;
  }
}

@media (max-width: 991.98px) {
  .hero {
    min-height: auto;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(10,20,11,.62), rgba(10,20,11,.10)),
      linear-gradient(0deg, rgba(9,18,11,.58) 0%, rgba(9,18,11,.10) 55%);
  }

  .service-card {
    min-height: 164px;
  }

  .hero-scroll {
    display: none;
  }

  .news-heading {
    padding-bottom: 18px;
  }
}

@media (max-width: 767.98px) {
  :root {
    --page-x: 18px;
  }

  .brand img {
    width: 145px;
    max-height: 54px;
  }

  .hero-video {
    object-position: 42% center;
  }

  .hero-copy {
    margin-bottom: 24px;
  }

  .hero h1 {
    font-size: clamp(2.7rem, 13vw, 4.25rem);
  }

  .hero-copy p {
    max-width: 95%;
    font-size: .98rem;
  }

  .service-card {
    grid-template-columns: 86px minmax(0, 1fr);
    min-height: 0;
    padding: 16px;
    border-radius: 17px;
  }

  .service-logo-wrap img {
    width: 76px;
    height: 76px;
  }

  .service-card-copy {
    padding-left: 8px;
  }

  .service-card h2 {
    font-size: 1.02rem;
  }

  .service-card p {
    display: none;
  }

  .service-link {
    margin-top: 6px;
  }

  .emergency-btn-mobile {
    display: flex;
    justify-content: center;
    width: 100%;
  }

  .section {
    padding: 70px 0;
  }

  .feature-card {
    min-height: 0;
  }

  .help-contact > a {
    font-size: clamp(2.4rem, 12vw, 3.8rem);
  }

  .footer-bottom {
    flex-direction: column;
    gap: 4px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}

/* ==========================================================
   HERO
   ========================================================== */

/* Hero je téměř fullscreen, ale nechává nahlédnout další sekci. */
.hero {
  position: relative;
  min-height: 92svh;
  height: 92svh;
  overflow: hidden;
  isolation: isolate;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% center;
  z-index: -3;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg,
      rgba(7, 17, 10, .58) 0%,
      rgba(7, 17, 10, .34) 31%,
      rgba(7, 17, 10, .09) 58%,
      rgba(7, 17, 10, .02) 100%),
    linear-gradient(0deg,
      rgba(8, 17, 10, .24) 0%,
      rgba(8, 17, 10, 0) 48%);
}

/* Jemný oblouk, kterým hero přechází do bílé sekce. */
.hero::after {
  content: "";
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: -15px;
  width: 112%;
  height: 54px;
  transform: translateX(-50%);
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 60' preserveAspectRatio='none'><path d='M0,30 C240,60 480,0 720,30 C960,60 1200,0 1440,30 L1440,60 L0,60 Z' fill='%23ffffff'/></svg>") no-repeat;
  background-size: 100% 100%;
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
}

/* Text je opticky vycentrovaný ve volné části hero. */
.hero-copy {
  position: absolute;
  top: 43%;
  left: var(--page-x);
  width: min(720px, 45vw);
  max-width: 720px;
  margin: 0;
  transform: translateY(-50%);
}

.hero .eyebrow {
  margin-bottom: 14px;
  font-size: .76rem;
  letter-spacing: .17em;
  color: #fff;
}

.hero h1 {
  max-width: 760px;
  margin: 0 0 16px;
  color: #fff;
  font-size: clamp(4rem, 4.55vw, 5.55rem);
  line-height: .96;
  letter-spacing: -.045em;
  font-weight: 770;
  text-shadow: 0 5px 28px rgba(0,0,0,.12);
}

.hero-copy p {
  max-width: 610px;
  margin: 0;
  color: rgba(255,255,255,.95);
  font-size: clamp(.98rem, 1.1vw, 1.12rem);
  line-height: 1.55;
}

/* Dvě hlavní vstupní karty jsou samostatně ukotvené dole. */
.hero-services {
  position: absolute;
  left: var(--page-x);
  bottom: 76px;
  width: min(1140px, calc(100% - (var(--page-x) * 2)));
  max-width: 1140px;
  margin: 0;
}

.service-card {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  min-height: 190px;
  padding: 21px 24px;
  color: var(--text);
  background: rgba(255,255,255,.76);
  border: 1px solid rgba(255,255,255,.64);
  border-radius: 22px;
  box-shadow: 0 20px 52px rgba(10, 20, 13, .16);
  backdrop-filter: blur(15px) saturate(1.08);
  -webkit-backdrop-filter: blur(15px) saturate(1.08);
  text-decoration: none;
  transition: .25s ease;
}

.service-card:hover {
  color: var(--text);
  background: rgba(255,255,255,.88);
  transform: translateY(-5px);
}

.service-logo-wrap {
  display: grid;
  place-items: center;
}

.service-logo-wrap img {
  width: 126px;
  height: 126px;
}

.service-card-copy {
  padding-left: 12px;
}

.service-label {
  margin-bottom: 5px;
      font-weight: bold;
}

.service-card-dtc .service-label,
.service-card-dtc .service-link {
  color: var(--dtc-pink-dark);
}

.service-card-delfinek .service-label,
.service-card-delfinek .service-link {
  color: var(--delfin-blue-dark);
}

.service-link b {
  transition: .18s ease;
}

.service-card:hover .service-link b {
  transform: translateX(4px);
}

.service-card h2 {
  margin-bottom: 7px;
  font-size: clamp(1.2rem, 1.4vw, 1.3rem);
}

.service-card p {
  max-width: 390px;
  margin-bottom: 13px;
  font-size: .91rem;
  line-height: 1.46;
}

.service-link {
  font-size: .9rem;
}

/* Jasný scroll cue. */
.hero-scroll {
  z-index: 5;
  left: 50%;
  bottom: 19px;
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border: 2px solid rgba(255,255,255,.92);
  border-radius: 50%;
  background: rgba(18, 28, 20, .12);
  box-shadow: 0 10px 30px rgba(0,0,0,.12);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: .2s ease;
      margin: 0 auto;
}

.hero-scroll:hover {
  background: rgba(255,255,255,.16);
  transform: translateX(-50%) translateY(3px);
}

.hero-scroll::before,
.hero-scroll span {
  display: none;
}

.hero-scroll svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: #fff;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  animation: hero-arrow 1.8s ease-in-out infinite;
}

@keyframes hero-arrow {
  0%, 100% { transform: translateY(-2px); }
  50% { transform: translateY(4px); }
}

/* O něco výraznější značka v hlavičce. */
@media (min-width: 1200px) {
  .brand img {
    width: 215px;
    max-height: 72px;
  }

  .site-header .navbar {
    min-height: 86px;
  }

  .navbar-nav {
    gap: clamp(10px, 1vw, 20px);
  }
}

/* Nižší desktop / notebook. */
@media (min-width: 1200px) and (max-height: 900px) {
  .hero {
    min-height: 94svh;
    height: 94svh;
  }

  .hero-copy {
    top: 40%;
  }

  .hero h1 {
    font-size: clamp(3.6rem, 4vw, 4.75rem);
  }

  .hero-services {
    bottom: 60px;
    width: min(1040px, calc(100% - (var(--page-x) * 2)));
  }

  .service-card {
    grid-template-columns: 125px minmax(0, 1fr);
    min-height: 160px;
    padding: 17px 20px;
  }

  .service-logo-wrap img {
    width: 104px;
    height: 104px;
  }

  .service-card p {
    font-size: .83rem;
    margin-bottom: 9px;
  }

  .hero-scroll {
    width: 46px;
    height: 46px;
    bottom: 13px;
  }
}

/* Tablet: hero se může přirozeně prodloužit kvůli kartám. */
@media (max-width: 1199.98px) {
  .hero {
    height: auto;
    min-height: 100svh;
  }

  .hero-content {
    min-height: 100svh;
    padding-top: calc(var(--header-h) + 78px);
    padding-bottom: 95px;
  }

  .hero-copy,
  .hero-services {
    position: static;
    width: auto;
    max-width: none;
    transform: none;
  }

  .hero-copy {
    padding-top: clamp(80px, 10vh, 135px);
    width: min(760px, 82vw);
    margin-bottom: 38px;
  }

  .hero-services {
    width: min(920px, 100%);
  }

  .hero-scroll {
    bottom: 18px;
  }
}

@media (max-width: 767.98px) {
  .hero,
  .hero-content {
    min-height: 0;
  }

  .hero::after {
    bottom: -10px;
    height: 34px;
  }

  .hero-content {
    padding-top: calc(var(--header-h) + 14px);
    padding-bottom: 20px;
  }

  .hero-copy {
    width: 100%;
    padding-top: 30px;
    margin-bottom: 18px;
  }

  .hero h1 {
    font-size: clamp(2.4rem, 10.5vw, 3.4rem);
    margin-bottom: 10px;
  }

  .hero-copy p {
    font-size: .92rem;
    line-height: 1.4;
  }

  .service-card {
    grid-template-columns: 92px minmax(0, 1fr);
    min-height: 0;
    padding: 14px;
    background: rgba(255,255,255,.82);
  }

  .service-logo-wrap img {
    width: 66px;
    height: 66px;
  }

  .service-card p {
    display: block;
    font-size: .78rem;
    margin-bottom: 6px;
  }

  .hero-scroll {
    width: 46px;
    height: 46px;
    bottom: 14px;
    margin-bottom: 20px;
  }
}

/* Další sekce začíná čistě pod obloukem. */
.section-services {
  position: relative;
  z-index: 1;
  padding-top: clamp(78px, 7vw, 112px);
}

/* ==========================================================
   FOOTER FINAL – zelený panel + Bootstrap Icons
   ========================================================== */

.site-footer {
  padding: 12px 0 24px;
  background: #fff;
}

.footer-panel {
  overflow: hidden;
  padding: 0;
  border: 1px solid #d4e4be;
  border-radius: 30px;
  background:
    radial-gradient(circle at 12% 35%, rgba(215, 106, 164, .055), transparent 22%),
    radial-gradient(circle at 88% 22%, rgba(39, 169, 225, .05), transparent 20%),
    linear-gradient(105deg, #f5faee 0%, #eef6e5 48%, #f3f8ec 100%);
  box-shadow: 0 12px 34px rgba(64, 91, 52, .05);
}

.footer-grid {
  min-height: 208px;
  align-items: stretch;
}

.footer-col {
  position: relative;
  display: flex;
}

.footer-col:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 46px;
  right: 0;
  bottom: 46px;
  width: 1px;
  background: rgba(95, 126, 72, .16);
}

.footer-item {
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr);
  gap: 20px;
  align-items: start;
  width: 100%;
  padding: 46px 34px;
}

.footer-icon {
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  font-size: 1.85rem;
}

.footer-icon i {
  line-height: 1;
}

.footer-icon-pink {
  color: var(--dtc-pink-dark);
  background: rgba(215, 106, 164, .13);
}

.footer-icon-blue {
  color: var(--delfin-blue-dark);
  background: rgba(39, 169, 225, .12);
}

.footer-icon-green {
  color: #4c8b27;
  background: rgba(119, 168, 75, .13);
}

.footer-icon-facebook {
  color: #2f74d0;
  background: rgba(47, 116, 208, .11);
}

.footer-copy strong {
  display: block;
  margin: 2px 0 14px;
  color: var(--text);
  font-size: .95rem;
  font-weight: 800;
}

.footer-copy p {
  margin: 0;
  color: #56624f;
  font-size: .92rem;
  line-height: 1.65;
}

.footer-copy a {
  color: #3c6c2f;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  transition: .18s ease;
}

.footer-copy > a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 11px;
  font-weight: 650;
  text-decoration: underline;
}

.footer-copy a:hover {
  color: var(--dtc-pink-dark);
}

.footer-copy a span {
  display: inline-block;
  transition: .18s ease;
}

.footer-copy a:hover span {
  transform: translateX(3px);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 4px 0;
  color: #9298a3;
  font-size: .78rem;
}

@media (max-width: 1199.98px) {
  .footer-grid {
    min-height: 0;
  }

  .footer-col:nth-child(2)::after {
    display: none;
  }

  .footer-col:nth-child(-n+2)::before {
    content: "";
    position: absolute;
    left: 32px;
    right: 32px;
    bottom: 0;
    height: 1px;
    background: rgba(95, 126, 72, .13);
  }

  .footer-item {
    padding: 34px 30px;
  }
}

@media (max-width: 767.98px) {
  .footer-panel {
    border-radius: 22px;
  }

  .footer-col::after,
  .footer-col::before {
    display: none !important;
  }

  .footer-col:not(:last-child) {
    border-bottom: 1px solid rgba(95, 126, 72, .13);
  }

  .footer-item {
    grid-template-columns: 58px minmax(0, 1fr);
    gap: 16px;
    padding: 24px 22px;
  }

  .footer-icon {
    width: 52px;
    height: 52px;
    font-size: 1.48rem;
  }

  .footer-copy strong {
    margin-bottom: 8px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 4px;
    padding-top: 18px;
  }
}

/* ==========================================================
   FOOTER COMPACT – přesně podle schválené reference
   ========================================================== */

.site-footer {
  padding: 10px 0 20px;
  background: #fff;
}

.footer-panel-compact {
  padding: 0;
  overflow: hidden;
  border: 1px solid #d6e5c4;
  border-radius: 18px;
  background: linear-gradient(105deg, #f4faec 0%, #eef6e5 100%);
  box-shadow: none;
}

.footer-mini-item {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  min-height: 104px;
  padding: 20px 28px;
}

.footer-mini-icon {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  width: 48px;
  height: 48px;
  padding-top: 1px;
  font-size: 2.2rem;
  line-height: 1;
}

.footer-mini-green {
  color: #5f9636;
}

.footer-mini-item strong {
  display: block;
  margin: 0 0 8px;
  color: var(--text);
  font-size: .82rem;
  line-height: 1.2;
  font-weight: 800;
}

.footer-mini-item p {
  margin: 0;
  color: #596452;
  font-size: .79rem;
  line-height: 1.5;
}

.footer-mini-item a {
  color: #4f7739;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.footer-mini-item > div:last-child > a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 7px;
  font-size: .78rem;
  font-weight: 650;
}

.footer-mini-item a:hover {
  color: var(--dtc-pink-dark);
}

.footer-mini-item a span {
  transition: transform .18s ease;
}

.footer-mini-item a:hover span {
  transform: translateX(3px);
}

.footer-social {
  padding-top: 2px;
}

.facebook-icon {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  margin: 0 !important;
  border-radius: 50%;
  color: #fff !important;
  background: #2f74d0;
  text-decoration: none !important;
  font-size: .9rem !important;
}

.facebook-icon:hover {
  color: #fff !important;
  transform: translateY(-1px);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 15px 4px 0;
  color: #9298a3;
  font-size: .72rem;
}

@media (max-width: 1199.98px) {
  .footer-mini-item {
    min-height: 96px;
    padding: 18px 24px;
  }
}

@media (max-width: 767.98px) {
  .footer-panel-compact {
    border-radius: 16px;
  }

  .footer-mini-item {
    min-height: 0;
    padding: 18px 20px;
  }

  .footer-panel-compact .col-12:not(:last-child) .footer-mini-item {
    border-bottom: 1px solid rgba(95, 126, 72, .12);
  }

  .footer-bottom {
    flex-direction: column;
    gap: 3px;
  }
}


/* ===== FOOTER FINAL BRAND ===== */
.site-footer{position:relative;overflow:hidden;padding:0;background:#fff}
.footer-contact-shell{position:relative;z-index:5}
.footer-panel-compact{overflow:hidden;padding:0;border:1px solid #d6e5c4;border-radius:18px;background:linear-gradient(105deg,#f4faec,#eef6e5);box-shadow:none}
.footer-mini-item{display:grid;grid-template-columns:28px minmax(0,1fr);gap:12px;min-height:104px;padding:20px 28px}
.footer-mini-icon{color:#5f9636;font-size:1.18rem}
.footer-mini-item strong{display:block;margin:0 0 8px;font-size:.82rem;font-weight:800}
.footer-mini-item p{margin:0;color:#596452;font-size:.79rem;line-height:1.5}
.footer-mini-item a{color:#4f7739;text-underline-offset:3px}
.facebook-icon{display:inline-grid!important;place-items:center;width:24px;height:24px;border-radius:50%;background:#2f74d0;color:#fff!important;text-decoration:none!important}

.footer-brand{position:relative;isolation:isolate;margin-top:56px;padding:112px 0 0;color:#fff;background:linear-gradient(115deg,#c45f98 0%,#b54f86 52%,#a94677 100%)}
.footer-wave{  position: absolute;
  z-index: 1; /* nad růžovým pozadím, ne pod */
  left: 0;
  top: -1px; /* přelep hranici, ať nevznikne subpixel mezera */
  width: 100%;
  height: 80px;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120' preserveAspectRatio='none'%3E%3Cpath d='M0,40 C150,90 350,0 600,40 C850,80 1050,0 1200,40 L1200,0 L0,0 Z' fill='%23ffffff'/%3E%3C/svg%3E");
}
.footer-orbit{position:absolute;z-index:-1;width:300px;height:300px;border:1px solid rgba(255,255,255,.13);border-radius:50%;pointer-events:none}
.footer-orbit:before,.footer-orbit:after{content:"";position:absolute;border:1px solid rgba(255,255,255,.1);border-radius:50%}
.footer-orbit:before{inset:28px}.footer-orbit:after{inset:58px}.orbit-l{left:-180px;bottom:40px}.orbit-r{right:-160px;top:90px;width:350px;height:350px}
.footer-organisations{max-width:1500px;margin:auto}
.footer-org{display:grid;grid-template-columns:126px minmax(0,1fr);gap:34px;min-height:340px;padding:18px clamp(34px,4vw,72px) 50px}
.footer-org-dtc{border-right:1px solid rgba(255,255,255,.2)}
.footer-org-logo img{
    width: 125px;
    height: 125px;
    padding: 12px;
    object-fit: contain;
    background: rgba(255, 255, 255, .96);
    border-radius: 50%;
    box-shadow: 0 18px 42px rgba(78, 23, 54, .15);

}
.footer-org-kicker{display:block;margin:4px 0 12px;color:rgba(255,255,255,.7);font-size:.72rem;font-weight:800;letter-spacing:.12em;text-transform:uppercase}
.footer-org h2{margin:0;max-width:560px;color:#fff;font-size:clamp(1.55rem,2vw,2.15rem);line-height:1.15;letter-spacing:-.025em;font-weight:790}
.footer-org h2 span{color:rgba(255,255,255,.72);font-weight:650}
.footer-org-accent{width:54px;height:3px;margin:24px 0 23px;border-radius:99px;background:rgba(255,255,255,.46)}
.footer-org-details{display:grid;gap:12px}
.footer-org-details a,.footer-org-details>div{display:grid;grid-template-columns:24px minmax(0,1fr);gap:11px;color:rgba(255,255,255,.88);font-size:.91rem;line-height:1.5;text-decoration:none}
.footer-org-details i{color:rgba(255,255,255,.58)}
.footer-org-details a{transition:.18s}.footer-org-details a:hover{color:#fff;transform:translateX(3px)}
.footer-brand-bottom{display:grid;grid-template-columns:1fr auto 1fr;align-items:center;gap:28px;max-width:1500px;margin:auto;padding:25px clamp(34px,4vw,72px) 28px;color:rgba(255,255,255,.67);font-size:.76rem}
.footer-brand-bottom>span:last-child{text-align:right}.footer-brand-bottom>i{opacity:.55}

@media(max-width:1199.98px){.footer-brand{padding-top:94px}.footer-org{min-height:0;padding:12px 24px 42px}.footer-org-dtc{border-right:0;border-bottom:1px solid rgba(255,255,255,.16)}.footer-org-delfinek{padding-top:38px}}
@media(max-width:767.98px){.footer-mini-item{min-height:0;padding:18px 20px}.footer-brand{margin-top:38px;padding-top:72px}.footer-wave{top:-48px;height:72px}.footer-org{grid-template-columns:82px minmax(0,1fr);gap:20px;padding:8px 2px 34px}.footer-org-logo img{width:78px;height:78px;padding:8px;border-radius:19px}.footer-org h2{font-size:1.28rem}.footer-org-kicker{font-size:.63rem}.footer-org-accent{margin:18px 0}.footer-org-details a,.footer-org-details>div{font-size:.82rem}.footer-brand-bottom{grid-template-columns:1fr;gap:5px;padding-inline:2px}.footer-brand-bottom>span:last-child{text-align:left}.footer-brand-bottom>i{display:none}}
@media(max-width:479.98px){.footer-org{grid-template-columns:1fr}.footer-org-logo img{width:84px;height:84px}}



/* ==========================================================
   INNER PAGE – O DTC TRNOVÁ
   ========================================================== */

.inner-page {
  background: #fff;
}

.inner-hero {
  position: relative;
  height: clamp(400px, 44vw, 560px);
  min-height: 400px;
  overflow: hidden;
  isolation: isolate;
  background: #59684f;
}

.inner-hero-image {
  position: absolute;
  z-index: -3;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 44%;
}

.inner-hero-overlay {
  position: absolute;
  z-index: -2;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(17,25,19,.62) 0%, rgba(17,25,19,.30) 40%, rgba(17,25,19,.05) 72%),
    linear-gradient(0deg, rgba(12,20,14,.22), rgba(12,20,14,0) 55%);
}

.inner-hero::after {
  content: "";
  position: absolute;
  z-index: 1;
  left: 50%;
  bottom: -15px;
  width: 112%;
  height: 54px;
  transform: translateX(-50%);
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 60' preserveAspectRatio='none'><path d='M0,30 C240,60 480,0 720,30 C960,60 1200,0 1440,30 L1440,60 L0,60 Z' fill='%23ffffff'/></svg>") no-repeat;
  background-size: 100% 100%;
  pointer-events: none;
}

.inner-hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
}

.inner-hero-copy {
  position: absolute;
  left: var(--page-x);
  bottom: clamp(92px, 9vw, 130px);
  max-width: 650px;
  color: #fff;
}

.inner-breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 17px;
  color: rgba(255,255,255,.72);
  font-size: .78rem;
}

.inner-breadcrumb a {
  color: inherit;
  text-decoration: none;
}

.inner-breadcrumb a:hover {
  color: #fff;
}

.inner-breadcrumb strong {
  color: rgba(255,255,255,.95);
  font-weight: 700;
}

.inner-hero h1 {
  margin: 0;
  color: #fff;
  font-size: clamp(3.2rem, 5vw, 5.6rem);
  line-height: .98;
  letter-spacing: -.045em;
  font-weight: 780;
}

.inner-hero-logo {
  position: absolute;
  right: clamp(8vw, 17vw, 330px);
  top: 50%;
  transform: translateY(-45%);
  display: grid;
  place-items: center;
  width: clamp(175px, 17vw, 255px);
  height: clamp(175px, 17vw, 255px);
  padding: 18px;
  background: rgba(255,255,255,.88);
  border: 1px solid rgba(255,255,255,.76);
  border-radius: 50%;
  box-shadow: 0 24px 65px rgba(23,25,20,.22);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
}

.inner-hero-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}


/* content */
.dtc-about {
  padding: clamp(74px, 7vw, 115px) 0 40px;
  background:
    radial-gradient(circle at 8% 20%, rgba(215,106,164,.04), transparent 22%),
    #fff;
}

.dtc-about-shell {
  max-width: 1510px;
  margin: 0 auto;
}

.dtc-about-intro {
  margin-bottom: clamp(54px, 6vw, 90px);
}

.dtc-section-mark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 17px;
  color: var(--dtc-pink-dark);
  font-size: .76rem;
  font-weight: 850;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.dtc-section-icon,
.dtc-content-icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  flex: 0 0 auto;
  color: var(--dtc-pink-dark);
  background: #fff0f7;
  border-radius: 50%;
  font-size: 1.35rem;
}

.dtc-section-mark .dtc-section-icon {
  width: 42px;
  height: 42px;
  font-size: 1.05rem;
}

.dtc-about h2 {
  max-width: 650px;
  margin: 0 0 21px;
  color: var(--text);
  font-size: clamp(2.35rem, 3.7vw, 4.3rem);
  line-height: 1.03;
  letter-spacing: -.04em;
  font-weight: 780;
}

.dtc-lead {
  max-width: 690px;
  margin: 0;
  color: var(--text-soft);
  font-size: 1.02rem;
  line-height: 1.72;
}

.dtc-building-card {
  position: relative;
  margin: 0;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  border-radius: 26px;
  box-shadow: 0 22px 58px rgba(39,48,66,.12);
}

.dtc-building-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255,255,255,.5);
  border-radius: inherit;
  pointer-events: none;
}

.dtc-building-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


/* řádky */
.dtc-content-list {
  border-top: 1px solid var(--line);
}

.dtc-content-row {
  display: grid;
  grid-template-columns: minmax(230px, 30%) minmax(0, 1fr);
  gap: clamp(34px, 5vw, 82px);
  padding: clamp(30px, 3vw, 46px) 0;
  border-bottom: 1px solid var(--line);
}

.dtc-content-title {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 17px;
  align-items: start;
}

.dtc-content-title h3 {
  margin: 11px 0 0;
  color: var(--text);
  font-size: 1.12rem;
  line-height: 1.28;
  font-weight: 800;
}

.dtc-content-body {
  max-width: 900px;
  color: #515866;
  font-size: .97rem;
  line-height: 1.72;
}

.dtc-content-body p {
  margin: 0;
}

.dtc-service-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  column-gap: 46px;
  row-gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.dtc-service-list > li {
  position: relative;
  padding-left: 17px;
}

.dtc-service-list > li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .76em;
  width: 6px;
  height: 6px;
  background: var(--dtc-pink);
  border-radius: 50%;
}

.dtc-service-list ol {
  margin: 9px 0 0;
  padding-left: 21px;
}


/* contacts */
.dtc-contacts {
  margin-top: clamp(56px, 6vw, 90px);
  margin-bottom: clamp(70px, 7vw, 105px);
  padding: clamp(26px, 3vw, 43px);
  border: 1px solid #ece9ed;
  border-radius: 28px;
  background:
    radial-gradient(circle at 10% 10%, rgba(215,106,164,.07), transparent 25%),
    #fff;
  box-shadow: var(--shadow-sm);
}

.dtc-contacts-head {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 31px;
}

.dtc-section-eyebrow {
  color: var(--dtc-pink-dark);
  font-size: .72rem;
  font-weight: 850;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.dtc-contacts-head h2 {
  margin: 3px 0 0;
  font-size: clamp(1.65rem, 2.4vw, 2.7rem);
}

.dtc-contact-card {
  height: 100%;
  min-height: 210px;
  padding: 22px 20px;
  border: 1px solid #edf0f3;
  border-radius: 17px;
  background: rgba(255,255,255,.87);
}

.dtc-contact-card strong,
.dtc-contact-card > span {
  display: block;
}

.dtc-contact-card strong {
  margin-bottom: 6px;
  font-size: .96rem;
  color: var(--text);
}

.dtc-contact-card > span {
  min-height: 50px;
  margin-bottom: 18px;
  color: var(--text-soft);
  font-size: .79rem;
  line-height: 1.42;
}

.dtc-contact-card a {
  display: block;
  margin-top: 7px;
  overflow-wrap: anywhere;
  color: #5c6571;
  font-size: .78rem;
  text-decoration: none;
}

.dtc-contact-card a:hover {
  color: var(--dtc-pink-dark);
}

.dtc-contact-card i {
  width: 18px;
  margin-right: 4px;
  color: var(--dtc-pink-dark);
}

.dtc-emergency {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  margin-top: 26px;
  padding: 22px 25px;
  color: #fff;
  background: linear-gradient(135deg, var(--dtc-pink), var(--dtc-pink-dark));
  border-radius: 17px;
}

.dtc-emergency span,
.dtc-emergency strong {
  display: block;
}

.dtc-emergency span {
  margin-bottom: 3px;
  font-size: .68rem;
  font-weight: 850;
  letter-spacing: .1em;
  text-transform: uppercase;
  opacity: .82;
}

.dtc-emergency strong {
  font-size: 1.05rem;
}

.dtc-emergency > a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  color: #fff;
  border: 1px solid rgba(255,255,255,.45);
  border-radius: 11px;
  font-size: 1rem;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}


/* header on inner hero */
.inner-page-dtc ~ .site-footer {}

body:has(.inner-page) .site-header:not(.is-scrolled)::before {
  background: linear-gradient(to bottom, rgba(8,17,10,.52), rgba(8,17,10,0));
}


@media (max-width: 1199.98px) {
  .inner-hero-logo {
    right: 7vw;
  }

  .dtc-content-row {
    grid-template-columns: minmax(220px, 34%) minmax(0, 1fr);
  }

  .dtc-service-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 991.98px) {
  .inner-hero {
    height: 560px;
  }

  .inner-hero-copy {
    bottom: 90px;
  }

  .inner-hero-logo {
    right: var(--page-x);
    top: auto;
    bottom: 82px;
    transform: none;
    width: 155px;
    height: 155px;
  }

  .inner-hero h1 {
    padding-right: 180px;
  }

  .dtc-content-row {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .dtc-content-title {
    grid-template-columns: 54px minmax(0, 1fr);
  }

  .dtc-content-title h3 {
    margin-top: 9px;
  }
}

@media (max-width: 767.98px) {
  .inner-hero {
    min-height: 510px;
    height: 70svh;
  }

  .inner-hero-image {
    object-position: 42% center;
  }

  .inner-hero-copy {
    left: var(--page-x);
    right: var(--page-x);
    bottom: 75px;
  }

  .inner-breadcrumb {
    font-size: .7rem;
  }

  .inner-hero h1 {
    padding-right: 0;
    font-size: clamp(2.8rem, 12vw, 4.2rem);
  }

  .inner-hero-logo {
    top: 105px;
    right: var(--page-x);
    bottom: auto;
    width: 108px;
    height: 108px;
    padding: 9px;
  }

  .dtc-about {
    padding-top: 65px;
  }

  .dtc-section-icon,
  .dtc-content-icon {
    width: 48px;
    height: 48px;
    font-size: 1.15rem;
  }

  .dtc-content-title {
    grid-template-columns: 48px minmax(0,1fr);
  }

  .dtc-contacts {
    padding: 22px 18px;
    border-radius: 20px;
  }

  .dtc-contact-card {
    min-height: 0;
  }

  .dtc-contact-card > span {
    min-height: 0;
  }

  .dtc-emergency {
    align-items: flex-start;
    flex-direction: column;
  }
}


@media (max-width: 767.98px) {
  .inner-hero::after {
    bottom: -15px;
    height: 34px;
  }
}



/* ==========================================================
   ARTICLE TEMPLATE – obsahové podstránky DTC
   Co u nás najdete / podobné textové stránky
   ========================================================== */

.article-page {
  background: #fff;
}

.article-hero {
  position: relative;
  
  
      height: clamp(260px, 28vw, 420px);
  min-height: 260px;
  overflow: hidden;
  isolation: isolate;
  background: #a99c8c;
}

.article-hero-image {
  position: absolute;
  z-index: -3;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 50%;
}

.article-hero-overlay {
  position: absolute;
  z-index: -2;
  inset: 0;
  background:
    linear-gradient(90deg,
      rgba(38,30,29,.54) 0%,
      rgba(38,30,29,.28) 35%,
      rgba(38,30,29,.06) 67%,
      rgba(38,30,29,.01) 100%),
    linear-gradient(0deg, rgba(28,22,21,.14), transparent 55%);
}

.article-hero::after {
  content: "";
  position: absolute;
  z-index: 1;
  left: 50%;
  bottom: -15px;
  width: 112%;
  height: 54px;
  transform: translateX(-50%);
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 60' preserveAspectRatio='none'><path d='M0,30 C240,60 480,0 720,30 C960,60 1200,0 1440,30 L1440,60 L0,60 Z' fill='%23ffffff'/></svg>") no-repeat;
  background-size: 100% 100%;
  pointer-events: none;
}

.article-hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
}

.article-hero-copy {
  position: absolute;
  left: var(--page-x);
  bottom: clamp(28px, 4vw, 40px);
      bottom: clamp(28px, 5vw, 75px);
  width: min(760px, 70vw);
  color: #fff;
}

.article-hero .inner-breadcrumb {
  margin-bottom: 15px;
}

.article-hero h1 {
  margin: 0;
  color: #fff;
  font-size: clamp(3rem, 4.4vw, 5rem);
  line-height: 1;
  letter-spacing: -.045em;
  font-weight: 780;
}


/* article */
.article-sections {
  padding: clamp(62px, 6vw, 96px) 0 clamp(70px, 7vw, 108px);
  background:
    radial-gradient(circle at 7% 9%, rgba(215,106,164,.04), transparent 18%),
    #fff;
}

.article-shell {
  max-width: 1370px;
  margin: 0 auto;
}

.article-row {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  gap: clamp(24px, 4vw, 54px);
  padding: clamp(32px, 3.5vw, 51px) 0;
  border-bottom: 1px solid var(--line);
}

.article-row:first-child {
  padding-top: 0;
}

.article-row:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.article-icon {
  display: grid;
  place-items: center;
  width: 82px;
  height: 82px;
  margin-left: auto;
  color: var(--dtc-pink-dark);
  background:
    radial-gradient(circle at 30% 25%, rgba(255,255,255,.82), transparent 38%),
    #fff1f7;
  border: 1px solid #f4dce8;
  border-radius: 50%;
  font-size: 2rem;
}

.article-copy {
  max-width: 1020px;
}

.article-copy h2 {
  margin: 3px 0 18px;
  color: var(--text);
  font-size: clamp(1.25rem, 1.7vw, 1.55rem);
  line-height: 1.25;
  letter-spacing: -.015em;
  font-weight: 800;
}

.article-copy p {
  margin: 0 0 16px;
  color: #555d68;
  font-size: .98rem;
  line-height: 1.75;
}

.article-copy p:last-child {
  margin-bottom: 0;
}


@media (max-width: 991.98px) {
  .article-row {
    grid-template-columns: 76px minmax(0, 1fr);
    gap: 22px;
  }

  .article-icon {
    width: 64px;
    height: 64px;
    font-size: 1.55rem;
  }
}

@media (max-width: 767.98px) {
  .article-hero {
    min-height: 360px;
    height: 54svh;
  }

  .article-hero::after {
    bottom: -15px;
    height: 34px;
  }

  .article-hero-copy {
    left: var(--page-x);
    right: var(--page-x);
    bottom: 58px;
    width: auto;
  }

  .article-hero h1 {
    font-size: clamp(2.7rem, 11vw, 4rem);
  }

  .article-row {
    grid-template-columns: 1fr;
    gap: 17px;
    padding: 30px 0;
  }

  .article-icon {
    width: 56px;
    height: 56px;
    margin-left: 0;
    font-size: 1.35rem;
  }

  .article-copy h2 {
    margin-top: 0;
  }

  .article-copy p {
    font-size: .93rem;
    line-height: 1.68;
  }
}



/* ==========================================================
   ARTICLE TEMPLATE – DELFÍNEK / POSKYTOVANÁ OCHRANA
   ========================================================== */

.article-page-delfinek .article-hero-overlay {
  background:
    linear-gradient(90deg,
      rgba(8,27,39,.60) 0%,
      rgba(8,27,39,.28) 36%,
      rgba(8,27,39,.06) 68%,
      rgba(8,27,39,.01) 100%),
    linear-gradient(0deg, rgba(7,24,35,.16), transparent 55%);
}

.article-sections-delfinek {
  background:
    radial-gradient(circle at 7% 9%, rgba(39,169,225,.045), transparent 18%),
    #fff;
}

.article-page-delfinek .article-icon {
  color: var(--delfin-blue-dark);
  background:
    radial-gradient(circle at 30% 25%, rgba(255,255,255,.86), transparent 38%),
    #edf9fe;
  border-color: #dceff8;
}

.article-intro {
  max-width: 970px;
  margin: 0 0 clamp(38px, 4vw, 62px) 112px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--line);
}

.article-intro-kicker {
  display: block;
  margin-bottom: 8px;
  color: var(--delfin-blue-dark);
  font-size: .74rem;
  font-weight: 850;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.article-intro h2 {
  margin: 0;
  color: var(--text);
  font-size: clamp(1.8rem, 2.6vw, 3rem);
  line-height: 1.12;
  letter-spacing: -.03em;
  font-weight: 780;
}

.article-closing {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  max-width: 900px;
  margin: clamp(42px, 5vw, 70px) auto 0;
  padding: 21px 26px;
  color: #3f697e;
  background: #effaff;
  border: 1px solid #d9eff9;
  border-radius: 17px;
  text-align: center;
  line-height: 1.55;
}

.article-closing i {
  color: var(--delfin-blue-dark);
  font-size: 1.25rem;
}

@media (max-width: 991.98px) {
  .article-intro {
    margin-left: 76px;
  }
}

@media (max-width: 767.98px) {
  .article-intro {
    margin-left: 0;
  }

  .article-closing {
    align-items: flex-start;
    text-align: left;
  }
}



/* ==========================================================
   DESATERO DĚTSKÝCH PRÁV – DELFÍNEK
   ========================================================== */

.rights-section {
  padding-top: clamp(58px, 5vw, 86px);
}

.rights-intro {
  margin-bottom: 38px;
}

.rights-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.right-item {
  position: relative;
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  min-height: 138px;
  padding: 25px 28px;
  overflow: hidden;
  border: 1px solid #dceef7;
  border-radius: 20px;
  background:
    radial-gradient(circle at 100% 0%, rgba(39,169,225,.07), transparent 32%),
    #fff;
  box-shadow: 0 10px 28px rgba(35,43,63,.05);
}

.right-item::after {
  content: "";
  position: absolute;
  right: -38px;
  bottom: -54px;
  width: 120px;
  height: 120px;
  border: 1px solid rgba(39,169,225,.09);
  border-radius: 50%;
}

.right-icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  color: var(--delfin-blue-dark);
  background: #edf9fe;
  border-radius: 16px;
  font-size: 1.38rem;
}

.right-item p {
  position: relative;
  z-index: 1;
  margin: 0;
  padding-right: 36px;
  color: #4f5864;
  font-size: .96rem;
  line-height: 1.62;
  font-weight: 550;
}

.right-number {
  position: absolute;
  top: 15px;
  right: 18px;
  color: #d2e5ef;
  font-size: 1.15rem;
  font-weight: 850;
  letter-spacing: .04em;
}

@media (max-width: 991.98px) {
  .rights-list {
    grid-template-columns: 1fr;
  }

  .right-item {
    min-height: 118px;
  }
}

@media (max-width: 575.98px) {
  .right-item {
    grid-template-columns: 48px minmax(0,1fr);
    gap: 14px;
    min-height: 0;
    padding: 21px 18px;
    border-radius: 17px;
  }

  .right-icon {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    font-size: 1.16rem;
  }

  .right-item p {
    padding-right: 20px;
    font-size: .91rem;
  }

  .right-number {
    top: 12px;
    right: 14px;
    font-size: .95rem;
  }
}



/* ==========================================================
   TEAM / KONTAKTY – DTC + DELFÍNEK
   ========================================================== */

.team-page { background:#fff; }

.team-hero {
  position:relative;
  min-height:280px;
  
  height: clamp(260px, 28vw, 420px);
  overflow:hidden;
  isolation:isolate;
}
.team-hero-image {
  position:absolute; z-index:-3; inset:0;
  width:100%; height:100%; object-fit:cover; object-position:center;
}
.team-hero-overlay {
  position:absolute; z-index:-2; inset:0;
}
.team-hero-dtc .team-hero-overlay {
  background:linear-gradient(90deg,rgba(57,30,45,.60),rgba(57,30,45,.23) 45%,rgba(57,30,45,.04) 75%);
}
.team-hero-delfinek .team-hero-overlay {
  background:linear-gradient(90deg,rgba(8,35,54,.62),rgba(8,35,54,.22) 45%,rgba(8,35,54,.04) 75%);
}
.team-hero::after {
  content:"";
  position:absolute; z-index:1;
  left:50%; bottom:-15px;
  width:112%; height:54px;
  transform:translateX(-50%);
  background:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 60' preserveAspectRatio='none'><path d='M0,30 C240,60 480,0 720,30 C960,60 1200,0 1440,30 L1440,60 L0,60 Z' fill='%23ffffff'/></svg>") no-repeat;
  background-size:100% 100%;
}
.team-hero-inner { position:relative; height:100%; }
.team-hero-copy {
  position:absolute;
  left:var(--page-x); bottom:34px;
  width:min(680px,72vw);
  color:#fff;
}
.team-kicker {
  display:block; margin:0 0 10px;
  font-size:.74rem; font-weight:850; letter-spacing:.13em; text-transform:uppercase;
  color:rgba(255,255,255,.78);
}
.team-hero h1 {
  margin:0 0 15px;
  font-size:clamp(3.1rem,5vw,5.4rem);
  line-height:.98; letter-spacing:-.045em; font-weight:790; color:#fff;
}
.team-hero-copy > p {
  max-width:560px; margin:0;
  font-size:1rem; line-height:1.6; color:rgba(255,255,255,.9);
}

.team-content {
  padding:clamp(70px,7vw,105px) 0 clamp(80px,8vw,120px);
}
.team-shell { max-width:1480px; margin:0 auto; }

.team-section-head {
  text-align:center;
  max-width:900px;
  margin:0 auto 30px;
}
.team-section-head > span {
  display:block; margin-bottom:7px;
  font-size:.72rem; font-weight:850; letter-spacing:.13em; text-transform:uppercase;
}
.team-page-dtc .team-section-head > span,
.team-page-dtc .team-section-head h2 { color:var(--dtc-pink-dark); }
.team-page-delfinek .team-section-head > span,
.team-page-delfinek .team-section-head h2 { color:var(--delfin-blue-dark); }

.team-section-head h2 {
  margin:0;
  font-size:clamp(1.8rem,2.7vw,3rem);
  line-height:1.12; letter-spacing:-.03em; font-weight:780;
}

.team-leader-wrap {
  display:flex; justify-content:center;
  margin-bottom:clamp(64px,7vw,96px);
}
.team-leader-card {
  display:grid;
  grid-template-columns:190px minmax(0,1fr);
  gap:34px; align-items:center;
  width:min(780px,100%);
  padding:28px 34px;
  border:1px solid #e9edf1;
  border-radius:24px;
  background:#fff;
  box-shadow:0 16px 44px rgba(35,43,63,.08);
}
.team-photo {
  width:154px; height:154px;
  margin:0 auto 22px;
  overflow:hidden;
  border-radius:50%;
  background:#f3f4f5;
  box-shadow:0 12px 28px rgba(33,42,62,.10);
}
.team-photo-lg {
  width:170px; height:170px; margin:0;
}
.team-photo img {
  width:100%; height:100%; object-fit:cover;
}
.team-person-copy h3,
.team-card h3 {
  margin:0 0 8px;
  color:var(--text);
  font-size:1.04rem; line-height:1.3; font-weight:800;
}
.team-leader-card h3 { font-size:1.35rem; }
.team-role {
  margin:0 0 18px;
  min-height:48px;
  color:var(--text-soft);
  font-size:.86rem; line-height:1.48;
}
.team-leader-card .team-role { min-height:0; font-size:.92rem; }
.team-links {
  display:grid; gap:7px;
}
.team-links a {
  display:inline-flex; align-items:center; gap:8px;
  color:#596370;
  font-size:.82rem;
  text-decoration:none;
  overflow-wrap:anywhere;
}
.team-page-dtc .team-links i { color:var(--dtc-pink-dark); }
.team-page-delfinek .team-links i { color:var(--delfin-blue-dark); }
.team-links a:hover { color:var(--text); }

.team-section-head-grid {
  position:relative;
  margin-bottom:34px;
}
.team-section-head-grid::before,
.team-section-head-grid::after {
  content:"";
  position:absolute; top:50%;
  width:120px; height:1px; background:var(--line);
}
.team-section-head-grid::before { right:calc(100% + 28px); }
.team-section-head-grid::after { left:calc(100% + 28px); }

.team-grid {
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:18px;
}
.team-card {
  height:100%;
  padding:28px 22px 26px;
  text-align:center;
  border:1px solid #e8edf1;
  border-radius:20px;
  background:#fff;
  box-shadow:0 10px 30px rgba(35,43,63,.055);
}
.team-page-dtc .team-card {
  background:linear-gradient(180deg,#fff 0%,#fff 72%,#fff9fc 100%);
}
.team-page-delfinek .team-card {
  background:linear-gradient(180deg,#fff 0%,#fff 72%,#f8fcff 100%);
}
.team-card .team-role { min-height:60px; }
.team-card .team-links { justify-items:center; }

.team-photo-placeholder {
  display:grid; place-items:center;
  width:100%; height:100%;
  color:#b7c0c9;
  background:linear-gradient(145deg,#f5f7f8,#eceff2);
  font-size:2.4rem;
}

@media(max-width:1199.98px){
  .team-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
}
@media(max-width:767.98px){
  .team-hero{min-height:380px;height:58svh}
  .team-hero::after{bottom:-15px;height:34px}
  .team-hero-copy{left:var(--page-x);right:var(--page-x);bottom:58px;width:auto}
  .team-leader-card{grid-template-columns:1fr;text-align:center;padding:26px 20px}
  .team-photo-lg{margin:0 auto}
  .team-leader-card .team-links{justify-items:center}
  .team-section-head-grid::before,.team-section-head-grid::after{display:none}
  .team-grid{grid-template-columns:1fr}
  .team-card .team-role{min-height:0}
}



/* ==========================================================
   HLAVNÍ KONTAKT – DTC + DELFÍNEK
   ========================================================== */

.contact-page { background:#fff; }

.contact-hero {
  position:relative;
  min-height:280px;
  
      height: clamp(260px, 28vw, 420px);
    
  overflow:hidden;
  isolation:isolate;
}
.contact-hero-image {
  position:absolute; z-index:-3; inset:0;
  width:100%; height:100%; object-fit:cover; object-position:center;
}
.contact-hero-overlay {
  position:absolute; z-index:-2; inset:0;
  background:
    linear-gradient(90deg,rgba(49,30,40,.58),rgba(28,44,52,.26) 48%,rgba(28,44,52,.04) 78%),
    linear-gradient(0deg,rgba(18,24,27,.14),transparent 55%);
}
.contact-hero::after {
  content:"";
  position:absolute; z-index:1;
  left:50%; bottom:-15px;
  width:112%; height:54px;
  transform:translateX(-50%);
  background:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 60' preserveAspectRatio='none'><path d='M0,30 C240,60 480,0 720,30 C960,60 1200,0 1440,30 L1440,60 L0,60 Z' fill='%23ffffff'/></svg>") no-repeat;
  background-size:100% 100%;
}
.contact-hero-inner { position:relative; height:100%; }
.contact-hero-copy {
  position:absolute;
  left:var(--page-x); bottom:34px;
  width:min(700px,72vw);
  color:#fff;
}
.contact-kicker {
  display:block;
  margin:0 0 10px;
  color:rgba(255,255,255,.78);
  font-size:.74rem;
  font-weight:850;
  letter-spacing:.13em;
  text-transform:uppercase;
}
.contact-hero h1 {
  margin:0 0 15px;
  color:#fff;
  font-size:clamp(3.1rem,5vw,5.4rem);
  line-height:.98;
  letter-spacing:-.045em;
  font-weight:790;
}
.contact-hero-copy > p {
  max-width:580px;
  margin:0;
  color:rgba(255,255,255,.91);
  font-size:1rem;
  line-height:1.6;
}

.contact-main {
  padding:clamp(70px,7vw,108px) 0 clamp(80px,8vw,120px);
  background:
    radial-gradient(circle at 7% 10%,rgba(215,106,164,.045),transparent 20%),
    radial-gradient(circle at 93% 14%,rgba(39,169,225,.045),transparent 20%),
    #fff;
}
.contact-shell { max-width:1480px; margin:0 auto; }

.contact-org-grid {
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:22px;
  margin-bottom:28px;
}
.contact-org-card {
  padding:30px;
  border:1px solid #e7ebef;
  border-radius:24px;
  box-shadow:0 14px 36px rgba(35,43,63,.06);
}
.contact-org-dtc {
  background:linear-gradient(145deg,#fff 0%,#fff7fb 100%);
  border-color:#f2dfe9;
}
.contact-org-delfinek {
  background:linear-gradient(145deg,#fff 0%,#f4fbff 100%);
  border-color:#dceef7;
}
.contact-org-head {
  display:grid;
  grid-template-columns:82px minmax(0,1fr);
  gap:18px;
  align-items:center;
  margin-bottom:25px;
}
.contact-org-logo {
  width:76px; height:76px;
  padding:8px;
  overflow:hidden;
  border-radius:18px;
  background:#fff;
  box-shadow:0 10px 25px rgba(35,43,63,.08);
}
.contact-org-logo img { width:100%; height:100%; object-fit:contain; }
.contact-org-head > div:last-child > span {
  display:block;
  margin-bottom:4px;
  font-size:.7rem;
  font-weight:850;
  letter-spacing:.11em;
  text-transform:uppercase;
}
.contact-org-dtc .contact-org-head > div:last-child > span,
.contact-org-dtc .contact-org-head h2 { color:var(--dtc-pink-dark); }
.contact-org-delfinek .contact-org-head > div:last-child > span,
.contact-org-delfinek .contact-org-head h2 { color:var(--delfin-blue-dark); }
.contact-org-head h2 {
  margin:0 0 4px;
  font-size:clamp(1.2rem,1.7vw,1.6rem);
  line-height:1.25;
  letter-spacing:-.02em;
  font-weight:800;
}
.contact-org-head p {
  margin:0;
  color:var(--text-soft);
  font-size:.84rem;
}
.contact-org-lines {
  display:grid;
  gap:10px;
  margin:0 0 22px;
}
.contact-org-lines a,
.contact-leader-mini a {
  display:flex;
  align-items:center;
  gap:10px;
  color:#596370;
  font-size:.9rem;
  text-decoration:none;
}
.contact-org-dtc .contact-org-lines i,
.contact-org-dtc .contact-leader-mini i { color:var(--dtc-pink-dark); }
.contact-org-delfinek .contact-org-lines i,
.contact-org-delfinek .contact-leader-mini i { color:var(--delfin-blue-dark); }

.contact-leader-mini {
  display:grid;
  gap:7px;
  margin:20px 0 23px;
  padding:18px 20px;
  border-radius:15px;
  background:rgba(255,255,255,.66);
}
.contact-leader-mini strong {
  color:var(--text);
  font-size:.82rem;
}
.contact-leader-mini > span {
  color:#4f5964;
  font-size:.9rem;
  font-weight:750;
}

.contact-org-actions {
  display:flex;
  flex-wrap:wrap;
  gap:9px;
}
.contact-action {
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:10px 14px;
  border:1px solid currentColor;
  border-radius:10px;
  background:rgba(255,255,255,.72);
  font-size:.78rem;
  font-weight:800;
  text-decoration:none;
}
.contact-org-dtc .contact-action { color:var(--dtc-pink-dark); }
.contact-org-delfinek .contact-action { color:var(--delfin-blue-dark); }

.contact-work-grid {
  display:grid;
  grid-template-columns:minmax(0,.85fr) minmax(0,1.15fr);
  gap:22px;
  margin-top:22px;
}
.contact-map-card,
.contact-form-card,
.official-details {
  border:1px solid #e8ecef;
  border-radius:24px;
  background:#fff;
  box-shadow:0 12px 34px rgba(35,43,63,.055);
}
.contact-map-card,
.contact-form-card { padding:28px; }

.contact-block-head {
  display:flex;
  align-items:center;
  gap:14px;
  margin-bottom:20px;
}
.contact-block-icon {
  display:grid;
  place-items:center;
  width:48px; height:48px;
  flex:0 0 auto;
  color:#4b8b36;
  background:#f0f8e9;
  border-radius:14px;
  font-size:1.25rem;
}
.contact-block-kicker {
  display:block;
  margin-bottom:3px;
  color:#7c8690;
  font-size:.68rem;
  font-weight:850;
  letter-spacing:.11em;
  text-transform:uppercase;
}
.contact-block-head h2,
.official-details-head h2 {
  margin:0;
  color:var(--text);
  font-size:1.25rem;
  font-weight:800;
}

.contact-map {
  overflow:hidden;
  height:330px;
  border-radius:17px;
  background:#edf1f3;
}
.contact-map iframe {
  width:100%; height:100%; border:0;
}
.contact-map-link {
  display:inline-flex;
  align-items:center;
  gap:8px;
  margin-top:16px;
  color:#4f7739;
  font-size:.82rem;
  font-weight:750;
  text-decoration:none;
}

.contact-form label {
  display:block;
  margin-bottom:6px;
  color:#626b75;
  font-size:.72rem;
  font-weight:750;
}
.contact-form input,
.contact-form textarea {
  width:100%;
  padding:12px 13px;
  color:var(--text);
  background:#fbfcfd;
  border:1px solid #dfe4e8;
  border-radius:10px;
  outline:none;
  transition:.18s;
}
.contact-form input:focus,
.contact-form textarea:focus {
  border-color:#c477a1;
  box-shadow:0 0 0 3px rgba(215,106,164,.09);
}
.contact-form textarea { resize:vertical; min-height:150px; }
.contact-form-bottom {
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  margin-top:18px;
}
.contact-form-bottom p {
  max-width:520px;
  margin:0;
  color:#8a9198;
  font-size:.7rem;
  line-height:1.45;
}
.contact-form-bottom p a { color:#68727c; }
.contact-form-bottom button {
  display:inline-flex;
  align-items:center;
  gap:9px;
  padding:12px 18px;
  color:#fff;
  background:linear-gradient(135deg,var(--dtc-pink),var(--dtc-pink-dark));
  border:0;
  border-radius:10px;
  font-size:.79rem;
  font-weight:800;
  white-space:nowrap;
}

.official-details {
  margin-top:22px;
  padding:29px;
}
.official-details-head {
  margin-bottom:22px;
}
.official-grid {
  display:grid;
  grid-template-columns:repeat(5,minmax(0,1fr));
  gap:0;
}
.official-item {
  display:grid;
  grid-template-columns:40px minmax(0,1fr);
  gap:12px;
  padding:4px 20px;
  border-right:1px solid var(--line);
}
.official-item:first-child { padding-left:0; }
.official-item:last-child { padding-right:0; border-right:0; }
.official-icon {
  display:grid;
  place-items:center;
  width:36px; height:36px;
  color:var(--dtc-pink-dark);
  background:#fff2f8;
  border-radius:11px;
}
.official-item strong {
  display:block;
  margin-bottom:5px;
  color:var(--text);
  font-size:.76rem;
}
.official-item p {
  margin:0;
  color:#626b75;
  font-size:.72rem;
  line-height:1.55;
}
.official-item a { color:var(--delfin-blue-dark); }

@media(max-width:1199.98px){
  .official-grid{grid-template-columns:repeat(2,minmax(0,1fr));gap:22px}
  .official-item{padding:0;border-right:0}
}
@media(max-width:991.98px){
  .contact-org-grid,.contact-work-grid{grid-template-columns:1fr}
}
@media(max-width:767.98px){
  .contact-hero{min-height:380px;height:58svh}
  .contact-hero::after{bottom:-15px;height:34px}
  .contact-hero-copy{left:var(--page-x);right:var(--page-x);bottom:58px;width:auto}
  .contact-org-card,.contact-map-card,.contact-form-card,.official-details{padding:22px 18px;border-radius:19px}
  .contact-org-head{grid-template-columns:66px minmax(0,1fr);gap:14px}
  .contact-org-logo{width:62px;height:62px;border-radius:15px}
  .contact-form-bottom{align-items:flex-start;flex-direction:column}
  .official-grid{grid-template-columns:1fr}
}



/* ==========================================================
   FOTOGALERIE – ROZCESTNÍK ALB + DETAIL ALBA
   ========================================================== */

.gallery-page { background:#fff; }

.gallery-hero,
.album-hero {
  position:relative;
  min-height:280px;
  
        height: clamp(260px, 28vw, 420px);
  overflow:hidden;
  isolation:isolate;
}
.gallery-hero-image,
.album-hero-image {
  position:absolute; z-index:-3; inset:0;
  width:100%; height:100%;
  object-fit:cover; object-position:center;
}
.gallery-hero-overlay {
  position:absolute; z-index:-2; inset:0;
  background:linear-gradient(90deg,rgba(60,37,49,.55),rgba(60,37,49,.22) 45%,rgba(60,37,49,.03) 78%);
}
.album-hero-overlay {
  position:absolute; z-index:-2; inset:0;
  background:linear-gradient(90deg,rgba(16,25,22,.62),rgba(16,25,22,.20) 48%,rgba(16,25,22,.04) 78%);
}
.gallery-hero::after,
.album-hero::after {
  content:"";
  position:absolute; z-index:1;
  left:50%; bottom:-15px;
  width:112%; height:54px;
  transform:translateX(-50%);
  background:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 60' preserveAspectRatio='none'><path d='M0,30 C240,60 480,0 720,30 C960,60 1200,0 1440,30 L1440,60 L0,60 Z' fill='%23ffffff'/></svg>") no-repeat;
  background-size:100% 100%;
}
.gallery-hero-inner,
.album-hero-inner { position:relative; height:100%; }

.gallery-hero-copy,
.album-hero-copy {
  position:absolute;
  left:var(--page-x); bottom:32px;
  width:min(740px,74vw);
      bottom: clamp(28px, 5vw, 75px);
  color:#fff;
}
.gallery-kicker {
  display:block;
  margin-bottom:9px;
  color:rgba(255,255,255,.78);
  font-size:.72rem;
  font-weight:850;
  letter-spacing:.12em;
  text-transform:uppercase;
}
.gallery-hero h1,
.album-hero h1 {
  margin:0 0 14px;
  color:#fff;
  font-size:clamp(3.1rem,5vw,5.3rem);
  line-height:.98;
  letter-spacing:-.045em;
  font-weight:790;
}
.gallery-hero-copy > p {
  max-width:600px;
  margin:0;
  color:rgba(255,255,255,.9);
  font-size:1rem;
  line-height:1.6;
}
.album-hero-meta {
  display:flex;
  flex-wrap:wrap;
  gap:18px;
  color:rgba(255,255,255,.9);
  font-size:.85rem;
  font-weight:650;
}
.album-hero-meta span {
  display:inline-flex;
  align-items:center;
  gap:8px;
}

.gallery-index,
.album-gallery-section {
  padding:clamp(68px,7vw,108px) 0 clamp(80px,8vw,120px);
}
.gallery-shell { max-width:1480px; margin:0 auto; }

.gallery-album-grid {
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:22px;
}
.album-card {
  overflow:hidden;
  border:1px solid #e8ecef;
  border-radius:20px;
  background:#fff;
  box-shadow:0 10px 30px rgba(35,43,63,.055);
  transition:.2s ease;
}
.album-card:hover {
  transform:translateY(-3px);
  box-shadow:0 18px 40px rgba(35,43,63,.09);
}
.album-card-cover {
  display:block;
  overflow:hidden;
  aspect-ratio:16/10;
  background:#eef1f3;
}
.album-card-cover img {
  width:100%; height:100%;
  object-fit:cover;
  transition:transform .3s ease;
}
.album-card:hover .album-card-cover img { transform:scale(1.035); }

.album-card-body {
  position:relative;
  padding:19px 58px 20px 20px;
}
.album-card h2 {
  margin:0 0 11px;
  font-size:1.05rem;
  line-height:1.3;
  font-weight:800;
}
.album-card h2 a {
  color:var(--dtc-pink-dark);
  text-decoration:none;
}
.album-meta {
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  color:#7a838c;
  font-size:.72rem;
}
.album-meta span {
  display:inline-flex;
  align-items:center;
  gap:6px;
}
.album-open {
  position:absolute;
  right:18px; bottom:18px;
  display:grid; place-items:center;
  width:34px; height:34px;
  color:var(--dtc-pink-dark);
  border:1px solid #e3a7c6;
  border-radius:50%;
  text-decoration:none;
  transition:.18s ease;
}
.album-open:hover {
  color:#fff;
  background:var(--dtc-pink-dark);
}

.gallery-more {
  display:flex;
  justify-content:center;
  margin-top:36px;
}
.gallery-more button {
  display:inline-flex;
  align-items:center;
  gap:9px;
  padding:12px 20px;
  color:var(--dtc-pink-dark);
  background:#fff;
  border:1px solid #e0a2c2;
  border-radius:10px;
  font-size:.78rem;
  font-weight:800;
}

.album-toolbar {
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:18px;
  margin-bottom:24px;
}
.album-toolbar a {
  display:inline-flex;
  align-items:center;
  gap:8px;
  color:var(--dtc-pink-dark);
  font-size:.8rem;
  font-weight:800;
  text-decoration:none;
}
.album-toolbar > span {
  color:#8b939a;
  font-size:.75rem;
}

.photo-grid {
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:14px;
}
.photo-item {
  display:block;
  overflow:hidden;
  aspect-ratio:4/3;
  border-radius:15px;
  background:#eef1f3;
}
.photo-item img {
  width:100%; height:100%;
  object-fit:cover;
  transition:transform .25s ease, filter .25s ease;
}
.photo-item:hover img {
  transform:scale(1.035);
  filter:brightness(.94);
}

/* lightbox */
.gallery-lightbox {
  position:fixed;
  z-index:99999;
  inset:0;
  display:none;
  align-items:center;
  justify-content:center;
  padding:30px;
  background:rgba(10,14,18,.92);
}
.gallery-lightbox.is-open { display:flex; }
.gallery-lightbox img {
  max-width:min(92vw,1600px);
  max-height:88vh;
  object-fit:contain;
  box-shadow:0 20px 70px rgba(0,0,0,.4);
}
.gallery-lightbox button {
  position:absolute;
  display:grid;
  place-items:center;
  width:48px; height:48px;
  color:#fff;
  background:rgba(255,255,255,.10);
  border:1px solid rgba(255,255,255,.18);
  border-radius:50%;
  font-size:1.25rem;
}
.lightbox-close { top:22px; right:22px; }
.lightbox-prev { left:22px; top:50%; transform:translateY(-50%); }
.lightbox-next { right:22px; top:50%; transform:translateY(-50%); }

@media(max-width:1199.98px){
  .gallery-album-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
  .photo-grid{grid-template-columns:repeat(3,minmax(0,1fr))}
}
@media(max-width:767.98px){
  .gallery-hero,.album-hero{min-height:370px;height:56svh}
  .gallery-hero::after,.album-hero::after{bottom:-15px;height:34px}
  .gallery-hero-copy,.album-hero-copy{left:var(--page-x);right:var(--page-x);bottom:58px;width:auto}
  .gallery-album-grid{grid-template-columns:1fr}
  .photo-grid{grid-template-columns:repeat(2,minmax(0,1fr));gap:10px}
  .album-toolbar{align-items:flex-start;flex-direction:column}
  .gallery-lightbox{padding:18px}
  .gallery-lightbox button{width:42px;height:42px}
  .lightbox-prev{left:10px}.lightbox-next{right:10px}.lightbox-close{top:10px;right:10px}
}
@media(max-width:479.98px){
  .photo-grid{grid-template-columns:1fr}
}


/* ==========================================================
   PĚSTOUNSKÁ PÉČE – PĚSTUJ BUDOUCNOST
   ========================================================== */

.foster-page{background:#fff}
.foster-hero{position:relative;min-height:280px;height:clamp(280px,28vw,360px);

    height: clamp(260px, 28vw, 420px);
    

overflow:hidden;isolation:isolate}
.foster-hero-image{position:absolute;z-index:-3;inset:0;width:100%;height:100%;object-fit:cover;object-position:center}
.foster-hero-overlay{position:absolute;z-index:-2;inset:0;background:linear-gradient(90deg,rgba(21,55,40,.63),rgba(21,55,40,.25) 46%,rgba(21,55,40,.05) 78%),linear-gradient(0deg,rgba(16,38,28,.16),transparent 55%)}
.foster-hero::after{content:"";position:absolute;z-index:1;left:50%;bottom:-15px;width:112%;height:54px;transform:translateX(-50%);background:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 60' preserveAspectRatio='none'><path d='M0,30 C240,60 480,0 720,30 C960,60 1200,0 1440,30 L1440,60 L0,60 Z' fill='%23ffffff'/></svg>") no-repeat;background-size:100% 100%}
.foster-hero-inner{position:relative;height:100%}
.foster-hero-copy{position:absolute;left:var(--page-x);bottom:34px;width:min(720px,72vw);color:#fff}
.foster-kicker{display:block;margin-bottom:10px;color:rgba(255,255,255,.78);font-size:.74rem;font-weight:850;letter-spacing:.13em;text-transform:uppercase}
.foster-hero h1{margin:0 0 15px;color:#fff;font-size:clamp(3.1rem,5vw,5.4rem);line-height:.98;letter-spacing:-.045em;font-weight:790}
.foster-hero-copy>p{max-width:600px;margin:0;color:rgba(255,255,255,.92);font-size:1rem;line-height:1.6}

.foster-content{padding:clamp(72px,7vw,110px) 0 clamp(80px,8vw,120px);background:radial-gradient(circle at 8% 9%,rgba(144,190,104,.07),transparent 20%),#fff}
.foster-shell{max-width:1450px;margin:0 auto}
.foster-intro{margin-bottom:clamp(52px,6vw,86px)}
.foster-section-label{display:inline-flex;align-items:center;gap:10px;margin-bottom:15px;color:#4f7f38;font-size:.72rem;font-weight:850;letter-spacing:.12em;text-transform:uppercase}
.foster-icon{display:grid;place-items:center;width:42px;height:42px;color:#5b963a;background:#eff8e8;border-radius:50%;font-size:1rem}
.foster-intro h2,.foster-steps h2,.foster-support h2,.foster-download h2{margin:0 0 18px;color:var(--text);font-size:clamp(2rem,3vw,3.5rem);line-height:1.08;letter-spacing:-.035em;font-weight:790}
.foster-intro p{max-width:760px;margin:0 0 16px;color:#555e67;font-size:.98rem;line-height:1.72}
.foster-intro a{color:#2ba8e0;font-weight:700}
.foster-poster-card{margin:0;overflow:hidden;border-radius:24px;background:#f2f6e2;box-shadow:0 18px 46px rgba(33,50,37,.09)}
.foster-poster-card img{display:block;width:100%;height:auto}

.foster-info-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:20px;margin-bottom:clamp(58px,6vw,90px)}
.foster-info-card{padding:30px;border:1px solid #e0ead8;border-radius:22px;background:radial-gradient(circle at 100% 0%,rgba(144,190,104,.08),transparent 32%),#fff;box-shadow:0 10px 30px rgba(35,43,63,.045)}
.foster-card-icon{display:grid;place-items:center;width:52px;height:52px;margin-bottom:18px;color:#5f983e;background:#eff8e8;border-radius:16px;font-size:1.35rem}
.foster-info-card h3{margin:0 0 13px;color:var(--text);font-size:1.15rem;font-weight:800}
.foster-info-card p,.foster-list{margin:0;color:#5a626b;font-size:.93rem;line-height:1.65}
.foster-list{padding-left:19px}.foster-list li+li{margin-top:9px}

.foster-steps{padding:clamp(32px,4vw,50px) 0;border-top:1px solid var(--line);border-bottom:1px solid var(--line)}
.foster-steps-head{max-width:760px;margin-bottom:30px}
.foster-step-list{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:16px;margin:0;padding:0;list-style:none}
.foster-step-list li{position:relative;min-height:190px;padding:54px 22px 24px;border:1px solid #e5ebdf;border-radius:19px;background:#fff}
.foster-step-number{position:absolute;top:18px;left:20px;color:#a9c89a;font-size:1.05rem;font-weight:850;letter-spacing:.05em}
.foster-step-list strong{display:block;margin-bottom:9px;color:var(--text);font-size:.95rem;line-height:1.4}
.foster-step-list p{margin:0;color:#656d75;font-size:.84rem;line-height:1.55}

.foster-support{display:grid;grid-template-columns:72px minmax(0,1fr);gap:22px;align-items:start;margin:clamp(55px,6vw,84px) 0;padding:30px 34px;border:1px solid #dcebd3;border-radius:22px;background:linear-gradient(135deg,#f5faef,#eef8e7)}
.foster-support-icon{display:grid;place-items:center;width:62px;height:62px;color:#5e963e;background:#fff;border-radius:18px;font-size:1.45rem}
.foster-support-kicker{display:block;margin-bottom:4px;color:#5e963e;font-size:.7rem;font-weight:850;letter-spacing:.11em;text-transform:uppercase}
.foster-support h2{margin-bottom:10px;font-size:clamp(1.8rem,2.6vw,2.8rem)}
.foster-support p{margin:0;color:#5a626b;font-size:.95rem;line-height:1.7}

.foster-download{display:flex;align-items:center;justify-content:space-between;gap:32px;padding:28px 30px;border:1px solid #e8ecef;border-radius:22px;background:#fff;box-shadow:0 10px 30px rgba(35,43,63,.045)}
.foster-download h2{margin-bottom:6px;font-size:1.45rem}
.foster-download p{margin:0;color:#6c747c;font-size:.86rem}
.foster-download-btn{display:inline-flex;align-items:center;gap:10px;padding:13px 18px;color:#fff;background:#4f8b36;border-radius:11px;font-size:.8rem;font-weight:800;text-decoration:none;white-space:nowrap}

@media(max-width:1199.98px){.foster-step-list{grid-template-columns:repeat(2,minmax(0,1fr))}}
@media(max-width:991.98px){.foster-info-grid{grid-template-columns:1fr}}
@media(max-width:767.98px){
  .foster-hero{min-height:390px;height:58svh}
  .foster-hero::after{bottom:-15px;height:34px}
  .foster-hero-copy{left:var(--page-x);right:var(--page-x);bottom:58px;width:auto}
  .foster-step-list{grid-template-columns:1fr}
  .foster-step-list li{min-height:0}
  .foster-support{grid-template-columns:1fr;padding:24px 20px}
  .foster-download{align-items:flex-start;flex-direction:column;padding:24px 20px}
}

/* ==========================================================
   FOOTER V2 – integrovaný kontaktní pás + růžová patička
   ========================================================== */
.site-footer{position:relative;overflow:hidden;padding:0;background:#fff}
.footer-contact-band{position:relative;z-index:3;margin-top:54px;padding:92px 0 96px;
background: #EDF6E3;
}





.footer-contact-band::before{content:"";position:absolute;z-index:1;left:50%;top:-1px;width:112%;height:72px;transform:translateX(-50%);background:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 82' preserveAspectRatio='none'><path d='M0,0 H1440 V26 C1210,4 1080,50 846,28 C580,4 420,64 0,28 Z' fill='%23ffffff'/></svg>") no-repeat;background-size:100% 100%;pointer-events:none}
.footer-contact-band::after{content:"";position:absolute;z-index:1;left:50%;bottom:-1px;width:112%;height:76px;transform:translateX(-50%);background:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 86' preserveAspectRatio='none'><path d='M0,55 C210,94 365,22 606,57 C880,96 1085,20 1440,52 L1440,86 L0,86 Z' fill='%23B82F7A'/></svg>") no-repeat;background-size:100% 100%;pointer-events:none}
.footer-contact-inner{position:relative;z-index:2}
.footer-contact-grid{display:grid;grid-template-columns:minmax(190px,1.05fr) minmax(190px,1fr) minmax(200px,1fr) minmax(165px,.82fr) minmax(210px,.9fr);align-items:center;max-width:1540px;margin:0 auto}
.footer-contact-item{position:relative;display:grid;grid-template-columns:48px minmax(0,1fr);gap:15px;align-items:start;min-height:112px;padding:8px clamp(22px,2.1vw,38px)}
.footer-contact-item:not(:last-of-type)::after{content:"";position:absolute;top:8px;right:0;bottom:8px;width:1px;background:rgba(102,134,75,.18)}
.footer-contact-icon{    display: grid;
    place-items: center;
    color: var(--dtc-pink-dark);
    font-size: 2.3rem;}
.footer-contact-item strong{display:block;margin:2px 0 8px;color:var(--text);font-size:.86rem;font-weight:850}.footer-contact-item p{margin:0;color:#4e5b48;font-size:.82rem;line-height:1.55}.footer-contact-item a{color:#456d33;text-decoration-thickness:1px;text-underline-offset:3px}.footer-contact-item>div:last-child>a{display:inline-flex;margin-top:7px;font-size:.8rem;font-weight:700}.footer-contact-item a:hover{color:var(--dtc-pink-dark)}.footer-contact-item .facebook-icon{display:inline-grid!important;place-items:center;width:27px;height:27px;margin-top:1px!important;color:#fff!important;background:#2f74d0;border-radius:50%;font-size:.92rem;text-decoration:none!important}
.footer-help-mark{display:flex;justify-content:center;align-items:center;min-height:112px;padding:4px 22px 4px 34px}.footer-help-mark img{display:block;width:min(220px,100%);max-height:112px;object-fit:contain}
.footer-brand{position:relative;z-index:2;isolation:isolate;margin-top:-1px;padding:48px 0 0;color:#fff;
    background: #B82F7A;


}
.footer-wave{display:none!important}.footer-orbit{position:absolute;z-index:-1;width:310px;height:310px;border:1px solid rgba(255,255,255,.11);border-radius:50%;pointer-events:none}
.footer-orbit::before,.footer-orbit::after{content:"";position:absolute;border:1px solid rgba(255,255,255,.085);border-radius:50%}
.footer-orbit::before{inset:28px}.footer-orbit::after{inset:58px}.orbit-l{left:-195px;bottom:46px}.orbit-r{right:-178px;top:84px;width:360px;height:360px}
.footer-organisations{max-width:1500px;margin:0 auto}.footer-org{display:grid;grid-template-columns:132px minmax(0,1fr);gap:34px;min-height:300px;padding:14px clamp(34px,4vw,72px) 42px}
.footer-org-dtc{border-right:1px solid rgba(255,255,255,.19)}
.footer-org-logo img{display:block;width:136px;height:136px;padding:15px;object-fit:contain;background:rgba(255,255,255,.97);border-radius:50%;box-shadow:0 18px 42px rgba(78,23,54,.14)}
.footer-org-kicker{display:block;margin:3px 0 12px;color:rgba(255,255,255,.75);font-size:.72rem;font-weight:850;letter-spacing:.11em;text-transform:uppercase}.footer-org h2{max-width:565px;margin:0;color:#fff;font-size:clamp(1.55rem,2vw,2.15rem);line-height:1.16;letter-spacing:-.027em;font-weight:790}.footer-org h2 span{color:rgba(255,255,255,.74);font-weight:650}.footer-org-accent{width:54px;height:3px;margin:23px 0 22px;border-radius:99px;background:rgba(255,255,255,.46)}.footer-org-details{display:grid;gap:11px}.footer-org-details a,.footer-org-details>div{display:grid;grid-template-columns:24px minmax(0,1fr);gap:11px;color:rgba(255,255,255,.9);font-size:.89rem;line-height:1.5;text-decoration:none}.footer-org-details i{color:rgba(255,255,255,.62)}.footer-org-details a{transition:.18s ease}.footer-org-details a:hover{color:#fff;transform:translateX(3px)}

.footer-nav{display:flex;justify-content:center;align-items:center;flex-wrap:wrap;gap:13px;max-width:1500px;margin:0 auto;padding:24px clamp(34px,4vw,72px) 18px;border-top:1px solid rgba(255,255,255,.18)}.footer-nav a{color:rgba(255,255,255,.88);font-size:.7rem;font-weight:800;letter-spacing:.085em;text-transform:uppercase;text-decoration:none;transition:.18s ease}.footer-nav a:hover{color:#fff}.footer-nav span{width:1px;height:13px;background:rgba(255,255,255,.34)}.footer-brand-bottom{display:flex;justify-content:space-between;align-items:center;gap:26px;max-width:1500px;margin:0 auto;padding:0 clamp(34px,4vw,72px) 28px;color:rgba(255,255,255,.68);font-size:.74rem}.footer-brand-bottom a{color:rgba(255,255,255,.9);text-underline-offset:3px}
@media(max-width:1399.98px){.footer-contact-grid{grid-template-columns:repeat(4,minmax(0,1fr))}.footer-help-mark{grid-column:1/-1;min-height:auto;padding-top:28px}.footer-help-mark img{width:190px}}
@media(max-width:1199.98px){.footer-contact-band{padding-top:84px;padding-bottom:94px}.footer-contact-grid{grid-template-columns:repeat(2,minmax(0,1fr))}.footer-contact-item:nth-child(2)::after,.footer-contact-item:nth-child(4)::after{display:none}.footer-contact-item:nth-child(-n+2){border-bottom:1px solid rgba(102,134,75,.15)}.footer-brand{padding-top:72px}.footer-org{min-height:0;padding:12px 24px 40px}.footer-org-dtc{border-right:0;border-bottom:1px solid rgba(255,255,255,.16)}.footer-org-delfinek{padding-top:38px}}
@media(max-width:767.98px){.footer-contact-band{margin-top:34px;padding:74px 0 84px}.footer-contact-band::before{height:52px}.footer-contact-band::after{height:56px}.footer-contact-grid{grid-template-columns:1fr}.footer-contact-item{min-height:0;padding:18px 2px;grid-template-columns:44px minmax(0,1fr)}.footer-contact-item::after{display:none!important}.footer-contact-item:not(:last-of-type){border-bottom:1px solid rgba(102,134,75,.13)}.footer-help-mark{justify-content:flex-start;padding:26px 0 4px 58px}.footer-help-mark img{width:165px}.footer-brand{padding-top:52px}.footer-org{grid-template-columns:82px minmax(0,1fr);gap:20px;padding:8px 2px 34px}.footer-org-logo img{width:90px;height:90px;padding:8px;}.footer-org h2{font-size:1.28rem}.footer-org-kicker{font-size:.63rem}.footer-org-accent{margin:18px 0}.footer-org-details a,.footer-org-details>div{font-size:.82rem}.footer-nav{justify-content:flex-start;gap:8px 10px;padding:20px 2px 16px}.footer-nav a{font-size:.65rem}.footer-brand-bottom{align-items:flex-start;flex-direction:column;gap:5px;padding:0 2px 22px}}
@media(max-width:479.98px){.footer-org{grid-template-columns:1fr}.footer-org-logo img{width:84px;height:84px}}
/* ============================================================
   Kontaktni formular - hlasky o odeslani + info o povinnych polich
   ============================================================ */
.contact-alert {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 18px;
  border-radius: 14px;
  margin-bottom: 20px;
}
.contact-alert i { font-size: 1.4rem; flex-shrink: 0; margin-top: 2px; }
.contact-alert strong { display: block; margin-bottom: 2px; font-size: .95rem; }
.contact-alert p { margin: 0; font-size: .85rem; opacity: .85; }

.contact-alert-success { background: #eaf8ee; color: #1e7a3c; }
.contact-alert-success i { color: #2fa85a; }

.contact-alert-error { background: #fdecec; color: #a3262a; }
.contact-alert-error i { color: #e0575c; }

.contact-form-required-hint {
  font-size: .72rem;
  color: #97a0aa;
  margin: 4px 0 0;
}

/* ============================================================
   Dialog popup (Dialog::success/error/info) - modal misto flash zpravy
   ============================================================ */
.dialog-content {
  border: none;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(20,25,40,.25);
  position: relative;
}
.dialog-close { position: absolute; top: 16px; right: 16px; z-index: 2; }
.dialog-icon { font-size: 3rem; }
.dialog-icon-success { color: #2fa85a; }
.dialog-icon-error { color: #e0575c; }
.dialog-icon-info { color: var(--delfin-blue); }
.dialog-ok-btn {
  background: var(--delfin-blue);
  color: #fff;
  border-radius: var(--radius-sm);
  padding: 10px 32px;
  font-weight: 700;
  border: none;
}
.dialog-ok-btn:hover {
  background-color: var(--delfin-blue) !important;
  color: #fff !important;
  opacity: .9;
}

/* ============================================================
   Cookie lista - karta dole, 3 kategorie, styl podle brandu
   ============================================================ */
.cookie-consent {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 1050;
}

.cookie-consent-card {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  background: linear-gradient(90deg, #fdf1f6 0%, #fbeef8 40%, #f3f0fb 100%);
  border-radius: 22px;
  box-shadow: 0 20px 60px rgba(35,43,63,.22);
  padding: 28px 32px 22px;
  overflow: hidden;
}

.cookie-close {
  position: absolute;
  top: 16px;
  right: 18px;
  width: 34px;
  height: 34px;
  border: none;
  border-radius: 50%;
  background: #fff;
  color: var(--text);
  box-shadow: 0 4px 10px rgba(35,43,63,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .85rem;
}
.cookie-close:hover { background: #f3f3f3; }

.cookie-consent-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(240px, 1.3fr) repeat(3, minmax(160px, 1fr)) 130px;
  gap: 28px;
  align-items: start;
}

.cookie-intro {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.cookie-shield-icon {
  width: 52px;
  height: 52px;
  object-fit: contain;
  flex-shrink: 0;
}
.cookie-intro h3 {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text);
  margin: 0 0 6px;
}
.cookie-intro h3 i {
  color: var(--dtc-pink-dark);
  font-size: .8em;
  margin-left: 2px;
}
.cookie-intro p {
  font-size: .84rem;
  color: var(--text-soft);
  margin: 0;
  line-height: 1.45;
}

.cookie-category {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.cookie-category-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(215,106,164,.12);
  color: var(--dtc-pink-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  margin-bottom: 10px;
}
.cookie-category strong {
  font-size: .88rem;
  color: var(--text);
  margin-bottom: 4px;
}
.cookie-category p {
  font-size: .78rem;
  color: var(--text-soft);
  line-height: 1.4;
  margin: 0 0 12px;
  min-height: 46px;
}

.cookie-toggle {
  position: relative;
  display: inline-flex;
  width: 46px;
  height: 26px;
  cursor: pointer;
}
.cookie-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}
.cookie-toggle-slider {
  position: absolute;
  inset: 0;
  background: #e3e3e8;
  border-radius: 20px;
  transition: .2s;
}
.cookie-toggle-slider::before {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  left: 3px;
  top: 3px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 2px 5px rgba(0,0,0,.2);
  transition: .2s;
}
.cookie-toggle input:checked + .cookie-toggle-slider {
  background: var(--dtc-pink-dark);
}
.cookie-toggle input:checked + .cookie-toggle-slider::before {
  transform: translateX(20px);
}
.cookie-toggle-locked {
  cursor: default;
}
.cookie-toggle-locked .cookie-toggle-slider {
  opacity: .9;
}

.cookie-heart-deco {
  width: 120px;
  height: auto;
  justify-self: end;
  opacity: .9;
}

.cookie-consent-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(35,43,63,.08);
}
.cookie-consent-buttons {
  display: flex;
  gap: 12px;
}
.cookie-consent-buttons .btn-outline-brand {
  background: #fff;
}
.cookie-privacy-link {
  margin: 0;
  font-size: .8rem;
  color: var(--text-soft);
}
.cookie-privacy-link a {
  color: var(--dtc-pink-dark);
}

@media (max-width: 1100px) {
  .cookie-consent-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
  .cookie-intro { grid-column: 1 / -1; }
  .cookie-heart-deco { display: none; }
}

@media (max-width: 700px) {
  .cookie-consent { left: 10px; right: 10px; bottom: 10px; }
  .cookie-consent-card { padding: 22px 18px 18px; }
  .cookie-consent-grid { grid-template-columns: 1fr; gap: 18px; }
  .cookie-heart-deco { display: none; }
  .cookie-consent-actions { flex-direction: column; align-items: stretch; }
  .cookie-consent-buttons { justify-content: stretch; }
  .cookie-consent-buttons .btn { flex: 1; }
}

/* ============================================================
   Footer - zrizovatel (logo Plzenskeho kraje)
   ============================================================ */
.footer-zrizovatel {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  max-width: 1500px;
  margin: 0 auto;
  padding: 6px clamp(34px, 4vw, 72px) 4px;
}
.footer-zrizovatel-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 12px;
  padding: 6px 10px;
  box-shadow: 0 4px 14px rgba(0,0,0,.12);
  transition: transform .18s ease;
}
.footer-zrizovatel-badge:hover {
  transform: translateY(-2px);
}
.footer-zrizovatel-badge img {
  height: 34px;
  width: auto;
  display: block;
}
.footer-zrizovatel span {
  color: rgba(255,255,255,.75);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .03em;
}

@media (max-width: 767.98px) {
  .footer-zrizovatel {
    padding: 4px 2px 2px;
    flex-direction: column;
    gap: 8px;
  }
}

/* Vypis aktualit bez fotky - jen nazev + datum */
.news-card-text-only { padding: 24px; }
.news-card-text-only .news-body { padding: 0; }



/* team-links – zvětšeno a ztmaveno podle starého designu */
.team-links {
  gap:11px;
  margin-top:6px;
}
.team-links a {
  gap:9px;
  color:var(--text);
  font-size:.95rem;
  font-weight:500;
}
.team-links a:hover {
  color:var(--text);
  opacity:.75;
}
.team-links i {
  font-size:1.05rem;
}
.team-card .team-role {
  margin-bottom:22px;
}