/* Breakpoints:
   desktop: >1200px
   tablet + mobile nav: <=1200px
   small mobile: <=560px
*/

/* ====== ZÁKLAD ====== */
:root{
  --wine: #4a0f1f;        /* tmavá vínová */
  --wine-2: #3a0b18;
  --charcoal: #1f1f22;    /* tmavší šedá */
  --slate: #2c2c31;
  --text: #f4f2ee;
  --muted: #d7d1c7;
  --accent: #e2c27a;      /* jemný zlatý akcent (k vínové + dřevu sedí) */

  --radius: 18px;
  --shadow: 0 12px 28px rgba(0,0,0,.28);
  --max: 1120px;
}

*{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin: 0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: linear-gradient(180deg, #141416, #101012);
  color: var(--text);
  line-height: 1.55;
}

img{ max-width: 100%; display:block; }
a{ color: inherit; text-decoration: none; }
a:hover{ opacity: .92; }

.container{
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.skip-link{
  position: absolute;
  left: -999px;
  top: 8px;
  padding: 10px 12px;
  background: #000;
  border-radius: 10px;
}
.skip-link:focus{ left: 12px; z-index: 9999; }

/* ====== HEADER ====== */
.site-header{
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(20,20,22,.78);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,.08);

  transition: background .25s ease, border-color .25s ease;
}

/* Header state when page is scrolled */
.site-header.is-scrolled{
  background: rgba(12,12,14,.92);
  border-bottom: 1px solid rgba(255,255,255,.12);
}

.header-inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 0;
}

.brand{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 220px;
}

.brand-logo{ 
  width: 80px; height: 80px; 
}

.brand-name{
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: .4px;
}

.nav{
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.nav a{
  position: relative;
  padding: 10px 12px;
  border-radius: 12px;
  color: var(--muted);
}

.nav a::after{
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 4px;

  height: 2px;
  background: var(--accent);

  transform: scaleX(0);
  transform-origin: center;
  transition: transform .25s ease;
}

.nav a:hover::after{
  transform: scaleX(1);
}

.nav a:hover{
  background: rgba(255,255,255,.06);
  color: var(--text);
}

.nav-toggle{
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 12px;
  background: rgba(255,255,255,.04);
  cursor: pointer;
}
.nav-toggle span{
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text);
  margin: 5px auto;
  border-radius: 10px;
}

.header-inner{
  transition: padding .25s ease;
}

/* Applied after user scrolls a bit */
.site-header.is-scrolled{
  background: rgba(12,12,14,.92);
  border-bottom-color: rgba(255,255,255,.10);
}

.site-header.is-scrolled .header-inner{
  padding: 10px 0; /* smaller than default 14px */
}

/* Optional: slightly smaller logo on scroll */
.site-header.is-scrolled .brand-logo{
  width: 60px;
  height: 60px;
}

/* ====== HERO ====== */
.hero{
  position: relative;
  min-height: 72vh;
  display: grid;
  place-items: center;
  overflow: clip;
}

.hero--clean{
  position: relative;
  min-height: 76vh;
  display: grid;
  place-items: center;
  text-align: center;
  overflow: clip;
}

.hero-bg{
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,.62), rgba(0,0,0,.62)),
    url("./assets/hero.webp") center/cover no-repeat;
  animation: heroZoom 18s ease-in-out infinite alternate;
}

@keyframes heroZoom{
  from{
    transform: scale(1);
  }
  to{
    transform: scale(1.08);
  }
}

.hero-content{
  position: relative;
  width: min(860px, 100%);
  padding: 72px 0;
}

.hero-eyebrow{
  display: inline-block;
  margin: 0 0 12px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(226,194,122,.14);
  border: 1px solid rgba(226,194,122,.24);
  color: var(--muted);
  font-weight: 700;
}

/* Hero kicker: bigger, gold, with decorative lines */
.hero-kicker{
  margin: 0 0 16px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent);
  font-size: clamp(1.05rem, 1.7vw, 1.35rem);

  display: inline-flex;
  align-items: center;
  gap: 14px;

  text-shadow: 0 10px 24px rgba(0,0,0,.35);
}

