/* ==========================================================================
   HarnessLine — harnessline.digital
   Vizuálny systém: sedlová koža, dostihová zeleň, šampanské, brúsený bronz
   ========================================================================== */

:root {
  --leather: #5C3B2E;
  --leather-dark: #40291F;
  --racing: #234B3A;
  --racing-deep: #17332766;
  --champagne: #F5E7CE;
  --bronze: #A7794A;
  --bronze-light: #D6AE79;
  --parchment: #FBF7EF;
  --parchment-2: #F3EADA;
  --ink: #1E1712;
  --ink-soft: #4B3D33;
  --line: #DCCDB4;

  --font-display: "Cormorant Garamond", "Iowan Old Style", Georgia, serif;
  --font-body: "Karla", "Segoe UI", system-ui, -apple-system, sans-serif;

  --radius: 4px;
  --arch: 18rem 18rem 0.5rem 0.5rem / 9rem 9rem 0.5rem 0.5rem;
  --shadow-soft: 0 18px 44px -28px rgba(30, 23, 18, 0.55);
  --shadow-lift: 0 26px 60px -30px rgba(30, 23, 18, 0.65);
  --wrap: 1180px;
  --gutter: clamp(1.1rem, 4vw, 2.5rem);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--parchment);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: clamp(1rem, 0.96rem + 0.2vw, 1.075rem);
  line-height: 1.68;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: var(--racing); text-underline-offset: 3px; }
button { font: inherit; cursor: pointer; }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: 0.005em;
  margin: 0 0 0.6em;
  color: var(--racing);
}
h1 { font-size: clamp(2.5rem, 1.6rem + 4.2vw, 4.6rem); }
h2 { font-size: clamp(2rem, 1.4rem + 2.6vw, 3.2rem); }
h3 { font-size: clamp(1.3rem, 1.15rem + 0.7vw, 1.7rem); }
p { margin: 0 0 1.1em; }
ul { margin: 0 0 1.1em; padding-left: 1.15rem; }

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

/* ---------- Pomocné triedy ---------- */
.wrap { width: min(100% - (var(--gutter) * 2), var(--wrap)); margin-inline: auto; }
.section { padding: clamp(3.5rem, 7vw, 6.5rem) 0; position: relative; }
.section--tint { background: var(--parchment-2); }
.eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--bronze);
  margin: 0 0 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
.eyebrow::before {
  content: "";
  width: 2.2rem;
  height: 2px;
  background: linear-gradient(90deg, var(--bronze), transparent);
}
.eyebrow--center { justify-content: center; }
.eyebrow--center::after {
  content: "";
  width: 2.2rem;
  height: 2px;
  background: linear-gradient(270deg, var(--bronze), transparent);
}
.lead { font-size: 1.12rem; color: var(--ink-soft); max-width: 62ch; }
.center { text-align: center; }
.center .lead { margin-inline: auto; }
.head { max-width: 44rem; margin-bottom: clamp(2rem, 4vw, 3rem); }
.head.center { margin-inline: auto; }
.visually-hidden {
  position: absolute; width: 1px; height: 1px; overflow: hidden;
  clip: rect(0 0 0 0); clip-path: inset(50%); white-space: nowrap;
}

/* ---------- Stitch (signature motív) ---------- */
.stitched { position: relative; }
.stitched::after {
  content: "";
  position: absolute;
  inset: 7px;
  border: 1.5px dashed rgba(245, 231, 206, 0.5);
  border-radius: inherit;
  pointer-events: none;
}
.stitched--dark::after { border-color: rgba(92, 59, 46, 0.32); }

