/*
Theme Name: ASTIMULLO Opava
Author: Pavel Hulva
Author URI: 
Description: Pomáháme dětem rozvíjet pohyb, řeč i celkovou pohodu přirozenou cestou.
Version: 1.0
*/

@import url('https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300..900;1,300..900&display=swap');

:root{
  --ast-green:#013E3C;
  --ast-orange:#B94130;
  --ast-text:#111;
  --ast-muted:#2a2a2a;
  --ast-nav-h: 90px; /* orientační výška navbaru (kvůli hero výšce) */
}

*{ box-sizing:border-box; }

html, body{
  height: 100%;
}

body{
  margin: 0;
  font-family:"Rubik", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--ast-text);
  background: #fff;
}

/* ---------------------------
   NAVBAR
---------------------------- */
.ast-navbar{
  background:#fff;
  padding: 18px 0;
  min-height: var(--ast-nav-h);
}

.ast-logo{
  height: 70px;
  width: auto;
  display:block;
}

.ast-navlink{
  font-weight: 500;
  color:#111 !important;
  opacity:.9;
  padding: .25rem 0;
  transition: color .15s ease, opacity .15s ease;
  font-size: 1.15rem;
}

.ast-navlink:hover,
.ast-navlink:focus{
  color: var(--ast-green) !important;
  opacity: 1;
}

/* ---------------------------
   HERO
   - pravá strana full height + ke kraji
---------------------------- */
.ast-hero{
  position: relative;
  background:#fff;
  overflow:hidden;

  /* ať má hero “slušnou” výšku i na větších monitorech */
  min-height: calc(100vh - var(--ast-nav-h));
  display: flex;
  align-items: stretch;
}

/* obsah vždy nad bg */
.ast-hero .container{
  position: relative;
  z-index: 2;
}

/* typografie hero */
.ast-hero-title{
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.05;
  font-size: 3rem!important;
  margin: 0;
}

.ast-hero-text{
  max-width: 560px;
  line-height: 1.7;
  font-size: 1.15rem;
  color: var(--ast-muted);
  opacity: .9;
  padding-top: 10px;
}

/* CTA button */
.ast-btn-primary{
  background: var(--ast-green);
  color:#fff;
  border: 1px solid var(--ast-green)!important;
  padding: 14px 35px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 1rem!important;
}

.ast-btn-primary:hover{
  background: #023634;
  color:#fff;
  padding: 14px 35px;
  border: 1px solid var(--ast-green)!important;
}

/* pravý background */
.ast-hero-bg{
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background-image: url("../../files/astimullo/bg-hero.png"); /* změň cestu dle sebe */
  background-size: cover;
  background-position: right center;
  background-repeat: no-repeat;
}

/* jemné “vyčištění” směrem k textu (fade) */
.ast-hero-bg::before{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
}

/* ---------------------------
   RESPONSIVE
---------------------------- */

/* aby to sedělo výškově a gridově na desktopu */
@media (min-width: 992px){
  .ast-hero .row{
    min-height: calc(100vh - var(--ast-nav-h));
  }
}

/* tablet + mobile: vizuál pod text, bez “full right” */
@media (max-width: 991.98px){
  :root{
    --ast-nav-h: 76px; /* navbar bývá na mobilu nižší */
  }

  .ast-hero{
    min-height: auto;
    padding: 40px 0 0;
    display: block;
    text-align: center!important;
  }

  .ast-hero-title {
    text-align: center!important;
    font-size: 2.6rem!important;
  }

  .ast-hero-text{
    max-width: 100%;
    text-align: center!important;
  }

  .ast-hero-bg{
    position: relative;
    width: 100%;
    height: 360px;
    margin-top: 40px;
    background-position: right;
  }

  .ast-hero-bg::before{
    display:none;
  }
}

/* menší mobily */
@media (max-width: 420px){
  .ast-hero-bg{
    height: 300px;
  }
}

/* =========================
   SECTION: ZAMĚŘENÍ / DLAŽDICE
========================= */

.ast-focus{
  background: #fff;
}

.ast-section-title{
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  font-size: 2.5rem!important;
  margin: 0;
}

/* pravý sloupec je v designu lehce “níž” */
@media (min-width: 992px){
  .ast-focus-right{
    padding-top: 34px;
  }
}

/* TILE BASE */
.ast-tile{
  --tile-accent: rgba(1, 62, 60, .22); /* default (green glow) */
  --tile-accent-strong: rgba(1, 62, 60, .30);

  display: block;
  position: relative;
  background: #fff;
  border-radius: 12px;
  padding: 34px 34px 100px;
  text-decoration: none;
  color: inherit;
  z-index: 1!important;

  border: 1px solid rgba(17, 17, 17, 0.06);
  box-shadow:
    0 10px 24px rgba(0,0,0,0.06);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
  overflow: visible; /* aby “štít” mohl ven */
}

/* STÍN / ŠTÍT POD KARTOU */
.ast-tile::before{
  content:"";
  position:absolute;
  left: 14%;
  right: 14%;
  bottom: -34px;         /* POSUNUTÝ VÍCE DOLŮ */
  height: 90px;          /* MENŠÍ VÝŠKA */

  background: radial-gradient(
    ellipse at center,
    var(--tile-accent-strong) 0%,
    var(--tile-accent) 30%,
    rgba(0,0,0,0) 65%
  );

  filter: blur(18px);    /* měkčí, ale oddělený */
  opacity: 0;
  transform: translateY(6px);
  transition: opacity .25s ease, transform .25s ease;

  pointer-events:none;
  z-index: -1!important; 
}

