/* =========================================================
   ZEDNICTVÍ BENEŠ — art direction: solid earthy craftsmanship
   ========================================================= */

:root {
  /* Barvy — teplé betonové tóny, cihlově rezavá, písková, espresso */
  --espresso: #2b211b;        /* tmavý text / tmavé sekce */
  --espresso-2: #3a2d24;
  --sand: #e9e0d2;            /* pískové pozadí */
  --sand-2: #f4eee3;         /* světlejší papír */
  --concrete: #cfc6b8;       /* betonová šedobéžová */
  --brick: #b0472b;          /* cihlově rezavá */
  --brick-dark: #8f381f;
  --rust: #c8622f;           /* teplý akcent */
  --line: #d8cdb9;           /* jemné linky */
  --line-dark: rgba(233,224,210,.16);
  --muted: #6c5f52;          /* tlumený text */
  --white: #fffdf9;

  --ink: var(--espresso);
  --bg: var(--sand-2);

  /* Typografie */
  --font-head: "Space Grotesk", system-ui, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, sans-serif;

  /* Rytmus */
  --container: 1200px;
  --gutter: clamp(1.25rem, 4vw, 3rem);
  --section-y: clamp(4.5rem, 9vw, 8rem);
  --radius: 6px;
  --radius-lg: 14px;

  --shadow: 0 18px 50px -20px rgba(43, 33, 27, .35);
  --shadow-sm: 0 8px 24px -14px rgba(43, 33, 27, .4);

  --ease: cubic-bezier(.22, 1, .36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  font-size: clamp(1rem, .96rem + .2vw, 1.075rem);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
address { font-style: normal; }
h1, h2, h3 { font-family: var(--font-head); line-height: 1.05; font-weight: 600; letter-spacing: -.02em; }

::selection { background: var(--brick); color: var(--white); }

:focus-visible {
  outline: 3px solid var(--rust);
  outline-offset: 3px;
  border-radius: 3px;
}

.skip-link {
  position: fixed; top: -100px; left: 1rem; z-index: 200;
  background: var(--espresso); color: var(--white);
  padding: .75rem 1.25rem; border-radius: var(--radius);
  transition: top .2s var(--ease);
}
.skip-link:focus { top: 1rem; }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: var(--section-y); position: relative; }

/* ---------- Reveal animace ---------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
  will-change: opacity, transform;
}
[data-reveal].is-visible { opacity: 1; transform: none; }

/* ---------- Typografie sekcí ---------- */
.kicker {
  display: inline-flex; align-items: center; gap: .6rem;
  font-family: var(--font-head);
  font-size: .8rem; font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--brick);
  margin-bottom: 1.1rem;
}
.kicker--light { color: var(--rust); }
.kicker__no {
  font-variant-numeric: tabular-nums;
  padding: .25rem .5rem;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-size: .72rem; opacity: .9;
}

