.legal-page { max-width: 820px; padding-block: 90px 120px; }
.legal-page h1 { margin-bottom: 28px; font-size: 65px; }
.legal-page h2 { margin-top: 46px; font-size: 40px; letter-spacing: -.8px; }
.legal-page p { max-width: 700px; color: var(--muted); font-size: 16px; }
.legal-page .legal-intro { margin-bottom: 38px; font-size: 16px; }
.legal-page .eyebrow { font-size: 20px; }
.legal-page strong { color: var(--ink); }
.nav-active { color: var(--orange) !important; font-weight: 700; }
.shop-hero { display: grid; align-items: center; padding-block: 95px 105px; }.shop-hero h1 { font-size: clamp(58px, 8vw, 100px); }.shop-hero > div > p:last-child { max-width: 480px; margin: 30px 0 0; color: var(--muted); font-size: 17px; }.shop-catalog { padding-block: 100px 120px; }.catalog-toolbar { display: flex; align-items: end; justify-content: space-between; gap: 40px; margin-bottom: 52px; }.catalog-toolbar h2 { font-size: clamp(42px, 5vw, 66px); }.category-filter { display: flex; flex-wrap: wrap; gap: 8px; }.filter-button { border: 1px solid rgba(245,255,250,.3); padding: 10px 14px; background: transparent; color: var(--muted); font: 600 12px var(--body); cursor: pointer; }.filter-button.is-active, .filter-button:hover { border-color: #c72c2c; background: #c72c2c; color: #fff; }.shop-product-grid { grid-template-columns: repeat(4, 1fr); }.product-category { min-height: auto !important; margin: 0 0 10px !important; color: #c72c2c !important; font-size: 10px !important; letter-spacing: 1px; text-transform: uppercase; }.empty-products { padding: 35px; background: #374151; color: var(--muted); text-align: center; border-radius: 8px; }.shop-preview { display: flex; align-items: center; justify-content: space-between; gap: 40px; padding-block: 95px; }.shop-preview h2 { font-size: clamp(42px, 5vw, 66px); }.shop-preview p:last-child { max-width: 430px; color: var(--muted); }.shop-order-note { background: var(--accent); }.order-note-inner { display: grid; grid-template-columns: .8fr 1.2fr; gap: 80px; padding-block: 100px; }.order-note-inner h2 { font-size: clamp(42px, 5vw, 66px); }.order-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px; align-self: center; }.order-steps b { color: var(--orange); font: 700 12px var(--body); }.order-steps p { margin-top: 35px; font-size: 14px; }.cart-button span { display: grid; min-width: 20px; min-height: 20px; place-items: center; border-radius: 50%; background: var(--accent); color: var(--ink); font-size: 11px; }
.order-form { display: flex; flex-direction: column; gap: 14px; }
.order-field { display: flex; flex-direction: column; gap: 6px; font: 600 12px var(--body); color: var(--muted); }
.order-field[hidden] { display: none; }
.order-field input, .order-field textarea { padding: 10px 12px; border: 1px solid rgba(245,255,250,.3); background: #101010; color: var(--ink); font: 400 14px var(--body); }
.order-fieldset { border: 1px solid var(--line); padding: 10px 12px; }
.order-fieldset legend { padding: 0 4px; }
.order-fieldset label { display: flex; align-items: center; gap: 8px; margin-top: 8px; font: 400 13px var(--body); color: var(--ink); }
.order-fieldset label:first-of-type { margin-top: 4px; }
.order-payment-info { margin: 0; font-size: 12px; color: var(--muted); }
.checkout-page { padding-block: 90px 120px; }
.checkout-page h1 { margin-top: 12px; font-size: 65px; }
.checkout-layout { display: grid; grid-template-columns: .9fr 1.1fr; gap: 60px; margin-top: 45px; align-items: start; }
.checkout-summary { padding: 28px; background: #374151; color: var(--ink); border-radius: 8px; }
.checkout-summary h2 { margin-bottom: 18px; font-size: 22px; }
.checkout-items .cart-item { display: flex; justify-content: space-between; gap: 10px; padding: 12px 0; border-bottom: 1px solid rgba(245,255,250,.16); }
.checkout-items .cart-item:last-child { border-bottom: none; }
.checkout-total { display: grid; grid-template-columns: 1fr auto; gap: 6px 10px; margin-top: 16px; padding-top: 16px; border-top: 1px solid rgba(245,255,250,.16); }
.checkout-total span:last-child { text-align: right; }
.checkout-total span:nth-child(3), .checkout-total span:nth-child(4) { padding-top: 8px; border-top: 1px solid rgba(245,255,250,.16); font-size: 20px; font-weight: 700; }
.checkout-empty a { color: var(--orange); }
.qty-control { display: inline-flex; align-items: center; gap: 8px; }
.qty-btn { width: 26px; height: 26px; border: 1px solid rgba(245,255,250,.3); background: transparent; color: var(--ink); font-size: 16px; line-height: 1; cursor: pointer; border-radius: 4px; }
.qty-btn:hover { border-color: var(--ink); }
.qty-input { width: 44px; padding: 4px; border: 1px solid rgba(245,255,250,.3); background: #101010; color: var(--ink); text-align: center; font: 400 14px var(--body); }
.qty-input::-webkit-inner-spin-button, .qty-input::-webkit-outer-spin-button { margin: 0; }
@media (max-width: 850px) { .checkout-layout { grid-template-columns: 1fr; } }.cart-drawer { position: fixed; z-index: 50; top: 0; right: 0; bottom: 0; width: min(420px, 100%); display: flex; flex-direction: column; padding: 30px; background: #1c1c1c; color: var(--ink); box-shadow: -10px 0 35px rgba(0,0,0,.4); transform: translateX(105%); transition: transform .25s ease; }.cart-drawer.is-open { transform: translateX(0); }.cart-drawer-head { display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid rgba(245,255,250,.16); padding-bottom: 22px; }.cart-drawer-head h2 { font-size: 30px; }.close-cart { border: 0; background: transparent; color: var(--ink); font-size: 30px; cursor: pointer; }.cart-items { flex: 1; padding-block: 20px; overflow-y: auto; }.cart-empty { color: var(--muted); }.cart-item { display: flex; align-items: center; justify-content: space-between; gap: 15px; border-bottom: 1px solid rgba(245,255,250,.16); padding: 17px 0; }.cart-item strong, .cart-item span { display: block; }.cart-item span { margin-top: 5px; color: var(--muted); font-size: 13px; }.remove-item { border: 0; background: transparent; color: var(--orange); font-size: 23px; cursor: pointer; }.cart-drawer-foot { border-top: 1px solid rgba(245,255,250,.16); padding-top: 20px; }.cart-drawer-foot p { color: var(--muted); font-size: 12px; }.drawer-backdrop { position: fixed; z-index: 40; inset: 0; display: none; background: rgba(0,0,0,.5); }.drawer-backdrop.is-visible { display: block; }
/* Hlavni design webu: zde men barvy, fonty a zakulaceni. */
:root {
  --ink: #F5FFFA; /* Zakladni barva textu na tmavem pozadi a barva ikon. */
  --muted: #65716b; /* Tlumeny text: popisy, doplnkove informace a mene dulezite odkazy. */
  --paper: #1c1c1c; /* Hlavni barva pozadi cele stranky. */
  --white: #F5FFFA; /* Svetla barva karet, formularu a dalsich svetlych ploch. */
  --line: #F5FFFA; /* Barva jemnych oddelovacich car a okraju. */
  --accent: #d9f05b; /* Limetkova barva hlavniho tlacitka, odznaku a vyraznych doplnku. */
  --orange: #f26b4f; /* Oranzova barva zvyraznenych casti nadpisu, odkazu a ikon. */
  --dark: #21332e; /* Tmave pozadi sluzeb, e-shopu a paticky. */
  --display: 'Space Grotesk', sans-serif; /* Font pro nadpisy, logo a vyrazne titulky. */
  --body: 'Space Grotesk', sans-serif; /* Font pro bezny text, navigaci, tlacitka a popisy. */
  --radius: 2px; /* Velikost zaobleni rohu: 0 = ostre rohy, vyssi cislo = mekci rohy. */
}

* { box-sizing: border-box; }
html { overflow-x: hidden; scroll-behavior: smooth; }
body { min-width: 0; margin: 0; overflow-x: hidden; background: var(--paper); color: var(--ink); font-family: var(--body); font-size: 16px; line-height: 1.55; }
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }
code { padding: 2px 5px; background: rgba(23, 35, 31, .08); font-size: .88em; }
/* Vnitrni okraje obsahu pri zachovani plne sirky stranky. */
.section-shell { width: 100%; max-width: none; margin-inline: auto; padding-inline: clamp(18px, max(32px, calc((100vw - 1280px) / 2)), 80px); }
/* Pevne zalozka: zustava viditelna pri rolovani. */
.site-header { position: fixed; top: 0; left: 0; z-index: 20; width: 100%; min-height: 88px; padding: 0 max(18px, calc((100vw - 1280px) / 2)); padding-inline: 3cm; display: flex; align-items: center; justify-content: space-between; gap: 30px; background: rgba(244, 241, 233, .94); backdrop-filter: blur(12px); }
/* Uvolni misto pod pevnym zahlavim, aby neprekrylo uvod. */
main { display: flex; flex-direction: column; gap: 0; padding-top: 88px; padding-bottom: 80px; }
main > section + section { position: relative; border-top: 0; }
main > section + section::before { position: absolute; top: 0; right: 0; left: 0; height: 1px; background: linear-gradient(90deg, transparent 0%, rgba(245,255,250,.04) 20%, rgba(245,255,250,.3) 50%, rgba(245,255,250,.04) 80%, transparent 100%); content: ""; }
.brand { display: inline-flex; align-items: center; gap: 11px; font-family: var(--display); font-size: 20px; font-weight: 500; letter-spacing: -.5px; }
.brand strong { font-weight: 700; }
.brand-mark { display: grid; width: 34px; height: 34px; place-items: center; overflow: hidden; background: var(--ink); color: var(--accent); font: 700 12px var(--display); letter-spacing: 0; }.brand-mark img { width: 100%; height: 100%; object-fit: contain; }.brand-mark img + span { display: none; }
.site-header .brand { gap: 0; }
.site-header .brand-mark { width: clamp(96px, 10vw, 132px); aspect-ratio: 563 / 210; height: auto; flex: 0 0 auto; position: relative; overflow: hidden; background: transparent; border-radius: 0; }
.site-header .brand-mark img { width: 100%; height: 100%; object-fit: contain; }
.site-header .button { padding: 16.5px 22px; gap: 16.5px; font-size: 16px; background: #000; color: #fff; }
.main-nav { display: flex; gap: 34px; margin-left: auto; color: #000; font-size: 16px; }
.main-nav a.nav-mobile-only { display: none; }
.nav-toggle { display: none; flex-direction: column; justify-content: center; gap: 5px; width: 32px; height: 32px; border: 0; background: transparent; padding: 0; cursor: pointer; }
.nav-toggle span { display: block; height: 2px; background: #000; border-radius: 2px; }
@media (max-width: 850px) {
  .nav-toggle { display: flex; }
  .main-nav a.nav-mobile-only { display: block; }
}
.main-nav a { display: inline-block; color: #000; transition: transform .2s ease, -webkit-text-stroke .2s ease; }
.main-nav a:hover, .footer-grid a:hover { color: #000; }
.main-nav a:hover { -webkit-text-stroke: .35px currentColor; transform: translateY(-2px); }
.header-contact { display: inline-block; color: #000; font-size: 16px; transition: transform .2s ease, -webkit-text-stroke .2s ease; }
.header-contact:hover { color: #000; -webkit-text-stroke: .35px currentColor; transform: translateY(-2px); }
/* Spolecny vzhled vsech tlacitek. Barvy tlacitek jsou nize v jejich variantach. */
.button { border: 0; border-radius: var(--radius); display: inline-flex; align-items: center; justify-content: center; gap: 15px; padding: 15px 20px; font: 700 13px var(--body); cursor: pointer; transition: transform .2s ease, background .2s ease; }
.button:hover { transform: translateY(-2px); }
.button-dark { background: var(--ink); color: var(--white); }
.button-accent { background: var(--accent); color: var(--ink); }
.button-light { background: var(--white); color: var(--ink); }
.button-small { padding: 12px 16px; }
/* Hero staví hlavní sdělení vlevo a vizuál vpravo. */
.hero { min-height: 600px; display: grid; align-items: center; padding-block: 76px 92px; background: url("pictures/logo/HERO.png") center / cover no-repeat; }
.hero-copy { width: 100%; max-width: 900px; padding-left: 0; text-align: left; }
.hero h1 { font-size: 65px; }
.hero-actions .button, .hero-actions .text-link { font-size: 16px; }
.section-block .eyebrow { font-size: 20px; }
.section-block .eyebrow, .portfolio-section .eyebrow { font-size: 20px; }
.eyebrow { display: flex; align-items: center; gap: 10px; margin: 0 0 22px; color: var(--orange); font: 700 11px var(--body); letter-spacing: 1.6px; text-transform: uppercase; }
.eyebrow-dot { width: 7px; height: 7px; background: var(--orange); border-radius: 50%; }
h1, h2, h3 { font-family: var(--display); line-height: 1.02; letter-spacing: -2px; margin: 0; }
h1 { max-width: 850px; font-size: clamp(44px, 6vw, 78px); font-weight: 600; }
h1 em, h2 em { color: var(--orange); font-style: normal; }
/* Text pod hlavnim nadpisem uvodni sekce. */
.hero-intro { max-width: 780px; margin: 30px 0 24px; color: #F5FFFA; font-size: 24px; }
.hero-intro-secondary { margin-top: -10px; color: #F5FFFA; font-size: 24px; }
.hero-break { display: inline; }
.hero-actions { display: flex; align-items: center; justify-content: flex-start; gap: 36px; }
.text-link { border-bottom: 1px solid var(--ink); padding-bottom: 3px; font-size: 13px; font-weight: 700; }
.hero .text-link { border: 0; border-radius: 8px; padding: 16.5px 22px; background: #c72c2c; color: #fff; }
.hero .text-link:hover { background: #c72c2c; color: #fff; }
.hero .button-accent { background: #374151; color: #fff; }
.hero .button-accent:hover { background: #374151; color: #fff; }
.text-link span, .card-link span { margin-left: 7px; color: var(--orange); }
.hero-note { display: flex; align-items: center; justify-content: flex-start; gap: 12px; margin-top: 48px; color: var(--muted); font-size: 11px; text-transform: uppercase; letter-spacing: 1px; }
.hero-note-line { width: 28px; height: 1px; background: var(--orange); }
.section-heading h2, .section-heading h2 em { color: #F5FFFA; }
.section-heading h2, .quote-panel h2, .shop-preview h2, .contact-section h2 { font-size: 40px; }
.eyebrow, h1 em, h2 em, .text-link span, .card-link span, .label-bottom strong, .form-placeholder-icon { color: #c72c2c; }
.contact-details { font-size: 24px !important; }
.facebook-button { font-size: 24px !important; }
.site-footer { background: #101010 !important; position: fixed; bottom: 0; left: 0; z-index: 20; width: 100%; padding-top: 0 !important; }
.site-footer, .quote-panel { background: #1c1c1c !important; }
.footer-label { font-size: 14px; }
.footer-grid a:not(.brand) { font-size: 14px; }
.site-footer .footer-label { font-size: 14px !important; }
.site-footer .footer-grid a:not(.brand) { font-size: 14px !important; }
.footer-bottom, .footer-bottom .footer-legal a { font-size: 15px; }
.cart-button, .cart-button:hover { background: #c72c2c !important; color: #fff !important; }
.cart-button span { background: #c72c2c; color: #fff; }
.footer-bottom { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; row-gap: 10px; column-gap: 20px; }
.footer-bottom .footer-contact { text-align: center; }
.footer-bottom .footer-legal { display: inline-flex; gap: 16px; white-space: nowrap; }
.footer-contact { display: inline-flex; gap: 20px; }
.footer-bottom-logo { grid-column: 3; justify-self: end; width: 110px; height: auto; filter: brightness(0) invert(1); }
.site-footer .footer-bottom { display: flex !important; flex-wrap: wrap; align-items: center; justify-content: space-between; }
.site-footer .footer-bottom .footer-contact { text-align: center; }
.site-footer .footer-bottom .footer-legal { white-space: nowrap; }
.shop-page h1, .shop-page .shop-hero h1 { font-size: 65px; }
.shop-page h2, .shop-page .shop-hero h2, .shop-page .catalog-toolbar h2, .shop-page .shop-preview h2 { font-size: 40px; }
.shop-page .eyebrow { font-size: 20px; }
.shop-page p { font-size: 16px; }
.shop-page .button, .shop-page .filter-button, .shop-page .add-to-cart { font-size: 16px; }
.contact-section { padding-top: var(--section-gap); }
.quote-panel { padding-top: var(--section-gap); }
.quote-panel .process-list h2 { font-size: 24px !important; }
.quote-panel .process-list p { font-size: 16px !important; }
body { font-size: 16px; }
.service-card p { font-size: 16px; }
.quote-panel .process-list h2 { font-size: 24px; }
.quote-panel .process-list p { font-size: 16px; }
.contact-details { font-size: 24px; }
.facebook-button { font-size: 24px; }
.quote-panel .process-list h2 { font-size: 16px; }
.hero-visual { position: relative; min-height: 510px; overflow: hidden; background: var(--orange); }
.visual-grid { position: absolute; inset: 0; background-image: linear-gradient(rgba(23,35,31,.12) 1px, transparent 1px), linear-gradient(90deg, rgba(23,35,31,.12) 1px, transparent 1px); background-size: 46px 46px; }
.object-illustration { position: absolute; top: 50%; left: 50%; width: 310px; height: 310px; transform: translate(-50%, -50%) rotate(-22deg); border: 34px solid var(--accent); border-radius: 50%; box-shadow: 25px 25px 0 rgba(23,35,31,.23), inset 0 0 0 2px rgba(23,35,31,.25); }
.object-ring { position: absolute; inset: 34px; border: 20px solid var(--ink); border-radius: 50%; }
.object-core { position: absolute; inset: 84px; background: var(--paper); border-radius: 50%; }
.object-shadow { position: absolute; inset: -34px; border: 2px solid var(--ink); border-radius: 50%; transform: translate(13px, 13px); }
.floating-label { position: absolute; padding: 10px 13px; background: var(--paper); color: var(--ink); font: 700 11px var(--body); letter-spacing: .8px; text-transform: uppercase; }
.label-top { top: 28px; left: 28px; }.label-bottom { right: 28px; bottom: 28px; line-height: 1.5; }.label-bottom strong { color: var(--orange); }
.ticker { overflow: hidden; border-block: 1px solid var(--ink); background: var(--accent); white-space: nowrap; }.ticker-track { display: flex; justify-content: space-around; gap: 40px; padding: 14px; font: 700 11px var(--body); letter-spacing: 1.5px; }.ticker-track b { color: var(--orange); }
.section-block { padding-block: 116px; }.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 50px; margin-bottom: 52px; }.section-heading > * { min-width: 0; }.section-heading h2 { font-size: clamp(42px, 5vw, 66px); }.section-lead { max-width: 370px; margin: 0 0 3px; color: var(--muted); font-size: 15px; }
/* Tri sluzby v kartach na uvodni strance. */
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }.service-card { min-height: 370px; position: relative; padding: 30px; background: var(--white); }.service-card-dark { background: var(--dark); color: var(--white); }.service-card-accent { background: var(--accent); }.service-number { position: absolute; right: 30px; top: 30px; color: var(--muted); font: 700 12px var(--body); }.service-icon { display: block; margin-bottom: 70px; font-size: 34px; line-height: 1; }.service-card h3 { font-size: 30px; letter-spacing: -1px; }.service-card p { max-width: 260px; margin: 18px 0 30px; color: var(--muted); font-size: 16px; }.service-card-dark p { color: #b9c1bc; }.card-link { position: absolute; bottom: 30px; font-size: 12px; font-weight: 700; }
.service-card { background: #374151; color: #F5FFFA; }
.service-card p { color: #F5FFFA; font-size: 18px; }
.service-card { border-radius: 8px; transition: transform .22s ease, box-shadow .22s ease; }
.service-card:hover { transform: translateY(-8px) scale(1.02); box-shadow: 0 16px 28px rgba(0, 0, 0, .22); }
.why-jami-heading { margin: var(--section-gap) 0 28px; }
.why-jami-heading h2 { color: #F5FFFA; font-size: 38px; }
.portfolio-window { width: 100%; margin-left: 0; overflow: hidden; position: relative; }
.portfolio-arrow { position: absolute; top: 50%; z-index: 5; width: 44px; height: 44px; display: grid; place-items: center; border: 0; border-radius: 50%; background: rgba(0,0,0,.55); color: #fff; font-size: 22px; line-height: 1; cursor: pointer; transform: translateY(-50%); transition: background .2s ease; }
.portfolio-arrow:hover { background: rgba(0,0,0,.85); }
.portfolio-arrow-prev { left: 14px; }
.portfolio-arrow-next { right: 14px; }
.portfolio-section { padding-top: 0; }.portfolio-grid { display: flex; width: max-content; gap: 14px; }.portfolio-track { display: flex; flex: 0 0 auto; gap: 14px; }.portfolio-item { width: 263px; height: 263px; flex: 0 0 263px; min-height: 0; position: relative; }.portfolio-item span { position: absolute; bottom: 16px; left: 18px; color: var(--white); font-size: 12px; text-transform: uppercase; letter-spacing: 1px; }.portfolio-placeholder { width: 263px; height: 263px; overflow: hidden; display: grid; place-content: center; text-align: center; background: var(--dark); color: var(--accent); font: 700 17px var(--display); }.portfolio-placeholder.warm { background: var(--orange); color: var(--ink); }.portfolio-placeholder.dark { background: #899a8e; color: var(--ink); }.portfolio-placeholder small { display: block; margin-top: 8px; font: 400 10px var(--body); opacity: .8; }
.portfolio-placeholder img { display: block; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.portfolio-placeholder { border-radius: 8px; }
.portfolio-placeholder img { cursor: zoom-in; }
.lightbox-open { overflow: hidden; }
.image-lightbox { position: fixed; inset: 0; z-index: 100; display: grid; place-items: center; padding: 32px; background: rgba(0, 0, 0, .88); cursor: zoom-out; }
.image-lightbox img { max-width: min(100%, 1100px); max-height: 90vh; object-fit: contain; cursor: default; }
.image-lightbox-close { position: absolute; top: 22px; right: 28px; border: 0; background: transparent; color: #fff; font: 400 38px/1 var(--body); cursor: pointer; }
.image-lightbox-arrow { position: absolute; top: 50%; z-index: 5; width: 52px; height: 52px; display: grid; place-items: center; border: 0; border-radius: 50%; background: rgba(255,255,255,.12); color: #fff; font-size: 28px; line-height: 1; cursor: pointer; transform: translateY(-50%); transition: background .2s ease; }
.image-lightbox-arrow:hover { background: rgba(255,255,255,.28); }
.image-lightbox-prev { left: 24px; }
.image-lightbox-next { right: 24px; }
.shop-section { background: var(--dark); color: var(--white); }.shop-heading .section-lead { color: #b9c1bc; }.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }.product-card { background: #374151; color: var(--ink); border-radius: 8px; overflow: hidden; }.product-image { aspect-ratio: 1 / 1; display: grid; place-content: center; padding: 0; background: #101010; text-align: center; color: var(--muted); font-size: 12px; }.product-image img { width: 100%; height: 100%; object-fit: cover; }.product-info { padding: 18px; }.product-info h3 { font-size: 18px; letter-spacing: -.5px; color: var(--ink); }.product-info p { min-height: 44px; margin: 9px 0 17px; color: #F5FFFA; font-size: 12px; line-height: 1.45; }.product-meta { display: flex; align-items: center; justify-content: space-between; gap: 10px; border-top: 1px solid rgba(245,255,250,.16); padding-top: 14px; }.product-price { font-weight: 700; color: var(--ink); }.add-to-cart { padding: 8px 10px; background: var(--accent); border: 0; color: #17231f; font: 700 11px var(--body); cursor: pointer; }
.quote-section { padding-block: 116px; }.quote-panel { display: grid; grid-template-columns: 1fr; gap: 45px; padding: 65px; background: #101010; }.quote-panel h2 { font-size: clamp(43px, 5vw, 68px); }.quote-panel > div > p:last-child { max-width: 350px; margin-top: 28px; color: #F5FFFA; }.process-list { display: grid; gap: 28px; }.process-list article { border-bottom: 1px solid rgba(245,255,250,.24); padding-bottom: 20px; }.process-list h2 { margin: 0; color: #F5FFFA; font-size: clamp(22px, 3vw, 34px); letter-spacing: -1px; }.process-list p { max-width: 680px; margin: 9px 0 0; color: #F5FFFA; font-size: 15px; }.form-placeholder { align-self: center; padding: 30px; background: rgba(255,253,248,.92); }.form-placeholder-icon { color: var(--orange); font-size: 28px; }.form-placeholder h3 { margin-top: 20px; font-size: 24px; letter-spacing: -.8px; }.form-placeholder p { color: var(--muted); font-size: 13px; }.site-footer { background: var(--ink); color: var(--white); padding-top: 64px; }.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; padding-bottom: 70px; }.footer-brand .brand-mark { background: var(--accent); color: var(--ink); }.footer-muted { color: #9ca9a1; font-size: 13px; }.footer-label { color: var(--accent); font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; }.footer-grid a:not(.brand) { display: block; margin: 8px 0; color: #d0d5d0; font-size: 13px; }.footer-bottom { display: flex; justify-content: space-between; border-top: 1px solid #3d4a45; padding-block: 18px; color: #82908a; font-size: 15px; }
/* Mensi desktop a tablet: zmenseni mezer v zahlavi a hero sekci. */
@media (max-width: 1100px) and (min-width: 851px) { .site-header { padding-inline: 3cm; }.main-nav { gap: 18px; }.hero { gap: 42px; } }
/* Tablet: skryti desktopove navigace a dvousloupcove karty. */
@media (max-width: 850px) { .site-header { width: 100%; min-height: 74px; padding-inline: 3cm; }.section-shell { width: 100%; padding-inline: 18px; }.main-nav { display: none; position: absolute; top: 74px; left: 0; right: 0; flex-direction: column; gap: 0; background: #1c1c1c; padding: 6px 18px 18px; border-top: 1px solid rgba(245,255,250,.16); box-shadow: 0 12px 24px rgba(0,0,0,.35); z-index: 30; }.main-nav.is-open { display: flex; }.main-nav.is-open a { color: var(--ink); }.main-nav a { padding: 14px 0; border-bottom: 1px solid rgba(245,255,250,.12); } main { padding-top: 74px; }.hero { display: block; padding-block: 60px 70px; }.hero h1 { font-size: 48px; }.section-block, .quote-section { padding-block: 78px; }.section-heading { display: block; }.section-lead { margin-top: 25px; }.service-grid, .product-grid, .shop-product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }.portfolio-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }.portfolio-large { grid-column: span 2; }.quote-panel { grid-template-columns: 1fr; padding: 36px 25px; gap: 35px; }.footer-grid { grid-template-columns: 1fr 1fr; }.footer-grid > div:first-child { grid-column: span 2; }.shop-hero { grid-template-columns: 1fr; padding-block: 65px 75px; }.shop-hero-mark { min-height: 240px; }.catalog-toolbar, .shop-preview { display: block; }.category-filter { margin-top: 32px; }.shop-preview .button { margin-top: 25px; }.contact-section { display: block; padding-block: 78px; }.contact-details { margin-top: 30px; text-align: left; }.order-note-inner { grid-template-columns: 1fr; gap: 35px; padding-block: 75px; }.order-steps { gap: 15px; } }
/* Telefon: vsechny karty pod sebou a mensi okraje. */
@media (max-width: 520px) { .site-header { padding-inline: 18px; }.site-header > a[href="#poptavka"] { display: none; }.section-shell { width: 100%; padding-inline: 16px; }.hero { padding-top: 42px; }.hero h1 { font-size: 38px; }.hero-break { display: none; }.hero-actions { align-items: flex-start; flex-direction: column; gap: 20px; }.object-illustration { width: 210px; height: 210px; border-width: 24px; }.object-ring { inset: 24px; border-width: 14px; }.object-core { inset: 57px; }.object-shadow { inset: -24px; }.service-grid, .product-grid, .shop-product-grid, .portfolio-grid { grid-template-columns: 1fr; }.portfolio-large { grid-column: auto; }.portfolio-item { min-height: 260px; }.footer-grid { grid-template-columns: 1fr; }.footer-grid > div:first-child { grid-column: auto; }.footer-bottom { display: block; }.footer-bottom span { display: block; margin-top: 6px; }.shop-hero-mark { min-height: 210px; }.order-steps { grid-template-columns: 1fr; }.order-steps p { margin-top: 8px; } }

button.button, a.button, button.filter-button, button.add-to-cart, button.cart-button, button.close-cart, button#send-order { background: #000; color: #fff; }
button.button, a.button, button.filter-button, button.add-to-cart, button.cart-button, button.close-cart, button#send-order, button.remove-item, a.text-link { border-radius: 8px; }
.site-header > a[href="#poptavka"] { background: #c72c2c; color: #fff; border-radius: 8px; }
.site-header > a[href="#poptavka"]:hover { background: #c72c2c; color: #fff; }
.shop-preview-button, .shop-preview-button:hover { background: #c72c2c !important; color: #fff !important; border-radius: 8px; }
.shop-preview { display: grid; grid-template-columns: max-content 4cm max-content; align-items: center; justify-content: start; column-gap: 0; }
.shop-preview h2, .shop-preview h2 em { color: #F5FFFA; }
.shop-preview-button { display: inline-flex; grid-column: 3; grid-row: 1; align-self: end; justify-self: start; margin-top: 0; padding: 19.8px 28.8px; font-size: 15.6px; }
.shop-preview-content { width: max-content; flex: 0 0 auto; }
.contact-section { display: block; padding: 0 0 100px; }
.contact-section h2, .contact-section h2 em { color: #F5FFFA; }
.contact-details { display: grid; justify-items: start; gap: 12px; margin-top: 24px; text-align: left; font-size: 20px; }
.contact-details a:hover { color: #c72c2c; }
.facebook-button { display: inline-flex; align-items: center; gap: 9px; width: max-content; margin-top: 8px; padding: 11px 16px; border-radius: 8px; background: #1877f2; color: #fff !important; font-size: 14px; font-weight: 700; }
.facebook-button:hover { background: #166fe5; color: #fff !important; }
.facebook-button span { display: grid; width: 20px; height: 20px; place-items: center; border-radius: 50%; background: #fff; color: #1877f2; font: 700 16px/1 Arial, sans-serif; }
.footer-info { grid-column: 3; }
.tally-embed { min-height: 760px; background: #101010; overflow: hidden; }
.tally-embed { background: transparent; }
.tally-embed iframe { display: block; width: 100%; min-height: 1000px; height: 1200px; border: 0; }
.quote-panel { grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); }
.quote-copy { min-width: 0; text-align: left; }
.quote-panel { padding-inline: 0; }
@media (max-width: 850px) { .quote-panel { grid-template-columns: 1fr; }.hero-copy { padding-left: 0; } }
.quote-panel { padding-inline: 0; }
@media (max-width: 850px) { .quote-panel { padding-inline: 25px; } }
.process-list h2 { font-size: 16px; letter-spacing: 0; }
.process-list p { font-size: 18px; }
.section-block .eyebrow, .portfolio-section .eyebrow, .shop-preview .eyebrow, .quote-section .eyebrow, .contact-section .eyebrow { font-size: 20px; }
@media (max-width: 850px) {
  .header-contact { display: none; }
  .portfolio-window { width: 100%; margin-left: 0; }
  .shop-preview { display: block; }
  .shop-preview-button { margin-top: 24px; }
  .shop-preview-mark { margin-top: 32px; }
  .quote-panel { padding: 36px 25px; }
}

body { font-size: 14px; }
.service-card p { font-size: 18px; }
.process-list h2 { font-size: 16px; }
.process-list p { font-size: 18px; }
.section-block .eyebrow, .portfolio-section .eyebrow, .shop-preview .eyebrow, .quote-section .eyebrow, .contact-section .eyebrow { font-size: 20px; }
.shop-preview-button { font-size: 14px; }
.contact-details { font-size: 14px; }

:root { --page-gutter: clamp(18px, 4vw, 3cm); --section-gap: clamp(78px, 8vw, 116px); }
.section-shell { padding-inline: var(--page-gutter); }
.site-header { padding-inline: var(--page-gutter); }
.section-shell { padding-inline: 6cm; }
.site-header { padding-inline: 6cm; }
.site-footer .section-shell { padding-inline: clamp(18px, 4vw, 6cm); }
.hero, .section-block, .portfolio-section, .shop-preview, .quote-section, .contact-section { padding-block: var(--section-gap); }
.shop-preview { display: block; }
.shop-preview-button { display: inline-flex; margin-top: 24px; }
.tally-embed { min-height: 0; }
.tally-embed iframe { min-height: 0; height: 760px; }
@media (max-width: 850px) {
  :root { --section-gap: 78px; }
  .section-shell, .site-header { padding-inline: 18px; }
  .shop-preview-button { margin-top: 24px; }
  .tally-embed iframe { height: 900px; }
  .footer-bottom-logo { display: block; margin: 12px 0 0 auto; }
}
.section-heading h2, .quote-panel h2, .shop-preview h2, .contact-section h2 { font-size: 40px; }
.shop-page .button, .shop-page .add-to-cart, .shop-page .filter-button.is-active, .shop-page .filter-button:hover, .shop-page #send-order { background: #c72c2c !important; color: #fff !important; border-color: #c72c2c !important; }