/* ===== INFO RIBBON ===== */
.info-ribbon{
  max-width: 780px;
  margin: 0 auto 22px;

  padding: 4px 6px;

  font-size: .82rem;
  line-height: 1.45;
  text-align: center;

  color: var(--muted);

  background: rgba(0,0,0,.35);
  border: 1px solid rgba(226,194,122,.28);
  border-radius: 18px;

  backdrop-filter: blur(6px);

  box-shadow: 0 10px 24px rgba(0,0,0,.25);
}

/* ===== HERO NOTICE (temporary website message) ===== */
.hero-ribbon{
  position: absolute;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);

  max-width: min(760px, 90%);   
  padding: 14px 18px;

  font-size: .92rem;
  line-height: 1.55;

  color: var(--muted);

  background: rgba(0,0,0,.45);
  border: 1px solid rgba(226,194,122,.35);

  border-radius: 18px;

  backdrop-filter: blur(6px);
  text-align: center;

  z-index: 5;

  word-break: break-word;
}

/* Decorative lines */
.hero-kicker::before,
.hero-kicker::after{
  content: "";
  height: 2px;
  width: 54px;
  background: rgba(226,194,122,.65);
  border-radius: 999px;
  box-shadow: 0 8px 18px rgba(0,0,0,.25);
}

.hero-title{
  margin: 0 0 12px;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  letter-spacing: .4px;
  text-shadow: 0 10px 24px rgba(0,0,0,.35);
}

.hero-text{
  margin: 0 auto;
  max-width: 62ch;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.25vw, 1.18rem);
  line-height: 1.85;
  text-shadow: 0 8px 18px rgba(0,0,0,.35);
}

.hero-inner{
  position: relative;
  padding: 60px 0;
}

.hero-card{
  width: min(680px, 100%);
  background: rgba(20,20,22,.72);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 26px;
}

.eyebrow{
  display: inline-block;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(226,194,122,.12);
  border: 1px solid rgba(226,194,122,.22);
  color: var(--muted);
  margin: 0 0 10px;
  font-size: .92rem;
}

.hero h1{
  margin: 0 0 8px;
  font-size: clamp(2rem, 3.3vw, 3rem);
  letter-spacing: .4px;
}

.lead{
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 1.05rem;
}

.hero-actions{
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 8px 0 18px;
}

.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid transparent;
  font-weight: 700;
  cursor: pointer;
}

.btn-primary{
  background: linear-gradient(180deg, var(--wine), var(--wine-2));
  border-color: rgba(255,255,255,.12);
}
.btn-ghost{
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.12);
  color: var(--text);
}

.hero-badges{
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 10px;
}
.badge{
  border-radius: 14px;
  padding: 12px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.10);
}
.badge-top{
  display: block;
  color: var(--muted);
  font-size: .9rem;
}
.badge-bottom{
  display: block;
  font-weight: 800;
}

/* ====== SEKCE ====== */
.section{
  padding: 64px 0;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .8s ease, transform .8s ease;
}

.section-head{
  margin-bottom: 18px;
}
.section-head h2{
  margin: 0 0 6px;
  font-size: clamp(1.5rem, 2.2vw, 2.1rem);
}
.section-head p{
  margin: 0;
  color: var(--muted);
}

.section-wine{
  background:
    radial-gradient(circle at 20% 20%, rgba(255,255,255,.06), transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(0,0,0,.35), transparent 55%),
    linear-gradient(180deg, var(--wine), var(--wine-2));
  position: relative;
}

.section-wine::before{
  content: "";
  position: absolute;
  top: -60px;
  left: 0;
  right: 0;
  height: 120px;

  background:
    radial-gradient(
      ellipse at center,
      rgba(226,194,122,.12),
      transparent 70%);

  pointer-events: none;
}

.section-wine h2{
  position: relative;
  display: inline-block;

  text-shadow:
    0 0 10px rgba(226,194,122,.25),
    0 0 20px rgba(226,194,122,.12);
}