.section__title {
  font-size: clamp(1.9rem, 1.2rem + 2.7vw, 3.4rem);
  letter-spacing: -.03em;
}
.section__head { max-width: 44rem; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section__intro { color: var(--muted); margin-top: 1.1rem; font-size: 1.1rem; max-width: 40rem; }

/* ---------- Tlačítka ---------- */
.btn {
  --btn-bg: var(--brick);
  --btn-fg: var(--white);
  display: inline-flex; align-items: center; gap: .6rem;
  font-family: var(--font-head); font-weight: 600; font-size: 1rem;
  padding: .95rem 1.6rem;
  background: var(--btn-bg); color: var(--btn-fg);
  border: 1px solid transparent; border-radius: var(--radius);
  cursor: pointer;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease);
  position: relative; overflow: hidden;
}
.btn svg { width: 1.1em; height: 1.1em; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; transition: transform .25s var(--ease); }
.btn:hover { transform: translateY(-3px); box-shadow: 0 14px 30px -12px rgba(176,71,43,.7); }
.btn:hover svg { transform: translateX(4px); }
.btn--primary { --btn-bg: var(--brick); }
.btn--primary:hover { background: var(--brick-dark); }
.btn--dark { --btn-bg: var(--espresso); }
.btn--dark:hover { background: #1e1712; box-shadow: var(--shadow-sm); }
.btn--ghost {
  --btn-bg: transparent; --btn-fg: var(--white);
  border-color: rgba(255,253,249,.35);
  backdrop-filter: blur(4px);
}
.btn--ghost:hover { background: rgba(255,253,249,.1); box-shadow: none; }
.btn--block { width: 100%; justify-content: center; }

/* =========================================================
   NAVIGACE
   ========================================================= */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  transition: background .35s var(--ease), box-shadow .35s var(--ease), padding .35s var(--ease);
  padding-block: .55rem;
}
.nav.is-scrolled {
  background: rgba(244,238,227,.88);
  backdrop-filter: saturate(140%) blur(12px);
  box-shadow: 0 1px 0 rgba(43,33,27,.08), 0 10px 30px -24px rgba(43,33,27,.6);
}
.nav__inner {
  max-width: var(--container); margin-inline: auto;
  padding-inline: var(--gutter);
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}

.brand { display: inline-flex; align-items: center; gap: .7rem; }
.brand__mark {
  display: grid; gap: 2px; width: 26px;
  transform: rotate(0deg);
}
.brand__mark span { height: 6px; border-radius: 1px; background: var(--brick); display: block; }
.brand__mark span:nth-child(1) { width: 26px; }
.brand__mark span:nth-child(2) { width: 18px; margin-left: 8px; background: var(--rust); }
.brand__mark span:nth-child(3) { width: 26px; }
.brand__text { display: grid; line-height: 1.1; }
.brand__text strong { font-family: var(--font-head); font-size: 1.05rem; letter-spacing: -.02em; }
.brand__text small { font-size: .7rem; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); }
.brand--light .brand__text strong { color: var(--white); }
.brand--light .brand__text small { color: var(--concrete); }

.nav__links { display: flex; align-items: center; gap: clamp(.5rem, 1.6vw, 1.6rem); }
.nav__links a {
  font-family: var(--font-head); font-weight: 500; font-size: .95rem;
  color: var(--espresso); position: relative; padding: .35rem 0;
  transition: color .2s var(--ease);
}
.nav:not(.is-scrolled) .nav__links a:not(.nav__cta) { color: var(--white); }
.nav__links a:not(.nav__cta)::after {
  content: ""; position: absolute; left: 0; bottom: -2px; height: 2px; width: 0;
  background: var(--brick); transition: width .3s var(--ease);
}
.nav__links a:not(.nav__cta):hover::after { width: 100%; }
.nav__cta {
  background: var(--brick); color: var(--white) !important;
  padding: .6rem 1.15rem !important; border-radius: var(--radius);
  transition: background .25s var(--ease), transform .25s var(--ease);
}
.nav__cta:hover { background: var(--brick-dark); transform: translateY(-2px); }

.hamburger {
  display: none; width: 46px; height: 46px; border: 1px solid var(--line);
  background: var(--white); border-radius: var(--radius); cursor: pointer;
  position: relative;
}
.hamburger span {
  position: absolute; left: 12px; right: 12px; height: 2px; background: var(--espresso);
  transition: transform .3s var(--ease), opacity .2s var(--ease);
}
.hamburger span:nth-child(1) { top: 16px; }
.hamburger span:nth-child(2) { top: 22px; }
.hamburger span:nth-child(3) { top: 28px; }
.hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative; min-height: 100svh;
  display: flex; align-items: center;
  padding-top: 6rem; padding-bottom: 4rem;
  color: var(--white); overflow: hidden;
}
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.08); }
.hero__overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(30,23,18,.55) 0%, rgba(30,23,18,.35) 40%, rgba(30,23,18,.85) 100%),
    linear-gradient(90deg, rgba(43,33,27,.75) 0%, rgba(43,33,27,.15) 60%);
}
.hero__blueprint {
  position: absolute; inset: 0; opacity: .18; mix-blend-mode: soft-light;
  background-image:
    linear-gradient(rgba(255,255,255,.5) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.5) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse at 30% 60%, #000 0%, transparent 75%);
}
.hero__content { position: relative; z-index: 2; max-width: 54rem; padding-inline: var(--gutter); margin-inline: auto; width: 100%; }
@media (min-width: 700px) { .hero__content { margin-inline: 0; max-width: var(--container); } }

