/* ===== Artisma Production — faithful recreation (light theme) ===== */
:root {
  --bg: #ffffff;
  --bg-soft: #faf9f7;
  --text: #1d1d1f;
  --muted: #6e6e73;
  --line: #e6e4e0;
  --accent: #df9034;      /* brand orange (from logo) */
  --accent-dark: #c47a23;
  --dark: #141414;        /* dark buttons */
  --serif: "Playfair Display", Georgia, "Times New Roman", serif;
  --sans: "Poppins", "Helvetica Neue", Arial, sans-serif;
  --maxw: 1200px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img {
  max-width: 100%; height: auto; display: block;   /* height:auto keeps natural ratio despite width/height attrs */
  -webkit-user-drag: none; -khtml-user-drag: none; -moz-user-drag: none; user-drag: none;
  -webkit-touch-callout: none; -webkit-user-select: none; user-select: none;
  pointer-events: none;   /* photos aren't directly grabbable; wrappers handle clicks */
}
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--sans); font-size: 0.92rem; font-weight: 500;
  cursor: pointer; border: 0; text-align: center;
  /* only compositor-friendly + colour props transition; press feedback is instant */
  transition: transform 0.12s ease, background-color 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}
.btn-pill { background: var(--accent); color: #fff; padding: 12px 30px; border-radius: 40px; }
@media (hover: hover) { .btn-pill:hover { background: var(--accent-dark); transform: translateY(-2px); } }
.btn-dark { background: var(--dark); color: #fff; padding: 11px 26px; border-radius: 4px; }
@media (hover: hover) { .btn-dark:hover { background: var(--accent); } }
/* Feedback on press, not on release (instant, works on touch where :hover doesn't) */
.btn:active { transform: scale(0.97); }
.btn-pill:active { transform: scale(0.97); }

/* ===== Header ===== */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  background: #fff; border-bottom: 1px solid var(--line);
  transition: box-shadow 0.3s;
}
.site-header.scrolled { box-shadow: 0 4px 20px rgba(0,0,0,0.06); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 74px; }
.logo-mark { height: 46px; width: auto; display: block; }
.nav-center { display: flex; gap: 46px; list-style: none; }
.nav-center a {
  font-family: var(--serif); font-size: 1.08rem; color: #2a2a2a; letter-spacing: 0.01em;
  position: relative; transition: color 0.2s;
}
.nav-center a.active { color: var(--accent); }
@media (hover: hover) { .nav-center a:hover { color: var(--accent); } }
.nav-right { display: flex; align-items: center; gap: 18px; }
.ig-link { color: #2a2a2a; display: flex; transition: color 0.2s; }
@media (hover: hover) { .ig-link:hover { color: var(--accent); } }
.lang-select {
  font-family: var(--serif); font-size: 0.95rem; color: #2a2a2a;
  border: 1px solid var(--line); border-radius: 4px; padding: 8px 30px 8px 14px;
  background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' fill='none' stroke='%23666' stroke-width='1.5'%3E%3Cpath d='M1 1l4 4 4-4'/%3E%3C/svg%3E") no-repeat right 12px center;
  -webkit-appearance: none; appearance: none; cursor: pointer;
}
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; flex-direction: column; gap: 5px; }
.nav-toggle span { width: 26px; height: 2px; background: #1d1d1f; transition: 0.3s; }

/* ===== Hero carousel ===== */
.hero-carousel { position: relative; height: 82vh; min-height: 560px; margin-top: 74px; overflow: hidden; background: #000; }
/* No-JS fallback: single slide, gentle cross-fade */
.slide {
  position: absolute; inset: 0; opacity: 0; transition: opacity 0.6s ease; pointer-events: none;
  background-image: var(--bg); background-size: cover; background-position: var(--pos, center);
}
.slide.active { opacity: 1; pointer-events: auto; }
/* JS-driven draggable filmstrip: 1:1 finger tracking, transform-positioned slides.
   Vertical scroll stays with the browser (pan-y); horizontal is ours. */
.hero-carousel.js-ready { touch-action: pan-y; cursor: grab; }
.hero-carousel.js-ready.dragging { cursor: grabbing; }
.hero-carousel.js-ready .slide {
  opacity: 1; pointer-events: auto; transition: none;
  will-change: transform; backface-visibility: hidden;
}
.slide::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.28) 45%, rgba(0,0,0,0.05) 75%, rgba(0,0,0,0.15) 100%);
}
.slide-inner { position: relative; height: 100%; display: flex; align-items: center; }
.slide-content { max-width: 640px; }
.slide-content h2 {
  font-family: var(--serif); font-weight: 600; color: #fff;
  font-size: clamp(2rem, 4.6vw, 3.6rem); line-height: 1.12; letter-spacing: -0.01em;
  text-shadow: 0 2px 24px rgba(0,0,0,0.4); margin-bottom: 28px;
}
.slide-content .btn-pill { font-size: 1rem; padding: 13px 36px; }

