*, *::before, *::after {
  box-sizing: border-box;
margin: 0;
padding: 0;
}
:root {
--seed-puff: #F5F0E8;
--parchment: #EDE5D5;
--sand: #B89060;
--sand-light: #DDD0B8;
--herb: #A8B4A0;
--olive-light: #B8C4A8;
--olive: #8C9E78;
--fresh-bark: #5A6840;
--sage: #4A6050;
--bark: #6A5E4A;
--clay: #7A5A58;
--olivewood: #2A3020;
--text-dark: #2A2620;
--text-mid: #3A3228;
--text-light: #6A5E4A;
--white: #FFFFFF;
--cream: #FAF7F2;
--gold: #A88840;
--gold-light: #C8A860;
--hero-bg-from: #E8D8BC;
--hero-bg-to:   #DBBF95;
--warm-accent: #4A7055;
--warm-accent-light: #7AA888;
--warm-accent-dark: #2E4A38;
--warm-bg: #C8D8C0;
--font-display: 'Cormorant Garamond', Georgia, serif;
--font-body: 'Jost', sans-serif;
}
html { scroll-behavior: smooth; }
body {
font-family: var(--font-body);
background: var(--seed-puff);
color: var(--text-dark);
line-height: 1.7;
font-weight: 400;
overflow-x: hidden;
}
/* ══════════════════════════════════════════════════════════
   NAV
   ══════════════════════════════════════════════════════════ */
nav {
position: fixed;
top: 0; left: 0; right: 0;
z-index: 200;
padding: 1rem 2rem;
display: flex;
justify-content: space-between;
align-items: center;
background: rgba(238, 230, 215, 0.97);
backdrop-filter: blur(10px);
-webkit-backdrop-filter: blur(10px);
border-bottom: 1px solid rgba(140, 110, 70, 0.3);
transition: all 0.3s ease;
min-height: 64px;
}
.nav-logo {
font-family: var(--font-display);
font-size: 1.6rem;
font-weight: 600;
font-style: italic;
letter-spacing: 0.04em;
color: var(--olivewood);
text-decoration: none;
cursor: pointer;
transition: opacity 0.3s;
position: relative;
}
.nav-logo::after {
content: '';
position: absolute;
bottom: -3px;
left: 0;
width: 100%;
height: 1.5px;
background: linear-gradient(to right, var(--sand), transparent);
opacity: 0.7;
}
.nav-logo:hover { opacity: 0.75; }
.nav-right {
display: flex;
align-items: center;
gap: 2rem;
}
.nav-link-item {
font-family: var(--font-body);
font-size: 0.85rem;
letter-spacing: 0.14em;
text-transform: uppercase;
color: var(--olivewood);
text-decoration: none;
opacity: 0.85;
transition: opacity 0.3s;
font-weight: 600;
cursor: pointer;
}
.nav-link-item:hover { opacity: 1; }
.nav-hamburger {
display: none;
flex-direction: column;
justify-content: center;
align-items: flex-end;
gap: 5px;
cursor: pointer;
padding: 8px;
background: none;
border: none;
touch-action: manipulation;
-webkit-tap-highlight-color: transparent;
}
.nav-hamburger span {
display: block;
height: 2px;
background: var(--olivewood);
border-radius: 2px;
transition: width 0.3s ease;
}
.nav-hamburger span:nth-child(1) { width: 26px; }
.nav-hamburger span:nth-child(2) { width: 20px; }
.nav-hamburger span:nth-child(3) { width: 14px; }
.nav-hamburger:hover span { width: 26px !important; }
/* ══════════════════════════════════════════════════════════
   MENU OVERLAY – DESKTOP
   ══════════════════════════════════════════════════════════ */
.menu-overlay {
position: fixed;
top: 0;
left: 0;
right: 0;
bottom: 0;
width: 100%;
height: 100%;
z-index: 300;
background: #EDE8DF;
display: flex;
align-items: flex-start;
justify-content: flex-start;
overflow-y: auto;
-webkit-overflow-scrolling: touch;
overscroll-behavior: contain;
opacity: 0;
pointer-events: none;
transition: opacity 0.35s ease;
}
.menu-overlay.open {
opacity: 1;
pointer-events: all;
}
.menu-close {
position: fixed;
top: 1.2rem;
right: 1.2rem;
background: rgba(42,32,18,0.08);
border: 1px solid rgba(42,32,18,0.18);
cursor: pointer;
width: 44px;
height: 44px;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
padding: 0;
border-radius: 50%;
touch-action: manipulation;
-webkit-tap-highlight-color: transparent;
transition: background 0.3s;
z-index: 10;
}
.menu-close:hover { background: rgba(42,32,18,0.15); }
.menu-close span {
display: block;
width: 20px;
height: 1.5px;
background: rgba(42, 32, 18, 0.7);
transition: background 0.3s;
position: absolute;
}
.menu-close span:nth-child(1) { transform: rotate(45deg); }
.menu-close span:nth-child(2) { transform: rotate(-45deg); }
.menu-close:hover span { background: var(--olivewood); }
.menu-inner {
padding: 5rem 2rem 3rem;
width: 100%;
max-width: 960px;
min-height: 100vh;
min-height: 100dvh;
}
.menu-eyebrow {
font-size: 0.6rem;
letter-spacing: 0.38em;
text-transform: uppercase;
color: var(--warm-accent);
font-family: var(--font-body);
font-weight: 600;
margin-bottom: 1.5rem;
}
.menu-nav {
display: flex;
flex-direction: column;
gap: 0;
}
.menu-nav-link {
display: flex;
align-items: center;
gap: 1.5rem;
padding: 1rem 0;
border-bottom: 1px solid rgba(42, 32, 18, 0.12);
text-decoration: none;
cursor: pointer;
transition: padding 0.3s ease, background 0.2s;
-webkit-tap-highlight-color: transparent;
border-radius: 4px;
}
.menu-nav-link:active { background: rgba(42,32,18,0.04); }
.menu-nav-link:hover { padding-left: 0.6rem; }
.menu-nav-link:hover .menu-label { color: var(--warm-accent); }
.menu-nav-link:hover .menu-arrow { opacity: 1; transform: translateX(6px); }
.menu-num {
font-family: var(--font-body);
font-size: 0.7rem;
letter-spacing: 0.2em;
color: rgba(42, 32, 18, 0.35);
min-width: 28px;
font-weight: 500;
}
.menu-label {
font-family: var(--font-display);
font-size: clamp(1.8rem, 7vw, 3.8rem);
font-weight: 500;
color: var(--olivewood);
transition: color 0.3s;
flex: 1;
line-height: 1.15;
}
.menu-arrow {
font-family: var(--font-body);
font-size: 1rem;
color: var(--warm-accent);
opacity: 0;
transition: opacity 0.3s, transform 0.3s;
}
.menu-home-btn {
position: fixed;
top: 1.2rem;
left: 1.2rem;
display: inline-flex;
align-items: center;
gap: 0.5rem;
padding: 0.6rem 1.1rem;
background: transparent;
border: 1px solid rgba(42, 32, 18, 0.25);
color: var(--text-mid);
font-family: var(--font-body);
font-size: 0.68rem;
font-weight: 600;
letter-spacing: 0.18em;
text-transform: uppercase;
cursor: pointer;
transition: background 0.3s, border-color 0.3s, color 0.3s;
touch-action: manipulation;
-webkit-tap-highlight-color: transparent;
border-radius: 2px;
z-index: 10;
}
.menu-home-btn:hover {
background: var(--olivewood);
border-color: var(--olivewood);
color: var(--seed-puff);
}
.menu-footer {
margin-top: 2rem;
padding-top: 1.5rem;
border-top: 1px solid rgba(42,32,18,0.1);
display: flex;
flex-direction: column;
gap: 0.5rem;
}
.menu-contact {
font-size: 0.82rem;
letter-spacing: 0.1em;
color: rgba(42, 32, 18, 0.45);
font-family: var(--font-body);
}
/* ══════════════════════════════════════════════════════════
   SUBPAGES
   ══════════════════════════════════════════════════════════ */