.hero__eyebrow {
  display: inline-flex; align-items: center; gap: .6rem;
  font-family: var(--font-head); font-weight: 500;
  font-size: .82rem; letter-spacing: .1em; text-transform: uppercase;
  padding: .5rem 1rem; border: 1px solid rgba(255,255,255,.28);
  border-radius: 999px; background: rgba(43,33,27,.3); backdrop-filter: blur(4px);
  margin-bottom: 1.6rem;
}
.hero__eyebrow .tick { width: 8px; height: 8px; border-radius: 50%; background: var(--rust); box-shadow: 0 0 0 4px rgba(200,98,47,.25); }

.hero__title {
  font-size: clamp(2.8rem, 1.4rem + 6.5vw, 6.3rem);
  font-weight: 700; letter-spacing: -.04em; line-height: .95;
  text-shadow: 0 4px 40px rgba(0,0,0,.3);
}
.hero__accent {
  color: transparent;
  background: linear-gradient(100deg, var(--rust), #e5904f);
  -webkit-background-clip: text; background-clip: text;
  position: relative;
}
.hero__lead {
  margin-top: 1.6rem; max-width: 40rem;
  font-size: clamp(1.05rem, .98rem + .4vw, 1.3rem);
  color: rgba(255,253,249,.9);
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2.2rem; }

.hero__stats {
  display: flex; flex-wrap: wrap; gap: clamp(1.5rem, 4vw, 3.5rem);
  margin-top: 3rem; padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,.18);
}
.hero__stats div { display: grid; }
.hero__stats dt {
  font-family: var(--font-head); font-weight: 700;
  font-size: clamp(2rem, 1.4rem + 2vw, 3rem); line-height: 1;
  font-variant-numeric: tabular-nums;
}
.hero__stats dd { font-size: .85rem; letter-spacing: .08em; text-transform: uppercase; color: var(--concrete); margin-top: .35rem; }

.hero__scroll {
  position: absolute; bottom: 1.6rem; left: 50%; transform: translateX(-50%);
  z-index: 3; width: 26px; height: 44px; border: 2px solid rgba(255,255,255,.5);
  border-radius: 14px; display: grid; place-items: start center; padding-top: 7px;
}
.hero__scroll span { width: 4px; height: 8px; border-radius: 2px; background: var(--white); animation: scroll 1.8s var(--ease) infinite; }
@keyframes scroll { 0% { opacity: 0; transform: translateY(0); } 40% { opacity: 1; } 100% { opacity: 0; transform: translateY(12px); } }

/* =========================================================
   TRUST PÁS
   ========================================================= */
.trust {
  background: var(--espresso); color: var(--sand);
  padding-block: 1.1rem; overflow: hidden;
  border-block: 1px solid var(--line-dark);
}
.trust__track {
  display: flex; align-items: center; gap: 2.5rem; width: max-content;
  animation: marquee 32s linear infinite;
  font-family: var(--font-head); font-weight: 500;
  letter-spacing: .05em; font-size: 1rem;
}
.trust__track span { white-space: nowrap; }
.trust__track i { color: var(--rust); font-style: normal; font-size: .7rem; }
@keyframes marquee { to { transform: translateX(-50%); } }
.trust:hover .trust__track { animation-play-state: paused; }

