:root {

  --dark: #16110D;
  --dark-2: #231B14;
  --dark-3: #2F241A;

  --paperEl: #F8F4ED;
  --paperEl-2: #EFE8DC;
  --white: #FFFFFF;

  --inkoust: #241D16;
  --inkoust-2: #6B6053;
  --line: #DDD4C5;
  --line-dark: #3B2F23;

  --olej: #9BB268;
  --olej-tl: #B4C88A;
  --olej-t: #4B5D26;

  --display: "Segoe UI Variable Display", "Segoe UI", -apple-system,
    BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
  --text: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia,
    "Times New Roman", serif;
  --mono: "Cascadia Mono", "SF Mono", ui-monospace, Consolas, "Liberation Mono",
    monospace;

  --mez: clamp(.55rem, 1.1vw, .95rem);
  --widthVal: 74rem;
  --plyn: cubic-bezier(.22, .61, .36, 1);

  --shadowEl: 13px 17px 34px -17px rgba(16, 11, 8, .55),
          3px 5px 10px -7px rgba(16, 11, 8, .4);
  --shadowEl-vys: 20px 26px 48px -20px rgba(16, 11, 8, .6),
              4px 7px 14px -8px rgba(16, 11, 8, .45);
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    transition-duration: .001ms !important;
  }
}

body {
  margin: 0;
  background: var(--paperEl);
  color: var(--inkoust);
  font-family: var(--text);
  font-size: clamp(1rem, .97rem + .18vw, 1.09rem);
  line-height: 1.68;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

img { max-width: 100%; height: auto; }

h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: -.028em;
  line-height: 1.1;
  margin: 0;
  text-wrap: balance;
}
h1 { font-size: clamp(2.3rem, 1.35rem + 4.4vw, 4.4rem); }
h2 { font-size: clamp(1.75rem, 1.2rem + 2.2vw, 2.75rem); }
h3 { font-size: clamp(1.14rem, 1.02rem + .5vw, 1.4rem); letter-spacing: -.018em; }
p { margin: 0 0 1.1rem; }
p:last-child { margin-bottom: 0; }

a { color: inherit; }

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

.wrapEl { width: min(100% - 2.4rem, var(--widthVal)); margin-inline: auto; }
@media (min-width: 48rem) { .wrapEl { width: min(100% - 4rem, var(--widthVal)); } }

.sectionBox { padding-block: clamp(3.4rem, 7vw, 6.4rem); }

.sectionBox-intro { padding-bottom: 0; }
.sek-dark { background: var(--dark); color: var(--paperEl); }
.sek-dark h2, .sek-dark h3 { color: var(--paperEl); }
.sek-light { background: var(--paperEl-2); }

.jen-ctecka {
  position: absolute; width: 1px; height: 1px; overflow: hidden;
  clip-path: inset(50%); white-space: nowrap;
}

.headRow {
  position: sticky; top: 0; z-index: 60;
  background: rgba(22, 17, 13, .93);
  backdrop-filter: saturate(1.3) blur(9px);
  border-bottom: 1px solid var(--line-dark);
  color: var(--paperEl);
}
.headRow-v {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; min-height: 4.2rem;
}
.brandMark {
  display: flex; align-items: baseline; gap: .5rem;
  font-family: var(--display); font-weight: 700; letter-spacing: -.03em;
  font-size: 1.16rem; text-decoration: none; color: var(--paperEl);
}
.brandMark span {
  font-family: var(--mono); font-weight: 400; font-size: .62rem;
  letter-spacing: .2em; text-transform: uppercase; color: var(--olej);
}

.menu { display: flex; align-items: center; gap: clamp(1rem, 2vw, 1.9rem); }
.menu a {
  font-family: var(--display); font-size: .92rem; font-weight: 500;
  letter-spacing: -.01em; text-decoration: none; color: var(--paperEl);
  padding-block: .3rem; border-bottom: 1px solid transparent;
  transition: border-color .2s var(--plyn), color .2s var(--plyn);
}
.menu a:hover { border-bottom-color: var(--olej); }
.menu a[aria-current="page"] { color: var(--olej-tl); border-bottom-color: var(--olej); }