/* HOVER */
.ast-tile:hover::before{
  opacity: 1;
  transform: translateY(0);
}

/* ICON (placeholder) */
.ast-tile-icon{
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  opacity: .8;
  margin-bottom: 40px;
}

/* TITLE + TEXT */
.ast-tile-title{
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  font-size: 1.7rem;
  margin: 0 0 24px;
}

.ast-tile-text{
  color: #3a3a3a;
  opacity: .9;
  line-height: 1.7;
  font-size: 1rem;
}

/* COLOR MODIFIERS */
.ast-tile--green{
  --tile-accent: rgba(1, 62, 60, .18);
  --tile-accent-strong: rgba(1, 62, 60, .28);
}

.ast-tile--orange{
  --tile-accent: rgba(185, 65, 48, .18);
  --tile-accent-strong: rgba(185, 65, 48, .30);
}

/* RESPONSIVE TUNING */
@media (max-width: 991.98px){
  .ast-tile{
    padding: 28px 24px 24px;
  }
  .ast-tile-title{
    font-size: 1.5rem;
  }
  .ast-tile::before{
    left: 6%;
    right: 6%;
    bottom: -22px;
  }
}

/* =========================
   SECTION: STORY / QUOTE
========================= */

.ast-story{
  background: var(--ast-green);
  padding: clamp(54px, 6vw, 90px) 0;
  color: #fff;
  overflow: hidden;
}

.ast-story-title{
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.18;
  font-size: 2.5rem!important;
  margin: 0;
  color: #FFF!important;
}

.ast-story-text{
  max-width: 520px;
  color: rgba(255,255,255,.88);
  line-height: 1.75;
  font-size: 1.15rem;
}

.ast-story-text p{
  margin: 0 0 18px;
}

/* oranžové “/////” */
.ast-story-divider{
  width: 180px;
  height: 10px;
  margin: 34px 0 22px;
  opacity: .95;
  background:
    repeating-linear-gradient(
      135deg,
      var(--ast-orange) 0 3px,
      transparent 3px 9px
    );
  border-radius: 2px;
}

.ast-story-sign{
  font-weight: 500;
  font-size: 1.2rem!important;
  color: rgba(255,255,255,.92);
}