.car-arrow {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 10;
  background: none; border: 0; color: rgba(255,255,255,0.85); cursor: pointer;
  font-size: 2.4rem; line-height: 1; padding: 10px; transition: color 0.2s, transform 0.2s;
  font-family: Georgia, serif;
}
@media (hover: hover) { .car-arrow:hover { color: #fff; } }
.car-arrow:active { transform: translateY(-50%) scale(0.88); }
.car-prev { left: 22px; } .car-next { right: 22px; }
.car-dots { position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%); display: flex; gap: 12px; z-index: 10; }
.car-dots button { width: 9px; height: 9px; border-radius: 50%; border: 0; background: rgba(255,255,255,0.5); cursor: pointer; padding: 0; transition: background 0.2s, transform 0.2s; }
.car-dots button:active { transform: scale(0.85); }
.car-dots button.active { background: #fff; transform: scale(1.25); }

/* Mobile hero swaps to each slide's own mobile image (CMS: hero.json → image_mobile).
   Empty image_mobile reuses the desktop image. */
@media (max-width: 760px) {
  .slide { background-image: var(--bgm); background-position: center; }
}

/* ===== Section shell ===== */
.section { padding: 84px 0; }
.section-title {
  font-family: var(--serif); color: var(--text); text-align: center;
  font-size: clamp(2rem, 4vw, 2.9rem); font-weight: 600; margin-bottom: 8px;
  letter-spacing: -0.015em; /* large display text reads too loose without negative tracking */
}
.section-title.dark { color: var(--text); }
.section-title.accent { color: var(--accent); } /* opt-in orange for the rare emphasis title */
.section-sub { text-align: center; color: var(--muted); max-width: 560px; margin: 0 auto 54px; }

/* ===== Portfolio cards ===== */
.works { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.work { text-align: center; }
.work-img { display: block; width: 100%; aspect-ratio: 4 / 5; overflow: hidden; border-radius: 2px; background: #eee; }
.work-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
/* Hover zoom len na zariadeniach s myšou – na dotyku by prvý ťuk aktivoval len :hover (sticky hover) a odkaz by reagoval až na druhý ťuk */
@media (hover: hover) { .work:hover .work-img img { transform: scale(1.05); } }
.work h3 { font-family: var(--serif); color: var(--text); font-weight: 600; font-size: 1.5rem; letter-spacing: 0.01em; margin: 20px 0 16px; }

/* ===== Page hero (inner pages) ===== */
.page-hero { margin-top: 74px; padding: 70px 0 40px; background: var(--bg-soft); border-bottom: 1px solid var(--line); text-align: center; }
.page-hero h1 { font-family: var(--serif); color: var(--text); font-size: clamp(2.2rem, 5vw, 3.4rem); font-weight: 600; letter-spacing: -0.02em; }
.page-hero p { color: var(--muted); max-width: 620px; margin: 14px auto 0; }
.breadcrumb { font-size: 0.85rem; color: var(--muted); margin-bottom: 14px; }
@media (hover: hover) { .breadcrumb a:hover { color: var(--accent); } }

/* ===== Gallery (category pages) ===== */
.gallery { columns: 4; column-gap: 6px; }
@media (max-width: 1200px) { .gallery { columns: 3; } }
.gallery .g-item {
  break-inside: avoid; margin: 0 0 6px; padding: 0; border: 0; background: none;
  border-radius: 3px; overflow: hidden; position: relative; display: block; width: 100%; cursor: pointer;
}
.gallery .g-item img { width: 100%; display: block; transform: translateZ(0); backface-visibility: hidden; transition: transform 0.5s cubic-bezier(0.22, 0.61, 0.36, 1); }
@media (hover: hover) { .gallery .g-item:hover img { transform: scale(1.04); } }
.gallery .g-item .g-shield { position: absolute; inset: 0; z-index: 2; }
.gallery .g-item::after { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(to top, rgba(0,0,0,0.34), rgba(0,0,0,0.04) 55%); opacity: 0; transition: opacity 0.35s ease; pointer-events: none; }
@media (hover: hover) { .gallery .g-item:hover::after { opacity: 1; } }

/* ===== Lightbox (protected image view) ===== */
.lightbox { position: fixed; inset: 0; z-index: 300; background: rgba(0,0,0,0.92); display: none; align-items: center; justify-content: center; padding: 5vh 5vw; }
.lightbox.open { display: flex; }
.lb-stage { position: relative; max-width: 90vw; max-height: 88vh; }
.lb-stage img { max-width: 90vw; max-height: 88vh; width: auto; height: auto; border-radius: 3px; }
.lb-shield { position: absolute; inset: 0; z-index: 2; cursor: zoom-out; }
.lb-close { position: fixed; top: 18px; right: 26px; z-index: 3; background: none; border: 0; color: #fff; font-size: 2.6rem; line-height: 1; cursor: pointer; opacity: 0.85; }
@media (hover: hover) { .lb-close:hover { opacity: 1; } }
.lb-close:active { transform: scale(0.9); }
/* Lightbox navigation arrows (desktop); mobile uses swipe */
.lb-nav { position: fixed; top: 50%; transform: translateY(-50%); z-index: 3; width: 54px; height: 54px;
  display: flex; align-items: center; justify-content: center; padding: 0 0 4px;
  background: rgba(0,0,0,0.32); border: 0; border-radius: 50%; color: #fff; font-size: 2.3rem; line-height: 1;
  cursor: pointer; opacity: 0.82; transition: opacity 0.2s ease, background 0.2s ease; }
@media (hover: hover) { .lb-nav:hover { opacity: 1; background: rgba(0,0,0,0.55); } }
.lb-nav:active { transform: translateY(-50%) scale(0.9); }
.lb-prev { left: 22px; }
.lb-next { right: 22px; }
@media (max-width: 760px) { .lb-nav { display: none; } }

/* ===== About ===== */
.about-wrap { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 60px; align-items: start; }
.about-photo { width: 100%; aspect-ratio: 4 / 5; border-radius: 3px; overflow: hidden; position: sticky; top: 100px; background: #f0eeea; }
.about-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; }
.about-text h2 { font-family: var(--serif); color: var(--text); font-size: 2.2rem; font-weight: 600; margin-bottom: 22px; letter-spacing: -0.015em; }
.about-text p { color: #3a3a3c; margin-bottom: 18px; }
.about-text p .hl { color: var(--text); font-weight: 500; }

/* ===== Contact page ===== */
.contact-wrap { display: grid; grid-template-columns: 1fr 1.1fr; gap: 60px; }
.contact-block { margin-bottom: 30px; }
.contact-block .label { font-family: var(--serif); font-size: 0.8rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent); margin-bottom: 8px; }
.contact-block a, .contact-block p { color: #3a3a3c; }
@media (hover: hover) { .contact-block a:hover { color: var(--accent); } }
.hours-row { display: flex; justify-content: space-between; padding: 9px 0; border-bottom: 1px solid var(--line); color: #3a3a3c; font-size: 0.94rem; }
.hours-row span:last-child { color: var(--muted); }

/* ===== Footer (FAQ + brand + contact form) ===== */
.site-footer { background: var(--bg-soft); border-top: 1px solid var(--line); padding: 80px 0 40px; }
.footer-grid { display: grid; grid-template-columns: 1.1fr 1fr 1.1fr; gap: 54px; align-items: start; }
.footer-grid.no-faq { grid-template-columns: 1fr 1.1fr; max-width: 900px; }
.faq-title { font-family: var(--serif); font-size: 1.9rem; font-weight: 600; margin-bottom: 26px; color: var(--text); }
.faq-item { border: 1px solid var(--line); border-radius: 6px; margin-bottom: 12px; background: #fff; overflow: hidden; }
.faq-q { width: 100%; text-align: left; background: none; border: 0; color: var(--text); font-family: var(--sans); font-size: 0.98rem; font-weight: 500; padding: 16px 18px; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 16px; transition: background-color 0.15s ease; }
.faq-q:active { background: var(--bg-soft); }
.faq-q .plus { color: var(--text); font-size: 1.3rem; transition: transform 0.3s; flex-shrink: 0; font-weight: 300; }
.faq-item.open .faq-q .plus { transform: rotate(45deg); color: var(--accent); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-a p { color: var(--muted); padding: 0 18px 18px; font-size: 0.92rem; }

.footer-brand { text-align: center; }
.footer-brand .brand-logo { height: 88px; width: auto; margin: 0 auto 10px; display: block; }
.footer-brand .wordmark { font-family: var(--serif); font-size: 1.9rem; letter-spacing: 0.14em; font-weight: 600; margin-bottom: 20px; }
.footer-brand p, .footer-brand a { color: var(--muted); font-size: 0.9rem; line-height: 1.9; display: block; }
@media (hover: hover) { .footer-brand a:hover { color: var(--accent); } }
.footer-brand .btn-dark { margin-top: 20px; display: inline-flex; }

.footer-contact h4 { font-family: var(--serif); font-size: 1.4rem; font-weight: 600; margin-bottom: 22px; }
.field { margin-bottom: 20px; }
.field label { display: block; font-size: 0.82rem; color: var(--muted); margin-bottom: 6px; }
.field input, .field textarea, .field select {
  width: 100%; border: 0; border-bottom: 1px solid #cfccc6; background: transparent;
  font-family: var(--sans); font-size: 0.95rem; color: var(--text); padding: 8px 2px; transition: border-color 0.2s;
}
.field select { padding: 8px 2px; border-radius: 0; }
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--accent); }
.field textarea { resize: vertical; min-height: 70px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.footer-contact .btn-dark { border-radius: 40px; padding: 12px 40px; margin-top: 6px; }
.form-note { font-size: 0.9rem; margin-top: 12px; color: var(--accent); }

.footer-bottom { border-top: 1px solid var(--line); margin-top: 56px; padding-top: 22px; text-align: center; font-size: 0.82rem; color: var(--muted); }

/* ===== CTA band ===== */
.cta-band { background: var(--bg-soft); border-top: 1px solid var(--line); text-align: center; padding: 70px 0; }
.cta-band h2 { font-family: var(--serif); color: var(--text); font-size: clamp(1.7rem, 3.5vw, 2.4rem); font-weight: 600; margin-bottom: 14px; letter-spacing: -0.015em; }
.cta-band p { color: var(--muted); max-width: 500px; margin: 0 auto 26px; }

/* ===== Service pages (Služby) ===== */
.bg-soft { background: var(--bg-soft); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.svc-h-center { font-family: var(--serif); color: var(--text); text-align: center; font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 600; margin-bottom: 34px; letter-spacing: -0.01em; }
.svc-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 48px; align-items: center; }
.svc-card { background: var(--bg-soft); border: 1px solid var(--line); border-radius: 14px; padding: 30px 34px; }
.svc-card-h { font-family: var(--serif); color: var(--accent); font-size: 0.82rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.14em; margin-bottom: 18px; }
.svc-grid h2 { font-family: var(--serif); color: var(--text); font-size: 1.7rem; font-weight: 600; margin-bottom: 16px; letter-spacing: -0.01em; }
.svc-grid p { color: #4a4a4a; line-height: 1.75; }
.svc-grid p a, .price-highlight p a { color: var(--accent); text-decoration: underline; }
@media (hover: hover) { .svc-grid p a:hover, .price-highlight p a:hover { color: var(--accent-dark); } }
.svc-list, .svc-forwhom { list-style: none; }
.svc-list { display: flex; flex-direction: column; gap: 13px; }
.svc-list li, .svc-forwhom li { position: relative; padding-left: 28px; color: #3a3a3a; line-height: 1.5; }
.svc-list li::before, .svc-forwhom li::before { content: "✓"; position: absolute; left: 0; color: var(--accent); font-weight: 700; }
.svc-forwhom { max-width: 720px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 14px 30px; }
.svc-steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 24px; margin-bottom: 36px; }
.svc-step { text-align: center; }
.svc-step .n { display: block; width: 46px; height: 46px; border-radius: 50%; background: var(--accent); margin: 0 auto 14px; }
.svc-step .n svg { display: block; width: 100%; height: 100%; }
.svc-step .n text { fill: #fff; font-family: var(--serif); font-weight: 700; font-size: 20px; font-variant-numeric: lining-nums; font-feature-settings: "lnum" 1, "tnum" 1; }
.svc-step h3 { font-family: var(--serif); font-size: 1.12rem; font-weight: 600; margin-bottom: 6px; }
.svc-step p { color: var(--muted); font-size: 0.9rem; line-height: 1.5; }
.svc .price-actions { margin-top: 8px; }
.svc-related { margin-top: 8px; color: var(--muted); font-size: 0.92rem; }
.svc-related a { color: var(--accent); text-decoration: underline; }
.section.bg-soft .faq-item { background: #fff; }
@media (max-width: 860px) { .svc-grid { grid-template-columns: 1fr; gap: 26px; } .svc-forwhom { grid-template-columns: 1fr; max-width: 420px; } }

/* ===== Homepage intro (H1) ===== */
.intro-band { text-align: center; padding: 54px 0 6px; }
.intro-band h1 { font-family: var(--serif); color: var(--text); font-size: clamp(1.7rem, 3.4vw, 2.45rem); font-weight: 600; margin-bottom: 14px; letter-spacing: -0.015em; }
.intro-band p { color: var(--muted); max-width: 680px; margin: 0 auto; line-height: 1.6; }
@media (max-width: 760px) { .intro-band { padding: 34px 0 4px; } }

/* Trust bar — credibility strip under the hero H1 */
.trust-bar { list-style: none; display: flex; flex-wrap: wrap; justify-content: center;
  align-items: center; gap: 12px 26px; margin: 22px auto 4px; padding: 0; max-width: 760px; }
.trust-bar li { display: inline-flex; align-items: center; gap: 7px; font-size: 0.92rem;
  color: var(--muted); font-weight: 500; position: relative; }
.trust-bar li:not(:last-child)::after { content: ""; position: absolute; right: -14px; top: 50%;
  width: 4px; height: 4px; border-radius: 50%; background: #d9d4cd; transform: translateY(-50%); }
.trust-bar a { display: inline-flex; align-items: center; gap: 7px; color: var(--text); font-weight: 600; }
@media (hover: hover) { .trust-bar a:hover { color: var(--accent); } }
.trust-stars { color: var(--accent); letter-spacing: 1px; font-size: 0.85rem; }
.trust-count { color: var(--muted); font-weight: 500; }
@media (max-width: 760px) {
  .trust-bar { gap: 9px 18px; margin-top: 18px; }
  .trust-bar li { font-size: 0.82rem; }
  .trust-bar li:not(:last-child)::after { right: -10px; }
}

/* honeypot (spam trap) — visually hidden */
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* ===== Google reviews ===== */
.reviews { background: var(--bg-soft); border-top: 1px solid var(--line); }
.rev-summary { display: flex; align-items: center; justify-content: center; gap: 14px; margin: -26px 0 42px; }
.rev-summary[hidden] { display: none; }
.rev-score { color: var(--muted); font-size: 0.98rem; }
.rev-score strong { color: var(--text); font-family: var(--serif); font-size: 1.35rem; margin-right: 2px; }
.stars { position: relative; display: inline-block; font-size: 1.15rem; line-height: 1; color: #dcd8d1; white-space: nowrap; letter-spacing: 2px; }
.stars::before { content: "★★★★★"; }
.stars-full { position: absolute; left: 0; top: 0; overflow: hidden; color: var(--accent); }
.stars-full::before { content: "★★★★★"; }
.rev-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-bottom: 44px; }
.rev-status { grid-column: 1 / -1; text-align: center; color: var(--muted); padding: 22px 0; }
.rev-card { display: block; background: #fff; border: 1px solid var(--line); border-radius: 10px; padding: 22px 22px 24px; transition: box-shadow 0.25s ease, transform 0.25s ease; }
@media (hover: hover) { .rev-card:hover { box-shadow: 0 12px 32px rgba(0,0,0,0.08); transform: translateY(-3px); } }
.rev-card-top { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.rev-avatar { flex: 0 0 auto; width: 44px; height: 44px; border-radius: 50%; color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 600; font-size: 0.95rem; }
.rev-meta { display: flex; flex-direction: column; line-height: 1.35; min-width: 0; }
.rev-name { font-weight: 600; font-size: 0.98rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.rev-date { color: var(--muted); font-size: 0.82rem; }
.rev-g { margin-left: auto; font-family: var(--serif); font-weight: 700; color: #4285F4; font-size: 1.2rem; }
.rev-card-stars { display: block; margin-bottom: 12px; }
.rev-text { color: #4a4a4a; font-size: 0.94rem; line-height: 1.6; display: -webkit-box; -webkit-line-clamp: 6; -webkit-box-orient: vertical; overflow: hidden; }
.rev-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
@media (max-width: 900px) { .rev-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .rev-grid { grid-template-columns: 1fr; max-width: 440px; margin-left: auto; margin-right: auto; } .rev-summary { margin-top: -12px; } }

/* ===== Pricing (Cenník) ===== */
.pricing-cat { margin-bottom: 64px; }
.pricing-cat:last-child { margin-bottom: 0; }
.pricing-cat > h2 { font-family: var(--serif); color: var(--text); text-transform: uppercase; letter-spacing: 0.02em; font-size: clamp(1.5rem, 3vw, 1.95rem); font-weight: 700; text-align: center; margin-bottom: 4px; }
.price-year { text-align: center; color: var(--muted); font-size: 0.9rem; margin-bottom: 32px; }
.price-year::after { content: ""; display: block; width: 60px; height: 2px; background: var(--line); margin: 16px auto 0; }
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: stretch; }
.price-card { position: relative; display: flex; flex-direction: column; text-align: center; background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 34px 26px; transition: box-shadow 0.25s ease, transform 0.25s ease; }
@media (hover: hover) { .price-card:hover { box-shadow: 0 14px 34px rgba(0,0,0,0.07); transform: translateY(-4px); } }
.price-card.featured { border-color: var(--accent); box-shadow: 0 12px 34px rgba(223,144,52,0.16); }
.price-badge { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--accent); color: #fff; font-size: 0.68rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; padding: 5px 16px; border-radius: 20px; white-space: nowrap; }
.price-name { text-transform: uppercase; letter-spacing: 0.1em; font-size: 0.88rem; font-weight: 600; color: var(--muted); margin-bottom: 12px; }
.price-amount { font-family: var(--serif); font-size: 2.5rem; font-weight: 700; color: var(--text); line-height: 1.05; letter-spacing: -0.01em; }
.price-card.featured .price-amount { color: var(--accent); }
.price-amount::after { content: ""; display: block; width: 44px; height: 2px; background: var(--accent); margin: 16px auto 24px; }
.price-feats { list-style: none; text-align: left; max-width: 230px; margin: 0 auto; display: flex; flex-direction: column; gap: 11px; }
.price-feats li { position: relative; padding-left: 20px; font-size: 0.94rem; color: #4a4a4a; line-height: 1.45; }
.price-feats li::before { content: "•"; position: absolute; left: 3px; color: var(--accent); font-weight: 700; }
.price-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 4px; }
@media (max-width: 860px) { .price-grid { grid-template-columns: 1fr; max-width: 380px; margin: 0 auto; } }

/* Cenník overview cards */
.cennik-cards { display: flex; flex-wrap: wrap; gap: 26px; justify-content: center; }
.cennik-cards .work { width: calc(33.333% - 18px); }
@media (max-width: 900px) { .cennik-cards .work { width: calc(50% - 13px); } }
@media (max-width: 560px) { .cennik-cards .work { width: 100%; max-width: 420px; } }

/* Cenník category subpage — photo left, pricing right */
.price-split-wrap { padding-top: 74px; }
.price-split { display: flex; align-items: stretch; }
/* Photo caps at screen height and sticks in view, so tall card columns never
   stretch it into a giant vertical strip — the split hero always fits the monitor. */
.price-photo { flex: 0 0 38%; background: #f0eeea; position: sticky; top: 74px; align-self: stretch; max-height: calc(100vh - 74px); overflow: hidden; }
.price-photo img { width: 100%; height: 100%; object-fit: cover; min-height: 560px; }
.price-body { flex: 1; min-width: 0; padding: 46px 44px 60px; }
.price-body .breadcrumb { margin-bottom: 16px; }
.price-cat-title { font-family: var(--serif); color: var(--text); text-transform: uppercase; letter-spacing: 0.02em; font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 700; margin-bottom: 4px; }
.price-body .price-year { text-align: left; margin-bottom: 28px; }
.price-body .price-year::after { margin: 14px 0 0; }
.price-book { margin-top: 40px; display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.price-book > span { font-family: var(--serif); font-size: 1.15rem; color: var(--text); }
@media (max-width: 992px) {
  .price-split { flex-direction: column; }
  .price-photo { flex: none; position: static; max-height: none; }
  .price-photo img { min-height: 280px; max-height: 400px; }
  .price-body { padding: 34px 22px 52px; }
}

/* Cenník category subpage — full-width layout (grouped, e.g. products) */
/* Full-width hero across the whole screen, tall enough to keep the key part of the photo */
.price-banner { margin-top: 74px; width: 100%; height: clamp(360px, 48vh, 560px); overflow: hidden; background: #f0eeea; }
.price-banner img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.price-full .price-cat-title { text-align: center; }
.price-full .price-year { text-align: center; margin-bottom: 40px; }
.price-full .price-year::after { margin: 14px auto 0; }
.price-group { margin-bottom: 46px; }
.price-group-h { font-family: var(--serif); color: var(--text); text-transform: uppercase; letter-spacing: 0.02em; font-size: 1.4rem; font-weight: 700; text-align: center; margin-bottom: 24px; }
.price-addon { text-align: center; color: var(--muted); margin-top: 20px; font-size: 0.95rem; }
.price-note { max-width: 640px; margin: 8px auto 0; text-align: center; background: var(--bg-soft); border: 1px solid var(--line); border-radius: 10px; padding: 20px 24px; color: #4a4a4a; font-size: 0.95rem; line-height: 1.6; }
.price-book.center { justify-content: center; margin-top: 44px; }
.price-intro { text-align: center; max-width: 660px; margin: 0 auto 38px; color: var(--muted); line-height: 1.6; }

/* per-package "ideal for / suitable for" line */
.price-for { margin-top: 16px; padding-top: 14px; border-top: 1px solid var(--line); font-size: 0.84rem; font-style: italic; color: var(--muted); text-align: left; line-height: 1.45; }

/* highlighted band (e.g. studio + outdoor) */
.price-highlight { max-width: 780px; margin: 6px auto 46px; text-align: center; background: #fbf3e8; border: 1px solid #f0d9b8; border-radius: 12px; padding: 28px 30px; }
.price-highlight h2 { font-family: var(--serif); color: var(--accent); text-transform: uppercase; letter-spacing: 0.02em; font-size: 1.3rem; font-weight: 700; margin-bottom: 10px; }
.price-highlight p { color: #6a5636; font-size: 0.97rem; line-height: 1.65; max-width: 640px; margin: 0 auto; }

/* add-on services */
.price-extras { margin-bottom: 46px; }
.extras-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; max-width: 780px; margin: 0 auto; }
.extra-item { border: 1px solid var(--line); border-radius: 10px; padding: 16px 20px; background: #fff; }
.extra-top { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; }
.extra-name { font-weight: 600; font-size: 0.98rem; }
.extra-price { color: var(--accent); font-family: var(--serif); font-weight: 700; white-space: nowrap; }
.extra-desc { color: var(--muted); font-size: 0.88rem; margin-top: 6px; line-height: 1.5; }
@media (max-width: 620px) { .extras-grid { grid-template-columns: 1fr; } }

/* custom-price block (real estate / commercial) */
.price-custom { max-width: 680px; margin: 0 auto 8px; text-align: center; background: var(--bg-soft); border: 1px solid var(--line); border-radius: 12px; padding: 32px 28px; }
.price-custom h2 { font-family: var(--serif); color: var(--text); text-transform: uppercase; letter-spacing: 0.02em; font-size: 1.3rem; font-weight: 700; }
.price-custom-price { font-family: var(--serif); color: var(--text); font-size: 1.5rem; font-weight: 700; margin: 6px 0 18px; }
.price-custom-lead { font-weight: 600; margin-bottom: 12px; }
.price-custom-list { list-style: none; display: flex; flex-wrap: wrap; justify-content: center; gap: 8px 20px; margin: 0 auto 18px; max-width: 520px; }
.price-custom-list li { position: relative; padding-left: 16px; color: #4a4a4a; font-size: 0.93rem; }
.price-custom-list li::before { content: "•"; position: absolute; left: 2px; color: var(--accent); }
.price-custom-text { color: var(--muted); font-size: 0.93rem; line-height: 1.6; max-width: 560px; margin: 0 auto; }

/* closing block */
.price-closing { text-align: center; max-width: 600px; margin: 34px auto 0; }
.price-closing h3 { font-family: var(--serif); color: var(--text); font-size: 1.3rem; font-weight: 600; margin-bottom: 8px; }
.price-closing p { color: var(--muted); line-height: 1.6; }

/* Legal pages (Podmienky / Ochrana údajov) */
.legal { max-width: 820px; margin: 0 auto; }
.legal h2 { font-family: var(--serif); color: var(--text); font-size: 1.4rem; font-weight: 600; margin: 34px 0 12px; }
.legal p, .legal li { color: #4a4a4a; line-height: 1.7; font-size: 0.97rem; }
.legal p { margin-bottom: 10px; }
.legal a { color: var(--accent); text-decoration: underline; }
.legal ul { margin: 8px 0 14px 22px; }
.legal li { margin-bottom: 6px; }
.legal .legal-note { background: var(--bg-soft); border: 1px solid var(--line); border-radius: 10px; padding: 16px 20px; color: var(--muted); font-size: 0.9rem; margin-bottom: 26px; }
.legal .updated { color: var(--muted); font-size: 0.88rem; margin-top: 28px; }

/* ===== Accessibility ===== */
.skip-link { position: absolute; left: -9999px; top: 0; z-index: 500; background: var(--dark); color: #fff; padding: 10px 18px; border-radius: 0 0 6px 0; font-size: 0.9rem; }
.skip-link:focus { left: 0; }
a:focus-visible, button:focus-visible, select:focus-visible,
input:focus-visible, textarea:focus-visible, .g-item:focus-visible, .hsvc:focus-visible {
  outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 3px;
}

/* ===== Homepage services grid (text cards → SEO landing pages) ===== */
.home-svc-section { padding-bottom: 84px; }
.home-svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.hsvc { position: relative; display: flex; flex-direction: column; background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 30px 28px 30px; transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease; }
@media (hover: hover) { .hsvc:hover { border-color: var(--accent); box-shadow: 0 14px 34px rgba(0,0,0,0.07); transform: translateY(-4px); } }
.hsvc h3 { font-family: var(--serif); font-size: 1.32rem; font-weight: 600; color: var(--text); margin-bottom: 10px; }
.hsvc p { color: var(--muted); font-size: 0.94rem; line-height: 1.6; }
.hsvc-arrow { display: inline-block; margin-top: 16px; color: var(--accent); font-size: 1.25rem; line-height: 1; transition: transform 0.25s ease; }
@media (hover: hover) { .hsvc:hover .hsvc-arrow { transform: translateX(6px); } }
.home-svc-more { text-align: center; margin-top: 42px; }
@media (max-width: 900px) { .home-svc-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .home-svc-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; } }

/* ===== Homepage brand / about teaser ===== */
.home-about-wrap { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 56px; align-items: center; }
.home-about-photo { border-radius: 4px; overflow: hidden; background: #f0eeea; aspect-ratio: 3 / 2; }
.home-about-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.home-about-text .eyebrow { display: block; font-family: var(--serif); text-transform: uppercase; letter-spacing: 0.14em; font-size: 0.78rem; color: var(--accent); margin-bottom: 14px; }
.home-about-text h2 { font-family: var(--serif); font-size: clamp(1.7rem, 3.4vw, 2.4rem); font-weight: 600; color: var(--text); margin-bottom: 16px; letter-spacing: -0.015em; }
.home-about-text p { color: var(--muted); line-height: 1.75; margin-bottom: 26px; max-width: 560px; }
@media (max-width: 860px) {
  .home-about-wrap { grid-template-columns: 1fr; gap: 30px; }
  .home-about-photo { width: 100%; max-width: 520px; aspect-ratio: 3 / 2; }
}

/* ===== Gallery cross-links & category nav ===== */
.gallery-links { text-align: center; color: var(--muted); margin-top: 36px; font-size: 0.98rem; }
.gallery-links.gallery-links-2 { margin-top: 4px; }
.gallery-links a { color: var(--accent); text-decoration: underline; }
.gallery-nav { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 12px 16px; margin-top: 18px; }
.gallery-nav-label { color: var(--muted); font-size: 0.9rem; }
.gallery-nav a { font-family: var(--serif); color: var(--text); font-size: 1rem; padding: 7px 18px; border: 1px solid var(--line); border-radius: 30px; transition: color 0.2s ease, border-color 0.2s ease; }
@media (hover: hover) { .gallery-nav a:hover { border-color: var(--accent); color: var(--accent); } }

/* ===== Reveal ===== */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
/* Na dotyku bez posunu transformom – pohybujúci sa prvok inak pri prvom odhalení
   „prehltne" prvý ťuk (iOS hit-test používa starú pozíciu). Ostáva len jemný fade. */
@media (hover: none) {
  .reveal { transform: none; transition: opacity 0.6s ease; }
  .reveal.visible { transform: none; }
}

/* Respect users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1 !important; transform: none !important; }
}

/* ===== Responsive ===== */
@media (max-width: 980px) {
  .footer-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-wrap, .contact-wrap { grid-template-columns: 1fr; gap: 36px; }
  .about-photo { position: static; max-width: 460px; }
  .works { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .gallery { columns: 3; }
}
@media (max-width: 760px) {
  .container { padding: 0 18px; }
  .nav-inner { height: 66px; }
  .nav-center {
    position: fixed; top: 66px; right: -100%; width: 80%; max-width: 320px; height: calc(100vh - 66px);
    background: #fff; flex-direction: column; align-items: flex-start; gap: 6px;
    padding: 28px; transition: right 0.35s ease; border-left: 1px solid var(--line); box-shadow: -8px 0 24px rgba(0,0,0,0.08);
  }
  .nav-center.open { right: 0; }
  .nav-center a { font-size: 1.35rem; padding: 12px 0; }
  .nav-toggle { display: flex; }
  .nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; }
  .nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .nav-right { gap: 10px; }
  .ig-link { display: none; }                 /* keep header uncluttered on phones */
  .lang-select { font-size: 0.82rem; padding: 6px 26px 6px 10px; }
  .logo-mark { height: 40px; }
  .hero-carousel { height: 78vh; min-height: 420px; margin-top: 66px; }
  .slide::before { background: linear-gradient(180deg, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.28) 40%, rgba(0,0,0,0.55) 100%); }
  .slide-inner { justify-content: center; padding: 0 26px; }
  .slide-content { text-align: center; max-width: 100%; }
  .slide-content h2 { font-size: 1.95rem; margin-bottom: 24px; }
  .slide-content .btn-pill { margin: 0 auto; }
  .section { padding: 56px 0; }
  .page-hero { padding: 44px 0 30px; }
  .form-row { grid-template-columns: 1fr; }
  .works { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .gallery { columns: 2; }
  .car-arrow { font-size: 1.8rem; }
  .car-prev { left: 4px; } .car-next { right: 4px; }
  .lb-close { top: 10px; right: 14px; }
}