.prep {
  display: none; background: none; border: 1px solid var(--line-dark);
  color: var(--paperEl); width: 2.75rem; height: 2.4rem; border-radius: 6px;
  cursor: pointer; padding: 0; align-items: center; justify-content: center;
}
.prep i {
  display: block; width: 1.15rem; height: 1.5px; background: currentColor;
  position: relative;
}
.prep i::before, .prep i::after {
  content: ""; position: absolute; left: 0; width: 100%; height: 1.5px;
  background: currentColor;
}
.prep i::before { top: -.4rem; }
.prep i::after { top: .4rem; }

@media (max-width: 55.99rem) {
  .prep { display: flex; }
  .menu {
    position: absolute; left: 0; right: 0; top: 100%;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--dark-2); border-bottom: 1px solid var(--line-dark);
    padding: .4rem 1.2rem 1rem; display: none;
  }
  .headRow.isOpen .menu { display: flex; }
  .menu a { padding-block: .78rem; border-bottom: 1px solid var(--line-dark); }
  .menu a:last-child { border-bottom: 0; }
  .menu .tl { margin-top: .8rem; text-align: center; }
}

.tl {
  display: inline-flex; align-items: center; gap: .55rem;
  font-family: var(--display); font-weight: 600; font-size: .95rem;
  letter-spacing: -.01em; text-decoration: none;
  padding: .78rem 1.5rem; border: 1px solid transparent; border-radius: 3px;
  cursor: pointer; transition: transform .18s var(--plyn),
    background-color .18s var(--plyn), color .18s var(--plyn);
}

.tl-mainCol { background: var(--olej); color: var(--dark); }
.tl-mainCol:hover { background: var(--olej-tl); transform: translateY(-2px); }
.tl-outlineEl { border-color: currentColor; }
.tl-outlineEl:hover { background: rgba(155, 178, 104, .16); transform: translateY(-2px); }

.headBar { max-width: 44rem; margin-bottom: clamp(2rem, 4vw, 3rem); }
.headBar-middle { margin-inline: auto; text-align: center; }
.eyebrowText {
  font-family: var(--mono); font-size: .68rem; letter-spacing: .2em;
  text-transform: uppercase; color: var(--olej-t); margin: 0 0 .85rem;
}
.sek-dark .eyebrowText { color: var(--olej-tl); }

.eyebrowText::after {
  content: ""; display: block; width: 4.2rem; height: 2px; margin-top: .7rem;
  background: linear-gradient(90deg, currentColor, transparent);
}
.headBar-middle .eyebrowText::after { margin-inline: auto; }
.headBar p { margin-top: 1rem; color: var(--inkoust-2); }
.sek-dark .headBar p { color: #C9BEAE; }

.hero { position: relative; background: var(--dark); color: var(--paperEl); overflow: hidden; }
.hero-f { position: absolute; inset: 0; }
.hero-f img { width: 100%; height: 100%; object-fit: cover; display: block; }

.hero-f::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(16, 11, 8, .96) 0%, rgba(16, 11, 8, .88) 34%,
      rgba(16, 11, 8, .52) 62%, rgba(16, 11, 8, .3) 100%),
    linear-gradient(0deg, rgba(16, 11, 8, .78) 0%, rgba(16, 11, 8, 0) 46%);
}

.hero .wrapEl { position: relative; z-index: 2; }
.hero-v { padding-block: clamp(5rem, 15vw, 9.5rem); max-width: 40rem; }

@media (max-width: 47.99rem) {
  .hero-f { position: static; }

  .hero-f img { height: clamp(13rem, 62vw, 20rem); }
  .hero-f::after { content: none; }
  .hero-v { padding-block: 2.2rem 2.8rem; }
}
.hero-v .eyebrowText { color: var(--olej-tl); }