.section-image{
  position: relative;
  padding: 100px 0;
  overflow: clip;

  display: flex;
  justify-content: center;
}

/* ===== Section fade-in animation ===== */

.section.visible{
  opacity: 1;
  transform: none;
}

.image-panel{
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,.55), rgba(0,0,0,.55)),
    url("./assets/open.webp") center/cover no-repeat;
  transform: scale(1.02);
}

.glass{
  position: relative;
  width: min(620px, 100%);
  margin: 0 auto; /* ensure horizontal centering */

  background: rgba(20,20,22,.55); /* more transparent */
  backdrop-filter: blur(10px);

  border: 1px solid rgba(255,255,255,.12);
  border-radius: 18px; /* slightly smaller radius */
  box-shadow: 0 18px 40px rgba(0,0,0,.35);

  padding: 28px;
  text-align: center;
}

.hours{
  display: grid;
  gap: 10px;
  margin: 18px 0 18px;
}
.hours > div{
  display: flex;
  justify-content: space-between;
  align-items: center;

  padding: 10px 14px;

  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);

  border-radius: 10px; /* smaller radius for rows */
}

.small{
  color: var(--muted);
  font-size: .95rem;
}

/* ===== Contact ===== */

.section-head--center{
  text-align: center;
}

.contact-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 22px;
}

.contact-card{
  background: rgba(0,0,0,.18);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: 0 14px 30px rgba(0,0,0,.28);
}

.contact-card h3{
  margin: 0 0 12px;
}

.contact-list{
  display: grid;
  gap: 10px;
  margin: 0 0 14px;
}

.contact-item{
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
}

.contact-label{
  color: rgba(255,255,255,.75);
  font-size: .95rem;
}

.contact-value{
  font-weight: 800;
}

.contact-actions{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 6px;
}

.contact-grid--center{
  grid-template-columns: 1fr;
  justify-items: center;
}

.contact-card--business{
  width: min(720px, 100%);
  text-align: center;
}

.contact-list--stack .contact-item{
  justify-content: center;
  text-align: center;
}

.contact-item--center{
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.contact-item--text{
  align-items: center;
}

.contact-item--text .contact-value{
  line-height: 1.7;
}

/* Map */
.map-wrap{
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.18);
  box-shadow: 0 16px 36px rgba(0,0,0,.35);
}

.map-wrap iframe{
  width: 100%;
  height: 360px;
  border: 0;
  display: block;
}

/* Form */
.contact-form{
  max-width: 860px;
  margin: 0 auto;
  padding: 18px;
  border-radius: var(--radius);
  background: rgba(20,20,22,.72);
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: var(--shadow);
}

.form-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.field{
  display: grid;
  gap: 8px;
}

.field span{
  color: var(--muted);
  font-weight: 700;
  font-size: .95rem;
}

.field input,
.field textarea{
  width: 100%;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(0,0,0,.22);
  color: var(--text);
  padding: 12px 14px;
  outline: none;
}

.field input:focus,
.field textarea:focus{
  border-color: rgba(226,194,122,.45);
  box-shadow: 0 0 0 4px rgba(226,194,122,.14);
}

.field--full{
  grid-column: 1 / -1;
}

.form-actions{
  display: grid;
  gap: 10px;
  margin-top: 12px;
}

/* ===== Mobile sticky action bar ===== */

.mobile-actionbar{
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;

  padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
  display: none; /* shown only on mobile */

  gap: 10px;
  justify-content: center;

  background: rgba(12,12,14,.82);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255,255,255,.10);

  z-index: 999;
}

.mab-btn{
  flex: 1;
  max-width: 260px;
  text-align: center;

  padding: 12px 14px;
  border-radius: 14px;
  font-weight: 800;

  border: 1px solid rgba(255,255,255,.12);
}

.mab-btn--primary{
  background: linear-gradient(180deg, var(--wine), var(--wine-2));
}

.mab-btn--ghost{
  background: rgba(255,255,255,.06);
}