/* =========================================================
   SLUŽBY
   ========================================================= */
.services { background: var(--sand-2); }
.cards {
  display: grid; gap: 1.25rem;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 320px), 1fr));
}
.card {
  position: relative; background: var(--white);
  border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 2rem 1.75rem 1.75rem;
  overflow: hidden;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
}
.card::before {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 4px;
  background: linear-gradient(90deg, var(--brick), var(--rust));
  transform: scaleX(0); transform-origin: left; transition: transform .45s var(--ease);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }
.card:hover::before { transform: scaleX(1); }
.card__no {
  position: absolute; top: 1.3rem; right: 1.4rem;
  font-family: var(--font-head); font-weight: 700; font-size: 2.4rem;
  color: var(--sand); line-height: 1;
  transition: color .4s var(--ease);
}
.card:hover .card__no { color: rgba(200,98,47,.35); }
.card__icon {
  width: 56px; height: 56px; border-radius: 12px;
  display: grid; place-items: center; margin-bottom: 1.3rem;
  background: var(--sand-2); border: 1px solid var(--line);
  transition: background .4s var(--ease), transform .4s var(--ease);
}
.card:hover .card__icon { background: var(--brick); transform: rotate(-6deg); }
.card__icon svg { width: 28px; height: 28px; fill: none; stroke: var(--espresso); stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; transition: stroke .4s var(--ease); }
.card:hover .card__icon svg { stroke: var(--white); }
.card h3 { font-size: 1.4rem; margin-bottom: .6rem; }
.card p { color: var(--muted); font-size: .98rem; }
.card__tags { list-style: none; padding: 0; margin-top: 1.1rem; display: flex; flex-wrap: wrap; gap: .4rem; }
.card__tags li {
  font-size: .74rem; letter-spacing: .04em;
  padding: .25rem .6rem; border-radius: 999px;
  background: var(--sand-2); color: var(--muted); border: 1px solid var(--line);
}
.card--featured { background: var(--espresso); color: var(--sand); border-color: transparent; }
.card--featured::before { transform: scaleX(1); }
.card--featured .card__no { color: rgba(255,255,255,.08); }
.card--featured:hover .card__no { color: rgba(200,98,47,.5); }
.card--featured .card__icon { background: rgba(255,255,255,.08); border-color: var(--line-dark); }
.card--featured .card__icon svg { stroke: var(--rust); }
.card--featured:hover .card__icon { background: var(--brick); }
.card--featured:hover .card__icon svg { stroke: var(--white); }
.card--featured p { color: var(--concrete); }
.card--featured .card__tags li { background: rgba(255,255,255,.06); border-color: var(--line-dark); color: var(--concrete); }

/* =========================================================
   ČASOVÁ OSA
   ========================================================= */
.timeline {
  background: var(--espresso); color: var(--sand);
  position: relative;
}
.timeline::after {
  content: ""; position: absolute; inset: 0; pointer-events: none; opacity: .5;
  background-image:
    linear-gradient(var(--line-dark) 1px, transparent 1px),
    linear-gradient(90deg, var(--line-dark) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse at 80% 0%, #000, transparent 70%);
}
.timeline .container { position: relative; z-index: 1; }
.timeline .section__intro { color: var(--concrete); }

.tl {
  list-style: none; padding: 0; margin: 0;
  display: grid; gap: 1.25rem;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr));
  position: relative;
}
.tl__step { position: relative; padding: 1.75rem 1.5rem; border: 1px solid var(--line-dark); border-radius: var(--radius-lg); background: rgba(255,255,255,.03); transition: background .4s var(--ease), transform .4s var(--ease); }
.tl__step:hover { background: rgba(255,255,255,.06); transform: translateY(-5px); }
.tl__marker {
  width: 54px; height: 54px; border-radius: 50%;
  border: 1.5px solid var(--rust); color: var(--rust);
  display: grid; place-items: center; margin-bottom: 1.25rem;
  font-family: var(--font-head); font-weight: 700; font-size: 1.1rem;
  position: relative;
}
.tl__marker::after {
  content: ""; position: absolute; top: 50%; left: 100%;
  width: calc(100% + 1.25rem); height: 1px;
  background: linear-gradient(90deg, var(--rust), transparent);
  opacity: .4;
}
.tl__step:last-child .tl__marker::after { display: none; }
.tl__body h3 { font-size: 1.3rem; margin-bottom: .5rem; }
.tl__body p { color: var(--concrete); font-size: .96rem; }
.tl__meta {
  display: inline-block; margin-top: 1rem;
  font-family: var(--font-head); font-size: .78rem; letter-spacing: .08em; text-transform: uppercase;
  color: var(--rust); padding: .3rem .7rem; border: 1px solid rgba(200,98,47,.35); border-radius: 999px;
}
@media (max-width: 720px) { .tl__marker::after { display: none; } }