.hero-p {
  font-size: clamp(1.06rem, 1rem + .4vw, 1.26rem);
  color: #E7E0D4; margin-top: 1.3rem; max-width: 33rem;
}
.hero-tl { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 2.1rem; }

.js .hero .hero-v > * { opacity: 0; transform: translateY(14px); }
.js .hero.spustit .hero-v > * {
  opacity: 1; transform: none;
  transition: opacity .7s var(--plyn), transform .7s var(--plyn);
}
.js .hero.spustit .hero-v > *:nth-child(2) { transition-delay: .1s; }
.js .hero.spustit .hero-v > *:nth-child(3) { transition-delay: .18s; }
.js .hero.spustit .hero-v > *:nth-child(4) { transition-delay: .26s; }

.obory { display: grid; gap: clamp(1.2rem, 2.6vw, 2rem); }
@media (min-width: 46rem) { .obory { grid-template-columns: repeat(3, 1fr); } }
.obor { display: flex; flex-direction: column; }
.obor figure { margin: 0; box-shadow: var(--shadowEl); }
.obor img { width: 100%; display: block; aspect-ratio: 4 / 3; object-fit: cover; }
.obor h3 { margin-top: 1.3rem; }
.obor p { margin-top: .6rem; color: var(--inkoust-2); font-size: .97rem; }
.obor .linkEl {
  margin-top: auto; padding-top: 1rem;
  font-family: var(--display); font-weight: 600; font-size: .9rem;
  color: var(--olej-t); text-decoration: none;
  border-bottom: 1px solid transparent; align-self: flex-start;
}
.obor .linkEl:hover { border-bottom-color: currentColor; }

.galleryEl { display: flex; flex-direction: column; gap: var(--mez); }
.seriesName { display: flex; flex-wrap: wrap; gap: var(--mez); }
.snimek {
  flex: var(--a, 1) 1 42%; min-width: 0; display: block; margin: 0; padding: 0;
  border: 0; background: none; cursor: zoom-in; box-shadow: var(--shadowEl);
  -webkit-tap-highlight-color: transparent;
  transition: box-shadow .25s var(--plyn), transform .25s var(--plyn);
}
@media (max-width: 47.99rem) { .snimek { max-width: calc(50% - var(--mez) / 2); } }
@media (min-width: 48rem) { .snimek { flex-basis: 0; } }
.snimek img { display: block; width: 100%; transition: opacity .3s var(--plyn); }
.snimek:hover { box-shadow: var(--shadowEl-vys); transform: translateY(-3px); }
.snimek:hover img { opacity: .9; }

.pod-galerii { margin-top: clamp(1.7rem, 3vw, 2.5rem); text-align: center; }

.zoomBox { display: none; }
.zoomBox[open] {
  display: flex; position: fixed; inset: 0; z-index: 200;
  align-items: center; justify-content: center;
  background: rgba(11, 8, 6, .96); padding: clamp(.6rem, 3vw, 2.4rem);
}
.zoomBox figure {
  margin: 0; display: flex; flex-direction: column; gap: .8rem;
  max-width: min(100%, var(--zoomBox-cap, 1600px)); max-height: 100%;
}
.zoomBox img {
  display: block; max-width: 100%; max-height: 78vh;
  width: auto; height: auto; object-fit: contain; margin-inline: auto;
  box-shadow: 0 30px 70px -30px rgba(0, 0, 0, .9);
}
.zoomBox figcaption {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; color: #CFC5B6; font-size: .9rem;
}
.zoomBox-counterEl { font-family: var(--mono); font-size: .74rem; letter-spacing: .12em; }
.zoomBox button {
  position: absolute; background: rgba(248, 244, 237, .1);
  border: 1px solid rgba(248, 244, 237, .26); color: var(--paperEl);
  width: 3rem; height: 3rem; border-radius: 50%; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; line-height: 1; transition: background-color .2s var(--plyn);
}
.zoomBox button:hover { background: rgba(248, 244, 237, .24); }
.zoomBox-shut { top: clamp(.6rem, 2vw, 1.4rem); right: clamp(.6rem, 2vw, 1.4rem); }
.zoomBox-dozadu { left: clamp(.4rem, 2vw, 1.6rem); top: 50%; transform: translateY(-50%); }
.zoomBox-dopredu { right: clamp(.4rem, 2vw, 1.6rem); top: 50%; transform: translateY(-50%); }
@media (max-width: 40rem) {
  .zoomBox-dozadu, .zoomBox-dopredu { top: auto; bottom: .8rem; transform: none; }
}