/* ===== TAP SECTION WITH WOOD BACKGROUND ===== */

.section-wood-tap{
  position: relative;

  background:
    linear-gradient(180deg, rgba(0,0,0,.45), rgba(0,0,0,.55)),
    url("./assets/wood.webp") center top /auto repeat;

  border-top: 1px solid rgba(255,255,255,.08);
  border-bottom: 1px solid rgba(255,255,255,.08);
}

/* ====== AKTUALITY ====== */
.news-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 14px;
  align-items: start;
}

.card{
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: 0 10px 22px rgba(0,0,0,.22);
}
.card-dark{
  background: rgba(0,0,0,.18);
  border: 1px solid rgba(255,255,255,.14);
}
.card h3{ margin: 0 0 6px; }
.meta{
  margin: 0 0 10px;
  color: rgba(255,255,255,.78);
  font-size: .95rem;
}
.card p{ margin: 0; color: rgba(255,255,255,.88); }

.news-card{
  overflow: hidden;
  padding: 0;
  display: flex;
  flex-direction: column;
  height: auto;
  align-self: start;
}

.news-card-media{
  width: 100%;
  height: 320px;
  overflow: hidden;
}

.news-card-image{
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: zoom-in;
  transition: transform .35s ease;
}

.news-card:hover .news-card-image{
  transform: scale(1.05);
}

.news-card-body{
  padding: 12px 14px 14px;
}

.news-card-body h3{
  margin: 0 0 6px;
  font-size: 1.05rem;
  line-height: 1.25;
}

.news-card-body p{
  margin: 0;
  font-size: .94rem;
  line-height: 1.45;
}

.news-card .meta{
  margin: 0 0 8px;
  font-size: .9rem;
  color: rgba(255,255,255,.74);
}

.news-card-body p:last-child{
  margin: 0;
}

.news-lightbox{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.9);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 9999;
  cursor: zoom-out;
}

.news-lightbox.open{
  display: flex;
}

.news-lightbox img{
  max-width: 95%;
  max-height: 95%;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0,0,0,.7);
}

/* ====== NA ČEPU ====== */
.tap-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 14px;
}

.tap-card{
  background: rgba(20,20,22,.75);
  backdrop-filter: blur(6px);

  border: 1px solid rgba(255,255,255,.12);
  border-radius: 16px;

  overflow: hidden;
  box-shadow: 0 14px 30px rgba(0,0,0,.4);

  transition: transform .25s ease, box-shadow .25s ease;
}

.tap-card:hover{
  transform: translateY(-4px);
  box-shadow: 0 22px 45px rgba(0,0,0,.5);
}

.tap-card img{
  height: 210px;
  width: 100%;
  object-fit: cover;
}

.tap-card h3{
  margin: 12px 14px 6px;
}

.tap-card p{
  margin: 0 14px 14px;
  color: rgba(255,255,255,.88);
}