/* RIGHT IMAGE BLOCK */
.ast-story-figure{
  position: relative;
  width: 100%;
  max-width: 560px;
  margin-left: auto;
  min-height: 420px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

/* barevný podkladový “blok” za osobou */
.ast-story-figure::before{
  content:"";
  position: absolute;
  inset: auto 0 10px 0;
  height: 52%;
  width: 72%;
  margin-left: auto;

  /* v designu je to jemný přechod zelená->oranžová */
  background: radial-gradient(circle at 25% 15%, rgba(1,62,60,.0) 0%, rgba(1,62,60,.0) 35%),
              linear-gradient(135deg, rgba(1,62,60,.0) 0%, rgba(185,65,48,.35) 55%, rgba(185,65,48,.45) 100%);
  border-radius: 0;
  filter: blur(0px);
  opacity: 1;
  z-index: 0;
}

/* fotka */
.ast-story-img{
  position: relative;
  z-index: 1;
  width: min(520px, 100%);
  height: auto;
  display: block;
  object-fit: contain;
  transform: translateY(6px);
}

/* RESPONSIVE */
@media (max-width: 991.98px){
  .ast-story-text{
    max-width: 100%;
  }

  .ast-section-title {
    font-size: 2.5rem!important;
  }

  .ast-story-figure{
    max-width: 520px;
    margin: 0 auto;
    min-height: 360px;
  }

  .ast-story-title {
    font-size: 2.2rem!important;
    text-align: center!important;
  }

  .ast-story-text,
  .ast-story-sign {
    text-align: center!important;
  }

  .ast-story-figure::before{
    width: 82%;
    height: 48%;
    inset: auto 0 0 0;
    margin: 0 auto;
  }

  .ast-story-img{
    width: min(460px, 100%);
    transform: translateY(0);
  }
}

/* =========================
   SECTION: TESTIMONIALS
========================= */

.ast-testimonials{
  background:#FAFAFA;
  padding-top: 150px!important;
  padding-bottom: 150px!important;
}

/* wrapper kvůli gradient bloku za kartami */
.ast-testi-wrap{
  position: relative;
  padding: 54px 0;
}

/* gradient “blok” (za kartami) */
.ast-testi-wrap::before{
  content:"";
  position:absolute;
  left: 18%;
  right: 18%;
  top: 10px;
  bottom: 10px;

  background: linear-gradient(
    90deg,
    rgba(1,62,60,.35) 0%,
    rgba(185,65,48,.35) 100%
  );

  border-radius: 0;
  filter: blur(0px);
  opacity: 1;
  z-index: 0;
}

/* jemný “soft” glow okolo bloku */
.ast-testi-wrap::after{
  content:"";
  position:absolute;
  left: 10%;
  right: 10%;
  top: 0;
  bottom: 0;

  background: linear-gradient(
    90deg,
    rgba(1,62,60,.22) 0%,
    rgba(185,65,48,.22) 100%
  );

  filter: blur(46px);
  opacity: .55;
  z-index: 0;
}

/* karty nad gradientem */
.ast-testi-card{
  position: relative;
  z-index: 1;
  background:#fff;
  border: 1px solid rgba(17,17,17,.06);
  border-radius: 0; /* na screenu jsou spíš ostré rohy */
  padding: 28px 26px;

  box-shadow: 0 16px 32px rgba(0,0,0,.10);
  min-height: 260px;

  display: flex;
  flex-direction: column;
  gap: 18px;
}

.ast-stars{
  letter-spacing: 2px;
  color: #E6A23B; /* zlatá hvězda */
  font-size: 18px;
  line-height: 1;
}

.ast-testi-quote{
  margin: 0;
  color: #1b1b1b;
  opacity: .9;
  line-height: 1.7;
  font-size: 1rem;
}

.ast-testi-person{
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 14px;
}

.ast-avatar{
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #d9d9d9;
  flex: 0 0 auto;
}

.ast-person-name{
  font-weight: 600;
  line-height: 1.1;
}

.ast-person-role{
  font-size: .95rem;
  color: rgba(17,17,17,.65);
}

/* RESPONSIVE */
@media (max-width: 991.98px){
  .ast-testi-wrap{
    padding: 34px 0;
  }

  .ast-testi-wrap::before{
    left: 10%;
    right: 10%;
  }

  .ast-testi-wrap::after{
    left: 0%;
    right: 0%;
    filter: blur(54px);
  }
}

@media (max-width: 575.98px){
  .ast-testi-card{
    border-radius: 12px; /* na mobilu to vypadá líp lehce zaoblit */
  }
}

/* =========================
   SECTION: BLOG / POSTS
========================= */

.ast-blog{
  background:#fff;
  padding-top: clamp(54px, 6vw, 90px);
  padding-bottom: clamp(54px, 6vw, 90px);
}

.ast-blog-title{
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  font-size: 2.5rem!important;
  margin-top: 40px!important;
}

.ast-blog-lead{
  color: rgba(17,17,17,.72);
  line-height: 1.75;
  font-size: 1.1rem;
  max-width: 880px;
  margin-top: 30px!important;
  margin-bottom: 20px!important;
}

/* CARD */
.ast-post{
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.ast-post-media{
  position: relative;
  display: block;
  border-radius: 6px;
  overflow: hidden;
  background: #f2f2f2;
}

.ast-post-img{
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  transform: scale(1.001);
  transition: transform .25s ease;
}

.ast-post-media:hover .ast-post-img{
  transform: scale(1.04);
}

/* Badge BLOG */
.ast-post-badge{
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(255,255,255,.95);
  color: #111;
  border-radius: 6px;
  padding: 6px 12px;
  font-weight: 700;
  letter-spacing: .08em;
  font-size: 12px;
  line-height: 1;
  text-transform: uppercase;
}

/* BODY */
.ast-post-body{
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ast-post-date{
  color: rgba(17,17,17,.55);
  font-size: .9rem;
}

.ast-post-title{
  margin: 0;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  font-size: 1.2rem;
  max-width: 420px;
  margin-bottom: 10px;
  margin-top: 10px;
}

.ast-post-title a{
  color: #111;
  text-decoration: none;
}

.ast-post-title a:hover{
  color: var(--ast-green);
}

/* Link “PŘEČÍST ČLÁNEK —>” + underline */
.ast-post-link{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;

  color: #111;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: .08em;
  font-size: 12px;

  padding-bottom: 10px;
  border-bottom: 2px solid rgba(17,17,17,.70);

  transition: transform .15s ease, border-color .15s ease, color .15s ease;
}

.ast-post-link:hover{
  color: var(--ast-green);
  border-color: var(--ast-green);
  transform: translateY(-1px);
}

/* RESPONSIVE */
@media (max-width: 991.98px){
  .ast-post-title{
    max-width: 100%;
  }
  .ast-post-img{
    height: 210px;
  }
  .ast-blog-title {
    font-size: 2.5rem!important;
    text-align: center!important;
  }
  .ast-blog-lead {
    text-align: center;
  }
  .ast-card {
    padding-top: 40px!important;
  }
}

@media (max-width: 575.98px){
  .ast-post-img{
    height: 200px;
  }
}

/* =========================
   FOOTER
========================= */

.ast-footer{
  background: var(--ast-green);
  padding: 48px 0 42px;
  color: #fff;
}

/* LOGO */
.ast-footer-brand{
  display: inline-flex;
  align-items: center;
}

.ast-footer-logo{
  height: 100px;
  width: auto;
  display: block;
}

/* RIGHT SIDE */
.ast-footer-right{
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 22px;
}

/* CONTACT PILLS */
.ast-footer-contacts{
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.ast-footer-contact{
  display: inline-flex;
  align-items: center;     /* vertikální centrování */
  justify-content: center; /* horizontální centrování obsahu */

  gap: 12px;
  min-height: 48px;        /* pevná výška = jistota centrování */
  line-height: 1;          /* klíčové – žádné posuny textu */

  padding: 0 22px;         /* vertikální padding pryč */
  border: 1.5px solid rgba(255,255,255,.55);
  border-radius: 999px;

  background: rgba(255,255,255,1);
  color: var(--ast-green);
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;

  transition: background .15s ease, border-color .15s ease, transform .15s ease;
}

.ast-footer-contact:hover{
  background: rgba(255,255,255,0.8);
  border-color: #fff;
  transform: translateY(-1px);
  color: var(--ast-green);
}

.ast-footer-icon{
  font-size: 1.1rem;
  opacity: .9;
  color: #FFF!important;
}

/* NAV */
.ast-footer-nav{
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.ast-footer-nav a{
  color: rgba(255,255,255,.9);
  text-decoration: none;
  font-weight: 400;
  transition: color .15s ease;
}

.ast-footer-nav a:hover{
  color: #fff;
}

/* RESPONSIVE */
@media (max-width: 991.98px){
  .ast-footer{
    padding: 40px 0;
    text-align: center!important;
  }

  .ast-footer-right{
    align-items: flex-start;
  }

  .ast-footer-nav{
    gap: 18px;
    text-align: center;
  }
  .ast-cta-title {
    text-align: center!important;
    font-size: 2.2rem!important;
  }
  .ast-cta-text {
    text-align: center!important;
    margin-top: 20px!important;
  }
  .ast-btn-primary,
  .ast-btn-outline {
    width: 100%!important;
    font-size: 1rem!important;
  }
  .ast-h2 {
    font-size: 2rem!important;
  }
  .ast-info-title {
    font-size: 1.2rem!important;
  }
  .ast-step-title,
  .ast-faq-q {
    font-size: 1.2rem!important;
  }
}

@media (max-width: 575.98px){
  .ast-footer-logo{
    height: 100px;
    margin-bottom: 20px!important;
  }

  .ast-footer-contact{
    font-size: 1.2rem;
    padding: 10px 16px;
    width: 100%!important;
    text-align: center!important;
    margin-bottom: 20px!important;
  }
}

/* =========================
   SUBHERO
========================= */
.ast-subhero{
  padding: clamp(46px, 6vw, 84px) 0;
  background: #fff;
}

.ast-breadcrumb{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  color: rgba(17,17,17,.55);
  font-size: .95rem;
  margin-bottom: 20px;
}

.ast-breadcrumb a{
  color: rgba(17,17,17,.70);
  text-decoration: none;
}

.ast-breadcrumb a:hover{
  color: var(--ast-green);
}

.ast-breadcrumb-current{
  color: rgba(17,17,17,.85);
  font-weight: 600;
}

.ast-subhero-title{
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.05;
  font-size: 2.5rem!important;
  margin: 30px 0 18px;
  max-width: 980px;
}

.ast-subhero-text{
  color: rgba(17,17,17,.72);
  line-height: 1.75;
  font-size: 1.05rem;
  max-width: 900px;
  margin: 0;
}

.ast-subhero-actions{
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

/* =========================
   SECTIONS
========================= */
.ast-section{
  padding: clamp(54px, 6vw, 86px) 0;
}

.ast-section-soft{
  background: rgba(1,62,60,.03);
}

.ast-h2{
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  font-size: clamp(1.5rem, 2.2vw, 2rem);
  margin: 0;
}

.ast-p{
  color: rgba(17,17,17,.72);
  line-height: 1.75;
  font-size: 1rem;
}

/* =========================
   INFO CARDS (benefits)
========================= */
.ast-info-card{
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 35px 18px;
  border: 1px solid rgba(17,17,17,.06);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 14px 28px rgba(0,0,0,.06);
}

.ast-info-icon{
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--ast-green);
  font-weight: 700;
  flex: 0 0 auto;
  box-shadow: 0 14px 22px rgba(1,62,60,.18);
}

.ast-info-title{
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 6px;
  font-size: 1.05rem;
}

.ast-info-text{
  color: rgba(17,17,17,.70);
  line-height: 1.65;
  font-size: .98rem;
}

.ast-note{
  padding: 18px 18px;
  border-radius: 14px;
  background: rgba(185,65,48,.08);
  border: 1px solid rgba(185,65,48,.14);
  color: rgba(17,17,17,.78);
}

/* =========================
   STEPS
========================= */
.ast-steps{
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.ast-step{
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: #fff;
  border: 1px solid rgba(17,17,17,.06);
  border-radius: 14px;
  padding: 30px 18px;
  box-shadow: 0 14px 28px rgba(0,0,0,.06);
}

.ast-step-num{
  width: 38px;
  height: 38px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(1,62,60,.10);
  color: var(--ast-green);
  font-weight: 700;
  flex: 0 0 auto;
}

.ast-step-title{
  margin: 0 0 6px;
  font-weight: 700;
  letter-spacing: -0.02em;
  font-size: 1.05rem;
}

.ast-step-text{
  color: rgba(17,17,17,.70);
  line-height: 1.65;
  font-size: .98rem;
}

/* FAQ mini */
.ast-faq{
  display: grid;
  gap: 12px;
}

.ast-faq-item{
  background: #fff;
  border: 1px solid rgba(17,17,17,.06);
  border-radius: 14px;
  padding: 30px 18px;
}

.ast-faq-q{
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}

.ast-faq-a{
  color: rgba(17,17,17,.70);
  line-height: 1.65;
}

/* =========================
   LIST + CALLOUT
========================= */
.ast-list{
  margin: 14px 0 0;
  padding-left: 18px;
  color: rgba(17,17,17,.72);
  line-height: 1.8;
}

.ast-list li{
  margin-bottom: 8px;
}

.ast-callout{
  border-radius: 16px;
  padding: 35px 22px;
  border: 1px solid rgba(1,62,60,.16);
  background: rgba(1,62,60,.06);
}

.ast-callout-title{
  margin: 0 0 10px;
  font-weight: 700;
  letter-spacing: -0.02em;
  font-size: 1.2rem;
}

.ast-callout-text{
  color: rgba(17,17,17,.72);
  line-height: 1.75;
}

/* mini grid stats */
.ast-mini-grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.ast-mini{
  border-radius: 14px;
  background: #fff;
  border: 1px solid rgba(17,17,17,.06);
  padding: 20px 16px;
  box-shadow: 0 14px 28px rgba(0,0,0,.05);
}

.ast-mini-k{
  color: rgba(17,17,17,.58);
  font-size: .92rem;
  margin-bottom: 6px;
}

.ast-mini-v{
  font-weight: 700;
  letter-spacing: -0.02em;
}

/* =========================
   DARK STORY SECTION (reuse)
========================= */
.ast-story{
  background: var(--ast-green);
  padding: clamp(54px, 6vw, 90px) 0;
  color: #fff;
  overflow: hidden;
}

.ast-story-title{
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.18;
  font-size: clamp(1.6rem, 2.4vw, 2.1rem);
  margin: 0;
}

.ast-story-text{
  max-width: 680px;
  color: rgba(255,255,255,.88);
  line-height: 1.75;
  font-size: 1rem;
}

.ast-story-text p{ margin: 0 0 18px; }

.ast-story-divider{
  width: 180px;
  height: 10px;
  margin: 34px 0 22px;
  background:
    repeating-linear-gradient(
      135deg,
      var(--ast-orange) 0 3px,
      transparent 3px 9px
    );
  border-radius: 2px;
}

.ast-story-sign{
  font-weight: 700;
  color: rgba(255,255,255,.92);
}

/* image block simple */
.ast-story-figure{
  position: relative;
  width: 100%;
  max-width: 520px;
  margin-left: auto;
  min-height: 360px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.ast-story-figure--simple::before{
  content:"";
  position: absolute;
  inset: auto 0 0 0;
  height: 55%;
  width: 78%;
  margin-left: auto;
  background: linear-gradient(135deg, rgba(1,62,60,0) 0%, rgba(185,65,48,.35) 60%, rgba(185,65,48,.45) 100%);
  z-index: 0;
}

.ast-story-img{
  position: relative;
  z-index: 1;
  width: min(520px, 100%);
  height: auto;
  display: block;
  object-fit: contain;
}

/* =========================
   CTA
========================= */
.ast-cta{
  padding: clamp(46px, 6vw, 70px) 0;
  background: #fff;
}

.ast-cta-title{
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  font-size: clamp(1.5rem, 2.2vw, 2rem);
  margin: 0;
}

.ast-cta-text{
  color: rgba(17,17,17,.72);
  line-height: 1.75;
}

.ast-cta-actions{
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ast-cta-pill{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1.5px solid rgba(1,62,60,.35);
  color: var(--ast-green);
  text-decoration: none;
  font-weight: 700;
  line-height: 1;
  transition: transform .15s ease, border-color .15s ease, background .15s ease;
}

.ast-cta-pill:hover{
  transform: translateY(-1px);
  border-color: rgba(1,62,60,.65);
  background: rgba(1,62,60,.06);
  color: #013E3C!important;
}

.ast-btn-outline{
  background: transparent;
  color: var(--ast-green);
  border: 1px solid rgba(1,62,60,.35);
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 700;
}

.ast-btn-outline:hover{
  background: rgba(1,62,60,.65)!important;
  border-color: rgba(1,62,60,.65);
  color: #FFF!important;
  padding: 14px 22px;
  border: 1px solid rgba(1,62,60,.35);
}

/* =========================
   ABOUT / PŘEDSTAVENÍ CENTRA – NEW ONLY
========================= */

/* jemný akcent pod subhero */
.ast-subhero--about{
  position: relative;
}

.ast-subhero--about::after{
  content:"";
  position:absolute;
  inset:auto 0 0 0;
  height: 2px;
  background: linear-gradient(90deg, rgba(1,62,60,0) 0%, rgba(185,65,48,.28) 50%, rgba(1,62,60,0) 100%);
  opacity: .9;
}

/* highlight box vpravo */
.ast-about-highlight{
  border: 1px solid rgba(17,17,17,.06);
  border-radius: 16px;
  background: #fff;
  padding: 35px 22px;
  box-shadow: 0 16px 32px rgba(0,0,0,.06);
}

.ast-about-highlight-title{
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
  font-size: 1.4rem!important;
}

/* pill grid */
.ast-about-pill-grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.ast-about-pill{
  border: 1px solid rgba(1,62,60,.16);
  background: rgba(1,62,60,.06);
  border-radius: 999px;
  padding: 10px 14px;
  font-weight: 600;
  color: rgba(17,17,17,.82);
  text-align: center;
}

/* principles */
.ast-about-principles{
  display: grid;
  gap: 12px;
}

.ast-about-principle{
  display: flex;
  gap: 14px;
  align-items: flex-start;
  border: 1px solid rgba(17,17,17,.06);
  border-radius: 16px;
  background: #fff;
  padding: 30px 18px;
  box-shadow: 0 14px 28px rgba(0,0,0,.05);
}

.ast-about-principle-num{
  width: 38px;
  height: 38px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-weight: 700;
  color: var(--ast-green);
  background: rgba(1,62,60,.10);
  flex: 0 0 auto;
}

.ast-about-principle-title{
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}

.ast-about-principle-text{
  color: rgba(17,17,17,.70);
  line-height: 1.65;
}

/* quote */
.ast-about-quote{
  position: relative;
  border-radius: 16px;
  padding: 18px 18px 18px 52px;
  border: 1px solid rgba(185,65,48,.18);
  background: rgba(185,65,48,.06);
}

.ast-about-quote-mark{
  position: absolute;
  left: 18px;
  top: 14px;
  font-weight: 700;
  font-size: 42px;
  line-height: 1;
  color: var(--ast-orange);
  opacity: .65;
}

.ast-about-quote-text{
  font-weight: 600;
  color: rgba(17,17,17,.78);
  line-height: 1.7;
}

/* team cards */
.ast-team-card{
  display: flex;
  gap: 14px;
  align-items: flex-start;
  border: 1px solid rgba(17,17,17,.06);
  border-radius: 16px;
  background: #fff;
  padding: 30px 16px;
  box-shadow: 0 14px 28px rgba(0,0,0,.05);
  height: 100%;
}

.ast-team-avatar{
  width: 64px;
  height: 64px;
  border-radius: 14px;
  overflow: hidden;
  background: #e9e9e9;
  flex: 0 0 auto;
}

.ast-team-avatar img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ast-team-name{
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.ast-team-role{
  color: rgba(17,17,17,.58);
  margin-top: 2px;
  font-weight: 600;
  font-size: .95rem;
}

.ast-team-desc{
  color: rgba(17,17,17,.70);
  margin-top: 10px;
  line-height: 1.6;
  font-size: .98rem;
}

/* gallery grid */
.ast-about-gallery{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.ast-about-photo{
  display: block;
  border-radius: 16px;
  overflow: hidden;
  background: #f2f2f2;
  border: 1px solid rgba(17,17,17,.06);
  box-shadow: 0 14px 28px rgba(0,0,0,.06);
}

.ast-about-photo img{
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  transform: scale(1.001);
  transition: transform .25s ease;
}

.ast-about-photo:hover img{
  transform: scale(1.05);
}

/* responsive tweaks */
@media (max-width: 575.98px){
  .ast-about-pill-grid{
    grid-template-columns: 1fr;
  }
  .ast-about-gallery{
    grid-template-columns: 1fr;
  }
  .ast-about-photo img{
    height: 200px;
  }
}

/* =========================
   BLOG DETAIL – NEW ONLY
========================= */

.ast-blog-hero{
  padding: clamp(40px, 5vw, 72px) 0 0;
  background: #fff;
}

.ast-blog-meta{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  color: rgba(17,17,17,.60);
  font-size: .95rem;
  margin-bottom: 14px;
}

.ast-blog-tag{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(1,62,60,.18);
  background: rgba(1,62,60,.06);
  color: rgba(1,62,60,.95);
  font-weight: 700;
  font-size: .9rem;
}

.ast-blog-dot{
  opacity: .55;
}

.ast-blog-title{
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.05;
  font-size: clamp(2rem, 3vw, 3rem);
  margin: 0 0 14px;
  max-width: 980px;
}

.ast-blog-perex{
  color: rgba(17,17,17,.72);
  line-height: 1.8;
  font-size: 1.05rem;
  max-width: 980px;
  margin: 0;
}

.ast-blog-author{
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: flex-start;
  border: 1px solid rgba(17,17,17,.06);
  background: #fff;
  border-radius: 16px;
  padding: 14px 14px;
  box-shadow: 0 14px 28px rgba(0,0,0,.05);
}

.ast-blog-author-avatar{
  width: 52px;
  height: 52px;
  border-radius: 14px;
  overflow: hidden;
  background: #e9e9e9;
  flex: 0 0 auto;
}

.ast-blog-author-avatar img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ast-blog-author-name{
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.ast-blog-author-role{
  color: rgba(17,17,17,.60);
  font-weight: 600;
  font-size: .95rem;
  margin-top: 2px;
}

.ast-blog-cover{
  margin-top: 26px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(17,17,17,.06);
  box-shadow: 0 18px 36px rgba(0,0,0,.08);
  background: #f2f2f2;
}

.ast-blog-cover img{
  width: 100%;
  height: clamp(220px, 34vw, 420px);
  object-fit: cover;
  display: block;
}

/* ARTICLE TYPO */
.ast-article h2{
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  font-size: 1.55rem;
  margin: 34px 0 14px;
}

.ast-article p{
  color: rgba(17,17,17,.72);
  line-height: 1.85;
  font-size: 1rem;
  margin-bottom: 14px;
}

.ast-article em{
  color: rgba(17,17,17,.78);
}

.ast-article strong{
  color: rgba(17,17,17,.9);
}

/* callout inside article */
.ast-article-callout{
  border-radius: 16px;
  padding: 18px 18px;
  border: 1px solid rgba(185,65,48,.18);
  background: rgba(185,65,48,.06);
  margin: 22px 0;
}

.ast-article-callout-title{
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
  color: rgba(17,17,17,.92);
}

.ast-article-callout-text{
  color: rgba(17,17,17,.74);
  line-height: 1.75;
}

.ast-article-list{
  margin: 12px 0 0;
  padding-left: 18px;
  color: rgba(17,17,17,.72);
  line-height: 1.85;
}

.ast-article-list li{
  margin-bottom: 10px;
}

/* steps inside article */
.ast-article-steps{
  display: grid;
  gap: 12px;
  margin-top: 14px;
}

.ast-article-step{
  display: flex;
  gap: 14px;
  align-items: flex-start;
  border: 1px solid rgba(17,17,17,.06);
  background: #fff;
  border-radius: 16px;
  padding: 16px 18px;
  box-shadow: 0 14px 28px rgba(0,0,0,.05);
}

.ast-article-step-num{
  width: 38px;
  height: 38px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-weight: 700;
  color: var(--ast-green);
  background: rgba(1,62,60,.10);
  flex: 0 0 auto;
}

.ast-article-step-title{
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}

.ast-article-step-text{
  color: rgba(17,17,17,.70);
  line-height: 1.65;
}

/* FAQ in article */
.ast-article-faq{
  display: grid;
  gap: 12px;
  margin-top: 10px;
}

.ast-article-faq-item{
  border: 1px solid rgba(17,17,17,.06);
  border-radius: 16px;
  background: #fff;
  padding: 16px 18px;
  box-shadow: 0 14px 28px rgba(0,0,0,.05);
}

.ast-article-faq-q{
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}

.ast-article-faq-a{
  color: rgba(17,17,17,.70);
  line-height: 1.65;
}

.ast-article-divider{
  height: 1px;
  background: rgba(17,17,17,.08);
  margin: 30px 0;
}

/* CTA inside article */
.ast-article-cta{
  margin-top: 26px;
  border-radius: 18px;
  padding: 18px 18px;
  border: 1px solid rgba(1,62,60,.16);
  background: rgba(1,62,60,.06);
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.ast-article-cta-title{
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}

.ast-article-cta-text{
  color: rgba(17,17,17,.72);
  line-height: 1.65;
}

.ast-article-cta-actions{
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ast-article-cta-pill{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1.5px solid rgba(1,62,60,.35);
  color: var(--ast-green);
  text-decoration: none;
  font-weight: 700;
  line-height: 1;
  transition: transform .15s ease, border-color .15s ease, background .15s ease;
}

.ast-article-cta-pill:hover{
  transform: translateY(-1px);
  border-color: rgba(1,62,60,.65);
  background: rgba(1,62,60,.06);
  color: var(--ast-green);
}

/* SIDEBAR */
.ast-blog-sidebar{
  position: sticky;
  top: 18px;
  display: grid;
  gap: 14px;
}

.ast-sidebar-card{
  border: 1px solid rgba(17,17,17,.06);
  border-radius: 18px;
  background: #fff;
  padding: 30px 18px;
  box-shadow: 0 16px 32px rgba(0,0,0,.06);
}

.ast-sidebar-title{
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
  font-size: 1.5rem!important;
}

.ast-sidebar-link{
  display: block;
  padding: 10px 12px;
  border-radius: 12px;
  text-decoration: none;
  color: rgba(17,17,17,.75);
  border: 1px solid transparent;
  transition: background .15s ease, border-color .15s ease, transform .15s ease;
}

.ast-sidebar-link:hover{
  background: rgba(1,62,60,.06);
  border-color: rgba(1,62,60,.14);
  transform: translateY(-1px);
  color: rgba(1,62,60,.95);
}

.ast-sidebar-text{
  color: rgba(17,17,17,.72);
  line-height: 1.75;
  margin-bottom: 14px;
}

.ast-sidebar-actions{
  display: grid;
  gap: 10px;
}

/* related links */
.ast-related{
  display: block;
  text-decoration: none;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(17,17,17,.06);
  background: #fff;
  transition: transform .15s ease, border-color .15s ease, background .15s ease;
  margin-top: 10px;
}

.ast-related:hover{
  transform: translateY(-1px);
  border-color: rgba(1,62,60,.18);
  background: rgba(1,62,60,.04);
}

.ast-related-name{
  font-weight: 700;
  letter-spacing: -0.02em;
  color: rgba(17,17,17,.90);
  margin-bottom: 6px;
  font-size: 1rem;
}

.ast-related-desc{
  color: rgba(17,17,17,.70);
  line-height: 1.6;
  font-size: 0.9rem;
}

/* responsive */
@media (max-width: 991.98px){
  .ast-blog-sidebar{
    position: static;
  }
  .ast-article-cta-actions{
    width: 100%;
  }
  .ast-article-cta-pill{
    width: 100%;
  }
}

/* =========================
   CONTACT – NEW ONLY
========================= */

.ast-contact-hero{
  padding: clamp(40px, 5vw, 70px) 0;
  background: #fff;
}

.ast-contact-title{
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.05;
  font-size: clamp(2rem, 3.2vw, 3rem);
  margin: 0 0 12px;
}

.ast-contact-perex{
  color: rgba(17,17,17,.72);
  line-height: 1.85;
  font-size: 1.05rem;
  margin: 0;
  max-width: 920px;
}

/* quick pills (tel/mail) */
.ast-contact-quick{
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ast-contact-quick-pill{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 52px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1.5px solid rgba(185,65,48,.35);
  color: var(--ast-orange);
  text-decoration: none;
  font-weight: 700;
  background: rgba(185,65,48,.06);
  transition: transform .15s ease, border-color .15s ease, background .15s ease;
}

.ast-contact-quick-pill:hover{
  transform: translateY(-1px);
  border-color: rgba(185,65,48,.65);
  background: rgba(185,65,48,.10);
  color: #B94130!important;
}

.ast-contact-quick-ico{
  line-height: 1;
  opacity: .9;
}

/* map */
.ast-contact-map{
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(17,17,17,.06);
  box-shadow: 0 18px 36px rgba(0,0,0,.08);
  background: #f2f2f2;
}

.ast-contact-map iframe{
  width: 100%;
  height: 340px;
  border: 0;
  display: block;
}

/* info box under map */
.ast-contact-info{
  border: 1px solid rgba(17,17,17,.06);
  border-radius: 18px;
  background: #fff;
  padding: 18px 18px;
  box-shadow: 0 16px 32px rgba(0,0,0,.06);
}

.ast-contact-info-row{
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(17,17,17,.08);
}

.ast-contact-info-row:last-child{
  border-bottom: 0;
  padding-bottom: 0;
}

.ast-contact-info-k{
  font-weight: 700;
  letter-spacing: -0.02em;
  color: rgba(17,17,17,.88);
}

.ast-contact-info-v{
  color: rgba(17,17,17,.72);
  line-height: 1.7;
}

/* form card */
.ast-contact-form-card{
  border: 1px solid rgba(17,17,17,.06);
  border-radius: 18px;
  background: #fff;
  padding: 18px 18px;
  box-shadow: 0 16px 32px rgba(0,0,0,.06);
  height: 100%;
}

.ast-contact-form-head{
  padding: 6px 6px 16px;
  border-bottom: 1px solid rgba(17,17,17,.08);
  margin-bottom: 16px;
}

.ast-contact-form-title{
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0;
}

.ast-contact-form-sub{
  color: rgba(17,17,17,.68);
  line-height: 1.7;
}

/* form styles */
.ast-form-label{
  font-weight: 700;
  color: rgba(17,17,17,.82);
  margin-bottom: 6px;
  display: inline-block;
}

.ast-form-control{
  width: 100%;
  border-radius: 14px;
  border: 1px solid rgba(17,17,17,.14);
  background: #fff;
  padding: 12px 14px;
  outline: none;
  transition: border-color .15s ease, box-shadow .15s ease;
  color: rgba(17,17,17,.88);
}

.ast-form-control:focus{
  border-color: rgba(1,62,60,.55);
  box-shadow: 0 0 0 4px rgba(1,62,60,.10);
}

.ast-form-check{
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: rgba(17,17,17,.70);
  line-height: 1.6;
  font-size: .95rem;
}

.ast-form-check input{
  margin-top: 4px;
}

.ast-form-note{
  color: rgba(17,17,17,.62);
  font-size: .95rem;
  line-height: 1.7;
}

/* lower cards */
.ast-contact-card{
  border: 1px solid rgba(17,17,17,.06);
  border-radius: 18px;
  background: #fff;
  padding: 18px 18px;
  box-shadow: 0 16px 32px rgba(0,0,0,.06);
}

.ast-hours{
  display: grid;
  gap: 10px;
}

.ast-hours-row{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(1,62,60,.14);
  background: rgba(1,62,60,.05);
}

.ast-hours-day{
  font-weight: 700;
  letter-spacing: -0.02em;
}

.ast-hours-time{
  color: rgba(17,17,17,.72);
  font-weight: 400;
}

/* FAQ */
.ast-contact-faq{
  display: grid;
  gap: 12px;
}

.ast-contact-faq-item{
  border: 1px solid rgba(17,17,17,.06);
  border-radius: 16px;
  background: #fff;
  padding: 14px 16px;
}

.ast-contact-faq-q{
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}

.ast-contact-faq-a{
  color: rgba(17,17,17,.70);
  line-height: 1.65;
}

/* final strip */
.ast-contact-final{
  background: var(--ast-green);
  padding: 48px 0;
  color: #fff;
}

.ast-contact-final-title{
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0;
}

.ast-contact-final-text{
  color: rgba(255,255,255,.86);
  line-height: 1.75;
}

.ast-contact-final-actions{
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ast-contact-final-pill{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  background: var(--ast-orange);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  border: 1.5px solid transparent;
  transition: transform .15s ease, background .15s ease;
}

.ast-contact-final-pill:hover{
  transform: translateY(-1px);
  background: #a93a2b;
}

.ast-contact-final-pill--outline{
  background: transparent;
  border-color: rgba(255,255,255,.55);
  color: #fff;
}

.ast-contact-final-pill--outline:hover{
  background: rgba(255,255,255,.10);
}

/* responsive */
@media (max-width: 575.98px){
  .ast-contact-info-row{
    grid-template-columns: 1fr;
    gap: 6px;
  }
  .ast-contact-map iframe{
    height: 280px;
  }
}