/* =========================================================
   O MNĚ
   ========================================================= */
.about { background: var(--sand); }
.about__grid { display: grid; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; grid-template-columns: 1fr; }
@media (min-width: 900px) { .about__grid { grid-template-columns: .85fr 1fr; } }

.about__media { position: relative; }
.about__media img {
  width: 100%; border-radius: var(--radius-lg); object-fit: cover;
  aspect-ratio: 4/5; box-shadow: var(--shadow);
  filter: saturate(1.05);
}
.about__media::before {
  content: ""; position: absolute; inset: -14px auto auto -14px; width: 60%; height: 60%;
  border: 2px solid var(--brick); border-radius: var(--radius-lg); z-index: -0;
}
.about__badge {
  position: absolute; bottom: 1.25rem; left: 1.25rem; right: 1.25rem;
  background: rgba(43,33,27,.9); backdrop-filter: blur(6px); color: var(--white);
  padding: 1rem 1.25rem; border-radius: var(--radius);
  display: grid; box-shadow: var(--shadow-sm);
}
.about__badge strong { font-family: var(--font-head); font-size: 1.15rem; }
.about__badge span { font-size: .82rem; letter-spacing: .1em; text-transform: uppercase; color: var(--concrete); }

.about__text p { color: var(--espresso-2); margin-top: 1.1rem; }
.about__text em { color: var(--brick); font-style: italic; }
.about__values { list-style: none; padding: 0; margin: 1.8rem 0; display: grid; gap: .7rem; }
.about__values li { display: flex; gap: .7rem; align-items: flex-start; font-weight: 500; }
.about__values li span {
  flex: 0 0 auto; width: 24px; height: 24px; border-radius: 50%;
  background: var(--brick); color: var(--white); display: grid; place-items: center;
  font-size: .8rem; margin-top: .15rem;
}

/* =========================================================
   CENÍK
   ========================================================= */
.pricing { background: var(--sand-2); }
.price-table {
  border: 1px solid var(--line); border-radius: var(--radius-lg);
  overflow: hidden; background: var(--white); box-shadow: var(--shadow-sm);
}
.price-row {
  display: grid; grid-template-columns: 1fr auto auto; gap: 1rem; align-items: center;
  padding: 1.1rem clamp(1rem, 3vw, 2rem);
  border-bottom: 1px solid var(--line);
  transition: background .25s var(--ease);
}
.price-row:last-child { border-bottom: 0; }
.price-row:not(.price-row--head):hover { background: var(--sand-2); }
.price-row span:first-child { font-weight: 500; }
.price-row span:nth-child(2) { color: var(--muted); font-size: .9rem; min-width: 3.5rem; text-align: right; }
.price-row b { font-family: var(--font-head); color: var(--brick); font-size: 1.05rem; min-width: 6rem; text-align: right; white-space: nowrap; }
.price-row--head {
  background: var(--espresso); color: var(--sand);
  font-family: var(--font-head); font-size: .8rem; letter-spacing: .12em; text-transform: uppercase;
}
.price-row--head span, .price-row--head b { color: var(--concrete); font-weight: 600; }
.pricing__note { margin-top: 1.2rem; color: var(--muted); font-size: .88rem; }