/* ====== DŘEVO + ODKAZY ====== */
.section-wood{
  background:
    radial-gradient(circle at 30% 20%, rgba(0,0,0,.25), transparent 60%),
    linear-gradient(180deg, rgba(0,0,0,.40), rgba(0,0,0,.55)),
    url("./assets/wood.webp") center/cover repeat;
  border-top: 1px solid rgba(255,255,255,.08);
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.links-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 14px;
}
.link-tile{
  padding: 18px;
  border-radius: var(--radius);
  background: rgba(20,20,22,.72);
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: var(--shadow);
  font-weight: 800;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* ===== Social link icon styling ===== */
.link-left{
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.link-icon{
  width: 22px;
  height: 22px;
  fill: rgba(226,194,122,.9); /* gold accent */
  flex: 0 0 auto;
}

.link-arrow{
  opacity: .9;
}

/* ===== SOCIAL SECTION (wine background) ===== */

.social-section .link-tile{
  background: rgba(0,0,0,.18);
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: 0 12px 26px rgba(0,0,0,.25);
  transition: transform .25s ease, box-shadow .25s ease;
}

.social-section .link-tile:hover{
  transform: translateY(-3px);
  box-shadow: 0 18px 36px rgba(0,0,0,.35);
}

/* ====== ROZCESTNÍK ====== */
.quick-grid{
  display: grid;
  grid-template-columns: repeat(6, minmax(0,1fr));
  gap: 12px;
}
.quick-card{
  padding: 14px 12px;
  border-radius: 16px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  text-align: center;
  font-weight: 800;
}

/* ====== FOOTER ====== */
.site-footer{
  padding: 46px 0 18px;
  background: #0c0c0e;
  border-top: 1px solid rgba(255,255,255,.08);
}

.footer-grid{
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  gap: 16px;
  margin-bottom: 18px;
}
.site-footer h3{
  margin: 0 0 8px;
  font-size: 1.05rem;
}
.site-footer a{
  color: var(--muted);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.site-footer a:hover{ color: var(--text); }

.footer-bottom{
  display: flex;
  gap: 12px;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 14px;
}

/* ===== Weekly menu image ===== */
.menu-image{
  max-width: 820px;
  margin: 30px auto 0;

  border-radius: var(--radius);
  overflow: hidden;

  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 16px 36px rgba(0,0,0,.35);
}

.menu-image img{
  width: 100%;
  height: auto;
  display: block;
  cursor: zoom-in;
  touch-action: manipulation;
}

.section-wood-menu{
  position: relative;

  background:
    linear-gradient(180deg, rgba(0,0,0,.75), rgba(0,0,0,.85)),
    url("./assets/wood.webp") center/cover repeat;

  border-top: 1px solid rgba(255,255,255,.08);
  border-bottom: 1px solid rgba(255,255,255,.08);
}

/* Center text in weekly menu section */
.section-wood-menu .section-head{
  text-align: center;
}

/* Overlay */
.menu-lightbox{
  position: fixed;
  inset: 0;

  background: rgba(0,0,0,.85);
  cursor: zoom-out;
  display: none;
  align-items: center;
  justify-content: center;

  padding: 20px;

  z-index: 9999;
}

/* When open */
.menu-lightbox.open{
  display: flex;
}

/* Image inside */
.menu-lightbox img{
  max-width: 95%;
  max-height: 95%;
  border-radius: 10px;
  box-shadow: 0 20px 60px rgba(0,0,0,.7);
}

.validity-badge{
  width: fit-content;
  margin: 12px auto 18px;

  padding: 8px 14px;

  border-radius: 999px;
  border: 1px solid rgba(226,194,122,.35);

  background: rgba(0,0,0,.35);

  color: var(--muted);
  font-weight: 700;
  text-align: center;
}

/* ===== Order-only menu sections  ===== */

.menu-variant{
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  box-shadow: 0 14px 30px rgba(0,0,0,.30);
  padding: 18px;
  margin: 18px 0 24px;
}

.menu-variant__header{
  display: grid;
  gap: 6px;
  margin-bottom: 14px;
}

.menu-variant__title{
  margin: 0;
  font-size: 1.25rem;
  color: var(--accent);
  letter-spacing: .08em;
  text-transform: uppercase;
}

.menu-variant__desc{
  margin: 0;
  color: var(--muted);
}


.photo-grid{
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 12px;
}

.photo{
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.18);
  box-shadow: 0 10px 22px rgba(0,0,0,.22);
}

.photo-grid .photo{
  grid-column: span 3; /* 4 tiles per row on desktop */
}

.photo img{
  width: 100%;
  height: 190px;
  object-fit: cover;
  display: block;
  transition: transform .35s ease;
}

.photo:hover img{
  transform: scale(.97);
}  

.carousel{
  position: relative;
}

.carousel-arrow{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;

  width: 42px;
  height: 42px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 50%;

  background: rgba(20,20,22,.75);
  backdrop-filter: blur(6px);

  color: var(--accent);
  font-size: 24px;
  line-height: 1;

  display: grid;
  place-items: center;
  cursor: pointer;

  box-shadow: 0 10px 24px rgba(0,0,0,.35);
  transition: background .2s ease, transform .2s ease, opacity .2s ease;
}

.carousel-prev{
  left: 10px;
}

.carousel-next{
  right: 10px;
}

.carousel-arrow:hover{
  background: rgba(20,20,22,.92);
}

.carousel-arrow:active{
  transform: translateY(-50%) scale(.97);
}

/* ===== HORIZONTAL SCROLL GALLERY ===== */
.photo-grid.photo-carousel{
  display: flex;
  gap: 14px;
  padding: 6px 2px;

  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;

  padding: 2px;
  scrollbar-width: none;
}
.photo-grid.photo-carousel::-webkit-scrollbar{ display: none; }

.photo-grid.photo-carousel .photo{
  flex: 0 0 75%;
  scroll-snap-align: center;
}

.photo-grid.photo-carousel .photo img{
  width: 100%;
  height: auto !important;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;

  transform: scale(.90);   /* zoom-out */
  transition: transform .35s ease;
}

/* BIG photos for horizontal scroll galleries */
.photo-grid.photo-carousel.photo-carousel--big .photo{
  flex-basis: 86%;
}

.photo-grid.photo-carousel.photo-carousel--big .photo img{
  aspect-ratio: 3 / 2; /* o trochu vyšší než 4/3 */
}

/* ===== Section separator (hero -> next section) ===== */
.section-separator{
  height: 10px;
  background:
    radial-gradient(circle at 50% 0%, rgba(226,194,122,.18), transparent 65%),
    linear-gradient(90deg, transparent, rgba(226,194,122,.35), transparent);
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(0,0,0,.35);
}

/* ===== Subseparator (premium): soft gold glow + tiny line ===== */
.sub-separator{
  height: 6px;
  background:
    radial-gradient(circle at 50% 0%, rgba(226,194,122,.12), transparent 85%),
    linear-gradient(90deg, transparent, rgba(226,194,122,.16), transparent);
  opacity: .7;
}

/* ===== ABOUT – layout ===== */
.about-story{
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 14px;
  align-items: start;
}

.about-story__text{
  background: rgba(0,0,0,.14);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: 0 14px 30px rgba(0,0,0,.22);
}

.team-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 14px;
  margin-top: 18px;
}

.team-card{
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(20,20,22,.70);
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 16px 36px rgba(0,0,0,.30);
}

.team-photo img{
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
}

.team-card h3{
  margin: 12px 14px 6px;
}

.team-card p{
  margin: 0 14px 14px;
}

.form-success{
  max-width: 560px;
  margin: 0 auto;
  padding: 24px;

  text-align: center;

  border-radius: var(--radius);
  border: 1px solid rgba(226,194,122,.35);

  background: rgba(0,0,0,.35);
  backdrop-filter: blur(6px);

  box-shadow: var(--shadow);
}

.form-success h3{
  margin-top: 0;
  color: var(--accent);
}

/* ===== Scroll to top button ===== */

.scroll-top{
  position: fixed;
  right: 24px;
  bottom: 24px;

  width: 46px;
  height: 46px;

  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.18);

  background: rgba(20,20,22,.75);
  backdrop-filter: blur(6px);

  color: var(--accent);
  font-size: 20px;
  font-weight: 700;

  display: grid;
  place-items: center;

  cursor: pointer;

  box-shadow: 0 12px 26px rgba(0,0,0,.35);

  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;

  transition: all .25s ease;

  z-index: 999;
}