.subpage {
display: none;
min-height: 100vh;
min-height: 100dvh;
flex-direction: column;
}
.subpage.active {
display: flex;
flex-direction: column;
}
.subpage-hero {
min-height: 36vh;
display: flex;
align-items: flex-end;
padding-bottom: 3rem;
position: relative;
padding-top: 80px;
}
.subpage-hero::before {
content: '';
position: absolute;
inset: 0;
background: radial-gradient(ellipse 80% 60% at 30% 60%, rgba(255,245,220,0.1) 0%, transparent 70%);
pointer-events: none;
}
.subpage-hero--warm,
.subpage-hero--mid,
.subpage-hero--dark,
.subpage-hero--sand,
.subpage-hero--herb,
.subpage-hero--kontakt {
background: linear-gradient(150deg, #3A4830 0%, #222E18 100%);
}
.subpage-hero-inner {
position: relative;
z-index: 2;
max-width: 1100px;
margin: 0 auto;
padding: 0 2rem;
width: 100%;
display: flex;
flex-direction: column;
gap: 1.5rem;
}
.subpage-hero-meta {
display: flex;
flex-direction: column;
gap: 0.3rem;
}
.back-btn-new {
display: inline-flex;
align-items: center;
gap: 0.6rem;
background: rgba(255, 250, 240, 0.12);
border: 1px solid rgba(245, 235, 210, 0.3);
cursor: pointer;
padding: 0.6rem 1.2rem 0.6rem 0.8rem;
text-decoration: none;
width: fit-content;
border-radius: 2px;
backdrop-filter: blur(4px);
-webkit-backdrop-filter: blur(4px);
transition: background 0.3s, border-color 0.3s, transform 0.25s;
touch-action: manipulation;
-webkit-tap-highlight-color: transparent;
}
.back-btn-new:hover {
background: rgba(255, 250, 240, 0.22);
border-color: rgba(245, 235, 210, 0.5);
transform: translateX(-3px);
}
.back-btn-new:active { transform: translateX(-1px); }
.back-btn-new__arrow {
display: flex;
align-items: center;
justify-content: center;
width: 28px;
height: 28px;
border-radius: 50%;
background: rgba(245, 235, 210, 0.15);
border: 1px solid rgba(245, 235, 210, 0.35);
font-size: 0.88rem;
color: rgba(245, 235, 210, 0.85);
flex-shrink: 0;
line-height: 1;
}
.back-btn-new__text {
font-family: var(--font-body);
font-size: 0.68rem;
font-weight: 600;
letter-spacing: 0.18em;
text-transform: uppercase;
color: rgba(245, 235, 210, 0.7);
white-space: nowrap;
}
.subpage-eyebrow {
font-size: 0.78rem;
letter-spacing: 0.32em;
color: rgba(245, 235, 210, 0.5);
font-family: var(--font-body);
font-weight: 500;
}
.subpage-eyebrow--light { color: rgba(245, 235, 210, 0.5); }
.subpage-title {
font-family: var(--font-display);
font-size: clamp(2.4rem, 8vw, 5.5rem);
font-weight: 600;
color: rgba(245, 235, 210, 0.95);
line-height: 1.1;
}
.subpage-title em {
font-style: italic;
color: rgba(200, 180, 140, 0.85);
}
.subpage-body {
flex: 1;
background: var(--seed-puff);
padding: 4rem 0;
}
.subpage-inner {
max-width: 1100px;
margin: 0 auto;
padding: 0 2rem;
}
/* ══════════════════════════════════════════════════════════
   SUBPAGE TEXT SIZES — DESKTOP (mírně zvětšeno)
   ══════════════════════════════════════════════════════════ */
.subpage .sp-perex {
font-size: clamp(1.35rem, 3vw, 2rem);
font-weight: 600;
}
.subpage .sp-block-content p {
font-size: clamp(1.08rem, 2vw, 1.28rem);
line-height: 2;
font-weight: 500;
}
.subpage .omne-pillar p,
.subpage .sp-pillar p {
font-size: 1.1rem;
font-weight: 500;
}
.subpage .sp-service-list li {
font-size: clamp(1.05rem, 1.8vw, 1.25rem);
font-weight: 500;
}
.subpage .kontakt-info-block p {
font-size: 1.1rem;
line-height: 1.9;
font-weight: 500;
}
.subpage .sp-cta p {
font-size: clamp(1.3rem, 2.5vw, 1.8rem);
font-weight: 500;
}
.subpage .cenik-row-detail { font-size: 0.92rem; }
.subpage .cenik-note p {
font-size: 1.05rem;
font-weight: 500;
}
/* ══════════════════════════════════════════════════════════
   CENÍK
   ══════════════════════════════════════════════════════════ */
.cenik-section-title {
font-family: var(--font-display);
font-size: clamp(1.6rem, 3vw, 2.8rem);
font-weight: 600;
color: var(--olivewood);
margin-bottom: 1.2rem;
padding-bottom: 0.7rem;
border-bottom: 2px solid var(--sand);
}
.cenik-table {
display: flex;
flex-direction: column;
gap: 0;
border: 1px solid rgba(100,80,50,0.2);
background: #fff;
border-radius: 4px;
overflow: hidden;
}
.cenik-row {
display: flex;
align-items: center;
justify-content: space-between;
gap: 1.5rem;
padding: 1.5rem 1.8rem;
border-bottom: 1px solid rgba(100,80,50,0.1);
transition: background 0.25s;
}
.cenik-row:last-child { border-bottom: none; }
.cenik-row:hover { background: var(--parchment); }
.cenik-row-name {
font-family: var(--font-display);
font-size: clamp(1.6rem, 2.8vw, 2.2rem);
font-weight: 600;
color: var(--olivewood);
line-height: 1.3;
display: flex;
flex-direction: column;
gap: 0.2rem;
flex: 1;
}
.cenik-row-detail {
font-family: var(--font-body);
font-size: 0.82rem;
font-weight: 400;
color: var(--text-light);
letter-spacing: 0.04em;
}
.cenik-row-prices {
display: flex;
align-items: center;
gap: 1rem;
flex-shrink: 0;
}
.cenik-row-price-item {
display: flex;
flex-direction: column;
align-items: flex-end;
gap: 0.1rem;
}
.cenik-row-price-item--highlight {
background: #6B8F58;
padding: 0.6rem 1.2rem;
border-radius: 2px;
}
.cenik-row-price-item--highlight .cenik-row-price { color: #ffffff; }
.cenik-row-price-item--highlight .cenik-row-unit { color: rgba(255,255,255,0.7); }
.cenik-row-price {
font-family: var(--font-body);
font-size: clamp(1.05rem, 1.8vw, 1.35rem);
font-weight: 700;
font-style: normal;
color: var(--warm-accent);
white-space: nowrap;
letter-spacing: -0.01em;
}
.cenik-row-unit {
font-family: var(--font-body);
font-size: 0.75rem;
font-weight: 600;
letter-spacing: 0.12em;
text-transform: uppercase;
color: var(--text-light);
}
.cenik-note {
margin: 1rem 0 2.5rem;
display: flex;
flex-direction: column;
gap: 0.5rem;
}
.cenik-note p {
font-size: 0.95rem;
color: var(--text-light);
font-family: var(--font-body);
}
/* ══════════════════════════════════════════════════════════
   HERO
   ══════════════════════════════════════════════════════════ */
.hero {
min-height: 100vh;
min-height: 100dvh;
background: linear-gradient(160deg, var(--hero-bg-from) 0%, var(--hero-bg-to) 100%);
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
position: relative;
overflow: hidden;
padding-top: 64px;
}
.hero::before {
content: '';
position: absolute;
inset: 0;
background: radial-gradient(ellipse 70% 60% at 50% 46%, rgba(255,252,240,0.55) 0%, transparent 75%);
pointer-events: none;
}
.hero::after {
content: '';
position: absolute;
width: 600px; height: 600px;
border-radius: 50%;
border: 1.5px solid rgba(255,255,255,0.3);
top: 50%; left: 50%;
transform: translate(-50%, -50%);
pointer-events: none;
}
.hero-inner {
position: relative;
z-index: 2;
width: 100%;
max-width: 1100px;
padding: 2rem 1.5rem 2rem;
display: flex;
flex-direction: column;
align-items: center;
}
.hero-trio {
display: grid;
grid-template-columns: 1fr auto 1fr;
align-items: center;
gap: 3.5rem;
width: 100%;
animation: fadeIn 1.2s ease 0.2s both;
}
.hero-left {
text-align: right;
display: flex;
flex-direction: column;
align-items: flex-end;
gap: 0.6rem;
}
.hero-right {
text-align: left;
display: flex;
flex-direction: column;
align-items: flex-start;
gap: 0.6rem;
}
.hero-left::after,
.hero-right::before {
content: '';
display: block;
width: 1.5px;
height: 55px;
background: linear-gradient(to bottom, transparent, rgba(80,60,20,0.35), transparent);
}
.hero-left::after  { align-self: flex-end; }
.hero-right::before { align-self: flex-start; }
.service-name {
font-family: var(--font-display);
font-size: clamp(2.2rem, 4.5vw, 5.2rem);
font-weight: 600;
color: var(--olivewood);
line-height: 1.2;
letter-spacing: 0.01em;
text-shadow: 0 2px 12px rgba(255,250,235,0.5);
}
.service-name em { font-style: italic; color: var(--fresh-bark); }
.hero-emblem {
display: flex;
flex-direction: column;
align-items: center;
gap: 1.2rem;
flex-shrink: 0;
}
.hero-logo {
width: 200px; height: 200px;
object-fit: contain;
opacity: 0.98;
filter: drop-shadow(0 6px 28px rgba(40,28,8,0.16));
animation: scaleIn 1s ease 0.1s both;
}
.emblem-expand {
display: flex;
flex-direction: column;
align-items: center;
gap: 8px;
cursor: pointer;
padding: 0.8rem;
text-decoration: none;
transition: opacity 0.3s;
touch-action: manipulation;
-webkit-tap-highlight-color: transparent;
}
.emblem-expand:hover { opacity: 0.6; }
.expand-line {
height: 3px;
background: rgba(42, 48, 32, 0.8);
transition: width 0.35s ease;
border-radius: 2px;
}
.expand-line:nth-child(1) { width: 52px; }
.expand-line:nth-child(2) { width: 40px; }
.expand-line:nth-child(3) { width: 26px; }
.emblem-expand:hover .expand-line { width: 52px; }
.expand-hint {
font-size: 0.68rem;
letter-spacing: 0.32em;
text-transform: uppercase;
color: rgba(42, 48, 32, 0.7);
font-family: var(--font-body);
margin-top: 3px;
font-weight: 700;
}
.hero-rule {
width: 100%;
max-width: 480px;
height: 1.5px;
background: linear-gradient(to right, transparent, rgba(90,104,64,0.38), transparent);
margin: 2rem 0 1.5rem;
animation: fadeIn 1.4s ease 0.4s both;
}
.hero-book {
display: flex;
flex-direction: column;
align-items: center;
animation: fadeUp 1s ease 0.5s both;
margin-bottom: 2rem;
gap: 1rem;
}
.hero-reservio-inline {
display: flex;
justify-content: center;
opacity: 0.9;
transition: opacity 0.3s;
}
.hero-reservio-inline:hover { opacity: 1; }
.hero-quote {
text-align: center;
animation: fadeIn 1.4s ease 0.65s both;
margin-bottom: 0;
padding: 0 1rem;
}
.btn-book {
display: inline-block;
padding: 1rem 3.5rem;
background: var(--fresh-bark);
color: #fff;
text-decoration: none;
font-family: var(--font-display);
font-size: clamp(1.3rem, 2.5vw, 1.7rem);
font-weight: 600;
font-style: italic;
letter-spacing: 0.1em;
transition: background 0.3s, transform 0.2s;
cursor: pointer;
border: none;
touch-action: manipulation;
-webkit-tap-highlight-color: transparent;
}
.btn-book:hover { background: var(--sage); transform: translateY(-2px); }
.btn-book:active { transform: translateY(0); }
.btn-book-outline {
background: transparent;
border: 1.5px solid var(--fresh-bark);
color: var(--fresh-bark);
margin-top: 0.3rem;
}
.btn-book-outline:hover { background: var(--fresh-bark); color: var(--seed-puff); }
.btn-book--text {
display: inline-block;
padding: 1rem 2.5rem;
background: var(--fresh-bark);
color: #fff;
font-family: var(--font-body);
font-size: clamp(0.95rem, 1.5vw, 1.2rem);
font-weight: 400;
font-style: normal;
letter-spacing: 0.04em;
cursor: default;
border: none;
word-break: break-all;
}
.quote-text {
font-family: var(--font-display);
font-size: clamp(1.3rem, 2.5vw, 2.3rem);
font-weight: 400;
color: var(--olivewood);
line-height: 1.65;
letter-spacing: 0.01em;
}
.quote-text em { font-style: italic; color: var(--fresh-bark); }
.emotions-strip {
width: 100%;
border-top: 1.5px solid rgba(90,104,64,0.28);
margin-top: 2rem;
padding-top: 1.5rem;
animation: fadeIn 1.4s ease 0.7s both;
}
.emotions-label {
font-size: 0.68rem;
letter-spacing: 0.28em;
text-transform: uppercase;
color: rgba(42,48,32,0.55);
font-family: var(--font-body);
text-align: center;
margin-bottom: 1rem;
font-weight: 500;
}
.emotions-row {
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 0.6rem 0.9rem;
}

/* ══════════════════════════════════════════════════════════
   EMOTION TAGS — ZVĚTŠENO
   ══════════════════════════════════════════════════════════ */
.emotion-tag {
font-family: var(--font-display);
font-size: 1.35rem;
font-style: italic;
color: rgba(42,48,32,0.78);
padding: 0.55rem 1.3rem;
border: 1.5px solid rgba(90,104,64,0.3);
border-radius: 2px;
background: rgba(255,255,255,0.32);
transition: all 0.3s;
cursor: default;
}
.emotion-tag:hover {
border-color: var(--fresh-bark);
color: var(--olivewood);
background: rgba(255,255,255,0.5);
}

.scroll-down {
position: absolute;
bottom: 1.8rem;
right: 2rem;
display: flex;
flex-direction: column;
align-items: center;
gap: 0.5rem;
text-decoration: none;
}
.scroll-down span {
font-size: 0.58rem;
letter-spacing: 0.28em;
text-transform: uppercase;
color: rgba(42,48,32,0.45);
writing-mode: vertical-rl;
font-family: var(--font-body);
}
.scroll-line {
width: 1.5px;
height: 48px;
background: linear-gradient(to bottom, rgba(90,104,64,0.55), transparent);
animation: scrollAnim 2s ease-in-out infinite;
}
@keyframes scrollAnim {
  0%, 100% { opacity: 0.3; transform: scaleY(0.5); transform-origin: top; }
  50% { opacity: 1; transform: scaleY(1); }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: none; }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.88); }
  to   { opacity: 0.98; transform: scale(1); }
}
section { position: relative; }
.section-inner {
max-width: 1100px;
margin: 0 auto;
padding: 0 2rem;
}
.section-label {
font-size: 0.68rem;
letter-spacing: 0.3em;
text-transform: uppercase;
color: var(--warm-accent);
font-weight: 600;
margin-bottom: 0.7rem;
font-family: var(--font-body);
}
.section-heading {
font-family: var(--font-display);
font-size: clamp(2.2rem, 5vw, 4.5rem);
font-weight: 600;
line-height: 1.1;
color: var(--olivewood);
margin-bottom: 1.5rem;
}
.section-heading em { font-style: italic; color: var(--fresh-bark); }
/* ══════════════════════════════════════════════════════════
   DIVIDER
   ══════════════════════════════════════════════════════════ */