/* =========================================================
   GALERIE (MASONRY)
   ========================================================= */
.gallery { background: var(--sand); }
.masonry { columns: 3 260px; column-gap: 1.1rem; }
.masonry__item {
  break-inside: avoid; margin-bottom: 1.1rem; position: relative;
  border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm);
  cursor: pointer;
}
.masonry__item img { width: 100%; transition: transform .7s var(--ease); filter: saturate(1.02); }
.masonry__item::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(30,23,18,.82));
  opacity: .55; transition: opacity .45s var(--ease);
}
.masonry__item figcaption {
  position: absolute; left: 1rem; right: 1rem; bottom: 1rem; z-index: 2;
  color: var(--white); font-family: var(--font-head); font-weight: 500; font-size: .98rem;
  transform: translateY(8px); opacity: .92; transition: transform .45s var(--ease);
}
.masonry__item:hover img { transform: scale(1.07); }
.masonry__item:hover::after { opacity: .75; }
.masonry__item:hover figcaption { transform: translateY(0); }
@media (max-width: 900px) { .masonry { columns: 2 200px; } }
@media (max-width: 520px) { .masonry { columns: 1; } }

/* =========================================================
   VELKÝ CITÁT
   ========================================================= */
.quote-hero {
  background: var(--brick); color: var(--white);
  position: relative; overflow: hidden;
  padding-block: clamp(3.5rem, 7vw, 6rem);
}
.quote-hero::before {
  content: "\201C"; position: absolute; top: -3rem; left: 2rem;
  font-family: var(--font-head); font-size: 22rem; line-height: 1;
  color: rgba(255,255,255,.1);
}
.quote-hero blockquote { max-width: 52rem; position: relative; z-index: 1; }
.quote-hero p {
  font-family: var(--font-head); font-weight: 500;
  font-size: clamp(1.4rem, 1rem + 2vw, 2.5rem); line-height: 1.25; letter-spacing: -.02em;
}
.quote-hero p span { color: rgba(255,255,255,.68); }
.quote-hero cite {
  display: block; margin-top: 1.6rem; font-style: normal;
  font-family: var(--font-body); font-size: 1rem; letter-spacing: .04em; color: rgba(255,255,255,.85);
}

/* =========================================================
   REFERENCE
   ========================================================= */