.stepGrid { list-style: none; margin: 0; padding: 0; display: grid; gap: clamp(1.4rem, 3vw, 2.2rem); }
@media (min-width: 46rem) { .stepGrid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 66rem) { .stepGrid.stepGrid-4 { grid-template-columns: repeat(4, 1fr); } }
.stepGrid li { border-top: 1px solid var(--line); padding-top: 1.1rem; }
.sek-dark .stepGrid li { border-top-color: var(--line-dark); }
.stepGrid b {
  display: block; font-family: var(--mono); font-size: .72rem;
  letter-spacing: .18em; color: var(--olej-t); margin-bottom: .7rem;
}
.sek-dark .stepGrid b { color: var(--olej-tl); }
.stepGrid h3 { margin-bottom: .5rem; }
.stepGrid p { color: var(--inkoust-2); font-size: .97rem; }
.sek-dark .stepGrid p { color: #C9BEAE; }

.ohlasy { list-style: none; margin: 0; padding: 0; display: grid; gap: clamp(1rem, 2vw, 1.5rem); }
@media (min-width: 46rem) { .ohlasy { grid-template-columns: repeat(3, 1fr); } }
.ohlas {
  background: var(--white); border: 1px solid var(--line);
  padding: 1.6rem 1.7rem; display: flex; flex-direction: column; gap: 1rem;
  box-shadow: var(--shadowEl);
}
.ohlas blockquote { margin: 0; font-size: 1.02rem; }
.ohlas figcaption {
  font-family: var(--mono); font-size: .72rem; letter-spacing: .1em;
  text-transform: uppercase; color: var(--inkoust-2); margin-top: auto;
}

.ostudiu { display: grid; gap: clamp(1.8rem, 4vw, 3.4rem); align-items: center; }
@media (min-width: 52rem) { .ostudiu { grid-template-columns: 5fr 6fr; } }
.ostudiu figure { margin: 0; box-shadow: var(--shadowEl-vys); }
.ostudiu img { display: block; width: 100%; }

.callToAction { text-align: center; max-width: 40rem; margin-inline: auto; }
.callToAction .tl { margin-top: 1.8rem; }

.baliky { display: grid; gap: clamp(1.1rem, 2.4vw, 1.8rem); align-items: stretch; }
@media (min-width: 50rem) { .baliky { grid-template-columns: repeat(3, 1fr); } }
.balik {
  background: var(--white); border: 1px solid var(--line); padding: 1.9rem 1.7rem;
  display: flex; flex-direction: column; gap: 1rem; box-shadow: var(--shadowEl);
}
.balik.zvyrazneny { border-color: var(--olej-t); border-width: 2px; }
.balik .tag {
  font-family: var(--mono); font-size: .68rem; letter-spacing: .16em;
  text-transform: uppercase; color: var(--olej-t);
}
.priceVal {
  font-family: var(--display); font-weight: 700; letter-spacing: -.035em;
  font-size: clamp(1.9rem, 1.4rem + 1.6vw, 2.5rem); line-height: 1;
}
.priceVal small {
  display: block; font-family: var(--mono); font-weight: 400; font-size: .7rem;
  letter-spacing: .12em; text-transform: uppercase; color: var(--inkoust-2);
  margin-top: .55rem;
}
.balik ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .55rem; font-size: .96rem; }
.balik li { padding-left: 1.4rem; position: relative; }
.balik li::before {
  content: ""; position: absolute; left: 0; top: .62em;
  width: .52rem; height: .52rem; background: var(--olej); border-radius: 50%;
}
.balik .tl { margin-top: auto; justify-content: center; }