.divider {
text-align: center;
padding: 2.5rem 0;
background: var(--parchment);
}
.divider-ornament {
display: flex;
align-items: center;
justify-content: center;
gap: 1.5rem;
}
.divider-line {
width: 100px;
height: 1.5px;
background: linear-gradient(to right, transparent, var(--sand));
}
.divider-line.right {
background: linear-gradient(to left, transparent, var(--sand));
}
.divider-ornament span {
font-family: var(--font-display);
font-size: 1.2rem;
color: var(--sand);
line-height: 1;
display: block;
}
/* ══════════════════════════════════════════════════════════
   PRACUJI SEKCE
   ══════════════════════════════════════════════════════════ */
.pracuji-section {
padding: 6rem 0;
background: #EDE5D5;
}
.pracuji-grid {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 1.4rem;
margin-top: 3rem;
}
.pracuji-card {
padding: 3rem 2.4rem;
background: #FFFFFF;
border: 1px solid rgba(100, 78, 48, 0.13);
position: relative;
transition: background 0.3s, border-color 0.3s, transform 0.3s, box-shadow 0.3s;
border-radius: 2px;
}
.pracuji-card:hover {
background: #FDFAF6;
border-color: rgba(90, 104, 64, 0.3);
transform: translateY(-3px);
box-shadow: 0 8px 24px rgba(42,32,18,0.07);
}
.pracuji-icon {
font-size: 0.85rem;
color: var(--sand);
margin-bottom: 0.8rem;
}
.pracuji-title {
font-family: var(--font-display);
font-size: clamp(1.6rem, 2.4vw, 2.1rem);
font-weight: 700;
color: var(--olivewood);
margin-bottom: 1rem;
line-height: 1.25;
}
.pracuji-list {
list-style: none;
padding: 0;
margin: 0;
}
.pracuji-list li {
font-size: 1.18rem;
color: var(--text-dark);
line-height: 1.95;
font-weight: 700;
padding-left: 0.9rem;
position: relative;
}
.pracuji-list li::before {
content: '–';
position: absolute;
left: 0;
color: var(--sand);
font-weight: 600;
}
.pracuji-cta {
margin-top: 4rem;
padding: 2.5rem;
border: 1.5px solid rgba(140, 110, 70, 0.3);
background: #FFFFFF;
display: flex;
align-items: center;
justify-content: space-between;
gap: 2rem;
border-radius: 2px;
}
.pracuji-cta p {
font-family: var(--font-display);
font-size: clamp(1rem, 1.8vw, 1.5rem);
font-style: italic;
color: var(--text-mid);
font-weight: 500;
line-height: 1.6;
max-width: 500px;
}
/* ══════════════════════════════════════════════════════════
   KONTAKT (hlavní stránka)
   ══════════════════════════════════════════════════════════ */