.reviews { background: var(--sand-2); }
.reviews__grid {
  display: grid; gap: 1.25rem;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
}
.review {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 1.75rem;
  display: flex; flex-direction: column; gap: 1rem;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.review:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.review__stars { color: var(--rust); letter-spacing: .15em; font-size: 1.05rem; }
.review p { color: var(--espresso-2); font-size: 1.02rem; }
.review footer { display: flex; align-items: center; gap: .85rem; margin-top: auto; }
.review__avatar {
  width: 46px; height: 46px; border-radius: 50%; flex: 0 0 auto;
  background: var(--espresso); color: var(--sand);
  display: grid; place-items: center;
  font-family: var(--font-head); font-weight: 600; font-size: .9rem; letter-spacing: .04em;
}
.review footer span:last-child { display: grid; }
.review footer strong { font-family: var(--font-head); }
.review footer small { color: var(--muted); font-size: .82rem; }

/* =========================================================
   FAQ
   ========================================================= */
.faq { background: var(--sand); }
.faq__grid { display: grid; gap: clamp(2rem, 5vw, 4rem); grid-template-columns: 1fr; }
@media (min-width: 900px) { .faq__grid { grid-template-columns: .85fr 1.15fr; align-items: start; } }
.faq__head { position: sticky; top: 6rem; }
.faq__head .section__intro a { color: var(--brick); text-decoration: underline; text-underline-offset: 3px; }

.faq__list { display: grid; gap: .8rem; }
.faq__item {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius); overflow: hidden;
  transition: border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.faq__item[open] { border-color: var(--brick); box-shadow: var(--shadow-sm); }
.faq__item summary {
  list-style: none; cursor: pointer;
  padding: 1.15rem 1.35rem; display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  font-family: var(--font-head); font-weight: 500; font-size: 1.08rem;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary i {
  flex: 0 0 auto; width: 22px; height: 22px; position: relative;
}
.faq__item summary i::before, .faq__item summary i::after {
  content: ""; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  background: var(--brick); transition: transform .3s var(--ease);
}
.faq__item summary i::before { width: 14px; height: 2px; }
.faq__item summary i::after { width: 2px; height: 14px; }
.faq__item[open] summary i::after { transform: translate(-50%,-50%) scaleY(0); }
.faq__answer { padding: 0 1.35rem; max-height: 0; overflow: hidden; transition: max-height .4s var(--ease), padding .4s var(--ease); }
.faq__item[open] .faq__answer { padding: 0 1.35rem 1.35rem; max-height: 320px; }
.faq__answer p { color: var(--muted); }

/* =========================================================
   KONTAKT
   ========================================================= */
.contact { background: var(--espresso); color: var(--sand); }
.contact__grid { display: grid; gap: clamp(2rem, 5vw, 4rem); grid-template-columns: 1fr; }
@media (min-width: 920px) { .contact__grid { grid-template-columns: .9fr 1.1fr; align-items: start; } }
.contact__lead { color: var(--concrete); margin-top: 1.1rem; max-width: 32rem; }

.contact__list { list-style: none; padding: 0; margin: 2.2rem 0 0; display: grid; gap: 1.35rem; }
.contact__list li { display: flex; gap: 1rem; align-items: center; }
.contact__ico {
  flex: 0 0 auto; width: 48px; height: 48px; border-radius: 12px;
  display: grid; place-items: center; background: rgba(255,255,255,.05);
  border: 1px solid var(--line-dark);
}
.contact__ico svg { width: 22px; height: 22px; fill: none; stroke: var(--rust); stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.contact__list small { display: block; font-size: .74rem; letter-spacing: .12em; text-transform: uppercase; color: var(--concrete); }
.contact__list a, .contact__list b, .contact__list address { font-family: var(--font-head); font-size: 1.15rem; color: var(--white); font-weight: 500; }
.contact__list a { transition: color .2s var(--ease); }
.contact__list a:hover { color: var(--rust); }

/* Formulář */
.contact__form-wrap {
  background: var(--sand-2); border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 2.5rem); color: var(--espresso);
  box-shadow: var(--shadow);
}
.form { position: relative; }
.form__row { display: grid; gap: 1.1rem; grid-template-columns: 1fr; }
@media (min-width: 560px) { .form__row { grid-template-columns: 1fr 1fr; } }
.field { display: grid; gap: .4rem; margin-bottom: 1.1rem; }
.field label { font-family: var(--font-head); font-weight: 500; font-size: .9rem; }
.field input, .field select, .field textarea {
  font-family: var(--font-body); font-size: 1rem; color: var(--espresso);
  padding: .8rem .9rem; border: 1px solid var(--line); border-radius: var(--radius);
  background: var(--white); transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
  width: 100%;
}
.field textarea { resize: vertical; min-height: 120px; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--brick); box-shadow: 0 0 0 3px rgba(176,71,43,.15);
}
.field.is-invalid input, .field.is-invalid select, .field.is-invalid textarea { border-color: #c0392b; box-shadow: 0 0 0 3px rgba(192,57,43,.12); }
.field__error { color: #c0392b; font-size: .82rem; min-height: 1em; }
.form__hint { color: var(--muted); font-size: .82rem; margin-top: .8rem; text-align: center; }

.form__success {
  display: flex; gap: 1rem; align-items: flex-start;
  margin-top: 1.2rem; padding: 1.25rem; border-radius: var(--radius);
  background: #e7f0e5; border: 1px solid #b9d4b1; color: #2f5227;
}
.form__success-ico {
  flex: 0 0 auto; width: 34px; height: 34px; border-radius: 50%;
  background: #3f7a35; color: #fff; display: grid; place-items: center; font-weight: 700;
}
.form__success strong { font-family: var(--font-head); display: block; }
.form__success p { font-size: .92rem; margin-top: .2rem; }

.contact__map {
  margin-top: clamp(2rem, 5vw, 3.5rem);
  border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line-dark);
  box-shadow: var(--shadow);
}
.contact__map iframe { width: 100%; height: 380px; border: 0; display: block; filter: grayscale(.25) contrast(1.05); }

/* =========================================================
   PATIČKA
   ========================================================= */
.footer { background: #1e1712; color: var(--concrete); padding-top: clamp(3rem, 6vw, 4.5rem); }
.footer__grid {
  display: grid; gap: 2.5rem;
  grid-template-columns: 1fr; padding-bottom: 3rem;
}
@media (min-width: 720px) { .footer__grid { grid-template-columns: 1.6fr 1fr 1fr 1fr; } }
.footer__brand p { margin-top: 1.1rem; max-width: 28rem; font-size: .95rem; }
.footer__col h3 { font-size: .85rem; letter-spacing: .14em; text-transform: uppercase; color: var(--rust); margin-bottom: 1.1rem; }
.footer__col ul { list-style: none; padding: 0; display: grid; gap: .6rem; }
.footer__col a { transition: color .2s var(--ease); }
.footer__col a:hover { color: var(--white); }
.footer__col address { font-size: .95rem; }
.footer__bottom {
  border-top: 1px solid var(--line-dark);
  padding: 1.5rem var(--gutter);
  max-width: var(--container); margin-inline: auto;
  display: flex; flex-wrap: wrap; gap: .5rem 2rem; justify-content: space-between;
  font-size: .84rem; color: #8a7d6f;
}

/* =========================================================
   RESPONZIVITA — navigace mobil
   ========================================================= */
@media (max-width: 900px) {
  .hamburger { display: block; }
  .nav__links {
    position: fixed; inset: 0 0 0 auto; width: min(82vw, 360px);
    flex-direction: column; align-items: flex-start; justify-content: flex-start;
    gap: .5rem; padding: 6rem 2rem 2rem;
    background: var(--sand-2); box-shadow: -20px 0 60px -30px rgba(0,0,0,.5);
    transform: translateX(100%); transition: transform .4s var(--ease);
    overflow-y: auto;
  }
  .nav__links.is-open { transform: translateX(0); }
  .nav:not(.is-scrolled) .nav__links a:not(.nav__cta) { color: var(--espresso); }
  .nav__links a { font-size: 1.25rem; width: 100%; padding: .6rem 0; border-bottom: 1px solid var(--line); }
  .nav__links a::after { display: none; }
  .nav__cta { margin-top: 1rem; text-align: center; width: 100%; border-bottom: 0 !important; }
  .nav-backdrop {
    position: fixed; inset: 0; background: rgba(30,23,18,.5); z-index: 99;
    opacity: 0; visibility: hidden; transition: opacity .35s var(--ease), visibility .35s;
  }
  .nav-backdrop.is-open { opacity: 1; visibility: visible; }
}

@media (max-width: 480px) {
  .hero__actions .btn { width: 100%; justify-content: center; }
  .price-row { grid-template-columns: 1fr auto; }
  .price-row span:nth-child(2) { display: none; }
  .price-row--head span:nth-child(2) { display: none; }
}