.extraList { display: grid; gap: 1px; background: var(--line); border: 1px solid var(--line); margin-top: clamp(1.6rem, 3vw, 2.4rem); }
@media (min-width: 44rem) { .extraList { grid-template-columns: repeat(2, 1fr); } }
.extraList div { background: var(--paperEl); padding: 1.1rem 1.3rem; display: flex; justify-content: space-between; gap: 1rem; align-items: baseline; }
.extraList dt, .extraList span { font-size: .96rem; }
.extraList b { font-family: var(--display); white-space: nowrap; }

.questions { display: grid; gap: 1.4rem; max-width: 48rem; }
.question { border-top: 1px solid var(--line); padding-top: 1.2rem; }
.question h3 { margin-bottom: .55rem; }
.question p { color: var(--inkoust-2); font-size: .98rem; }

.contactId-gridEl { display: grid; gap: clamp(2rem, 4vw, 3.4rem); }
@media (min-width: 54rem) { .contactId-gridEl { grid-template-columns: 3fr 2fr; } }

.formEl { display: grid; gap: 1.1rem; }
.fieldEl { display: grid; gap: .4rem; }
.fieldEl label { font-family: var(--display); font-weight: 600; font-size: .88rem; }
.fieldEl input, .fieldEl textarea, .fieldEl select {
  font: inherit; font-size: 1rem; color: var(--inkoust); background: var(--white);
  border: 1px solid var(--line); border-radius: 3px; padding: .72rem .85rem;
  width: 100%; min-width: 0;
}
.fieldEl textarea { min-height: 8.5rem; resize: vertical; }
.fieldEl input:focus, .fieldEl textarea:focus, .fieldEl select:focus { border-color: var(--olej-t); }
.fieldEl .errBox, .fieldEl input.errBox, .fieldEl textarea.errBox { border-color: #A63A22; }
.pairEl { display: grid; gap: 1.1rem; }
@media (min-width: 34rem) { .pairEl { grid-template-columns: 1fr 1fr; } }

.consentVal { display: flex; gap: .7rem; align-items: flex-start; font-size: .92rem; color: var(--inkoust-2); }
.consentVal input { margin-top: .3rem; flex: 0 0 auto; }

.formEl > button { justify-self: start; }

.form-conditionVal { font-size: .95rem; min-height: 1.4rem; color: var(--olej-t); }
.form-conditionVal.je-errBox { color: #A63A22; }

.note-ukazky {
  background: var(--paperEl-2); border-left: 3px solid var(--olej);
  padding: .9rem 1.1rem; font-size: .9rem; color: var(--inkoust-2);
}

.contactId-u { display: grid; gap: 1.5rem; align-content: start; }
.contactId-u h3 { margin-bottom: .4rem; }
.contactId-u a { color: var(--olej-t); }
.contactId-u dl { margin: 0; display: grid; gap: .9rem; }
.contactId-u dt { font-family: var(--mono); font-size: .68rem; letter-spacing: .16em; text-transform: uppercase; color: var(--inkoust-2); }
.contactId-u dd { margin: .2rem 0 0; }

.footEl { background: var(--dark); color: #B9AE9E; padding-block: clamp(2.6rem, 5vw, 4rem); font-size: .92rem; }
.footEl-v { display: grid; gap: 1.6rem; }
@media (min-width: 46rem) { .footEl-v { grid-template-columns: 1fr auto; align-items: center; } }
.footEl a { color: var(--paperEl); }
.footEl-menu { display: flex; flex-wrap: wrap; gap: .5rem 1.4rem; }
.footEl-menu a { text-decoration: none; }
.footEl-menu a:hover { text-decoration: underline; }

.reveal { opacity: 0; transform: translateY(16px); }
.reveal.seen {
  opacity: 1; transform: none;
  transition: opacity .65s var(--plyn), transform .65s var(--plyn);
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; }
}