.contact {
padding: 7rem 0;
background: var(--olivewood);
color: var(--white);
}
.contact .section-label { color: var(--sand-light); }
.contact .section-heading { color: var(--seed-puff); }
.contact .section-heading em { color: var(--sand-light); }
.contact-solo {
margin-top: 3rem;
max-width: 620px;
}
.contact-solo p {
font-size: 1.05rem;
color: rgba(232, 224, 208, 0.82);
line-height: 1.9;
margin-bottom: 2.5rem;
}
.contact-details {
display: flex;
flex-direction: column;
gap: 1.5rem;
}
.contact-item {
display: flex;
gap: 1.5rem;
align-items: center;
}
.contact-item-label {
font-size: 0.68rem;
letter-spacing: 0.26em;
text-transform: uppercase;
color: var(--sand-light);
min-width: 70px;
font-weight: 600;
}
.contact-item-value {
font-size: 1.25rem;
color: rgba(232, 224, 208, 0.93);
font-family: var(--font-body);
font-weight: 400;
}
/* ══════════════════════════════════════════════════════════
   REZERVAČNÍ BANNER
   ══════════════════════════════════════════════════════════ */
.rezervace-banner {
background: var(--olivewood);
border-top: 2px solid var(--warm-accent);
padding: 4.5rem 0;
}
.rezervace-banner-inner {
max-width: 1100px;
margin: 0 auto;
padding: 0 2rem;
display: flex;
align-items: center;
justify-content: space-between;
gap: 3rem;
}
.rezervace-banner-text {
display: flex;
flex-direction: column;
gap: 0.5rem;
}
.rezervace-banner-label {
font-size: 0.68rem;
letter-spacing: 0.35em;
text-transform: uppercase;
color: var(--sand-light);
font-family: var(--font-body);
font-weight: 600;
}
.rezervace-banner-title {
font-family: var(--font-display);
font-size: clamp(1.8rem, 3.5vw, 3.2rem);
font-weight: 600;
color: var(--seed-puff);
line-height: 1.2;
}
.rezervace-banner-title em {
font-style: italic;
color: var(--sand-light);
}
.rezervace-banner-sub {
font-size: 0.95rem;
color: rgba(232,224,208,0.5);
font-family: var(--font-body);
}
.rezervace-banner-btn { flex-shrink: 0; }
.reservio-wrap {
margin: 2.5rem 0;
display: flex;
flex-direction: column;
gap: 0.8rem;
}
.reservio-label {
font-size: 0.68rem;
letter-spacing: 0.3em;
text-transform: uppercase;
color: var(--warm-accent);
font-family: var(--font-body);
font-weight: 600;
}
footer {
padding: 1.8rem 2rem;
background: #181A10;
display: flex;
justify-content: space-between;
align-items: center;
flex-wrap: wrap;
gap: 0.7rem;
}
.footer-name {
font-family: var(--font-display);
font-size: 1.1rem;
color: rgba(232, 224, 208, 0.5);
font-style: italic;
font-weight: 500;
}
.footer-copy {
font-size: 0.68rem;
color: rgba(232, 224, 208, 0.28);
letter-spacing: 0.12em;
}
.fade-in {
opacity: 0;
transform: translateY(20px);
transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-in.visible { opacity: 1; transform: none; }
.fade-in-delay-1 { transition-delay: 0.12s; }
.fade-in-delay-2 { transition-delay: 0.22s; }
.fade-in-delay-3 { transition-delay: 0.32s; }
/* ══════════════════════════════════════════════════════════
   SUBPAGE – OBECNÝ LAYOUT
   ══════════════════════════════════════════════════════════ */
.sp-perex {
font-family: var(--font-display);
font-size: clamp(1.25rem, 2.5vw, 1.9rem);
font-weight: 500;
font-style: italic;
color: var(--text-mid);
line-height: 1.65;
max-width: 800px;
margin-bottom: 3.5rem;
border-left: 3px solid var(--sand);
padding-left: 1.5rem;
}
.sp-block {
display: grid;
grid-template-columns: 200px 1fr;
gap: 3rem;
padding: 3rem 0;
border-top: 1px solid rgba(100,80,50,0.16);
align-items: start;
}
.sp-block:last-of-type { border-bottom: 1px solid rgba(100,80,50,0.16); }
.sp-block-label {
font-family: var(--font-display);
font-size: clamp(1.3rem, 2.5vw, 2.2rem);
font-weight: 600;
color: var(--olivewood);
line-height: 1.2;
position: sticky;
top: 5rem;
}
.sp-block-content p {
font-size: 1.1rem;
color: var(--text-mid);
line-height: 2;
margin-bottom: 1.2rem;
}
.sp-block-content p:last-child { margin-bottom: 0; }
/* ══════════════════════════════════════════════════════════
   FOTO – O MNĚ
   ══════════════════════════════════════════════════════════ */
.sp-photo-intro-layout {
display: grid;
grid-template-columns: 280px 1fr;
gap: 3.5rem;
align-items: start;
margin-bottom: 4rem;
}
.sp-photo-intro-image {
position: relative;
overflow: hidden;
background: var(--parchment);
min-height: 320px;
flex-shrink: 0;
border: 1px solid rgba(100,80,50,0.18);
border-top: 3px solid var(--sand);
box-shadow: 0 10px 35px rgba(42,32,18,0.11);
}
.sp-photo-intro-image img {
width: 100%;
height: 100%;
object-fit: cover;
object-position: center 20%;
display: block;
filter: sepia(6%) contrast(1.04) brightness(0.97) saturate(0.95);
transition: transform 0.7s ease;
min-height: 320px;
}
.sp-photo-intro-image:hover img { transform: scale(1.03); }
.sp-photo-intro-text {
display: flex;
flex-direction: column;
justify-content: flex-start;
padding: 0.3rem 0 0;
}
.sp-photo-intro-eyebrow {
font-family: var(--font-body);
font-size: 0.64rem;
letter-spacing: 0.36em;
text-transform: uppercase;
color: var(--warm-accent);
font-weight: 600;
margin-bottom: 0.8rem;
}
.sp-photo-intro-name {
font-family: var(--font-display);
font-size: clamp(2.2rem, 4vw, 3.8rem);
font-weight: 600;
color: var(--olivewood);
line-height: 1.1;
}
.sp-photo-intro-name em {
font-style: italic;
color: var(--fresh-bark);
display: block;
}
.sp-photo-intro-rule {
width: 44px;
height: 2px;
background: var(--sand);
margin: 1.2rem 0;
opacity: 0.6;
}
.sp-photo-intro-quote {
font-family: var(--font-display);
font-size: clamp(1rem, 1.6vw, 1.4rem);
font-style: italic;
color: var(--text-mid);
line-height: 1.75;
border-left: 3px solid var(--sand);
padding-left: 1.2rem;
}
.sp-photo-intro-tags {
margin-top: 1.8rem;
display: flex;
flex-wrap: wrap;
gap: 0.4rem;
}
.sp-photo-intro-tag {
font-family: var(--font-body);
font-size: 0.65rem;
letter-spacing: 0.18em;
text-transform: uppercase;
color: var(--warm-accent);
border: 1px solid rgba(74,112,85,0.35);
padding: 0.35rem 0.8rem;
font-weight: 500;
background: rgba(74,112,85,0.05);
}
.sp-photo-intro-placeholder {
position: absolute;
inset: 0;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
gap: 1rem;
background: var(--parchment);
border: 2px dashed rgba(140,110,70,0.4);
pointer-events: none;
}
.sp-photo-intro-image img:not([src=""]) ~ .sp-photo-intro-placeholder { display: none; }
/* ══════════════════════════════════════════════════════════
   REGRESNÍ TERAPIE – foto
   ══════════════════════════════════════════════════════════ */
.sp-foto-regrese {
display: grid;
grid-template-columns: 280px 1fr;
gap: 3rem;
align-items: center;
margin-bottom: 4rem;
padding: 2.5rem 0;
border-top: 1px solid rgba(100,80,50,0.13);
border-bottom: 1px solid rgba(100,80,50,0.13);
}
.sp-foto-regrese__img-wrap {
position: relative;
width: 280px;
height: 340px;
flex-shrink: 0;
}
.sp-foto-regrese__img-inner {
position: relative;
width: 100%;
height: 100%;
overflow: hidden;
background: var(--parchment);
border-top: 3px solid var(--sand);
}
.sp-foto-regrese__img-inner img {
width: 100%;
height: 100%;
object-fit: cover;
object-position: center 15%;
display: block;
filter: sepia(8%) contrast(1.06) brightness(0.96) saturate(0.88);
transition: transform 0.7s ease;
}
.sp-foto-regrese__img-wrap:hover img { transform: scale(1.05); }
.sp-foto-regrese__img-inner::after {
content: '';
position: absolute;
bottom: 0; left: 0; right: 0;
height: 35%;
background: linear-gradient(to top, rgba(42,32,18,0.15), transparent);
pointer-events: none;
}
.sp-foto-regrese__text { display: flex; flex-direction: column; gap: 1.2rem; }
.sp-foto-regrese__eyebrow {
font-family: var(--font-body);
font-size: 0.62rem;
letter-spacing: 0.38em;
text-transform: uppercase;
color: var(--warm-accent);
font-weight: 600;
}
.sp-foto-regrese__quote {
font-family: var(--font-display);
font-size: clamp(1.2rem, 2vw, 1.8rem);
font-style: italic;
color: var(--olivewood);
line-height: 1.65;
border-left: 3px solid var(--sand);
padding-left: 1.3rem;
}
.sp-foto-regrese__tags { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-top: 0.3rem; }
.sp-foto-regrese__tags span {
font-family: var(--font-body);
font-size: 0.64rem;
letter-spacing: 0.18em;
text-transform: uppercase;
color: var(--warm-accent);
border: 1px solid rgba(74,112,85,0.35);
padding: 0.3rem 0.8rem;
font-weight: 500;
background: rgba(74,112,85,0.05);
}
/* ══════════════════════════════════════════════════════════
   BACHOVY ESENCE – foto
   ══════════════════════════════════════════════════════════ */
.sp-foto-bach {
display: grid;
grid-template-columns: 280px 1fr;
gap: 3rem;
align-items: center;
margin-bottom: 4rem;
padding: 2.5rem 0;
border-top: 1px solid rgba(100,80,50,0.13);
border-bottom: 1px solid rgba(100,80,50,0.13);
}
.sp-foto-bach__banner {
position: relative;
width: 280px;
height: 340px;
overflow: hidden;
border-top: 3px solid var(--sand);
background: var(--parchment);
}
.sp-foto-bach__banner img {
width: 100%;
height: 100%;
object-fit: cover;
display: block;
filter: sepia(10%) contrast(1.04) brightness(0.95) saturate(0.85);
transition: transform 0.8s ease;
}
.sp-foto-bach__banner:hover img { transform: scale(1.04); }
.sp-foto-bach__banner::after {
content: '';
position: absolute;
bottom: 0; left: 0; right: 0;
height: 35%;
background: linear-gradient(to top, rgba(42,32,18,0.15), transparent);
pointer-events: none;
}
.sp-foto-bach__overlay { display: none; }
.sp-foto-bach__facts { display: flex; flex-direction: column; gap: 0; }
.sp-foto-bach__fact {
display: flex;
flex-direction: column;
gap: 0.2rem;
padding: 1rem 0;
border-bottom: 1px solid rgba(100,80,50,0.1);
}
.sp-foto-bach__fact:last-child { border-bottom: none; }
.sp-foto-bach__fact-label {
font-family: var(--font-body);
font-size: 0.62rem;
letter-spacing: 0.28em;
text-transform: uppercase;
color: var(--warm-accent);
font-weight: 600;
}
.sp-foto-bach__fact-value {
font-family: var(--font-display);
font-size: clamp(1.1rem, 1.8vw, 1.35rem);
font-weight: 600;
color: var(--olivewood);
line-height: 1.2;
}
/* ── O MNĚ – pilíře ── */
.omne-pillars {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 1.2rem;
margin-bottom: 4rem;
}
.omne-pillar {
padding: 2.2rem 1.8rem;
background: var(--parchment);
border-top: 3px solid var(--sand);
border: 1px solid rgba(100,80,50,0.16);
border-top-width: 3px;
transition: transform 0.3s, border-top-color 0.3s;
}
.omne-pillar:hover {
transform: translateY(-4px);
border-top-color: var(--warm-accent);
}
.omne-pillar-icon {
font-size: 0.82rem;
color: var(--sand);
display: block;
margin-bottom: 0.8rem;
}
.omne-pillar h3 {
font-family: var(--font-display);
font-size: clamp(1.35rem, 1.8vw, 1.6rem);
font-weight: 600;
color: var(--olivewood);
margin-bottom: 0.7rem;
line-height: 1.25;
}
.omne-pillar p {
font-size: 1rem;
color: var(--text-mid);
line-height: 1.85;
}
.sp-pillars {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 1.2rem;
margin: 4rem 0;
}
.sp-pillar {
padding: 2.2rem 1.8rem;
background: var(--parchment);
border: 1px solid rgba(100,80,50,0.2);
border-top: 3px solid var(--sand);
transition: transform 0.3s, border-top-color 0.3s;
}
.sp-pillar:hover {
transform: translateY(-4px);
border-top-color: var(--warm-accent);
}
.sp-pillar-icon {
font-size: 0.82rem;
color: var(--sand);
display: block;
margin-bottom: 1rem;
}
.sp-pillar h3 {
font-family: var(--font-display);
font-size: clamp(1.35rem, 1.8vw, 1.6rem);
font-weight: 600;
color: var(--olivewood);
margin-bottom: 0.7rem;
line-height: 1.25;
}
.sp-pillar p {
font-size: 1rem;
color: var(--text-mid);
line-height: 1.85;
}
/* ── SLUŽBY ── */
.sp-service {
padding: 3.5rem 0;
border-top: 1px solid rgba(100,80,50,0.16);
}
.sp-service:last-of-type { border-bottom: 1px solid rgba(100,80,50,0.16); }
.sp-service-head {
display: flex;
align-items: flex-start;
gap: 1.5rem;
margin-bottom: 2rem;
}
.sp-service-num {
font-family: var(--font-display);
font-size: clamp(2.5rem, 4vw, 4rem);
font-weight: 300;
font-style: italic;
color: var(--sand-light);
line-height: 1;
flex-shrink: 0;
margin-top: -0.3rem;
}
.sp-service-title {
font-family: var(--font-display);
font-size: clamp(1.8rem, 4vw, 3.5rem);
font-weight: 600;
color: var(--olivewood);
line-height: 1.15;
}
.sp-service-title em { font-style: italic; color: var(--warm-accent); }
.sp-service-list {
list-style: none;
padding: 0;
margin: 0;
max-width: 800px;
margin-left: calc(2.5rem + 1.5rem);
}
.sp-service-list li {
font-size: 1.1rem;
color: var(--text-mid);
line-height: 1.85;
font-weight: 400;
padding: 1rem 0;
border-bottom: 1px solid rgba(100,80,50,0.1);
padding-left: 1.3rem;
position: relative;
}
.sp-service-list li:last-child { border-bottom: none; }
.sp-service-list li::before {
content: '–';
position: absolute;
left: 0;
color: var(--sand);
font-weight: 600;
}
/* ── KONTAKTNÍ KARTY ── */
.kontakt-cards {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 1.2rem;
margin-bottom: 3rem;
}
.kontakt-card {
display: flex;
flex-direction: column;
gap: 0.5rem;
padding: 2.2rem 2rem;
background: var(--parchment);
border: 1px solid rgba(100,80,50,0.2);
border-top: 3px solid var(--warm-accent);
text-decoration: none;
transition: background 0.3s, border-top-color 0.3s, transform 0.3s;
touch-action: manipulation;
-webkit-tap-highlight-color: transparent;
}
.kontakt-card:hover {
background: #ddebd8;
border-top-color: var(--warm-accent-dark);
transform: translateY(-3px);
}
.kontakt-card--nolink { cursor: default; }
.kontakt-card--nolink:hover {
background: var(--parchment);
border-top-color: var(--warm-accent);
transform: none;
}
.kontakt-card__icon {
font-size: 1.6rem;
color: var(--warm-accent);
margin-bottom: 0.4rem;
line-height: 1;
}
.kontakt-card__icon--wa { color: #25D366; }
.kontakt-card__icon--fb { color: #1877F2; }
.kontakt-card__icon--ig { color: #E4405F; }
.kontakt-card:nth-child(3) { border-top-color: #25D366; }
.kontakt-card:nth-child(3):hover { border-top-color: #1aab52; }
.kontakt-card:nth-child(4) { border-top-color: #1877F2; }
.kontakt-card:nth-child(4):hover { border-top-color: #0e5bbd; }
.kontakt-card:nth-child(5) { border-top-color: #E4405F; }
.kontakt-card:nth-child(5):hover { border-top-color: #c0293e; }
.kontakt-card__label {
font-size: 0.65rem;
letter-spacing: 0.28em;
text-transform: uppercase;
color: var(--text-light);
font-family: var(--font-body);
font-weight: 600;
}
.kontakt-card__value {
font-family: var(--font-body);
font-size: clamp(0.88rem, 1.6vw, 1.25rem);
font-weight: 400;
color: var(--olivewood);
line-height: 1.3;
word-break: break-all;
}
.kontakt-card__hint {
font-size: 0.78rem;
letter-spacing: 0.1em;
color: var(--warm-accent);
font-family: var(--font-body);
font-weight: 500;
margin-top: 0.2rem;
opacity: 0;
transform: translateX(-5px);
transition: opacity 0.3s, transform 0.3s;
}
.kontakt-card:hover .kontakt-card__hint {
opacity: 1;
transform: translateX(0);
}
.kontakt-info-grid {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 1.2rem;
margin-bottom: 3rem;
}
.kontakt-info-block {
padding: 2.2rem 2.2rem;
background: #fff;
border: 1px solid rgba(100,80,50,0.13);
border-left: 3px solid var(--warm-accent);
transition: border-left-color 0.3s;
}
.kontakt-info-block:hover { border-left-color: var(--warm-accent-dark); }
.kontakt-info-block__icon {
font-size: 0.78rem;
color: var(--sand);
margin-bottom: 0.7rem;
}
.kontakt-info-block__title {
font-family: var(--font-display);
font-size: clamp(1.3rem, 1.8vw, 1.6rem);
font-weight: 600;
color: var(--olivewood);
margin-bottom: 0.8rem;
line-height: 1.25;
}
.kontakt-info-block p {
font-size: 1rem;
color: var(--text-mid);
line-height: 1.9;
margin-bottom: 0.5rem;
}
.kontakt-info-block p:last-child { margin-bottom: 0; }
.sp-cta {
margin-top: 4rem;
padding: 2.5rem;
background: var(--parchment);
border: 1px solid rgba(140,110,70,0.28);
display: flex;
align-items: center;
justify-content: space-between;
gap: 2rem;
border-radius: 2px;
}
.sp-cta p {
font-family: var(--font-display);
font-size: clamp(1.2rem, 2vw, 1.7rem);
font-style: italic;
color: var(--text-mid);
font-weight: 500;
}
/* ══════════════════════════════════════════════════════════
   CERTIFIKÁTY
   ══════════════════════════════════════════════════════════ */
.sp-certifikaty {
margin-top: 4rem;
padding-top: 3.5rem;
border-top: 1px solid rgba(100,80,50,0.16);
}
.sp-certifikaty-label {
font-size: 0.68rem;
letter-spacing: 0.3em;
text-transform: uppercase;
color: var(--warm-accent);
font-weight: 600;
font-family: var(--font-body);
margin-bottom: 2rem;
}
.sp-certifikaty-grid {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 1.5rem;
}
.sp-cert-item {
display: flex;
flex-direction: column;
gap: 0.7rem;
cursor: pointer;
}
.sp-cert-wrap {
position: relative;
width: 100%;
aspect-ratio: 4 / 3;
background: var(--parchment);
border: 1px solid rgba(100,80,50,0.18);
overflow: hidden;
transition: transform 0.3s ease, box-shadow 0.3s ease;
cursor: pointer;
}
.sp-cert-wrap:hover {
transform: translateY(-3px);
box-shadow: 0 10px 32px rgba(42,32,18,0.18);
}
.sp-cert-wrap::after {
content: '⊕ Zobrazit';
position: absolute;
bottom: 0; left: 0; right: 0;
padding: 0.7rem;
background: linear-gradient(to top, rgba(42,32,18,0.7), transparent);
color: rgba(245,235,210,0.9);
font-family: var(--font-body);
font-size: 0.68rem;
letter-spacing: 0.2em;
text-transform: uppercase;
text-align: center;
opacity: 0;
transition: opacity 0.3s;
pointer-events: none;
}
.sp-cert-wrap:hover::after { opacity: 1; }
.sp-cert-img {
width: 100%;
height: 100%;
object-fit: contain;
display: block;
background: #fff;
}
.sp-cert-placeholder {
position: absolute;
inset: 0;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
gap: 0.7rem;
background: var(--parchment);
border: 2px dashed rgba(140,110,70,0.38);
pointer-events: none;
}
.sp-cert-img:not([src=""]) + .sp-cert-placeholder { display: none; }
.sp-photo-placeholder-icon,
.sp-cert-placeholder-icon {
font-size: 1.3rem;
color: var(--sand);
}
.sp-photo-placeholder-text,
.sp-cert-placeholder-text {
font-family: var(--font-display);
font-size: 1.2rem;
font-style: italic;
color: var(--text-light);
text-align: center;
line-height: 1.6;
}
/* ══════════════════════════════════════════════════════════
   LIGHTBOX
   ══════════════════════════════════════════════════════════ */
.lightbox-overlay {
position: fixed;
inset: 0;
z-index: 9999;
background: rgba(10, 8, 4, 0.9);
backdrop-filter: blur(6px);
-webkit-backdrop-filter: blur(6px);
display: flex;
align-items: center;
justify-content: center;
opacity: 0;
pointer-events: none;
transition: opacity 0.3s ease;
padding: 1.5rem;
}
.lightbox-overlay.open {
opacity: 1;
pointer-events: all;
}
.lightbox-inner {
position: relative;
max-width: 860px;
width: 100%;
max-height: 90vh;
display: flex;
flex-direction: column;
align-items: center;
gap: 1rem;
}
.lightbox-inner img {
max-width: 100%;
max-height: 80vh;
object-fit: contain;
border: 1px solid rgba(200,168,96,0.28);
box-shadow: 0 20px 70px rgba(0,0,0,0.55);
background: #fff;
}
.lightbox-close {
position: absolute;
top: -2.8rem;
right: 0;
background: none;
border: 1px solid rgba(245,235,210,0.28);
color: rgba(245,235,210,0.75);
font-size: 1.6rem;
width: 40px;
height: 40px;
display: flex;
align-items: center;
justify-content: center;
cursor: pointer;
transition: all 0.2s;
line-height: 1;
}
.lightbox-close:hover {
background: rgba(245,235,210,0.12);
color: #fff;
}
.lightbox-caption {
font-family: var(--font-body);
font-size: 0.68rem;
letter-spacing: 0.25em;
text-transform: uppercase;
color: rgba(245,235,210,0.4);
}
/* ══════════════════════════════════════════════════════════
   HERO MOBILE – service tagy (skryté)
   ══════════════════════════════════════════════════════════ */
.hero-services-mobile {
display: none;
}
/* ══════════════════════════════════════════════════════════
   DEVELOPER CREDIT STRIP
   ══════════════════════════════════════════════════════════ */
.dev-credit {
background: #0A0A08;
padding: 0.75rem 2rem;
display: flex;
align-items: center;
justify-content: center;
flex-wrap: wrap;
gap: 0.4rem 0.9rem;
border-top: 1px solid rgba(255,255,255,0.04);
}
.dev-credit__made {
font-family: var(--font-body);
font-size: 0.6rem;
letter-spacing: 0.18em;
text-transform: uppercase;
color: rgba(200, 190, 170, 0.28);
font-weight: 400;
}
.dev-credit__name {
font-family: var(--font-body);
font-size: 0.6rem;
letter-spacing: 0.18em;
text-transform: uppercase;
color: rgba(200, 190, 170, 0.45);
font-weight: 600;
}
.dev-credit__sep {
font-size: 0.6rem;
color: rgba(200, 190, 170, 0.18);
line-height: 1;
}
.dev-credit__link {
font-family: var(--font-body);
font-size: 0.6rem;
letter-spacing: 0.12em;
color: rgba(200, 190, 170, 0.32);
text-decoration: none;
font-weight: 400;
transition: color 0.25s;
}
.dev-credit__link:hover {
color: rgba(200, 190, 170, 0.65);
}
/* ══════════════════════════════════════════════════════════
   RESPONSIVE – TABLET (max 1100px)
   ══════════════════════════════════════════════════════════ */
@media (max-width: 1100px) {
.pracuji-grid { grid-template-columns: repeat(3, 1fr); }
.kontakt-cards { grid-template-columns: repeat(2, 1fr); }
.hero-logo { width: 190px; height: 190px; }
}
/* ══════════════════════════════════════════════════════════
   RESPONSIVE – TABLET PORTRAIT (max 900px)
   ══════════════════════════════════════════════════════════ */
@media (max-width: 900px) {
nav { padding: 0.85rem 1.4rem; }
.nav-logo { font-size: 1.3rem; }
.hero::after { width: 380px; height: 380px; }
.hero-trio { gap: 2rem; }
.hero-logo { width: 160px; height: 160px; }
.service-name { font-size: clamp(1.6rem, 3.5vw, 3rem); }
.pracuji-grid { grid-template-columns: repeat(2, 1fr); }
.pracuji-section { padding: 5rem 0; }
.pracuji-cta { flex-direction: column; align-items: flex-start; }
.contact { padding: 5.5rem 0; }
.menu-inner { padding: 5.5rem 1.8rem 3rem; }
.cenik-row { flex-direction: column; align-items: flex-start; gap: 0.7rem; }
.cenik-row-prices { flex-wrap: wrap; gap: 0.7rem; }
.cenik-row-price-item { align-items: flex-start; }
.rezervace-banner-inner { flex-direction: column; align-items: flex-start; gap: 2rem; }
.rezervace-banner { padding: 3.5rem 0; }
.sp-block { grid-template-columns: 1fr; gap: 1.2rem; }
.sp-block-label { position: static; }
.omne-pillars { grid-template-columns: repeat(2, 1fr); }
.sp-pillars { grid-template-columns: repeat(2, 1fr); }
.sp-service-list { margin-left: 0; }
.sp-service-head { flex-direction: column; gap: 0.4rem; }
.kontakt-cards { grid-template-columns: repeat(2, 1fr); }
.kontakt-info-grid { grid-template-columns: 1fr; }
.sp-cta { flex-direction: column; align-items: flex-start; }
.sp-photo-intro-layout { grid-template-columns: 1fr; gap: 2rem; }
.sp-photo-intro-image { min-height: 280px; }
.sp-photo-intro-image img { min-height: 280px; }
.sp-foto-regrese { grid-template-columns: 1fr; gap: 2rem; }
.sp-foto-regrese__img-wrap { width: 100%; height: 300px; }
.sp-foto-bach { grid-template-columns: 1fr; gap: 2rem; }
.sp-foto-bach__banner { width: 100%; height: 300px; }
.subpage-hero { min-height: 30vh; }
.subpage-body { padding: 3.5rem 0; }
.scroll-down { right: 1.5rem; }
}
/* ══════════════════════════════════════════════════════════
   RESPONSIVE – MOBILNÍ (max 640px)
   ══════════════════════════════════════════════════════════ */
@media (max-width: 640px) {
nav {
padding: 0.75rem 0.9rem;
min-height: 56px;
  }
.nav-logo { font-size: 1rem; }
.nav-right {
gap: 0.6rem;
align-items: center;
  }
.nav-link-item {
display: inline-flex;
align-items: center;
font-size: 0.6rem;
letter-spacing: 0.1em;
white-space: nowrap;
font-weight: 800;
color: var(--fresh-bark);
opacity: 1;
background: none;
border: none;
padding: 0.2rem 0;
border-radius: 0;
line-height: 1.3;
text-transform: uppercase;
transition: opacity 0.2s;
text-decoration: none;
  }
.nav-link-item:hover { opacity: 0.65; }
.hero { padding-top: 56px; }
.hero-inner { padding: 1.5rem 0.8rem 1.5rem; }
.hero::after { width: 320px; height: 320px; }
.hero-trio {
display: grid;
grid-template-columns: 1fr auto 1fr;
gap: 0.8rem;
align-items: center;
width: 100%;
  }
.hero-left { display: flex; }
.hero-right { display: flex; }
.service-name {
font-size: clamp(2rem, 6.8vw, 2.3rem);
line-height: 1.2;
  }
.hero-logo { width: 105px; height: 105px; }
.hero-left::after,
.hero-right::before {
height: 32px;
  }
.hero-services-mobile { display: none !important; }
.hero-rule { margin: 1.2rem 0 1rem; }
.hero-book { margin-bottom: 1.4rem; gap: 0.7rem; }
.btn-book { padding: 0.85rem 2rem; font-size: 1.25rem; }

/* ══════════════════════════════════════════════════════════
   EMOTION TAGS MOBILE — ZVĚTŠENO
   ══════════════════════════════════════════════════════════ */
.emotions-row { gap: 0.45rem 0.65rem; }
.emotion-tag {
  font-size: 1.15rem;
  padding: 0.45rem 1rem;
}

.quote-text { font-size: clamp(1.05rem, 4vw, 1.4rem); }
.scroll-down { display: none; }
.section-inner { padding: 0 1.2rem; }
.pracuji-section { padding: 4rem 0; }
.pracuji-grid { grid-template-columns: 1fr; gap: 1.1rem; }
.pracuji-card { padding: 2.8rem 2.2rem; }
.pracuji-title { font-size: clamp(1.75rem, 6vw, 2.1rem); margin-bottom: 1rem; }
.pracuji-list li { font-size: clamp(1.1rem, 4vw, 1.25rem); line-height: 1.95; }
.pracuji-cta { padding: 1.8rem 1.2rem; }
.contact { padding: 4.5rem 0; }
.contact-item { flex-direction: column; align-items: flex-start; gap: 0.3rem; }
.rezervace-banner { padding: 2.8rem 0; }
.rezervace-banner-inner { padding: 0 1.2rem; gap: 1.5rem; }
footer { padding: 1.3rem 1rem; flex-direction: column; align-items: flex-start; }
.dev-credit {
padding: 0.65rem 1rem;
gap: 0.3rem 0.6rem;
justify-content: center;
  }
.dev-credit__made,
.dev-credit__name,
.dev-credit__link,
.dev-credit__sep {
font-size: 0.52rem;
  }

/* ════════════════════════════════════════════════════════
   SUBPAGES MOBILE – ZVĚTŠENÍ TEXTŮ
   ════════════════════════════════════════════════════════ */
.subpage-hero { min-height: 32vh; padding-top: 56px; }
.subpage-hero-inner { padding: 0 1.4rem; gap: 1.2rem; }
.subpage-title {
  font-size: clamp(3rem, 11vw, 4rem);
}
.subpage-body { padding: 2.8rem 0; }
.subpage-inner { padding: 0 1.4rem; }

/* Zpět tlačítko */
.back-btn-new { padding: 0.6rem 0.9rem; }
.back-btn-new__text { display: none; }
.back-btn-new__arrow { width: 32px; height: 32px; font-size: 1rem; }

/* Perex – hodně zvětšit */
.sp-perex {
  font-size: clamp(1.25rem, 4.5vw, 1.6rem);
  padding-left: 1.1rem;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

/* Bloky textu */
.sp-block { padding: 2.2rem 0; gap: 1rem; }
.sp-block-label {
  font-size: clamp(1.55rem, 5.5vw, 2rem);
}
.sp-block-content p {
  font-size: clamp(1.1rem, 4vw, 1.25rem);
  line-height: 1.9;
}

/* CTA */
.sp-cta { padding: 1.8rem 1.2rem; gap: 1.2rem; flex-direction: column; align-items: flex-start; }
.sp-cta p {
  max-width: 100%;
  font-size: clamp(1.2rem, 4.5vw, 1.5rem);
}

/* Pilíře */
.omne-pillars { grid-template-columns: 1fr; gap: 0.9rem; }
.sp-pillars { grid-template-columns: 1fr; gap: 0.9rem; }
.omne-pillar { padding: 1.6rem 1.4rem; }
.sp-pillar { padding: 1.6rem 1.4rem; }
.omne-pillar h3,
.sp-pillar h3 {
  font-size: clamp(1.45rem, 5vw, 1.7rem);
  margin-bottom: 0.6rem;
}
.omne-pillar p,
.sp-pillar p {
  font-size: clamp(1.05rem, 3.8vw, 1.2rem);
  line-height: 1.8;
}

/* Foto sekce O mně */
.sp-photo-intro-layout { gap: 2rem; }
.sp-photo-intro-image { min-height: 280px; }
.sp-photo-intro-image img { min-height: 280px; }
.sp-photo-intro-name {
  font-size: clamp(2.4rem, 8vw, 3.2rem);
}
.sp-photo-intro-quote {
  font-size: clamp(1.3rem, 5vw, 1.6rem);
  line-height: 1.75;
}
.sp-photo-intro-tag {
  font-size: 0.72rem;
  padding: 0.4rem 0.9rem;
  letter-spacing: 0.15em;
}

/* Foto – regrese */
.sp-foto-regrese { padding: 1.8rem 0; }
.sp-foto-regrese__img-wrap {
  width: 100%;
  height: 340px;
}
.sp-foto-regrese__img-inner img { object-position: center 15%; }
.sp-foto-regrese__quote {
  font-size: clamp(1.3rem, 5vw, 1.6rem);
  line-height: 1.65;
}
.sp-foto-regrese__eyebrow { font-size: 0.68rem; }
.sp-foto-regrese__tags span {
  font-size: 0.7rem;
  padding: 0.35rem 0.9rem;
}

/* Foto – Bach */
.sp-foto-bach { grid-template-columns: 1fr; gap: 2rem; }
.sp-foto-bach__banner {
  width: 100%;
  height: auto;
  aspect-ratio: auto;
}
.sp-foto-bach__banner img {
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center top;
}
.sp-foto-bach__banner::after { display: none; }
.sp-foto-bach__fact-label { font-size: 0.7rem; }
.sp-foto-bach__fact-value {
  font-size: clamp(1.2rem, 4vw, 1.45rem);
}

/* Služby */
.sp-service { padding: 2.5rem 0; }
.sp-service-head { margin-bottom: 1.2rem; }
.sp-service-title {
  font-size: clamp(1.75rem, 6vw, 2.4rem);
}
.sp-service-list li {
  font-size: clamp(1.05rem, 3.8vw, 1.2rem);
  line-height: 1.85;
  padding: 0.9rem 0 0.9rem 1.4rem;
}
.sp-service-num {
  font-size: clamp(2.2rem, 7vw, 3rem);
}

/* Kontakt karty */
.kontakt-cards { grid-template-columns: 1fr 1fr; gap: 0.8rem; }
.kontakt-card { padding: 1.5rem 1.1rem; gap: 0.4rem; }
.kontakt-card__icon { font-size: 1.5rem; margin-bottom: 0.3rem; }
.kontakt-card__label { font-size: 0.62rem; letter-spacing: 0.18em; }
.kontakt-card__value {
  font-size: clamp(0.92rem, 3.2vw, 1.05rem);
  word-break: break-word;
  hyphens: auto;
}
.kontakt-card__hint { display: none; }

/* Kontakt info bloky */
.kontakt-info-grid { gap: 0.9rem; }
.kontakt-info-block { padding: 1.7rem 1.4rem; }
.kontakt-info-block__title {
  font-size: clamp(1.3rem, 4.5vw, 1.55rem);
}
.kontakt-info-block p {
  font-size: clamp(1.05rem, 3.8vw, 1.15rem);
  line-height: 1.85;
}

/* Ceník */
.cenik-section-title { font-size: clamp(1.5rem, 5vw, 1.9rem); }
.cenik-row { padding: 1.1rem 1rem; }
.cenik-row-name {
  font-size: clamp(1.45rem, 5.2vw, 1.75rem);
}
.cenik-row-detail { font-size: 0.85rem; }
.cenik-row-price { font-size: clamp(0.95rem, 3.2vw, 1.15rem); }
.cenik-row-price-item--highlight { padding: 0.5rem 0.9rem; }
.cenik-note { margin: 0.9rem 0 2rem; }
.cenik-note p { font-size: 1rem; }
.btn-book--text {
  padding: 0.9rem 1.2rem;
  font-size: 0.95rem;
  word-break: break-all;
  text-align: center;
  width: 100%;
}

/* Certifikáty */
.sp-certifikaty { margin-top: 3rem; padding-top: 2.5rem; }
.sp-certifikaty-grid { grid-template-columns: 1fr 1fr; gap: 0.9rem; }

/* Ostatní */
.divider { padding: 2rem 0; }
.divider-line { width: 65px; }
.lightbox-overlay { padding: 0.8rem; }
.lightbox-close { top: -2.3rem; }
.lightbox-inner img { max-height: 72vh; }

/* ════════════════════════════════════════════════════════
   MOBILNÍ MENU – drawer zprava
   ════════════════════════════════════════════════════════ */
.menu-overlay {
position: fixed;
top: 0; left: 0; right: 0; bottom: 0;
width: 100%; height: 100%;
z-index: 300;
background: rgba(15, 12, 6, 0.6);
backdrop-filter: blur(2px);
-webkit-backdrop-filter: blur(2px);
display: block;
overflow: hidden;
opacity: 0;
pointer-events: none;
transition: opacity 0.32s ease;
  }
.menu-overlay.open {
opacity: 1;
pointer-events: all;
  }
.menu-inner {
position: absolute;
top: 0; right: 0;
width: 78vw;
max-width: 300px;
height: 100%;
height: 100dvh;
background: #EDE8DF;
display: flex;
flex-direction: column;
padding: 0;
min-height: unset;
transform: translateX(105%);
transition: transform 0.36s cubic-bezier(0.4, 0, 0.2, 1);
box-shadow: -12px 0 50px rgba(15,12,6,0.25);
overflow-y: auto;
overscroll-behavior: contain;
  }
.menu-overlay.open .menu-inner {
transform: translateX(0);
  }
.menu-inner > .menu-eyebrow {
padding: 4.5rem 1.5rem 0.8rem;
margin-bottom: 0;
font-size: 0.52rem;
letter-spacing: 0.35em;
border-bottom: 1px solid rgba(42,32,18,0.1);
  }
.menu-nav {
padding: 0.4rem 0;
display: flex;
flex-direction: column;
flex: 1;
  }
.menu-nav-link {
display: flex;
align-items: center;
gap: 0.8rem;
padding: 0.95rem 1.5rem;
border-bottom: 1px solid rgba(42,32,18,0.07);
border-radius: 0;
min-height: 0;
flex: 0 0 auto;
transition: background 0.18s, padding-left 0.2s;
  }
.menu-nav-link:hover,
.menu-nav-link:active {
background: rgba(42,32,18,0.05);
padding-left: 1.9rem;
  }
.menu-num {
font-size: 0.58rem;
min-width: 18px;
color: rgba(42,32,18,0.25);
font-weight: 500;
  }
.menu-label {
font-size: 1.45rem;
line-height: 1.25;
color: var(--olivewood);
flex: 1;
  }
.menu-arrow { display: none; }
.menu-footer {
padding: 1rem 1.5rem;
padding-bottom: max(1.2rem, env(safe-area-inset-bottom));
margin-top: 0;
border-top: 1px solid rgba(42,32,18,0.1);
background: rgba(42,32,18,0.03);
display: flex;
flex-direction: column;
gap: 0.3rem;
  }
.menu-contact {
font-size: 0.78rem;
color: rgba(42,32,18,0.5);
letter-spacing: 0.05em;
  }
.menu-close {
position: fixed;
top: 0.8rem;
right: 0.8rem;
width: 36px;
height: 36px;
background: rgba(42,32,18,0.1);
border: 1px solid rgba(42,32,18,0.2);
z-index: 10;
  }
.menu-home-btn {
position: fixed;
top: 0.8rem;
left: 0.8rem;
font-size: 0;
padding: 0;
width: 36px;
height: 36px;
justify-content: center;
border-radius: 50%;
letter-spacing: 0;
border: 1px solid rgba(42,32,18,0.2);
background: rgba(42,32,18,0.06);
z-index: 10;
  }
.menu-home-btn::before {
content: '←';
font-size: 1rem;
line-height: 1;
color: var(--text-mid);
  }
}

/* ══════════════════════════════════════════════════════════
   RESPONSIVE – MALÉ TELEFONY (max 393px)
   ══════════════════════════════════════════════════════════ */
@media (max-width: 393px) {
.nav-logo { font-size: 0.9rem; }
.hero-logo { width: 88px; height: 88px; }
.service-name { font-size: clamp(1.75rem, 4.5vw, 1.35rem); }
.hero-trio { gap: 0.45rem; }
.btn-book { padding: 0.75rem 1.5rem; font-size: 1.1rem; }
.menu-label { font-size: 1.25rem; }
.kontakt-cards { grid-template-columns: 1fr; }
.sp-certifikaty-grid { grid-template-columns: 1fr; }
.pracuji-grid { grid-template-columns: 1fr; }
/* Subpage texty pro nejmenší telefony */
.sp-perex { font-size: clamp(1.15rem, 4.2vw, 1.4rem); }
.sp-block-content p { font-size: clamp(1.05rem, 4vw, 1.18rem); }
.omne-pillar p, .sp-pillar p { font-size: 1.05rem; }
.sp-service-list li { font-size: 1.05rem; }
.kontakt-info-block p { font-size: 1.05rem; }
/* Emotion tags pro nejmenší */
.emotion-tag { font-size: 1rem; padding: 0.4rem 0.85rem; }
}

/* ══════════════════════════════════════════════════════════
   IPHONE 392px A MENŠÍ
   ══════════════════════════════════════════════════════════ */
@media (max-width: 320px) {
.service-name {
font-size: clamp(1.5rem, 5.8vw, 1.65rem);
line-height: 1.18;
  }
 }
@media (max-width: 392px) {
.hero-emblem {
margin-top: -18px;
  }
.hero-logo {
width: 92px;
height: 92px;
  }
.service-name {
font-size: clamp(1.75rem, 5.8vw, 1.65rem);
line-height: 1.18;
  }
.hero-trio {
gap: 0.55rem;
  }
.hero-left::after,
.hero-right::before {
height: 38px;
  }
.nav-link-item {
display: inline-flex;
align-items: center;
font-size: 0.58rem;
letter-spacing: 0.08em;
white-space: nowrap;
font-weight: 800;
color: var(--fresh-bark);
opacity: 1;
background: none;
border: none;
padding: 0.2rem 0;
border-radius: 0;
line-height: 1.3;
text-transform: uppercase;
transition: opacity 0.2s;
text-decoration: none;
  }
.nav-right {
gap: 0.45rem;
  }
}
/* ══════════════════════════════════════════════════════════
   OPRAVA: grid min-width overflow
   ══════════════════════════════════════════════════════════ */
.pracuji-grid,
.kontakt-cards,
.kontakt-info-grid,
.omne-pillars,
.sp-pillars,
.sp-certifikaty-grid,
.sp-photo-intro-layout,
.sp-foto-regrese,
.sp-foto-bach,
.cenik-table {
min-width: 0;
}
.pracuji-grid > *,
.kontakt-cards > *,
.kontakt-info-grid > *,
.omne-pillars > *,
.sp-pillars > *,
.sp-certifikaty-grid > * {
min-width: 0;
}
/* Oprava modrých telefonních čísel – Safari auto-detekce */
a[href^="tel"] {
color: inherit;
text-decoration: none;
}