/* ---------- Tlačidlá ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.95rem 1.75rem;
  border-radius: 999px;
  border: 1.5px solid transparent;
  font-weight: 700;
  font-size: 0.93rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
}
.btn--primary {
  background: linear-gradient(160deg, var(--bronze-light), var(--bronze) 55%, #8A6339);
  color: #2A1B10;
  box-shadow: 0 12px 26px -16px rgba(92, 59, 46, 0.9), inset 0 1px 0 rgba(255, 255, 255, 0.35);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 18px 34px -18px rgba(92, 59, 46, 0.95); }
.btn--ghost {
  border-color: rgba(245, 231, 206, 0.55);
  color: var(--champagne);
  background: rgba(245, 231, 206, 0.06);
}
.btn--ghost:hover { background: rgba(245, 231, 206, 0.16); transform: translateY(-2px); }
.btn--outline { border-color: var(--racing); color: var(--racing); background: transparent; }
.btn--outline:hover { background: var(--racing); color: var(--champagne); transform: translateY(-2px); }
.btn--wide { width: 100%; }

/* ---------- Hlavička ---------- */
.topbar {
  background: var(--leather-dark);
  color: rgba(245, 231, 206, 0.82);
  font-size: 0.8rem;
  letter-spacing: 0.04em;
}
.topbar__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 1.6rem;
  justify-content: space-between;
  padding: 0.5rem 0;
}
.topbar a { color: var(--champagne); text-decoration: none; }
.topbar a:hover { text-decoration: underline; }

.header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: linear-gradient(180deg, #2A5A45, var(--racing));
  border-bottom: 1px solid rgba(167, 121, 74, 0.55);
  box-shadow: 0 10px 30px -24px rgba(0, 0, 0, 0.9);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 0;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  color: var(--champagne);
}
.brand__mark { width: 40px; height: 40px; flex: none; }
.brand__name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1;
  display: block;
}
.brand__tag {
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--bronze-light);
}
.nav { display: flex; align-items: center; gap: 1.5rem; }
.nav a {
  color: rgba(245, 231, 206, 0.9);
  text-decoration: none;
  font-size: 0.87rem;
  letter-spacing: 0.05em;
  padding: 0.3rem 0;
  position: relative;
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1.5px;
  background: var(--bronze-light);
  transition: width 0.25s ease;
}
.nav a:hover::after, .nav a[aria-current="page"]::after { width: 100%; }
.header .btn { padding: 0.7rem 1.25rem; font-size: 0.78rem; }
.nav-toggle {
  display: none;
  background: transparent;
  border: 1.5px solid rgba(245, 231, 206, 0.45);
  border-radius: 999px;
  padding: 0.5rem 0.8rem;
  color: var(--champagne);
}
.nav-toggle span {
  display: block; width: 20px; height: 2px; background: currentColor; margin: 4px 0;
  transition: transform 0.25s ease, opacity 0.2s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 940px) {
  .nav-toggle { display: block; }
  .nav {
    position: fixed;
    inset: auto 0 0 0;
    top: var(--nav-top, 118px);
    background: var(--racing);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.5rem var(--gutter) 2rem;
    border-top: 1px solid rgba(167, 121, 74, 0.5);
    transform: translateY(-115%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    max-height: calc(100dvh - var(--nav-top, 118px));
  }
  .nav[data-open="true"] { transform: translateY(0); }
  .nav a { padding: 0.9rem 0; border-bottom: 1px dashed rgba(245, 231, 206, 0.22); font-size: 1rem; }
  .nav .btn { margin-top: 1.2rem; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: var(--racing);
  color: var(--champagne);
  overflow: hidden;
  isolation: isolate;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: url("https://images.unsplash.com/photo-1500382017468-9049fed747ef?auto=format&fit=crop&w=1920&q=70");
  background-size: cover;
  background-position: center;
  filter: saturate(0.75);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(105deg, rgba(23, 51, 39, 0.96) 0%, rgba(35, 75, 58, 0.9) 45%, rgba(64, 41, 31, 0.62) 100%);
}
.hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.85fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
  padding: clamp(3.5rem, 8vw, 7rem) 0 clamp(4rem, 8vw, 7rem);
}
.hero h1 { color: var(--champagne); margin-bottom: 0.4em; }
.hero h1 em {
  font-style: italic;
  color: var(--bronze-light);
  display: block;
}
.hero__lead { color: rgba(245, 231, 206, 0.88); font-size: 1.16rem; max-width: 44ch; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-top: 2rem; }
.hero__note {
  margin-top: 1.8rem;
  font-size: 0.86rem;
  color: rgba(245, 231, 206, 0.7);
  border-left: 2px solid var(--bronze);
  padding-left: 0.9rem;
  max-width: 40ch;
}
.hero__plate {
  position: relative;
  border-radius: var(--arch);
  overflow: hidden;
  border: 10px solid var(--leather);
  box-shadow: var(--shadow-lift);
  aspect-ratio: 3 / 4;
}
.hero__plate img { width: 100%; height: 100%; object-fit: cover; }
.hero__badge {
  position: absolute;
  left: 50%;
  bottom: 1.3rem;
  transform: translateX(-50%);
  background: linear-gradient(160deg, var(--bronze-light), #8A6339);
  color: #2A1B10;
  padding: 0.6rem 1.4rem;
  border-radius: 999px;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  white-space: nowrap;
  box-shadow: 0 10px 20px -12px rgba(0, 0, 0, 0.8);
}
@media (max-width: 880px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__plate { max-width: 26rem; margin-inline: auto; aspect-ratio: 4 / 5; }
}

/* ---------- Remienok so štatistikami ---------- */
.strap {
  background: linear-gradient(180deg, var(--leather), var(--leather-dark));
  color: var(--champagne);
  border-top: 2px solid var(--bronze);
  border-bottom: 2px solid rgba(0, 0, 0, 0.3);
}
.strap__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 1px;
  background: rgba(245, 231, 206, 0.18);
}
.strap__item {
  background: linear-gradient(180deg, var(--leather), var(--leather-dark));
  padding: 1.9rem 1.2rem;
  text-align: center;
}
.strap__num {
  font-family: var(--font-display);
  font-size: 2.6rem;
  line-height: 1;
  color: var(--bronze-light);
  display: block;
}
.strap__label {
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(245, 231, 206, 0.75);
  margin-top: 0.5rem;
  display: block;
}

/* ---------- Karty služieb ---------- */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.9rem 1.7rem 1.7rem;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  display: flex;
  flex-direction: column;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-soft); border-color: var(--bronze); }