.scroll-top.visible{
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.scroll-top:hover{
  background: rgba(20,20,22,.95);
  transform: translateY(-2px);
}

/* ====== RESPONSIVE ====== */
@media (max-width: 1200px){
  .news-grid,
  .tap-grid{
    grid-template-columns: repeat(2, minmax(0,1fr));
  }
  .links-grid{ grid-template-columns: 1fr; }
  .quick-grid{ grid-template-columns: repeat(2, minmax(0,1fr)); }
  .footer-grid{ grid-template-columns: 1fr; }
  .hero-badges{ grid-template-columns: 1fr; }
  .hero-content{ padding: 56px 18px; }
  .hero-text{ font-size: 1.02rem; }

  .header-inner{
    position: relative;
    align-items: center;
  }

  .brand{
    min-width: 0;
    flex: 1;
    max-width: calc(100% - 64px);
  }

  .brand-name{
    font-size: 1rem;
    line-height: 1.2;
  }

  .brand-logo{
    width: 64px;
    height: 64px;
    flex: 0 0 auto;
  }

  .nav{
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    left: auto;
    right: 0;

    width: min(320px, calc(100vw - 40px));
    flex-direction: column;
    gap: 4px;

    padding: 12px;
    border-radius: 18px;
    background: rgba(20,20,22,.96);
    border: 1px solid rgba(255,255,255,.10);
    box-shadow: 0 18px 40px rgba(0,0,0,.35);

    z-index: 60;
  }

  .nav a{ padding: 12px 14px;}
  .nav.is-open{ display: flex; }
  .contact-grid{ grid-template-columns: 1fr; }
  .map-wrap iframe{ height: 320px; }

  .nav-toggle{
    display: block;
    position: relative;
    width: 54px;
    height: 54px;
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 16px;
    background: rgba(255,255,255,.04);
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    flex: 0 0 auto;
    margin-left: 12px;
  }

  .nav-toggle span{
    position: absolute;
    left: 50%;
    width: 24px;
    height: 2px;
    background: var(--text);
    border-radius: 999px;
    transform: translateX(-50%);
    transition: transform .28s ease, opacity .22s ease, top .28s ease;
  }

  .nav-toggle span:nth-child(1){ top: 17px; }
  .nav-toggle span:nth-child(2){ top: 26px; }
  .nav-toggle span:nth-child(3){ top: 35px; }

  .nav-toggle.is-active span:nth-child(1){
    top: 26px;
    transform: translateX(-50%) rotate(45deg);
  }

  .nav-toggle.is-active span:nth-child(2){
    opacity: 0;
  }

  .nav-toggle.is-active span:nth-child(3){
    top: 26px;
    transform: translateX(-50%) rotate(-45deg);
  }
  .mobile-actionbar{ display: flex; }
  body{ padding-bottom: 78px; }

  .hero-kicker::before,
  .hero-kicker::after{ display: none; }

  .tap-card img{
    height: 180px;
  }

  .news-card-media{
    height: 260px;
  }

  .scroll-top{
    bottom: 90px;
  }
}

@media (max-width: 900px){

  .about-story{
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .team-card{
    max-width: 420px;
    margin: 0 auto;
  }

  .carousel-arrow{
    display: none;
  }

}

@media (max-width: 768px){
  .news-grid,
  .tap-grid{
    grid-template-columns: 1fr;
  }
  
  .tap-card img{
    height: 220px;
  }

  .news-card-media{
    height: 300px;
  }
}

@media (max-width: 560px){
  .hero-content{ padding: 48px 16px; }
  .form-grid{ grid-template-columns: 1fr; }
  .hero-ribbon{
    font-size: .88rem;
    padding: 12px 14px;
  }

  /* na malém mobilu trochu větší fotka ve swipe */
  .photo-grid.photo-carousel .photo{ flex-basis: 92%; }

  .tap-card img{
    height: 220px;
  }

  .news-card-media{
    height: 300px;
  }
}

@media (orientation: landscape) and (max-height: 560px){
  .hero--clean{
    min-height: auto;
    padding: 28px 0 40px;
  }

  .hero-content{
    padding: 24px 16px 40px;
  }

  .hero-ribbon{
    position: static;
    transform: none;
    left: auto;
    top: auto;
    margin: 0 auto 18px;
    max-width: 92%;
  }

  .hero-title{
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    margin-bottom: 10px;
  }

  .hero-text{
    font-size: .98rem;
    line-height: 1.65;
  }

  .hero-kicker{
    margin-bottom: 10px;
    font-size: .95rem;
  }
}