:root {
  --cream: #fbf7f2;
  --paper: #ffffff;
  --ink: #2a2230;
  --ink-soft: #5e5462;
  --line: #eadfd6;
  --blush: #e8a5b5;
  --blush-deep: #c4677f;
  --blush-bg: #fbeef1;
  --gold: #b8935a;
  --dunobox: #2fde8c;

  --phone: #f2b8c6;
  --phone-dark: #d98ea1;
  --phone-light: #fbdbe3;

  --radius: 22px;
  --shadow: 0 20px 50px -24px rgba(74, 42, 60, .35);
  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans: "Manrope", system-ui, -apple-system, "Segoe UI", sans-serif;
  --wrap: 1140px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font: 400 17px/1.65 var(--sans);
  -webkit-font-smoothing: antialiased;
}
img, svg { max-width: 100%; display: block; }
a { color: var(--blush-deep); }
a:hover { color: var(--ink); }
h1, h2, h3 { font-family: var(--serif); font-weight: 600; line-height: 1.08; margin: 0 0 .5em; letter-spacing: -.01em; }
h1 { font-size: clamp(2.6rem, 6vw, 4.6rem); }
h2 { font-size: clamp(2.1rem, 4.4vw, 3.3rem); }
h3 { font-size: 1.6rem; }
p { margin: 0 0 1em; }
.wrap { width: min(var(--wrap), 100% - 32px); margin-inline: auto; }
.eyebrow {
  display: inline-block; font-size: .78rem; font-weight: 700; letter-spacing: .16em;
  text-transform: uppercase; color: var(--blush-deep); margin-bottom: 14px;
}
.lead { font-size: 1.15rem; color: var(--ink-soft); max-width: 60ch; }
.center { text-align: center; }
.center .lead { margin-inline: auto; }
.skip { position: absolute; left: -999px; }
.skip:focus { left: 16px; top: 16px; background: #fff; padding: 8px 14px; z-index: 99; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 16px 30px; border-radius: 999px; border: 0; cursor: pointer;
  font: 700 1rem var(--sans); text-decoration: none; transition: transform .15s, box-shadow .2s, background .2s;
}
.btn-primary { background: var(--ink); color: #fff; box-shadow: 0 12px 28px -12px rgba(42, 34, 48, .6); }
.btn-primary:hover { background: var(--blush-deep); color: #fff; transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--ink); border: 1.5px solid var(--ink); }
.btn-ghost:hover { background: var(--ink); color: #fff; }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(251, 247, 242, .88); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent; transition: border-color .2s;
}
.site-header.scrolled { border-color: var(--line); }
.nav { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; color: var(--ink); }
.logo-mark { width: 38px; height: 38px; }
.logo-text { font: 600 1.7rem/1 var(--serif); }
.logo-text small { display: block; font: 600 .62rem/1.4 var(--sans); letter-spacing: .18em; text-transform: uppercase; color: var(--ink-soft); }
.nav-links { display: flex; gap: 28px; align-items: center; list-style: none; margin: 0; padding: 0; }
.nav-links a { color: var(--ink); text-decoration: none; font-weight: 600; font-size: .95rem; }
.nav-links a:hover { color: var(--blush-deep); }
.nav-links .btn { padding: 11px 22px; font-size: .92rem; color: #fff; }
.menu-toggle { display: none; background: none; border: 0; padding: 8px; cursor: pointer; color: var(--ink); }

/* Hero */
.hero { position: relative; overflow: hidden; padding: 56px 0 90px; }
.hero::before {
  content: ""; position: absolute; inset: -20% -10% auto auto; width: 760px; height: 760px; border-radius: 50%;
  background: radial-gradient(circle, var(--blush-bg) 0%, rgba(251, 238, 241, 0) 70%); z-index: -1;
}
.hero-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 48px; align-items: center; }
.hero h1 em { font-style: italic; color: var(--blush-deep); }
.hero-points { list-style: none; padding: 0; margin: 26px 0 32px; display: grid; gap: 10px; }
.hero-points li { display: flex; gap: 12px; align-items: flex-start; }
.hero-points svg { flex: 0 0 22px; margin-top: 3px; color: var(--blush-deep); }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.price-tag { display: flex; align-items: baseline; gap: 8px; margin-left: 6px; }
.price-tag strong { font: 600 2.2rem/1 var(--serif); }
.price-tag span { color: var(--ink-soft); font-size: .9rem; }

.phone-stage { position: relative; display: grid; place-items: center; }
.phone-stage .halo {
  position: absolute; width: 88%; aspect-ratio: 1; border-radius: 50%;
  background: var(--paper); box-shadow: var(--shadow); border: 1px solid var(--line);
}
.phone-svg { position: relative; width: 92%; max-width: 440px; filter: drop-shadow(0 30px 30px rgba(74, 42, 60, .18)); }
.phone-svg .body { fill: var(--phone); transition: fill .45s; }
.phone-svg .shade { fill: var(--phone-dark); transition: fill .45s; }
.phone-svg .light { fill: var(--phone-light); transition: fill .45s; }
.phone-svg .cord { stroke: var(--phone-dark); transition: stroke .45s; }
.swatches { position: relative; display: flex; gap: 12px; margin-top: 18px; background: var(--paper); padding: 10px 14px; border-radius: 999px; box-shadow: var(--shadow); }
.swatch {
  width: 34px; height: 34px; border-radius: 50%; border: 2px solid #fff; cursor: pointer;
  box-shadow: 0 0 0 1.5px var(--line); transition: box-shadow .2s, transform .2s;
}
.swatch:hover { transform: scale(1.08); }
.swatch[aria-pressed="true"] { box-shadow: 0 0 0 2.5px var(--ink); }
.swatch-label { align-self: center; font-size: .85rem; font-weight: 700; padding: 0 6px 0 4px; min-width: 64px; }
.bubble {
  position: absolute; background: #fff; border-radius: 18px; padding: 10px 14px; box-shadow: var(--shadow);
  font-size: .86rem; font-weight: 600; display: flex; gap: 8px; align-items: center; white-space: nowrap;
  animation: float 5s ease-in-out infinite;
}
.bubble.b1 { top: 10%; left: -2%; }
.bubble.b2 { bottom: 26%; right: -4%; animation-delay: -2.5s; }
.wave { display: inline-flex; gap: 2px; align-items: center; height: 16px; }
.wave i { width: 3px; background: var(--blush-deep); border-radius: 2px; animation: wave 1.1s ease-in-out infinite; }
.wave i:nth-child(1) { height: 6px; } .wave i:nth-child(2) { height: 14px; animation-delay: -.2s; }
.wave i:nth-child(3) { height: 9px; animation-delay: -.4s; } .wave i:nth-child(4) { height: 15px; animation-delay: -.6s; }
.wave i:nth-child(5) { height: 7px; animation-delay: -.8s; }
@keyframes wave { 50% { transform: scaleY(.35); } }
@keyframes float { 50% { transform: translateY(-10px); } }

/* Trust strip */
.strip { border-block: 1px solid var(--line); background: var(--paper); }
.strip ul { display: flex; flex-wrap: wrap; justify-content: space-around; gap: 16px 32px; list-style: none; margin: 0; padding: 22px 0; }
.strip li { display: flex; align-items: center; gap: 10px; font-weight: 600; font-size: .95rem; }
.strip svg { color: var(--gold); }

/* Sections */
section { scroll-margin-top: 80px; }
.section { padding: 96px 0; }
.section-alt { background: var(--paper); }
.section-head { margin-bottom: 52px; }

.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; counter-reset: step; }
.step { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 26px; position: relative; }
.section-alt .step { background: var(--cream); }
.step::before {
  counter-increment: step; content: counter(step);
  display: grid; place-items: center; width: 46px; height: 46px; border-radius: 50%;
  background: var(--blush-bg); color: var(--blush-deep); font: 600 1.5rem/1 var(--serif); margin-bottom: 18px;
}
.step h3 { font-size: 1.45rem; }
.step p { color: var(--ink-soft); font-size: .97rem; margin: 0; }

.why { display: grid; grid-template-columns: .95fr 1.05fr; gap: 64px; align-items: center; }
.quote-card {
  background: linear-gradient(160deg, var(--blush-bg), #fff 70%); border-radius: 28px; padding: 44px 40px;
  border: 1px solid var(--line); box-shadow: var(--shadow); position: relative;
}
.quote-card .play {
  display: flex; align-items: center; gap: 14px; background: #fff; border-radius: 999px; padding: 10px 18px 10px 10px;
  box-shadow: 0 8px 20px -10px rgba(74, 42, 60, .35); margin-bottom: 18px; max-width: 360px;
}
.quote-card .play-btn { width: 40px; height: 40px; border-radius: 50%; background: var(--ink); display: grid; place-items: center; color: #fff; flex: none; }
.quote-card .play .bar { flex: 1; height: 26px; display: flex; align-items: center; gap: 3px; }
.quote-card .play .bar i { flex: 1; background: var(--blush); border-radius: 2px; }
.quote-card .play time { font-size: .8rem; color: var(--ink-soft); font-weight: 600; }
.quote-card blockquote { margin: 0; font: italic 500 1.55rem/1.35 var(--serif); }
.quote-card cite { display: block; margin-top: 14px; font: 600 .85rem var(--sans); color: var(--ink-soft); font-style: normal; }
.checks { list-style: none; padding: 0; margin: 24px 0 0; display: grid; gap: 14px; }
.checks li { display: flex; gap: 14px; }
.checks svg { flex: 0 0 24px; color: var(--blush-deep); margin-top: 2px; }

/* Colors */
.colors { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.color-card {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px 24px 26px;
  text-align: center; transition: transform .25s, box-shadow .25s;
}
.color-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.color-card .mini { width: 70%; margin: 0 auto 14px; }
.color-card h3 { margin-bottom: .2em; }
.color-card p { color: var(--ink-soft); font-size: .95rem; margin-bottom: 18px; }
.color-card .btn { padding: 11px 22px; font-size: .9rem; }

/* Pricing */
.pricing { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; align-items: stretch; }
.price-card { background: var(--paper); border-radius: 28px; padding: 44px 40px; border: 1px solid var(--line); display: flex; flex-direction: column; }
.price-card.main { background: var(--ink); color: #fff; border: 0; box-shadow: var(--shadow); }
.price-card.main .eyebrow { color: var(--blush); }
.price-card .amount { font: 600 4.4rem/1 var(--serif); margin: 6px 0 4px; }
.price-card .amount small { font: 600 1.1rem var(--sans); opacity: .7; }
.price-card .note { opacity: .75; font-size: .92rem; margin-bottom: 24px; }
.price-card ul { list-style: none; padding: 0; margin: 0 0 30px; display: grid; gap: 12px; }
.price-card li { display: flex; gap: 12px; }
.price-card li svg { flex: 0 0 20px; margin-top: 4px; }
.price-card.main li svg { color: var(--blush); }
.price-card .btn { margin-top: auto; }
.price-card.main .btn-primary { background: var(--blush); color: var(--ink); }
.price-card.main .btn-primary:hover { background: #fff; }

.combo { border: 2px dashed var(--dunobox); background: #f1fdf7; }
.combo .eyebrow { color: #149a5c; }
.combo .badge { display: inline-block; background: var(--dunobox); color: #0b3d25; font-weight: 800; border-radius: 999px; padding: 6px 14px; font-size: .9rem; margin-bottom: 14px; }
.combo li svg { color: #149a5c; }
.combo .btn-ghost { border-color: #149a5c; color: #0f6b40; }
.combo .btn-ghost:hover { background: #149a5c; color: #fff; }

/* Dunobox banner */
.dunobox {
  display: grid; grid-template-columns: 1.2fr .8fr; gap: 40px; align-items: center;
  background: #131313; color: #fff; border-radius: 32px; padding: 56px 56px; overflow: hidden; position: relative;
}
.dunobox::after { content: ""; position: absolute; right: -120px; top: -120px; width: 380px; height: 380px; border-radius: 50%; background: radial-gradient(circle, rgba(47, 222, 140, .35), transparent 70%); }
.dunobox .eyebrow { color: var(--dunobox); }
.dunobox p { color: #cfcfcf; }
.dunobox .btn-primary { background: var(--dunobox); color: #0b3d25; }
.dunobox .btn-primary:hover { background: #fff; color: #131313; }
.dunobox-visual { position: relative; z-index: 1; display: grid; gap: 14px; }
.polaroid { background: #fff; padding: 12px 12px 36px; border-radius: 6px; transform: rotate(-4deg); box-shadow: 0 20px 40px rgba(0,0,0,.4); max-width: 260px; justify-self: center; }
.polaroid .ph { aspect-ratio: 4/3; border-radius: 3px; background: linear-gradient(135deg, #f8c9d4, #a9c8e8); display: grid; place-items: center; color: #fff; }
.polaroid span { display: block; text-align: center; color: #333; font: italic 600 1.15rem var(--serif); margin-top: 10px; }

/* FAQ */
.faq { max-width: 820px; margin: 0 auto; }
.faq details { background: var(--paper); border: 1px solid var(--line); border-radius: 18px; margin-bottom: 12px; }
.faq summary {
  list-style: none; cursor: pointer; padding: 22px 60px 22px 26px; font-weight: 700; position: relative;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; position: absolute; right: 24px; top: 50%; transform: translateY(-50%);
  font: 400 1.8rem/1 var(--sans); color: var(--blush-deep); transition: transform .2s;
}
.faq details[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq details p { padding: 0 26px 22px; margin: 0; color: var(--ink-soft); }

/* Order form */
.order { display: grid; grid-template-columns: .8fr 1.2fr; gap: 56px; align-items: start; }
.order-aside { position: sticky; top: 100px; }
.order-summary { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; margin-top: 26px; }
.order-summary .row { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid var(--line); }
.order-summary .row:last-child { border: 0; font-weight: 800; font-size: 1.1rem; }
.order-summary .muted { color: var(--ink-soft); }
.form { background: var(--paper); border: 1px solid var(--line); border-radius: 28px; padding: 40px; box-shadow: var(--shadow); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field.full { grid-column: 1 / -1; }
.field label, .field legend { font-weight: 700; font-size: .9rem; }
.field input, .field textarea, .field select {
  font: 500 1rem var(--sans); color: var(--ink); background: var(--cream);
  border: 1.5px solid var(--line); border-radius: 14px; padding: 13px 15px; width: 100%;
  transition: border-color .2s, background .2s;
}
.field input:focus, .field textarea:focus { outline: none; border-color: var(--blush-deep); background: #fff; }
.field textarea { min-height: 96px; resize: vertical; }
fieldset { border: 0; padding: 0; margin: 0; min-width: 0; }
.color-options { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 4px; }
.color-option { position: relative; }
.color-option input { position: absolute; inset: 0; opacity: 0; pointer-events: none; }
.color-option label {
  display: flex; flex-direction: column; align-items: center; gap: 8px; padding: 14px 8px; cursor: pointer;
  border: 1.5px solid var(--line); border-radius: 16px; background: var(--cream); font-weight: 700; font-size: .92rem;
  transition: border-color .2s, background .2s;
}
.color-option label .dot { width: 30px; height: 30px; border-radius: 50%; border: 2px solid #fff; box-shadow: 0 0 0 1.5px var(--line); }
.color-option input:checked + label { border-color: var(--ink); background: #fff; }
.color-option input:focus-visible + label { outline: 3px solid var(--blush); outline-offset: 2px; }
.check { display: flex; gap: 12px; align-items: flex-start; font-size: .95rem; cursor: pointer; }
.check input { width: 20px; height: 20px; margin-top: 3px; accent-color: var(--blush-deep); flex: none; }
.check.combo-check { background: #f1fdf7; border: 1.5px dashed var(--dunobox); padding: 14px 16px; border-radius: 14px; }
.hp { position: absolute; left: -5000px; top: 0; width: 1px; height: 1px; overflow: hidden; }
.form-foot { margin-top: 24px; display: flex; flex-direction: column; gap: 14px; }
.form-foot .btn { width: 100%; padding: 18px; font-size: 1.05rem; }
.form-msg { border-radius: 14px; padding: 14px 16px; font-weight: 600; display: none; }
.form-msg.err { display: block; background: #fdecec; color: #9b1c1c; }
.form-msg.ok { display: block; background: #eafaf1; color: #11643b; }
.small { font-size: .85rem; color: var(--ink-soft); }

/* Footer */
.site-footer { background: var(--ink); color: #d9d1dc; padding: 64px 0 30px; margin-top: 0; }
.site-footer a { color: #fff; text-decoration: none; }
.site-footer a:hover { color: var(--blush); }
.foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; }
.site-footer h4 { color: #fff; font: 600 1.3rem var(--serif); margin: 0 0 12px; }
.site-footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.site-footer .logo-text { color: #fff; }
.site-footer .logo-text small { color: #bfb4c3; }
.foot-bottom { border-top: 1px solid rgba(255,255,255,.12); margin-top: 44px; padding-top: 22px; font-size: .85rem; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; }

/* Sticky mobile CTA */
.mobile-cta { display: none; }

/* Article pages */
.article { padding: 64px 0 96px; }
.article .wrap { max-width: 780px; }
.article h2 { font-size: clamp(1.8rem, 3.6vw, 2.4rem); margin-top: 1.6em; }
.article p, .article li { color: #3d3441; }
.article ul, .article ol { padding-left: 1.3em; }
.article li { margin-bottom: .5em; }
.crumbs { font-size: .88rem; color: var(--ink-soft); margin-bottom: 18px; }
.crumbs a { color: var(--ink-soft); }
.cta-box { background: var(--blush-bg); border-radius: var(--radius); padding: 32px; margin: 40px 0; text-align: center; }
.cta-box p { margin-bottom: 18px; }

/* Reveal */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}

/* Responsive */
@media (max-width: 980px) {
  .hero-grid, .why, .order, .dunobox, .pricing { grid-template-columns: 1fr; }
  .hero { padding-top: 28px; }
  .phone-stage { order: -1; max-width: 420px; margin: 0 auto; }
  .steps { grid-template-columns: 1fr 1fr; }
  .order-aside { position: static; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .foot-grid > :first-child { grid-column: 1 / -1; }
  .dunobox { padding: 40px 28px; }
}
@media (max-width: 820px) {
  .menu-toggle { display: block; }
  .nav-links {
    position: absolute; top: 72px; left: 0; right: 0; flex-direction: column; gap: 0; align-items: stretch;
    background: var(--cream); border-bottom: 1px solid var(--line); padding: 8px 16px 18px; display: none;
  }
  .nav-links.open { display: flex; }
  .nav-links li a { display: block; padding: 12px 4px; }
  .nav-links .btn { margin-top: 8px; }
}
@media (max-width: 640px) {
  body { font-size: 16px; }
  .section { padding: 68px 0; }
  .steps, .colors, .form-grid { grid-template-columns: 1fr; }
  .form { padding: 26px 20px; }
  .price-card { padding: 34px 26px; }
  .quote-card { padding: 32px 24px; }
  .bubble { display: none; }
  .foot-grid { grid-template-columns: 1fr; }
  .mobile-cta {
    display: flex; position: fixed; left: 12px; right: 12px; bottom: 12px; z-index: 60;
    justify-content: space-between; align-items: center; gap: 12px;
    background: var(--ink); color: #fff; border-radius: 999px; padding: 8px 8px 8px 22px; box-shadow: var(--shadow);
    transform: translateY(140%); transition: transform .3s;
  }
  .mobile-cta.show { transform: none; }
  .mobile-cta strong { font: 600 1.3rem var(--serif); }
  .mobile-cta .btn { padding: 12px 20px; background: var(--blush); color: var(--ink); }
  .site-footer { padding-bottom: 96px; }
}

.combo-hint {
  display: inline-block; margin-top: 22px; padding: 10px 18px; border-radius: 999px;
  background: #f1fdf7; border: 1.5px dashed var(--dunobox); color: #0f6b40; text-decoration: none; font-weight: 600; font-size: .95rem;
}
.combo-hint:hover { background: var(--dunobox); color: #0b3d25; }

/* Časová osa pronájmu */
.timeline { list-style: none; padding: 0; margin: 40px 0 0; display: grid; grid-template-columns: repeat(5, 1fr); position: relative; }
.timeline::before { content: ""; position: absolute; left: 10%; right: 10%; top: 11px; height: 2px; background: var(--line); }
.timeline li { position: relative; text-align: center; padding: 32px 8px 0; font-size: .92rem; }
.timeline li::before {
  content: ""; position: absolute; top: 3px; left: 50%; transform: translateX(-50%);
  width: 18px; height: 18px; border-radius: 50%; background: #fff; border: 3px solid var(--blush);
}
.timeline li.hl::before { background: var(--blush-deep); border-color: var(--blush-deep); width: 22px; height: 22px; top: 1px; }
.timeline strong { display: block; font: 600 1.2rem/1.2 var(--serif); }
.timeline span { color: var(--ink-soft); }
@media (max-width: 760px) {
  .timeline { grid-template-columns: 1fr; gap: 6px; }
  .timeline::before { left: 11px; right: auto; top: 10px; bottom: 10px; width: 2px; height: auto; }
  .timeline li { text-align: left; padding: 0 0 12px 38px; }
  .timeline li::before { left: 11px; top: 4px; }
}