.card__icon {
  width: 54px; height: 54px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: var(--racing);
  color: var(--champagne);
  margin-bottom: 1.1rem;
  border: 2px solid var(--bronze);
}
.card__icon svg { width: 26px; height: 26px; }
.card h3 { margin-bottom: 0.5rem; }
.card p { color: var(--ink-soft); font-size: 0.97rem; }
.card__list { list-style: none; padding: 0; margin: 0.4rem 0 0; font-size: 0.93rem; }
.card__list li {
  padding-left: 1.5rem;
  position: relative;
  margin-bottom: 0.4rem;
  color: var(--ink-soft);
}
.card__list li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.62em;
  width: 8px; height: 8px;
  border: 2px solid var(--bronze);
  border-radius: 50%;
}

/* ---------- Kalkulačka (signature panel) ---------- */
.tack {
  background: linear-gradient(155deg, #2C5A45, var(--racing) 60%, #1B3A2C);
  color: var(--champagne);
  border-radius: 8px;
  border: 10px solid var(--leather);
  box-shadow: var(--shadow-lift);
  padding: clamp(1.6rem, 4vw, 3rem);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
}
.tack h2 { color: var(--champagne); }
.tack p { color: rgba(245, 231, 206, 0.82); }
.field { margin-bottom: 1.1rem; }
.field label {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 0.45rem;
  color: rgba(245, 231, 206, 0.85);
  font-weight: 700;
}
.field input[type="number"], .field input[type="range"] { width: 100%; }
.field input[type="number"] {
  background: rgba(0, 0, 0, 0.22);
  border: 1.5px solid rgba(245, 231, 206, 0.3);
  border-radius: var(--radius);
  color: var(--champagne);
  padding: 0.75rem 0.9rem;
  font-size: 1rem;
  font-family: var(--font-body);
}
.field input[type="number"]:focus { border-color: var(--bronze-light); outline: none; }
input[type="range"] {
  -webkit-appearance: none;
  appearance: none;
  height: 6px;
  border-radius: 999px;
  background: rgba(245, 231, 206, 0.28);
  margin-top: 0.7rem;
}
input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: linear-gradient(160deg, var(--bronze-light), #8A6339);
  border: 2px solid var(--champagne);
  cursor: pointer;
}
input[type="range"]::-moz-range-thumb {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: linear-gradient(160deg, var(--bronze-light), #8A6339);
  border: 2px solid var(--champagne);
  cursor: pointer;
}
.readout {
  background: linear-gradient(170deg, rgba(245, 231, 206, 0.14), rgba(0, 0, 0, 0.25));
  border: 1.5px solid rgba(167, 121, 74, 0.6);
  border-radius: 6px;
  padding: 1.5rem;
}
.readout__row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  padding: 0.6rem 0;
  border-bottom: 1px dashed rgba(245, 231, 206, 0.28);
  font-size: 0.93rem;
}
.readout__row:last-of-type { border-bottom: none; }
.readout__row b { font-family: var(--font-display); font-size: 1.5rem; color: var(--bronze-light); font-weight: 600; }
.readout__big {
  text-align: center;
  padding: 1.1rem 0 0.4rem;
}
.readout__big span {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(245, 231, 206, 0.7);
}
.readout__big strong {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 3.4rem);
  color: var(--champagne);
  font-weight: 600;
  line-height: 1.1;
}
.readout__hint { font-size: 0.83rem; color: rgba(245, 231, 206, 0.72); margin: 0.8rem 0 0; }
.gauge {
  height: 10px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.3);
  overflow: hidden;
  margin: 0.5rem 0 0.2rem;
  border: 1px solid rgba(245, 231, 206, 0.25);
}
.gauge__fill {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--bronze), var(--bronze-light));
  transition: width 0.4s ease;
}
@media (max-width: 860px) { .tack { grid-template-columns: 1fr; } }

