:root {
  --clr-bg: #f5f5f0;
  --clr-dark: #1a1a17;
  --clr-text: #3a3a35;
  --clr-muted: #6b6b63;
  --clr-accent: #7aaa2e;
  --clr-accent-light: #8fbc3a;
  --clr-cream: #f8f9f4;
  --clr-olive: #7aaa2e;
  --font-display: 'Roboto', sans-serif;
  --font-body: 'Open Sans', sans-serif;
  --ease-out: cubic-bezier(.16,1,.3,1);
}
body { font-family: var(--font-body); font-size: 1.05rem; background: var(--clr-bg); color: var(--clr-text); -webkit-font-smoothing: antialiased; }

/* ── Helpers ── */
.label-sm { font-size: 1rem; font-weight: 600; letter-spacing: .25em; text-transform: uppercase; color: var(--clr-accent); }
.section-title { font-family: var(--font-display); font-size: clamp(1.7rem,3.5vw,2.6rem); font-weight: 700; line-height: 1.25; color: var(--clr-dark); }
.btn-accent { font-size: .92rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; padding: .75rem 2rem; border: 1px solid var(--clr-accent); color: var(--clr-accent); background: transparent; border-radius: 10px; transition: all .35s; }
.btn-accent:hover { background: var(--clr-accent); color: #fff; border-color: var(--clr-accent); }

/* ── Reveal ── */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .8s var(--ease-out), transform .8s var(--ease-out); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.rd1 { transition-delay: .1s } .rd2 { transition-delay: .2s } .rd3 { transition-delay: .3s } .rd4 { transition-delay: .4s }

/* ══════════ NAVBAR ══════════ */
.navbar { background: #fff !important; box-shadow: 0 1px 16px rgba(0,0,0,.06); padding: .7rem 0; transition: box-shadow .4s; }
.navbar.scrolled { box-shadow: 0 2px 28px rgba(0,0,0,.1); }
.navbar-brand { font-family: var(--font-display); font-size: 1.4rem; font-weight: 400; letter-spacing: .05em; color: var(--clr-dark) !important; }
.navbar-brand .leaf { color: var(--clr-olive); }
.navbar-nav .nav-link {
  font-size: 1rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: var(--clr-text) !important; padding: .5rem 1rem !important; position: relative; transition: color .3s;
}
.navbar-nav .nav-link::after {
  content: ''; position: absolute; bottom: 2px; left: 1rem; right: 1rem;
  height: 1px; background: var(--clr-accent); transform: scaleX(0); transition: transform .35s var(--ease-out);
}
.navbar-nav .nav-link:hover { color: var(--clr-accent) !important; }
.navbar-nav .nav-link:hover::after { transform: scaleX(1); }


.navbar-nav li.current_page_item .nav-link { color: var(--clr-accent) !important; }
.navbar-nav li.current_page_item .nav-link::after {content: ''; position: absolute; bottom: 2px; left: 1rem; right: 1rem;
  height: 1px; background: var(--clr-accent); transform: scaleX(0); transition: transform .35s var(--ease-out); transform: scaleX(1); }




.navbar-nav .nav-item:last-child .nav-link {
  background: var(--clr-accent); color: #fff !important; border-radius: 10px;
  padding: .5rem 1.5rem !important; margin-left: .5rem;
}
.navbar-nav .nav-item:last-child .nav-link::after { display: none; }
.navbar-nav .nav-item:last-child .nav-link:hover { background: var(--clr-dark); color: #fff !important; }

/* Custom hamburger */
.navbar-toggler { border: none; box-shadow: none !important; padding: .5rem; position: relative; z-index: 1060; }
.hamburger { width: 26px; height: 20px; position: relative; display: flex; flex-direction: column; justify-content: space-between; }
.hamburger span { display: block; height: 2px; width: 100%; background: var(--clr-dark); border-radius: 2px; }
.menu-open .hamburger span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.menu-open .hamburger span:nth-child(2) { opacity: 0; }
.menu-open .hamburger span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

@media (max-width:1400px) {

.navbar-nav .nav-link {
  font-size: 0.9rem; 
}

}

@media (max-width:1200px) {

.navbar-nav .nav-link {
  font-size: 0.8rem; 
}

}








/* Mobile menu styles */
@media (min-width: 992px) {
  .navbar-collapse { display: flex !important; }
}
@media (max-width: 991.98px) {
  .navbar-collapse {
    position: fixed; top: 0; left: 0; right: 0; bottom: 0;
    background: #fff; z-index: 1050;
    display: none; align-items: center; justify-content: center;
  }
  .navbar-collapse.menu-visible {
    display: flex;
  }
  .navbar-collapse .navbar-nav {
    flex-direction: column; align-items: center; gap: 0 !important;
    width: 100%; text-align: center;
  }
  .navbar-collapse .navbar-nav .nav-link {
    font-size: 1.6rem !important; font-weight: 700; letter-spacing: .08em;
    padding: 1rem 1.5rem !important; color: var(--clr-dark) !important;
  }
  .navbar-collapse .navbar-nav .nav-link::after { display: none; }
  .navbar-collapse .navbar-nav .nav-link:hover { color: var(--clr-accent) !important; }
  .navbar-collapse .btn-accent {
    font-size: 1.15rem !important; margin-top: 1rem; padding: 1rem 2.5rem !important;
  }
}

/* ══════════ HERO (single image) ══════════ */
.hero {
  position: relative; min-height: 85vh;

  display: flex; align-items: center; justify-content: center; text-align: center;
}
.hero::before {
  content: ''; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(135deg, rgba(122,170,46,.35) 0%, rgba(26,26,23,.15) 50%, rgba(122,170,46,.2) 100%);
  mix-blend-mode: multiply;
}
.hero::after { content: ''; position: absolute; inset: 0; z-index: 1; background: linear-gradient(to bottom, rgba(26,26,23,.08) 0%, rgba(26,26,23,.55) 100%); }
.hero-content { position: relative; z-index: 3; }
.hero-content .label-sm { color: rgba(255,255,255,.7); font-size: .9rem; text-shadow: 2px 2px 10px #000; }
.hero-content h1 {
  font-family: var(--font-display); font-size: clamp(2.2rem,4.5vw,3.4rem);
  font-weight: 700; color: #fff; line-height: 1.2; letter-spacing: .01em; text-shadow: 2px 2px 10px #000;
}
.btn-hero {
  font-size: .95rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: #fff; border: 2px solid rgba(255,255,255,.5); padding: .85rem 2.4rem; border-radius: 10px; transition: all .35s;
}
.btn-hero:hover { background: #fff; color: var(--clr-dark); border-color: #fff; }

/* ══════════ PRODUCTS ══════════ */
.products { padding: 5rem 0; background: #fff; }
.product-card { border: none; background: #fff; border-radius: 10px; overflow: hidden; cursor: pointer; box-shadow: 0 4px 24px rgba(0,0,0,.07); transition: box-shadow .4s, transform .4s; }
.product-card .img-wrap { overflow: hidden; border-radius: 10px; aspect-ratio: 3/4; }
.product-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease-out); }
.product-card:hover img { transform: scale(1.06); }
.product-card:hover { box-shadow: 0 8px 36px rgba(0,0,0,.13); transform: translateY(-4px); }
.product-card .card-body { padding: 1rem .1rem; }
.product-card .card-title { font-family: var(--font-display); font-size: 1.2rem; font-weight: 700; color: var(--clr-dark); margin-bottom: .2rem; }
.product-card .price { font-size: 1rem; color: var(--clr-accent); font-weight: 500; }

/* ══════════ INFO BAR ══════════ */
/*.info-bar { padding: 3.5rem 0; background: #fff; border-top: 1px solid rgba(0,0,0,.05); border-bottom: 1px solid rgba(0,0,0,.05); }
.info-bar-item { display: flex; align-items: center; justify-content: center; gap: .8rem; padding: 1rem 0; }
.info-bar-icon { width: 56px; height: 56px; display: flex; align-items: center; justify-content: center; color: var(--clr-accent); font-size: 3rem; opacity: 1; }
.info-bar-item span { font-family: var(--font-display); font-size: 1.35rem; font-weight: 700; color: var(--clr-dark); }
.info-bar-item a { text-decoration: none; color: var(--clr-dark); display: flex; align-items: center; gap: .8rem; }
.info-bar-item a:hover span { color: var(--clr-accent); }
*/
/* ══════════ INFO BAR ══════════ */
.info-bar { padding: 3.5rem 0; background: var(--clr-accent); border: none; }
.info-bar-item { display: flex; align-items: center; justify-content: center; gap: .8rem; padding: 1rem 0; }
.info-bar-icon { width: 56px; height: 56px; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 3rem; }
.info-bar-item span { font-family: var(--font-display); font-size: 1.35rem; font-weight: 700; color: #fff; }
.info-bar-item a { text-decoration: none; color: #fff; display: flex; align-items: center; gap: .8rem; }
.info-bar-item a:hover span { color: rgba(255,255,255,.7); }
.info-bar-item a:hover .info-bar-icon { color: rgba(255,255,255,.7); }


/* ══════════ CATEGORIES ══════════ */
.categories { padding: 5rem 0; background: #fff; }
.cat-card { position: relative; overflow: hidden; border-radius: 10px; aspect-ratio: 1; cursor: pointer; display: block; box-shadow: 0 4px 24px rgba(0,0,0,.1); transition: box-shadow .4s, transform .4s; }
.cat-card:hover { box-shadow: 0 8px 36px rgba(0,0,0,.18); transform: translateY(-4px); }
.cat-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease-out); }
.cat-card:hover img { transform: scale(1.08); }
.cat-card .ov { position: absolute; inset: 0; background: linear-gradient(to top, rgba(26,26,23,.65), rgba(26,26,23,.08) 60%); transition: background .4s; }
.cat-card:hover .ov { background: linear-gradient(to top, rgba(26,26,23,.75), rgba(26,26,23,.18) 60%); }
.cat-card .info { position: absolute; bottom: 0; left: 0; right: 0; padding: 1.6rem; z-index: 2; }
.cat-card .info h5 { font-family: var(--font-display); font-size: 1.3rem; font-weight: 700; color: #fff; margin-bottom: .3rem; text-shadow: 2px 2px 10px #000; }
.cat-card .info span { font-size: .8rem; letter-spacing: .2em; text-transform: uppercase; color: rgba(255,255,255,.7); border-bottom: 1px solid rgba(255,255,255,.3); padding-bottom: 2px; transition: color .3s, border-color .3s; text-shadow: 2px 2px 10px #000; }
.cat-card:hover .info span { color: #fff; border-color: #fff; }

/* ══════════ ABOUT ══════════ */
.about { padding: 5rem 0; overflow: hidden; }
.about-img-wrap { position: relative; }
.about-img-wrap img { width: 100%; aspect-ratio: 4/5; object-fit: cover; border-radius: 10px; filter: grayscale(.12); }
.about-img-wrap::before { content: ''; position: absolute; border-radius: 10px; top: -1rem; left: -1rem; width: 100%; height: 100%; border: 2px solid var(--clr-accent-light); z-index: -1; }
.about-link { display: inline-flex; align-items: center; gap: .5rem; font-size: .95rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--clr-accent); transition: gap .3s; text-decoration: none; }
.about-link:hover { gap: .9rem; color: var(--clr-accent); }

/* ══════════ TESTIMONIALS ══════════ */
.testimonials { padding: 5rem 0; background: var(--clr-cream); }
.testi-card { background: #fff; padding: 2rem; border: none; border-radius: 10px; position: relative; height: 100%; box-shadow: 0 4px 24px rgba(0,0,0,.07); transition: box-shadow .4s, transform .4s; }
.testi-card:hover { box-shadow: 0 8px 36px rgba(0,0,0,.13); transform: translateY(-4px); }
.testi-card::before { content: '\201C'; font-family: var(--font-display); font-size: 3rem; line-height: 1; color: var(--clr-accent-light); opacity: .3; position: absolute; top: .6rem; left: 1.2rem; }
.testi-card p { font-size: 1.05rem; line-height: 1.8; font-style: italic; position: relative; z-index: 1; }
.testi-card .author { font-size: .92rem; font-weight: 600; letter-spacing: .08em; color: var(--clr-dark); }
.stars { color: var(--clr-accent); font-size: .92rem; letter-spacing: 2px; }

/* ══════════ ECO ══════════ */
.eco { padding: 5rem 0; background: #fff; }
.eco-card { text-align: center; padding: 2rem 1.3rem; border: 1px solid rgba(139,115,85,.1); background: #fff; border-radius: 10px; height: 100%; box-shadow: 0 4px 24px rgba(0,0,0,.07); transition: box-shadow .4s, border-color .4s, transform .4s; }
.eco-card:hover { border-color: var(--clr-accent-light); transform: translateY(-4px); box-shadow: 0 8px 36px rgba(0,0,0,.13); }
.eco-icon { width: 52px; height: 52px; margin: 0 auto 1.2rem; display: flex; align-items: center; justify-content: center; border-radius: 50%; background: var(--clr-cream); font-size: 1.3rem; color: var(--clr-olive); }
.eco-card h5 { font-family: var(--font-display); font-size: 1.2rem; font-weight: 700; color: var(--clr-dark); }
.eco-card p { font-size: .95rem; line-height: 1.7; color: var(--clr-muted); }

/* ══════════ CTA BANNER ══════════ */
.cta-banner { position: relative; padding: 6rem 0; background: url(../images/kontakt.jpg) center/cover fixed; }
.cta-banner::before {
  content: ''; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(135deg, rgba(122,170,46,.4) 0%, rgba(26,26,23,.1) 50%, rgba(122,170,46,.25) 100%);
  mix-blend-mode: multiply;
}

.cta-banner .title {
color:rgba(255,255,255,.6);text-shadow:2px 2px 10px #000
}

.cta-banner::after { content: ''; position: absolute; inset: 0; z-index: 1; background: linear-gradient(to bottom, rgba(26,26,23,.15) 0%, rgba(26,26,23,.6) 100%); }
.cta-banner .container { position: relative; z-index: 3; }
.cta-banner h2 { font-family: var(--font-display); font-size: clamp(1.7rem,3.5vw,2.6rem); font-weight: 700; color: #fff; line-height: 1.25; text-shadow: 2px 2px 10px #000; }



/* ── Ceník ke stažení ── */
.cenik-section { padding: 4rem 0; background: var(--clr-accent); }
.cenik-label { color: rgba(255,255,255,.5); }
.cenik-title {
  font-family: var(--font-display); font-size: clamp(1.7rem,3.5vw,2.6rem);
  font-weight: 700; color: #fff; margin-bottom: 1rem;
}
.cenik-desc {
  font-size: 1.05rem; color: rgba(255,255,255,.75); line-height: 1.8;
  max-width: 650px; margin: 0 auto 2rem;
}
.cenik-btns { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }
.cenik-btn-primary {
  display: inline-flex; align-items: center; gap: .6rem;
  background: #fff; color: var(--clr-accent); border-radius: 10px;
  padding: .85rem 2rem; font-size: .92rem; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase; text-decoration: none;
  transition: background .3s, color .3s;
}
.cenik-btn-primary:hover { background: var(--clr-dark); color: #fff; }
.cenik-btn-outline {
  display: inline-flex; align-items: center; gap: .6rem;
  background: transparent; color: #fff; border: 2px solid rgba(255,255,255,.5);
  border-radius: 10px; padding: .85rem 2rem; font-size: .92rem; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase; text-decoration: none;
  transition: all .3s;
}
.cenik-btn-outline:hover { background: #fff; color: var(--clr-accent); border-color: #fff; }


/* ══════════ REALIZACE PAGE ══════════ */
.page-hero {
  position: relative; height: 35vh; min-height: 250px;
  background: url(../images/banner.jpg) center/cover no-repeat;
  display: flex; align-items: center; justify-content: center; text-align: center;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(135deg, rgba(122,170,46,.35) 0%, rgba(26,26,23,.15) 50%, rgba(122,170,46,.2) 100%);
  mix-blend-mode: multiply;
}
.page-hero::after {
  content: ''; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to bottom, rgba(26,26,23,.05) 0%, rgba(26,26,23,.6) 100%);
}
.page-hero-content { position: relative; z-index: 3; }
.page-hero h1 {
  font-family: var(--font-display); font-size: clamp(1.8rem,3.5vw,2.8rem);
  font-weight: 700; color: #fff; text-shadow: 2px 2px 10px #000; margin-bottom: .6rem;
}
.breadcrumb-nav {
  display: flex; align-items: center; justify-content: center; gap: .4rem;
  font-size: 1rem; color: rgba(255,255,255,1);font-weight: 600; 
}
.breadcrumb-nav a { color: rgba(255,255,255,1); text-decoration: none; }
.breadcrumb-nav a:hover { color: #fff; }


.page-intro { padding: 3.5rem 0; background: #fff; }
.page-intro p { font-size: 1.05rem; color: var(--clr-muted); line-height: 1.8; max-width: 800px; margin: 0 auto; }

.gallery { padding: 2rem  0 4rem 0; background: #fff; }
.gallery-card {
  position: relative; overflow: hidden; border-radius: 10px; cursor: pointer;
  box-shadow: 0 4px 24px rgba(0,0,0,.07); transition: box-shadow .4s, transform .4s;
}
.gallery-card img { width: 100%;  object-fit: cover; display: block; transition: transform .6s var(--ease-out); }
.gallery-card:hover img { transform: scale(1.06); }
.gallery-card:hover { box-shadow: 0 8px 36px rgba(0,0,0,.13); transform: translateY(-4px); }
.gallery-card .badge-label {
  position: absolute; bottom: 1rem; left: 1rem; z-index: 2;
  background: rgba(0,0,0,.55); color: #fff; font-size: .8rem; font-weight: 700;
  padding: .4rem .9rem; border-radius: 6px; text-transform: uppercase; letter-spacing: .08em;
}

.bottom-cta { padding: 4rem 0; background: #fff; }
.bottom-cta-card {
  border-radius: 10px; overflow: hidden; box-shadow: 0 4px 24px rgba(0,0,0,.07);
  transition: box-shadow .4s, transform .4s; height: 100%;
}
.bottom-cta-card:hover { box-shadow: 0 8px 36px rgba(0,0,0,.13); transform: translateY(-4px); }
.bottom-cta-card img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }
.bottom-cta-card .card-body { padding: 1.5rem; }
.bottom-cta-card h5 { font-family: var(--font-display); font-size: 1.2rem; font-weight: 700; color: var(--clr-dark); }
.bottom-cta-card p { font-size: .9rem; color: var(--clr-muted); line-height: 1.7; }



/* ══════════ KONTAKT PAGE ══════════ */

.contact-section { padding: 5rem 0 2rem; background: #fff; }

.address-row {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 2.5rem; margin-top: 1.5rem;
}
.address-item {
  display: flex; align-items: center; gap: .6rem; font-size: 1.2rem; color: var(--clr-text);
}
.address-item i { color: var(--clr-accent); font-size: 1.1rem; }
.address-item a { color: var(--clr-text); text-decoration: none; }
.address-item a:hover { color: var(--clr-accent); }

.person-row {
  display: flex; align-items: center; gap: 1.4rem;
  padding: 1.8rem 2rem; background: #fff; border-radius: 10px;
  box-shadow: 0 4px 24px rgba(0,0,0,.07); height: 100%;
  transition: box-shadow .4s, transform .4s;
}
.person-row:hover { box-shadow: 0 8px 36px rgba(0,0,0,.13); transform: translateY(-4px); }
.person-avatar {
  width: 58px; height: 58px; border-radius: 50%; background: var(--clr-accent);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 1.5rem; flex-shrink: 0;
}
.person-row .label-sm { display: block; margin-bottom: .15rem; font-size: .75rem; }
.person-row strong { display: block; font-family: var(--font-display); font-size: 1.2rem; font-weight: 700; color: var(--clr-dark); margin-bottom: .4rem; }
.person-row a { display: flex; align-items: center; gap: .7rem; font-size: 1.1rem; color: var(--clr-muted); text-decoration: none; line-height: 1.6; font-weight: 600; }
.person-row a i { color: var(--clr-accent); font-size: 1.1rem; width: 16px; text-align: center; }
.person-row a:hover { color: var(--clr-accent); }

.contact-form-section { padding: 5rem 0; background: var(--clr-accent); }
.form-green {
  border: none; border-radius: 10px; padding: 1rem 1.2rem;
  font-size: 1.05rem; font-family: var(--font-body);
  background: rgba(255,255,255,1); color: #000;
}
.form-green::placeholder { color: rgba(0,0,0,0.5); }
.form-green:focus { background: rgba(255,255,255,1); box-shadow: 0 0 0 3px rgba(255,255,255,.2); outline: none; }
.btn-submit-white {
  background: #fff; color: var(--clr-accent); border: none; border-radius: 10px;
  padding: 1rem 3rem; font-size: 1rem; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; cursor: pointer; transition: background .3s, color .3s;
  margin-top:15px;
}
.btn-submit-white:hover { background: var(--clr-dark); color: #fff; }
.gdpr-check {
  display: inline-flex; align-items: center; gap: .6rem; cursor: pointer;
  font-size: .9rem; color: rgba(255,255,255,.7);
}
.gdpr-check input[type="checkbox"] {
  width: 18px; height: 18px; accent-color: #fff; cursor: pointer; flex-shrink: 0;
}
.gdpr-check a { color: #fff; text-decoration: underline; }
.gdpr-check a:hover { color: rgba(255,255,255,.7); }

.contact-form-card {
  background: #fff; border-radius: 10px; padding: 2.5rem; height: 100%;
  box-shadow: 0 4px 24px rgba(0,0,0,.07);
}
.contact-form-card h4 {
  font-family: var(--font-display); font-size: 1.4rem; font-weight: 700;
  color: var(--clr-dark); margin-bottom: 1.5rem;
}
.contact-form-card .form-control {
  border: 1px solid rgba(0,0,0,.1); border-radius: 10px; padding: 1rem 1.2rem;
  font-size: 1.05rem; font-family: var(--font-body); background: var(--clr-bg);
  transition: border-color .3s;
}
.contact-form-card .form-control:focus { border-color: var(--clr-accent); box-shadow: 0 0 0 3px rgba(122,170,46,.15); outline: none; }
.contact-form-card textarea { min-height: 180px; resize: vertical; }
.btn-submit {
  background: var(--clr-accent); color: #fff; border: none; border-radius: 10px;
  padding: 1rem 3rem; font-size: 1rem; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; cursor: pointer; transition: background .3s;
}
.btn-submit:hover { background: var(--clr-dark); }

.map-section { padding: 0 0 30px 0 ; background: #fff; }
.map-section .map-label {
  text-align: center; padding: 2.5rem 0 1.5rem;
}
.map-section .map-label p { font-size: .85rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--clr-muted); }
.map-section .map-label h2 {
  font-family: var(--font-display); font-size: clamp(1.4rem,2.5vw,2rem);
  font-weight: 700; color: var(--clr-dark);
}
.map-wrap { width: 100%; height: 400px; border-radius: 10px; overflow: hidden; margin-bottom: 0; }
.map-wrap iframe { width: 100%; height: 100%; border: 0; }






/* ══════════ POPTÁVKA PAGE ══════════ */

.poptavka-section { padding: 5rem 0; background: #fff; }

.poptavka-form-wrap {
  background: var(--clr-accent); border-radius: 10px; padding: 3.5rem 3rem;
}
@media (max-width:767px) { .poptavka-form-wrap { padding: 2rem 1.5rem; } }

 .poptavka-section label {
  color:#fff;
  font-size:14px;
  margin-bottom:5px;
 }


.poptavka-section select.form-green {
  appearance: none; -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23000000' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 1.2rem center;
  cursor: pointer;
}
.poptavka-section select.form-green option { color: #333; background: #fff; }


/* ══════════ O NÁS PAGE ══════════ */


.onas-intro { padding: 5rem 0; background: #fff; }
.onas-intro p { font-size: 1.05rem; color: var(--clr-muted); line-height: 1.8; }

.onas-block { padding: 5rem 0; }
.onas-block.white { background: #fff; }
.onas-block.cream { background: var(--clr-bg); }
.onas-block h2 { font-family: var(--font-display); font-size: clamp(1.5rem,3vw,2.2rem); font-weight: 700; color: var(--clr-dark); margin-bottom: 1.5rem; }
.onas-block p { font-size: 1.05rem; color: var(--clr-muted); line-height: 1.8; }
.onas-block img { width: 100%; border-radius: 10px; object-fit: cover; }

.onas-values { padding: 5rem 0; background: #fff; }
.value-card {
  text-align: center; padding: 2.5rem 1.5rem; border-radius: 10px;
  box-shadow: 0 4px 24px rgba(0,0,0,.07); background: #fff; height: 100%;
  transition: box-shadow .4s, transform .4s;
}
.value-card:hover { box-shadow: 0 8px 36px rgba(0,0,0,.13); transform: translateY(-4px); }
.value-icon {
  width: 56px; height: 56px; border-radius: 50%; background: var(--clr-accent);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 1.4rem; margin: 0 auto 1.2rem;
}
.value-card h5 { font-family: var(--font-display); font-size: 1.15rem; font-weight: 700; color: var(--clr-dark); margin-bottom: .8rem; }
.value-card p { font-size: .95rem; color: var(--clr-muted); line-height: 1.7; }

.onas-hours { padding: 5rem 0; background: var(--clr-bg); }
.hours-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 1.5rem; margin-top: 2rem; }
.hours-item {
  background: #fff; border-radius: 10px; padding: 1.5rem 2.5rem; text-align: center;
  box-shadow: 0 4px 24px rgba(0,0,0,.07); min-width: 160px;
}
.hours-item h5 { font-family: var(--font-display); font-size: 1rem; font-weight: 700; color: var(--clr-dark); margin-bottom: .4rem; }
.hours-item span { font-size: 1.1rem; color: var(--clr-accent); font-weight: 600; }
.hours-item span.closed { color: var(--clr-muted); }



/* ══════════ KE STAŽENÍ PAGE ══════════ */

.download-intro { padding: 4rem 0; background: #fff; }
.download-intro p { font-size: 1.05rem; color: var(--clr-muted); line-height: 1.8; max-width: 700px; margin: 0 auto; }

.download-section { padding: 0 0 5rem; background: #fff; }
.download-group-title {
  font-family: var(--font-display); font-size: 1.3rem; font-weight: 700;
  color: var(--clr-dark); margin-bottom: 1.5rem; padding-bottom: .8rem;
  border-bottom: 2px solid var(--clr-accent);
}

.dl-card {
  display: flex; align-items: center; gap: 1.2rem;
  padding: 1.5rem 1.8rem; background: #fff; border-radius: 10px;
  box-shadow: 0 4px 24px rgba(0,0,0,.07); height: 100%;
  transition: box-shadow .4s, transform .4s; text-decoration: none;
}
.dl-card:hover { box-shadow: 0 8px 36px rgba(0,0,0,.13); transform: translateY(-4px); }
.dl-icon {
  width: 56px; height: 56px; border-radius: 12px; background: var(--clr-accent);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 1.5rem; flex-shrink: 0;
}
.dl-card .dl-info { flex: 1; }
.dl-card .dl-info h3 {
  font-family: var(--font-display); font-size: 1.05rem; font-weight: 700;
  color: var(--clr-dark); margin: 0 0 .25rem;
}
.dl-card .dl-info p { font-size: .85rem; color: var(--clr-muted); margin: 0; line-height: 1.4; }
.dl-card .dl-info .dl-meta { font-size: .75rem; color: var(--clr-muted); margin-top: .3rem; opacity: .7; }
.dl-arrow {
  width: 36px; height: 36px; border-radius: 50%; background: var(--clr-bg);
  display: flex; align-items: center; justify-content: center;
  color: var(--clr-accent); font-size: 1rem; flex-shrink: 0;
  transition: background .3s, color .3s;
}
.dl-card:hover .dl-arrow { background: var(--clr-accent); color: #fff; }



/* ══════════ PRODUKTY PAGE ══════════ */


.produkty-section { padding: 5rem 0; background: #fff; }

.produkty-section.top { padding: 0rem 0 5rem 0; background: #fff; }

.cat-filter {
  display: flex; flex-wrap: wrap; justify-content: center; gap: .6rem; margin-bottom: 3rem;
}
.cat-filter button {
  background: transparent; border: 1px solid rgba(0,0,0,.12); border-radius: 10px;
  padding: .5rem 1.4rem; font-size: .9rem; font-family: var(--font-body); font-weight: 600;
  color: var(--clr-text); cursor: pointer; transition: all .3s;
}
.cat-filter button:hover, .cat-filter button.active {
  background: var(--clr-accent); color: #fff; border-color: var(--clr-accent);
}

.prod-card {
  border-radius: 10px; overflow: hidden; background: #fff; position: relative;
  box-shadow: 0 4px 24px rgba(0,0,0,.07); transition: box-shadow .4s, transform .4s;
}
.prod-card:hover { box-shadow: 0 8px 36px rgba(0,0,0,.13); transform: translateY(-4px); }
.prod-card .img-wrap { overflow: hidden; /*aspect-ratio: 4/5;*/ position: relative; }
.prod-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease-out); }
.prod-card:hover img { transform: scale(1.06); }
.prod-card .img-wrap::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(26,26,23,.7) 0%, rgba(26,26,23,0) 50%);
}
.prod-card .card-body {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 2;
  padding: 1.8rem; text-align: center;
}
.prod-card h5 {
  font-family: var(--font-display); font-size: 1.5rem; font-weight: 700;
  color: #fff; margin-bottom: 0; letter-spacing: .03em;
  text-shadow: 2px 2px 10px rgba(0,0,0,.4);
}
.prod-card .cat-label { font-size: .8rem; color: var(--clr-muted); letter-spacing: .06em; }
.prod-card .price { font-size: 1.05rem; color: var(--clr-accent); font-weight: 700; margin-top: .5rem; display: block; }
.prod-card a { text-decoration: none; }

.ral-banner {
  padding: 4rem 0; background: var(--clr-bg);
}
.ral-card {
  background: #fff; border-radius: 10px; padding: 2.5rem; text-align: center;
  box-shadow: 0 4px 24px rgba(0,0,0,.07); height: 100%;
  transition: box-shadow .4s, transform .4s;
}
.ral-card:hover { box-shadow: 0 8px 36px rgba(0,0,0,.13); transform: translateY(-4px); }
.ral-card i { font-size: 2.5rem; color: var(--clr-accent); margin-bottom: 1rem; display: block; }
.ral-card h5 { font-family: var(--font-display); font-size: 1.15rem; font-weight: 700; color: var(--clr-dark); margin-bottom: .6rem; }
.ral-card p { font-size: .95rem; color: var(--clr-muted); line-height: 1.7; }

.projekt-cta {
  padding: 5rem 0; background: var(--clr-accent); text-align: center;
}

.btn-ral-cta {
  display: inline-block; margin-top: 1.2rem;
  background: var(--clr-accent); color: #fff; border: none; border-radius: 10px;
  padding: .75rem 2rem; font-size: .9rem; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; text-decoration: none; transition: background .3s;
}
.btn-ral-cta:hover { background: var(--clr-dark); color: #fff; }

.projekt-cta h2 { font-family: var(--font-display); font-size: clamp(1.5rem,3vw,2.2rem); font-weight: 700; color: #fff; margin-bottom: 1rem; }
.projekt-cta p { color: rgba(255,255,255,.75); font-size: 1.05rem; max-width: 600px; margin: 0 auto 2rem; line-height: 1.7; }
.btn-white-outline {
  background: transparent; color: #fff; border: 2px solid rgba(255,255,255,.5); border-radius: 10px;
  padding: .9rem 2.5rem; font-size: .95rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; text-decoration: none; transition: all .3s; display: inline-block;
}
.btn-white-outline:hover { background: #fff; color: var(--clr-accent); border-color: #fff; }


/*******Obecná podstrana**********/

.default-page {
padding:40px 0 40px 0;
background:#fff;
}


/* ══════════ PALETA RAL PAGE ══════════ */


.ral-intro { padding: 4rem 0 2rem 0; background: #fff; }
.ral-intro p { font-size: 1.05rem; color: var(--clr-muted); line-height: 1.8; max-width: 800px; margin: 0 auto; }
.ral-steps { display: flex; flex-wrap: wrap; justify-content: center; gap: 1.5rem; margin-top: 2rem; }
.ral-step {
  display: flex; align-items: center; gap: .8rem;
  background: var(--clr-bg); border-radius: 10px; padding: 1rem 1.5rem;
}
.ral-step-num {
  width: 36px; height: 36px; border-radius: 50%; background: var(--clr-accent);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 700; font-size: .95rem; flex-shrink: 0;
}
.ral-step span { font-size: .95rem; color: var(--clr-text); font-weight: 500; }

.ral-grid-section { padding: 3rem 0 5rem; background: #fff; }
.ral-swatch {
  border-radius: 10px; overflow: hidden; text-align: center;
  box-shadow: 0 2px 12px rgba(0,0,0,.06); transition: transform .3s, box-shadow .3s;
}
.ral-swatch:hover { transform: translateY(-3px); box-shadow: 0 6px 24px rgba(0,0,0,.12); }
.ral-color { aspect-ratio: 1; width: 100%; }
.ral-swatch span {
  display: block; padding: .5rem; font-size: .75rem; font-weight: 700;
  letter-spacing: .06em; color: var(--clr-dark); background: #fff;
}

.care-section { padding: 5rem 0; background: var(--clr-bg); }
.care-section h2 {
  font-family: var(--font-display); font-size: clamp(1.5rem,3vw,2.2rem);
  font-weight: 700; color: var(--clr-dark); margin-bottom: 1.5rem;
}
.care-section p { font-size: 1.05rem; color: var(--clr-muted); line-height: 1.8; }


/* ══════════ MATERIÁLY PAGE ══════════ */


.mat-intro { padding: 4rem 0; background: #fff; }
.mat-intro p { font-size: 1.05rem; color: var(--clr-muted); line-height: 1.8; max-width: 800px; margin: 0 auto; }
.mat-steps { display: flex; flex-wrap: wrap; justify-content: center; gap: 1.5rem; margin-top: 2rem; }
.mat-step {
  display: flex; align-items: center; gap: .8rem;
  background: var(--clr-bg); border-radius: 10px; padding: 1rem 1.5rem;
}
.mat-step-num {
  width: 36px; height: 36px; border-radius: 50%; background: var(--clr-accent);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 700; font-size: .95rem; flex-shrink: 0;
}
.mat-step span { font-size: .95rem; color: var(--clr-text); font-weight: 500; }
.mat-note { font-size: .85rem; color: var(--clr-muted); font-style: italic; margin-top: 1.5rem; }

.mat-grid { padding: 0 0 5rem; background: #fff; }
.mat-card {
  position: relative; border-radius: 10px; overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,.07); transition: box-shadow .4s, transform .4s;
}
.mat-card:hover { box-shadow: 0 8px 36px rgba(0,0,0,.13); transform: translateY(-4px); }
.mat-card img { width: 100%;  object-fit: cover; display: block; transition: transform .6s var(--ease-out); }
.mat-card:hover img { transform: scale(1.05); }
.mat-card .mat-overlay {
  position: absolute; inset: 0; z-index: 2;
  background: linear-gradient(to top, rgba(26,26,23,.7) 0%, rgba(26,26,23,0) 50%);
  display: flex; flex-direction: column; justify-content: flex-end; padding: 1.5rem;
}
.mat-card .mat-overlay h5 {
  font-family: var(--font-display); font-size: 1.4rem; font-weight: 700;
  color: #fff; margin-bottom: .2rem; text-shadow: 1px 1px 6px rgba(0,0,0,.3);
}
.mat-card .mat-overlay span {
  font-size: .8rem; letter-spacing: .15em; text-transform: uppercase;
  color: rgba(255,255,255,.7); font-weight: 600;
}
.mat-card a { text-decoration: none; display: block; }




/* ══════════ TKANINA RAINBOW PAGE ══════════ */


.tk-intro { padding: 4rem 0; background: #fff; }
.tk-intro p { font-size: 1.05rem; color: var(--clr-muted); line-height: 1.8; max-width: 800px; margin: 0 auto; }

.tk-grid { padding: 0 0 5rem; background: #fff; }
.tk-swatch {
  border-radius: 10px; overflow: hidden; text-align: center;
  box-shadow: 0 2px 12px rgba(0,0,0,.06); transition: transform .3s, box-shadow .3s;
}
.tk-swatch:hover { transform: translateY(-3px); box-shadow: 0 6px 24px rgba(0,0,0,.12); }
.tk-swatch img { width: 100%; aspect-ratio: 1; object-fit: cover; display: block; }
.tk-swatch span {
  display: block; padding: .6rem; font-size: .8rem; font-weight: 700;
  letter-spacing: .06em; color: var(--clr-dark); background: #fff;
}

.tk-spec { padding: 5rem 0; background: var(--clr-bg); }
.tk-spec h2 {
  font-family: var(--font-display); font-size: clamp(1.5rem,3vw,2.2rem);
  font-weight: 700; color: var(--clr-dark); margin-bottom: 1.5rem;
}
.tk-spec p { font-size: 1.05rem; color: var(--clr-muted); line-height: 1.8; }
.spec-table { width: 100%; border-collapse: collapse; margin-top: 1.5rem; }
.spec-table tr { border-bottom: 1px solid rgba(0,0,0,.06); }
.spec-table td { padding: .8rem .5rem; font-size: .95rem; color: var(--clr-text); }
.spec-table td:first-child { font-weight: 700; color: var(--clr-dark); width: 40%; }

.tk-care { padding: 5rem 0; background: #fff; }
.tk-care h2 {
  font-family: var(--font-display); font-size: clamp(1.5rem,3vw,2.2rem);
  font-weight: 700; color: var(--clr-dark); margin-bottom: 1.5rem;
}
.tk-care p { font-size: 1.05rem; color: var(--clr-muted); line-height: 1.8; }



/* ══════════ PRODUKT DETAIL PAGE ══════════ */

.product-detail { padding: 4rem 0; background: #fff; }
.product-gallery { position: relative; overflow: hidden; }
.product-main-img {
  width: 100%; max-width: 100%; height: auto;object-fit: cover; border-radius: 10px;
  box-shadow: 0 4px 24px rgba(0,0,0,.07); display: block;
}
.product-thumbs { display: flex; gap: 1rem; margin-top: 1rem; overflow-x: auto; }
.product-thumbs img {
  width: 100px; height: 100px; min-width: 100px; object-fit: cover; border-radius: 8px; cursor: pointer;
  border: 2px solid #d4d4d4;  transition: all .3s; padding:5px;
/*  box-shadow: 0 4px 4px rgba(0,0,0,.27);    */
}
.product-thumbs img:hover, .product-thumbs img.active { border-color: var(--clr-accent); opacity: 1; }
@media (max-width:575px) {
  .product-main-img { aspect-ratio: 1; }
  .product-thumbs img { width: 52px; height: 52px; min-width: 52px; }
}

.product-info .label-sm { margin-bottom: .5rem; }
.product-info h1 {
  font-family: var(--font-display); font-size: clamp(1.8rem,3vw,2.6rem);
  font-weight: 700; color: var(--clr-dark); margin-bottom: .8rem;
}

.product-info h2 {
  font-family: var(--font-display); font-size: clamp(1.8rem,3vw,2.6rem);
  font-weight: 700; color: var(--clr-dark); margin-bottom: .8rem;
}
.product-price {
  font-family: var(--font-display); font-size: 1.6rem; font-weight: 700;
  color: var(--clr-accent); margin-bottom: 1.5rem;
}
.product-desc { font-size: 1.05rem; color: var(--clr-muted); line-height: 1.8; margin-bottom: 2rem; }
.product-meta { font-size: .88rem; color: var(--clr-muted); margin-bottom: .4rem; }
.product-meta strong { color: var(--clr-dark); }

.btn-poptavka {
  display: inline-flex; align-items: center; gap: .7rem;
  background: var(--clr-accent); color: #fff; border: none; border-radius: 10px;
  padding: 1rem 2.5rem; font-size: 1.05rem; font-weight: 700; letter-spacing: .06em;
  text-transform: uppercase; text-decoration: none; cursor: pointer; transition: background .3s;
}
.btn-poptavka:hover { background: var(--clr-dark); color: #fff; }
.btn-poptavka i { font-size: 1.1rem; }

.product-composition { margin-bottom: 2rem; }
.comp-title {
  font-family: var(--font-display); font-size: .85rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase; color: var(--clr-dark); margin-bottom: 1rem;
}
.comp-grid { display: grid; grid-template-columns: 1fr 1fr; gap: .6rem; }
.comp-item {
  display: flex; align-items: center; gap: .6rem;
  padding: .7rem 1rem; background: var(--clr-bg); border-radius: 10px;
}
.comp-icon {
  width: 28px; height: 28px; border-radius: 50%; background: var(--clr-accent);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: .8rem; flex-shrink: 0;
}
.comp-item span { font-size: .95rem; font-weight: 600; color: var(--clr-dark); }

.composition-section { padding: 4rem 0; background: var(--clr-bg); }
.comp-card {
  background: #fff; border-radius: 10px; overflow: hidden; text-align: center;
  box-shadow: 0 4px 24px rgba(0,0,0,.07); transition: box-shadow .4s, transform .4s;
}
.comp-card:hover { box-shadow: 0 8px 36px rgba(0,0,0,.13); transform: translateY(-4px); }
.comp-card img { width: 100%; aspect-ratio: 1; object-fit: cover; }
.comp-card h5 {
  font-family: var(--font-display); font-size: 1rem; font-weight: 700;
  color: var(--clr-dark); padding: 1rem; margin: 0;
}

.features-section { padding: 4rem 0 4rem 0; background: #fff; }
.feature-item {
  text-align: center; padding: 2rem 1.2rem; background: #fff; border-radius: 10px;
  box-shadow: 0 4px 24px rgba(0,0,0,.07); height: 100%;
  transition: box-shadow .4s, transform .4s;
}
.feature-item:hover { box-shadow: 0 8px 36px rgba(0,0,0,.13); transform: translateY(-4px); }
.feature-icon {
  width: 52px; height: 52px; border-radius: 50%; background: var(--clr-accent);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 1.3rem; margin: 0 auto 1rem;
}
.feature-item h5 { font-family: var(--font-display); font-size: 1rem; font-weight: 700; color: var(--clr-dark); margin-bottom: .5rem; }
.feature-item p { font-size: .9rem; color: var(--clr-muted); line-height: 1.6; }

.tech-section { padding: 4rem 0; background: #fff; }
.tech-table { width: 100%; border-collapse: collapse; }
.tech-table tr { border-bottom: 1px solid rgba(0,0,0,.06); }
.tech-table td { padding: 1rem .5rem; font-size: .95rem; color: var(--clr-text); vertical-align: top; }
.tech-table td:first-child { font-weight: 700; color: var(--clr-dark); width: 35%; }

.related-section { background: var(--clr-bg); }
.related-card {
  border-radius: 10px; overflow: hidden; background: #fff;
  box-shadow: 0 4px 24px rgba(0,0,0,.07); transition: box-shadow .4s, transform .4s;
}
.related-card:hover { box-shadow: 0 8px 36px rgba(0,0,0,.13); transform: translateY(-4px); }
.related-card img { width: 100%; aspect-ratio: 1; object-fit: cover; }
.related-card .card-body { padding: 1rem 1.2rem; }
.related-card h5 { font-family: var(--font-display); font-size: 1rem; font-weight: 700; color: var(--clr-dark); margin: 0; }
.related-card a { text-decoration: none; }



.dims-section { padding: 0rem 0 3rem 0; background: #fff; }
.dim-list { display: flex; flex-direction: column; }
.dim-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 1rem 0; border-bottom: 1px solid rgba(0,0,0,.06); font-size: 1.05rem;
}
.dim-row:last-child { border-bottom: none; }
.dim-row span { color: var(--clr-muted); }
.dim-row strong { font-family: var(--font-display); font-weight: 700; color: var(--clr-dark); font-size: 1.1rem; }
 .dims-section img.rozmer {
  margin: 0 auto;
  display: block;
  text-align: center;
 }

/* ══════════ FOOTER ══════════ */
.site-footer { background: var(--clr-dark); color: rgba(255,255,255,.6); padding: 4rem 0 1.5rem; }
.site-footer h3 { font-family: var(--font-display); font-size: 1.3rem; font-weight: 700; color: #fff; margin-bottom: 1rem; }
.site-footer a { color: rgba(255,255,255,.6); text-decoration: none; font-size: .95rem; transition: color .3s; }
.site-footer a:hover { color: var(--clr-accent-light); }
.site-footer ul { list-style: none; padding: 0; }
.site-footer ul li { margin-bottom: .45rem; }
.footer-brand { font-family: var(--font-display); font-size: 1.3rem; font-weight: 400; color: #fff; }
.footer-brand .leaf { color: var(--clr-olive); }
.footer-contact p { font-size: .95rem; margin-bottom: .4rem; }
.footer-contact i { color: var(--clr-accent-light); margin-right: 0.4em; width: 20px; text-align: center; font-size:20px;}
.footer-contact .footer-social i {
margin-right:0px;
}


.footer-social a {
  width: 34px; height: 34px; border: 1px solid rgba(255,255,255,.15); border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center; margin-right: .5rem;
  transition: border-color .3s, background .3s; font-size: .85rem; color: rgba(255,255,255,.6);
}
.footer-social a:hover { border-color: var(--clr-accent-light); background: rgba(184,158,120,.1); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding-top: 1.5rem; margin-top: 3rem; font-size: .88rem; }


/* ══════════ NÁBYTEK NA MÍRU PAGE ══════════ */
.page-hero-miru {
  position: relative; height: 45vh; min-height: 300px;
  background: url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c?w=1800&q=80') center/cover no-repeat;
  display: flex; align-items: center; justify-content: center; text-align: center;
}
.page-hero-miru::before {
  content: ''; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(135deg, rgba(122,170,46,.35) 0%, rgba(26,26,23,.15) 50%, rgba(122,170,46,.2) 100%);
  mix-blend-mode: multiply;
}
.page-hero-miru::after {
  content: ''; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to bottom, rgba(26,26,23,.05) 0%, rgba(26,26,23,.6) 100%);
}
.page-hero-miru .hero-inner { position: relative; z-index: 3; }
.page-hero-miru .label-sm { color: rgba(255,255,255,.6); }
.page-hero-miru h1 {
  font-family: var(--font-display); font-size: clamp(1.8rem,3.5vw,2.8rem);
  font-weight: 700; color: #fff; text-shadow: 2px 2px 10px #000; margin-bottom: .6rem;
}
.breadcrumb-nav { display: flex; align-items: center; justify-content: center; gap: .4rem; font-size: .85rem; color: rgba(255,255,255,.7); }
.breadcrumb-nav a { color: rgba(255,255,255,.7); text-decoration: none; }
.breadcrumb-nav a:hover { color: #fff; }
.breadcrumb-nav .sep { margin: 0 .3rem; }
.breadcrumb-nav .current { color: #fff; font-weight: 600; }
.miru-intro { padding: 5rem 0; background: #fff; }
.miru-intro p { font-size: 1.05rem; color: var(--clr-muted); line-height: 1.8; }
.miru-steps { padding: 5rem 0; background: var(--clr-bg); }
.step-card { display: flex; gap: 1.5rem; align-items: flex-start; padding: 2.5rem; background: #fff; border-radius: 10px; box-shadow: 0 4px 24px rgba(0,0,0,.07); height: 100%; transition: box-shadow .4s, transform .4s; }
.step-card:hover { box-shadow: 0 8px 36px rgba(0,0,0,.13); transform: translateY(-4px); }
.step-num { width: 52px; height: 52px; border-radius: 50%; background: var(--clr-accent); display: flex; align-items: center; justify-content: center; color: #fff; font-family: var(--font-display); font-size: 1.3rem; font-weight: 700; flex-shrink: 0; }
.step-card h4 { font-family: var(--font-display); font-size: 1.15rem; font-weight: 700; color: var(--clr-dark); margin-bottom: .6rem; }
.step-card p { font-size: .95rem; color: var(--clr-muted); line-height: 1.7; margin: 0; }
.miru-cta { padding: 5rem 0; background: var(--clr-accent); text-align: center; }
.miru-cta h2 { font-family: var(--font-display); font-size: clamp(1.5rem,3vw,2.2rem); font-weight: 700; color: #fff; margin-bottom: 1rem; }
.miru-cta p { color: rgba(255,255,255,.75); font-size: 1.05rem; max-width: 600px; margin: 0 auto 2rem; line-height: 1.7; }
.miru-cta-btn { display: inline-block; background: #fff; color: var(--clr-accent); border-radius: 10px; padding: 1rem 3rem; font-size: 1rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; text-decoration: none; transition: background .3s, color .3s; }
.miru-cta-btn:hover { background: var(--clr-dark); color: #fff; }
.miru-gallery { padding: 5rem 0; background: #fff; }
.miru-gallery-card { border-radius: 10px; overflow: hidden; box-shadow: 0 4px 24px rgba(0,0,0,.07); transition: box-shadow .4s, transform .4s; }
.miru-gallery-card:hover { box-shadow: 0 8px 36px rgba(0,0,0,.13); transform: translateY(-4px); }
.miru-gallery-card img { width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block; transition: transform .6s var(--ease-out); }
.miru-gallery-card:hover img { transform: scale(1.05); }



.bg-white {
background:#fff;
padding: 0rem 0 4rem 0;
}

.miru-banner {
  position: relative; overflow: hidden; border-radius: 10px;
 background: var(--clr-accent);

}
.miru-banner::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(122,170,46,.85) 0%, rgba(26,26,23,.7) 100%);
}
.miru-banner-inner {
  position: relative; z-index: 2; display: flex; align-items: center;
  justify-content: space-between; gap: 2rem; padding: 3rem 3.5rem;
  flex-wrap: wrap;
}
.miru-banner-text h3 {
  font-family: var(--font-display); font-size: 1.7rem; font-weight: 700;
  color: #fff; margin-bottom: .5rem;
}
.miru-banner-text p {
  font-size: 1rem; color: rgba(255,255,255,.75); margin: 0; max-width:767px; line-height: 1.6;
}
.miru-banner-btn {
  display: inline-flex; align-items: center; gap: .6rem;
  background: #fff; color: var(--clr-accent); border-radius: 10px;
  padding: .9rem 2.2rem; font-size: .92rem; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase; text-decoration: none;
  transition: background .3s, color .3s; flex-shrink: 0;
}
.miru-banner-btn:hover { background: var(--clr-dark); color: #fff; }
@media (max-width:767px) {
  .miru-banner-inner { padding: 2rem 1.5rem; flex-direction: column; text-align: center; }
  .miru-banner-text p { max-width: 100%; }
}





/* ── Blog ── */
.blog-section { padding: 5rem 0; background: #fff; }
.blog-card {
  display: block; background: #fff; border-radius: 10px; overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,.07); text-decoration: none;
  transition: box-shadow .4s, transform .4s; height: 100%;
}
.blog-card:hover { box-shadow: 0 8px 36px rgba(0,0,0,.13); transform: translateY(-4px); }
.blog-img-wrap { overflow: hidden; }
.blog-img-wrap img { width: 100%; aspect-ratio: 16/10; object-fit: cover; display: block; transition: transform .6s var(--ease-out); }
.blog-card:hover .blog-img-wrap img { transform: scale(1.05); }
.blog-body { padding: 1.5rem; }
.blog-date { font-size: .75rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--clr-accent); }
.blog-body h5 { font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; color: var(--clr-dark); margin: .6rem 0 .5rem; line-height: 1.4; }
.blog-body p { font-size: .9rem; color: var(--clr-muted); line-height: 1.6; margin: 0; }
.btn-blog {
  display: inline-flex; align-items: center; gap: .5rem;
  color: var(--clr-accent); font-weight: 700; text-decoration: none; font-size: 1rem;
  transition: color .3s;    text-transform: uppercase;
}
.btn-blog:hover { color: var(--clr-dark); }