/* ---------- Postup ---------- */
.steps { counter-reset: step; display: grid; gap: 1.2rem; }
.step {
  display: grid;
  grid-template-columns: 4.5rem minmax(0, 1fr);
  gap: 1.4rem;
  align-items: start;
  background: #fff;
  border: 1px solid var(--line);
  border-left: 4px solid var(--bronze);
  padding: 1.5rem 1.6rem;
  border-radius: var(--radius);
}
.step__num {
  font-family: var(--font-display);
  font-size: 2.6rem;
  color: var(--bronze);
  line-height: 1;
  border-right: 1px dashed var(--line);
  padding-right: 1rem;
}
.step h3 { margin-bottom: 0.35rem; }
.step p { margin: 0; color: var(--ink-soft); font-size: 0.97rem; }
@media (max-width: 620px) {
  .step { grid-template-columns: 1fr; gap: 0.5rem; }
  .step__num { border-right: none; padding-right: 0; }
}

/* ---------- Cenník ---------- */
.toggle {
  display: inline-flex;
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: 999px;
  padding: 4px;
  margin: 0 auto 2.5rem;
  gap: 4px;
}
.toggle button {
  border: none;
  background: transparent;
  border-radius: 999px;
  padding: 0.6rem 1.4rem;
  font-size: 0.83rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--ink-soft);
  transition: background 0.25s ease, color 0.25s ease;
}
.toggle button[aria-pressed="true"] { background: var(--racing); color: var(--champagne); }
.plans {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(285px, 1fr));
  gap: 1.6rem;
  align-items: stretch;
}
.plan {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.plan:hover { transform: translateY(-4px); box-shadow: var(--shadow-soft); }
.plan--featured {
  background: linear-gradient(170deg, #2C5A45, var(--racing));
  border-color: var(--bronze);
  color: var(--champagne);
  box-shadow: var(--shadow-lift);
}
.plan--featured h3, .plan--featured .plan__price { color: var(--champagne); }
.plan--featured .plan__list li { color: rgba(245, 231, 206, 0.88); }
.plan--featured .plan__list li::before { border-color: var(--bronze-light); }
.plan--featured .plan__meta { color: rgba(245, 231, 206, 0.7); border-color: rgba(245, 231, 206, 0.25); }
.plan__flag {
  position: absolute;
  top: -0.85rem;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(160deg, var(--bronze-light), #8A6339);
  color: #2A1B10;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 0.35rem 1.1rem;
  border-radius: 999px;
  white-space: nowrap;
}
.plan__price {
  font-family: var(--font-display);
  font-size: 3rem;
  line-height: 1;
  color: var(--racing);
  margin: 0.4rem 0 0.15rem;
  font-weight: 600;
}
.plan__price sup { font-size: 1.3rem; top: -0.9rem; }
.plan__period { font-size: 0.8rem; letter-spacing: 0.12em; text-transform: uppercase; opacity: 0.8; }
.plan__meta {
  font-size: 0.83rem;
  color: var(--ink-soft);
  border-top: 1px dashed var(--line);
  border-bottom: 1px dashed var(--line);
  padding: 0.8rem 0;
  margin: 1.2rem 0;
}
.plan__list { list-style: none; padding: 0; margin: 0 0 1.8rem; font-size: 0.94rem; flex: 1; }
.plan__list li { position: relative; padding-left: 1.5rem; margin-bottom: 0.55rem; color: var(--ink-soft); }
.plan__list li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.55em;
  width: 9px; height: 9px;
  border-radius: 50%;
  border: 2px solid var(--bronze);
}
.price-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 2.6rem;
  background: #fff;
  border: 1px solid var(--line);
  font-size: 0.95rem;
}
.price-table caption {
  caption-side: top;
  text-align: left;
  font-family: var(--font-display);
  font-size: 1.45rem;
  color: var(--racing);
  padding-bottom: 0.7rem;
}
.price-table th, .price-table td { padding: 0.85rem 1rem; text-align: left; border-bottom: 1px solid var(--line); }
.price-table thead th { background: var(--racing); color: var(--champagne); font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase; }
.price-table tbody tr:nth-child(even) { background: var(--parchment-2); }
.price-table td:last-child { font-weight: 700; color: var(--leather); white-space: nowrap; }
.table-scroll { overflow-x: auto; }
.note {
  font-size: 0.87rem;
  color: var(--ink-soft);
  background: var(--parchment-2);
  border-left: 3px solid var(--bronze);
  padding: 1rem 1.2rem;
  margin-top: 1.6rem;
  border-radius: 0 var(--radius) var(--radius) 0;
}
.section--tint .note { background: #fff; }

/* ---------- Split (obrázok + text) ---------- */
.split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.split--flip .split__media { order: 2; }
.split__media {
  border-radius: var(--arch);
  overflow: hidden;
  border: 10px solid var(--leather);
  box-shadow: var(--shadow-lift);
  aspect-ratio: 4 / 5;
}
.split__media img { width: 100%; height: 100%; object-fit: cover; }
.split__media--flat { border-radius: 6px; aspect-ratio: 5 / 4; }
.facts { list-style: none; padding: 0; margin: 1.6rem 0 0; display: grid; gap: 0.9rem; }
.facts li {
  display: grid;
  grid-template-columns: 2.2rem 1fr;
  gap: 0.9rem;
  align-items: start;
  font-size: 0.97rem;
  color: var(--ink-soft);
}
.facts svg { width: 26px; height: 26px; color: var(--bronze); margin-top: 0.15rem; }
@media (max-width: 820px) {
  .split { grid-template-columns: 1fr; }
  .split--flip .split__media { order: 0; }
  .split__media { max-width: 30rem; }
}

/* ---------- Tím ---------- */
.people { display: grid; grid-template-columns: repeat(auto-fit, minmax(215px, 1fr)); gap: 1.5rem; }
.person { text-align: center; }
.person__photo {
  border-radius: 14rem 14rem 6px 6px / 7rem 7rem 6px 6px;
  overflow: hidden;
  border: 8px solid var(--leather);
  aspect-ratio: 3 / 4;
  margin-bottom: 1rem;
  box-shadow: var(--shadow-soft);
}
.person__photo img { width: 100%; height: 100%; object-fit: cover; }
.person h3 { margin-bottom: 0.15rem; font-size: 1.3rem; }
.person__role {
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--bronze);
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.person p { font-size: 0.92rem; color: var(--ink-soft); }

/* ---------- Referencie ---------- */
.quotes { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; }
.quote {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem 1.7rem 1.6rem;
  position: relative;
}
.quote::before {
  content: "“";
  font-family: var(--font-display);
  font-size: 5rem;
  line-height: 0.6;
  color: var(--bronze);
  opacity: 0.35;
  position: absolute;
  top: 1.1rem; left: 1.4rem;
}
.quote p { position: relative; font-size: 0.98rem; color: var(--ink-soft); padding-top: 1.4rem; }
.quote footer {
  border-top: 1px dashed var(--line);
  padding-top: 0.9rem;
  font-size: 0.86rem;
}
.quote footer b { display: block; color: var(--racing); font-family: var(--font-display); font-size: 1.15rem; }
.quote footer span { color: var(--bronze); letter-spacing: 0.1em; text-transform: uppercase; font-size: 0.72rem; }

/* ---------- FAQ ---------- */
.faq { max-width: 52rem; margin-inline: auto; }
.faq__item {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: var(--radius);
  margin-bottom: 0.85rem;
  overflow: hidden;
}
.faq__q {
  width: 100%;
  text-align: left;
  background: transparent;
  border: none;
  padding: 1.25rem 3.3rem 1.25rem 1.4rem;
  font-family: var(--font-display);
  font-size: 1.22rem;
  color: var(--racing);
  position: relative;
}
.faq__q::after {
  content: "";
  position: absolute;
  right: 1.4rem; top: 50%;
  width: 11px; height: 11px;
  border-right: 2px solid var(--bronze);
  border-bottom: 2px solid var(--bronze);
  transform: translateY(-70%) rotate(45deg);
  transition: transform 0.3s ease;
}
.faq__q[aria-expanded="true"]::after { transform: translateY(-20%) rotate(-135deg); }
.faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq__a > div { padding: 0 1.4rem 1.3rem; color: var(--ink-soft); font-size: 0.97rem; }

/* ---------- Kontakt ---------- */
.contact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.85fr);
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: start;
}
.form {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: clamp(1.5rem, 4vw, 2.4rem);
  box-shadow: var(--shadow-soft);
}
.form__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem 1.2rem; }
.form__grid > .form-field--full { grid-column: 1 / -1; }
@media (max-width: 560px) { .form__grid { grid-template-columns: 1fr; } }
.form-field label {
  display: block;
  font-size: 0.76rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--racing);
  margin-bottom: 0.4rem;
}
.form-field input, .form-field select, .form-field textarea {
  width: 100%;
  padding: 0.8rem 0.9rem;
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.97rem;
  background: var(--parchment);
  color: var(--ink);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.form-field textarea { min-height: 128px; resize: vertical; }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  border-color: var(--bronze);
  box-shadow: 0 0 0 3px rgba(167, 121, 74, 0.16);
  outline: none;
}
.form-field .err { display: none; color: #A3341F; font-size: 0.82rem; margin-top: 0.3rem; }
.form-field[data-invalid="true"] input,
.form-field[data-invalid="true"] select,
.form-field[data-invalid="true"] textarea { border-color: #A3341F; }
.form-field[data-invalid="true"] .err { display: block; }
.check-wrap .err { display: none; color: #A3341F; font-size: 0.82rem; margin-top: 0.35rem; }
.check-wrap[data-invalid="true"] .err { display: block; }
.check-wrap[data-invalid="true"] input[type="checkbox"] { outline: 2px solid #A3341F; outline-offset: 2px; }
.check {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.7rem;
  align-items: start;
  font-size: 0.87rem;
  color: var(--ink-soft);
}
.check input { width: 20px; height: 20px; margin-top: 0.15rem; accent-color: var(--racing); }
.form__status {
  display: none;
  margin-top: 1.2rem;
  padding: 1rem 1.2rem;
  border-radius: var(--radius);
  background: rgba(35, 75, 58, 0.1);
  border-left: 3px solid var(--racing);
  font-size: 0.92rem;
}
.form__status[data-visible="true"] { display: block; }
.info-card {
  background: linear-gradient(170deg, #2C5A45, var(--racing));
  color: var(--champagne);
  border-radius: 6px;
  padding: clamp(1.5rem, 4vw, 2.2rem);
  border: 8px solid var(--leather);
}
.info-card h3 { color: var(--champagne); }
.info-list { list-style: none; padding: 0; margin: 0; }
.info-list li {
  display: grid;
  grid-template-columns: 2rem 1fr;
  gap: 0.8rem;
  padding: 0.85rem 0;
  border-bottom: 1px dashed rgba(245, 231, 206, 0.28);
  font-size: 0.94rem;
}
.info-list li:last-child { border-bottom: none; }
.info-list svg { width: 22px; height: 22px; color: var(--bronze-light); }
.info-list a { color: var(--champagne); text-decoration: none; border-bottom: 1px solid rgba(245, 231, 206, 0.4); }
.info-list a:hover { color: var(--bronze-light); }
.info-list span { display: block; font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(245, 231, 206, 0.65); }
@media (max-width: 880px) { .contact { grid-template-columns: 1fr; } }

/* ---------- Pätka ---------- */
.footer {
  background: linear-gradient(180deg, var(--leather), var(--leather-dark));
  color: rgba(245, 231, 206, 0.8);
  padding: clamp(3rem, 6vw, 4.5rem) 0 1.5rem;
  border-top: 3px solid var(--bronze);
  font-size: 0.92rem;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 2rem;
}
@media (max-width: 860px) { .footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .footer__grid { grid-template-columns: 1fr; } }
.footer h4 {
  color: var(--champagne);
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin: 0 0 1.1rem;
}
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer li { margin-bottom: 0.6rem; }
.footer a { color: rgba(245, 231, 206, 0.82); text-decoration: none; }
.footer a:hover { color: var(--bronze-light); text-decoration: underline; }
.footer .link-btn {
  color: rgba(245, 231, 206, 0.82);
  font: inherit;
  padding: 0;
  text-decoration: none;
  cursor: pointer;
}
.footer .link-btn:hover { color: var(--bronze-light); text-decoration: underline; }
.footer__brand { display: inline-flex; align-items: center; gap: 0.7rem; margin-bottom: 1rem; }
.footer__brand img { width: 42px; height: 42px; }
.footer__brand b { font-family: var(--font-display); font-size: 1.45rem; color: var(--champagne); font-weight: 600; }
.footer__bottom {
  margin-top: 2.5rem;
  padding-top: 1.4rem;
  border-top: 1px dashed rgba(245, 231, 206, 0.28);
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.5rem;
  justify-content: space-between;
  font-size: 0.83rem;
  color: rgba(245, 231, 206, 0.62);
}
.disclaimer {
  margin-top: 1.2rem;
  font-size: 0.8rem;
  line-height: 1.6;
  color: rgba(245, 231, 206, 0.6);
}

/* ---------- Cookie lišta ---------- */
.cookie {
  position: fixed;
  left: 50%;
  bottom: 1.1rem;
  transform: translate(-50%, 150%);
  width: min(100% - 1.6rem, 62rem);
  background: var(--parchment);
  border: 2px solid var(--leather);
  border-radius: 8px;
  box-shadow: 0 24px 60px -22px rgba(30, 23, 18, 0.7);
  padding: 1.4rem 1.5rem;
  z-index: 90;
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}
.cookie[data-open="true"] { transform: translate(-50%, 0); }
.cookie h3 { font-size: 1.35rem; margin-bottom: 0.35rem; }
.cookie p { font-size: 0.9rem; color: var(--ink-soft); margin-bottom: 1rem; }
.cookie__actions { display: flex; flex-wrap: wrap; gap: 0.7rem; }
.cookie .btn { padding: 0.75rem 1.3rem; font-size: 0.78rem; }
.cookie__prefs {
  display: none;
  margin: 0.4rem 0 1.1rem;
  border-top: 1px dashed var(--line);
  padding-top: 1rem;
}
.cookie__prefs[data-open="true"] { display: block; }
.cookie__prefs .check { margin-bottom: 0.8rem; }
.link-btn {
  background: none;
  border: none;
  color: var(--racing);
  text-decoration: underline;
  text-underline-offset: 3px;
  font-size: 0.85rem;
  padding: 0.75rem 0.4rem;
}

/* ---------- Späť hore ---------- */
.totop {
  position: fixed;
  right: 1.1rem;
  bottom: 1.1rem;
  width: 46px; height: 46px;
  border-radius: 50%;
  border: 2px solid var(--bronze);
  background: var(--racing);
  color: var(--champagne);
  display: grid;
  place-items: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
  z-index: 80;
}
.totop[data-visible="true"] { opacity: 1; visibility: visible; transform: translateY(0); }
.totop svg { width: 18px; height: 18px; }

/* ---------- Reveal animácia ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal[data-shown="true"] { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ---------- Právne stránky ---------- */
.page-head {
  background: linear-gradient(120deg, var(--racing), #1B3A2C);
  color: var(--champagne);
  padding: clamp(3rem, 7vw, 5rem) 0 clamp(2.5rem, 5vw, 3.5rem);
  border-bottom: 3px solid var(--bronze);
}
.page-head h1 { color: var(--champagne); font-size: clamp(2.1rem, 1.5rem + 2.6vw, 3.4rem); }
.page-head p { color: rgba(245, 231, 206, 0.82); max-width: 55ch; margin: 0; }
.crumbs { font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 1.2rem; color: rgba(245, 231, 206, 0.7); }
.crumbs a { color: var(--bronze-light); text-decoration: none; }
.crumbs a:hover { text-decoration: underline; }
.legal { max-width: 52rem; padding-block: clamp(2.5rem, 5vw, 4rem); }
.legal h2 { font-size: clamp(1.5rem, 1.2rem + 1.1vw, 2.1rem); margin-top: 2.4rem; }
.legal h2:first-of-type { margin-top: 0; }
.legal h3 { font-size: 1.25rem; margin-top: 1.6rem; }
.legal ul, .legal ol { margin-bottom: 1.2rem; }
.legal li { margin-bottom: 0.5rem; }
.legal table { width: 100%; border-collapse: collapse; margin: 1.2rem 0 1.6rem; font-size: 0.93rem; }
.legal th, .legal td { border: 1px solid var(--line); padding: 0.7rem 0.85rem; text-align: left; vertical-align: top; }
.legal th { background: var(--parchment-2); }
.legal__meta {
  background: var(--parchment-2);
  border-left: 3px solid var(--bronze);
  padding: 1.1rem 1.3rem;
  margin-bottom: 2.2rem;
  font-size: 0.9rem;
}
.legal__meta p { margin: 0.2rem 0; }
